/* ============================================
   WUNORI BURUMA — MAIN STYLESHEET
   Design Concept: Luminous Surfaces
   ============================================ */


:root {
  --color-bg-dark: #0d0f1a;
  --color-bg-dark-2: #111425;
  --color-bg-light: #f4f3f8;
  --color-bg-light-2: #eceaf4;
  --color-surface-dark: #161929;
  --color-surface-card: #1c2035;
  --color-primary: #7c5cfc;
  --color-primary-light: #9d82fd;
  --color-primary-dark: #5b3ed4;
  --color-accent: #00d4c8;
  --color-accent-2: #f06aff;
  --color-text-light: #f0eeff;
  --color-text-muted-light: #b8b0d8;
  --color-text-dark: #1a1730;
  --color-text-muted-dark: #5a5478;
  --color-border-dark: rgba(124, 92, 252, 0.18);
  --color-border-light: rgba(26, 23, 48, 0.1);

  --shadow-glow-primary: 0 0 30px rgba(124, 92, 252, 0.35), 0 0 80px rgba(124, 92, 252, 0.15);
  --shadow-glow-accent: 0 0 30px rgba(0, 212, 200, 0.35), 0 0 80px rgba(0, 212, 200, 0.12);
  --shadow-card-dark: 0 2px 8px rgba(0,0,0,0.4), 0 8px 32px rgba(0,0,0,0.3), 0 0 0 1px rgba(124,92,252,0.12);
  --shadow-card-hover: 0 4px 16px rgba(0,0,0,0.5), 0 16px 48px rgba(0,0,0,0.35), 0 0 40px rgba(124,92,252,0.25), 0 0 0 1px rgba(124,92,252,0.3);
  --shadow-card-light: 0 2px 8px rgba(26,23,48,0.07), 0 8px 32px rgba(26,23,48,0.05);
  --shadow-card-light-hover: 0 4px 16px rgba(26,23,48,0.12), 0 16px 48px rgba(26,23,48,0.08), 0 0 0 2px rgba(124,92,252,0.15);
  --shadow-btn: 0 2px 8px rgba(124,92,252,0.3), 0 4px 20px rgba(124,92,252,0.2);
  --shadow-btn-hover: 0 4px 16px rgba(124,92,252,0.5), 0 8px 32px rgba(124,92,252,0.3);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-pill: 999px;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-3xl: 8rem;

  --font-heading: 'Urbanist', sans-serif;
  --font-body: 'DM Sans', sans-serif;

  --nav-height: 72px;
  --transition-base: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}


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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-bg-light);
  color: var(--color-text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-base);
}

ul, ol {
  list-style: none;
}

address {
  font-style: normal;
}

button {
  cursor: pointer;
  font-family: var(--font-body);
  border: none;
  background: none;
}


.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}


.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-primary);
  background: rgba(124, 92, 252, 0.1);
  border: 1px solid rgba(124, 92, 252, 0.25);
  padding: 0.3em 0.9em;
  border-radius: var(--radius-pill);
  margin-bottom: var(--space-sm);

  &.section-label--light {
    color: var(--color-accent);
    background: rgba(0, 212, 200, 0.1);
    border-color: rgba(0, 212, 200, 0.25);
  }
}


.global-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  padding: 0.75em 1.8em;
  border-radius: var(--radius-pill);
  transition: all var(--transition-base);
  cursor: pointer;
  white-space: nowrap;
  min-height: 44px;
  text-decoration: none;

  &.global-btn--primary {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: #fff;
    box-shadow: var(--shadow-btn);

    &:hover {
      background: linear-gradient(135deg, var(--color-primary-light) 0%, var(--color-primary) 100%);
      box-shadow: var(--shadow-btn-hover);
      transform: translateY(-2px);
      color: #fff;
    }
    &:active { transform: translateY(0); }
  }

  &.global-btn--ghost {
    background: rgba(255,255,255,0.08);
    color: var(--color-text-light);
    border: 1px solid rgba(255,255,255,0.2);
    backdrop-filter: blur(8px);

    &:hover {
      background: rgba(255,255,255,0.15);
      border-color: rgba(255,255,255,0.35);
      transform: translateY(-2px);
      color: var(--color-text-light);
    }
  }

  &.global-btn--outline {
    background: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);

    &:hover {
      background: var(--color-primary);
      color: #fff;
      box-shadow: var(--shadow-btn);
      transform: translateY(-2px);
    }
  }

  &.global-btn--lg {
    font-size: 1.05rem;
    padding: 0.85em 2.2em;
  }

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

/* ============================================
   GLOBAL HEADER / NAV
   ============================================ */
.global-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background var(--transition-slow), box-shadow var(--transition-slow);

  & .global-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--nav-height);
    padding: 0 var(--space-lg);
    max-width: 1400px;
    margin: 0 auto;
  }

  & .global-nav__logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    z-index: 2;
  }

  & .global-nav__links {
    display: none;
    align-items: center;
    gap: var(--space-md);

    @media (min-width: 900px) {
      display: flex;
    }

    & a {
      font-family: var(--font-body);
      font-size: 0.9rem;
      font-weight: 500;
      padding: 0.4em 0.2em;
      position: relative;
      transition: color var(--transition-base);

      &::after {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 0;
        right: 0;
        height: 2px;
        background: var(--color-primary);
        border-radius: 2px;
        transform: scaleX(0);
        transition: transform var(--transition-base);
      }

      &:hover::after,
      &.active::after {
        transform: scaleX(1);
      }
    }
  }

  & .global-nav__toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    transition: background var(--transition-base);
    z-index: 2;

    @media (min-width: 900px) {
      display: none;
    }

    & span {
      display: block;
      width: 22px;
      height: 2px;
      background: currentColor;
      border-radius: 2px;
      transition: transform var(--transition-base), opacity var(--transition-base);
    }

    &.is-open {
      & span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
      & span:nth-child(2) { opacity: 0; transform: scaleX(0); }
      & span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
    }
  }
}


.global-header--light {
  background: rgba(244, 243, 248, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(26,23,48,0.08);

  & .global-nav__links a {
    color: var(--color-text-dark);
    &:hover { color: var(--color-primary); }
    &.active { color: var(--color-primary); }
  }

  & .global-nav__toggle { color: var(--color-text-dark); }
}

.global-header--dark {
  background: rgba(13, 15, 26, 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(124,92,252,0.1);

  & .global-nav__links a {
    color: var(--color-text-light);
    &:hover { color: var(--color-primary-light); }
    &.active { color: var(--color-primary-light); }
  }

  & .global-nav__toggle { color: var(--color-text-light); }
}


.global-nav__mobile {
  display: none;
  background: rgba(13, 15, 26, 0.97);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--color-border-dark);
  padding: var(--space-sm) 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), padding var(--transition-base);

  @media (max-width: 899px) {
    display: block;
  }

  &.is-open {
    max-height: 400px;
    padding: var(--space-sm) 0;
  }

  & ul {
    padding: 0 var(--space-md);
  }

  & li a {
    display: block;
    padding: 0.75em 0;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-text-light);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: color var(--transition-base), padding-left var(--transition-base);

    &:hover {
      color: var(--color-primary-light);
      padding-left: 0.5em;
    }
  }

  & li:last-child a { border-bottom: none; }
}

/* ============================================
   HOME HERO
   ============================================ */
