@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&display=swap');
@import url('https://api.fontshare.com/v2/css?f[]=clash-display@400,500,600,700&f[]=satoshi@400,500,600,700&display=swap');

:root {
  --c-bg: #0f0e1a;
  --c-bg-2: #161428;
  --c-bg-3: #1e1b35;
  --c-surface: #231f3d;
  --c-surface-2: #2d2952;
  --c-primary: #6c5ce7;
  --c-primary-light: #8b7cf8;
  --c-primary-dark: #4e3ec8;
  --c-accent: #f0a500;
  --c-accent-light: #f7c34a;
  --c-accent-dark: #c47f00;
  --c-teal: #00cec9;
  --c-teal-light: #55efc4;
  --c-coral: #fd79a8;
  --c-text: #e8e4ff;
  --c-text-2: #b8b0d8;
  --c-text-3: #7a7299;
  --c-border: rgba(108, 92, 231, 0.2);
  --c-border-2: rgba(108, 92, 231, 0.08);

  --grad-primary: linear-gradient(135deg, #6c5ce7 0%, #a29bfe 100%);
  --grad-accent: linear-gradient(135deg, #f0a500 0%, #f7c34a 100%);
  --grad-teal: linear-gradient(135deg, #00cec9 0%, #55efc4 100%);
  --grad-hero: linear-gradient(135deg, #0f0e1a 0%, #1a1535 50%, #0f1a2e 100%);
  --grad-card: linear-gradient(145deg, rgba(35,31,61,0.9) 0%, rgba(45,41,82,0.7) 100%);
  --grad-glow: radial-gradient(ellipse at center, rgba(108,92,231,0.15) 0%, transparent 70%);

  --shadow-sm: 0 2px 8px rgba(0,0,0,0.3), 0 1px 3px rgba(0,0,0,0.2);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.4), 0 4px 12px rgba(0,0,0,0.25), 0 0 0 1px rgba(108,92,231,0.08);
  --shadow-lg: 0 16px 48px rgba(0,0,0,0.5), 0 8px 24px rgba(0,0,0,0.3), 0 0 0 1px rgba(108,92,231,0.1);
  --shadow-xl: 0 24px 64px rgba(0,0,0,0.6), 0 12px 32px rgba(0,0,0,0.4), 0 0 40px rgba(108,92,231,0.08);
  --shadow-glow: 0 0 30px rgba(108,92,231,0.3), 0 8px 24px rgba(0,0,0,0.4);
  --shadow-accent: 0 0 20px rgba(240,165,0,0.25), 0 8px 24px rgba(0,0,0,0.4);

  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-2xl: 40px;
  --r-full: 9999px;

  --sp-1: 4px;
  --sp-2: 8px;
  --sp-3: 12px;
  --sp-4: 16px;
  --sp-5: 20px;
  --sp-6: 24px;
  --sp-8: 32px;
  --sp-10: 40px;
  --sp-12: 48px;
  --sp-16: 64px;
  --sp-20: 80px;
  --sp-24: 96px;
  --sp-32: 128px;

  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 400ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-spring: 500ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

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

body {
  font-family: 'Satoshi', 'DM Sans', sans-serif;
  background-color: var(--c-bg);
  color: var(--c-text);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;

  &.is-menu-open {
    overflow: hidden;
  }
}

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

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

ul, ol {
  list-style: none;
}

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

input, textarea, select {
  font-family: inherit;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Clash Display', 'DM Sans', sans-serif;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--c-text);
}

/* ============================================================
   TYPOGRAPHY SCALE
   ============================================================ */

.u-display {
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.u-h1 {
  font-size: clamp(2.25rem, 5vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.025em;
}

.u-h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 600;
  letter-spacing: -0.02em;
}

.u-h3 {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 600;
  letter-spacing: -0.015em;
}

.u-h4 {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 600;
}

.u-body-lg {
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  line-height: 1.7;
  color: var(--c-text-2);
}

.u-body {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--c-text-2);
}

.u-caption {
  font-size: 0.85rem;
  color: var(--c-text-3);
  letter-spacing: 0.02em;
}

.u-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-primary-light);
}

.u-text-center { text-align: center; }
.u-text-left { text-align: left; }
.u-hidden { display: none !important; }
.u-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */

.u-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--sp-6);

  @media (min-width: 768px) {
    padding: 0 var(--sp-8);
  }

  @media (min-width: 1200px) {
    padding: 0 var(--sp-10);
  }
}

.u-container--wide {
  max-width: 1400px;
}

.u-container--narrow {
  max-width: 800px;
}

/* ============================================================
   BUTTONS
   ============================================================ */

.c-btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: 14px 28px;
  border-radius: var(--r-full);
  font-family: 'Satoshi', 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  transition: all var(--transition-base);
  cursor: pointer;
  border: none;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  white-space: nowrap;

  &::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity var(--transition-base);
  }

  &:hover {
    transform: translateY(-2px);
  }

  &:active {
    transform: translateY(0);
  }
}

.c-btn--primary {
  background: var(--grad-primary);
  color: #fff;
  box-shadow: var(--shadow-glow);

  &::before {
    background: rgba(255,255,255,0.1);
  }

  &:hover {
    box-shadow: 0 0 40px rgba(108,92,231,0.5), 0 12px 32px rgba(0,0,0,0.4);

    &::before {
      opacity: 1;
    }
  }
}

.c-btn--accent {
  background: var(--grad-accent);
  color: #1a1000;
  box-shadow: var(--shadow-accent);

  &::before {
    background: rgba(255,255,255,0.15);
  }

  &:hover {
    box-shadow: 0 0 40px rgba(240,165,0,0.4), 0 12px 32px rgba(0,0,0,0.4);

    &::before {
      opacity: 1;
    }
  }
}

