/* ============================================================
   SELF-HOSTED FONTS — works offline, no Google Fonts dependency
   ============================================================ */

@font-face {
  font-family: 'Fraunces';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('../fonts/fraunces-normal.woff2') format('woff2');
}

@font-face {
  font-family: 'Fraunces';
  font-style: italic;
  font-weight: 400 700;
  font-display: swap;
  src: url('../fonts/fraunces-italic.woff2') format('woff2');
}

@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url('../fonts/dmsans.woff2') format('woff2');
}

/* ============================================================
   RIGHT NOW SUPPORTS — MAIN STYLESHEET
   ============================================================
   1.  Custom Properties (Design Tokens)
   2.  Reset & Base
   3.  Typography
   4.  Layout Utilities
   5.  Buttons
   6.  Forms
   7.  Navigation
   8.  Hero
   9.  Trust Bar
   10. Who Are You (Audience Selector)
   11. Services
   12. How It Works
   13. Values
   14. FAQ
   15. Contact / Enquiry
   16. Footer
   17. Modal
   18. Scroll Animations
   19. Reduced Motion
   ============================================================ */


/* ============================================================
   1. CUSTOM PROPERTIES
   ============================================================ */

:root {
  /* Brand */
  --c-primary:        #c0217b;
  --c-primary-dark:   #a3186a;
  --c-secondary:      #7b1fa2;
  --c-secondary-dark: #651789;
  --grad-brand:       linear-gradient(135deg, #c0217b 0%, #7b1fa2 100%);
  --grad-subtle:      linear-gradient(135deg, rgba(192,33,123,.07) 0%, rgba(123,31,162,.07) 100%);

  /* Neutrals */
  --c-text:           #1a1a2e;
  --c-muted:          #5a5a7a;
  --c-light:          #8a8aaa;
  --c-surface:        #ffffff;
  --c-raised:         #f8f4fc;
  --c-border:         #ede8f5;
  --c-dark-bg:        #0d0d1e;

  /* Typography */
  --font-heading:     'Fraunces', Georgia, serif;
  --font-body:        'DM Sans', system-ui, -apple-system, sans-serif;

  /* Type scale — fluid */
  --text-xs:    clamp(0.75rem,  2vw,   0.8125rem);
  --text-sm:    clamp(0.875rem, 2.5vw, 0.9375rem);
  --text-base:  clamp(1rem,     3vw,   1.0625rem);
  --text-lg:    clamp(1.125rem, 3.5vw, 1.25rem);
  --text-xl:    clamp(1.25rem,  4vw,   1.5rem);
  --text-2xl:   clamp(1.5rem,   5vw,   2rem);
  --text-3xl:   clamp(1.875rem, 6vw,   2.5rem);
  --text-4xl:   clamp(2.25rem,  7vw,   3.25rem);
  --text-hero:  clamp(2.75rem,  9vw,   5.5rem);

  /* Spacing */
  --sp-1:  0.25rem;
  --sp-2:  0.5rem;
  --sp-3:  0.75rem;
  --sp-4:  1rem;
  --sp-5:  1.25rem;
  --sp-6:  1.5rem;
  --sp-8:  2rem;
  --sp-10: 2.5rem;
  --sp-12: 3rem;
  --sp-16: 4rem;
  --sp-20: 5rem;
  --sp-24: 6rem;

  /* Section rhythm */
  --section-pad: clamp(3.5rem, 9vw, 6rem);

  /* Layout */
  --container-max:  1200px;
  --container-pad:  clamp(1.25rem, 5vw, 2rem);

  /* Border radius */
  --r-sm:   8px;
  --r-md:   16px;
  --r-lg:   24px;
  --r-xl:   32px;
  --r-full: 9999px;

  /* Shadows */
  --shadow-sm:    0 1px 4px rgba(26,26,46,.06);
  --shadow-md:    0 4px 20px rgba(26,26,46,.10);
  --shadow-lg:    0 8px 40px rgba(26,26,46,.12);
  --shadow-brand: 0 8px 32px rgba(192,33,123,.25);

  /* Transitions */
  --t-fast:   150ms ease;
  --t-base:   300ms ease;
  --t-slow:   600ms ease;

  /* Nav */
  --nav-h: 72px;
}


/* ============================================================
   2. RESET & BASE
   ============================================================ */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--c-text);
  background: var(--c-surface);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Body lock when mobile nav is open */
body.nav-open {
  overflow: hidden;
}

img, svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* Anchor scroll offset — accounts for fixed nav */
section[id] {
  scroll-margin-top: calc(var(--nav-h) + 1rem);
}


/* ============================================================
   3. TYPOGRAPHY
   ============================================================ */

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  color: var(--c-text);
}

h1 { font-size: var(--text-hero); }
h2 { font-size: var(--text-4xl); }
h3 { font-size: var(--text-xl); }

p {
  line-height: 1.75;
  color: var(--c-muted);
}

strong {
  font-weight: 600;
  color: var(--c-text);
}

