:root {
  --navy-950: #071a2b;
  --navy-900: #0b2238;
  --navy-800: #123550;
  --navy-700: #1b4965;
  --teal-600: #0d8c8a;
  --teal-500: #14a6a3;
  --teal-100: #dff7f5;
  --blue-50: #f2f7fa;
  --blue-100: #e7f0f5;
  --cream: #fbfaf7;
  --white: #ffffff;
  --text: #1d2e3d;
  --muted: #627383;
  --line: rgba(11, 34, 56, 0.11);
  --shadow-sm: 0 10px 30px rgba(7, 26, 43, 0.08);
  --shadow-md: 0 24px 70px rgba(7, 26, 43, 0.13);
  --shadow-lg: 0 34px 90px rgba(7, 26, 43, 0.18);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --container: 1180px;
  --header-height: 82px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "DM Sans", Arial, sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
svg { width: 1em; height: 1em; fill: currentColor; }

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 9999;
  transform: translateY(-150%);
  background: var(--white);
  color: var(--navy-900);
  padding: .7rem 1rem;
  border-radius: 10px;
  box-shadow: var(--shadow-sm);
}
.skip-link:focus { transform: translateY(0); }

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

.topbar {
  background: var(--navy-950);
  color: rgba(255,255,255,.78);
  font-size: .82rem;
}
.topbar-inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.topbar-contact { display: flex; gap: 1.4rem; }
.topbar a, .topbar-location { display: inline-flex; align-items: center; gap: .45rem; }
.topbar svg { color: var(--teal-500); }
.topbar a:hover { color: var(--white); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(251,250,247,.91);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .25s ease, border-color .25s ease, background .25s ease;
}
.site-header.scrolled {
  background: rgba(251,250,247,.97);
  border-color: var(--line);
  box-shadow: 0 14px 35px rgba(7,26,43,.07);
}
.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.brand { display: inline-flex; align-items: center; gap: .85rem; flex-shrink: 0; }
.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 15px;
  background: linear-gradient(145deg, var(--navy-900), var(--navy-700));
  color: var(--white);
  display: grid;
  place-items: center;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.16), 0 8px 20px rgba(7,26,43,.13);
  position: relative;
  overflow: hidden;
}
.brand-mark::after {
  content: "";
  position: absolute;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255,255,255,.26);
  border-radius: 50%;
}
.brand-mark span { font-family: Georgia, serif; font-weight: 700; font-size: 1.1rem; letter-spacing: -.04em; z-index: 1; }
.brand-copy { display: flex; flex-direction: column; line-height: 1.15; }
.brand-copy strong { font-family: "Manrope", sans-serif; font-size: 1rem; color: var(--navy-900); letter-spacing: -.02em; }
.brand-copy small { font-size: .69rem; color: var(--muted); margin-top: .2rem; }

.main-nav { display: flex; align-items: center; gap: 1.45rem; }
.main-nav > a:not(.nav-cta) {
  font-size: .9rem;
  font-weight: 600;
  color: #465867;
  position: relative;
  padding-block: 1.8rem;
}
.main-nav > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1.28rem;
  height: 2px;
  background: var(--teal-500);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .22s ease;
}
.main-nav > a:hover, .main-nav > a.active { color: var(--navy-900); }
.main-nav > a:hover::after, .main-nav > a.active::after { transform: scaleX(1); }
.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 1.15rem;
  border-radius: 999px;
  background: var(--navy-900);
  color: var(--white);
  font-size: .88rem;
  font-weight: 700;
  box-shadow: 0 10px 25px rgba(7,26,43,.14);
  transition: transform .2s ease, background .2s ease;
}
.nav-cta:hover { transform: translateY(-2px); background: var(--navy-800); }
.nav-toggle { display: none; background: none; border: 0; width: 44px; height: 44px; padding: 10px; }
.nav-toggle span { display: block; height: 2px; background: var(--navy-900); margin: 5px 0; border-radius: 4px; transition: .25s ease; }