.home-hero {
  position: relative;
  min-height: 100vh;
  background: var(--color-bg-dark);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--nav-height);

  & .home-hero__bg-layer {
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 60% 50% at 70% 40%, rgba(124,92,252,0.12) 0%, transparent 70%),
      radial-gradient(ellipse 40% 60% at 20% 80%, rgba(0,212,200,0.06) 0%, transparent 60%);
  }

  & .home-hero__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;

    &.home-hero__glow--1 {
      width: 500px;
      height: 500px;
      background: rgba(124, 92, 252, 0.18);
      top: -100px;
      right: -50px;
    }
    &.home-hero__glow--2 {
      width: 350px;
      height: 350px;
      background: rgba(0, 212, 200, 0.1);
      bottom: 0;
      left: 10%;
    }
    &.home-hero__glow--3 {
      width: 250px;
      height: 250px;
      background: rgba(240, 106, 255, 0.08);
      top: 30%;
      left: 40%;
    }
  }

  & .home-hero__content {
    position: relative;
    z-index: 2;
    flex: 1;
    max-width: 600px;
    padding: var(--space-2xl) var(--space-lg);

    @media (min-width: 900px) {
      padding: var(--space-3xl) var(--space-xl);
    }
  }

  & .home-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5em;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-accent);
    background: rgba(0, 212, 200, 0.1);
    border: 1px solid rgba(0, 212, 200, 0.3);
    padding: 0.35em 1em;
    border-radius: var(--radius-pill);
    margin-bottom: var(--space-md);

    & i { font-size: 0.85em; }
  }

  & .home-hero__heading {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--color-text-light);
    margin-bottom: var(--space-md);
  }

  & .home-hero__heading-accent {
    background: linear-gradient(135deg, var(--color-primary-light), var(--color-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  & .home-hero__subhead {
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    color: var(--color-text-muted-light);
    line-height: 1.7;
    margin-bottom: var(--space-lg);
    max-width: 520px;
  }

  & .home-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
  }

  & .home-hero__proof {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm) var(--space-md);
  }

  & .home-hero__proof-item {
    display: flex;
    align-items: center;
    gap: 0.4em;
    font-size: 0.85rem;
    color: var(--color-text-muted-light);

    & i {
      color: var(--color-accent);
      font-size: 0.9em;
    }
  }

  & .home-hero__visual {
    display: none;
    position: relative;
    z-index: 2;
    flex: 0 0 480px;
    padding: var(--space-xl) var(--space-lg) var(--space-xl) 0;

    @media (min-width: 1050px) {
      display: flex;
      align-items: center;
    }
  }

  & .home-hero__img-wrap {
    position: relative;
    width: 100%;

    & img {
      width: 100%;
      height: 480px;
      object-fit: cover;
      border-radius: var(--radius-xl);
      box-shadow: var(--shadow-card-dark), 0 0 60px rgba(124,92,252,0.2);
    }
  }

  & .home-hero__img-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.75em;
    background: rgba(22, 25, 41, 0.92);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(124,92,252,0.25);
    border-radius: var(--radius-md);
    padding: 0.85em 1.2em;
    box-shadow: var(--shadow-card-dark);

    & i {
      font-size: 1.4rem;
      color: var(--color-primary-light);
    }

    & strong {
      display: block;
      font-family: var(--font-heading);
      font-size: 0.9rem;
      color: var(--color-text-light);
      line-height: 1.2;
    }

    & span {
      font-size: 0.75rem;
      color: var(--color-text-muted-light);
    }

    &.home-hero__img-card--1 {
      bottom: 80px;
      left: -30px;
    }

    &.home-hero__img-card--2 {
      top: 60px;
      right: -20px;
    }
  }
}

/* ============================================
   HOME PROBLEM SECTION
   ============================================ */
.home-problem {
  background: var(--color-bg-light);
  padding: var(--space-3xl) 0;

  & .home-problem__inner {
    display: grid;
    gap: var(--space-xl);
    align-items: center;

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

  & .home-problem__text {
    & .section-label { margin-bottom: var(--space-sm); }

    & h2 {
      font-family: var(--font-heading);
      font-size: clamp(1.8rem, 3vw, 2.6rem);
      font-weight: 800;
      color: var(--color-text-dark);
      line-height: 1.2;
      margin-bottom: var(--space-md);
    }

    & p {
      font-size: 1rem;
      color: var(--color-text-muted-dark);
      line-height: 1.75;
      margin-bottom: var(--space-md);
    }
  }

  & .home-problem__image {
    position: relative;

    & img {
      width: 100%;
      height: 380px;
      object-fit: cover;
      border-radius: var(--radius-xl);
      box-shadow: var(--shadow-card-light);
      transition: box-shadow var(--transition-slow);

      &:hover {
        box-shadow: var(--shadow-card-light-hover);
      }
    }

    & .home-problem__image-glow {
      position: absolute;
      inset: -10px;
      border-radius: var(--radius-xl);
      background: linear-gradient(135deg, rgba(124,92,252,0.06), rgba(0,212,200,0.04));
      z-index: -1;
      filter: blur(20px);
    }
  }
}

/* ============================================
   HOME FEATURES (BENTO)
   ============================================ */
.home-features {
  background: var(--color-bg-dark);
  padding: var(--space-3xl) 0;

  & .home-features__header {
    text-align: center;
    margin-bottom: var(--space-xl);

    & h2 {
      font-family: var(--font-heading);
      font-size: clamp(1.8rem, 3vw, 2.6rem);
      font-weight: 800;
      color: var(--color-text-light);
      margin-bottom: var(--space-sm);

      & em {
        font-style: normal;
        background: linear-gradient(135deg, var(--color-primary-light), var(--color-accent));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
      }
    }

    & p {
      color: var(--color-text-muted-light);
      font-size: 1.05rem;
      max-width: 500px;
      margin: 0 auto;
    }
  }

  & .home-features__bento {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);

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

    @media (min-width: 1000px) {
      grid-template-columns: 2fr 1.4fr 1fr;
      grid-template-rows: auto auto;
    }
  }

  & .home-features__card {
    background: var(--color-surface-card);
    border: 1px solid var(--color-border-dark);
    border-radius: var(--radius-xl);
    padding: var(--space-lg);
    box-shadow: var(--shadow-card-dark);
    transition: box-shadow var(--transition-slow), transform var(--transition-slow), border-color var(--transition-slow);
    position: relative;
    overflow: hidden;

    &::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(124,92,252,0.5), transparent);
    }

    &:hover {
      box-shadow: var(--shadow-card-hover);
      transform: translateY(-4px);
      border-color: rgba(124,92,252,0.3);
    }

    & .home-features__card-icon {
      width: 52px;
      height: 52px;
      border-radius: var(--radius-md);
      background: rgba(124,92,252,0.15);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: var(--space-md);
      transition: background var(--transition-base);

      & i {
        font-size: 1.4rem;
        color: var(--color-primary-light);
      }
    }

    &:hover .home-features__card-icon {
      background: rgba(124,92,252,0.25);
    }

    & h3 {
      font-family: var(--font-heading);
      font-size: 1.15rem;
      font-weight: 700;
      color: var(--color-text-light);
      margin-bottom: var(--space-xs);
      line-height: 1.3;
    }

    & p {
      font-size: 0.9rem;
      color: var(--color-text-muted-light);
      line-height: 1.65;
    }

    & .home-features__card-tag {
      display: inline-block;
      margin-top: var(--space-md);
      font-size: 0.72rem;
      font-weight: 500;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--color-accent);
      background: rgba(0,212,200,0.1);
      border: 1px solid rgba(0,212,200,0.2);
      padding: 0.25em 0.75em;
      border-radius: var(--radius-pill);
    }

    &.home-features__card--wide {
      @media (min-width: 1000px) {
        grid-column: 1 / 2;
        grid-row: 1 / 2;
      }
    }

    &.home-features__card--tall {
      display: flex;
      flex-direction: column;

      @media (min-width: 1000px) {
        grid-column: 2 / 3;
        grid-row: 1 / 3;
      }

      & img {
        margin-top: auto;
        border-radius: var(--radius-md);
        height: 160px;
        object-fit: cover;
        opacity: 0.8;
      }
    }

    &.home-features__card--accent {
      background: linear-gradient(135deg, rgba(124,92,252,0.2) 0%, rgba(0,212,200,0.1) 100%);
      border-color: rgba(124,92,252,0.3);
    }

    &.home-features__card--image-card {
      padding: 0;
      overflow: hidden;
      position: relative;
      min-height: 200px;

      & img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        min-height: 200px;
      }

      & .home-features__card-overlay {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        padding: var(--space-md);
        background: linear-gradient(transparent, rgba(13,15,26,0.9));

        & span {
          font-family: var(--font-heading);
          font-size: 1rem;
          font-weight: 700;
          color: var(--color-text-light);
        }
      }
    }
  }
}

/* ============================================
   HOME HOW IT WORKS
   ============================================ */
