:root {
  --color-primary: #6366F1;
  --color-secondary: #818CF8;
  --color-accent: #22C55E;
  --color-neutral-dark: #312E81;
  --color-neutral-light: #EEF2FF;
  --color-text: #1E1B4B;
  --color-text-muted: #4C4A85;
  --color-border: rgba(49, 46, 129, 0.12);
  --color-white: #ffffff;
  --font-heading: 'Manrope', sans-serif;
  --font-body: 'Inter', sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow-sm: 0 2px 20px rgba(49, 46, 129, 0.06);
  --shadow-md: 0 12px 40px -12px rgba(49, 46, 129, 0.18);
  --shadow-lg: 0 30px 60px -30px rgba(49, 46, 129, 0.35);
  --radius: 16px;
}

/* === Base === */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--color-neutral-dark);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 1rem;
}
h1 { font-size: clamp(2.25rem, 5vw, 3.75rem); font-weight: 800; }
h2 { font-size: clamp(1.75rem, 3.2vw, 2.5rem); font-weight: 700; }
h3 { font-size: 1.25rem; font-weight: 700; }
p { margin: 0 0 1rem; }
a { color: var(--color-primary); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--color-neutral-dark); }
img { max-width: 100%; display: block; height: auto; }

.container { width: 100%; max-width: 1200px; margin-inline: auto; padding-inline: 1.25rem; }
.narrow { max-width: 780px; margin-inline: auto; }
.center { text-align: center; }
.eyebrow {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.8125rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin: 0 0 1rem;
}
.lede {
  font-size: 1.125rem;
  color: var(--color-text-muted);
  max-width: 52ch;
}
.body-lg { font-size: 1.0625rem; line-height: 1.7; color: var(--color-text); }
.sub { color: var(--color-text-muted); font-size: 1.0625rem; max-width: 56ch; margin-inline: auto; }

