:root {
  --color-navy: #0d2b45;
  --color-navy-deep: #0a2238;
  --color-teal: #1f6b63;
  --color-teal-bright: #2f9086;
  --color-sand: #f3efe7;
  --color-ink: #1d2939;
  --color-white: #ffffff;
  --color-gold: #e39b2e;
  --color-gold-bright: #f6c266;
  --color-mint: #d7ebe6;
  --color-border: #d2d9df;
  --color-muted: #526173;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-pill: 999px;
  --shadow-soft: 0 8px 20px rgba(13, 43, 69, 0.08);
  --shadow-card: 0 14px 32px rgba(13, 43, 69, 0.1);
  --shadow-lift: 0 24px 48px rgba(13, 43, 69, 0.16);
  --container-width: 1140px;
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  width: 100%;
  min-width: 0;
  margin: 0;
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  color: var(--color-ink);
  background: linear-gradient(180deg, #f7f4ee 0%, #fefefe 28%, #f5f8fa 100%);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 2% 18%, rgba(31, 107, 99, 0.1), transparent 35%),
    radial-gradient(circle at 96% 12%, rgba(227, 155, 46, 0.08), transparent 34%),
    radial-gradient(circle at 80% 80%, rgba(13, 43, 69, 0.06), transparent 36%);
  pointer-events: none;
  z-index: -1;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--color-navy);
}

a:hover,
a:focus {
  color: #09243a;
}

.skip-link {
  position: absolute;
  left: 0;
  top: -48px;
  background: var(--color-navy);
  color: var(--color-white);
  padding: 0.7rem 1rem;
  z-index: 999;
  border-radius: 0 0 10px 0;
}

.skip-link:focus {
  top: 0;
}

.container {
  width: min(calc(100% - 2rem), var(--container-width));
  margin-inline: auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.45rem;
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-pill);
  background: rgba(31, 107, 99, 0.12);
  color: #154a44;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  font-size: 0.78rem;
  border: 1px solid rgba(31, 107, 99, 0.18);
  width: fit-content;
  max-width: 100%;
  line-height: 1.25;
}

.eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  background: var(--color-teal);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(31, 107, 99, 0.18);
}

h1,
h2,
h3,
h4 {
  font-family: "Lora", Georgia, serif;
  color: var(--color-navy);
  line-height: 1.18;
  margin: 0;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(2rem, 4.2vw, 3.25rem);
  max-width: 18ch;
  overflow-wrap: anywhere;
}

h2 {
  font-size: clamp(1.65rem, 3.4vw, 2.45rem);
  overflow-wrap: anywhere;
}

h3 {
  font-size: clamp(1.2rem, 2.3vw, 1.5rem);
}

p {
  margin: 0;
  color: var(--color-ink);
}

