:root {
  --color-primary: #0891B2;
  --color-secondary: #22D3EE;
  --color-accent: #F97316;
  --color-neutral-dark: #164E63;
  --color-neutral-light: #ECFEFF;
  --color-text: #0f2b33;
  --color-muted: #4a6b74;
  --font-heading: 'Sora', sans-serif;
  --font-body: 'Inter', sans-serif;
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --shadow-sm: 0 2px 12px rgba(8, 51, 68, 0.06);
  --shadow-md: 0 12px 40px -12px rgba(8, 51, 68, 0.18);
  --shadow-lg: 0 30px 60px -30px rgba(8, 51, 68, 0.35);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-hover: cubic-bezier(0.4, 0, 0.2, 1);
}

/* === Reset === */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-text);
  background: #ffffff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  background-image: radial-gradient(ellipse at top right, rgba(34, 211, 238, 0.10), transparent 55%), radial-gradient(ellipse at bottom left, rgba(249, 115, 22, 0.06), transparent 60%);
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-primary); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3, h4 { font-family: var(--font-heading); color: var(--color-neutral-dark); letter-spacing: -0.01em; line-height: 1.2; }
h1 { font-size: clamp(2.25rem, 5vw, 3.5rem); font-weight: 700; letter-spacing: -0.02em; margin: 0 0 1rem; }
h2 { font-size: clamp(1.75rem, 3.4vw, 2.5rem); font-weight: 600; margin: 0 0 1rem; }
h3 { font-size: 1.25rem; font-weight: 600; margin: 0 0 0.5rem; }
h4 { font-size: 1rem; font-weight: 600; margin: 0 0 0.75rem; }
p { margin: 0 0 1rem; }

.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

.container { width: min(100% - 2rem, 1200px); margin-inline: auto; }
.container--narrow { max-width: 760px; margin-inline: auto; }

/* === Header === */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  border-bottom: 1px solid rgba(22, 78, 99, 0.08);
  transition: background .3s var(--ease-hover), box-shadow .3s var(--ease-hover);
}
.site-header.scrolled { background: rgba(255, 255, 255, 0.92); box-shadow: 0 8px 30px -20px rgba(8, 51, 68, 0.25); }
.site-header__inner { width: min(100% - 2rem, 1200px); margin-inline: auto; display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-block: 0.75rem; }
.logo { display: inline-flex; align-items: center; }
.logo img { height: 72px; width: auto; display: block; }
.logo--footer img { height: 64px; }

.nav-toggle { display: inline-flex; flex-direction: column; gap: 5px; width: 44px; height: 44px; background: transparent; border: 1px solid rgba(22, 78, 99, 0.15); border-radius: 10px; cursor: pointer; padding: 0; align-items: center; justify-content: center; }
.nav-toggle__bar { display: block; width: 20px; height: 2px; background: var(--color-neutral-dark); border-radius: 2px; }

.primary-nav { display: none; align-items: center; gap: 1.75rem; }
.primary-nav a { color: var(--color-neutral-dark); font-weight: 500; font-size: 0.95rem; position: relative; padding: 0.25rem 0; }
.primary-nav a::after { content: ''; position: absolute; left: 0; bottom: -2px; width: 100%; height: 2px; background: var(--color-primary); transform: scaleX(0); transform-origin: left; transition: transform .25s var(--ease-hover); }
.primary-nav a:hover { text-decoration: none; }
.primary-nav a:hover::after, .primary-nav a[aria-current="page"]::after { transform: scaleX(1); }
.primary-nav a.nav-cta { background: var(--color-neutral-dark); color: #fff; padding: 0.55rem 1.1rem; border-radius: 999px; transition: transform .2s var(--ease-hover), box-shadow .2s; }
.primary-nav a.nav-cta::after { display: none; }
.primary-nav a.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 10px 24px -12px rgba(8, 51, 68, 0.5); }

