:root {
  --bg: #f2f0e9;
  --surface: #fffdf7;
  --surface-2: #e7e9e4;
  --ink: #14282b;
  --muted: #526466;
  --line: #cbd2cd;
  --primary: #126b72;
  --primary-2: #0b4b50;
  --accent: #d38a25;
  --success: #1f8f63;
  --shadow: 0 24px 60px rgba(20, 40, 43, 0.14);
  --radius: 8px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Source Sans 3", sans-serif;
  color: var(--ink);
  background-color: var(--bg);
  background-image: linear-gradient(rgba(20, 40, 43, 0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(20, 40, 43, 0.025) 1px, transparent 1px);
  background-size: 32px 32px;
  line-height: 1.6;
}

body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }
button, input, textarea, select { font: inherit; }

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(242, 240, 233, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(217, 225, 234, 0.75);
}

.nav-wrap {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Barlow Condensed", sans-serif;
  letter-spacing: .02em;
  font-size: 1.08rem;
  font-weight: 700;
}

.brand strong { color: var(--primary); margin-left: 2px; }
.brand-mark {
  display: grid;
  place-items: center;
  min-width: 42px;
  height: 34px;
  padding: 0 7px;
  border-radius: 2px 12px 2px 12px;
  color: white;
  background: linear-gradient(145deg, var(--primary), var(--primary-2));
  box-shadow: 0 10px 24px rgba(23, 107, 135, 0.25);
  font-size: .72rem;
  letter-spacing: -.03em;
}

.nav { display: flex; align-items: center; gap: 28px; }
.nav > a:not(.btn) { color: #344054; font-size: 0.94rem; font-weight: 600; }
.nav > a:not(.btn):hover { color: var(--primary); }

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  background: transparent;
  border: 0;
  padding: 8px;
}
.menu-toggle span { display: block; height: 2px; margin: 6px 0; background: var(--ink); }