.c-btn--ghost {
  background: transparent;
  color: var(--c-text);
  border: 1px solid var(--c-border);

  &:hover {
    background: rgba(108,92,231,0.1);
    border-color: var(--c-primary);
    color: var(--c-primary-light);
    box-shadow: var(--shadow-md);
  }
}

.c-btn--sm {
  padding: 10px 20px;
  font-size: 0.875rem;
}

.c-btn--lg {
  padding: 18px 40px;
  font-size: 1.05rem;
}

/* ============================================================
   NAVIGATION
   ============================================================ */

.c-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: var(--sp-3) var(--sp-6);
  background: rgba(15, 14, 26, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--c-border-2);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
  transition: box-shadow var(--transition-base);

  &.is-scrolled {
    box-shadow: 0 4px 30px rgba(0,0,0,0.5), 0 0 0 1px rgba(108,92,231,0.1);
  }

  & .c-nav__inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--sp-6);
  }

  & .c-nav__logo {
    display: flex;
    align-items: center;
    gap: var(--sp-3);
    flex-shrink: 0;
    text-decoration: none;

    & img, & svg {
      height: 36px;
      width: auto;
    }
  }

  & .c-nav__links {
    display: none;
    align-items: center;
    gap: var(--sp-2);

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

    & a {
      padding: var(--sp-2) var(--sp-4);
      border-radius: var(--r-full);
      font-size: 0.9rem;
      font-weight: 500;
      color: var(--c-text-2);
      transition: all var(--transition-base);
      white-space: nowrap;

      &:hover, &.is-active {
        color: var(--c-text);
        background: rgba(108,92,231,0.15);
      }

      &.is-active {
        color: var(--c-primary-light);
      }
    }
  }

  & .c-nav__right {
    display: flex;
    align-items: center;
    gap: var(--sp-4);
  }

  & .c-nav__hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: var(--sp-2);
    cursor: pointer;
    border: none;
    background: none;
    border-radius: var(--r-sm);
    transition: background var(--transition-base);
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;

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

    &:hover {
      background: rgba(108,92,231,0.1);
    }

    & span {
      display: block;
      width: 22px;
      height: 2px;
      background: var(--c-text);
      border-radius: 2px;
      transition: all var(--transition-base);
    }

    &.is-active {
      & 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);
      }
    }
  }
}

/* ============================================================
   LANGUAGE SWITCHER
   ============================================================ */

.c-lang-switcher {
  display: flex;
  align-items: center;
  gap: 2px;
  background: rgba(108,92,231,0.1);
  border: 1px solid var(--c-border);
  border-radius: var(--r-full);
  padding: 3px;

  & .lang-btn {
    padding: 5px 12px;
    border-radius: var(--r-full);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--c-text-3);
    transition: all var(--transition-base);
    text-decoration: none;
    min-height: 30px;
    display: flex;
    align-items: center;

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

    &.active {
      background: var(--grad-primary);
      color: #fff;
    }
  }

  & .lang-divider {
    color: var(--c-border);
    font-size: 0.75rem;
    display: none;
  }
}

/* ============================================================
   MOBILE MENU (PUSH PATTERN)
   ============================================================ */

.c-mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 300px;
  height: 100vh;
  background: var(--c-bg-2);
  border-left: 1px solid var(--c-border);
  z-index: 999;
  transform: translateX(100%);
  transition: transform var(--transition-slow);
  padding: var(--sp-20) var(--sp-6) var(--sp-8);
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  overflow-y: auto;
  box-shadow: -8px 0 40px rgba(0,0,0,0.5);

  &.is-open {
    transform: translateX(0);
  }

  & .c-mobile-menu__link {
    display: block;
    padding: var(--sp-4) var(--sp-5);
    border-radius: var(--r-md);
    font-size: 1rem;
    font-weight: 500;
    color: var(--c-text-2);
    transition: all var(--transition-base);
    border: 1px solid transparent;

    &:hover, &.is-active {
      background: rgba(108,92,231,0.12);
      border-color: var(--c-border);
      color: var(--c-primary-light);
    }
  }

  & .c-mobile-menu__lang {
    margin-top: auto;
    padding-top: var(--sp-6);
    border-top: 1px solid var(--c-border-2);
    display: flex;
    justify-content: center;
  }
}

.c-page-wrapper {
  transition: transform var(--transition-slow), filter var(--transition-slow);
  transform-origin: right center;

  &.is-pushed {
    transform: scale(0.95) translateX(-30px);
    filter: brightness(0.7);
    border-radius: var(--r-xl);
    overflow: hidden;
  }
}

.c-menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 998;
  background: transparent;
  display: none;

  &.is-active {
    display: block;
  }
}

/* ============================================================
   HERO SECTION
   ============================================================ */

