:root {
  --color-primary: #0F172A;
  --color-secondary: #334155;
  --color-accent: #0369A1;
  --color-neutral-dark: #020617;
  --color-neutral-light: #F8FAFC;
  --color-border: rgba(15, 23, 42, 0.12);
  --font-heading: 'Sora', sans-serif;
  --font-body: 'Inter', sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --shadow-sm: 0 2px 20px rgba(2, 6, 23, 0.06);
  --shadow-md: 0 10px 30px -12px rgba(2, 6, 23, 0.18);
  --shadow-lg: 0 30px 60px -30px rgba(2, 6, 23, 0.35);
}

/* === Base === */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-primary);
  background: var(--color-neutral-light);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-accent); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3 { font-family: var(--font-heading); color: var(--color-primary); line-height: 1.15; letter-spacing: -0.02em; margin: 0 0 1rem; }
h1 { font-size: clamp(2.25rem, 5vw, 3.75rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3vw, 2.25rem); font-weight: 700; }
h3 { font-size: 1.15rem; font-weight: 600; }
p { margin: 0 0 1rem; }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 1.25rem; }
.container.narrow { max-width: 760px; }
.eyebrow { text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.8rem; font-weight: 600; color: var(--color-accent); margin: 0 0 1rem; }
.sub { color: var(--color-secondary); font-size: 1.125rem; }

/* === Header / glass nav === */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(248, 250, 252, 0.72);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  border-bottom: 1px solid transparent;
  transition: background .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.site-header.scrolled {
  background: rgba(248, 250, 252, 0.92);
  border-bottom-color: var(--color-border);
  box-shadow: 0 4px 20px -12px rgba(2, 6, 23, 0.18);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; max-width: 1200px; margin: 0 auto; padding: 0.75rem 1.25rem; gap: 1rem; }
.logo { display: inline-flex; align-items: center; }
.logo img { height: 72px; width: auto; display: block; }
.nav-toggle { background: none; border: 0; padding: 0.5rem; cursor: pointer; color: var(--color-primary); display: inline-flex; }
.primary-nav { display: none; gap: 1.5rem; align-items: center; }
.primary-nav a { color: var(--color-primary); font-weight: 500; font-size: 0.95rem; position: relative; padding: 0.25rem 0; }
.primary-nav a::after { content: ''; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px; background: var(--color-accent); transform: scaleX(0); transform-origin: left; transition: transform .25s var(--ease); }
.primary-nav a:hover { text-decoration: none; }
.primary-nav a:hover::after, .primary-nav a[aria-current="page"]::after { transform: scaleX(1); }
.primary-nav .nav-cta { background: linear-gradient(135deg, var(--color-accent), #0284C7); color: var(--color-neutral-light); padding: 0.6rem 1.1rem; border-radius: 999px; font-weight: 600; }
.primary-nav .nav-cta::after { display: none; }
.primary-nav .nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 24px -8px rgba(3, 105, 161, 0.5); }
.primary-nav.is-open { display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--color-neutral-light); padding: 1.25rem; gap: 1rem; box-shadow: var(--shadow-md); border-bottom: 1px solid var(--color-border); }

@media (min-width: 900px) {
  .nav-toggle { display: none; }
  .primary-nav { display: flex; }
  .logo img { height: 96px; }
}