.hero {
  position: relative;
  overflow: hidden;
  padding: 84px 0 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,.76) 1px, transparent 1px) 0 0 / 70px 70px,
    linear-gradient(rgba(255,255,255,.76) 1px, transparent 1px) 0 0 / 70px 70px,
    linear-gradient(135deg, #edf6f7 0%, #f9fbfb 46%, #eef3f6 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 75% 35%, rgba(20,166,163,.12), transparent 32%);
  pointer-events: none;
}
.hero-glow { position: absolute; border-radius: 50%; filter: blur(10px); opacity: .55; }
.hero-glow-one { width: 420px; height: 420px; background: rgba(20,166,163,.13); right: -160px; top: 40px; }
.hero-glow-two { width: 280px; height: 280px; background: rgba(18,53,80,.08); left: -120px; bottom: 80px; }
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0,1.08fr) minmax(390px,.82fr);
  gap: 70px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.eyebrow, .section-kicker {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  color: var(--teal-600);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.eyebrow span { width: 26px; height: 1px; background: var(--teal-500); }
.hero h1 {
  margin: 1.3rem 0 1.35rem;
  font-family: "Manrope", sans-serif;
  font-size: clamp(3.2rem, 6vw, 5.55rem);
  line-height: .98;
  letter-spacing: -.065em;
  color: var(--navy-950);
}
.hero h1 em { color: var(--teal-600); font-style: normal; }
.hero-lead { max-width: 680px; font-size: 1.16rem; color: #506474; margin: 0 0 2rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; }
.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  border: 0;
  border-radius: 999px;
  padding: .8rem 1.35rem;
  font-weight: 700;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--navy-900); color: var(--white); box-shadow: 0 14px 32px rgba(7,26,43,.18); }
.button-primary:hover { background: var(--navy-800); box-shadow: 0 18px 42px rgba(7,26,43,.23); }
.button-ghost { color: var(--navy-900); background: rgba(255,255,255,.45); border: 1px solid rgba(11,34,56,.13); }
.button-ghost svg, .text-link svg, .service-card a svg { fill: none; stroke: currentColor; stroke-width: 2; }
.hero-trust {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1rem;
  margin-top: 2.7rem;
  max-width: 680px;
}
.hero-trust div { padding-right: 1rem; border-right: 1px solid var(--line); }
.hero-trust div:last-child { border-right: 0; }
.hero-trust strong, .hero-trust span { display: block; }
.hero-trust strong { color: var(--navy-900); font-size: .9rem; }
.hero-trust span { color: var(--muted); font-size: .77rem; margin-top: .15rem; }

.hero-card {
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,.7);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(11,34,56,.04);
}
.card-topline { display: flex; align-items: center; gap: .5rem; color: var(--teal-600); font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; }
.status-dot { width: 8px; height: 8px; background: var(--teal-500); border-radius: 50%; box-shadow: 0 0 0 5px rgba(20,166,163,.12); }
.hero-card h2 { font-family: "Manrope", sans-serif; color: var(--navy-950); letter-spacing: -.035em; font-size: 1.9rem; line-height: 1.15; margin: 1rem 0 .7rem; }
.hero-card > p { color: var(--muted); font-size: .92rem; margin: 0 0 1.25rem; }
.check-options { display: grid; grid-template-columns: 1fr 1fr; gap: .7rem; }
.check-option {
  min-height: 78px;
  text-align: left;
  display: flex;
  align-items: center;
  gap: .65rem;
  background: var(--blue-50);
  color: #4b5e6d;
  border: 1px solid transparent;
  border-radius: 16px;
  padding: .8rem;
  font-size: .83rem;
  font-weight: 700;
  transition: .2s ease;
}
.check-option:hover { transform: translateY(-2px); border-color: rgba(20,166,163,.24); }
.check-option.selected { background: var(--teal-100); border-color: rgba(20,166,163,.38); color: var(--navy-900); box-shadow: 0 8px 20px rgba(20,166,163,.09); }
.option-icon { width: 36px; height: 36px; border-radius: 11px; display: grid; place-items: center; background: var(--white); color: var(--teal-600); flex-shrink: 0; box-shadow: 0 5px 12px rgba(7,26,43,.06); }
.option-icon svg { width: 19px; height: 19px; }
.check-result { margin: 1rem 0; border-radius: 16px; background: var(--navy-900); color: var(--white); padding: 1rem; min-height: 96px; display: flex; flex-direction: column; justify-content: center; }
.check-result span { color: rgba(255,255,255,.55); font-size: .68rem; text-transform: uppercase; letter-spacing: .12em; font-weight: 700; }
.check-result strong { font-size: .84rem; line-height: 1.45; margin-top: .28rem; font-weight: 600; }
.button-card { width: 100%; background: var(--teal-500); color: var(--white); }
.button-card:hover { background: var(--teal-600); }
.privacy-note { display: block; text-align: center; color: var(--muted); font-size: .7rem; margin-top: .7rem; }