a:focus-visible {
  outline: 2px solid var(--c-primary);
  outline-offset: 3px;
  border-radius: 3px;
}


/* ============================================================
   4. LAYOUT UTILITIES
   ============================================================ */

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto var(--sp-12);
}

.section-header__heading {
  font-size: var(--text-3xl);
  margin-bottom: var(--sp-4);
  color: var(--c-text);
}

.section-header__sub {
  font-size: var(--text-lg);
  color: var(--c-muted);
  line-height: 1.6;
}


/* ============================================================
   5. BUTTONS
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: 0.75rem 1.5rem;
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 600;
  border-radius: var(--r-full);
  border: 2px solid transparent;
  transition: background var(--t-base), color var(--t-base), border-color var(--t-base),
              transform var(--t-fast), box-shadow var(--t-base);
  white-space: nowrap;
  cursor: pointer;
  text-decoration: none;
  line-height: 1;
}

.btn:hover  { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

/* Primary */
.btn--primary {
  background: var(--grad-brand);
  color: white;
  border-color: transparent;
  box-shadow: var(--shadow-brand);
}
.btn--primary:hover {
  box-shadow: 0 12px 40px rgba(192,33,123,.35);
}

/* Outline */
.btn--outline {
  background: transparent;
  color: var(--c-primary);
  border-color: var(--c-primary);
}
.btn--outline:hover {
  background: var(--c-primary);
  color: white;
}

/* Ghost (for dark backgrounds) */
.btn--ghost {
  background: rgba(255,255,255,.12);
  color: white;
  border-color: rgba(255,255,255,.3);
  backdrop-filter: blur(4px);
}
.btn--ghost:hover {
  background: rgba(255,255,255,.2);
  border-color: rgba(255,255,255,.5);
}

/* Sizes */
.btn--lg {
  padding: 1rem 2rem;
  font-size: var(--text-lg);
}

.btn--full {
  width: 100%;
}


/* ============================================================
   6. FORMS
   ============================================================ */

.form-field {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  margin-bottom: var(--sp-5);
}

.form-field label {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--c-text);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--c-text);
  background: white;
  border: 2px solid var(--c-border);
  border-radius: var(--r-md);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
  appearance: none;
  -webkit-appearance: none;
}

.form-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none'%3E%3Cpolyline points='6 9 12 15 18 9' stroke='%235a5a7a' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-field textarea {
  resize: vertical;
  min-height: 120px;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--c-primary);
  box-shadow: 0 0 0 4px rgba(192,33,123,.1);
}

.form-field input[aria-invalid="true"],
.form-field.is-error input,
.form-field.is-error select,
.form-field.is-error textarea {
  border-color: #e53e3e;
  box-shadow: 0 0 0 4px rgba(229,62,62,.1);
}

.form-error {
  font-size: var(--text-xs);
  color: #e53e3e;
  font-weight: 500;
  min-height: 1.2em;
}

.form-req { color: var(--c-primary); }
.form-opt { color: var(--c-light); font-weight: 400; font-size: var(--text-xs); }

.form-privacy {
  font-size: var(--text-xs);
  color: var(--c-light);
  text-align: center;
  margin-top: var(--sp-4);
}

.form-privacy a {
  color: var(--c-primary);
  text-decoration: underline;
}

/* Spinner animation */
.spinner-svg {
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Success state */
.form-success {
  text-align: center;
  padding: var(--sp-10) var(--sp-6);
}

.form-success__icon {
  margin: 0 auto var(--sp-6);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--grad-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-primary);
}

.form-success h3 {
  font-size: var(--text-2xl);
  margin-bottom: var(--sp-3);
}

.form-success p {
  color: var(--c-muted);
}

.form-success a {
  color: var(--c-primary);
  text-decoration: underline;
}


/* ============================================================
   7. NAVIGATION
   ============================================================ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: background var(--t-base), box-shadow var(--t-base);
}

.nav--scrolled {
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 24px rgba(26,26,46,.08);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  gap: var(--sp-8);
}

/* Logo */
.nav__logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  z-index: 2;
}

.nav__logo img { height: 40px; width: auto; }

.nav__logo-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--text-lg);
  color: white;
  align-items: center;
}

.nav--scrolled .nav__logo-text { color: var(--c-text); }

/* Desktop links */
.nav__links {
  display: none;
  align-items: center;
  gap: var(--sp-2);
  flex: 1;
  justify-content: center;
}

@media (min-width: 1024px) {
  .nav__links { display: flex; }
}

.nav__link {
  font-size: var(--text-sm);
  font-weight: 500;
  padding: var(--sp-2) var(--sp-3);
  border-radius: var(--r-sm);
  color: rgba(255,255,255,.9);
  transition: color var(--t-fast), background var(--t-fast);
}

.nav__link:hover {
  color: white;
  background: rgba(255,255,255,.12);
}

.nav__link[aria-current="page"] {
  color: white;
  font-weight: 600;
}