.s-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--grad-hero);
  padding-top: 80px;

  & .s-hero__bg {
    position: absolute;
    inset: 0;
    overflow: hidden;

    & .s-hero__glow-1 {
      position: absolute;
      top: -20%;
      left: -10%;
      width: 60%;
      height: 70%;
      background: radial-gradient(ellipse, rgba(108,92,231,0.18) 0%, transparent 70%);
      pointer-events: none;
    }

    & .s-hero__glow-2 {
      position: absolute;
      bottom: -20%;
      right: -10%;
      width: 50%;
      height: 60%;
      background: radial-gradient(ellipse, rgba(0,206,201,0.12) 0%, transparent 70%);
      pointer-events: none;
    }

    & .s-hero__glow-3 {
      position: absolute;
      top: 40%;
      right: 20%;
      width: 30%;
      height: 40%;
      background: radial-gradient(ellipse, rgba(240,165,0,0.08) 0%, transparent 70%);
      pointer-events: none;
    }
  }

  & .s-hero__cutout {
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 120px;
    background: var(--c-bg-2);
    clip-path: ellipse(55% 100% at 50% 100%);
    pointer-events: none;
  }

  & .s-hero__content {
    position: relative;
    z-index: 2;
    width: 100%;
  }

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

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

  & .s-hero__text {
    & .s-hero__label {
      display: inline-flex;
      align-items: center;
      gap: var(--sp-2);
      padding: var(--sp-2) var(--sp-4);
      background: rgba(108,92,231,0.15);
      border: 1px solid var(--c-border);
      border-radius: var(--r-full);
      margin-bottom: var(--sp-6);

      & span {
        font-size: 0.8rem;
        font-weight: 600;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: var(--c-primary-light);
      }

      & i {
        color: var(--c-accent);
        font-size: 0.75rem;
      }
    }

    & h1 {
      font-size: clamp(2.5rem, 6vw, 5rem);
      font-weight: 700;
      letter-spacing: -0.03em;
      line-height: 1.08;
      margin-bottom: var(--sp-6);
      color: var(--c-text);

      & .s-hero__static {
        display: block;
      }

      & .s-hero__rotating-wrapper {
        display: inline-block;
        position: relative;
        overflow: hidden;
        height: 1.15em;
        vertical-align: bottom;
      }

      & .s-hero__rotating {
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        background: var(--grad-primary);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.5s ease, transform 0.5s ease;

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

        &.is-leaving {
          opacity: 0;
          transform: translateY(-30px);
        }
      }
    }

    & .s-hero__desc {
      font-size: clamp(1rem, 1.8vw, 1.15rem);
      color: var(--c-text-2);
      line-height: 1.7;
      margin-bottom: var(--sp-8);
      max-width: 520px;
    }

    & .s-hero__actions {
      display: flex;
      flex-wrap: wrap;
      gap: var(--sp-4);
      align-items: center;
    }
  }

  & .s-hero__visual {
    position: relative;
    display: none;

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

    & .s-hero__img-frame {
      position: relative;
      border-radius: var(--r-xl);
      overflow: hidden;
      aspect-ratio: 4/3;

      & img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: var(--r-xl);
      }

      &::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(108,92,231,0.2) 0%, transparent 60%);
        z-index: 1;
        border-radius: var(--r-xl);
        pointer-events: none;
      }

      &::after {
        content: '';
        position: absolute;
        inset: -1px;
        border-radius: var(--r-xl);
        background: linear-gradient(135deg, rgba(108,92,231,0.4), rgba(0,206,201,0.2), transparent);
        z-index: 2;
        mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
        mask-composite: exclude;
        padding: 1px;
        pointer-events: none;
      }
    }

    & .s-hero__float-card {
      position: absolute;
      bottom: -24px;
      left: -24px;
      background: var(--grad-card);
      backdrop-filter: blur(20px);
      border: 1px solid var(--c-border);
      border-radius: var(--r-lg);
      padding: var(--sp-4) var(--sp-5);
      box-shadow: var(--shadow-lg);
      z-index: 3;

      & .s-hero__float-icon {
        width: 40px;
        height: 40px;
        background: var(--grad-accent);
        border-radius: var(--r-sm);
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: var(--sp-2);

        & i {
          color: #1a1000;
          font-size: 1.1rem;
        }
      }

      & p {
        font-size: 0.8rem;
        color: var(--c-text-3);
        margin-bottom: 2px;
      }

      & strong {
        font-size: 0.9rem;
        color: var(--c-text);
        font-weight: 600;
      }
    }
  }
}

/* ============================================================
   SECTION LABELS & HEADINGS
   ============================================================ */

.c-section-label {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-2) var(--sp-4);
  background: rgba(108,92,231,0.1);
  border: 1px solid var(--c-border);
  border-radius: var(--r-full);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-primary-light);
  margin-bottom: var(--sp-5);

  & i {
    font-size: 0.7rem;
    color: var(--c-accent);
  }
}

.c-section-header {
  margin-bottom: var(--sp-12);

  &.u-text-center {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: var(--sp-12);
  }

  & h2 {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 700;
    margin-bottom: var(--sp-4);
    color: var(--c-text);
  }

  & p {
    font-size: clamp(1rem, 1.5vw, 1.1rem);
    color: var(--c-text-2);
    line-height: 1.7;
    max-width: 600px;

    &.u-text-center {
      margin: 0 auto;
    }
  }
}

/* ============================================================
   CARDS
   ============================================================ */

.c-card {
  background: var(--grad-card);
  border: 1px solid var(--c-border-2);
  border-radius: var(--r-lg);
  padding: var(--sp-6);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;

  &::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(108,92,231,0.4), transparent);
    opacity: 0;
    transition: opacity var(--transition-base);
  }

  &:hover {
    transform: translateY(-4px);
    border-color: var(--c-border);
    box-shadow: var(--shadow-lg);

    &::before {
      opacity: 1;
    }
  }
}

.c-card--glow {
  &:hover {
    box-shadow: var(--shadow-glow);
  }
}

.c-card--accent {
  border-color: rgba(240,165,0,0.15);

  &::before {
    background: linear-gradient(90deg, transparent, rgba(240,165,0,0.4), transparent);
  }

  &:hover {
    border-color: rgba(240,165,0,0.3);
    box-shadow: var(--shadow-accent);
  }
}