.hero-strip {
  margin-top: 78px;
  transform: translateY(36px);
  background: var(--white);
  border-radius: 22px;
  box-shadow: var(--shadow-md);
  display: grid;
  grid-template-columns: repeat(3,1fr);
  position: relative;
  z-index: 2;
}
.strip-item { display: flex; align-items: center; gap: 1rem; padding: 1.45rem 1.8rem; border-right: 1px solid var(--line); }
.strip-item:last-child { border-right: 0; }
.strip-icon { width: 46px; height: 46px; border-radius: 14px; display: grid; place-items: center; background: var(--teal-100); color: var(--teal-600); flex-shrink: 0; }
.strip-icon svg { width: 22px; height: 22px; }
.strip-item strong, .strip-item span { display: block; }
.strip-item strong { color: var(--navy-900); font-size: .9rem; }
.strip-item span { color: var(--muted); font-size: .76rem; margin-top: .1rem; }

.section { padding: 120px 0; }
.services { padding-top: 155px; background: var(--cream); }
.section-heading { display: flex; justify-content: space-between; align-items: end; gap: 4rem; margin-bottom: 3.2rem; }
.section-heading h2, .advisory-copy h2, .agency-copy h2, .faq-intro h2, .contact-copy h2 {
  font-family: "Manrope", sans-serif;
  color: var(--navy-950);
  font-size: clamp(2.1rem, 4vw, 3.6rem);
  line-height: 1.08;
  letter-spacing: -.055em;
  margin: .75rem 0 0;
}
.section-heading > div { max-width: 620px; }
.section-heading > p { max-width: 470px; color: var(--muted); margin: 0; }
.section-heading.centered { justify-content: center; text-align: center; }
.section-heading.centered > div { max-width: 760px; }
.service-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; }
.service-card {
  position: relative;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1.65rem;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.service-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-md); border-color: rgba(20,166,163,.25); }
