:root {
  --ink: #0d1f28;
  --ink-soft: #243943;
  --teal: #1f7f90;
  --teal-dark: #176572;
  --teal-light: #dff1f3;
  --paper: #ffffff;
  --soft: #f3f7f7;
  --line: #dce7e9;
  --muted: #61737b;
  --dark: #0c2029;
  --dark-soft: #12313d;
  --shadow: 0 20px 50px rgba(14, 44, 55, 0.10);
  --radius: 22px;
  --container: 1180px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }

.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;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  background: var(--paper);
  color: var(--ink);
  border: 2px solid var(--teal);
  border-radius: 8px;
  transform: translateY(-150%);
}

.skip-link:focus { transform: translateY(0); }

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

.section-pad { padding: 92px 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.96);
  border-bottom: 1px solid rgba(13,31,40,0.08);
  backdrop-filter: blur(14px);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand { display: inline-flex; align-items: center; text-decoration: none; }
.brand-logo { width: 245px; height: auto; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 0.96rem;
  font-weight: 650;
}

.main-nav a {
  text-decoration: none;
  transition: color .18s ease, background .18s ease;
}

.main-nav a:hover { color: var(--teal-dark); }

.nav-cta {
  padding: 11px 17px;
  border: 1px solid var(--teal);
  border-radius: 999px;
  color: var(--teal-dark);
}

.nav-cta:hover { background: var(--teal-light); }

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: white;
  padding: 10px;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--ink);
  margin: 4px 0;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 18%, rgba(31,127,144,.12), transparent 28%),
    linear-gradient(180deg, #fff 0%, #fbfdfd 100%);
}

.hero::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  right: -90px;
  bottom: -80px;
  border: 26px solid rgba(31,127,144,.07);
  border-radius: 28px;
  transform: rotate(12deg);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, .65fr);
  gap: 70px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--teal-dark);
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 800;
}

h1, h2, h3 {
  margin-top: 0;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

h1 {
  font-size: clamp(2.8rem, 6vw, 5.8rem);
  max-width: 900px;
  margin-bottom: 26px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  margin-bottom: 22px;
}

h3 {
  font-size: 1.45rem;
  margin-bottom: 14px;
}

p { margin: 0 0 18px; }

.hero-copy > p:not(.eyebrow) { max-width: 780px; }
.hero-lead { font-size: 1.25rem; color: var(--ink-soft); }
.service-area {
  margin-top: -4px;
  color: var(--teal-dark);
  font-weight: 750;
  font-size: .95rem;
}


.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: 12px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 760;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}

.button:hover { transform: translateY(-1px); }

.button-primary {
  color: #fff;
  background: var(--teal-dark);
  box-shadow: 0 10px 25px rgba(23,101,114,.18);
}
.button-primary:hover { background: #10545f; }

.button-secondary {
  color: var(--ink);
  background: #fff;
  border-color: var(--line);
}
.button-secondary:hover { box-shadow: var(--shadow); }

.hero-panel {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 36px;
  box-shadow: var(--shadow);
}

.box-illustration {
  position: relative;
  height: 150px;
  margin-bottom: 16px;
}

.outline-box {
  position: absolute;
  left: 12px;
  top: 20px;
  width: 112px;
  height: 112px;
  border: 10px solid var(--ink);
  border-radius: 5px;
}

.check-mark {
  position: absolute;
  left: 67px;
  top: -8px;
  color: var(--teal);
  font-size: 8rem;
  line-height: 1;
  font-weight: 900;
  transform: rotate(-7deg);
}

.panel-kicker {
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.check-list li {
  position: relative;
  padding: 10px 0 10px 28px;
  border-bottom: 1px solid var(--line);
}
.check-list li:last-child { border-bottom: 0; }
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--teal-dark);
  font-weight: 900;
}

.trust-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--soft);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.trust-grid > div {
  padding: 26px 30px;
  border-right: 1px solid var(--line);
}
.trust-grid > div:last-child { border-right: 0; }
.trust-grid strong, .trust-grid span { display: block; }
.trust-grid strong { margin-bottom: 4px; }
.trust-grid span { color: var(--muted); font-size: .94rem; }

.section-heading {
  max-width: 760px;
  margin-bottom: 48px;
}
.section-heading > p:last-child { color: var(--muted); font-size: 1.08rem; }

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

.service-card {
  position: relative;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  width: 76px;
  height: 76px;
  right: -38px;
  top: -38px;
  border: 12px solid rgba(31,127,144,.09);
  border-radius: 10px;
  transform: rotate(10deg);
}

.service-card p:last-child { margin-bottom: 0; }
.service-number {
  color: var(--teal-dark);
  font-size: .8rem;
  letter-spacing: .15em;
  font-weight: 900;
  margin-bottom: 22px;
}