.home-how {
  background: var(--color-bg-light-2);
  padding: var(--space-3xl) 0;

  & .home-how__header {
    margin-bottom: var(--space-xl);

    & h2 {
      font-family: var(--font-heading);
      font-size: clamp(1.8rem, 3vw, 2.4rem);
      font-weight: 800;
      color: var(--color-text-dark);
      margin-top: var(--space-xs);
    }
  }

  & .home-how__steps {
    display: grid;
    gap: var(--space-lg);

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

  & .home-how__step {
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
    background: #fff;
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    box-shadow: var(--shadow-card-light);
    border: 1px solid var(--color-border-light);
    transition: box-shadow var(--transition-slow), transform var(--transition-slow);

    &:hover {
      box-shadow: var(--shadow-card-light-hover);
      transform: translateY(-3px);
    }
  }

  & .home-how__step-num {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: rgba(124,92,252,0.15);
    line-height: 1;
    flex-shrink: 0;
    min-width: 3rem;
    transition: color var(--transition-base);
  }

  & .home-how__step:hover .home-how__step-num {
    color: rgba(124,92,252,0.3);
  }

  & .home-how__step-body {
    & h3 {
      font-family: var(--font-heading);
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--color-text-dark);
      margin-bottom: var(--space-xs);
      line-height: 1.3;
    }

    & p {
      font-size: 0.9rem;
      color: var(--color-text-muted-dark);
      line-height: 1.65;
    }
  }
}

/* ============================================
   HOME CAROUSEL
   ============================================ */
.home-carousel {
  background: var(--color-bg-dark-2);
  padding: var(--space-3xl) 0;

  & .home-carousel__header {
    margin-bottom: var(--space-xl);
    text-align: center;

    & h2 {
      font-family: var(--font-heading);
      font-size: clamp(1.8rem, 3vw, 2.4rem);
      font-weight: 800;
      color: var(--color-text-light);
      margin-top: var(--space-xs);
    }
  }

  & .home-carousel__swiper {
    padding-bottom: 60px !important;
  }

  & .home-carousel__slide {
    background: var(--color-surface-card);
    border: 1px solid var(--color-border-dark);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    box-shadow: var(--shadow-card-dark);
    height: auto;

    &::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(124,92,252,0.4), transparent);
    }
  }

  & .home-carousel__slide-num {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: rgba(124,92,252,0.2);
    line-height: 1;
    margin-bottom: var(--space-md);
  }

  & .home-carousel__slide h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-text-light);
    margin-bottom: var(--space-md);
  }

  & .home-carousel__slide p {
    color: var(--color-text-muted-light);
    line-height: 1.7;
    margin-bottom: var(--space-md);
  }

  & .home-carousel__slide ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);

    & li {
      display: flex;
      align-items: center;
      gap: 0.6em;
      font-size: 0.9rem;
      color: var(--color-text-muted-light);

      &::before {
        content: '';
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: var(--color-accent);
        flex-shrink: 0;
      }
    }
  }

  & .swiper-pagination-bullet {
    background: rgba(124,92,252,0.4);
    opacity: 1;
    transition: background var(--transition-base), transform var(--transition-base);
  }

  & .swiper-pagination-bullet-active {
    background: var(--color-primary);
    transform: scale(1.3);
  }

  & .swiper-button-prev,
  & .swiper-button-next {
    color: var(--color-primary-light);
    background: rgba(124,92,252,0.15);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(124,92,252,0.25);
    transition: background var(--transition-base), box-shadow var(--transition-base);

    &::after { font-size: 1rem; font-weight: 700; }

    &:hover {
      background: rgba(124,92,252,0.3);
      box-shadow: 0 0 20px rgba(124,92,252,0.3);
    }
  }
}

/* ============================================
   HOME AUDIENCE
   ============================================ */
.home-audience {
  background: var(--color-bg-light);
  padding: var(--space-3xl) 0;

  & .home-audience__grid {
    display: grid;
    gap: var(--space-xl);
    align-items: center;

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

  & .home-audience__image {
    position: relative;

    & img {
      width: 100%;
      height: 420px;
      object-fit: cover;
      border-radius: var(--radius-xl);
      box-shadow: var(--shadow-card-light);
    }

    & .home-audience__image-glow {
      position: absolute;
      inset: -15px;
      border-radius: var(--radius-xl);
      background: radial-gradient(ellipse at center, rgba(124,92,252,0.08), transparent 70%);
      z-index: -1;
      filter: blur(15px);
    }
  }

  & .home-audience__content {
    & h2 {
      font-family: var(--font-heading);
      font-size: clamp(1.8rem, 3vw, 2.4rem);
      font-weight: 800;
      color: var(--color-text-dark);
      line-height: 1.2;
      margin-bottom: var(--space-md);
    }

    & p {
      font-size: 1rem;
      color: var(--color-text-muted-dark);
      line-height: 1.75;
      margin-bottom: var(--space-md);
    }
  }

  & .home-audience__checks {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin-top: var(--space-md);
  }

  & .home-audience__check {
    display: flex;
    align-items: center;
    gap: 0.75em;
    font-size: 0.95rem;
    color: var(--color-text-dark);

    & i {
      color: var(--color-primary);
      font-size: 1.1em;
      flex-shrink: 0;
    }
  }
}

/* ============================================
   HOME DUAL CTA
   ============================================ */
.home-dual-cta {
  background: var(--color-bg-dark);
  padding: var(--space-3xl) 0;

  & .home-dual-cta__grid {
    display: grid;
    gap: var(--space-xl);
    align-items: stretch;
    position: relative;

    @media (min-width: 800px) {
      grid-template-columns: 1fr auto 1fr;
    }
  }

  & .home-dual-cta__primary,
  & .home-dual-cta__secondary {
    background: var(--color-surface-card);
    border: 1px solid var(--color-border-dark);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    box-shadow: var(--shadow-card-dark);
    transition: box-shadow var(--transition-slow), transform var(--transition-slow);
    display: flex;
    flex-direction: column;
    gap: var(--space-md);

    &:hover {
      box-shadow: var(--shadow-card-hover);
      transform: translateY(-4px);
    }
  }

  & .home-dual-cta__primary {
    border-color: rgba(124,92,252,0.35);

    &::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 2px;
      background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
      border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    }
  }

  & .home-dual-cta__icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    background: rgba(124,92,252,0.15);
    display: flex;
    align-items: center;
    justify-content: center;

    & i {
      font-size: 1.5rem;
      color: var(--color-primary-light);
    }
  }

  & h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-text-light);
  }

  & p {
    font-size: 0.95rem;
    color: var(--color-text-muted-light);
    line-height: 1.65;
    flex: 1;
  }

  & .home-dual-cta__divider {
    width: 1px;
    background: var(--color-border-dark);
    display: none;

    @media (min-width: 800px) {
      display: block;
    }
  }
}

/* ============================================
   HOME PREVIEW
   ============================================ */