.c-card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-5);
  flex-shrink: 0;

  &.is-primary {
    background: rgba(108,92,231,0.15);
    border: 1px solid rgba(108,92,231,0.25);

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

  &.is-accent {
    background: rgba(240,165,0,0.12);
    border: 1px solid rgba(240,165,0,0.2);

    & i {
      color: var(--c-accent);
      font-size: 1.2rem;
    }
  }

  &.is-teal {
    background: rgba(0,206,201,0.1);
    border: 1px solid rgba(0,206,201,0.2);

    & i {
      color: var(--c-teal);
      font-size: 1.2rem;
    }
  }

  &.is-coral {
    background: rgba(253,121,168,0.1);
    border: 1px solid rgba(253,121,168,0.2);

    & i {
      color: var(--c-coral);
      font-size: 1.2rem;
    }
  }
}

/* ============================================================
   ANIMATED BORDER CARD (CSS-only)
   ============================================================ */

.c-card--animated-border {
  position: relative;
  isolation: isolate;

  &::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: calc(var(--r-lg) + 1px);
    background: conic-gradient(
      from 0deg,
      transparent 0deg,
      var(--c-primary) 60deg,
      var(--c-teal) 120deg,
      var(--c-accent) 180deg,
      transparent 240deg,
      transparent 360deg
    );
    z-index: -1;
    opacity: 0;
    transition: opacity var(--transition-base);
    animation: none;
  }

  &:hover::after {
    opacity: 1;
    animation: border-spin 2s linear infinite;
  }
}

@keyframes border-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* ============================================================
   SECTIONS
   ============================================================ */

.s-section {
  padding: var(--sp-24) 0;
  position: relative;
}

.s-section--dark {
  background: var(--c-bg);
}

.s-section--mid {
  background: var(--c-bg-2);
}

.s-section--surface {
  background: var(--c-bg-3);
}

/* ============================================================
   CUTOUT LAYERS EFFECT
   ============================================================ */

.s-cutout {
  position: relative;
  overflow: visible;

  & .s-cutout__shape-top {
    position: absolute;
    top: -60px;
    left: 0;
    right: 0;
    height: 120px;
    background: inherit;
    clip-path: polygon(0 50%, 100% 0, 100% 100%, 0 100%);
    z-index: 1;
  }

  & .s-cutout__shape-bottom {
    position: absolute;
    bottom: -60px;
    left: 0;
    right: 0;
    height: 120px;
    background: inherit;
    clip-path: polygon(0 0, 100% 0, 100% 50%, 0 100%);
    z-index: 1;
  }
}

.s-reveal-section {
  position: relative;
  clip-path: polygon(0 4%, 100% 0, 100% 96%, 0 100%);
  margin: -40px 0;
  padding: var(--sp-32) 0;
  z-index: 2;
}

/* ============================================================
   FEATURES / COURSES GRID
   ============================================================ */

.s-courses {
  padding: var(--sp-24) 0;
  background: var(--c-bg-2);
  position: relative;

  &::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: var(--c-bg);
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 100%);
  }

  &::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: var(--c-bg-3);
    clip-path: polygon(0 100%, 100% 0, 100% 100%, 0 100%);
  }

  & .s-courses__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--sp-5);

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

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

  & .s-courses__featured {
    @media (min-width: 1024px) {
      grid-column: span 2;
    }
  }
}

/* ============================================================
   DASHBOARD WIDGET GRID
   ============================================================ */

.c-widget-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-5);

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

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

.c-widget {
  background: var(--grad-card);
  border: 1px solid var(--c-border-2);
  border-radius: var(--r-lg);
  padding: var(--sp-6);
  transition: all var(--transition-base);

  &:hover {
    transform: translateY(-3px);
    border-color: var(--c-border);
    box-shadow: var(--shadow-md);
  }

  &.c-widget--wide {
    @media (min-width: 640px) {
      grid-column: span 2;
    }
  }

  &.c-widget--tall {
    @media (min-width: 1024px) {
      grid-row: span 2;
    }
  }

  & .c-widget__label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--c-text-3);
    margin-bottom: var(--sp-3);
  }

  & .c-widget__value {
    font-family: 'Clash Display', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--c-text);
    line-height: 1;
    margin-bottom: var(--sp-2);
  }

  & .c-widget__sub {
    font-size: 0.85rem;
    color: var(--c-text-3);
  }

  & .c-widget__icon {
    width: 36px;
    height: 36px;
    border-radius: var(--r-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--sp-4);
    background: rgba(108,92,231,0.12);

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

/* ============================================================
   OVERLAP ZONE
   ============================================================ */

.s-overlap-zone {
  position: relative;
  z-index: 5;
  margin-top: -60px;
  padding-bottom: var(--sp-16);

  & .s-overlap-zone__inner {
    background: var(--c-bg-3);
    border-radius: var(--r-2xl);
    padding: var(--sp-12) var(--sp-8);
    border: 1px solid var(--c-border-2);
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;

    &::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 2px;
      background: var(--grad-primary);
    }
  }

  & .s-overlap-zone__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--sp-8);

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

/* ============================================================
   FAQ ACCORDION
   ============================================================ */

.s-faq {
  padding: var(--sp-24) 0;
  background: var(--c-bg);
  position: relative;

  &::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: var(--c-bg-3);
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    pointer-events: none;
  }
}

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