/* === Buttons === */
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 0.85rem 1.5rem; border-radius: 999px; font-weight: 600; font-size: 0.95rem; border: 0; cursor: pointer; transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease); text-decoration: none; font-family: var(--font-body); }
.btn:hover { text-decoration: none; transform: translateY(-2px); }
.btn-primary { background: linear-gradient(135deg, var(--color-primary), var(--color-secondary)); color: var(--color-neutral-light); box-shadow: var(--shadow-md); }
.btn-primary:hover { box-shadow: 0 20px 40px -14px rgba(2, 6, 23, 0.5); }
.btn-accent { background: linear-gradient(135deg, var(--color-accent), #0284C7); color: var(--color-neutral-light); box-shadow: 0 10px 30px -10px rgba(3, 105, 161, 0.55); }
.btn-ghost { background: transparent; color: var(--color-primary); border: 1px solid var(--color-border); }
.btn-ghost:hover { background: rgba(15, 23, 42, 0.04); }
.btn:focus-visible { outline: 3px solid rgba(3, 105, 161, 0.4); outline-offset: 3px; }

/* === Hero split === */
.hero { position: relative; overflow: hidden; padding: 3rem 0 4rem; }
.hero-glow { position: absolute; inset: 0; pointer-events: none; background: radial-gradient(ellipse at 20% 10%, rgba(3, 105, 161, 0.12), transparent 55%), radial-gradient(ellipse at 90% 30%, rgba(15, 23, 42, 0.08), transparent 60%); z-index: 0; }
.hero-grid { position: relative; z-index: 1; max-width: 1200px; margin: 0 auto; padding: 0 1.25rem; display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: center; }
.hero-grid-single { grid-template-columns: 1fr; max-width: 760px; text-align: center; }
.hero-grid-single .cta-row { justify-content: center; }
.hero-copy .sub { max-width: 52ch; margin-bottom: 1.75rem; }
.cta-row { display: flex; flex-wrap: wrap; gap: 0.85rem; }
.hero-visual img { aspect-ratio: 4/5; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }

@media (min-width: 860px) {
  .hero { padding: 5rem 0 6rem; }
  .hero-grid { grid-template-columns: 1.1fr 1fr; gap: 4rem; }
  .hero-visual img { aspect-ratio: 4/5; }
}

/* === Sections === */
.section { padding: 4rem 0; position: relative; }
.section-alt { background: linear-gradient(180deg, #EEF2F7 0%, var(--color-neutral-light) 100%); }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 2.5rem; }
.section-head .sub { margin: 0; }

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

.card {
  background: var(--color-neutral-light);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
  display: block;
  color: inherit;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(3, 105, 161, 0.35); }
.card-link { text-decoration: none; }
.card-link:hover { text-decoration: none; }
.card h3 { margin-top: 0.75rem; }
.card p { color: var(--color-secondary); margin: 0; font-size: 0.98rem; }
.card-icon { display: inline-flex; width: 44px; height: 44px; align-items: center; justify-content: center; border-radius: 12px; background: linear-gradient(135deg, rgba(3, 105, 161, 0.12), rgba(15, 23, 42, 0.06)); color: var(--color-accent); }

/* === Module grid (features page) === */
.module-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; align-items: start; }
@media (min-width: 900px) {
  .module-grid { grid-template-columns: 5fr 7fr; gap: 3rem; }
  .module-grid-reverse { grid-template-columns: 7fr 5fr; }
  .module-grid-reverse .module-visual { order: 2; }
}
.module-visual img { border-radius: var(--radius); box-shadow: var(--shadow-md); position: sticky; top: 100px; }

/* === Testimonial === */
.testimonial { margin: 0; padding: 2rem 1rem; text-align: center; }
.testimonial p { font-family: var(--font-heading); font-size: clamp(1.15rem, 2vw, 1.5rem); font-weight: 500; color: var(--color-primary); line-height: 1.4; max-width: 60ch; margin: 0 auto 1.25rem; }
.testimonial cite { font-style: normal; font-size: 0.95rem; color: var(--color-secondary); font-weight: 500; }

/* === CTA band === */
.cta-band { background: linear-gradient(135deg, var(--color-primary), var(--color-secondary)); color: var(--color-neutral-light); padding: 4rem 0; text-align: center; position: relative; overflow: hidden; }
.cta-band::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 30% 20%, rgba(3, 105, 161, 0.35), transparent 55%); pointer-events: none; }
.cta-band h2, .cta-band p { position: relative; color: var(--color-neutral-light); }
.cta-band p { opacity: 0.85; max-width: 52ch; margin-left: auto; margin-right: auto; margin-bottom: 1.75rem; }
.cta-band .btn { position: relative; }

/* === Pricing === */
.pricing-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 960px) { .pricing-grid { grid-template-columns: repeat(3, 1fr); align-items: stretch; } }
.pricing-card { position: relative; background: var(--color-neutral-light); border: 1px solid var(--color-border); border-radius: var(--radius); padding: 2.25rem; display: flex; flex-direction: column; transition: transform .25s var(--ease), box-shadow .25s var(--ease); box-shadow: var(--shadow-sm); }
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.pricing-card--featured { border: 2px solid var(--color-accent); box-shadow: 0 20px 40px -20px rgba(3, 105, 161, 0.35); }
.pricing-card__badge { position: absolute; top: 1rem; right: 1rem; background: var(--color-accent); color: var(--color-neutral-light); font-size: 0.75rem; font-weight: 600; padding: 0.35rem 0.75rem; border-radius: 999px; letter-spacing: 0.02em; }
.pricing-card__plan { font-size: 1.35rem; margin: 0 0 0.5rem; }
.pricing-card__price { font-size: clamp(2rem, 4vw, 2.75rem); font-weight: 700; font-family: var(--font-heading); color: var(--color-primary); margin: 0 0 0.75rem; letter-spacing: -0.02em; }
.pricing-card__lede { color: var(--color-secondary); margin: 0 0 1.25rem; font-size: 0.98rem; }
.pricing-card__features { list-style: none; padding: 0; margin: 0 0 1.75rem; display: flex; flex-direction: column; gap: 0.6rem; flex-grow: 1; }
.pricing-card__features li { display: flex; gap: 0.5rem; color: var(--color-secondary); font-size: 0.95rem; line-height: 1.5; }
.pricing-card__cta { align-self: stretch; text-align: center; }