.nav--scrolled .nav__link          { color: var(--c-muted); }
.nav--scrolled .nav__link:hover    { color: var(--c-text); background: var(--c-raised); }
.nav--scrolled .nav__link[aria-current="page"] { color: var(--c-primary); }

/* Nav actions */
.nav__actions {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  flex-shrink: 0;
}

.nav__cta {
  display: none;
}

@media (min-width: 640px) {
  .nav__cta { display: inline-flex; }
}

/* Hamburger */
.nav__hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: var(--sp-2);
  border-radius: var(--r-sm);
  transition: background var(--t-fast);
  z-index: 2;
}

.nav__hamburger:hover { background: rgba(255,255,255,.12); }
.nav--scrolled .nav__hamburger:hover { background: var(--c-raised); }

@media (min-width: 1024px) {
  .nav__hamburger { display: none; }
}

.nav__bar {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: white;
  transition: transform var(--t-base), opacity var(--t-base);
  transform-origin: center;
}

.nav--scrolled .nav__bar { background: var(--c-text); }

/* Open state — bars become X */
.nav-open .nav__hamburger .nav__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-open .nav__hamburger .nav__bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav-open .nav__hamburger .nav__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu */
.nav__mobile {
  position: fixed;
  inset: 0;
  background: var(--c-dark-bg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: var(--sp-4);
  padding: var(--sp-12) var(--container-pad);
  transform: translateY(-100%);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), opacity 0.35s ease;
  pointer-events: none;
  z-index: 999;
}

.nav__mobile.is-open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}

.nav__mobile-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-2);
  width: 100%;
}

.nav__mobile-link {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: 600;
  color: white;
  padding: var(--sp-3) var(--sp-6);
  border-radius: var(--r-md);
  transition: background var(--t-fast), color var(--t-fast);
  text-align: center;
  width: 100%;
}

.nav__mobile-link:hover {
  background: rgba(255,255,255,.08);
}

.nav__mobile-link[aria-current="page"] {
  color: var(--c-primary);
}

.nav__mobile .btn {
  margin-top: var(--sp-4);
  max-width: 320px;
  width: 100%;
}

@media (min-width: 1024px) {
  .nav__mobile { display: none; }
}


/* ============================================================
   8. HERO
   ============================================================ */

#hero {
  position: relative;
  background: var(--c-dark-bg);
  color: white;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--nav-h);
  overflow: hidden;
}

/* Atmospheric orbs */
.hero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.hero__orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero__orb--1 {
  width: clamp(400px, 70vw, 900px);
  height: clamp(400px, 70vw, 900px);
  background: radial-gradient(circle at center, rgba(192,33,123,.65) 0%, transparent 65%);
  top: -30%;
  left: -20%;
  filter: blur(60px);
}

.hero__orb--2 {
  width: clamp(350px, 60vw, 750px);
  height: clamp(350px, 60vw, 750px);
  background: radial-gradient(circle at center, rgba(123,31,162,.65) 0%, transparent 65%);
  bottom: -20%;
  right: -10%;
  filter: blur(60px);
}

.hero__orb--3 {
  width: clamp(200px, 35vw, 400px);
  height: clamp(200px, 35vw, 400px);
  background: radial-gradient(circle at center, rgba(192,33,123,.35) 0%, transparent 65%);
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: blur(40px);
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-12);
  align-items: center;
  padding-top: var(--sp-16);
  padding-bottom: var(--sp-16);
}

@media (min-width: 1024px) {
  .hero__inner {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-8);
    padding-top: var(--sp-20);
    padding-bottom: var(--sp-20);
  }
}

/* Hero content — animated in via JS on page load */
.hero__content {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.9s ease, transform 0.9s ease;
}

.hero__content.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero__eyebrow {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,.6);
  margin-bottom: var(--sp-5);
}

.hero__heading {
  font-family: var(--font-body);
  font-size: var(--text-hero);
  font-weight: 600;
  color: white;
  line-height: 1.1;
  margin-bottom: var(--sp-6);
}

/* Gradient on the italic emphasis — keeps Fraunces for contrast */
.hero__heading em {
  font-family: var(--font-heading);
  font-style: italic;
  background: linear-gradient(135deg, #f472b6 0%, #c084fc 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero__sub {
  font-size: var(--text-lg);
  color: rgba(255,255,255,.75);
  line-height: 1.7;
  margin-bottom: var(--sp-8);
  max-width: 540px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
  margin-bottom: var(--sp-6);
}

.hero__reassurance {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--sp-2) var(--sp-3);
  font-size: var(--text-xs);
  color: rgba(255,255,255,.5);
  font-weight: 500;
}

.hero__dot {
  opacity: 0.4;
}

/* Floating service cards */
.hero__cards {
  display: none;
  position: relative;
  height: 340px;
}

@media (min-width: 1024px) {
  .hero__cards { display: block; }
}