.home-preview {
  background: var(--color-bg-light-2);
  padding: var(--space-3xl) 0;

  & .home-preview__inner {
    display: grid;
    gap: var(--space-xl);
    align-items: center;

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

  & .home-preview__content {
    & h2 {
      font-family: var(--font-heading);
      font-size: clamp(1.8rem, 3vw, 2.4rem);
      font-weight: 800;
      color: var(--color-text-dark);
      line-height: 1.2;
      margin-bottom: var(--space-md);
    }

    & p {
      font-size: 1rem;
      color: var(--color-text-muted-dark);
      line-height: 1.75;
      margin-bottom: var(--space-md);
    }
  }

  & .home-preview__image {
    position: relative;

    & img {
      width: 100%;
      height: 360px;
      object-fit: cover;
      border-radius: var(--radius-xl);
      box-shadow: var(--shadow-card-light);
      transition: box-shadow var(--transition-slow);

      &:hover { box-shadow: var(--shadow-card-light-hover); }
    }

    & .home-preview__image-glow {
      position: absolute;
      inset: -10px;
      border-radius: var(--radius-xl);
      background: radial-gradient(ellipse at center, rgba(124,92,252,0.06), transparent 70%);
      z-index: -1;
      filter: blur(20px);
    }
  }
}

/* ============================================
   HOME MINIMAL CTA
   ============================================ */
.home-minimal-cta {
  background: var(--color-bg-dark);
  padding: var(--space-3xl) 0;
  text-align: center;
  position: relative;
  overflow: hidden;

  & .home-minimal-cta__glow {
    position: absolute;
    width: 600px;
    height: 300px;
    background: radial-gradient(ellipse, rgba(124,92,252,0.2), transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(40px);
    pointer-events: none;
  }

  & .home-minimal-cta__inner {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;

    & h2 {
      font-family: var(--font-heading);
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 800;
      color: var(--color-text-light);
      margin-bottom: var(--space-md);
      line-height: 1.15;
    }

    & p {
      font-size: 1.1rem;
      color: var(--color-text-muted-light);
      margin-bottom: var(--space-lg);
    }
  }
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-hero {
  background: var(--color-bg-dark);
  padding: calc(var(--nav-height) + var(--space-3xl)) 0 var(--space-3xl);
  position: relative;
  overflow: hidden;

  & .about-hero__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;

    &.about-hero__glow--1 {
      width: 400px;
      height: 400px;
      background: rgba(124,92,252,0.15);
      top: -100px;
      right: 10%;
    }
    &.about-hero__glow--2 {
      width: 300px;
      height: 300px;
      background: rgba(0,212,200,0.08);
      bottom: -50px;
      left: 5%;
    }
  }

  & .about-hero__content {
    position: relative;
    z-index: 2;
    max-width: 700px;

    & h1 {
      font-family: var(--font-heading);
      font-size: clamp(2rem, 4vw, 3.2rem);
      font-weight: 800;
      color: var(--color-text-light);
      line-height: 1.15;
      margin-bottom: var(--space-md);
    }

    & p {
      font-size: 1.1rem;
      color: var(--color-text-muted-light);
      line-height: 1.7;
      max-width: 600px;
    }
  }
}

.about-story {
  background: var(--color-bg-light);
  padding: var(--space-3xl) 0;

  & .about-story__grid {
    display: grid;
    gap: var(--space-xl);
    align-items: center;

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

  & .about-story__image {
    position: relative;

    & img {
      width: 100%;
      height: 420px;
      object-fit: cover;
      border-radius: var(--radius-xl);
      box-shadow: var(--shadow-card-light);
    }

    & .about-story__image-glow {
      position: absolute;
      inset: -15px;
      border-radius: var(--radius-xl);
      background: radial-gradient(ellipse at center, rgba(124,92,252,0.07), transparent 70%);
      z-index: -1;
      filter: blur(20px);
    }
  }

  & .about-story__text {
    & h2 {
      font-family: var(--font-heading);
      font-size: clamp(1.8rem, 3vw, 2.4rem);
      font-weight: 800;
      color: var(--color-text-dark);
      line-height: 1.2;
      margin-bottom: var(--space-md);
    }

    & p {
      font-size: 1rem;
      color: var(--color-text-muted-dark);
      line-height: 1.75;
      margin-bottom: var(--space-md);
    }
  }
}

.about-values {
  background: var(--color-bg-dark-2);
  padding: var(--space-3xl) 0;

  & .about-values__header {
    text-align: center;
    margin-bottom: var(--space-xl);

    & h2 {
      font-family: var(--font-heading);
      font-size: clamp(1.8rem, 3vw, 2.4rem);
      font-weight: 800;
      color: var(--color-text-light);
    }
  }

  & .about-values__grid {
    display: grid;
    gap: var(--space-md);

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

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

  & .about-values__card {
    background: var(--color-surface-card);
    border: 1px solid var(--color-border-dark);
    border-radius: var(--radius-xl);
    padding: var(--space-lg);
    box-shadow: var(--shadow-card-dark);
    transition: box-shadow var(--transition-slow), transform var(--transition-slow);

    &:hover {
      box-shadow: var(--shadow-card-hover);
      transform: translateY(-4px);
    }
  }

  & .about-values__card-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    background: rgba(124,92,252,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-md);

    & i {
      font-size: 1.3rem;
      color: var(--color-primary-light);
    }
  }

  & h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-text-light);
    margin-bottom: var(--space-xs);
  }

  & p {
    font-size: 0.9rem;
    color: var(--color-text-muted-light);
    line-height: 1.65;
  }
}

.about-approach {
  background: var(--color-bg-light);
  padding: var(--space-3xl) 0;

  & .about-approach__inner {
    display: grid;
    gap: var(--space-xl);
    align-items: center;

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

  & .about-approach__content {
    & h2 {
      font-family: var(--font-heading);
      font-size: clamp(1.8rem, 3vw, 2.4rem);
      font-weight: 800;
      color: var(--color-text-dark);
      line-height: 1.2;
      margin-bottom: var(--space-md);
    }

    & p {
      font-size: 1rem;
      color: var(--color-text-muted-dark);
      line-height: 1.75;
      margin-bottom: var(--space-md);
    }
  }

  & .about-approach__image {
    position: relative;

    & img {
      width: 100%;
      height: 360px;
      object-fit: cover;
      border-radius: var(--radius-xl);
      box-shadow: var(--shadow-card-light);
    }

    & .about-approach__image-glow {
      position: absolute;
      inset: -10px;
      border-radius: var(--radius-xl);
      background: radial-gradient(ellipse at center, rgba(0,212,200,0.06), transparent 70%);
      z-index: -1;
      filter: blur(20px);
    }
  }
}

.about-cta {
  background: var(--color-bg-dark);
  padding: var(--space-3xl) 0;
  text-align: center;
  position: relative;
  overflow: hidden;

  & .about-cta__glow {
    position: absolute;
    width: 500px;
    height: 300px;
    background: radial-gradient(ellipse, rgba(124,92,252,0.18), transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(40px);
    pointer-events: none;
  }

  & .about-cta__inner {
    position: relative;
    z-index: 2;

    & h2 {
      font-family: var(--font-heading);
      font-size: clamp(2rem, 4vw, 2.8rem);
      font-weight: 800;
      color: var(--color-text-light);
      margin-bottom: var(--space-sm);
    }

    & p {
      color: var(--color-text-muted-light);
      font-size: 1.05rem;
      margin-bottom: var(--space-lg);
    }
  }

  & .about-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    justify-content: center;
  }
}

/* ============================================
   PROGRAMS PAGE
   ============================================ */
.programs-hero {
  background: var(--color-bg-dark);
  padding: calc(var(--nav-height) + var(--space-3xl)) 0 var(--space-3xl);
  position: relative;
  overflow: hidden;

  & .programs-hero__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;

    &.programs-hero__glow--1 {
      width: 450px;
      height: 450px;
      background: rgba(124,92,252,0.15);
      top: -100px;
      right: 5%;
    }
    &.programs-hero__glow--2 {
      width: 300px;
      height: 300px;
      background: rgba(0,212,200,0.08);
      bottom: 0;
      left: 10%;
    }
  }

  & .programs-hero__content {
    position: relative;
    z-index: 2;
    max-width: 700px;

    & h1 {
      font-family: var(--font-heading);
      font-size: clamp(2rem, 4vw, 3.2rem);
      font-weight: 800;
      color: var(--color-text-light);
      line-height: 1.15;
      margin-bottom: var(--space-md);
    }

    & p {
      font-size: 1.1rem;
      color: var(--color-text-muted-light);
      line-height: 1.7;
      max-width: 600px;
    }
  }
}

.programs-grid {
  background: var(--color-bg-light);
  padding: var(--space-3xl) 0;
}

.programs-card {
  background: #fff;
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  box-shadow: var(--shadow-card-light);
  margin-bottom: var(--space-xl);
  transition: box-shadow var(--transition-slow);

  &.programs-card--featured {
    border-color: rgba(124,92,252,0.2);
    box-shadow: var(--shadow-card-light), 0 0 40px rgba(124,92,252,0.06);
    position: relative;

    &::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
      border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    }
  }

  & .programs-card__badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-primary);
    background: rgba(124,92,252,0.1);
    border: 1px solid rgba(124,92,252,0.2);
    padding: 0.3em 0.9em;
    border-radius: var(--radius-pill);
    margin-bottom: var(--space-md);
  }

  & .programs-card__grid {
    display: grid;
    gap: var(--space-xl);
    align-items: start;

    @media (min-width: 900px) {
      grid-template-columns: 1.4fr 1fr;
    }
  }

  & .programs-card__content {
    & h2 {
      font-family: var(--font-heading);
      font-size: clamp(1.6rem, 3vw, 2.2rem);
      font-weight: 800;
      color: var(--color-text-dark);
      margin-bottom: var(--space-sm);
      line-height: 1.2;
    }
  }

  & .programs-card__tagline {
    font-size: 1rem;
    color: var(--color-text-muted-dark);
    line-height: 1.65;
    margin-bottom: var(--space-lg);
  }

  & .programs-card__details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
    padding: var(--space-md);
    background: var(--color-bg-light-2);
    border-radius: var(--radius-md);
  }

  & .programs-card__detail-item {
    display: flex;
    align-items: center;
    gap: 0.6em;
    font-size: 0.88rem;
    color: var(--color-text-muted-dark);

    & i {
      color: var(--color-primary);
      font-size: 0.95em;
    }
  }

  & .programs-card__modules {
    margin-bottom: var(--space-lg);

    & h4 {
      font-family: var(--font-heading);
      font-size: 0.9rem;
      font-weight: 700;
      color: var(--color-text-dark);
      text-transform: uppercase;
      letter-spacing: 0.08em;
      margin-bottom: var(--space-md);
    }
  }

  & .programs-card__module-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
  }

  & .programs-card__module-item {
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;

    & strong {
      display: block;
      font-family: var(--font-heading);
      font-size: 0.95rem;
      font-weight: 700;
      color: var(--color-text-dark);
      margin-bottom: 0.2em;
    }

    & p {
      font-size: 0.85rem;
      color: var(--color-text-muted-dark);
      line-height: 1.5;
    }
  }

  & .programs-card__module-num {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--color-primary);
    background: rgba(124,92,252,0.1);
    border-radius: var(--radius-sm);
    padding: 0.2em 0.5em;
    flex-shrink: 0;
    min-width: 32px;
    text-align: center;
  }

  & .programs-card__image {
    position: relative;

    & img {
      width: 100%;
      height: 360px;
      object-fit: cover;
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-card-light);
    }

    & .programs-card__image-glow {
      position: absolute;
      inset: -10px;
      border-radius: var(--radius-lg);
      background: radial-gradient(ellipse at center, rgba(124,92,252,0.07), transparent 70%);
      z-index: -1;
      filter: blur(20px);
    }
  }
}