.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 3px;
  border: 1px solid var(--primary);
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 10px 25px rgba(23, 107, 135, 0.18);
}
.btn:hover { transform: translate(-2px, -2px); background: var(--primary-2); box-shadow: 5px 5px 0 rgba(20, 40, 43, .16); }
.btn:focus-visible, a:focus-visible, summary:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; }
.btn:disabled { cursor: wait; opacity: .72; transform: none; }
.btn-small { min-height: 42px; padding: 0 17px; }
.btn-ghost { background: transparent; color: var(--primary); box-shadow: none; }
.btn-ghost:hover { color: white; }
.btn-light { background: white; color: var(--primary); border-color: white; }
.btn-light:hover { background: #edf7fa; color: var(--primary-2); }
.full { width: 100%; }

.hero {
  position: relative;
  overflow: hidden;
  padding: 100px 0 88px;
  background:
    linear-gradient(120deg, rgba(18, 107, 114, 0.09), transparent 42%),
    radial-gradient(circle at 78% 20%, rgba(211, 138, 37, 0.16), transparent 30%);
}

.hero-orb { position: absolute; border-radius: 50%; filter: blur(2px); }
.hero-orb-one { width: 360px; height: 360px; right: -140px; top: 80px; background: rgba(23, 107, 135, 0.09); }
.hero-orb-two { width: 220px; height: 220px; left: -100px; bottom: -90px; background: rgba(244, 166, 42, 0.11); }

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 70px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border: 1px solid rgba(23, 107, 135, 0.2);
  border-radius: 2px;
  color: var(--primary);
  background: rgba(255, 255, 255, 0.72);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.eyebrow.light { color: #dff7ff; border-color: rgba(255,255,255,.25); background: rgba(255,255,255,.08); }

.hero h1,
.section-heading h2,
.contact-copy h2 {
  font-family: "Barlow Condensed", sans-serif;
  letter-spacing: -0.015em;
  line-height: .98;
  text-transform: uppercase;
}

.hero h1 { margin: 22px 0 20px; font-size: clamp(3.4rem, 7vw, 7.2rem); max-width: 900px; }
.hero h1 span { color: var(--primary); }
.hero-copy > p { max-width: 700px; font-size: 1.1rem; color: var(--muted); }
.hero-actions { display: flex; gap: 14px; margin-top: 30px; }
.trust-row { display: flex; flex-wrap: wrap; gap: 24px; margin-top: 26px; color: #475467; font-size: 0.9rem; font-weight: 600; }
.trust-row span::before { content: "✓"; margin-right: 7px; color: var(--success); }

.hero-card {
  position: relative;
  padding: 30px;
  border-radius: 4px;
  color: white;
  background: linear-gradient(150deg, #123c4b, #176b87);
  box-shadow: var(--shadow);
  transform: rotate(1.2deg);
  border: 1px solid rgba(255,255,255,.2);
}
.hero-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at 90% 10%, rgba(255,255,255,.16), transparent 32%);
  pointer-events: none;
}
.card-label { display: inline-block; padding: 6px 10px; border-radius: 999px; background: rgba(255,255,255,.14); font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.hero-card h2 { margin: 20px 0 12px; font: 800 2.3rem/1 "Barlow Condensed", sans-serif; text-transform: uppercase; }
.hero-card p { color: #d7e8ee; }
.mini-metrics { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; margin: 24px 0; }
.mini-metrics div { padding: 15px 10px; border-radius: 14px; background: rgba(255,255,255,.1); }
.mini-metrics strong, .mini-metrics span { display: block; }
.mini-metrics strong { font-size: 1.08rem; }
.mini-metrics span { margin-top: 3px; font-size: .72rem; color: #c7dbe2; }
.text-link { position: relative; z-index: 1; font-weight: 700; color: white; }

.proof-strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: white; }
.proof-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.proof-grid div { padding: 24px; border-right: 1px solid var(--line); }
.proof-grid div:last-child { border-right: 0; }
.proof-grid strong, .proof-grid span { display: block; }
.proof-grid strong { font-size: .93rem; }
.proof-grid span { margin-top: 3px; font-size: .78rem; color: var(--muted); }

.section { padding: 100px 0; }
.section-muted { background: var(--surface-2); }
.section-heading { max-width: 760px; margin-bottom: 44px; }
.section-heading.compact { margin-bottom: 0; }
.section-heading h2, .contact-copy h2 { margin: 18px 0 14px; font-size: clamp(2rem, 4vw, 3.5rem); }
.section-heading p, .contact-copy p { color: var(--muted); font-size: 1.03rem; }

.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-card {
  position: relative;
  min-height: 100%;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  transition: transform .25s ease, box-shadow .25s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.service-card:nth-child(2), .service-card:nth-child(5) { transform: translateY(22px); }
.service-card:nth-child(2):hover, .service-card:nth-child(5):hover { transform: translateY(16px); }
.service-card.featured { border-color: rgba(23, 107, 135, 0.45); box-shadow: 0 15px 45px rgba(23, 107, 135, 0.1); }
.service-icon { display: inline-grid; place-items: center; width: 42px; height: 42px; border-radius: 12px; color: var(--primary); background: #eaf4f7; font-size: .85rem; font-weight: 800; }
.service-badge { position: absolute; top: 24px; right: 24px; padding: 6px 9px; border-radius: 999px; color: #8a4e00; background: #fff2dc; font-size: .7rem; font-weight: 800; text-transform: uppercase; }
.service-card h3 { margin: 20px 0 10px; font: 800 1.55rem/1.05 "Barlow Condensed", sans-serif; text-transform: uppercase; letter-spacing: .01em; }
.service-card p { color: var(--muted); font-size: .94rem; }
.service-card ul, .price-card ul { padding: 0; margin: 18px 0 0; list-style: none; }
.service-card li, .price-card li { position: relative; padding: 6px 0 6px 22px; color: #425466; font-size: .9rem; }
.service-card li::before, .price-card li::before { content: "✓"; position: absolute; left: 0; color: var(--success); font-weight: 800; }
.cta-card { display: flex; flex-direction: column; justify-content: space-between; color: white; background: linear-gradient(145deg, var(--primary), #0e4355); border-color: transparent; }
.cta-card p { color: #d9edf2; }
.cta-card .service-icon { color: white; background: rgba(255,255,255,.12); font-size: 1.2rem; }

.process-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 80px; align-items: start; }
.steps { display: grid; gap: 14px; }
.step { display: grid; grid-template-columns: 56px 1fr; gap: 18px; padding: 22px; border: 1px solid rgba(23,107,135,.12); border-radius: 18px; background: rgba(255,255,255,.72); }
.step > span { display: grid; place-items: center; width: 48px; height: 48px; border-radius: 14px; color: white; background: var(--primary); font-weight: 800; }
.step h3 { margin: 0 0 5px; font-size: 1rem; }
.step p { margin: 0; color: var(--muted); font-size: .9rem; }

.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.price-card { position: relative; padding: 30px; border: 1px solid var(--line); border-radius: 24px; background: white; }
.price-card.popular { transform: translateY(-12px); border: 2px solid var(--primary); box-shadow: var(--shadow); }
.popular-label { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); padding: 7px 12px; border-radius: 999px; color: white; background: var(--primary); font-size: .72rem; font-weight: 800; text-transform: uppercase; }
.price-tag { display: inline-block; color: var(--primary); font-size: .75rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.price-card h3 { margin: 14px 0 0; font: 800 1.7rem "Barlow Condensed", sans-serif; text-transform: uppercase; }
.price { margin: 18px 0 8px; font-size: 2.2rem; font-weight: 800; letter-spacing: -.04em; }
.price span { font-size: .88rem; font-weight: 600; color: var(--muted); letter-spacing: 0; }
.price-card > p { color: var(--muted); min-height: 52px; }
.price-card ul { margin-bottom: 24px; }

.results-section { background: #0f2e39; color: white; }
.results-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.result-card { padding: 30px; border: 1px solid rgba(255,255,255,.12); border-radius: 22px; background: rgba(255,255,255,.04); }
.result-number { color: #8fd2e5; font-weight: 800; }
.result-card h3 { margin: 28px 0 8px; font: 800 1.55rem "Barlow Condensed", sans-serif; text-transform: uppercase; }
.result-card p { color: #c6d7dd; }

.faq-wrap { display: grid; grid-template-columns: .65fr 1.35fr; gap: 70px; }
.faq-list { display: grid; gap: 14px; }
.faq-item { padding: 0 22px; border: 1px solid var(--line); border-radius: 16px; background: white; }
.faq-item summary { padding: 20px 34px 20px 0; cursor: pointer; list-style: none; font-weight: 700; position: relative; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; position: absolute; right: 0; top: 17px; color: var(--primary); font-size: 1.35rem; }
.faq-item[open] summary::after { content: "−"; }
.faq-item p { margin: 0; padding: 0 0 20px; color: var(--muted); }

.contact-section { color: white; background: linear-gradient(135deg, #102f3b, #176b87); }
.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 70px; align-items: center; }
.contact-copy p { color: #cfe4ea; }
.contact-points { display: grid; gap: 10px; margin-top: 24px; color: #e9f7fa; font-size: .92rem; }
.contact-form { position: relative; display: grid; gap: 14px; padding: 28px; border: 1px solid rgba(255,255,255,.65); border-radius: 4px; color: var(--ink); background: white; box-shadow: var(--shadow); }
.contact-form label { display: grid; gap: 7px; font-size: .84rem; font-weight: 700; }
.contact-form input, .contact-form textarea, .contact-form select { width: 100%; border: 1px solid var(--line); border-radius: 11px; padding: 12px 13px; color: var(--ink); background: #fbfcfe; outline: none; }
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(23,107,135,.1); }
.honeypot { position: absolute; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.form-status { margin: 0; padding: 10px 12px; border-left: 3px solid var(--line); color: var(--muted); background: #f5f6f3; font-size: .8rem; }
.form-status.is-loading { border-color: var(--accent); }
.form-status.is-success { border-color: var(--success); color: #176643; background: #edf8f2; }
.form-status.is-error { border-color: #b54343; color: #8b2e2e; background: #fff1f1; }

.footer { padding: 36px 0; color: #475467; background: white; border-top: 1px solid var(--line); }
.footer-grid { display: grid; grid-template-columns: 1.2fr .8fr 1fr; gap: 30px; align-items: center; }
.footer-brand { margin-bottom: 10px; }
.footer p { margin: 0; font-size: .86rem; }
.footer-links { display: flex; flex-wrap: wrap; gap: 18px; font-weight: 600; font-size: .88rem; }
.footer-meta { display: grid; justify-items: end; font-size: .78rem; }

.floating-cta { position: fixed; right: 18px; bottom: 18px; z-index: 30; padding: 13px 18px; border-radius: 999px; color: white; background: var(--primary); box-shadow: 0 12px 28px rgba(23,107,135,.35); font-weight: 800; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: .08s; }
.delay-2 { transition-delay: .16s; }

@media (max-width: 980px) {
  .hero-grid, .process-grid, .faq-wrap, .contact-grid { grid-template-columns: 1fr; gap: 44px; }
  .services-grid { grid-template-columns: repeat(2,1fr); }
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card.popular { transform: none; }
  .proof-grid { grid-template-columns: repeat(2,1fr); }
  .proof-grid div:nth-child(2) { border-right: 0; }
  .proof-grid div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-meta { justify-items: start; }
  .service-card:nth-child(2), .service-card:nth-child(5) { transform: none; }
  .service-card:nth-child(2):hover, .service-card:nth-child(5):hover { transform: translateY(-6px); }
}

@media (max-width: 760px) {
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 74px 0; }
  .hero { padding: 74px 0 60px; }
  .hero-grid { gap: 34px; }
  .hero h1 { font-size: clamp(2.3rem, 12vw, 3.9rem); }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .mini-metrics { grid-template-columns: 1fr; }
  .services-grid, .results-grid { grid-template-columns: 1fr; }
  .nav {
    position: fixed;
    inset: 76px 0 auto;
    display: none;
    padding: 24px;
    flex-direction: column;
    align-items: stretch;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 20px 40px rgba(15, 36, 52, 0.12);
  }
  .nav.open { display: flex; }
  .nav a { padding: 10px 0; }
  .menu-toggle { display: block; }
  .proof-grid { grid-template-columns: 1fr; }
  .proof-grid div { border-right: 0; border-bottom: 1px solid var(--line); }
  .proof-grid div:last-child { border-bottom: 0; }
  .faq-wrap { gap: 28px; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; transition: none; }
}