/* === Header === */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(238, 242, 255, 0.72);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  border-bottom: 1px solid var(--color-border);
  transition: background .3s var(--ease), box-shadow .3s var(--ease);
}
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0.75rem;
}
.logo img { height: 72px; width: auto; }
.logo-footer img { height: 64px; }
.nav-toggle {
  background: none;
  border: 0;
  color: var(--color-neutral-dark);
  padding: 0.5rem;
  cursor: pointer;
  border-radius: 8px;
}
.nav-toggle:hover { background: var(--color-neutral-light); }
.primary-nav {
  display: none;
  flex-direction: column;
  gap: 0.25rem;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  padding: 1rem 1.25rem 1.5rem;
  box-shadow: var(--shadow-md);
}
.primary-nav.is-open { display: flex; }
.primary-nav a {
  color: var(--color-neutral-dark);
  font-weight: 500;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--color-border);
}
.primary-nav a:last-child { border-bottom: 0; }
.primary-nav a[aria-current="page"] { color: var(--color-primary); }
.primary-nav .nav-cta {
  margin-top: 0.5rem;
  background: var(--color-primary);
  color: #fff;
  text-align: center;
  border-radius: 999px;
  padding: 0.75rem 1.25rem;
  border: 0;
}
.primary-nav .nav-cta:hover { background: var(--color-neutral-dark); color: #fff; }

@media (min-width: 900px) {
  .nav-toggle { display: none; }
  .primary-nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 2rem;
    position: static;
    background: transparent;
    border: 0;
    padding: 0;
    box-shadow: none;
  }
  .primary-nav a { border: 0; padding: 0; position: relative; }
  .primary-nav a:not(.nav-cta)::after {
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: -6px;
    height: 2px;
    background: var(--color-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .25s var(--ease);
  }
  .primary-nav a:not(.nav-cta):hover::after,
  .primary-nav a[aria-current="page"]::after { transform: scaleX(1); }
  .primary-nav .nav-cta { margin: 0; padding: 0.65rem 1.25rem; }
}
@media (min-width: 768px) {
  .logo img { height: 96px; }
}

/* === Buttons === */
.btn {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9375rem;
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  text-align: center;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease);
  line-height: 1;
}
.btn:focus-visible { outline: 3px solid var(--color-secondary); outline-offset: 3px; }
.btn-primary {
  background: linear-gradient(135deg, var(--color-primary), var(--color-neutral-dark));
  color: #fff;
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); color: #fff; }
.btn-ghost {
  background: transparent;
  color: var(--color-neutral-dark);
  border: 1.5px solid var(--color-border);
}
.btn-ghost:hover { background: var(--color-neutral-light); transform: translateY(-2px); }
.btn-accent {
  background: var(--color-accent);
  color: #fff;
}
.btn-accent:hover { transform: translateY(-2px); box-shadow: 0 12px 30px -8px rgba(34, 197, 94, 0.5); color: #fff; }
.btn-link { background: none; color: var(--color-neutral-dark); padding: 0.5rem 0.75rem; text-decoration: underline; }

/* === Hero === */
.hero {
  padding-block: 3rem;
  background:
    radial-gradient(circle at 15% 10%, rgba(129, 140, 248, 0.18), transparent 55%),
    radial-gradient(circle at 85% 90%, rgba(34, 197, 94, 0.12), transparent 50%),
    linear-gradient(180deg, var(--color-neutral-light), #fff);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}
.hero-copy .cta-row { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.5rem; }
.hero-visual img {
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  width: 100%;
}
.hero-thankyou { padding-block: 4rem; }

@media (min-width: 900px) {
  .hero { padding-block: 5rem; }
  .hero-grid { grid-template-columns: 1.1fr 1fr; gap: 4rem; }
}

/* === Sections === */
.section { padding-block: 4rem; }
.section-tinted {
  background: linear-gradient(180deg, var(--color-neutral-light), #fff);
}
.section-head { text-align: center; max-width: 720px; margin: 0 auto 2.5rem; }
.intro-media {
  margin: 2rem 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.intro-media img { aspect-ratio: 16/9; object-fit: cover; width: 100%; }

@media (min-width: 768px) {
  .section { padding-block: 5.5rem; }
}

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

/* === Card === */
.card {
  background: #fff;
  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);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card h3 { margin-top: 0.75rem; }
.card p { margin-bottom: 0; color: var(--color-text-muted); font-size: 0.9375rem; line-height: 1.65; }
.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--color-neutral-light), rgba(129, 140, 248, 0.3));
  color: var(--color-primary);
}

/* === Testimonial === */
.testimonial {
  margin: 0;
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: linear-gradient(135deg, var(--color-neutral-light), #fff);
  border-radius: 20px;
  border: 1px solid var(--color-border);
}
.testimonial p {
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 2vw, 1.4rem);
  font-weight: 500;
  color: var(--color-neutral-dark);
  line-height: 1.5;
  margin-bottom: 1.25rem;
}
.testimonial cite {
  font-style: normal;
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  letter-spacing: 0.02em;
}

/* === CTA band === */
.cta-band {
  background: linear-gradient(135deg, var(--color-primary), var(--color-neutral-dark));
  color: #fff;
  padding-block: 4rem;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 30%, rgba(34, 197, 94, 0.25), transparent 55%);
  pointer-events: none;
}
.cta-band-inner {
  display: grid;
  gap: 1.5rem;
  align-items: center;
  position: relative;
}
.cta-band h2 { color: #fff; margin: 0 0 0.5rem; }
.cta-band p { margin: 0; color: rgba(255, 255, 255, 0.85); }
@media (min-width: 800px) {
  .cta-band-inner { grid-template-columns: 1fr auto; gap: 2.5rem; }
}

/* === FAQ === */
.faq { display: flex; flex-direction: column; gap: 0.75rem; }
.faq details {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow-sm);
}
.faq summary {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--color-neutral-dark);
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 2rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 0; top: 0;
  font-size: 1.4rem;
  color: var(--color-primary);
  transition: transform .2s var(--ease);
}
.faq details[open] summary::after { content: "−"; }
.faq details p { margin-top: 0.75rem; color: var(--color-text-muted); }

/* === Contact === */
.contact-band-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 900px) {
  .contact-band-grid { grid-template-columns: 1fr 1fr; gap: 3rem; }
}
.contact-band-visual img { border-radius: var(--radius); box-shadow: var(--shadow-md); aspect-ratio: 4/3; object-fit: cover; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 900px) {
  .contact-grid { grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
}
.contact-info h2 { margin-top: 0; }
.contact-dl { margin: 1.5rem 0 0; }
.contact-dl dt { font-family: var(--font-heading); font-weight: 600; color: var(--color-neutral-dark); margin-top: 0.75rem; }
.contact-dl dd { margin: 0 0 0.25rem; color: var(--color-text-muted); }
.contact-form {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-form h2 { margin: 0; }
.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-neutral-dark);
}
.contact-form input,
.contact-form textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.75rem 0.9rem;
  border: 1.5px solid var(--color-border);
  border-radius: 10px;
  background: var(--color-white);
  color: var(--color-text);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.15);
}
.form-consent {
  flex-direction: row !important;
  align-items: flex-start;
  gap: 0.6rem !important;
  font-size: 0.85rem !important;
  color: var(--color-text-muted) !important;
  font-weight: 400 !important;
  line-height: 1.5;
}
.form-consent input { margin-top: 0.2rem; }