.service-icon { width: 52px; height: 52px; border-radius: 15px; background: var(--blue-50); color: var(--teal-600); display: grid; place-items: center; margin-bottom: 2.4rem; }
.service-icon svg { width: 25px; height: 25px; }
.service-card > span:not(.featured-label) { position: absolute; right: 1.5rem; top: 1.6rem; color: #b2bec7; font-family: "Manrope", sans-serif; font-weight: 700; }
.service-card h3 { margin: 0 0 .6rem; font-family: "Manrope", sans-serif; color: var(--navy-900); font-size: 1.25rem; letter-spacing: -.03em; }
.service-card p { color: var(--muted); font-size: .9rem; margin: 0 0 1.2rem; }
.service-card > a:not(.button) { margin-top: auto; display: inline-flex; align-items: center; gap: .35rem; color: var(--teal-600); font-weight: 700; font-size: .83rem; }
.service-card-featured { background: linear-gradient(145deg, var(--navy-900), #17435f); color: var(--white); border-color: transparent; }
.service-card-featured::after { content: ""; position: absolute; width: 210px; height: 210px; border-radius: 50%; background: rgba(20,166,163,.18); right: -70px; bottom: -80px; }
.service-card-featured h3 { color: var(--white); margin-top: 2.2rem; font-size: 1.5rem; }
.service-card-featured p { color: rgba(255,255,255,.72); max-width: 330px; z-index: 1; }
.featured-label { display: inline-flex; align-self: flex-start; background: rgba(255,255,255,.11); border: 1px solid rgba(255,255,255,.14); border-radius: 999px; padding: .35rem .7rem; font-size: .68rem; text-transform: uppercase; letter-spacing: .1em; font-weight: 700; }
.button-light { align-self: flex-start; margin-top: auto; background: var(--white); color: var(--navy-900); min-height: 45px; font-size: .8rem; z-index: 1; }

.advisory { background: var(--navy-950); color: var(--white); overflow: hidden; }
.advisory-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 90px; align-items: center; }
.visual-panel { height: 500px; border-radius: var(--radius-lg); background: linear-gradient(150deg, #f4fbfb, #dcebed); position: relative; overflow: hidden; box-shadow: 0 30px 70px rgba(0,0,0,.18); }
.visual-panel::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(11,34,56,.06) 1px, transparent 1px) 0 0 / 48px 48px, linear-gradient(rgba(11,34,56,.06) 1px, transparent 1px) 0 0 / 48px 48px; }
.visual-panel::after { content: ""; position: absolute; width: 240px; height: 240px; border-radius: 50%; background: rgba(20,166,163,.15); top: -70px; right: -60px; }
.visual-chart { position: absolute; left: 70px; right: 70px; bottom: 95px; height: 250px; display: flex; align-items: end; gap: 20px; z-index: 1; }
.visual-chart::before { content: ""; position: absolute; left: 0; right: 0; top: 47%; height: 3px; border-radius: 10px; background: linear-gradient(90deg, transparent, var(--teal-500), transparent); transform: rotate(-12deg); transform-origin: center; }
.visual-chart span { flex: 1; background: linear-gradient(180deg, var(--teal-500), var(--navy-700)); border-radius: 12px 12px 4px 4px; box-shadow: inset 0 1px rgba(255,255,255,.3); }
.visual-badge { position: absolute; right: 28px; bottom: 28px; z-index: 2; background: rgba(255,255,255,.88); backdrop-filter: blur(12px); border-radius: 18px; padding: .9rem 1rem; display: flex; align-items: center; gap: .7rem; box-shadow: var(--shadow-sm); color: var(--navy-900); }
.visual-badge > svg { width: 32px; height: 32px; color: var(--teal-600); }
.visual-badge strong, .visual-badge span { display: block; }
.visual-badge strong { font-size: .82rem; }
.visual-badge span { color: var(--muted); font-size: .7rem; }
.advisory-copy h2 { color: var(--white); }
.advisory-copy > p { color: rgba(255,255,255,.68); font-size: 1rem; max-width: 600px; }
.check-list { list-style: none; padding: 0; margin: 2rem 0; display: grid; gap: .75rem; }
.check-list li { display: flex; align-items: center; gap: .7rem; color: rgba(255,255,255,.88); }
.check-list li span { width: 26px; height: 26px; border-radius: 50%; background: rgba(20,166,163,.18); color: #66d6d2; display: grid; place-items: center; font-size: .75rem; }
.text-link { display: inline-flex; align-items: center; gap: .45rem; color: #70ddd9; font-weight: 700; }

.agency { background: var(--white); }
.agency-grid { display: grid; grid-template-columns: 1fr .92fr; gap: 90px; align-items: center; }
.agency-copy .intro { font-size: 1.12rem; color: #405567; }
.agency-copy p { color: var(--muted); }
.signature-block { margin: 2rem 0 2.2rem; }
.signature { font-family: "Segoe Script", "Brush Script MT", cursive; font-size: 2rem; color: var(--navy-800); transform: rotate(-2deg); display: inline-block; }
.signature-block span { display: block; color: var(--muted); font-size: .78rem; margin-top: .1rem; }
.button-secondary { background: var(--teal-500); color: var(--white); }
.button-secondary:hover { background: var(--teal-600); }
.agency-media { position: relative; }
.agency-media::before { content: ""; position: absolute; width: 70%; height: 80%; border-radius: 34px; background: var(--teal-100); right: -30px; top: -30px; }
.agency-media img { position: relative; width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.agency-card { position: absolute; left: -35px; bottom: 28px; display: flex; align-items: center; gap: .8rem; background: var(--white); border-radius: 18px; padding: 1rem 1.1rem; box-shadow: var(--shadow-md); max-width: 320px; }
.agency-pin { width: 42px; height: 42px; border-radius: 13px; display: grid; place-items: center; background: var(--teal-100); color: var(--teal-600); flex-shrink: 0; }
.agency-card strong, .agency-card span { display: block; }
.agency-card strong { color: var(--navy-900); font-size: .85rem; }
.agency-card span { color: var(--muted); font-size: .72rem; margin-top: .12rem; }

.process { background: var(--blue-50); }
.process-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; position: relative; }
.process-grid::before { content: ""; position: absolute; height: 1px; background: rgba(20,166,163,.28); top: 48px; left: 16.66%; right: 16.66%; }
.process-step { position: relative; text-align: center; padding: 0 2rem; }
.step-number { position: absolute; top: 0; right: 24%; color: #a5b7c3; font-size: .72rem; font-weight: 700; }
.step-icon { width: 96px; height: 96px; border-radius: 28px; display: grid; place-items: center; margin: 0 auto 1.4rem; background: var(--white); color: var(--teal-600); box-shadow: var(--shadow-sm); position: relative; z-index: 1; }
.step-icon svg { width: 34px; height: 34px; }
.process-step h3 { font-family: "Manrope", sans-serif; color: var(--navy-900); margin: 0 0 .5rem; }
.process-step p { color: var(--muted); font-size: .9rem; max-width: 300px; margin: 0 auto; }

.faq-section { background: var(--cream); }
.faq-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; align-items: start; }
.faq-intro p { color: var(--muted); max-width: 420px; }
.faq-list { border-top: 1px solid var(--line); }
details { border-bottom: 1px solid var(--line); }
summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.5rem 0; color: var(--navy-900); font-weight: 700; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; width: 30px; height: 30px; border-radius: 50%; background: var(--blue-100); display: grid; place-items: center; color: var(--teal-600); font-size: 1.2rem; font-weight: 400; flex-shrink: 0; }
details[open] summary::after { content: "–"; }
details p { color: var(--muted); margin: -.6rem 0 1.5rem; padding-right: 3.5rem; }

.contact-section { padding: 110px 0; background: linear-gradient(145deg, var(--navy-950), #103650); color: var(--white); position: relative; overflow: hidden; }
.contact-section::before { content: ""; position: absolute; width: 500px; height: 500px; border-radius: 50%; background: rgba(20,166,163,.13); left: -180px; bottom: -260px; }
.contact-section::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px) 0 0 / 70px 70px, linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px) 0 0 / 70px 70px; }
.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 80px; align-items: start; position: relative; z-index: 1; }
.section-kicker.light { color: #70ddd9; }
.contact-copy h2 { color: var(--white); }
.contact-copy > p { color: rgba(255,255,255,.68); max-width: 520px; font-size: 1.02rem; }
.contact-direct { margin-top: 2.2rem; display: grid; gap: .8rem; }
.contact-direct a { display: flex; align-items: center; gap: .8rem; }
.contact-direct a > span { width: 44px; height: 44px; border-radius: 14px; display: grid; place-items: center; background: rgba(255,255,255,.08); color: #70ddd9; }
.contact-direct small, .contact-direct strong { display: block; }
.contact-direct small { color: rgba(255,255,255,.52); font-size: .7rem; }
.contact-direct strong { font-size: .9rem; }
.contact-form { background: var(--white); color: var(--text); border-radius: var(--radius-lg); padding: 2rem; box-shadow: 0 30px 70px rgba(0,0,0,.22); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: .9rem; }
.contact-form label { display: block; margin-bottom: .9rem; }
.contact-form label > span { display: block; font-size: .74rem; color: #586b79; font-weight: 700; margin-bottom: .36rem; }
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%;
  border: 1px solid #dbe4e9;
  border-radius: 13px;
  background: #f8fafb;
  color: var(--navy-900);
  padding: .86rem .9rem;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--teal-500); box-shadow: 0 0 0 4px rgba(20,166,163,.11); background: var(--white); }
.contact-form textarea { resize: vertical; }
.checkbox-label { display: flex !important; align-items: flex-start; gap: .65rem; }
.checkbox-label input { width: 17px; height: 17px; margin-top: .15rem; accent-color: var(--teal-600); }
.checkbox-label span { font-weight: 400 !important; font-size: .72rem !important; color: var(--muted) !important; }
.button-submit { width: 100%; background: var(--teal-500); color: var(--white); }
.button-submit:hover { background: var(--teal-600); }
.form-status { min-height: 1.2rem; margin: .7rem 0 0; font-size: .78rem; color: var(--teal-600); text-align: center; }

.site-footer { background: #061624; color: rgba(255,255,255,.62); }
.footer-main { display: grid; grid-template-columns: 1.35fr .75fr .95fr .75fr; gap: 50px; padding: 70px 0 50px; }
.brand-footer .brand-copy strong { color: var(--white); }
.brand-footer .brand-copy small { color: rgba(255,255,255,.52); }
.footer-brand p { max-width: 330px; font-size: .83rem; }
.footer-main h3 { color: var(--white); font-size: .8rem; text-transform: uppercase; letter-spacing: .1em; margin: .3rem 0 1rem; }
.footer-main > div:not(.footer-brand) { display: flex; flex-direction: column; gap: .55rem; font-size: .82rem; }
.footer-main a:hover { color: var(--white); }
.footer-bottom { min-height: 64px; border-top: 1px solid rgba(255,255,255,.08); display: flex; align-items: center; justify-content: space-between; gap: 1rem; font-size: .72rem; }
.back-to-top { position: fixed; right: 22px; bottom: 22px; width: 46px; height: 46px; border: 0; border-radius: 14px; background: var(--navy-900); color: var(--white); box-shadow: var(--shadow-md); display: grid; place-items: center; opacity: 0; visibility: hidden; transform: translateY(15px); transition: .25s ease; z-index: 900; }
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top svg { fill: none; stroke: currentColor; stroke-width: 2; width: 20px; height: 20px; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .75s cubic-bezier(.2,.8,.2,1), transform .75s cubic-bezier(.2,.8,.2,1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.reveal-delay-small { transition-delay: .08s; }
.reveal-delay { transition-delay: .15s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 1060px) {
  .topbar-location { display: none; }
  .nav-toggle { display: block; position: relative; z-index: 1002; }
  .main-nav {
    position: fixed;
    inset: 0 0 auto auto;
    width: min(86vw, 390px);
    height: 100vh;
    padding: 115px 28px 30px;
    background: var(--cream);
    box-shadow: -20px 0 60px rgba(7,26,43,.15);
    flex-direction: column;
    align-items: stretch;
    gap: .2rem;
    transform: translateX(110%);
    transition: transform .28s ease;
    z-index: 1001;
  }
  .main-nav.open { transform: translateX(0); }
  .main-nav > a:not(.nav-cta) { padding: .9rem 0; font-size: 1rem; border-bottom: 1px solid var(--line); }
  .main-nav > a:not(.nav-cta)::after { display: none; }
  .nav-cta { margin-top: 1rem; }
  .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  body.nav-open { overflow: hidden; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-copy { max-width: 820px; }
  .hero-card { max-width: 680px; }
  .service-grid { grid-template-columns: repeat(2,1fr); }
  .advisory-grid, .agency-grid, .faq-grid, .contact-grid { gap: 55px; }
}

@media (max-width: 820px) {
  .section { padding: 90px 0; }
  .hero { padding-top: 64px; }
  .hero-strip { grid-template-columns: 1fr; transform: translateY(24px); margin-top: 55px; }
  .strip-item { border-right: 0; border-bottom: 1px solid var(--line); }
  .strip-item:last-child { border-bottom: 0; }
  .services { padding-top: 125px; }
  .section-heading { align-items: start; flex-direction: column; gap: 1rem; }
  .advisory-grid, .agency-grid, .faq-grid, .contact-grid { grid-template-columns: 1fr; }
  .advisory-visual { order: 2; }
  .visual-panel { height: 430px; }
  .agency-media { max-width: 680px; }
  .process-grid { grid-template-columns: 1fr; gap: 3rem; }
  .process-grid::before { display: none; }
  .process-step { max-width: 420px; margin-inline: auto; }
  .step-number { right: 31%; }
  .footer-main { grid-template-columns: 1.2fr 1fr; }
}

@media (max-width: 620px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .topbar-inner { justify-content: center; min-height: 36px; }
  .topbar-contact a:nth-child(2) { display: none; }
  .header-inner { min-height: 72px; }
  .brand-copy small { display: none; }
  .hero { padding-top: 48px; }
  .hero h1 { font-size: clamp(2.7rem, 14vw, 4rem); }
  .hero-lead { font-size: 1rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-trust { grid-template-columns: 1fr; gap: .75rem; }
  .hero-trust div { border-right: 0; border-bottom: 1px solid var(--line); padding-bottom: .7rem; }
  .hero-trust div:last-child { border-bottom: 0; }
  .hero-card { padding: 22px; border-radius: 24px; }
  .check-options { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 270px; }
  .visual-panel { height: 360px; }
  .visual-chart { left: 30px; right: 30px; bottom: 80px; gap: 10px; height: 190px; }
  .visual-badge { left: 20px; right: 20px; bottom: 20px; }
  .agency-card { position: relative; left: auto; bottom: auto; margin: -25px 14px 0; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 1.3rem; border-radius: 24px; }
  .footer-main { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; justify-content: center; padding: 1rem 0; }
}

/* =========================================================
   Final adaptation: original design, corrected mobile layout,
   centered icon containers, compact logo and integrated team.
   ========================================================= */

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}

@supports not (overflow: clip) {
  html,
  body { overflow-x: hidden; }
}

body { min-width: 0; }
main { min-width: 0; overflow: clip; }
section, header, footer, nav, form, article, .container { min-width: 0; }

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

[id] { scroll-margin-top: calc(var(--header-height) + 24px); }

/* Real logo – deliberately smaller and calmer than in version 2. */
.brand { min-width: 0; }
.brand-logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
  flex: 0 0 40px;
  filter: drop-shadow(0 5px 10px rgba(7,26,43,.10));
}
.brand-copy { min-width: 0; }
.brand-copy strong,
.brand-copy small { overflow-wrap: anywhere; }
.brand-footer .brand-logo { width: 42px; height: 42px; flex-basis: 42px; }

/* Grid/flex children must never widen the page. */
.hero-grid > *,
.hero-strip > *,
.service-grid > *,
.advisory-grid > *,
.agency-grid > *,
.team-layout > *,
.team-secondary > *,
.process-grid > *,
.faq-grid > *,
.contact-grid > *,
.footer-main > *,
.form-row > * { min-width: 0; }

.topbar-contact,
.topbar-location,
.main-nav,
.hero-card,
.check-result,
.agency-card,
.contact-direct,
.contact-form,
.footer-main { min-width: 0; }

.topbar a,
.topbar-location,
.contact-direct a,
.contact-direct strong,
.footer-main a,
.footer-main span,
.check-result strong,
.agency-card > div,
.team-featured-body,
.team-compact-body {
  overflow-wrap: anywhere;
}

/* Exact icon centering. The original broad span rules no longer override these boxes. */
.option-icon,
.service-icon,
.strip-icon,
.agency-pin,
.step-icon,
.contact-direct a > span,
.check-list li > span,
summary::after {
  display: grid;
  place-items: center;
  line-height: 0;
}

.option-icon svg,
.service-icon svg,
.strip-icon svg,
.agency-pin svg,
.step-icon svg,
.contact-direct a > span svg,
.check-list li > span,
summary::after {
  margin: 0;
}

.strip-item { min-width: 0; }
.strip-item > .strip-icon {
  display: grid !important;
  place-items: center;
  flex: 0 0 46px;
  width: 46px;
  height: 46px;
  color: var(--teal-600);
  margin-top: 0;
  font-size: 1rem;
  line-height: 0;
}
.strip-item > .strip-icon svg { width: 22px; height: 22px; }
.strip-item > div { min-width: 0; }
.strip-item > div > strong,
.strip-item > div > span { display: block; }
.strip-item > div > span { color: var(--muted); font-size: .76rem; margin-top: .1rem; }

.agency-card > .agency-pin {
  display: grid !important;
  place-items: center;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  color: var(--teal-600);
  margin-top: 0;
  font-size: 1rem;
  line-height: 0;
}
.agency-card > .agency-pin svg { width: 20px; height: 20px; }
.agency-card > div > strong,
.agency-card > div > span { display: block; }
.agency-card > div > span { color: var(--muted); font-size: .72rem; margin-top: .12rem; }

.topbar svg { width: 15px; height: 15px; flex: 0 0 15px; }

/* Keep decorative elements inside the visual canvas. */
.agency-media { min-width: 0; }
.agency-media::before { right: 0; transform: translateX(30px); }
.agency-media > img { min-width: 0; }

/* Integrated, editorial team presentation. */
.team-showcase {
  margin-top: 112px;
  padding-top: 88px;
  border-top: 1px solid var(--line);
}

.team-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 4rem;
  margin-bottom: 3rem;
}
.team-heading > div { max-width: 650px; }
.team-heading h2 {
  margin: .75rem 0 0;
  font-family: "Manrope", sans-serif;
  color: var(--navy-950);
  font-size: clamp(2.1rem, 4vw, 3.45rem);
  line-height: 1.08;
  letter-spacing: -.055em;
}
.team-heading > p {
  max-width: 475px;
  margin: 0;
  color: var(--muted);
}

.team-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, .85fr);
  gap: 22px;
  align-items: stretch;
}

.team-featured,
.team-compact {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  min-width: 0;
}

.team-featured {
  display: grid;
  grid-template-columns: minmax(230px, .82fr) minmax(0, 1.18fr);
  min-height: 548px;
  background: linear-gradient(145deg, var(--navy-950), #123b57);
  color: var(--white);
  box-shadow: var(--shadow-md);
}
.team-featured::after {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  right: -110px;
  bottom: -120px;
  border-radius: 50%;
  background: rgba(20,166,163,.16);
  pointer-events: none;
}
.team-featured-photo { min-width: 0; min-height: 0; overflow: hidden; }
.team-featured-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
}
.team-featured-body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 4vw, 3.4rem);
}
.team-role {
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  min-height: 29px;
  padding: .28rem .68rem;
  border-radius: 999px;
  background: var(--teal-100);
  color: var(--teal-600);
  font-size: .67rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.team-featured h3,
.team-compact h3 {
  font-family: "Manrope", sans-serif;
  letter-spacing: -.035em;
}
.team-featured h3 {
  margin: 1.15rem 0 .35rem;
  color: var(--white);
  font-size: clamp(1.85rem, 3vw, 2.65rem);
  line-height: 1.08;
}
.team-featured .team-position {
  margin: 0 0 1.25rem;
  color: #70ddd9;
  font-weight: 700;
}
.team-featured-body > p:not(.team-position) {
  max-width: 470px;
  margin: 0;
  color: rgba(255,255,255,.68);
}

.team-secondary {
  display: grid;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 22px;
}
.team-compact {
  display: grid;
  grid-template-columns: minmax(145px, 42%) minmax(0, 1fr);
  min-height: 263px;
  background: var(--blue-50);
  border: 1px solid var(--line);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.team-compact:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(20,166,163,.24);
}
.team-compact-photo { min-width: 0; min-height: 0; overflow: hidden; }
.team-compact-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 16%;
  transition: transform .4s ease;
}
.team-compact:first-child .team-compact-photo img { object-position: center 12%; }
.team-compact:hover .team-compact-photo img { transform: scale(1.025); }
.team-compact-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.55rem;
}
.team-compact h3 {
  margin: .9rem 0 .32rem;
  color: var(--navy-900);
  font-size: 1.2rem;
  line-height: 1.16;
}
.team-compact-body > p { margin: 0; color: var(--muted); font-size: .86rem; }
.team-languages { display: flex; flex-wrap: wrap; gap: .42rem; margin-top: 1rem; }
.team-languages span {
  display: inline-flex;
  align-items: center;
  min-height: 27px;
  padding: .24rem .58rem;
  border-radius: 999px;
  border: 1px solid rgba(20,166,163,.18);
  background: rgba(223,247,245,.86);
  color: var(--teal-600);
  font-size: .67rem;
  font-weight: 700;
}
.team-featured .team-languages span {
  border-color: rgba(255,255,255,.13);
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.82);
}

