@font-face {
  font-family: 'Cabinet Grotesk';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("/fonts/cabinet-grotesk-variable.woff2") format('woff2');
}
:root {
  --teal: #208891;
  --teal-dark: #16626a;
  --teal-tint: #e3f0f1;
  --ink: #1c2b32;
  --text: #44555c;
  --muted: #5c6b71;
  --bg: #fbfaf7;
  --mist: #f1f5f4;
  --line: #e3e9e7;
  --dark: #1f3a40;
  --display: 'Cabinet Grotesk', sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 76px; }
body { margin: 0; background: var(--bg); color: #22333a; font-family: 'Nunito Sans', sans-serif; -webkit-font-smoothing: antialiased; }
h1, h2, h3 { font-family: var(--display); font-weight: 500; color: var(--ink); margin: 0; }
h2 { font-size: 34px; }
p { margin: 0; }
a { color: var(--teal); }
a:hover { color: var(--teal-dark); }
img { max-width: 100%; }
input, textarea { font-family: inherit; }
input:focus, textarea:focus { outline: 2px solid var(--teal); outline-offset: 1px; }
.wrap { max-width: 1080px; margin: 0 auto; padding-left: 24px; padding-right: 24px; }
.section-pad { padding-top: 84px; padding-bottom: 84px; }
.section-pad-sm { padding-top: 32px; padding-bottom: 84px; }
.kicker { color: var(--teal); font-weight: 700; font-size: 14px; letter-spacing: 0.12em; text-transform: uppercase; }
.btn { display: inline-block; text-decoration: none; background: var(--teal); color: #fff; padding: 15px 26px; border-radius: 6px; font-weight: 700; font-size: 16px; text-align: center; text-wrap: balance; }
.btn:hover { background: var(--teal-dark); color: #fff; }
.btn-light { background: #fff; color: var(--teal); }
.btn-light:hover { background: #eef5f4; color: var(--teal-dark); }
.font-medium { font-weight: 700; }
/* Header */
.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 50; background: rgba(251,250,247,0.94); backdrop-filter: blur(8px); border-bottom: 1px solid #e8e4da; }
.site-header .wrap { padding-top: 14px; padding-bottom: 14px; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.brand { text-decoration: none; color: #22333a; font-family: var(--display); font-size: 20px; font-weight: 700; letter-spacing: 0.01em; white-space: nowrap; }
.brand span { color: var(--teal); font-weight: 400; }
.nav-links { display: flex; align-items: center; gap: 26px; font-size: 15px; font-weight: 600; }
.nav-links a { text-decoration: none; color: #4a5a60; }
.nav-links a:hover { color: var(--teal); }
.nav-links .nav-cta { background: var(--teal); color: #fff; padding: 10px 18px; border-radius: 6px; font-weight: 700; }
.nav-links .nav-cta:hover { background: var(--teal-dark); color: #fff; }
.nav-burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 10px; }
.nav-burger span { display: block; width: 24px; height: 2.5px; background: #22333a; border-radius: 2px; }
.header-spacer { height: 69px; }

/* Mobile menu */
.menu-layer { position: fixed; inset: 0; z-index: 60; pointer-events: none; }
.menu-layer.open { pointer-events: auto; }
.menu-overlay { position: absolute; inset: 0; background: rgba(28,43,50,0.4); opacity: 0; transition: opacity 0.25s; border: none; cursor: pointer; }
.menu-layer.open .menu-overlay { opacity: 1; }
.menu-panel { position: absolute; top: 0; right: 0; bottom: 0; width: 290px; max-width: 85vw; background: var(--bg); box-shadow: -8px 0 30px rgba(28,43,50,0.18); transform: translateX(100%); transition: transform 0.28s ease; display: flex; flex-direction: column; padding: 24px; }
.menu-layer.open .menu-panel { transform: translateX(0); }
.menu-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 28px; }
.menu-head strong { font-family: var(--display); font-size: 18px; color: var(--ink); }
.menu-close { background: none; border: none; font-size: 26px; color: #4a5a60; cursor: pointer; padding: 6px; line-height: 1; }
.menu-panel nav { display: flex; flex-direction: column; gap: 4px; font-size: 17px; font-weight: 600; }
.menu-panel nav a { text-decoration: none; color: #22333a; padding: 14px 10px; border-radius: 8px; }
.menu-panel nav a:hover { background: #eef5f4; color: var(--teal); }
.menu-panel .btn { margin-top: 20px; padding: 15px 20px; }

/* Hero */
.hero-grid { padding-top: 88px; padding-bottom: 72px; display: grid; grid-template-columns: 1.5fr 1fr; gap: 56px; align-items: center; }
.hero-copy { display: flex; flex-direction: column; gap: 24px; }
.hero-copy h1 { font-size: clamp(32px, 3.6vw, 44px); line-height: 1.15; text-wrap: balance; }
.hero-copy > p:not(.kicker) { font-size: 18px; line-height: 1.65; color: var(--text); max-width: 54ch; }
.hero-ctas { display: flex; align-items: center; gap: 18px; margin-top: 6px; }
.hero-ctas .link { text-decoration: none; color: var(--teal); font-weight: 700; font-size: 16px; }
.hero-creds { border-top: 1px solid #e8e4da; padding-top: 18px; margin-top: 8px; display: flex; flex-direction: column; gap: 10px; font-size: 14.5px; color: var(--muted); }
.hero-creds span { display: flex; align-items: center; gap: 10px; }
.check { flex: none; width: 22px; height: 22px; border-radius: 50%; background: var(--teal-tint); color: var(--teal); display: inline-flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; }
.hero-photo { display: flex; justify-content: center; }
.hero-photo img { width: 320px; height: 400px; border-radius: 10px; object-fit: cover; object-position: 50% 30%; border: 1px solid #dbe5e3; box-shadow: 0 3px 18px rgba(32,100,105,0.12); }

/* Help cards */
.help-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 40px; }
.card { background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 28px; display: flex; flex-direction: column; gap: 14px; }
.card-icon { width: 52px; height: 52px; border-radius: 50%; background: var(--teal-tint); color: var(--teal); display: flex; align-items: center; justify-content: center; font-size: 24px; font-family: var(--display); }
.card h3 { font-size: 20px; }
.card p { font-size: 15.5px; line-height: 1.6; color: var(--text); }

/* About */
.about { background: var(--mist); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.about-grid { display: grid; grid-template-columns: 300px 1fr; gap: 56px; align-items: start; }
.about-photo { display: flex; justify-content: center; align-items: center;}
.about-photo img { width: 240px; height: 240px; border-radius: 50%; border: 5px solid #fff; object-fit: cover; object-position: 32% 0%; box-shadow: 0 2px 14px rgba(32,136,145,0.22); }
.about-copy { display: flex; flex-direction: column; gap: 18px; }
.about-copy p { font-size: 17px; line-height: 1.7; color: var(--text); }

/* Success */
.success { background: var(--dark); }
.success .section-pad { padding-top: 92px; padding-bottom: 92px; }
.success h2 { color: #f4f8f7; margin-bottom: 10px; }
.success .lede { font-size: 17.5px; line-height: 1.65; color: #b9cfd0; max-width: 68ch; margin-bottom: 44px; }
.success-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.success-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.12); border-radius: 10px; padding: 30px; }
.success-card h3 { font-size: 21px; color: #7fc4ca; margin-bottom: 16px; }
.success-card ul { margin: 0; padding-left: 20px; display: flex; flex-direction: column; gap: 12px; font-size: 15.5px; line-height: 1.6; color: #dbe7e7; }

/* Testimonials */
.testimonials { max-width: 900px; margin: 0 auto; padding: 88px 24px 80px; text-align: center; }
.testimonials .kicker { margin-bottom: 8px; }
.testimonials h2 { margin-bottom: 44px; }
.testimonial-stage { position: relative; }
.t-slide { margin: 0; display: none; flex-direction: column; gap: 22px; align-items: center; }
.t-slide.active { display: flex; }
.t-mark { font-family: var(--display); font-size: 64px; line-height: 0.5; color: var(--teal); height: 24px; }
.t-slide blockquote { margin: 0; font-family: var(--display); font-size: 19px; line-height: 1.75; color: #33454c; text-wrap: pretty; display: flex; flex-direction: column; gap: 16px; }
.t-slide figcaption { font-size: 15px; font-weight: 700; color: var(--teal); }
.t-controls { display: flex; align-items: center; justify-content: center; gap: 20px; margin-top: 36px; }
.t-arrow { width: 44px; height: 44px; border-radius: 50%; border: 1px solid #cfdedd; background: #fff; color: var(--teal); font-size: 18px; cursor: pointer; }
.t-arrow:hover { background: #eef5f4; }
.t-dots { display: flex; gap: 10px; }
.t-dot { width: 12px; height: 12px; border-radius: 50%; border: none; padding: 0; cursor: pointer; background: #cfdedd; }
.t-dot.active { background: var(--teal); }

/* CTA band */
.cta-band { background: var(--teal); }
.cta-band .section-pad { padding-top: 100px; padding-bottom: 100px; display: flex; flex-direction: column; align-items: center; gap: 22px; text-align: center; }
.cta-band h2 { font-size: 30px; color: #fff; text-wrap: pretty; }

/* FAQ */
.faq { max-width: 820px; margin: 0 auto; }
.faq h2 { margin-bottom: 10px; }
.faq .lede { font-size: 17px; color: var(--text); margin-bottom: 36px; }
.faq-list { display: flex; flex-direction: column; gap: 14px; }
.faq-list details { background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 0 24px; }
.faq-list summary { cursor: pointer; padding: 20px 0; display: flex; justify-content: space-between; align-items: center; gap: 16px; font-family: var(--display); font-size: 19px; font-weight: 600; color: var(--ink); list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-arrow { color: var(--teal); transition: transform 0.2s; font-size: 14px; }
details[open] .faq-arrow { transform: rotate(180deg); }
.faq-body { padding: 0 0 22px; font-size: 16px; line-height: 1.65; color: var(--text); }
.faq-body p { margin: 0 0 4px; }
.faq-body .q-label { font-weight: 700; color: var(--ink); }
.faq-body ul { margin: 0 0 14px; padding-left: 20px; }
.faq-body ul:last-child { margin-bottom: 0; }
.price-row + .price-row { margin-top: 10px; }

/* Contact */
.contact { background: var(--mist); border-top: 1px solid var(--line); }
.contact .section-pad { max-width: 820px; margin: 0 auto; padding-bottom: 90px; }
.contact h2 { margin-bottom: 10px; }
.contact .lede { font-size: 17px; color: var(--text); margin-bottom: 36px; }
.contact-alt { margin-top: 28px; text-align: center; font-size: 15px; color: var(--muted); }
.contact-alt a { font-weight: 700; }
.form-card { background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 32px; }
.contact-form { display: flex; flex-direction: column; gap: 22px; }
.hp-field { position: absolute; left: -9999px; }
.form-group { border: 1px solid var(--line); border-radius: 8px; padding: 20px 22px 22px; margin: 0; display: flex; flex-direction: column; gap: 16px; }
.form-group legend { font-family: var(--display); font-size: 15px; font-weight: 600; color: var(--teal); text-transform: uppercase; letter-spacing: 0.08em; padding: 0 8px; }
.field-row { display: flex; gap: 16px; }
.field-row .field { flex: 1; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field > span { font-size: 14.5px; font-weight: 700; color: var(--ink); }
.contact-form input, .contact-form textarea, .contact-form select { width: 100%; box-sizing: border-box; padding: 12px 14px; border: 1px solid var(--line); border-radius: 6px; background: var(--bg); font-size: 16px; color: #22333a; }
.contact-form textarea { resize: vertical; }
.contact-form select { appearance: none; -webkit-appearance: none; cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='none' stroke='%235c6b71' stroke-width='1.6' d='M1 1.5 6 6.5l5-5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 38px; }
.contact-form select:invalid { color: var(--muted); }
.contact-form input[aria-invalid="true"] { border-color: #c0392b; }
.form-note { font-size: 14px; color: var(--muted); margin-bottom: 4px; }
.req { color: #c0392b; font-weight: 700; }
.optional { color: var(--muted); font-weight: 400; font-size: 13px; }
.field-error { font-size: 13px; color: #c0392b; font-weight: 600; }
.field-error:empty { display: none; }
.form-submit { border: none; cursor: pointer; margin-top: 4px; }
@media (max-width: 560px) { .field-row { flex-direction: column; } }

/* Footer */
.site-footer { background: var(--dark); color: #b9cfd0; }
.site-footer .wrap { padding-top: 34px; padding-bottom: 34px; display: flex; flex-direction: column; gap: 6px; align-items: center; text-align: center; font-size: 14px; }
.site-footer .brand-line { font-family: var(--display); font-size: 17px; color: #f4f8f7; }
.site-footer .copyright { margin-top: 8px; color: #7d979b; }

@media (max-width: 900px) {
  .help-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; padding-top: 56px; padding-bottom: 56px; }
  .hero-copy h1 { font-size: 34px; }
  .hero-ctas { flex-direction: column; align-items: stretch; text-align: center; }
  .help-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .success-grid { grid-template-columns: 1fr; }
  .form-card { padding: 24px 18px; }
  .section-pad { padding-top: 60px; padding-bottom: 60px; }
  h2 { font-size: 28px; }
  .btn { font-size: 15px; padding: 14px 20px; }
}
@media (max-width: 420px) {
  .btn { font-size: 14px; padding: 13px 16px; letter-spacing: -0.005em; }
}