.programs-secondary-grid {
  display: grid;
  gap: var(--space-md);

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

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

.programs-mini-card {
  background: #fff;
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  box-shadow: var(--shadow-card-light);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  transition: box-shadow var(--transition-slow), transform var(--transition-slow);

  &:hover {
    box-shadow: var(--shadow-card-light-hover);
    transform: translateY(-4px);
  }

  & .programs-mini-card__icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    background: rgba(124,92,252,0.1);
    display: flex;
    align-items: center;
    justify-content: center;

    & i {
      font-size: 1.4rem;
      color: var(--color-primary);
    }
  }

  & h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-text-dark);
    line-height: 1.3;
  }

  & p {
    font-size: 0.9rem;
    color: var(--color-text-muted-dark);
    line-height: 1.65;
    flex: 1;
  }

  & .programs-mini-card__list {
    display: flex;
    flex-direction: column;
    gap: 0.4em;

    & li {
      display: flex;
      align-items: center;
      gap: 0.5em;
      font-size: 0.85rem;
      color: var(--color-text-muted-dark);

      &::before {
        content: '';
        width: 5px;
        height: 5px;
        border-radius: 50%;
        background: var(--color-primary);
        flex-shrink: 0;
      }
    }
  }
}

.programs-comparison {
  background: var(--color-bg-dark-2);
  padding: var(--space-3xl) 0;

  & .programs-comparison__header {
    text-align: center;
    margin-bottom: var(--space-xl);

    & h2 {
      font-family: var(--font-heading);
      font-size: clamp(1.8rem, 3vw, 2.4rem);
      font-weight: 800;
      color: var(--color-text-light);
    }
  }

  & .programs-comparison__table-wrap {
    overflow-x: auto;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-card-dark);
  }

  & .programs-comparison__table {
    width: 100%;
    border-collapse: collapse;
    background: var(--color-surface-card);
    border-radius: var(--radius-xl);
    overflow: hidden;

    & th, & td {
      padding: 1em 1.5em;
      text-align: left;
      border-bottom: 1px solid var(--color-border-dark);
    }

    & th {
      font-family: var(--font-heading);
      font-weight: 700;
      font-size: 0.9rem;
      color: var(--color-text-light);
      background: rgba(124,92,252,0.1);
    }

    & td {
      font-size: 0.9rem;
      color: var(--color-text-muted-light);

      &:first-child { color: var(--color-text-light); }

      & i { color: var(--color-accent); }
    }

    & tr:last-child td { border-bottom: none; }

    & tr:hover td { background: rgba(124,92,252,0.05); }
  }
}

.programs-faq {
  background: var(--color-bg-light);
  padding: var(--space-3xl) 0;

  & .programs-faq__header {
    margin-bottom: var(--space-xl);

    & h2 {
      font-family: var(--font-heading);
      font-size: clamp(1.8rem, 3vw, 2.4rem);
      font-weight: 800;
      color: var(--color-text-dark);
    }
  }

  & .programs-faq__grid {
    display: grid;
    gap: var(--space-md);

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

  & .programs-faq__item {
    background: #fff;
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    box-shadow: var(--shadow-card-light);
    transition: box-shadow var(--transition-slow);

    &:hover { box-shadow: var(--shadow-card-light-hover); }

    & h4 {
      font-family: var(--font-heading);
      font-size: 1rem;
      font-weight: 700;
      color: var(--color-text-dark);
      margin-bottom: var(--space-sm);
      line-height: 1.35;
    }

    & p {
      font-size: 0.9rem;
      color: var(--color-text-muted-dark);
      line-height: 1.65;
    }
  }
}

.programs-cta {
  background: var(--color-bg-dark);
  padding: var(--space-3xl) 0;
  text-align: center;
  position: relative;
  overflow: hidden;

  & .programs-cta__glow {
    position: absolute;
    width: 500px;
    height: 300px;
    background: radial-gradient(ellipse, rgba(124,92,252,0.18), transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(40px);
    pointer-events: none;
  }

  & .programs-cta__inner {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;

    & h2 {
      font-family: var(--font-heading);
      font-size: clamp(1.8rem, 3vw, 2.4rem);
      font-weight: 800;
      color: var(--color-text-light);
      margin-bottom: var(--space-sm);
    }

    & p {
      color: var(--color-text-muted-light);
      margin-bottom: var(--space-lg);
    }
  }
}

/* ============================================
   FRAMEWORK PAGE
   ============================================ */
.framework-hero {
  background: var(--color-bg-dark);
  padding: calc(var(--nav-height) + var(--space-3xl)) 0 var(--space-3xl);
  position: relative;
  overflow: hidden;

  & .framework-hero__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;

    &.framework-hero__glow--1 {
      width: 450px;
      height: 450px;
      background: rgba(0,212,200,0.12);
      top: -100px;
      right: 5%;
    }
    &.framework-hero__glow--2 {
      width: 300px;
      height: 300px;
      background: rgba(124,92,252,0.12);
      bottom: 0;
      left: 10%;
    }
  }

  & .framework-hero__content {
    position: relative;
    z-index: 2;
    max-width: 700px;

    & h1 {
      font-family: var(--font-heading);
      font-size: clamp(2rem, 4vw, 3.2rem);
      font-weight: 800;
      color: var(--color-text-light);
      line-height: 1.15;
      margin-bottom: var(--space-md);
    }

    & p {
      font-size: 1.1rem;
      color: var(--color-text-muted-light);
      line-height: 1.7;
      max-width: 600px;
    }
  }
}

.framework-overview {
  background: var(--color-bg-light);
  padding: var(--space-3xl) 0;

  & .framework-overview__intro {
    max-width: 700px;
    margin-bottom: var(--space-xl);

    & h2 {
      font-family: var(--font-heading);
      font-size: clamp(1.8rem, 3vw, 2.4rem);
      font-weight: 800;
      color: var(--color-text-dark);
      margin-bottom: var(--space-md);
    }

    & p {
      font-size: 1rem;
      color: var(--color-text-muted-dark);
      line-height: 1.75;
    }
  }

  & .framework-overview__grid {
    display: grid;
    gap: var(--space-md);

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

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

  & .framework-overview__card {
    background: #fff;
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-xl);
    padding: var(--space-lg);
    box-shadow: var(--shadow-card-light);
    transition: box-shadow var(--transition-slow), transform var(--transition-slow);
    position: relative;

    &:hover {
      box-shadow: var(--shadow-card-light-hover);
      transform: translateY(-3px);
    }

    &.framework-overview__card--wide {
      @media (min-width: 1000px) {
        grid-column: span 2;
      }
    }
  }

  & .framework-overview__card-num {
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--color-primary);
    background: rgba(124,92,252,0.1);
    border-radius: var(--radius-pill);
    padding: 0.25em 0.8em;
    display: inline-block;
    margin-bottom: var(--space-md);
  }

  & h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: var(--space-sm);
    line-height: 1.3;
  }

  & p {
    font-size: 0.9rem;
    color: var(--color-text-muted-dark);
    line-height: 1.65;
    margin-bottom: var(--space-md);
  }

  & .framework-overview__card-note {
    display: flex;
    align-items: flex-start;
    gap: 0.5em;
    background: rgba(124,92,252,0.05);
    border-left: 3px solid var(--color-primary);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    padding: 0.7em 1em;
    margin-top: auto;

    & i {
      color: var(--color-primary);
      font-size: 0.9em;
      flex-shrink: 0;
      margin-top: 0.1em;
    }

    & span {
      font-size: 0.83rem;
      color: var(--color-text-muted-dark);
      font-style: italic;
      line-height: 1.5;
    }
  }
}