/* Safer mobile navigation: hidden menu cannot create a horizontal scrollbar. */
@media (max-width: 1060px) {
  .main-nav {
    inset: 0 0 0 auto;
    width: min(88vw, 390px);
    max-width: 100%;
    height: 100dvh;
    overflow-y: auto;
    overscroll-behavior: contain;
    visibility: hidden;
    pointer-events: none;
    transform: translate3d(105%, 0, 0);
  }
  .main-nav.open {
    visibility: visible;
    pointer-events: auto;
    transform: translate3d(0, 0, 0);
  }
  .team-layout { grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr); }
  .team-featured { grid-template-columns: minmax(205px, .78fr) minmax(0, 1.22fr); }
}

@media (max-width: 900px) {
  .team-heading { align-items: start; flex-direction: column; gap: 1rem; }
  .team-layout { grid-template-columns: 1fr; }
  .team-featured { min-height: 500px; }
  .team-secondary { grid-template-columns: repeat(2, minmax(0,1fr)); grid-template-rows: none; }
  .team-compact { grid-template-columns: 1fr; min-height: 0; }
  .team-compact-photo { aspect-ratio: 4 / 3.45; }
  .team-compact-body { min-height: 210px; }
}

@media (max-width: 620px) {
  .brand { gap: .65rem; }
  .brand-logo,
  .brand-footer .brand-logo { width: 35px; height: 35px; flex-basis: 35px; }
  .brand-copy strong { font-size: .92rem; }
  .hero-card,
  .contact-form { width: 100%; }
  .strip-item { padding: 1.2rem 1.05rem; }
  .strip-item > .strip-icon { flex-basis: 44px; width: 44px; height: 44px; }
  .agency-media::before { right: 14px; transform: none; width: calc(78% - 14px); }
  .agency-card { max-width: calc(100% - 28px); }
  .team-showcase { margin-top: 82px; padding-top: 68px; }
  .team-heading { margin-bottom: 2rem; }
  .team-featured { grid-template-columns: 1fr; min-height: 0; }
  .team-featured-photo { aspect-ratio: 4 / 4.15; }
  .team-featured-body { padding: 1.7rem; }
  .team-secondary { grid-template-columns: 1fr; }
  .team-compact { grid-template-columns: minmax(118px, 38%) minmax(0, 1fr); }
  .team-compact-photo { aspect-ratio: auto; }
  .team-compact-body { min-height: 230px; padding: 1.25rem; }
  .team-compact h3 { font-size: 1.08rem; }
  .contact-direct strong { font-size: .82rem; }
}