.lede {
  font-size: clamp(1.05rem, 2vw, 1.22rem);
  color: #334861;
  max-width: 60ch;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  font-family: inherit;
  line-height: 1.2;
  border-radius: var(--radius-pill);
  padding: 0.78rem 1.4rem;
  text-decoration: none;
  font-weight: 700;
  border: 1px solid transparent;
  transition: var(--transition);
  cursor: pointer;
  font-size: 0.98rem;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.button-primary {
  background: var(--color-navy);
  color: var(--color-white);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #153f64;
  color: var(--color-white);
}

.button-secondary {
  background: var(--color-white);
  border-color: #b9c7d5;
  color: var(--color-navy);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: #5b7693;
}

.button-accent {
  background: linear-gradient(135deg, var(--color-gold), #d68618);
  color: #2c1c00;
  box-shadow: 0 6px 16px rgba(227, 155, 46, 0.28);
}

.button-accent:hover,
.button-accent:focus-visible {
  background: linear-gradient(135deg, #f0a93f, #c97c12);
  color: #2c1c00;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  border-bottom: 1px solid rgba(13, 43, 69, 0.1);
  backdrop-filter: blur(10px);
  background: rgba(252, 250, 246, 0.9);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 76px;
  width: min(calc(100% - 2rem), var(--container-width));
}

.logo {
  color: var(--color-navy);
  text-decoration: none;
  font-family: "Lora", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  line-height: 1;
}

.logo-mark {
  color: var(--color-teal);
}

.logo-icon {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  border-radius: 10px;
  box-shadow: 0 6px 14px rgba(13, 43, 69, 0.18);
}

.logo:hover .logo-icon,
.logo:focus-visible .logo-icon {
  transform: translateY(-1px);
  transition: var(--transition);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid #9fb2c4;
  color: var(--color-navy);
  border-radius: 10px;
  padding: 0.45rem 0.7rem;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}

.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.site-nav a {
  text-decoration: none;
  color: #334f68;
  font-weight: 600;
  padding: 0.4rem 0.45rem;
  border-radius: 8px;
  transition: var(--transition);
  white-space: nowrap;
}

.site-nav a:hover {
  background: rgba(31, 107, 99, 0.08);
  color: var(--color-navy);
}

.site-nav a[aria-current="page"] {
  color: var(--color-navy);
  background: rgba(31, 107, 99, 0.12);
}

.site-nav .button-primary,
.site-nav .button-primary:hover,
.site-nav .button-primary:focus-visible {
  color: var(--color-white);
}

.hero {
  padding: clamp(3rem, 7vw, 5.5rem) 0 2.8rem;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(227, 155, 46, 0.18), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero > .container {
  position: relative;
  z-index: 1;
}

.hero-grid {
  display: grid;
  gap: 2.4rem;
  align-items: center;
  grid-template-columns: 1.1fr 0.9fr;
}

.hero-panel {
  background: linear-gradient(150deg, rgba(13, 43, 69, 0.96), rgba(23, 88, 80, 0.94));
  color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: clamp(1.4rem, 2vw, 1.9rem);
  box-shadow: var(--shadow-lift);
  position: relative;
  overflow: hidden;
}

.hero-panel::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(246, 194, 102, 0.18), transparent 70%);
  pointer-events: none;
}

.hero-panel h3,
.hero-panel p,
.hero-panel li {
  color: var(--color-white);
  position: relative;
}

.hero-panel ul {
  margin: 1rem 0 1.3rem 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.6rem;
}

.hero-panel li {
  padding-left: 1.6rem;
  position: relative;
}

.hero-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--color-gold);
  box-shadow: 0 0 0 4px rgba(246, 194, 102, 0.22);
}

.hero-actions {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
  margin-top: 1.6rem;
}

.trust-item {
  background: var(--color-white);
  border: 1px solid #d4dee8;
  border-radius: 12px;
  padding: 0.85rem 0.6rem;
  text-align: center;
  font-weight: 700;
  color: var(--color-navy);
  box-shadow: var(--shadow-soft);
  font-size: 0.92rem;
}

.section {
  padding: 3.6rem 0;
  position: relative;
}

.section-muted {
  background: rgba(13, 43, 69, 0.035);
  border-top: 1px solid rgba(13, 43, 69, 0.06);
  border-bottom: 1px solid rgba(13, 43, 69, 0.06);
}

.section-head {
  margin-bottom: 1.7rem;
  display: grid;
  gap: 0.7rem;
  max-width: 760px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.35rem;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
  border-color: #b5c4d4;
}

.card h3 {
  margin-bottom: 0.55rem;
}

.card p + p,
.card ul + p,
.card p + ul {
  margin-top: 0.7rem;
}

.icon-dot {
  width: 2.6rem;
  aspect-ratio: 1;
  border-radius: 12px;
  display: inline-grid;
  place-items: center;
  font-weight: 700;
  background: linear-gradient(135deg, var(--color-mint), #b8dcd5);
  color: #154a44;
  margin-bottom: 0.85rem;
  font-family: "Lora", Georgia, serif;
  font-size: 1.05rem;
  box-shadow: inset 0 0 0 1px rgba(31, 107, 99, 0.15);
}

.steps {
  counter-reset: step;
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.95rem;
}

.steps > li {
  background: var(--color-white);
  border: 1px solid #d2dce6;
  border-radius: var(--radius-md);
  padding: 1.2rem;
  box-shadow: var(--shadow-soft);
  position: relative;
  transition: var(--transition);
}

.steps > li:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}

.steps > li::before {
  counter-increment: step;
  content: counter(step);
  display: inline-grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-navy), var(--color-teal));
  color: var(--color-white);
  font-family: "Lora", Georgia, serif;
  font-weight: 700;
  margin-bottom: 0.65rem;
  box-shadow: 0 4px 12px rgba(13, 43, 69, 0.2);
}

.list-clean {
  margin: 0.85rem 0 0;
  padding-left: 0;
  list-style: none;
  display: grid;
  gap: 0.5rem;
}