.framework-visual {
  background: var(--color-bg-dark-2);
  padding: var(--space-3xl) 0;

  & .framework-visual__inner {
    display: grid;
    gap: var(--space-xl);
    align-items: center;

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

  & .framework-visual__content {
    & h2 {
      font-family: var(--font-heading);
      font-size: clamp(1.8rem, 3vw, 2.4rem);
      font-weight: 800;
      color: var(--color-text-light);
      line-height: 1.2;
      margin-bottom: var(--space-md);
    }

    & p {
      font-size: 1rem;
      color: var(--color-text-muted-light);
      line-height: 1.75;
      margin-bottom: var(--space-md);
    }
  }

  & .framework-visual__image {
    position: relative;

    & img {
      width: 100%;
      height: 380px;
      object-fit: cover;
      border-radius: var(--radius-xl);
      box-shadow: var(--shadow-card-dark);
    }

    & .framework-visual__image-glow {
      position: absolute;
      inset: -15px;
      border-radius: var(--radius-xl);
      background: radial-gradient(ellipse at center, rgba(0,212,200,0.1), transparent 70%);
      z-index: -1;
      filter: blur(20px);
    }
  }
}

.framework-scope {
  background: var(--color-bg-light);
  padding: var(--space-3xl) 0;

  & .framework-scope__header {
    max-width: 700px;
    margin-bottom: var(--space-xl);

    & h2 {
      font-family: var(--font-heading);
      font-size: clamp(1.8rem, 3vw, 2.4rem);
      font-weight: 800;
      color: var(--color-text-dark);
      margin-bottom: var(--space-md);
    }

    & p {
      font-size: 1rem;
      color: var(--color-text-muted-dark);
      line-height: 1.75;
    }
  }

  & .framework-scope__grid {
    display: grid;
    gap: var(--space-md);

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

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

  & .framework-scope__item {
    background: #fff;
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    box-shadow: var(--shadow-card-light);
    transition: box-shadow var(--transition-slow), transform var(--transition-slow);

    &:hover {
      box-shadow: var(--shadow-card-light-hover);
      transform: translateY(-3px);
    }
  }

  & .framework-scope__item-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    background: rgba(124,92,252,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-md);

    & i {
      font-size: 1.3rem;
      color: var(--color-primary);
    }
  }

  & h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-bottom: var(--space-xs);
  }

  & p {
    font-size: 0.88rem;
    color: var(--color-text-muted-dark);
    line-height: 1.65;
  }
}

.framework-cta {
  background: var(--color-bg-dark);
  padding: var(--space-3xl) 0;
  text-align: center;
  position: relative;
  overflow: hidden;

  & .framework-cta__glow {
    position: absolute;
    width: 500px;
    height: 300px;
    background: radial-gradient(ellipse, rgba(0,212,200,0.15), transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(40px);
    pointer-events: none;
  }

  & .framework-cta__inner {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;

    & h2 {
      font-family: var(--font-heading);
      font-size: clamp(1.8rem, 3vw, 2.4rem);
      font-weight: 800;
      color: var(--color-text-light);
      margin-bottom: var(--space-sm);
    }

    & p {
      color: var(--color-text-muted-light);
      margin-bottom: var(--space-lg);
    }
  }

  & .framework-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    justify-content: center;
  }
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-hero {
  background: var(--color-bg-dark);
  padding: calc(var(--nav-height) + var(--space-3xl)) 0 var(--space-3xl);
  position: relative;
  overflow: hidden;

  & .contact-hero__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;

    &.contact-hero__glow--1 {
      width: 400px;
      height: 400px;
      background: rgba(240,106,255,0.1);
      top: -80px;
      right: 10%;
    }
    &.contact-hero__glow--2 {
      width: 300px;
      height: 300px;
      background: rgba(124,92,252,0.1);
      bottom: 0;
      left: 5%;
    }
  }

  & .contact-hero__content {
    position: relative;
    z-index: 2;
    max-width: 700px;

    & h1 {
      font-family: var(--font-heading);
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 800;
      color: var(--color-text-light);
      line-height: 1.2;
      margin-bottom: var(--space-md);
    }

    & p {
      font-size: 1.1rem;
      color: var(--color-text-muted-light);
      line-height: 1.7;
      max-width: 580px;
    }
  }
}

.contact-form-section {
  background: var(--color-bg-light);
  padding: var(--space-3xl) 0;

  & .contact-form-section__grid {
    display: grid;
    gap: var(--space-xl);
    align-items: start;

    @media (min-width: 900px) {
      grid-template-columns: 1.3fr 1fr;
    }
  }

  & .contact-form-section__form-wrap {
    background: #fff;
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    box-shadow: var(--shadow-card-light);

    & h2 {
      font-family: var(--font-heading);
      font-size: 1.6rem;
      font-weight: 800;
      color: var(--color-text-dark);
      margin-bottom: var(--space-lg);
    }
  }

  & .contact-form-section__form {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
  }

  & .contact-form-section__field {
    display: flex;
    flex-direction: column;
    gap: 0.4em;

    & label {
      font-size: 0.88rem;
      font-weight: 500;
      color: var(--color-text-dark);
    }

    & input,
    & textarea {
      width: 100%;
      padding: 0.75em 1em;
      border: 1.5px solid var(--color-border-light);
      border-radius: var(--radius-md);
      font-family: var(--font-body);
      font-size: 0.95rem;
      color: var(--color-text-dark);
      background: var(--color-bg-light);
      transition: border-color var(--transition-base), box-shadow var(--transition-base);
      min-height: 44px;

      &:focus {
        outline: none;
        border-color: var(--color-primary);
        box-shadow: 0 0 0 3px rgba(124,92,252,0.12);
      }

      &::placeholder { color: var(--color-text-muted-dark); opacity: 0.6; }
    }

    & textarea {
      resize: vertical;
      min-height: 120px;
    }
  }

  & .contact-form-section__privacy {
    & .contact-form-section__checkbox-label {
      display: flex;
      align-items: flex-start;
      gap: 0.75em;
      cursor: pointer;
      font-size: 0.88rem;
      color: var(--color-text-muted-dark);
      line-height: 1.5;

      & input[type="checkbox"] {
        position: absolute;
        opacity: 0;
        width: 0;
        height: 0;
      }

      & a {
        color: var(--color-primary);
        text-decoration: underline;
        &:hover { color: var(--color-primary-dark); }
      }
    }

    & .contact-form-section__checkbox-custom {
      width: 20px;
      height: 20px;
      min-width: 20px;
      border: 2px solid var(--color-border-light);
      border-radius: 4px;
      background: var(--color-bg-light);
      transition: all var(--transition-base);
      position: relative;
      margin-top: 1px;
    }

    & input[type="checkbox"]:checked + .contact-form-section__checkbox-custom {
      background: var(--color-primary);
      border-color: var(--color-primary);

      &::after {
        content: '';
        position: absolute;
        left: 5px;
        top: 2px;
        width: 6px;
        height: 10px;
        border: 2px solid #fff;
        border-top: none;
        border-left: none;
        transform: rotate(45deg);
      }
    }
  }

  & .contact-form-section__note {
    font-size: 0.8rem;
    color: var(--color-text-muted-dark);
    text-align: center;
    margin-top: var(--space-xs);
  }

  & .contact-form-section__info {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
  }

  & .contact-form-section__info-card,
  & .contact-form-section__hours-card {
    background: #fff;
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-xl);
    padding: var(--space-lg);
    box-shadow: var(--shadow-card-light);

    & h3 {
      font-family: var(--font-heading);
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--color-text-dark);
      margin-bottom: var(--space-md);
    }

    & p {
      font-size: 0.88rem;
      color: var(--color-text-muted-dark);
      line-height: 1.65;
      margin-bottom: var(--space-md);
    }
  }

  & .contact-form-section__info-item {
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
    margin-bottom: var(--space-md);

    &:last-child { margin-bottom: 0; }

    & i {
      color: var(--color-primary);
      font-size: 1.1rem;
      margin-top: 0.1em;
      flex-shrink: 0;
    }

    & strong {
      display: block;
      font-size: 0.78rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--color-text-muted-dark);
      margin-bottom: 0.2em;
    }

    & span, & a {
      font-size: 0.92rem;
      color: var(--color-text-dark);
    }

    & a:hover { color: var(--color-primary); }
  }

  & .contact-form-section__hours-table {
    width: 100%;
    border-collapse: collapse;

    & td {
      padding: 0.6em 0;
      font-size: 0.88rem;
      border-bottom: 1px solid var(--color-border-light);

      &:first-child { color: var(--color-text-dark); font-weight: 500; }
      &:last-child { color: var(--color-text-muted-dark); text-align: right; }
    }

    & tr:last-child td { border-bottom: none; }
  }

  & .contact-form-section__hours-note {
    font-size: 0.78rem;
    color: var(--color-text-muted-dark);
    font-style: italic;
    margin-top: var(--space-sm);
    margin-bottom: 0 !important;
  }
}