/* Hero photo (replaces floating cards on desktop) */
.hero__photo {
  display: none;
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  max-width: 520px;
  margin-left: auto;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.08);
  opacity: 0;
  transform: translateY(24px) scale(0.98);
  transition: opacity 0.9s ease 0.3s, transform 0.9s ease 0.3s;
}

.hero__photo.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero__photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(192,33,123,0.12) 0%, transparent 40%, transparent 60%, rgba(13,13,30,0.35) 100%);
  pointer-events: none;
}

@media (min-width: 1024px) {
  .hero__photo { display: block; }
}

.hero__card {
  position: absolute;
  padding: var(--sp-5) var(--sp-6);
  border-radius: var(--r-lg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  opacity: 0;
  transform: translateY(20px) scale(0.96);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.hero__card.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.hero__card--1 {
  background: rgba(192,33,123,.25);
  border: 1px solid rgba(192,33,123,.4);
  top: 0;
  left: 10%;
  transition-delay: 0.6s;
  min-width: 200px;
}

.hero__card--2 {
  background: rgba(123,31,162,.25);
  border: 1px solid rgba(123,31,162,.4);
  top: 100px;
  left: 40%;
  transition-delay: 0.8s;
  min-width: 210px;
}

.hero__card--3 {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  top: 210px;
  left: 5%;
  transition-delay: 1.0s;
  min-width: 220px;
}

.hero__card-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--r-md);
  background: rgba(255,255,255,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-bottom: var(--sp-3);
}

.hero__card-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: var(--text-base);
  color: white;
  margin-bottom: var(--sp-1);
}

.hero__card-sub {
  font-size: var(--text-xs);
  color: rgba(255,255,255,.6);
}

/* Scroll indicator */
.hero__scroll-indicator {
  position: absolute;
  bottom: var(--sp-8);
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.hero__scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, rgba(255,255,255,.5), transparent);
  margin: 0 auto;
  animation: scroll-pulse 2s ease-in-out infinite;
}

@keyframes scroll-pulse {
  0%, 100% { opacity: 0.5; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.15); }
}


/* ============================================================
   9. TRUST BAR
   ============================================================ */

#trust-bar {
  background: var(--c-surface);
  padding: var(--sp-10) 0;
  border-bottom: 1px solid var(--c-border);
}

.trust-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-6) var(--sp-8);
}

@media (min-width: 768px) {
  .trust-list {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--sp-6);
  }
}

.trust-item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-4);
}

.trust-item__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: var(--r-md);
  background: var(--grad-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-primary);
}

.trust-item__text {
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
}

.trust-item__text strong {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--c-text);
}

.trust-item__text span {
  font-size: var(--text-xs);
  color: var(--c-light);
}


/* ============================================================
   10. WHO ARE YOU (AUDIENCE SELECTOR)
   ============================================================ */

#who-are-you {
  background: var(--c-raised);
  padding: var(--section-pad) 0;
}

.audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
}

@media (min-width: 1024px) {
  .audience-grid { grid-template-columns: repeat(4, 1fr); }
}

.audience-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--sp-3);
  padding: var(--sp-6);
  background: var(--c-surface);
  border: 2px solid var(--c-border);
  border-radius: var(--r-lg);
  text-align: left;
  cursor: pointer;
  transition: border-color var(--t-base), box-shadow var(--t-base), transform var(--t-fast);
  position: relative;
  overflow: hidden;
}

.audience-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad-subtle);
  opacity: 0;
  transition: opacity var(--t-base);
  pointer-events: none;
}

.audience-card:hover,
.audience-card[aria-pressed="true"] {
  border-color: var(--c-primary);
  box-shadow: 0 0 0 4px rgba(192,33,123,.08), var(--shadow-md);
  transform: translateY(-2px);
}

.audience-card:hover::before,
.audience-card[aria-pressed="true"]::before {
  opacity: 1;
}

.audience-card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--r-md);
  background: var(--grad-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-primary);
  position: relative;
  z-index: 1;
  transition: background var(--t-base), color var(--t-base);
}

.audience-card[aria-pressed="true"] .audience-card__icon,
.audience-card:hover .audience-card__icon {
  background: var(--grad-brand);
  color: white;
}

.audience-card__title {
  font-family: var(--font-heading);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--c-text);
  position: relative;
  z-index: 1;
}

.audience-card__desc {
  font-size: var(--text-sm);
  color: var(--c-muted);
  line-height: 1.5;
  flex: 1;
  position: relative;
  z-index: 1;
}

.audience-card__arrow {
  font-size: var(--text-base);
  color: var(--c-primary);
  transition: transform var(--t-fast);
  position: relative;
  z-index: 1;
}

.audience-card:hover .audience-card__arrow,
.audience-card[aria-pressed="true"] .audience-card__arrow {
  transform: translateX(4px);
}


/* ============================================================
   11. SERVICES
   ============================================================ */

#services {
  background: var(--c-surface);
  padding: var(--section-pad) 0;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-8);
}

@media (min-width: 768px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 1200px) {
  .services-grid { grid-template-columns: repeat(4, 1fr); }
}