.list-clean li {
  padding-left: 1.5rem;
  position: relative;
}

.list-clean li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--color-teal);
  transform: rotate(45deg);
}

.kpis {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.kpi {
  background: linear-gradient(180deg, #ffffff, #f5f9fb);
  border: 1px solid #d4dee8;
  border-radius: var(--radius-md);
  padding: 1.2rem 0.9rem;
  text-align: center;
  box-shadow: var(--shadow-soft);
}

.kpi strong {
  display: block;
  font-family: "Lora", Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 2.2rem);
  color: var(--color-teal);
  margin-bottom: 0.25rem;
}

.quote {
  border-left: 4px solid var(--color-gold);
  padding: 0.2rem 0 0.2rem 1.1rem;
  margin: 0;
  color: #25384d;
  font-style: italic;
  font-size: 1.02rem;
}

.quote + .quote {
  margin-top: 1rem;
}

.quote cite {
  display: block;
  margin-top: 0.8rem;
  font-style: normal;
  color: #43566b;
  font-weight: 600;
  font-size: 0.92rem;
}

.pricing-tag {
  margin-top: 0.85rem;
  display: inline-flex;
  font-weight: 700;
  color: #0d2b45;
  background: linear-gradient(135deg, #fff5e0, #ffe6b8);
  border-radius: var(--radius-pill);
  padding: 0.4rem 0.95rem;
  border: 1px solid #f2d6a0;
}

.cta-band {
  padding: clamp(1.75rem, 3vw, 2.6rem);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 90% 10%, rgba(246, 194, 102, 0.22), transparent 55%),
    linear-gradient(135deg, var(--color-navy), #104e5f);
  color: var(--color-white);
  display: grid;
  gap: 0.9rem;
  box-shadow: var(--shadow-lift);
  position: relative;
  overflow: hidden;
}

.cta-band::after {
  content: "";
  position: absolute;
  bottom: -60px;
  left: -40px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(31, 107, 99, 0.4), transparent 70%);
  pointer-events: none;
}

.cta-band > * {
  position: relative;
  z-index: 1;
}

.cta-band h2,
.cta-band p {
  color: var(--color-white);
}

.split-panel {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1.1rem;
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 0.8rem;
}

details {
  border: 1px solid #c9d4df;
  border-radius: 12px;
  background: var(--color-white);
  padding: 0.95rem 1.1rem;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
}

details[open] {
  border-color: var(--color-teal);
  box-shadow: var(--shadow-card);
}

summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--color-navy);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  font-size: 1.3rem;
  color: var(--color-teal);
  font-weight: 400;
  flex-shrink: 0;
  transition: transform 0.2s;
}

details[open] summary::after {
  content: "-";
  transform: rotate(0);
}

summary + p {
  margin-top: 0.75rem;
}

form {
  display: grid;
  gap: 0.85rem;
}

.form-note {
  font-size: 0.9rem;
  color: var(--color-muted);
  margin-top: -0.25rem;
}

label {
  font-weight: 700;
  color: #24394e;
  font-size: 0.95rem;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid #b9c8d8;
  border-radius: 10px;
  padding: 0.75rem 0.85rem;
  font: inherit;
  background: #fff;
  transition: var(--transition);
}

input:hover,
textarea:hover,
select:hover {
  border-color: #8ea3b9;
}

textarea {
  min-height: 110px;
  resize: vertical;
}

input:focus-visible,
textarea:focus-visible,
select:focus-visible,
.button:focus-visible,
.nav-toggle:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(227, 155, 46, 0.45);
  outline-offset: 2px;
  border-color: var(--color-teal);
}

.note {
  font-size: 0.94rem;
  color: var(--color-muted);
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.pill {
  background: #e8eff6;
  color: #2e4d69;
  border-radius: var(--radius-pill);
  padding: 0.35rem 0.8rem;
  font-size: 0.86rem;
  font-weight: 700;
  border: 1px solid #d3dde7;
}

.site-footer {
  padding: 3rem 0 2.6rem;
  background: linear-gradient(180deg, #0d2b45 0%, #0a2238 100%);
  color: rgba(255, 255, 255, 0.85);
  margin-top: 3.5rem;
  position: relative;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-teal), var(--color-gold), var(--color-teal));
}

.site-footer h3 {
  color: var(--color-white);
  margin-bottom: 0.4rem;
}