.contact-map-section {
  background: var(--color-bg-light-2);
  padding: var(--space-3xl) 0;

  & .contact-map-section__wrap {
    & h2 {
      font-family: var(--font-heading);
      font-size: 1.6rem;
      font-weight: 800;
      color: var(--color-text-dark);
      margin-bottom: 0.25em;
    }

    & p {
      font-size: 0.95rem;
      color: var(--color-text-muted-dark);
      margin-bottom: var(--space-md);
    }
  }

  & .contact-map-section__map {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-card-light);
    border: 1px solid var(--color-border-light);

    & iframe {
      display: block;
      width: 100%;
    }
  }
}

/* ============================================
   THANKS PAGE
   ============================================ */
.thanks-main {
  min-height: calc(100vh - var(--nav-height));
  display: flex;
  flex-direction: column;
}

.thanks-section {
  flex: 1;
  background: var(--color-bg-dark);
  display: flex;
  align-items: center;
  padding: calc(var(--nav-height) + var(--space-3xl)) 0 var(--space-3xl);
  position: relative;
  overflow: hidden;

  & .thanks-section__glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;

    &.thanks-section__glow--1 {
      width: 400px;
      height: 400px;
      background: rgba(124,92,252,0.15);
      top: 0;
      right: 10%;
    }
    &.thanks-section__glow--2 {
      width: 300px;
      height: 300px;
      background: rgba(0,212,200,0.1);
      bottom: 0;
      left: 5%;
    }
  }

  & .thanks-section__content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
  }

  & .thanks-section__heading {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    color: var(--color-text-light);
    margin-bottom: var(--space-md);
    animation: fadeInUp 0.6s 1.2s both;
  }

  & .thanks-section__subtext {
    font-size: 1.05rem;
    color: var(--color-text-muted-light);
    line-height: 1.7;
    margin-bottom: var(--space-lg);
    animation: fadeInUp 0.6s 1.4s both;
  }

  & .thanks-section__actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    justify-content: center;
    animation: fadeInUp 0.6s 1.6s both;
  }
}


.thanks-section__envelope {
  margin-bottom: var(--space-xl);
  display: flex;
  justify-content: center;
}

.thanks-envelope {
  width: 100px;
  height: 70px;
  position: relative;
}

.thanks-envelope__body {
  width: 100px;
  height: 70px;
  background: linear-gradient(135deg, var(--color-surface-card), rgba(124,92,252,0.2));
  border: 1.5px solid rgba(124,92,252,0.4);
  border-radius: 6px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 30px rgba(124,92,252,0.3);
  animation: envelopeAppear 0.5s 0.2s both;
}

.thanks-envelope__flap {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 40px;
  background: linear-gradient(135deg, rgba(124,92,252,0.3), rgba(0,212,200,0.2));
  clip-path: polygon(0 0, 100% 0, 50% 55%);
  transform-origin: top center;
  animation: openFlap 0.5s 0.6s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.thanks-envelope__letter {
  position: absolute;
  bottom: 5px;
  left: 12px;
  right: 12px;
  height: 55px;
  background: rgba(240,238,255,0.95);
  border-radius: 3px;
  animation: letterSlide 0.5s 0.9s cubic-bezier(0.4, 0, 0.2, 1) both;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
}

.thanks-envelope__letter-lines {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 100%;

  & span {
    display: block;
    height: 3px;
    background: rgba(124,92,252,0.4);
    border-radius: 2px;

    &:nth-child(1) { width: 80%; }
    &:nth-child(2) { width: 100%; }
    &:nth-child(3) { width: 60%; }
  }
}

@keyframes envelopeAppear {
  from { opacity: 0; transform: scale(0.6) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

@keyframes openFlap {
  from { transform: rotateX(0deg); }
  to { transform: rotateX(-150deg); }
}

@keyframes letterSlide {
  from { transform: translateY(30px); opacity: 0; }
  to { transform: translateY(-30px); opacity: 1; }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   LEGAL PAGES
   ============================================ */
.legal-page {
  background: var(--color-bg-light);
  padding: calc(var(--nav-height) + var(--space-xl)) 0 var(--space-3xl);

  & .legal-page__content {
    max-width: 860px;
    margin: 0 auto;
    background: #fff;
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    box-shadow: var(--shadow-card-light);
    border: 1px solid var(--color-border-light);
  }

  & .legal-page__header {
    border-bottom: 2px solid var(--color-bg-light-2);
    padding-bottom: var(--space-lg);
    margin-bottom: var(--space-xl);

    & h1 {
      font-family: var(--font-heading);
      font-size: clamp(1.8rem, 3vw, 2.4rem);
      font-weight: 800;
      color: var(--color-text-dark);
      margin-bottom: var(--space-xs);
    }
  }

  & .legal-page__meta {
    font-size: 0.85rem;
    color: var(--color-text-muted-dark);

    & a {
      color: var(--color-primary);
      &:hover { text-decoration: underline; }
    }
  }

  & h2 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-top: var(--space-xl);
    margin-bottom: var(--space-md);
    padding-bottom: 0.4em;
    border-bottom: 1px solid var(--color-bg-light-2);
  }

  & h3 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-top: var(--space-lg);
    margin-bottom: var(--space-sm);
  }

  & h4 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-text-dark);
    margin-top: var(--space-md);
    margin-bottom: var(--space-xs);
  }

  & p {
    font-size: 0.93rem;
    color: var(--color-text-muted-dark);
    line-height: 1.75;
    margin-bottom: var(--space-md);

    & a {
      color: var(--color-primary);
      &:hover { text-decoration: underline; }
    }
  }

  & ul, & ol {
    margin-bottom: var(--space-md);
    padding-left: 1.5em;

    & li {
      font-size: 0.93rem;
      color: var(--color-text-muted-dark);
      line-height: 1.7;
      margin-bottom: 0.4em;
      list-style: disc;
    }
  }

  & ol li { list-style: decimal; }

  & .legal-page__table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: var(--space-lg);
    font-size: 0.88rem;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(26,23,48,0.06);

    & th {
      background: var(--color-bg-light-2);
      padding: 0.8em 1em;
      text-align: left;
      font-family: var(--font-heading);
      font-weight: 700;
      font-size: 0.83rem;
      color: var(--color-text-dark);
      border-bottom: 2px solid var(--color-border-light);
    }

    & td {
      padding: 0.75em 1em;
      color: var(--color-text-muted-dark);
      border-bottom: 1px solid var(--color-border-light);
      vertical-align: top;
      line-height: 1.5;
    }

    & tr:last-child td { border-bottom: none; }
    & tr:hover td { background: rgba(124,92,252,0.02); }
  }

  & .legal-page__definitions {
    margin-bottom: var(--space-lg);

    & dt {
      font-family: var(--font-heading);
      font-weight: 700;
      color: var(--color-text-dark);
      font-size: 0.95rem;
      margin-top: var(--space-md);
    }

    & dd {
      font-size: 0.9rem;
      color: var(--color-text-muted-dark);
      line-height: 1.7;
      padding-left: 1.2em;
      border-left: 2px solid rgba(124,92,252,0.2);
      margin-left: 0;
      margin-top: 0.3em;
    }
  }

  & .legal-page__address {
    background: var(--color-bg-light-2);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    font-size: 0.92rem;
    color: var(--color-text-muted-dark);
    line-height: 1.8;
    border: 1px solid var(--color-border-light);

    & a {
      color: var(--color-primary);
      &:hover { text-decoration: underline; }
    }
  }
}

/* ============================================
   GLOBAL FOOTER
   ============================================ */