.service-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--t-base), transform var(--t-fast);
}

.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

/* Image / placeholder visual area */
.service-card__visual {
  height: 220px;
  position: relative;
  overflow: hidden;
}

.service-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.service-card:hover .service-card__img {
  transform: scale(1.04);
}

.service-card__shape {
  position: absolute;
  inset: 0;
}

.service-card--home .service-card__shape {
  background: linear-gradient(135deg, rgba(192,33,123,.15) 0%, rgba(123,31,162,.25) 100%);
}

.service-card--home .service-card__shape::before {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(192,33,123,.2);
  bottom: -60px;
  right: -40px;
}

.service-card--home .service-card__shape::after {
  content: '';
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(123,31,162,.15);
  top: 20px;
  left: 30px;
}

.service-card--community .service-card__shape {
  background: linear-gradient(135deg, rgba(123,31,162,.15) 0%, rgba(192,33,123,.25) 100%);
}

.service-card--community .service-card__shape::before {
  content: '';
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(123,31,162,.2);
  top: -40px;
  left: -30px;
}

.service-card--community .service-card__shape::after {
  content: '';
  position: absolute;
  width: 100px;
  height: 100px;
  border-radius: 30px;
  background: rgba(192,33,123,.15);
  bottom: 10px;
  right: 40px;
  transform: rotate(15deg);
}

.service-card--skills .service-card__shape {
  background: linear-gradient(135deg, rgba(123,31,162,.15) 0%, rgba(192,33,123,.2) 100%);
}

.service-card--skills .service-card__shape::before {
  content: '';
  position: absolute;
  width: 140px;
  height: 140px;
  border-radius: var(--r-xl);
  background: rgba(123,31,162,.18);
  top: 20px;
  right: 20px;
  transform: rotate(20deg);
}

.service-card--skills .service-card__shape::after {
  content: '';
  position: absolute;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(192,33,123,.12);
  bottom: 20px;
  left: 40px;
}

.service-card__body {
  padding: var(--sp-6);
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  flex: 1;
}

.service-card__body--centered {
  align-items: center;
  text-align: center;
  justify-content: center;
  padding: var(--sp-10) var(--sp-6);
}

.service-card--sil {
  background: var(--c-dark-bg);
  border-color: transparent;
  background-image: var(--grad-brand);
}

.service-card--sil .service-card__body--centered {
  color: white;
}

.service-card__tag {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--c-primary);
  background: rgba(192,33,123,.08);
  padding: var(--sp-1) var(--sp-3);
  border-radius: var(--r-full);
}

.service-card__tag--coming-soon {
  background: rgba(255,255,255,.2);
  color: white;
}

.service-card__title {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--c-text);
  line-height: 1.2;
}

.service-card--sil .service-card__title {
  color: white;
}

.service-card__desc {
  font-size: var(--text-base);
  color: var(--c-muted);
  line-height: 1.65;
}

.service-card--sil .service-card__desc {
  color: rgba(255,255,255,.8);
}

.service-card__list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  flex: 1;
}

.service-card__list li {
  font-size: var(--text-sm);
  color: var(--c-muted);
  padding-left: var(--sp-5);
  position: relative;
}

.service-card__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c-primary);
}

.service-card__note {
  font-size: var(--text-xs);
  color: rgba(255,255,255,.6);
  margin-top: var(--sp-2);
}


/* ============================================================
   12. HOW IT WORKS
   ============================================================ */

#how-it-works {
  background: var(--c-raised);
  padding: var(--section-pad) 0;
}

.steps-list {
  max-width: 680px;
  margin: 0 auto;
  padding: 0;
  counter-reset: steps;
}

.step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: var(--sp-6);
  position: relative;
  padding-bottom: var(--sp-10);
}

.step:last-child {
  padding-bottom: 0;
}

/* Connecting vertical line */
.step:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 27px;
  top: 56px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--c-primary), rgba(192,33,123,.1));
}

.step__marker {
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.step__number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--grad-brand);
  color: white;
  font-family: var(--font-heading);
  font-size: var(--text-base);
  font-weight: 700;
  box-shadow: var(--shadow-brand);
}

.step__content {
  padding-top: var(--sp-3);
  padding-bottom: var(--sp-2);
}

.step__time {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--c-primary);
  margin-bottom: var(--sp-2);
}

.step__title {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--c-text);
  margin-bottom: var(--sp-3);
}

.step__desc {
  font-size: var(--text-base);
  color: var(--c-muted);
  line-height: 1.7;
}

.steps-cta {
  text-align: center;
  margin-top: var(--sp-12);
}


/* ============================================================
   13. VALUES
   ============================================================ */

#values {
  background: var(--c-surface);
  padding: var(--section-pad) 0;
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-6);
}

@media (min-width: 768px) {
  .values-grid { grid-template-columns: repeat(3, 1fr); }
}