/* === FAQ === */
.faq details { border: 1px solid var(--color-border); border-radius: var(--radius-sm); padding: 1rem 1.25rem; margin-bottom: 0.75rem; background: var(--color-neutral-light); transition: box-shadow .2s var(--ease); }
.faq details[open] { box-shadow: var(--shadow-sm); border-color: rgba(3, 105, 161, 0.35); }
.faq summary { cursor: pointer; font-weight: 600; font-family: var(--font-heading); color: var(--color-primary); list-style: none; position: relative; padding-right: 2rem; }
.faq summary::after { content: '+'; position: absolute; right: 0; top: 0; font-size: 1.4rem; color: var(--color-accent); transition: transform .2s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq p { margin: 0.75rem 0 0; color: var(--color-secondary); }

/* === Contact === */
.contact-layout { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
@media (min-width: 900px) { .contact-layout { grid-template-columns: 1fr 1.15fr; gap: 3rem; } }
.contact-form { display: flex; flex-direction: column; gap: 1rem; background: var(--color-neutral-light); padding: 2rem; border-radius: var(--radius); border: 1px solid var(--color-border); box-shadow: var(--shadow-sm); }
.contact-form label { display: flex; flex-direction: column; gap: 0.35rem; font-weight: 500; font-size: 0.9rem; color: var(--color-primary); }
.contact-form input, .contact-form textarea { font: inherit; padding: 0.75rem 0.9rem; border: 1px solid var(--color-border); border-radius: var(--radius-sm); background: #fff; color: var(--color-primary); transition: border-color .2s, box-shadow .2s; }
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--color-accent); box-shadow: 0 0 0 3px rgba(3, 105, 161, 0.15); }
.form-consent { flex-direction: row !important; align-items: flex-start; gap: 0.65rem; font-size: 0.85rem; font-weight: 400; color: var(--color-secondary); line-height: 1.5; }
.form-consent input { margin-top: 0.2rem; }
.contact-card { background: var(--color-neutral-light); padding: 2rem; border-radius: var(--radius); border: 1px solid var(--color-border); text-align: center; max-width: 720px; margin: 0 auto; box-shadow: var(--shadow-sm); }
.contact-card p { color: var(--color-secondary); margin-bottom: 1.5rem; }
.hours { width: 100%; margin: 0.75rem 0 0; border-collapse: collapse; font-size: 0.95rem; }
.hours th { text-align: left; font-weight: 500; color: var(--color-primary); padding: 0.4rem 0.5rem 0.4rem 0; border-bottom: 1px solid var(--color-border); }
.hours td { padding: 0.4rem 0; text-align: right; color: var(--color-secondary); border-bottom: 1px solid var(--color-border); }

/* === Footer === */
.site-footer { background: var(--color-primary); color: rgba(248, 250, 252, 0.85); padding: 3rem 0 1.5rem; margin-top: 2rem; }
.site-footer h3 { color: var(--color-neutral-light); font-size: 0.95rem; margin: 0 0 0.85rem; text-transform: uppercase; letter-spacing: 0.08em; }
.site-footer a { color: rgba(248, 250, 252, 0.85); display: inline-block; padding: 0.15rem 0; }
.site-footer a:hover { color: var(--color-neutral-light); }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; margin-bottom: 2rem; }
.footer-grid nav { display: flex; flex-direction: column; gap: 0.35rem; }
.footer-grid address { font-style: normal; line-height: 1.7; margin-bottom: 1rem; }
.legal-links { display: flex; flex-wrap: wrap; gap: 0.75rem 1rem; }
.legal-links a { font-size: 0.85rem; opacity: 0.75; }
.tagline { color: rgba(248, 250, 252, 0.7); margin: 0.5rem 0 0; font-size: 0.95rem; max-width: 30ch; }
.logo-footer img { filter: brightness(0) invert(1); }
.copyright { border-top: 1px solid rgba(248, 250, 252, 0.12); padding-top: 1.25rem; font-size: 0.85rem; opacity: 0.7; text-align: center; }
@media (min-width: 800px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1.4fr; } }

/* === Reveal animation === */
.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; } }

/* === 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); box-shadow: 0 20px 60px -20px rgba(0, 0, 0, 0.5); max-width: 640px; margin: 0 auto; }
.cookie-banner.is-visible { display: block; }
.cookie-banner p { margin: 0 0 1rem; font-size: 0.9rem; line-height: 1.5; }
.cookie-banner__actions { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.cookie-banner__actions button { font: inherit; padding: 0.55rem 1rem; border-radius: 999px; border: 1px solid rgba(248, 250, 252, 0.25); background: transparent; color: var(--color-neutral-light); cursor: pointer; font-size: 0.85rem; font-weight: 500; transition: background .2s; }
.cookie-banner__actions button:hover { background: rgba(248, 250, 252, 0.1); }
.cookie-banner__actions button[data-cookie-accept] { background: var(--color-accent); border-color: var(--color-accent); }
.cookie-banner__actions button[data-cookie-accept]:hover { background: #0284C7; }
.cookie-banner__prefs { margin-top: 1rem; display: flex; flex-direction: column; gap: 0.5rem; padding-top: 1rem; border-top: 1px solid rgba(248, 250, 252, 0.15); }
.cookie-banner__prefs label { display: flex; gap: 0.5rem; font-size: 0.9rem; align-items: center; }
.cookie-banner__prefs button { align-self: flex-start; margin-top: 0.5rem; padding: 0.5rem 1rem; border-radius: 999px; border: 0; background: var(--color-accent); color: var(--color-neutral-light); cursor: pointer; font: inherit; font-weight: 500; font-size: 0.85rem; }