/* === Footer === */
.site-footer {
  background: var(--color-neutral-dark);
  color: rgba(255, 255, 255, 0.82);
  padding-block: 3rem 1.5rem;
  margin-top: 2rem;
}
.site-footer a { color: rgba(255, 255, 255, 0.82); }
.site-footer a:hover { color: #fff; }
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 800px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1.2fr; gap: 3rem; }
}
.site-footer h4 {
  color: #fff;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin: 0 0 1rem;
}
.site-footer nav a { display: block; padding: 0.35rem 0; }
.site-footer .tagline { margin-top: 1rem; color: rgba(255, 255, 255, 0.7); font-size: 0.9375rem; }
.site-footer .logo-footer img {
  filter: brightness(0) invert(1);
}
.site-footer address { font-style: normal; line-height: 1.6; margin-bottom: 0.75rem; }
.legal-links { font-size: 0.875rem; margin-top: 1rem; color: rgba(255, 255, 255, 0.6); }
.legal-links a { color: rgba(255, 255, 255, 0.75); }
.copyright {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}











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

:root { --brand-accent: hsl(93 72% 44%); --brand-ink: hsl(110 48% 20%); }
.logo { min-width: 0; }
.logo img { max-width: min(100%, 17rem); height: auto; }
.site-legal { min-height: 100vh; display: flex; flex-direction: column; }
.legal-main { flex: 1; padding: clamp(2rem, 6vw, 5rem) 1.25rem; }
.legal-card { width: min(100%, 52rem); margin: 0 auto; }
.legal-card h1, .legal-card h2 { color: var(--brand-ink, currentColor); }
.legal-date { margin-top: 2rem; opacity: .72; }
@media (max-width: 780px) { .site-header .container { gap: .75rem; } .site-header .logo { max-width: calc(100% - 3.75rem); } [data-nav-menu].is-open, .site-nav.is-open, .primary-nav.is-open, .nav-links.is-open { display: flex !important; } }

:root { --brand-accent: hsl(93 72% 44%); --brand-ink: hsl(110 48% 20%); }
.logo { min-width: 0; }
.logo img { max-width: min(100%, 17rem); height: auto; }
.site-legal { min-height: 100vh; display: flex; flex-direction: column; }
.legal-main { flex: 1; padding: clamp(2rem, 6vw, 5rem) 1.25rem; }
.legal-card { width: min(100%, 52rem); margin: 0 auto; }
.legal-card h1, .legal-card h2 { color: var(--brand-ink, currentColor); }
.legal-date { margin-top: 2rem; opacity: .72; }
@media (max-width: 780px) { .site-header .container { gap: .75rem; } .site-header .logo { max-width: calc(100% - 3.75rem); } [data-nav-menu].is-open, .site-nav.is-open, .primary-nav.is-open, .nav-links.is-open { display: flex !important; } }

:root { --brand-accent: hsl(93 72% 44%); --brand-ink: hsl(110 48% 20%); }
.logo { min-width: 0; }
.logo img { max-width: min(100%, 17rem); height: auto; }
.site-legal { min-height: 100vh; display: flex; flex-direction: column; }
.legal-main { flex: 1; padding: clamp(2rem, 6vw, 5rem) 1.25rem; }
.legal-card { width: min(100%, 52rem); margin: 0 auto; }
.legal-card h1, .legal-card h2 { color: var(--brand-ink, currentColor); }
.legal-date { margin-top: 2rem; opacity: .72; }
@media (max-width: 780px) { .site-header .container { gap: .75rem; } .site-header .logo { max-width: calc(100% - 3.75rem); } [data-nav-menu].is-open, .site-nav.is-open, .primary-nav.is-open, .nav-links.is-open { display: flex !important; } }

:root { --brand-accent: hsl(93 72% 44%); --brand-ink: hsl(110 48% 20%); }
.logo { min-width: 0; }
.logo img { max-width: min(100%, 17rem); height: auto; }
.reveal, .fade-in, .animate-in, [data-reveal], [data-animate], .scroll-reveal { opacity: 1 !important; transform: none !important; visibility: visible !important; }
.site-legal { min-height: 100vh; display: flex; flex-direction: column; }
.legal-main { flex: 1; padding: clamp(2rem, 6vw, 5rem) 1.25rem; }
.legal-card { width: min(100%, 52rem); margin: 0 auto; }
.legal-card h1, .legal-card h2 { color: var(--brand-ink, currentColor); }
.legal-date { margin-top: 2rem; opacity: .72; }
@media (max-width: 780px) { .site-header .container { gap: .75rem; } .site-header .logo { max-width: calc(100% - 3.75rem); } [data-nav-menu].is-open, .site-nav.is-open, .primary-nav.is-open, .nav-links.is-open { display: flex !important; } }
