:root {
  --navy: #0b2136;
  --navy-2: #123652;
  --teal: #0d7e87;
  --teal-light: #dff3f2;
  --sky: #eef7f7;
  --sand: #d7b06b;
  --ink: #14283a;
  --muted: #5d6c78;
  --line: #d8e3e6;
  --white: #ffffff;
  --off-white: #f8faf9;
  --shadow: 0 18px 55px rgba(14, 39, 57, 0.12);
  --radius: 24px;
  --shell: min(1180px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; }
.shell { width: var(--shell); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; z-index: 1000; top: 12px; left: 12px; transform: translateY(-150%); padding: 10px 14px; color: white; background: var(--navy); border-radius: 8px; }
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  background: rgba(255,255,255,.93);
  border-bottom: 1px solid rgba(216,227,230,.82);
  backdrop-filter: blur(16px);
}
.nav-wrap { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 10px; color: var(--navy); text-decoration: none; font-size: 17px; letter-spacing: -.02em; white-space: nowrap; }
.brand b { display: block; font-size: 12px; color: var(--teal); text-transform: uppercase; letter-spacing: .14em; }
.brand-mark { display: grid; place-items: center; width: 42px; height: 42px; background: var(--navy); border-radius: 13px; }
.brand-mark svg { width: 32px; height: 32px; fill: none; stroke: white; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; }
.brand-mark svg .wave { stroke: #55c3c2; }
.site-nav { display: flex; align-items: center; gap: 28px; }
.site-nav > a:not(.button) { color: #334858; text-decoration: none; font-size: 14px; font-weight: 650; }
.site-nav > a:not(.button):hover { color: var(--teal); }
.menu-button { display: none; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 13px 22px;
  border: 1px solid var(--navy);
  border-radius: 999px;
  color: white;
  background: var(--navy);
  box-shadow: 0 10px 24px rgba(11,33,54,.13);
  text-decoration: none;
  font-size: 15px;
  font-weight: 750;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.button:hover { transform: translateY(-2px); background: var(--navy-2); box-shadow: 0 14px 28px rgba(11,33,54,.18); }
.button-small { min-height: 42px; padding: 9px 17px; font-size: 13px; }
.text-link { display: inline-flex; gap: 8px; align-items: center; color: var(--navy); font-weight: 750; text-underline-offset: 5px; }
.text-link:hover { color: var(--teal); }

.hero { position: relative; overflow: hidden; padding: 92px 0 90px; background: linear-gradient(122deg, #f8fbfa 0%, #eef7f7 65%, #e4f2f1 100%); }
.hero::before { content: ""; position: absolute; width: 420px; height: 420px; left: -200px; bottom: -240px; border: 60px solid rgba(13,126,135,.08); border-radius: 50%; }
.hero-grid { display: grid; grid-template-columns: .95fr 1.05fr; align-items: center; gap: 76px; }
.eyebrow { margin: 0 0 16px; color: var(--teal); font-size: 12px; font-weight: 850; letter-spacing: .16em; line-height: 1.3; text-transform: uppercase; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { color: var(--navy); line-height: 1.08; letter-spacing: -.035em; }
h1 { max-width: 690px; margin-bottom: 24px; font-size: clamp(46px, 6vw, 75px); }
h2 { margin-bottom: 18px; font-size: clamp(35px, 4.5vw, 54px); }
h3 { margin-bottom: 12px; font-size: 22px; }
.hero-lede { max-width: 660px; margin-bottom: 30px; color: #425867; font-size: 19px; line-height: 1.7; }
.hero-actions { display: flex; align-items: center; gap: 24px; }
.hero-points { display: flex; flex-wrap: wrap; gap: 10px 25px; margin: 28px 0 0; padding: 0; list-style: none; color: #47606d; font-size: 13px; font-weight: 700; }
.hero-points li::before { content: "✓"; margin-right: 7px; color: var(--teal); }
.hero-visual { position: relative; padding: 14px 12px 36px 30px; }
.image-frame { overflow: hidden; aspect-ratio: 4/3; border: 10px solid white; border-radius: 38% 18px 18px 18px; box-shadow: var(--shadow); }
.image-frame img { width: 100%; height: 100%; object-fit: cover; }
.status-card { position: absolute; display: flex; align-items: center; gap: 12px; min-width: 220px; padding: 14px 16px; background: rgba(255,255,255,.96); border: 1px solid rgba(216,227,230,.9); border-radius: 15px; box-shadow: 0 14px 30px rgba(11,33,54,.14); }
.status-card b, .status-card small { display: block; }
.status-card b { color: var(--navy); font-size: 13px; }
.status-card small { margin-top: 2px; color: var(--muted); font-size: 11px; }
.status-one { left: 0; bottom: 2px; }
.status-two { top: 44px; right: -18px; }
.status-dot { width: 12px; height: 12px; border-radius: 50%; background: #25a66a; box-shadow: 0 0 0 5px #e3f6ec; }
.status-icon { display: grid; place-items: center; width: 25px; height: 25px; color: white; background: var(--teal); border-radius: 50%; font-size: 13px; font-weight: 900; }

.trust-strip { background: var(--navy); color: white; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); min-height: 86px; align-items: center; }
.trust-grid span { padding: 0 22px; border-right: 1px solid rgba(255,255,255,.16); text-align: center; font-size: 13px; font-weight: 750; letter-spacing: .03em; }
.trust-grid span:first-child { padding-left: 0; }
.trust-grid span:last-child { padding-right: 0; border: 0; }

.section { padding: 104px 0; }
.section-heading { display: grid; grid-template-columns: 1.25fr .75fr; align-items: end; gap: 80px; margin-bottom: 52px; }
.section-heading h2 { max-width: 690px; margin-bottom: 0; }
.section-heading > p { margin-bottom: 3px; color: var(--muted); font-size: 17px; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.service-card { min-height: 245px; padding: 31px 30px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: white; transition: background .25s ease, transform .25s ease; }
.service-card:hover { position: relative; z-index: 2; transform: translateY(-4px); background: var(--sky); }
.service-number { display: inline-flex; margin-bottom: 38px; color: var(--teal); font-size: 12px; font-weight: 850; letter-spacing: .12em; }
.service-card p { margin: 0; color: var(--muted); font-size: 15px; }

.process { color: white; background: var(--navy); }
.process-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: 100px; align-items: start; }
.process h2, .process h3 { color: white; }
.process-intro { position: sticky; top: 120px; }
.process-intro > p:not(.eyebrow) { max-width: 480px; color: #c1d0da; }
.light-link { margin-top: 12px; color: white; }
.steps { margin: 0; padding: 0; list-style: none; }
.steps li { display: grid; grid-template-columns: 70px 1fr; gap: 24px; padding: 0 0 42px; margin-bottom: 42px; border-bottom: 1px solid rgba(255,255,255,.14); }
.steps li:last-child { margin: 0; padding-bottom: 0; border: 0; }
.steps li > span { display: grid; place-items: center; width: 58px; height: 58px; border: 1px solid rgba(255,255,255,.35); border-radius: 50%; color: #83d8d5; font-size: 18px; font-weight: 850; }
.steps h3 { font-size: 26px; }
.steps p { margin: 0; color: #bed0da; }

.control { padding-block: 72px; background: var(--teal-light); }
.control-grid { display: grid; grid-template-columns: 86px .9fr 1.1fr; align-items: center; gap: 38px; }
.control-grid h2 { margin: 0; font-size: clamp(30px, 3.5vw, 44px); }
.control-grid > p { margin: 0; color: #36515d; }
.control-badge { display: grid; place-items: center; width: 82px; height: 82px; background: white; border-radius: 24px; box-shadow: 0 14px 35px rgba(11,33,54,.10); }
.control-badge svg { width: 54px; fill: none; stroke: var(--teal); stroke-width: 4; stroke-linecap: round; stroke-linejoin: round; }

.pricing { background: var(--off-white); }
.pricing-heading { align-items: start; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: stretch; }
.price-card { position: relative; padding: 36px 30px 32px; background: white; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: 0 8px 24px rgba(11,33,54,.04); }
.price-card.featured { border: 2px solid var(--teal); box-shadow: 0 20px 50px rgba(13,126,135,.15); }
.popular { position: absolute; top: 0; right: 26px; transform: translateY(-50%); padding: 7px 13px; color: white; background: var(--teal); border-radius: 999px; font-size: 11px; font-weight: 850; letter-spacing: .07em; text-transform: uppercase; }
.plan-label { margin-bottom: 10px; color: var(--teal); font-size: 11px; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }
.price-card h3 { font-size: 27px; }
.price { margin: 26px 0 2px; color: var(--navy); font-size: 45px; font-weight: 850; letter-spacing: -.05em; line-height: 1; }
.price > span { margin-right: 2px; font-size: 21px; vertical-align: 16px; }
.price small { color: var(--muted); font-size: 12px; font-weight: 650; letter-spacing: 0; }
.price-note { min-height: 24px; margin: 9px 0 24px; color: var(--muted); font-size: 13px; }
.price-card ul { margin: 0; padding: 23px 0 0; border-top: 1px solid var(--line); list-style: none; }
.price-card li { position: relative; padding: 7px 0 7px 25px; color: #435865; font-size: 14px; }
.price-card li::before { content: "✓"; position: absolute; left: 0; color: var(--teal); font-weight: 900; }
.full-button { width: 100%; margin-top: 26px; }
.pricing-footnote { display: flex; justify-content: center; margin-top: 28px; }
.pricing-footnote p { margin: 0; color: var(--muted); font-size: 13px; text-align: center; }

.definition { background: #f0f7f6; }
.definition-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 90px; align-items: center; }
.definition-grid h2 { margin: 0; }
.definition-copy > p { color: #405965; font-size: 17px; }
.turnover-flow { display: flex; flex-wrap: wrap; align-items: center; gap: 9px; margin-top: 24px; }
.turnover-flow span { padding: 9px 12px; color: var(--navy); background: white; border: 1px solid var(--line); border-radius: 9px; font-size: 12px; font-weight: 750; }
.turnover-flow i { color: var(--teal); font-style: normal; }

.faq-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 90px; align-items: start; }
.faq-heading { position: sticky; top: 120px; }
.faq-heading p:not(.eyebrow) { color: var(--muted); }
.accordion details { border-top: 1px solid var(--line); }
.accordion details:last-child { border-bottom: 1px solid var(--line); }
.accordion summary { position: relative; padding: 25px 50px 25px 0; color: var(--navy); cursor: pointer; list-style: none; font-size: 18px; font-weight: 750; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary::after { content: "+"; position: absolute; top: 22px; right: 4px; display: grid; place-items: center; width: 30px; height: 30px; color: var(--teal); border: 1px solid var(--line); border-radius: 50%; font-size: 19px; line-height: 1; }
.accordion details[open] summary::after { content: "−"; }
.accordion details p { max-width: 700px; margin: -7px 45px 25px 0; color: var(--muted); }

.cta-section { padding: 24px 0 104px; }
.cta-card { display: grid; grid-template-columns: .78fr 1.22fr; gap: 64px; align-items: center; padding: 72px; color: white; background: linear-gradient(125deg, var(--navy), #0f5363); border-radius: 32px; box-shadow: var(--shadow); }
.cta-card h2 { max-width: 560px; margin-bottom: 20px; color: white; }
.contact-copy > p:not(.eyebrow) { max-width: 510px; color: #d2e0e6; }
.button-light { color: var(--navy); background: white; border-color: white; }
.button-light:hover { color: white; background: transparent; }
.contact-note { display: flex; align-items: center; gap: 14px; margin-top: 34px; }
.contact-note > span { display: grid; width: 42px; height: 42px; place-items: center; flex: 0 0 auto; color: var(--navy); background: #87d9d5; border-radius: 50%; font-weight: 900; }
.contact-note p { margin: 0; color: #aebfca; font-size: 12px; line-height: 1.5; }
.contact-note a { color: white; font-size: 15px; font-weight: 750; text-underline-offset: 4px; }
.inquiry-form { position: relative; padding: 34px; color: var(--ink); background: white; border-radius: 22px; box-shadow: 0 20px 50px rgba(0,0,0,.18); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.inquiry-form label { display: block; margin-bottom: 18px; }
.inquiry-form label > span { display: block; margin-bottom: 7px; color: var(--navy); font-size: 12px; font-weight: 800; }
.inquiry-form input, .inquiry-form select, .inquiry-form textarea { width: 100%; padding: 13px 14px; color: var(--ink); background: #f7faf9; border: 1px solid #cfdde1; border-radius: 10px; font: inherit; font-size: 14px; outline: none; transition: border-color .2s ease, box-shadow .2s ease; }
.inquiry-form input, .inquiry-form select { min-height: 48px; }
.inquiry-form textarea { resize: vertical; }
.inquiry-form input:focus, .inquiry-form select:focus, .inquiry-form textarea:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(13,126,135,.13); }
.inquiry-form .form-honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-submit { width: 100%; cursor: pointer; }
.form-submit:disabled { cursor: wait; opacity: .7; }
.form-status { min-height: 24px; margin: 12px 0 -6px; color: var(--teal); font-size: 13px; font-weight: 750; text-align: center; }
.form-status.is-error { color: #a13d3d; }

.site-footer { padding: 48px 0 24px; color: #c4d0d8; background: #071827; }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr auto; gap: 30px; align-items: center; }
.footer-brand { color: white; }
.footer-grid p { margin: 0; font-size: 13px; }
.footer-grid > a:last-child { color: white; font-size: 14px; font-weight: 750; text-underline-offset: 4px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; margin-top: 36px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.12); color: #8294a1; }
.footer-bottom a { color: inherit; }

.reveal { opacity: 0; transform: translateY(14px); transition: opacity .65s ease, transform .65s ease; }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-delay { transition-delay: .12s; }

@media (max-width: 980px) {
  .menu-button { display: grid; width: 44px; height: 44px; place-content: center; gap: 5px; padding: 0; border: 0; background: transparent; }
  .menu-button span:not(.sr-only) { display: block; width: 22px; height: 2px; background: var(--navy); }
  .site-nav { position: absolute; top: 76px; left: 0; right: 0; display: none; align-items: stretch; gap: 0; padding: 16px 20px 24px; background: white; border-bottom: 1px solid var(--line); box-shadow: 0 18px 30px rgba(11,33,54,.08); }
  .site-nav.is-open { display: grid; }
  .site-nav > a:not(.button) { padding: 13px 4px; border-bottom: 1px solid var(--line); }
  .site-nav .button { margin-top: 16px; }
  .hero { padding-top: 64px; }
  .hero-grid { grid-template-columns: 1fr; gap: 46px; }
  .hero-copy { max-width: 760px; }
  .hero-visual { max-width: 720px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: 1fr; gap: 58px; }
  .process-intro, .faq-heading { position: static; }
  .control-grid { grid-template-columns: 74px 1fr; }
  .control-grid > p { grid-column: 2; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 680px; margin: 0 auto; }
  .price-card { padding: 38px; }
  .definition-grid, .faq-grid { grid-template-columns: 1fr; gap: 42px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid p { grid-column: 1 / -1; grid-row: 2; }
}

@media (max-width: 680px) {
  :root { --shell: min(100% - 30px, 1180px); }
  .nav-wrap { min-height: 68px; }
  .brand { font-size: 15px; }
  .brand-mark { width: 38px; height: 38px; }
  .site-nav { top: 68px; }
  .hero { padding: 52px 0 68px; }
  h1 { font-size: clamp(43px, 13vw, 60px); }
  h2 { font-size: 36px; }
  .hero-lede { font-size: 17px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 18px; }
  .hero-points { display: grid; }
  .hero-visual { padding: 6px 0 80px; }
  .image-frame { border-width: 7px; border-radius: 32% 14px 14px 14px; }
  .status-one { left: 5px; bottom: 22px; }
  .status-two { top: auto; right: 5px; bottom: -26px; }
  .status-card { min-width: 205px; padding: 12px 14px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); padding: 14px 0; }
  .trust-grid span { min-height: 50px; display: grid; place-items: center; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.12); }
  .section { padding: 76px 0; }
  .section-heading { grid-template-columns: 1fr; gap: 24px; margin-bottom: 36px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 215px; }
  .process-grid { gap: 48px; }
  .steps li { grid-template-columns: 52px 1fr; gap: 18px; }
  .steps li > span { width: 48px; height: 48px; }
  .control-grid { grid-template-columns: 1fr; gap: 24px; }
  .control-grid > p { grid-column: 1; }
  .price-card { padding: 32px 24px; }
  .price { font-size: 40px; }
  .turnover-flow i { display: none; }
  .cta-section { padding-bottom: 76px; }
  .cta-card { grid-template-columns: 1fr; gap: 38px; padding: 54px 22px; border-radius: 24px; }
  .inquiry-form { padding: 26px 20px; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid p { grid-column: 1; grid-row: auto; }
  .footer-bottom { flex-direction: column; gap: 10px; }
}

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