.value-card {
  padding: var(--sp-8) var(--sp-6);
  border-radius: var(--r-xl);
  background: var(--c-raised);
  border: 1px solid var(--c-border);
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  transition: box-shadow var(--t-base), transform var(--t-fast);
}

.value-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.value-card__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--r-lg);
  background: var(--grad-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: var(--shadow-brand);
}

.value-card__title {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--c-text);
}

.value-card__desc {
  font-size: var(--text-base);
  color: var(--c-muted);
  line-height: 1.7;
}


/* ============================================================
   13b. ABOUT / OUR STORY
   ============================================================ */

#about {
  background: var(--c-dark-bg);
  padding: var(--section-pad) 0;
  overflow: hidden;
  position: relative;
}

#about::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(192,33,123,.2) 0%, transparent 70%);
  top: -200px;
  right: -200px;
  pointer-events: none;
}

.about__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-12);
  align-items: center;
}

@media (min-width: 900px) {
  .about__inner { grid-template-columns: 1fr 1fr; gap: var(--sp-16); }
}

/* Visual placeholder */
.about__visual {
  position: relative;
  height: 360px;
  display: none;
}

@media (min-width: 900px) { .about__visual { display: block; } }

.about__visual-shape {
  position: absolute;
  border-radius: var(--r-xl);
}

.about__visual-shape--1 {
  inset: 0;
  background: linear-gradient(135deg, rgba(192,33,123,.25) 0%, rgba(123,31,162,.35) 100%);
  border: 1px solid rgba(255,255,255,.08);
  overflow: hidden;
}

.about__visual-shape--1 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about__visual-shape--1::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(192,33,123,0.2) 0%, transparent 40%, rgba(13,13,30,0.45) 100%);
  pointer-events: none;
}

.about__visual-shape--2 {
  width: 180px;
  height: 180px;
  background: rgba(192,33,123,.15);
  border: 1px solid rgba(192,33,123,.3);
  border-radius: 50%;
  bottom: -30px;
  right: -30px;
}

.about__visual-card {
  position: absolute;
  bottom: var(--sp-8);
  left: var(--sp-6);
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-lg);
  padding: var(--sp-5) var(--sp-6);
  display: flex;
  align-items: center;
  gap: var(--sp-4);
}

.about__visual-card-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--r-md);
  background: var(--grad-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}

.about__visual-card-text {
  font-size: var(--text-sm);
  font-weight: 600;
  color: white;
  line-height: 1.4;
}

/* Content */
.about__content {
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
}

.about__eyebrow {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--c-primary);
}

.about__heading {
  font-size: var(--text-3xl);
  font-weight: 700;
  color: white;
  line-height: 1.2;
}

.about__body {
  font-size: var(--text-base);
  color: rgba(255,255,255,.7);
  line-height: 1.8;
}

.about__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
  padding: var(--sp-6) 0;
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.about__stat {
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
}

.about__stat-value {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: white;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about__stat-label {
  font-size: var(--text-xs);
  color: rgba(255,255,255,.5);
  font-weight: 500;
}

.about__reg-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-2) var(--sp-6);
  padding: var(--sp-5) 0;
  border-top: 1px solid rgba(255,255,255,.08);
}

.about__reg-list li {
  font-size: var(--text-sm);
  color: rgba(255,255,255,.7);
  padding-left: var(--sp-5);
  position: relative;
  line-height: 1.5;
}

.about__reg-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c-primary);
}

.about__reg-note {
  font-size: var(--text-xs);
  color: rgba(255,255,255,.72);
  padding-bottom: var(--sp-2);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.about__reg-note strong {
  color: #7ee67e;
  font-weight: 700;
}


/* ============================================================
   14. FAQ
   ============================================================ */

#faq {
  background: var(--c-raised);
  padding: var(--section-pad) 0;
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.faq-item {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: box-shadow var(--t-base);
}

.faq-item:has(.faq-trigger[aria-expanded="true"]) {
  box-shadow: var(--shadow-md);
  border-color: rgba(192,33,123,.2);
}

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  padding: var(--sp-5) var(--sp-6);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--c-text);
  text-align: left;
  transition: background var(--t-fast), color var(--t-fast);
  cursor: pointer;
}

.faq-trigger:hover { background: var(--c-raised); }

.faq-trigger[aria-expanded="true"] {
  color: var(--c-primary);
}

/* Plus/minus icon */
.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 2px solid var(--c-border);
  position: relative;
  transition: background var(--t-base), border-color var(--t-base), transform var(--t-base);
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--c-muted);
  border-radius: 2px;
  transition: background var(--t-base), transform var(--t-base), opacity var(--t-base);
}

.faq-icon::before {
  width: 10px;
  height: 2px;
  transform: translate(-50%, -50%);
}

.faq-icon::after {
  width: 2px;
  height: 10px;
  transform: translate(-50%, -50%);
}

.faq-trigger[aria-expanded="true"] .faq-icon {
  background: var(--c-primary);
  border-color: var(--c-primary);
  transform: rotate(45deg);
}