.c-faq-item {
  background: var(--grad-card);
  border: 1px solid var(--c-border-2);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: border-color var(--transition-base), box-shadow var(--transition-base);

  &.is-open {
    border-color: var(--c-border);
    box-shadow: var(--shadow-md);

    & .c-faq-item__icon {
      transform: rotate(45deg);
      color: var(--c-primary-light);
    }

    & .c-faq-item__answer {
      max-height: 500px;
      opacity: 1;
    }
  }

  & .c-faq-item__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--sp-5) var(--sp-6);
    cursor: pointer;
    gap: var(--sp-4);
    transition: background var(--transition-base);
    min-height: 44px;

    &:hover {
      background: rgba(108,92,231,0.05);
    }

    & span {
      font-weight: 600;
      font-size: 0.95rem;
      color: var(--c-text);
      line-height: 1.4;
    }

    & .c-faq-item__icon {
      color: var(--c-text-3);
      font-size: 1.1rem;
      flex-shrink: 0;
      transition: transform var(--transition-base), color var(--transition-base);
    }
  }

  & .c-faq-item__answer {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height var(--transition-slow), opacity var(--transition-base);

    & .c-faq-item__answer-inner {
      padding: 0 var(--sp-6) var(--sp-6);
      color: var(--c-text-2);
      font-size: 0.95rem;
      line-height: 1.7;
      border-top: 1px solid var(--c-border-2);
      padding-top: var(--sp-4);
    }
  }
}

/* ============================================================
   IMAGE SECTIONS
   ============================================================ */

.s-visual-break {
  position: relative;
  height: 400px;
  overflow: hidden;

  @media (min-width: 768px) {
    height: 500px;
  }

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

  & .s-visual-break__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15,14,26,0.85) 0%, rgba(108,92,231,0.2) 50%, rgba(15,14,26,0.7) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  & .s-visual-break__cutout-top {
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    height: 80px;
    background: var(--c-bg-2);
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 100%);
  }

  & .s-visual-break__cutout-bottom {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 80px;
    background: var(--c-bg-3);
    clip-path: polygon(0 100%, 100% 0, 100% 100%, 0 100%);
  }
}

/* ============================================================
   ABOUT / WHY SECTION
   ============================================================ */

.s-about {
  padding: var(--sp-24) 0;
  background: var(--c-bg-3);
  position: relative;

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

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

  & .s-about__img {
    position: relative;
    border-radius: var(--r-xl);
    overflow: hidden;
    aspect-ratio: 4/3;

    & img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform var(--transition-slow);
    }

    &:hover img {
      transform: scale(1.03);
    }

    & .s-about__img-badge {
      position: absolute;
      top: var(--sp-5);
      right: var(--sp-5);
      background: var(--grad-card);
      backdrop-filter: blur(16px);
      border: 1px solid var(--c-border);
      border-radius: var(--r-md);
      padding: var(--sp-3) var(--sp-4);
      box-shadow: var(--shadow-md);

      & i {
        color: var(--c-accent);
        font-size: 1.2rem;
        display: block;
        margin-bottom: var(--sp-1);
      }

      & span {
        font-size: 0.8rem;
        color: var(--c-text-2);
        font-weight: 500;
        white-space: nowrap;
      }
    }
  }

  & .s-about__content {
    & p {
      color: var(--c-text-2);
      line-height: 1.75;
      margin-bottom: var(--sp-5);
      font-size: 1.02rem;
    }
  }
}

/* ============================================================
   COURSE MODULES
   ============================================================ */

.s-modules {
  padding: var(--sp-24) 0;
  background: var(--c-bg-2);
  position: relative;

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

.c-module-item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-5);
  padding: var(--sp-6);
  background: var(--grad-card);
  border: 1px solid var(--c-border-2);
  border-radius: var(--r-lg);
  transition: all var(--transition-base);

  &:hover {
    border-color: var(--c-border);
    box-shadow: var(--shadow-md);
    transform: translateX(4px);
  }

  & .c-module-item__num {
    font-family: 'Clash Display', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--c-primary-light);
    opacity: 0.5;
    min-width: 40px;
    line-height: 1;
    flex-shrink: 0;
  }

  & .c-module-item__content {
    flex: 1;

    & h4 {
      font-size: 1.05rem;
      font-weight: 600;
      color: var(--c-text);
      margin-bottom: var(--sp-2);
    }

    & p {
      font-size: 0.9rem;
      color: var(--c-text-2);
      line-height: 1.6;
    }
  }

  & .c-module-item__tag {
    flex-shrink: 0;
    padding: var(--sp-1) var(--sp-3);
    border-radius: var(--r-full);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;

    &.is-intro {
      background: rgba(108,92,231,0.12);
      color: var(--c-primary-light);
      border: 1px solid rgba(108,92,231,0.2);
    }

    &.is-intermediate {
      background: rgba(0,206,201,0.1);
      color: var(--c-teal);
      border: 1px solid rgba(0,206,201,0.2);
    }

    &.is-advanced {
      background: rgba(240,165,0,0.1);
      color: var(--c-accent);
      border: 1px solid rgba(240,165,0,0.2);
    }
  }
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */

.s-contact {
  padding: var(--sp-24) 0;
  background: var(--c-bg);

  & .s-contact__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--sp-12);

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

  & .s-contact__info {
    & h2 {
      font-size: clamp(1.75rem, 3vw, 2.5rem);
      font-weight: 700;
      margin-bottom: var(--sp-5);
    }

    & p {
      color: var(--c-text-2);
      line-height: 1.7;
      margin-bottom: var(--sp-8);
    }
  }

  & .s-contact__detail {
    display: flex;
    align-items: flex-start;
    gap: var(--sp-4);
    margin-bottom: var(--sp-5);

    & .s-contact__detail-icon {
      width: 40px;
      height: 40px;
      border-radius: var(--r-sm);
      background: rgba(108,92,231,0.12);
      border: 1px solid rgba(108,92,231,0.2);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;

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

    & div {
      & p {
        margin: 0;
        font-size: 0.85rem;
        color: var(--c-text-3);
        margin-bottom: 2px;
      }

      & a, & span {
        font-size: 0.95rem;
        color: var(--c-text);
        font-weight: 500;
        transition: color var(--transition-base);
      }

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

/* ============================================================
   FORM
   ============================================================ */

.c-form {
  background: var(--grad-card);
  border: 1px solid var(--c-border-2);
  border-radius: var(--r-xl);
  padding: var(--sp-8);
  box-shadow: var(--shadow-lg);

  & .c-form__group {
    margin-bottom: var(--sp-5);

    & label {
      display: block;
      font-size: 0.875rem;
      font-weight: 600;
      color: var(--c-text-2);
      margin-bottom: var(--sp-2);
    }

    & input, & textarea {
      width: 100%;
      padding: 14px 16px;
      background: rgba(15,14,26,0.6);
      border: 1px solid var(--c-border);
      border-radius: var(--r-md);
      color: var(--c-text);
      font-size: 0.95rem;
      font-family: inherit;
      transition: all var(--transition-base);
      outline: none;

      &::placeholder {
        color: var(--c-text-3);
      }

      &:focus {
        border-color: var(--c-primary);
        box-shadow: 0 0 0 3px rgba(108,92,231,0.15);
        background: rgba(15,14,26,0.8);
      }

      &:invalid:not(:placeholder-shown) {
        border-color: var(--c-coral);
      }
    }

    & textarea {
      resize: vertical;
      min-height: 130px;
      line-height: 1.6;
    }
  }

  & .c-form__checkbox {
    display: flex;
    align-items: flex-start;
    gap: var(--sp-3);
    margin-bottom: var(--sp-6);

    & input[type="checkbox"] {
      width: 18px;
      height: 18px;
      min-width: 18px;
      accent-color: var(--c-primary);
      margin-top: 2px;
      cursor: pointer;
    }

    & label {
      font-size: 0.875rem;
      color: var(--c-text-2);
      line-height: 1.5;
      cursor: pointer;

      & a {
        color: var(--c-primary-light);
        text-decoration: underline;
        text-decoration-color: rgba(108,92,231,0.4);

        &:hover {
          color: var(--c-accent);
          text-decoration-color: var(--c-accent);
        }
      }
    }
  }

  & .c-form__submit {
    width: 100%;
    padding: 16px;
    background: var(--grad-primary);
    color: #fff;
    border: none;
    border-radius: var(--r-full);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-glow);
    font-family: inherit;

    &:hover {
      transform: translateY(-2px);
      box-shadow: 0 0 40px rgba(108,92,231,0.5), 0 12px 32px rgba(0,0,0,0.4);
    }

    &:active {
      transform: translateY(0);
    }
  }
}

/* ============================================================
   MAP
   ============================================================ */

.c-map-wrapper {
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--c-border-2);
  box-shadow: var(--shadow-md);
  margin-top: var(--sp-8);
  height: 300px;

  & iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
  }
}

/* ============================================================
   THANKS PAGE TIMELINE
   ============================================================ */

.s-thanks {
  padding: var(--sp-24) 0;
  min-height: 80vh;
  display: flex;
  align-items: center;

  & .s-thanks__inner {
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
  }

  & h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: var(--sp-4);
  }

  & .s-thanks__sub {
    color: var(--c-text-2);
    font-size: 1.05rem;
    margin-bottom: var(--sp-8);
    line-height: 1.6;
  }
}

.c-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  text-align: left;
  margin: var(--sp-10) auto;
  max-width: 360px;
  position: relative;

  &::before {
    content: '';
    position: absolute;
    left: 19px;
    top: 20px;
    bottom: 20px;
    width: 2px;
    background: linear-gradient(180deg, var(--c-primary) 0%, var(--c-teal) 50%, rgba(108,92,231,0.1) 100%);
  }
}

.c-timeline-item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-5);
  padding: var(--sp-4) 0;
  position: relative;

  & .c-timeline-item__dot {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    transition: all var(--transition-base);

    &.is-done {
      background: var(--grad-primary);
      box-shadow: 0 0 16px rgba(108,92,231,0.4);

      & i {
        color: #fff;
        font-size: 1rem;
      }
    }

    &.is-active {
      background: var(--grad-accent);
      box-shadow: 0 0 20px rgba(240,165,0,0.4);

      & i {
        color: #1a1000;
        font-size: 1rem;
      }
    }

    &.is-upcoming {
      background: rgba(108,92,231,0.1);
      border: 2px solid var(--c-border);

      & i {
        color: var(--c-text-3);
        font-size: 1rem;
      }
    }
  }

  & .c-timeline-item__content {
    padding-top: var(--sp-2);

    & h4 {
      font-size: 1rem;
      font-weight: 600;
      margin-bottom: 4px;
    }

    & p {
      font-size: 0.875rem;
      color: var(--c-text-3);
    }
  }

  &.is-active .c-timeline-item__content h4 {
    color: var(--c-accent);
  }

  &.is-upcoming .c-timeline-item__content h4 {
    color: var(--c-text-3);
  }
}

/* ============================================================
   FOOTER
   ============================================================ */