.service-card-featured {
  background: var(--dark);
  color: #f3fbfc;
  border-color: var(--dark);
}
.service-card-featured .service-number,
.service-card-featured .service-label { color: #8ed8e1; }
.service-card-featured::before { border-color: rgba(142,216,225,.18); }

.service-label {
  display: inline-block;
  margin: -4px 0 18px;
  font-size: .76rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 900;
}

.service-card-wide { grid-column: 1 / -1; }
.small-note { font-size: .86rem; opacity: .78; }

.soft-section { background: var(--soft); }
.split-section, .audience-grid, .custom-work {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 70px;
  align-items: start;
}
.custom-work-heading {
  font-size: clamp(2rem, 3.2vw, 3rem);
}

.large-copy { font-size: 1.08rem; }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.step-card {
  padding: 30px;
  border-top: 3px solid var(--teal);
  background: var(--soft);
  border-radius: 0 0 var(--radius) var(--radius);
}
.step-number {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  background: var(--teal-dark);
  font-weight: 800;
  margin-bottom: 28px;
}

.dark-section {
  color: #eef7f8;
  background: var(--dark);
}
.about-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 70px;
}
.light-eyebrow { color: #8ed8e1; }
.about-copy { font-size: 1.06rem; }
.about-copy blockquote {
  margin: 34px 0;
  padding: 6px 0 6px 26px;
  border-left: 4px solid #58bdca;
  color: #d9f0f3;
  font-size: 1.35rem;
  font-weight: 700;
}
.about-copy blockquote p { margin: 0; }

.callout-line {
  margin-top: 28px;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--teal-dark);
}

.contact-section {
  background: linear-gradient(135deg, #f8fbfb 0%, #e9f4f5 100%);
}
.contact-grid {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 70px;
  align-items: start;
}
.contact-copy { position: sticky; top: 110px; }
.direct-email {
  margin-top: 34px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,.65);
}
.direct-email span, .direct-email a { display: block; }
.direct-email span { font-size: .8rem; text-transform: uppercase; letter-spacing: .12em; color: var(--muted); font-weight: 800; margin-bottom: 5px; }
.direct-email a { color: var(--teal-dark); font-weight: 800; overflow-wrap: anywhere; }

.contact-form {
  padding: 34px;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 18px; }
.field label {
  display: block;
  margin-bottom: 7px;
  font-size: .92rem;
  font-weight: 760;
}
.optional { color: var(--muted); font-weight: 500; font-size: .82rem; margin-left: 5px; }
.field input, .field select, .field textarea {
  width: 100%;
  border: 1px solid #c8d7da;
  border-radius: 10px;
  padding: 13px 14px;
  color: var(--ink);
  background: #fff;
  outline: none;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field textarea { resize: vertical; min-height: 150px; }
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(31,127,144,.12);
}
.hidden-field { display: none; }
.button-full { width: 100%; border: 0; }
.form-note { margin: 13px 0 0; color: var(--muted); font-size: .85rem; text-align: center; }

.site-footer {
  padding: 48px 0;
  color: #d7e4e6;
  background: #07151b;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr .8fr 1.2fr;
  gap: 40px;
  align-items: start;
}
.footer-logo {
  width: 220px;
  filter: brightness(0) invert(1);
  opacity: .95;
  margin-bottom: 10px;
}
.footer-links { display: grid; gap: 10px; }
.footer-links a { color: #9bdde5; overflow-wrap: anywhere; }
.footer-meta { color: #9db0b6; font-size: .86rem; }
.footer-meta p { margin-bottom: 10px; }

.thanks-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 40px 20px;
  background: var(--soft);
}
.thanks-card {
  width: min(680px, 100%);
  padding: 50px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: white;
  box-shadow: var(--shadow);
  text-align: center;
}
.thanks-card img { width: 280px; margin: 0 auto 28px; }
.thanks-card h1 { font-size: clamp(2.2rem, 6vw, 4rem); margin-bottom: 20px; }

@media (max-width: 900px) {
  .section-pad { padding: 72px 0; }
  .hero-grid, .split-section, .about-grid, .audience-grid, .custom-work, .contact-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }
  .hero-grid { gap: 50px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card-wide { grid-column: auto; }
  .steps-grid { grid-template-columns: 1fr; }
  .contact-copy { position: static; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .container { width: min(100% - 28px, var(--container)); }
  .header-inner { min-height: 70px; }
  .brand-logo { width: 205px; }
  .nav-toggle { display: block; }
  .main-nav {
    display: none;
    position: absolute;
    top: 70px;
    left: 14px;
    right: 14px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: white;
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 11px 12px; border-radius: 9px; }
  .main-nav a:hover { background: var(--soft); }
  .nav-cta { border: 0; }
  h1 { font-size: clamp(2.6rem, 13vw, 4.2rem); }
  .hero-panel { padding: 28px; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-grid > div { border-right: 0; border-bottom: 1px solid var(--line); padding: 20px 8px; }
  .trust-grid > div:last-child { border-bottom: 0; }
  .form-grid { grid-template-columns: 1fr; gap: 0; }
  .contact-form { padding: 24px; }
  .thanks-card { padding: 34px 24px; }
}

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

.privacy-page {
  background: #fff;
}
.privacy-hero {
  padding: 86px 0 38px;
}
.privacy-content {
  padding: 0 0 90px;
}
.privacy-card {
  max-width: 860px;
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}
.privacy-card h2 {
  margin-top: 34px;
  font-size: 1.45rem;
}
.privacy-card h2:first-of-type { margin-top: 0; }
.privacy-card ul {
  margin: 0 0 20px 1.2rem;
}
.privacy-card li { margin-bottom: 8px; }
.privacy-updated {
  color: var(--muted);
  font-size: .9rem;
}
@media (max-width: 760px) {
  .privacy-hero { padding: 62px 0 28px; }
  .privacy-card { padding: 26px 22px; }
}