@media (max-width: 390px) {
  .container { width: min(calc(100% - 22px), var(--container)); }
  .hero h1 { font-size: clamp(2.45rem, 13.2vw, 3.25rem); }
  .hero-card { padding: 18px; }
  .team-compact { grid-template-columns: 1fr; }
  .team-compact-photo { aspect-ratio: 4 / 3.6; }
  .team-compact-body { min-height: 0; }
}

/* Closed mobile navigation remains inside the viewport, so even browsers that
   treat transformed fixed elements as overflow cannot scroll sideways. */
@media (max-width: 1060px) {
  .main-nav {
    transform: none;
    opacity: 0;
    clip-path: inset(0 0 0 100%);
    transition: clip-path .28s ease, opacity .18s ease, visibility .28s;
  }
  .main-nav.open {
    transform: none;
    opacity: 1;
    clip-path: inset(0 0 0 0);
  }
}

@media (max-width: 900px) {
  .agency-card {
    position: relative;
    left: auto;
    bottom: auto;
    margin: -25px 14px 0;
    max-width: calc(100% - 28px);
  }
}

/* Progressive enhancement: content stays visible if JavaScript is blocked. */
.reveal { opacity: 1; transform: none; }
.js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .75s cubic-bezier(.2,.8,.2,1), transform .75s cubic-bezier(.2,.8,.2,1);
}
.js .reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; }
}