.faq-trigger[aria-expanded="true"] .faq-icon::before,
.faq-trigger[aria-expanded="true"] .faq-icon::after {
  background: white;
}

/* Accordion collapse */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4,0,0.2,1);
}

.faq-answer.is-open {
  max-height: 600px;
}

.faq-answer__inner {
  padding: 0 var(--sp-6) var(--sp-5);
  font-size: var(--text-base);
  color: var(--c-muted);
  line-height: 1.75;
}

.faq-link {
  display: inline-block;
  margin-top: var(--sp-3);
  color: var(--c-primary);
  font-weight: 600;
  text-decoration: underline;
}


/* ============================================================
   15. CONTACT / ENQUIRY
   ============================================================ */

#contact {
  position: relative;
  padding: var(--section-pad) 0;
  overflow: hidden;
}

.contact__bg {
  position: absolute;
  inset: 0;
  background: var(--grad-brand);
  opacity: 0.04;
  pointer-events: none;
}

.contact__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-12);
  align-items: start;
}

@media (min-width: 768px) {
  .contact__inner {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-16);
    align-items: center;
  }
}

.contact__copy {
  display: flex;
  flex-direction: column;
  gap: var(--sp-6);
}

.contact__heading {
  font-size: var(--text-4xl);
  line-height: 1.1;
  color: var(--c-text);
}

.contact__sub {
  font-size: var(--text-lg);
  color: var(--c-muted);
  line-height: 1.65;
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

.contact__detail-link,
.contact__detail-text {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: var(--text-base);
  font-weight: 500;
  color: var(--c-text);
  transition: color var(--t-fast);
}

.contact__detail-link {
  text-decoration: none;
}

.contact__detail-link:hover { color: var(--c-primary); }

.contact__detail-link svg,
.contact__detail-text svg {
  color: var(--c-primary);
  flex-shrink: 0;
}

.contact__form-wrap {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  padding: var(--sp-8);
  box-shadow: var(--shadow-lg);
}

.enquiry-form__title {
  font-size: var(--text-xl);
  font-weight: 700;
  margin-bottom: var(--sp-6);
  color: var(--c-text);
}


/* ============================================================
   16. FOOTER
   ============================================================ */

.footer {
  background: var(--c-dark-bg);
  color: rgba(255,255,255,.7);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-8) var(--sp-6);
  padding-top: var(--sp-16);
  padding-bottom: var(--sp-12);
}

@media (min-width: 768px) {
  .footer__inner {
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--sp-8);
  }
}

.footer__brand {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

@media (min-width: 768px) {
  .footer__brand { grid-column: auto; }
}

.footer__logo-link img { height: 36px; width: auto; }

.footer__logo-fallback {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--text-lg);
  color: white;
  align-items: center;
}

.footer__tagline {
  font-size: var(--text-sm);
  color: rgba(255,255,255,.5);
  line-height: 1.5;
}

.footer__ndis-badge {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--sp-2);
  max-width: 240px;
}

.footer__ndis-logo {
  display: block;
  width: 180px;
  height: auto;
  background: #ffffff;
  padding: 14px 16px;
  border-radius: var(--r-md);
  box-sizing: content-box;
}

.footer__ndis-expiry {
  display: block;
  font-size: var(--text-xs);
  color: rgba(255,255,255,.55);
  padding-left: 2px;
}

.footer__nav-title {
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 600;
  color: white;
  margin-bottom: var(--sp-4);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer__nav ul,
.footer__contact-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.footer__nav a,
.footer__contact-list a {
  font-size: var(--text-sm);
  color: rgba(255,255,255,.6);
  transition: color var(--t-fast);
}

.footer__nav a:hover,
.footer__contact-list a:hover { color: white; }

.footer__contact-list li {
  font-size: var(--text-sm);
  color: rgba(255,255,255,.6);
  line-height: 1.5;
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.08);
}