.c-footer {
  background: var(--c-bg);
  border-top: 1px solid var(--c-border-2);
  padding: var(--sp-16) 0 var(--sp-8);
  position: relative;

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

  & .c-footer__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--sp-10);
    margin-bottom: var(--sp-12);

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

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

  & .c-footer__brand {
    & .c-footer__logo {
      display: flex;
      align-items: center;
      gap: var(--sp-3);
      margin-bottom: var(--sp-4);
      text-decoration: none;

      & img, & svg {
        height: 32px;
        width: auto;
      }
    }

    & p {
      font-size: 0.875rem;
      color: var(--c-text-3);
      line-height: 1.65;
      max-width: 280px;
    }
  }

  & .c-footer__col {
    & h4 {
      font-size: 0.8rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--c-text-3);
      margin-bottom: var(--sp-4);
    }

    & ul {
      display: flex;
      flex-direction: column;
      gap: var(--sp-3);

      & a {
        font-size: 0.875rem;
        color: var(--c-text-2);
        transition: color var(--transition-base);
        display: inline-flex;
        align-items: center;
        gap: var(--sp-2);

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

  & .c-footer__legal {
    border-top: 1px solid var(--c-border-2);
    padding-top: var(--sp-8);

    & .c-footer__legal-info {
      background: rgba(108,92,231,0.05);
      border: 1px solid var(--c-border-2);
      border-radius: var(--r-lg);
      padding: var(--sp-5) var(--sp-6);
      margin-bottom: var(--sp-6);

      & h5 {
        font-size: 0.75rem;
        font-weight: 700;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        color: var(--c-text-3);
        margin-bottom: var(--sp-3);
      }

      & p, & address {
        font-size: 0.8rem;
        color: var(--c-text-3);
        line-height: 1.7;
        font-style: normal;
      }
    }

    & .c-footer__bottom {
      display: flex;
      flex-wrap: wrap;
      gap: var(--sp-4);
      align-items: center;
      justify-content: space-between;

      & p {
        font-size: 0.8rem;
        color: var(--c-text-3);
      }

      & .c-footer__legal-links {
        display: flex;
        flex-wrap: wrap;
        gap: var(--sp-4);

        & a {
          font-size: 0.8rem;
          color: var(--c-text-3);
          transition: color var(--transition-base);

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

/* ============================================================
   INNER PAGE HERO
   ============================================================ */

.s-page-hero {
  padding: 140px 0 var(--sp-16);
  background: var(--c-bg);
  position: relative;
  overflow: hidden;

  &::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -10%;
    width: 60%;
    height: 80%;
    background: radial-gradient(ellipse, rgba(108,92,231,0.12) 0%, transparent 70%);
    pointer-events: none;
  }

  & .s-page-hero__cutout {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    height: 60px;
    background: var(--c-bg-2);
    clip-path: polygon(0 100%, 100% 0, 100% 100%);
  }

  & h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: var(--sp-4);
  }

  & p {
    font-size: 1.05rem;
    color: var(--c-text-2);
    max-width: 600px;
    line-height: 1.7;
  }
}

/* ============================================================
   LEGAL PAGES
   ============================================================ */

.s-legal {
  padding: var(--sp-12) 0 var(--sp-24);
  background: var(--c-bg-2);

  & .s-legal__date {
    font-size: 0.85rem;
    color: var(--c-text-3);
    margin-bottom: var(--sp-8);
    display: flex;
    align-items: center;
    gap: var(--sp-2);

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

.c-legal-accordion {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.c-legal-item {
  background: var(--grad-card);
  border: 1px solid var(--c-border-2);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: border-color var(--transition-base);

  &.is-open {
    border-color: var(--c-border);

    & .c-legal-item__icon {
      transform: rotate(180deg);
      color: var(--c-primary-light);
    }

    & .c-legal-item__body {
      max-height: 2000px;
      opacity: 1;
    }
  }

  & .c-legal-item__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--sp-5) var(--sp-6);
    cursor: pointer;
    gap: var(--sp-4);
    min-height: 56px;
    transition: background var(--transition-base);

    &:hover {
      background: rgba(108,92,231,0.05);
    }

    & h3 {
      font-size: 1rem;
      font-weight: 600;
      color: var(--c-text);
      line-height: 1.3;
    }

    & .c-legal-item__icon {
      color: var(--c-text-3);
      font-size: 0.9rem;
      flex-shrink: 0;
      transition: transform var(--transition-base), color var(--transition-base);
    }
  }

  & .c-legal-item__body {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, opacity var(--transition-base);

    & .c-legal-item__body-inner {
      padding: var(--sp-2) var(--sp-6) var(--sp-6);
      border-top: 1px solid var(--c-border-2);
      padding-top: var(--sp-5);

      & p {
        font-size: 0.9rem;
        color: var(--c-text-2);
        line-height: 1.75;
        margin-bottom: var(--sp-4);

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

      & h4 {
        font-size: 0.95rem;
        font-weight: 600;
        color: var(--c-text);
        margin: var(--sp-5) 0 var(--sp-3);
      }

      & ul {
        list-style: none;
        padding: 0;

        & li {
          font-size: 0.9rem;
          color: var(--c-text-2);
          line-height: 1.65;
          padding-left: var(--sp-5);
          position: relative;
          margin-bottom: var(--sp-2);

          &::before {
            content: '';
            position: absolute;
            left: 0;
            top: 10px;
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--c-primary-light);
            opacity: 0.6;
          }
        }
      }

      & a {
        color: var(--c-primary-light);
        text-decoration: underline;
        text-decoration-color: rgba(108,92,231,0.4);

        &:hover {
          color: var(--c-accent);
        }
      }
    }
  }
}

/* ============================================================
   COOKIE CONSENT (CORNER MODAL)
   ============================================================ */

.c-cookie-consent {
  position: fixed;
  bottom: var(--sp-5);
  left: var(--sp-5);
  width: 360px;
  max-width: calc(100vw - 40px);
  background: var(--c-bg-3);
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  padding: var(--sp-5);
  z-index: 9999;
  box-shadow: var(--shadow-xl);
  transform: translateY(120%);
  opacity: 0;
  transition: transform var(--transition-slow), opacity var(--transition-slow);

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

  &::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--grad-primary);
    border-radius: var(--r-xl) var(--r-xl) 0 0;
  }

  & .c-cookie-consent__icon {
    width: 36px;
    height: 36px;
    background: rgba(240,165,0,0.12);
    border-radius: var(--r-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--sp-3);

    & i {
      color: var(--c-accent);
      font-size: 1rem;
    }
  }

  & .c-cookie-consent__title {
    font-family: 'Clash Display', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--c-text);
    margin-bottom: var(--sp-2);
  }

  & .c-cookie-consent__text {
    font-size: 0.82rem;
    color: var(--c-text-3);
    line-height: 1.55;
    margin-bottom: var(--sp-4);

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

      &:hover {
        color: var(--c-accent);
      }
    }
  }

  & .c-cookie-consent__btns {
    display: flex;
    flex-direction: column;
    gap: var(--sp-2);

    & button {
      width: 100%;
      padding: 10px 16px;
      border-radius: var(--r-full);
      font-size: 0.85rem;
      font-weight: 600;
      cursor: pointer;
      transition: all var(--transition-base);
      font-family: inherit;
      border: none;
      min-height: 40px;

      &.c-cookie-consent__accept {
        background: var(--grad-primary);
        color: #fff;

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

      &.c-cookie-consent__reject {
        background: transparent;
        color: var(--c-text-3);
        border: 1px solid var(--c-border);

        &:hover {
          background: rgba(108,92,231,0.08);
          color: var(--c-text-2);
        }
      }

      &.c-cookie-consent__customize {
        background: transparent;
        color: var(--c-primary-light);
        font-size: 0.8rem;
        padding: 6px;

        &:hover {
          color: var(--c-accent);
        }
      }
    }
  }

  & .c-cookie-consent__expand {
    margin-top: var(--sp-4);
    border-top: 1px solid var(--c-border-2);
    padding-top: var(--sp-4);
    display: none;

    &.is-open {
      display: block;
    }

    & .c-cookie-consent__category {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: var(--sp-2) 0;

      & span {
        font-size: 0.82rem;
        color: var(--c-text-2);
      }

      & .c-toggle {
        position: relative;
        width: 36px;
        height: 20px;
        flex-shrink: 0;

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

          &:checked + .c-toggle__track {
            background: var(--c-primary);
          }

          &:checked + .c-toggle__track::after {
            transform: translateX(16px);
          }

          &:disabled + .c-toggle__track {
            opacity: 0.5;
            cursor: not-allowed;
          }
        }

        & .c-toggle__track {
          position: absolute;
          inset: 0;
          background: rgba(108,92,231,0.2);
          border-radius: var(--r-full);
          cursor: pointer;
          transition: background var(--transition-base);

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

/* ============================================================
   ENTRANCE ANIMATIONS (JS-powered)
   ============================================================ */

.u-animate {
  opacity: 0;
  transform: translateY(30px);

  &.is-visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
}

.u-animate-delay-1 { transition-delay: 0.1s; }
.u-animate-delay-2 { transition-delay: 0.2s; }
.u-animate-delay-3 { transition-delay: 0.3s; }
.u-animate-delay-4 { transition-delay: 0.4s; }

/* ============================================================
   HIGHLIGHT / CALLOUT
   ============================================================ */

.c-callout {
  background: rgba(108,92,231,0.08);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  padding: var(--sp-6);
  display: flex;
  gap: var(--sp-4);
  align-items: flex-start;

  & .c-callout__icon {
    width: 36px;
    height: 36px;
    border-radius: var(--r-sm);
    background: rgba(240,165,0,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;

    & i {
      color: var(--c-accent);
      font-size: 0.95rem;
    }
  }

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

/* ============================================================
   DIVIDER
   ============================================================ */

.c-divider {
  width: 60px;
  height: 3px;
  background: var(--grad-primary);
  border-radius: var(--r-full);
  margin: var(--sp-5) 0;

  &.u-text-center {
    margin-left: auto;
    margin-right: auto;
  }
}

/* ============================================================
   BREADCRUMB
   ============================================================ */

.c-breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  margin-bottom: var(--sp-6);
  flex-wrap: wrap;

  & a, & span {
    font-size: 0.85rem;
    color: var(--c-text-3);
    transition: color var(--transition-base);
  }

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

  & .c-breadcrumb__sep {
    color: var(--c-text-3);
    font-size: 0.75rem;
  }

  & span:last-child {
    color: var(--c-text-2);
  }
}

/* ============================================================
   RESPONSIVE ADJUSTMENTS
   ============================================================ */

@media (max-width: 639px) {
  .s-section {
    padding: var(--sp-16) 0;
  }

  .s-hero {
    padding-top: 70px;
    min-height: auto;
    padding-bottom: var(--sp-16);
  }

  .s-courses {
    padding: var(--sp-16) 0;
  }

  .s-about {
    padding: var(--sp-16) 0;
  }

  .s-faq {
    padding: var(--sp-16) 0;
  }

  .c-footer {
    padding: var(--sp-12) 0 var(--sp-6);
  }

  .s-page-hero {
    padding: 110px 0 var(--sp-12);
  }

  .c-form {
    padding: var(--sp-6);
  }
}

@media (min-width: 640px) and (max-width: 899px) {
  .s-hero__visual {
    display: none !important;
  }
}

/* ============================================================
   PRINT
   ============================================================ */

@media print {
  .c-nav, .c-cookie-consent, .c-mobile-menu, .c-menu-overlay {
    display: none !important;
  }

  body {
    background: #fff;
    color: #000;
  }
}