.site-footer a {
  color: #c2d8eb;
  text-decoration: none;
  transition: var(--transition);
}

.site-footer p {
  color: #dce8f3;
  max-width: 58ch;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--color-gold-bright);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 1.4rem;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.4rem;
}

.footer-brand .logo-icon {
  width: 36px;
  height: 36px;
}

.footer-brand h3 {
  margin: 0;
}

.footer-links {
  list-style: none;
  margin: 0.5rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}

.footer-bottom {
  margin-top: 2.2rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.8rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
}

.floating-cta {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 60;
  box-shadow: var(--shadow-card);
}

.table-wrap {
  overflow-x: auto;
  border-radius: 14px;
  box-shadow: var(--shadow-soft);
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 680px;
  background: var(--color-white);
  border: 1px solid #cad4df;
  border-radius: 14px;
  overflow: hidden;
}

th,
td {
  text-align: left;
  padding: 0.85rem 0.9rem;
  border-bottom: 1px solid #dde4eb;
}

th {
  background: linear-gradient(180deg, #f1f5f9, #e6edf3);
  color: #26415a;
  font-weight: 700;
}

tbody tr:hover {
  background: rgba(31, 107, 99, 0.04);
}

.hero-min {
  padding: 3rem 0 1.6rem;
  position: relative;
}

.hero-min h1 {
  margin-top: 0.6rem;
  max-width: 22ch;
}

.profile-split {
  align-items: start;
}

.profile-card {
  padding: 0;
  overflow: hidden;
  max-width: 360px;
  justify-self: end;
  width: 100%;
}

.profile-card img {
  width: 100%;
  height: min(58vh, 520px);
  min-height: 420px;
  display: block;
  object-fit: cover;
  object-position: center top;
}

.profile-photo {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lift);
  background: var(--color-white);
}

.profile-photo figcaption {
  padding: 0.85rem 1rem 1rem;
  color: var(--color-muted);
  font-size: 0.94rem;
  border-top: 1px solid var(--color-border);
}

.image-card {
  padding: 0;
  overflow: hidden;
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

.image-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: clamp(260px, 32vw, 420px);
  object-fit: cover;
  object-position: center;
}

.image-card figcaption {
  padding: 0.85rem 1rem 1rem;
  color: var(--color-muted);
  font-size: 0.94rem;
  border-top: 1px solid var(--color-border);
}

.section-image {
  margin: 1.1rem 0 1.4rem;
}

.image-card-portrait img {
  aspect-ratio: 16 / 10;
  height: clamp(320px, 38vw, 520px);
  object-position: center 62%;
}

.service-card-featured {
  border-color: rgba(227, 155, 46, 0.55);
  background: linear-gradient(180deg, #ffffff 0%, #fff9ed 100%);
}

@media (max-width: 1120px) {
  .hero-grid,
  .split-panel,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .grid-4,
  .grid-3,
  .steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .profile-card {
    justify-self: stretch;
    max-width: 100%;
  }

  .profile-card img {
    height: min(70vh, 560px);
  }

  .header-inner {
    min-height: 70px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: 70px;
    right: 1rem;
    width: min(94vw, 320px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid #bbcad9;
    border-radius: 14px;
    background: rgba(252, 250, 246, 0.98);
    box-shadow: var(--shadow-card);
    padding: 1rem;
    gap: 0.9rem;
  }

  .site-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  body.nav-open .site-nav {
    display: flex;
  }

  .header-cta {
    width: 100%;
  }
}

@media (min-width: 1121px) {
  .header-cta {
    padding-inline: 1rem;
  }
}

@media (max-width: 680px) {
  .grid-2,
  .grid-3,
  .grid-4,
  .kpis,
  .steps,
  .trust-strip {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 2.4rem;
  }

  h1 {
    font-size: clamp(2rem, 9vw, 2.65rem);
    max-width: 100%;
  }

  .hero-min h1 {
    max-width: 100%;
  }

  .profile-card img {
    height: 420px;
    min-height: 0;
  }

  .section {
    padding: 2.6rem 0;
  }

  .eyebrow {
    display: inline-block;
    overflow-wrap: anywhere;
  }

  .eyebrow::before {
    display: inline-block;
    vertical-align: middle;
    margin-right: 0.45rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .button {
    width: 100%;
  }

  .floating-cta {
    display: none;
  }
}