.footer__compliance {
  padding: var(--sp-8) 0 var(--sp-6);
  font-size: var(--text-xs);
  color: rgba(255,255,255,.52);
  line-height: 1.7;
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.footer__compliance p {
  margin: 0 0 var(--sp-3);
  max-width: 820px;
}

.footer__compliance p:last-child {
  margin-bottom: 0;
}

.footer__compliance strong {
  color: rgba(255,255,255,.78);
  font-weight: 600;
}

.footer__compliance a {
  color: rgba(255,255,255,.7);
  transition: color var(--t-fast);
}

.footer__compliance a:hover { color: white; }

.footer__services strong {
  color: rgba(255,255,255,.72);
}

.footer__acknowledgement {
  font-style: italic;
  color: rgba(255,255,255,.42) !important;
  padding-top: var(--sp-4);
  border-top: 1px dashed rgba(255,255,255,.08);
  margin-top: var(--sp-4) !important;
  font-size: var(--text-xs);
}

.footer__bottom-inner {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  padding: var(--sp-6) 0;
  font-size: var(--text-xs);
  color: rgba(255,255,255,.4);
}

@media (min-width: 768px) {
  .footer__bottom-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.footer__bottom-inner a {
  color: rgba(255,255,255,.5);
  transition: color var(--t-fast);
}

.footer__bottom-inner a:hover { color: white; }


/* ============================================================
   17. MODAL
   ============================================================ */

.modal {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  padding: 0;
  max-width: 520px;
  width: calc(100% - 2 * var(--container-pad));
  box-shadow: var(--shadow-lg);
}

.modal::backdrop {
  background: rgba(13,13,30,.7);
  backdrop-filter: blur(4px);
}

.modal__inner {
  padding: var(--sp-8);
  position: relative;
}

.modal__close {
  position: absolute;
  top: var(--sp-5);
  right: var(--sp-5);
  width: 36px;
  height: 36px;
  border-radius: var(--r-sm);
  background: var(--c-raised);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-muted);
  transition: background var(--t-fast), color var(--t-fast);
}

.modal__close:hover { background: var(--c-border); color: var(--c-text); }

.modal__title {
  font-size: var(--text-2xl);
  margin-bottom: var(--sp-3);
  padding-right: var(--sp-10);
}

.modal__sub {
  font-size: var(--text-base);
  color: var(--c-muted);
  margin-bottom: var(--sp-6);
  line-height: 1.65;
}

.modal__success {
  text-align: center;
  padding: var(--sp-8) 0 var(--sp-4);
}

.modal__success h3 {
  font-size: var(--text-2xl);
  margin: var(--sp-4) 0 var(--sp-3);
}

.modal__success p {
  color: var(--c-muted);
  margin-bottom: var(--sp-6);
}


/* ============================================================
   18. SCROLL ANIMATIONS
   ============================================================ */

/* Single elements */
[data-animate="fade-up"] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-animate="slide-left"] {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-animate="slide-right"] {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-animate].is-visible {
  opacity: 1;
  transform: none;
}

/* Stagger parent — children animate in sequence */
[data-animate-stagger] > * {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate-stagger] > *:nth-child(1)  { transition-delay:   0ms; }
[data-animate-stagger] > *:nth-child(2)  { transition-delay: 100ms; }
[data-animate-stagger] > *:nth-child(3)  { transition-delay: 200ms; }
[data-animate-stagger] > *:nth-child(4)  { transition-delay: 300ms; }
[data-animate-stagger] > *:nth-child(5)  { transition-delay: 400ms; }
[data-animate-stagger] > *:nth-child(6)  { transition-delay: 500ms; }

[data-animate-stagger].is-visible > * {
  opacity: 1;
  transform: none;
}


/* ============================================================
   18.5 IN ACTION — video social proof
   ============================================================ */

#in-action {
  background: var(--c-surface);
  padding: var(--section-pad) 0;
}

.video-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-6);
  max-width: 900px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .video-grid { grid-template-columns: repeat(2, 1fr); gap: var(--sp-8); }
}

.video-card {
  margin: 0;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--c-raised);
  border: 1px solid var(--c-border);
  box-shadow: var(--shadow-md);
  transition: transform var(--t-base), box-shadow var(--t-base);
}

.video-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg, 0 14px 40px -10px rgba(0,0,0,.25));
}

.video-card__media {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  background: #000;
}

.video-card__caption {
  padding: var(--sp-5) var(--sp-6);
  font-size: var(--text-base);
  color: var(--c-muted);
  line-height: 1.6;
  text-align: center;
}

.form-conditional {
  display: none;
  flex-direction: column;
  gap: 0;
  background: var(--c-raised);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: var(--sp-5) var(--sp-5) var(--sp-1);
  margin-bottom: var(--sp-5);
}

.form-conditional.is-visible {
  display: flex;
}

.form-conditional__label {
  font-size: var(--text-xs, 0.78rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--c-primary);
  margin-bottom: var(--sp-4);
}

.form-conditional .form-field:last-child {
  margin-bottom: var(--sp-4);
}

.moments-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-6);
  max-width: 1100px;
  margin: var(--sp-8) auto 0;
}

@media (min-width: 640px) {
  .moments-grid { grid-template-columns: repeat(3, 1fr); gap: var(--sp-6); }
}

.moment-card {
  margin: 0;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--c-raised);
  border: 1px solid var(--c-border);
  box-shadow: var(--shadow-md);
  transition: transform var(--t-base), box-shadow var(--t-base);
}

.moment-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg, 0 14px 40px -10px rgba(0,0,0,.25));
}

.moment-card__media {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  background: #eee;
}

.moment-card__caption {
  padding: var(--sp-4) var(--sp-5);
  font-size: 0.95rem;
  color: var(--c-muted);
  line-height: 1.5;
  text-align: center;
}

/* ============================================================
   19. REDUCED MOTION
   ============================================================ */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html { scroll-behavior: auto; }

  [data-animate],
  [data-animate-stagger] > *,
  .hero__content,
  .hero__card {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