.global-footer {
  background: var(--color-bg-dark);
  border-top: 1px solid var(--color-border-dark);

  & .global-footer__main {
    display: grid;
    gap: var(--space-xl);
    padding: var(--space-3xl) var(--space-lg);
    max-width: 1400px;
    margin: 0 auto;

    @media (min-width: 900px) {
      grid-template-columns: 1.3fr 1fr;
    }
  }

  & .global-footer__cta {
    & .global-footer__cta-content {
      max-width: 480px;

      & h2 {
        font-family: var(--font-heading);
        font-size: clamp(1.6rem, 2.5vw, 2.2rem);
        font-weight: 800;
        color: var(--color-text-light);
        margin-bottom: var(--space-sm);
        line-height: 1.2;
      }

      & p {
        font-size: 0.95rem;
        color: var(--color-text-muted-light);
        line-height: 1.65;
        margin-bottom: var(--space-lg);
      }
    }
  }

  & .global-footer__email-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin-bottom: var(--space-sm);

    @media (min-width: 480px) {
      flex-direction: row;
    }

    & input {
      flex: 1;
      padding: 0.75em 1em;
      border: 1.5px solid var(--color-border-dark);
      border-radius: var(--radius-pill);
      background: rgba(255,255,255,0.06);
      color: var(--color-text-light);
      font-family: var(--font-body);
      font-size: 0.9rem;
      transition: border-color var(--transition-base), background var(--transition-base);
      min-height: 44px;

      &::placeholder { color: var(--color-text-muted-light); opacity: 0.6; }

      &:focus {
        outline: none;
        border-color: var(--color-primary);
        background: rgba(124,92,252,0.08);
      }
    }
  }

  & .global-footer__disclaimer {
    font-size: 0.75rem;
    color: var(--color-text-muted-light);
    opacity: 0.7;

    & a {
      color: var(--color-primary-light);
      &:hover { text-decoration: underline; }
    }
  }

  & .global-footer__links {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);

    @media (min-width: 600px) {
      flex-direction: row;
      justify-content: space-between;
    }
  }

  & .global-footer__brand {
    max-width: 260px;

    & img { margin-bottom: var(--space-sm); }

    & p {
      font-size: 0.88rem;
      color: var(--color-text-muted-light);
      line-height: 1.65;
      margin-bottom: var(--space-md);
    }

    & address {
      font-size: 0.82rem;
      color: var(--color-text-muted-light);
      line-height: 1.8;

      & a {
        color: var(--color-text-muted-light);
        transition: color var(--transition-base);
        &:hover { color: var(--color-primary-light); }
      }
    }
  }

  & .global-footer__nav {
    display: flex;
    gap: var(--space-xl);
  }

  & .global-footer__nav-col {
    display: flex;
    flex-direction: column;
    gap: 0.6em;
    min-width: 120px;

    & strong {
      font-family: var(--font-heading);
      font-size: 0.8rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--color-text-muted-light);
      margin-bottom: 0.4em;
    }

    & a {
      font-size: 0.88rem;
      color: var(--color-text-muted-light);
      transition: color var(--transition-base), padding-left var(--transition-base);

      &:hover {
        color: var(--color-primary-light);
        padding-left: 0.3em;
      }
    }
  }

  & .global-footer__bottom {
    border-top: 1px solid var(--color-border-dark);
    padding: var(--space-md) var(--space-lg);
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.3em;
    align-items: center;
    text-align: center;

    @media (min-width: 600px) {
      flex-direction: row;
      justify-content: space-between;
      text-align: left;
    }

    & p {
      font-size: 0.78rem;
      color: var(--color-text-muted-light);
      opacity: 0.6;

      & a {
        color: var(--color-text-muted-light);
        &:hover { color: var(--color-primary-light); }
      }
    }
  }
}

/* ============================================
   COOKIE CONSENT
   ============================================ */
.cookie-consent {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  width: 320px;
  background: var(--color-surface-card);
  border: 1px solid var(--color-border-dark);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card-dark), 0 0 40px rgba(124,92,252,0.2);
  padding: var(--space-lg);
  transform: translateY(120%);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;

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

  &::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  }
}

.cookie-consent__icon {
  font-size: 2rem;
  margin-bottom: var(--space-sm);
  display: block;
}

.cookie-consent__title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text-light);
  margin-bottom: 0.4em;
}

.cookie-consent__text {
  font-size: 0.82rem;
  color: var(--color-text-muted-light);
  line-height: 1.6;
  margin-bottom: var(--space-md);

  & a {
    color: var(--color-primary-light);
    text-decoration: underline;
    &:hover { color: var(--color-accent); }
  }
}

.cookie-consent__toggles {
  display: none;
  flex-direction: column;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
  padding: var(--space-sm);
  background: rgba(255,255,255,0.04);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border-dark);

  &.is-open { display: flex; }
}

.cookie-consent__toggle-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-sm);
}

.cookie-consent__toggle-label {
  font-size: 0.82rem;
  color: var(--color-text-muted-light);
  line-height: 1.4;

  & strong {
    display: block;
    color: var(--color-text-light);
    font-size: 0.85rem;
    margin-bottom: 0.1em;
  }
}

.cookie-consent__switch {
  position: relative;
  width: 40px;
  height: 22px;
  flex-shrink: 0;

  & input {
    opacity: 0;
    width: 0;
    height: 0;
    position: absolute;
  }

  & .cookie-consent__slider {
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.12);
    border-radius: var(--radius-pill);
    cursor: pointer;
    transition: background var(--transition-base);

    &::before {
      content: '';
      position: absolute;
      width: 16px;
      height: 16px;
      left: 3px;
      top: 3px;
      background: #fff;
      border-radius: 50%;
      transition: transform var(--transition-base);
    }
  }

  & input:checked + .cookie-consent__slider {
    background: var(--color-primary);

    &::before { transform: translateX(18px); }
  }

  & input:disabled + .cookie-consent__slider {
    opacity: 0.6;
    cursor: not-allowed;
  }
}

.cookie-consent__buttons {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}

.cookie-consent__btn {
  width: 100%;
  padding: 0.65em 1em;
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.88rem;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition-base);
  min-height: 44px;
  border: none;

  &.cookie-consent__btn--accept {
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    color: #fff;
    box-shadow: var(--shadow-btn);

    &:hover {
      box-shadow: var(--shadow-btn-hover);
      transform: translateY(-1px);
    }
  }

  &.cookie-consent__btn--customize {
    background: rgba(255,255,255,0.06);
    color: var(--color-text-muted-light);
    border: 1px solid var(--color-border-dark);

    &:hover {
      background: rgba(255,255,255,0.1);
      color: var(--color-text-light);
    }
  }

  &.cookie-consent__btn--reject {
    background: transparent;
    color: var(--color-text-muted-light);
    font-size: 0.78rem;
    font-weight: 500;
    padding: 0.4em;
    min-height: 36px;

    &:hover { color: var(--color-text-light); }
  }
}

/* ============================================
   UTILITY / SHARED
   ============================================ */
.page-home,
.page-about,
.page-programs,
.page-framework,
.page-contact,
.page-thanks,
.page-legal {
  display: flex;
  flex-direction: column;
  min-height: 100vh;

  & main { flex: 1; }
}


::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--color-bg-dark); }
::-webkit-scrollbar-thumb {
  background: rgba(124,92,252,0.4);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover { background: rgba(124,92,252,0.65); }


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


::selection {
  background: rgba(124,92,252,0.3);
  color: var(--color-text-dark);
}

/* ============================================
   RESPONSIVE ADJUSTMENTS
   ============================================ */
@media (max-width: 639px) {
  .home-hero__content {
    padding: var(--space-xl) var(--space-md) !important;
  }

  .home-hero__actions {
    flex-direction: column;
    & .global-btn { width: 100%; justify-content: center; }
  }

  .home-dual-cta__grid {
    grid-template-columns: 1fr !important;
  }

  .home-how__steps {
    grid-template-columns: 1fr !important;
  }

  .legal-page__content {
    padding: var(--space-lg) var(--space-md) !important;
  }

  .global-footer__nav {
    flex-direction: column;
    gap: var(--space-lg);
  }

  .contact-form-section__privacy .contact-form-section__checkbox-label {
    align-items: flex-start;
  }
}

@media (max-width: 899px) {
  .global-nav {
    padding: 0 var(--space-md) !important;
  }

  .home-hero {
    flex-direction: column;
    align-items: flex-start;
  }

  .programs-card__grid {
    grid-template-columns: 1fr !important;
  }

  .programs-card__image img {
    height: 240px !important;
  }
}