.primary-nav.is-open { display: flex; flex-direction: column; align-items: flex-start; gap: 1rem; position: absolute; top: 100%; left: 0; right: 0; background: #fff; padding: 1.5rem; border-bottom: 1px solid rgba(22, 78, 99, 0.08); box-shadow: var(--shadow-md); }

@media (min-width: 900px) {
  .nav-toggle { display: none; }
  .primary-nav { display: flex !important; position: static; padding: 0; background: transparent; box-shadow: none; border: 0; flex-direction: row; }
  .logo img { height: 96px; }
  .logo--footer img { height: 80px; }
}

/* === Buttons === */
.btn { display: inline-block; font-family: var(--font-heading); font-weight: 600; font-size: 0.98rem; padding: 0.85rem 1.6rem; border-radius: 999px; border: 1px solid transparent; cursor: pointer; transition: transform .2s var(--ease-hover), box-shadow .2s var(--ease-hover), background .2s; text-align: center; }
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn--primary { background: linear-gradient(135deg, var(--color-primary), var(--color-neutral-dark)); color: #fff; box-shadow: 0 12px 30px -12px rgba(8, 145, 178, 0.55); }
.btn--primary:hover { box-shadow: 0 18px 40px -14px rgba(8, 145, 178, 0.65); }
.btn--ghost { background: transparent; color: var(--color-neutral-dark); border-color: rgba(22, 78, 99, 0.25); }
.btn--ghost:hover { background: var(--color-neutral-light); }
.btn--accent { background: var(--color-accent); color: #fff; box-shadow: 0 12px 30px -12px rgba(249, 115, 22, 0.6); }
.btn--accent:hover { box-shadow: 0 18px 40px -14px rgba(249, 115, 22, 0.7); }
:focus-visible { outline: 3px solid var(--color-accent); outline-offset: 3px; border-radius: 6px; }

/* === Hero-card === */
.hero-card-wrap { position: relative; padding: 3rem 1rem 2rem; overflow: hidden; }
.hero-card-wrap::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 20% 20%, rgba(34, 211, 238, 0.25), transparent 55%), radial-gradient(circle at 85% 30%, rgba(249, 115, 22, 0.12), transparent 60%); z-index: -1; }
.hero-card { max-width: 900px; margin-inline: auto; padding: 2.5rem 1.5rem; background: rgba(255, 255, 255, 0.85); backdrop-filter: blur(12px); border: 1px solid rgba(22, 78, 99, 0.08); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.hero-card--compact { max-width: 720px; text-align: center; }
.eyebrow { font-family: var(--font-heading); text-transform: uppercase; letter-spacing: 0.14em; font-size: 0.75rem; font-weight: 600; color: var(--color-primary); margin: 0 0 1rem; }
.hero-card h1 { max-width: 22ch; }
.hero-sub { font-size: 1.15rem; color: var(--color-muted); max-width: 52ch; margin: 0 0 1.75rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 2rem; }
.hero-card__image { border-radius: var(--radius-md); overflow: hidden; box-shadow: 0 20px 60px -20px rgba(8, 51, 68, 0.35); }
.hero-card__image img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
@media (min-width: 768px) {
  .hero-card-wrap { padding: 5rem 1.5rem 3rem; }
  .hero-card { padding: 4rem; }
}

.proof-strip { max-width: 900px; margin: 2rem auto 0; display: flex; flex-wrap: wrap; gap: 1rem 2rem; justify-content: center; padding: 1rem 1.5rem; color: var(--color-muted); font-size: 0.9rem; font-weight: 500; }
.proof-strip span { position: relative; }

/* === Sections === */
.section { padding: 4rem 0; }
.section--muted { background: linear-gradient(180deg, var(--color-neutral-light), rgba(236, 254, 255, 0.4)); }
.section__head { text-align: center; max-width: 720px; margin: 0 auto 2.5rem; }
.section__head p { color: var(--color-muted); }
.section__head--left { text-align: left; margin-inline: 0; }
@media (min-width: 768px) { .section { padding: 6rem 0; } }

/* === Grids === */
.grid { display: grid; gap: 1.25rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .grid--3 { grid-template-columns: repeat(3, 1fr); } .grid--4 { grid-template-columns: repeat(4, 1fr); } }

.card { background: #fff; border: 1px solid rgba(22, 78, 99, 0.08); border-radius: var(--radius-md); padding: 1.75rem; box-shadow: var(--shadow-sm); transition: transform .25s var(--ease-hover), box-shadow .25s var(--ease-hover); }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card__icon { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: 12px; background: linear-gradient(135deg, var(--color-neutral-light), rgba(34, 211, 238, 0.25)); color: var(--color-primary); margin-bottom: 1rem; }
.card p { color: var(--color-muted); margin: 0; }

/* === Editorial === */
.editorial h2 { margin-bottom: 1.25rem; }
.editorial p { font-size: 1.05rem; color: var(--color-text); }
.editorial__image { margin: 1.5rem 0 2rem; border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-md); }
.editorial__image img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }

/* === Testimonial === */
.testimonial { margin: 0; padding: 2rem; background: #fff; border-left: 4px solid var(--color-accent); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); }
.testimonial p { font-size: 1.15rem; font-family: var(--font-heading); font-weight: 500; color: var(--color-neutral-dark); line-height: 1.5; }
.testimonial cite { display: block; margin-top: 1rem; font-style: normal; color: var(--color-muted); font-size: 0.95rem; font-family: var(--font-body); }

/* === CTA band === */
.cta-band { background: linear-gradient(135deg, var(--color-primary), var(--color-neutral-dark)); color: #fff; padding: 3rem 0; }
.cta-band__inner { display: flex; flex-direction: column; gap: 1.5rem; align-items: flex-start; }
.cta-band h2 { color: #fff; margin-bottom: 0.5rem; }
.cta-band p { margin: 0; color: rgba(255, 255, 255, 0.85); }
@media (min-width: 768px) { .cta-band__inner { flex-direction: row; align-items: center; justify-content: space-between; } .cta-band__inner > div { max-width: 60%; } }

/* === Stats === */
.stats-band .stat { text-align: center; padding: 1.5rem; }
.stat__number { display: block; font-family: var(--font-heading); font-weight: 700; font-size: clamp(2rem, 4.5vw, 3rem); color: var(--color-accent); margin-bottom: 0.5rem; letter-spacing: -0.02em; }
.stat h3 { color: var(--color-neutral-dark); margin-bottom: 0.5rem; font-size: 1.05rem; }
.stat p { color: var(--color-muted); font-size: 0.95rem; }

/* === FAQ === */
.faq details { background: #fff; border: 1px solid rgba(22, 78, 99, 0.08); border-radius: var(--radius-sm); padding: 1rem 1.25rem; margin-bottom: 0.75rem; box-shadow: var(--shadow-sm); transition: box-shadow .2s; }
.faq details[open] { box-shadow: var(--shadow-md); }
.faq summary { cursor: pointer; font-family: var(--font-heading); font-weight: 600; color: var(--color-neutral-dark); list-style: none; padding-right: 1.5rem; position: relative; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; position: absolute; right: 0; top: 0; font-size: 1.5rem; line-height: 1; color: var(--color-primary); transition: transform .2s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq p { margin-top: 0.75rem; color: var(--color-muted); }

/* === Contact form === */
.contact-form { background: #fff; padding: 2rem; border-radius: var(--radius-md); box-shadow: var(--shadow-md); border: 1px solid rgba(22, 78, 99, 0.08); }
.form-row { margin-bottom: 1.25rem; display: flex; flex-direction: column; gap: 0.4rem; }
.form-row label { font-weight: 500; color: var(--color-neutral-dark); font-size: 0.95rem; }
.form-row input, .form-row textarea { font-family: var(--font-body); font-size: 1rem; padding: 0.75rem 1rem; border: 1px solid rgba(22, 78, 99, 0.2); border-radius: var(--radius-sm); background: #fff; color: var(--color-text); transition: border-color .2s, box-shadow .2s; }
.form-row input:focus, .form-row textarea:focus { outline: none; border-color: var(--color-primary); box-shadow: 0 0 0 3px rgba(8, 145, 178, 0.15); }
.form-consent { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.9rem; color: var(--color-muted); margin-bottom: 1.25rem; }
.form-consent input { margin-top: 0.25rem; flex-shrink: 0; }
.form-consent a { color: var(--color-primary); }

/* === Hours table === */
.hours { width: 100%; border-collapse: collapse; margin-top: 1rem; }
.hours th, .hours td { padding: 0.6rem 0.5rem; text-align: left; border-bottom: 1px solid rgba(22, 78, 99, 0.08); }
.hours th { font-weight: 500; color: var(--color-neutral-dark); }
.hours td { color: var(--color-muted); }

/* === Footer === */
.site-footer { background: var(--color-neutral-dark); color: rgba(236, 254, 255, 0.9); padding: 3.5rem 0 1.5rem; margin-top: 4rem; }
.site-footer__grid { display: grid; grid-template-columns: 1fr; gap: 2rem; padding-bottom: 2.5rem; border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
@media (min-width: 768px) { .site-footer__grid { grid-template-columns: 1.4fr 1fr 1.4fr; } }
.site-footer h4 { color: #fff; font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 1rem; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 0.5rem; }
.site-footer a { color: rgba(236, 254, 255, 0.85); }
.site-footer a:hover { color: #fff; }
.site-footer address { font-style: normal; line-height: 1.7; margin-bottom: 1.25rem; }
.footer-tag { color: rgba(236, 254, 255, 0.7); font-size: 0.95rem; margin-top: 0.75rem; }
.legal-links { display: flex; flex-wrap: wrap; gap: 0.5rem 1rem; font-size: 0.9rem; }
.site-footer__copy { padding-top: 1.5rem; font-size: 0.85rem; color: rgba(236, 254, 255, 0.6); text-align: center; }
.logo--footer { background: rgba(255, 255, 255, 0.06); padding: 0.5rem 0.75rem; border-radius: var(--radius-sm); display: inline-flex; }

/* === Cookie banner === */
.cookie-banner { position: fixed; left: 1rem; right: 1rem; bottom: 1rem; display: none; z-index: 9999; background: var(--color-neutral-dark); color: var(--color-neutral-light); padding: 1.25rem 1.5rem; border-radius: var(--radius-md); box-shadow: var(--shadow-lg); max-width: 520px; }
.cookie-banner.is-visible { display: block; }
.cookie-banner p { margin: 0 0 1rem; font-size: 0.92rem; line-height: 1.5; }
.cookie-banner__actions { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.cookie-banner button { font-family: var(--font-body); font-size: 0.88rem; font-weight: 500; padding: 0.55rem 1rem; border-radius: 999px; border: 1px solid rgba(236, 254, 255, 0.2); background: transparent; color: var(--color-neutral-light); cursor: pointer; transition: background .2s, transform .2s; }
.cookie-banner button:hover { transform: translateY(-1px); }
.cookie-banner [data-cookie-accept] { background: var(--color-accent); border-color: var(--color-accent); color: #fff; }
.cookie-banner [data-cookie-accept]:hover { background: #ea6a11; }
.cookie-banner__prefs { margin-top: 1rem; display: flex; flex-direction: column; gap: 0.5rem; padding-top: 1rem; border-top: 1px solid rgba(236, 254, 255, 0.15); }
.cookie-banner__prefs label { display: flex; align-items: center; gap: 0.5rem; font-size: 0.9rem; }
.cookie-banner__prefs button { margin-top: 0.5rem; align-self: flex-start; background: var(--color-neutral-light); color: var(--color-neutral-dark); border-color: transparent; }

/* === Reveal animations === */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); will-change: opacity, transform; }
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}
