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

    :root {
      --purple: #6324B0;
      --purple-light: #8B4DD4;
      --purple-dark: #4A1A85;
      --purple-xdark: #2D0F52;
      --orange: #FCA33B;
      --orange-dark: #E8891A;
      --coral: #FC6B52;
      --cyan: #38D9FC;
      --magenta: #CC33BD;
      --blue-brand: #4D6BF2;
      --cream: #FFF7F5;
      --text-dark: #1A0A30;
      --text-mid: #4A3570;
      --text-light: #8B7AA8;
      --white: #FFFFFF;
      --font-display: 'DM Sans', sans-serif;
      --font-body: 'DM Sans', sans-serif;
      --radius-sm: 12px;
      --radius-md: 20px;
      --radius-lg: 32px;
      --radius-xl: 48px;
      --section-pad: clamp(4rem, 8vw, 7rem);
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: var(--font-body);
      background: var(--cream);
      color: var(--text-dark);
      overflow-x: hidden;
      line-height: 1.6;
    }

    /* ─── NAVBAR ─── */
    nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      padding: 1rem 2rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      transition: background-color 0.3s ease, box-shadow 0.3s ease;
    }

    nav.scrolled {
      background: var(--purple) !important;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
      border-bottom: 2px solid var(--purple-light);
    }

    .nav-logo {
      display: flex;
      align-items: center;
      gap: 0.6rem;
      text-decoration: none;
    }

    .nav-logo-icon {
      width: 40px;
      height: 40px;
      object-fit: contain;
      transition: transform 0.3s ease, filter 0.3s ease;
    }

    .nav-logo:hover .nav-logo-icon {
      transform: scale(1.08) rotate(5deg);
      filter: drop-shadow(0 0 8px var(--purple-light));
    }

    .nav-logo-text {
      font-family: var(--font-display);
      font-weight: 800;
      font-size: 1.1rem;
      line-height: 1.1;
    }

    .nav-logo-text span:first-child {
      color: var(--white);
      transition: color 0.3s ease;
    }

    .nav-logo-text span:last-child {
      color: var(--orange);
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 2rem;
      list-style: none;
    }

    .nav-links a {
      font-size: 0.9rem;
      font-weight: 600;
      color: rgba(255, 255, 255, 0.82);
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .nav-links a:hover {
      color: var(--cyan);
    }

    nav.scrolled .nav-links a {
      color: var(--white);
    }

    nav.scrolled .nav-links a:hover {
      color: var(--cyan);
    }

    nav.scrolled .nav-logo-text span:first-child {
      color: var(--white);
    }

    .nav-links a.nav-social-icon {
      display: flex;
      align-items: center;
      justify-content: center;
      transition: transform 0.2s ease, color 0.3s ease;
      color: rgba(255, 255, 255, 0.85);
    }

    .nav-links a.nav-social-icon:hover {
      transform: scale(1.15);
      color: var(--cyan) !important;
    }

    nav.scrolled .nav-links a.nav-social-icon {
      color: var(--white);
    }

    nav.scrolled .nav-links a.nav-social-icon:hover {
      color: var(--cyan) !important;
    }

    .nav-cta {
      background: linear-gradient(135deg, var(--orange) 0%, var(--coral) 100%);
      color: var(--white) !important;
      padding: 0.55rem 1.4rem;
      border-radius: 50px;
      font-weight: 700 !important;
      font-size: 0.88rem !important;
      transition: all 0.3s ease !important;
      box-shadow: 0 4px 12px rgba(252, 163, 59, 0.2);
    }

    .nav-cta:hover {
      background: linear-gradient(135deg, var(--orange-dark) 0%, var(--coral) 100%) !important;
      transform: translateY(-1.5px) !important;
      box-shadow: 0 6px 16px rgba(252, 163, 59, 0.35);
    }

    /* ─── HERO ─── */
    /* ─── HERO ─── */
    #hero {
      min-height: 100vh;
      background: radial-gradient(circle at 30% 20%, var(--purple-dark) 0%, var(--purple-xdark) 80%);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 7rem 1.5rem 5rem;
      position: relative;
      overflow: hidden;
    }

    /* Grid overlay for depth */
    .hero-grid-overlay {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background-size: 60px 60px;
      background-image:
        linear-gradient(to right, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
      mask-image: radial-gradient(circle at 50% 50%, black 50%, transparent 100%);
      -webkit-mask-image: radial-gradient(circle at 50% 50%, black 50%, transparent 100%);
      z-index: 1;
      pointer-events: none;
    }

    /* Ambient floating liquid blobs */
    .hero-bg-blobs {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      overflow: hidden;
      z-index: 0;
      pointer-events: none;
    }

    .hero-blob {
      position: absolute;
      border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
      filter: blur(80px);
      opacity: 0.45;
      mix-blend-mode: screen;
      animation: floatBlob 22s infinite alternate ease-in-out;
    }

    .blob-purple {
      top: -10%;
      left: 15%;
      width: 600px;
      height: 600px;
      background: linear-gradient(135deg, var(--purple-light) 0%, var(--purple) 100%);
      animation-duration: 18s;
    }

    .blob-orange {
      top: 15%;
      right: -5%;
      width: 500px;
      height: 500px;
      background: linear-gradient(135deg, var(--orange) 0%, var(--coral) 100%);
      animation-duration: 22s;
      animation-delay: -4s;
    }

    .blob-magenta {
      bottom: -10%;
      left: 25%;
      width: 480px;
      height: 480px;
      background: linear-gradient(135deg, var(--magenta) 0%, var(--coral) 100%);
      animation-duration: 26s;
      animation-delay: -8s;
    }

    .blob-cyan {
      top: 35%;
      left: -8%;
      width: 420px;
      height: 420px;
      background: linear-gradient(135deg, var(--cyan) 0%, var(--blue-brand) 100%);
      animation-duration: 20s;
      animation-delay: -12s;
    }

    @keyframes floatBlob {
      0% {
        transform: translate(0, 0) scale(1) rotate(0deg);
        border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
      }

      50% {
        transform: translate(60px, -40px) scale(1.15) rotate(180deg);
        border-radius: 60% 40% 30% 70% / 50% 60% 40% 60%;
      }

      100% {
        transform: translate(-40px, 50px) scale(0.9) rotate(360deg);
        border-radius: 50% 50% 50% 50% / 50% 50% 50% 50%;
      }
    }

    .hero-badge,
    .hero-title,
    .hero-subtitle,
    .hero-actions,
    .hero-stats,
    .scroll-indicator {
      position: relative;
      z-index: 2;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      background: rgba(252, 163, 59, 0.14);
      border: 1px solid rgba(252, 163, 59, 0.35);
      color: var(--orange);
      font-size: 0.8rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      padding: 0.4rem 1rem;
      border-radius: 50px;
      margin-bottom: 1.5rem;
      animation: fadeUp 0.6s ease both;
    }

    .hero-badge-dot {
      width: 6px;
      height: 6px;
      background: var(--orange);
      border-radius: 50%;
      animation: badgePulse 2s infinite ease-in-out;
    }

    @keyframes badgePulse {

      0%,
      100% {
        transform: scale(1);
        background-color: var(--orange);
        box-shadow: 0 0 6px var(--orange);
      }

      33% {
        transform: scale(1.2);
        background-color: var(--cyan);
        box-shadow: 0 0 8px var(--cyan);
      }

      66% {
        transform: scale(1);
        background-color: var(--magenta);
        box-shadow: 0 0 6px var(--magenta);
      }
    }

    .hero-title {
      font-family: var(--font-display);
      font-weight: 800;
      font-size: clamp(2.8rem, 7vw, 5.5rem);
      color: var(--white);
      line-height: 1.05;
      max-width: 780px;
      animation: fadeUp 0.7s 0.1s ease both;
    }

    /* Gradient text utility classes */
    .gradient-text-orange {
      background: linear-gradient(135deg, var(--orange) 0%, var(--coral) 50%, var(--magenta) 100%);
      background-clip: text;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .gradient-text-cyan {
      background: linear-gradient(135deg, var(--cyan) 0%, var(--blue-brand) 50%, var(--purple-light) 100%);
      background-clip: text;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .hero-subtitle {
      font-size: clamp(1rem, 2.5vw, 1.25rem);
      color: rgba(255, 255, 255, 0.72);
      max-width: 520px;
      margin: 1.5rem auto 2.5rem;
      font-weight: 400;
      line-height: 1.65;
      animation: fadeUp 0.7s 0.2s ease both;
    }

    .hero-actions {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
      justify-content: center;
      animation: fadeUp 0.7s 0.3s ease both;
    }

    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: linear-gradient(135deg, var(--orange) 0%, var(--coral) 100%);
      color: var(--white);
      font-family: var(--font-body);
      font-size: 1rem;
      font-weight: 700;
      padding: 0.9rem 2rem;
      border-radius: 50px;
      border: none;
      cursor: pointer;
      text-decoration: none;
      transition: all 0.3s ease;
      box-shadow: 0 4px 20px rgba(252, 163, 59, 0.3);
    }

    .btn-primary:hover {
      background: linear-gradient(135deg, var(--orange-dark) 0%, var(--coral) 100%);
      transform: translateY(-2px);
      box-shadow: 0 8px 28px rgba(252, 163, 59, 0.45), 0 0 15px rgba(252, 107, 82, 0.3);
    }

    .btn-secondary {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: rgba(255, 255, 255, 0.08);
      color: var(--white);
      font-family: var(--font-body);
      font-size: 1rem;
      font-weight: 600;
      padding: 0.9rem 2rem;
      border-radius: 50px;
      border: 1.5px solid rgba(255, 255, 255, 0.25);
      cursor: pointer;
      text-decoration: none;
      transition: all 0.3s ease;
      backdrop-filter: blur(4px);
    }

    .btn-secondary:hover {
      background: rgba(255, 255, 255, 0.15);
      border-color: var(--cyan);
      transform: translateY(-2px);
      box-shadow: 0 0 15px rgba(56, 217, 252, 0.3);
    }

    .hero-stats {
      display: flex;
      gap: 2.5rem;
      margin-top: 4rem;
      animation: fadeUp 0.7s 0.4s ease both;
    }

    .hero-stat {
      text-align: center;
    }

    .hero-stat-num {
      font-family: var(--font-display);
      font-size: 2rem;
      font-weight: 800;
      display: block;
      line-height: 1.1;
    }

    .hero-stat-num.stat-color-magenta {
      background: linear-gradient(135deg, var(--magenta) 0%, var(--coral) 100%);
      background-clip: text;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .hero-stat-num.stat-color-cyan {
      background: linear-gradient(135deg, var(--cyan) 0%, var(--blue-brand) 100%);
      background-clip: text;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .hero-stat-num.stat-color-orange {
      background: linear-gradient(135deg, var(--orange) 0%, var(--coral) 100%);
      background-clip: text;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .hero-stat-label {
      font-size: 0.78rem;
      color: rgba(255, 255, 255, 0.55);
      font-weight: 400;
      margin-top: 0.15rem;
      display: block;
    }

    .hero-stat-divider {
      width: 1px;
      background: linear-gradient(to bottom, transparent, rgba(56, 217, 252, 0.3), rgba(204, 51, 189, 0.3), transparent);
      align-self: stretch;
    }

    /* Scroll indicator */
    .scroll-indicator {
      margin-top: 3.5rem;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.4rem;
      color: rgba(255, 255, 255, 0.45);
      font-size: 0.72rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      animation: fadeIn 1s 1s ease both;
    }

    .scroll-line {
      width: 1px;
      height: 36px;
      background: linear-gradient(to bottom, rgba(255, 255, 255, 0.45), transparent);
      animation: scrollDown 1.8s infinite;
    }

    @keyframes scrollDown {
      0% {
        transform: scaleY(0);
        transform-origin: top;
        opacity: 1;
      }

      50% {
        transform: scaleY(1);
        transform-origin: top;
        opacity: 1;
      }

      100% {
        transform: scaleY(1);
        transform-origin: bottom;
        opacity: 0;
      }
    }

    /* ─── INSIGHT STRIP ─── */
    .insight-strip {
      background: var(--purple-xdark);
      padding: 1.4rem 2rem;
      overflow: hidden;
    }

    .insight-track {
      display: flex;
      gap: 4rem;
      white-space: nowrap;
      animation: marquee 28s linear infinite;
      width: max-content;
    }

    .insight-item {
      display: inline-flex;
      align-items: center;
      gap: 0.6rem;
      font-size: 0.85rem;
      font-weight: 500;
      color: rgba(255, 255, 255, 0.7);
    }

    .insight-item-dot {
      width: 5px;
      height: 5px;
      background: var(--orange);
      border-radius: 50%;
      flex-shrink: 0;
    }

    @keyframes marquee {
      0% {
        transform: translateX(0);
      }

      100% {
        transform: translateX(-50%);
      }
    }

    /* ─── SECTIONS COMMON ─── */
    section {
      padding: var(--section-pad) clamp(1rem, 5vw, 3rem);
    }

    .container {
      max-width: 1100px;
      margin: 0 auto;
    }

    .section-label {
      font-size: 0.75rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--purple);
      margin-bottom: 0.8rem;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .section-label::before {
      content: '';
      display: block;
      width: 20px;
      height: 2px;
      background: var(--purple);
      border-radius: 2px;
    }

    .section-title {
      font-family: var(--font-display);
      font-weight: 800;
      font-size: clamp(2rem, 4.5vw, 3.2rem);
      line-height: 1.1;
      color: var(--text-dark);
      max-width: 600px;
    }

    .section-desc {
      font-size: 1.05rem;
      color: var(--text-mid);
      max-width: 520px;
      margin-top: 1rem;
      line-height: 1.7;
    }

    /* ─── PROPUESTA DE VALOR ─── */
    #propuesta {
      background: var(--cream);
    }

    .propuesta-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2rem;
      margin-top: 3.5rem;
      align-items: start;
    }

    .propuesta-left .section-title {
      max-width: 460px;
    }

    .dual-card {
      display: grid;
      gap: 1.2rem;
    }

    .persona-card {
      background: var(--white);
      border-radius: var(--radius-lg);
      padding: 2rem;
      border: 1.5px solid rgba(99, 36, 176, 0.1);
      transition: transform 0.2s, box-shadow 0.2s;
    }

    .persona-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 12px 40px rgba(99, 36, 176, 0.1);
    }

    .persona-card.kids {
      background: linear-gradient(135deg, #3B1680 0%, var(--purple) 100%);
      border-color: transparent;
    }

    .persona-card.kids .persona-title,
    .persona-card.kids .persona-desc {
      color: var(--white);
    }

    .persona-card.kids .persona-desc {
      opacity: 0.8;
    }

    .persona-icon {
      width: 52px;
      height: 52px;
      border-radius: var(--radius-sm);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.6rem;
      margin-bottom: 1rem;
    }

    .persona-card.kids .persona-icon {
      background: rgba(255, 255, 255, 0.15);
    }

    .persona-card.parents .persona-icon {
      background: rgba(99, 36, 176, 0.08);
    }

    .persona-title {
      font-family: var(--font-display);
      font-weight: 800;
      font-size: 1.25rem;
      color: var(--text-dark);
      margin-bottom: 0.4rem;
    }

    .persona-desc {
      font-size: 0.93rem;
      color: var(--text-mid);
      line-height: 1.6;
    }

    .persona-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 0.4rem;
      margin-top: 1rem;
    }

    .persona-tag {
      font-size: 0.75rem;
      font-weight: 600;
      padding: 0.25rem 0.75rem;
      border-radius: 50px;
    }

    .kids .persona-tag {
      background: rgba(255, 255, 255, 0.18);
      color: var(--white);
    }

    .parents .persona-tag {
      background: rgba(99, 36, 176, 0.08);
      color: var(--purple);
    }

    /* ─── ZONAS ─── */
    #zonas {
      background: var(--white);
    }

    .zonas-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      gap: 2rem;
      margin-bottom: 3rem;
    }

    .zonas-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.2rem;
    }

    .zona-card {
      border-radius: var(--radius-md);
      padding: 2rem 1.6rem;
      position: relative;
      overflow: hidden;
      cursor: default;
      transition: transform 0.25s;
    }

    .zona-card:hover {
      transform: translateY(-4px);
    }

    .zona-card.purple {
      background: linear-gradient(145deg, var(--purple-dark), var(--purple));
    }

    .zona-card.orange {
      background: linear-gradient(145deg, #E8691A, var(--orange));
    }

    .zona-card.coral {
      background: linear-gradient(145deg, #D94430, var(--coral));
    }

    .zona-card.cyan {
      background: linear-gradient(145deg, #1BBDE8, var(--cyan));
    }

    .zona-card.magenta {
      background: linear-gradient(145deg, #AA1FA0, var(--magenta));
    }

    .zona-card.blue {
      background: linear-gradient(145deg, #2E50D8, var(--blue-brand));
    }

    .zona-card::after {
      content: '';
      position: absolute;
      bottom: -30px;
      right: -30px;
      width: 120px;
      height: 120px;
      background: rgba(255, 255, 255, 0.08);
      border-radius: 50%;
    }

    .zona-emoji {
      font-size: 2.2rem;
      display: block;
      margin-bottom: 1rem;
      position: relative;
      z-index: 1;
    }

    .zona-name {
      font-family: var(--font-display);
      font-weight: 800;
      font-size: 1.1rem;
      color: var(--white);
      position: relative;
      z-index: 1;
    }

    .zona-desc {
      font-size: 0.82rem;
      color: rgba(255, 255, 255, 0.72);
      margin-top: 0.35rem;
      line-height: 1.5;
      position: relative;
      z-index: 1;
    }

    /* Zona especial para padres */
    .zona-card.parents-zone {
      background: var(--cream);
      border: 1.5px dashed rgba(99, 36, 176, 0.15);
      grid-column: span 3;
      display: flex;
      align-items: center;
      gap: 1.5rem;
      padding: 1.2rem 1.8rem;
    }

    .zona-card.parents-zone .zona-emoji {
      margin: 0;
      flex-shrink: 0;
      font-size: 1.8rem;
    }

    .zona-card.parents-zone .zona-name {
      color: var(--purple);
      font-size: 1.05rem;
    }

    .zona-card.parents-zone .zona-desc {
      color: var(--text-mid);
      font-size: 0.82rem;
    }

    .zona-card.parents-zone .zona-badge {
      margin-left: auto;
      background: var(--purple);
      color: var(--white);
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      padding: 0.4rem 1rem;
      border-radius: 50px;
      white-space: nowrap;
      flex-shrink: 0;
    }

    .zona-card.parents-zone .zona-badge.proximamente-badge {
      background: linear-gradient(135deg, var(--orange) 0%, var(--coral) 100%);
      box-shadow: 0 4px 12px rgba(252, 163, 59, 0.25);
    }

    /* ─── CUMPLEAÑOS ─── */
    #cumpleanos {
      background: var(--purple-xdark);
      position: relative;
      overflow: hidden;
    }

    #cumpleanos::before {
      content: '';
      position: absolute;
      top: -150px;
      right: -100px;
      width: 500px;
      height: 500px;
      background: radial-gradient(circle, rgba(252, 163, 59, 0.12) 0%, transparent 65%);
      border-radius: 50%;
    }

    .cumple-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
    }

    .cumple-left .section-label {
      color: var(--orange);
    }

    .cumple-left .section-label::before {
      background: var(--orange);
    }

    .cumple-left .section-title {
      color: var(--white);
    }

    .cumple-left .section-desc {
      color: rgba(255, 255, 255, 0.65);
    }

    .cumple-features {
      margin-top: 2.5rem;
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    .cumple-feature {
      display: flex;
      align-items: flex-start;
      gap: 1rem;
    }

    .cumple-feature-icon {
      width: 40px;
      height: 40px;
      background: rgba(252, 163, 59, 0.15);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
      flex-shrink: 0;
    }

    .cumple-feature-text strong {
      display: block;
      color: var(--white);
      font-weight: 600;
      font-size: 0.95rem;
      margin-bottom: 0.2rem;
    }

    .cumple-feature-text span {
      font-size: 0.83rem;
      color: rgba(255, 255, 255, 0.55);
      line-height: 1.5;
    }

    .cumple-cta {
      margin-top: 2.5rem;
    }

    .cumple-visual {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1rem;
    }

    .cumple-stat-card {
      background: rgba(255, 255, 255, 0.07);
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: var(--radius-md);
      padding: 1.5rem;
      text-align: center;
      backdrop-filter: blur(8px);
      transition: background 0.2s;
    }

    .cumple-stat-card:hover {
      background: rgba(255, 255, 255, 0.11);
    }

    .cumple-stat-num {
      font-family: var(--font-display);
      font-size: 2.4rem;
      font-weight: 800;
      color: var(--orange);
      line-height: 1;
      display: block;
    }

    .cumple-stat-label {
      font-size: 0.8rem;
      color: rgba(255, 255, 255, 0.6);
      margin-top: 0.4rem;
      display: block;
      line-height: 1.4;
    }

    .cumple-stat-card.featured {
      grid-column: span 2;
      background: rgba(252, 163, 59, 0.12);
      border-color: rgba(252, 163, 59, 0.3);
    }

    .cumple-stat-card.featured .cumple-stat-num {
      font-size: 1.3rem;
      color: var(--white);
    }

    .cumple-stat-card.featured .cumple-stat-label {
      color: rgba(255, 255, 255, 0.7);
      font-size: 0.85rem;
    }

    /* ─── COLEGIOS ─── */
    #colegios {
      background: var(--cream);
    }

    .colegios-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 4rem;
      align-items: center;
    }

    .colegio-cards {
      display: grid;
      gap: 1rem;
    }

    .colegio-card {
      background: var(--white);
      border-radius: var(--radius-md);
      padding: 1.4rem 1.6rem;
      display: flex;
      align-items: center;
      gap: 1.2rem;
      border: 1.5px solid rgba(99, 36, 176, 0.08);
      transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
    }

    .colegio-card:hover {
      border-color: rgba(99, 36, 176, 0.25);
      box-shadow: 0 6px 24px rgba(99, 36, 176, 0.08);
      transform: translateX(4px);
    }

    .colegio-card-icon {
      width: 48px;
      height: 48px;
      background: linear-gradient(135deg, var(--purple), var(--magenta));
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.3rem;
      flex-shrink: 0;
    }

    .colegio-card-content strong {
      display: block;
      font-weight: 700;
      font-size: 0.95rem;
      color: var(--text-dark);
      margin-bottom: 0.15rem;
    }

    .colegio-card-content span {
      font-size: 0.82rem;
      color: var(--text-light);
      line-height: 1.4;
    }

    /* ─── DIFERENCIAL (PARA PAPÁS) ─── */
    #diferencial {
      background: var(--white);
    }

    .diferencial-intro {
      text-align: center;
      max-width: 580px;
      margin: 0 auto 4rem;
    }

    .diferencial-intro .section-label {
      justify-content: center;
    }

    .diferencial-intro .section-label::before {
      display: none;
    }

    .diferencial-intro .section-title {
      margin: 0 auto;
      text-align: center;
    }

    .diferencial-intro .section-desc {
      margin: 1rem auto 0;
      text-align: center;
    }

    .diferencial-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
    }

    .dif-card {
      background: var(--cream);
      border-radius: var(--radius-lg);
      padding: 2rem 1.6rem;
      border: 1.5px solid rgba(99, 36, 176, 0.06);
      transition: transform 0.2s, box-shadow 0.2s;
    }

    .dif-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 16px 40px rgba(99, 36, 176, 0.08);
    }

    .dif-card.highlight {
      background: linear-gradient(145deg, var(--purple), var(--purple-dark));
      border-color: transparent;
    }

    .dif-icon {
      width: 52px;
      height: 52px;
      border-radius: var(--radius-sm);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      margin-bottom: 1.2rem;
    }

    .dif-card:not(.highlight) .dif-icon {
      background: rgba(99, 36, 176, 0.1);
    }

    .dif-card.highlight .dif-icon {
      background: rgba(255, 255, 255, 0.15);
    }

    .dif-title {
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 1.1rem;
      margin-bottom: 0.5rem;
      color: var(--text-dark);
    }

    .dif-card.highlight .dif-title,
    .dif-card.highlight .dif-desc {
      color: var(--white);
    }

    .dif-card.highlight .dif-desc {
      opacity: 0.8;
    }

    .dif-desc {
      font-size: 0.88rem;
      color: var(--text-mid);
      line-height: 1.6;
    }

    /* ─── SUCURSALES ─── */
    #sucursales {
      background: var(--cream);
    }

    .sucursales-header {
      text-align: center;
      margin-bottom: 3rem;
    }

    .sucursales-header .section-label {
      justify-content: center;
    }

    .sucursales-header .section-label::before {
      display: none;
    }

    .sucursales-header .section-title {
      margin: 0 auto;
    }

    .sucursales-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.5rem;
      max-width: 820px;
      margin: 0 auto;
    }

    .sucursal-card {
      background: var(--white);
      border-radius: var(--radius-lg);
      padding: 2.5rem 2rem;
      border: 1.5px solid rgba(99, 36, 176, 0.1);
      position: relative;
      overflow: hidden;
      transition: transform 0.2s, box-shadow 0.2s;
    }

    .sucursal-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 20px 50px rgba(99, 36, 176, 0.1);
    }

    .sucursal-card::after {
      content: '';
      position: absolute;
      top: -40px;
      right: -40px;
      width: 140px;
      height: 140px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(99, 36, 176, 0.07) 0%, transparent 70%);
    }

    .sucursal-badge {
      display: inline-block;
      background: rgba(99, 36, 176, 0.1);
      color: var(--purple);
      font-size: 0.72rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      padding: 0.3rem 0.8rem;
      border-radius: 50px;
      margin-bottom: 1.2rem;
    }

    .sucursal-name {
      font-family: var(--font-display);
      font-weight: 800;
      font-size: 1.6rem;
      color: var(--text-dark);
      margin-bottom: 0.5rem;
    }

    .sucursal-size {
      font-size: 2.8rem;
      font-family: var(--font-display);
      font-weight: 800;
      color: var(--purple);
      line-height: 1;
      margin: 1rem 0 0.3rem;
    }

    .sucursal-size-label {
      font-size: 0.8rem;
      color: var(--text-light);
      font-weight: 500;
    }

    .sucursal-soon {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      margin-top: 1.2rem;
      font-size: 0.8rem;
      font-weight: 600;
      color: var(--orange);
    }

    .sucursal-soon-dot {
      width: 6px;
      height: 6px;
      background: var(--orange);
      border-radius: 50%;
      animation: pulse 1.8s infinite;
    }

    /* ─── CTA FINAL ─── */
    #cta-final {
      background: linear-gradient(145deg, var(--purple) 0%, var(--purple-dark) 60%, var(--purple-xdark) 100%);
      text-align: center;
      position: relative;
      overflow: hidden;
      padding: var(--section-pad) 1.5rem;
    }

    #cta-final::before {
      content: '';
      position: absolute;
      top: -100px;
      left: 50%;
      transform: translateX(-50%);
      width: 600px;
      height: 400px;
      background: radial-gradient(ellipse, rgba(252, 163, 59, 0.15) 0%, transparent 70%);
      pointer-events: none;
    }

    .cta-label {
      color: var(--orange);
    }

    .cta-label::before {
      background: var(--orange);
    }

    .cta-label.centered {
      justify-content: center;
    }

    .cta-label.centered::before {
      display: none;
    }

    .cta-title {
      font-family: var(--font-display);
      font-size: clamp(2rem, 5vw, 3.8rem);
      font-weight: 800;
      color: var(--white);
      line-height: 1.1;
      max-width: 700px;
      margin: 0 auto 1.2rem;
    }

    .cta-desc {
      font-size: 1.05rem;
      color: rgba(255, 255, 255, 0.65);
      max-width: 480px;
      margin: 0 auto 2.5rem;
      line-height: 1.65;
    }

    .cta-actions {
      display: flex;
      gap: 1rem;
      justify-content: center;
      flex-wrap: wrap;
    }

    /* ─── FOOTER ─── */
    footer {
      background: var(--purple-xdark);
      padding: 3rem clamp(1rem, 5vw, 3rem);
      border-top: 1px solid rgba(255, 255, 255, 0.06);
    }

    .footer-inner {
      max-width: 1100px;
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      gap: 2rem;
      flex-wrap: wrap;
    }

    .footer-brand .nav-logo-text span:first-child {
      color: #B97FE8;
    }

    .footer-tagline {
      font-size: 0.82rem;
      color: rgba(255, 255, 255, 0.45);
      margin-top: 0.5rem;
      max-width: 220px;
      line-height: 1.5;
    }

    .footer-links-group h4 {
      font-size: 0.72rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      color: rgba(255, 255, 255, 0.4);
      margin-bottom: 0.8rem;
    }

    .footer-links-group ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }

    .footer-links-group a {
      font-size: 0.88rem;
      color: rgba(255, 255, 255, 0.65);
      text-decoration: none;
      transition: color 0.2s;
    }

    .footer-links-group a:hover {
      color: var(--white);
    }

    .footer-bottom {
      max-width: 1100px;
      margin: 2.5rem auto 0;
      padding-top: 1.5rem;
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 1rem;
      flex-wrap: wrap;
    }

    .footer-copy {
      font-size: 0.78rem;
      color: rgba(255, 255, 255, 0.35);
    }

    .footer-instagram {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      font-size: 0.8rem;
      font-weight: 600;
      color: var(--orange);
      text-decoration: none;
      transition: opacity 0.2s;
    }

    .footer-instagram:hover {
      opacity: 0.8;
    }

    /* ─── ANIMATIONS ─── */
    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(24px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes fadeIn {
      from {
        opacity: 0;
      }

      to {
        opacity: 1;
      }
    }

    .reveal {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity 0.65s ease, transform 0.65s ease;
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .reveal-delay-1 {
      transition-delay: 0.1s;
    }

    .reveal-delay-2 {
      transition-delay: 0.2s;
    }

    .reveal-delay-3 {
      transition-delay: 0.3s;
    }

    .reveal-delay-4 {
      transition-delay: 0.4s;
    }

    /* ─── RESPONSIVE ─── */
    @media (max-width: 900px) {

      .propuesta-grid,
      .cumple-grid,
      .colegios-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
      }

      .zonas-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .zona-card.parents-zone {
        grid-column: span 2;
      }

      .diferencial-grid {
        grid-template-columns: 1fr 1fr;
      }

      .sucursales-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
      }

      .zonas-header {
        flex-direction: column;
        align-items: flex-start;
      }

      .nav-links {
        display: none;
      }
    }

    @media (max-width: 600px) {
      .zonas-grid {
        grid-template-columns: 1fr;
      }

      .zona-card.parents-zone {
        grid-column: span 1;
        flex-direction: column;
      }

      .zona-card.parents-zone .zona-badge {
        margin-left: 0;
      }

      .diferencial-grid {
        grid-template-columns: 1fr;
      }

      .hero-stats {
        gap: 1.5rem;
      }

      .hero-stat-num {
        font-size: 1.5rem;
      }

      .cumple-visual {
        grid-template-columns: 1fr;
      }

      .cumple-stat-card.featured {
        grid-column: span 1;
      }

      .footer-inner {
        flex-direction: column;
      }
    }

    /* ─── FAQ ACCORDION STYLE ─── */
    #faq {
      background: var(--white);
    }
    
    .faq-header {
      margin-bottom: 3rem;
      text-align: center;
    }

    /* FAQ Tabs Styling */
    .faq-tabs {
      display: flex;
      justify-content: center;
      gap: 0.8rem;
      margin-bottom: 2.5rem;
      flex-wrap: wrap;
    }

    .faq-tab-btn {
      background: rgba(255, 255, 255, 0.9);
      border: 1.5px solid rgba(99, 36, 176, 0.12);
      color: var(--text-dark);
      font-family: var(--font-body);
      font-size: 0.92rem;
      font-weight: 700;
      padding: 0.75rem 1.4rem;
      border-radius: 50px;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
      box-shadow: 0 4px 10px rgba(99, 36, 176, 0.02);
      outline: none;
    }

    .faq-tab-btn:hover {
      border-color: var(--purple-light);
      background: var(--cream);
      transform: translateY(-2px);
      box-shadow: 0 6px 15px rgba(99, 36, 176, 0.05);
    }

    .faq-tab-btn.active {
      background: linear-gradient(135deg, var(--purple) 0%, var(--purple-light) 100%);
      border-color: transparent;
      color: var(--white);
      box-shadow: 0 8px 20px rgba(99, 36, 176, 0.2);
    }

    .faq-tab-btn.active:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 24px rgba(99, 36, 176, 0.3);
    }

    .faq-tab-btn .tab-icon {
      font-size: 1.1rem;
    }

    .faq-item.faq-hidden {
      display: none;
    }

    .faq-accordion {
      max-width: 800px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    .faq-item {
      background: var(--cream);
      border-radius: var(--radius-sm);
      border: 1.5px solid rgba(99, 36, 176, 0.06);
      overflow: hidden;
      transition: all 0.3s ease;
    }

    .faq-item:hover {
      border-color: rgba(99, 36, 176, 0.15);
      box-shadow: 0 4px 15px rgba(99, 36, 176, 0.04);
    }

    .faq-item.active {
      border-color: var(--purple);
      background: var(--white);
      box-shadow: 0 8px 25px rgba(99, 36, 176, 0.06);
    }

    .faq-question {
      width: 100%;
      padding: 1.2rem 1.6rem;
      background: none;
      border: none;
      font-family: var(--font-display);
      font-size: 1.05rem;
      font-weight: 700;
      color: var(--text-dark);
      text-align: left;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 1rem;
      outline: none;
    }

    .faq-question:hover {
      color: var(--purple-light);
    }

    .faq-icon {
      font-size: 1.5rem;
      color: var(--purple);
      font-weight: 400;
      line-height: 1;
      transition: transform 0.3s ease;
    }

    .faq-item.active .faq-icon {
      color: var(--orange);
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), padding 0.35s ease;
      padding: 0 1.6rem;
    }

    .faq-item.active .faq-answer {
      max-height: 200px;
      padding: 0 1.6rem 1.4rem;
    }

    .faq-answer p {
      font-size: 0.92rem;
      color: var(--text-mid);
      margin: 0;
      line-height: 1.6;
    }

    /* ─── COOKIE CONSENT BANNER ─── */
    #cookie-banner {
      position: fixed;
      bottom: 2rem;
      left: 2rem;
      width: 380px;
      max-width: calc(100vw - 4rem);
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border: 1px solid rgba(99, 36, 176, 0.15);
      border-radius: var(--radius-md);
      box-shadow: 0 15px 35px rgba(99, 36, 176, 0.15);
      z-index: 10001;
      padding: 1.5rem;
      font-family: var(--font-body);
      display: flex;
      flex-direction: column;
      gap: 1rem;
      animation: cookieFadeIn 0.5s cubic-bezier(0.165, 0.84, 0.44, 1) both;
      text-align: left;
    }

    @keyframes cookieFadeIn {
      from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
      }
      to {
        opacity: 1;
        transform: translateY(0) scale(1);
      }
    }

    .cookie-header {
      display: flex;
      align-items: center;
      gap: 0.6rem;
    }

    .cookie-header span:first-child {
      font-size: 1.4rem;
    }

    .cookie-title {
      font-family: var(--font-display);
      font-size: 1.1rem;
      font-weight: 800;
      color: var(--text-dark);
    }

    .cookie-text {
      font-size: 0.85rem;
      color: var(--text-mid);
      line-height: 1.5;
    }

    .cookie-text a {
      color: var(--purple);
      text-decoration: underline;
      font-weight: 700;
    }

    .cookie-buttons {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }

    .cookie-btn {
      padding: 0.7rem 1.2rem;
      border-radius: 50px;
      font-size: 0.82rem;
      font-weight: 700;
      cursor: pointer;
      font-family: var(--font-body);
      border: none;
      text-align: center;
      transition: all 0.2s ease;
      width: 100%;
    }

    .cookie-btn.accept {
      background: linear-gradient(135deg, var(--orange) 0%, var(--coral) 100%);
      color: var(--white);
      box-shadow: 0 4px 10px rgba(252, 163, 59, 0.2);
    }

    .cookie-btn.accept:hover {
      background: linear-gradient(135deg, var(--orange-dark) 0%, var(--coral) 100%);
      transform: translateY(-1px);
    }

    .cookie-btn.reject {
      background: rgba(99, 36, 176, 0.05);
      border: 1px solid rgba(99, 36, 176, 0.12);
      color: var(--purple);
    }

    .cookie-btn.reject:hover {
      background: rgba(99, 36, 176, 0.1);
    }

    .cookie-btn.settings-btn {
      background: none;
      color: var(--text-light);
      font-size: 0.78rem;
      font-weight: 600;
      text-decoration: underline;
      padding: 0.2rem 0;
      border: none;
      box-shadow: none;
    }

    .cookie-btn.settings-btn:hover {
      color: var(--purple);
    }

    /* ─── COOKIE CONFIG MODAL ─── */
    #cookie-modal {
      position: fixed;
      top: 0;
      left: 0;
      width: 100vw;
      height: 100vh;
      background: rgba(26, 10, 48, 0.5);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 10002;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s ease;
    }

    #cookie-modal.open {
      opacity: 1;
      pointer-events: auto;
    }

    .cookie-modal-content {
      background: var(--white);
      border-radius: var(--radius-lg);
      border: 1.5px solid rgba(99, 36, 176, 0.15);
      padding: 2.2rem;
      width: 460px;
      max-width: calc(100vw - 3rem);
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
      display: flex;
      flex-direction: column;
      gap: 1.2rem;
      transform: scale(0.95);
      transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.15);
      text-align: left;
    }

    #cookie-modal.open .cookie-modal-content {
      transform: scale(1);
    }

    .cookie-modal-title {
      font-family: var(--font-display);
      font-size: 1.35rem;
      font-weight: 800;
      color: var(--text-dark);
      margin: 0;
    }

    .cookie-modal-desc {
      font-size: 0.82rem;
      color: var(--text-mid);
      line-height: 1.5;
    }

    .cookie-options-list {
      display: flex;
      flex-direction: column;
      gap: 0.8rem;
      margin: 0.5rem 0;
    }

    .cookie-option-item {
      display: flex;
      justify-content: space-between;
      align-items: center;
      background: var(--cream);
      padding: 0.8rem 1.2rem;
      border-radius: var(--radius-sm);
      border: 1px solid rgba(99, 36, 176, 0.05);
    }

    .cookie-option-info {
      display: flex;
      flex-direction: column;
      max-width: 75%;
    }

    .cookie-option-name {
      font-size: 0.88rem;
      font-weight: 700;
      color: var(--text-dark);
    }

    .cookie-option-desc {
      font-size: 0.72rem;
      color: var(--text-light);
      margin-top: 0.1rem;
      line-height: 1.3;
    }

    .cookie-switch {
      position: relative;
      display: inline-block;
      width: 44px;
      height: 24px;
      flex-shrink: 0;
    }

    .cookie-switch input {
      opacity: 0;
      width: 0;
      height: 0;
    }

    .cookie-slider {
      position: absolute;
      cursor: pointer;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background-color: rgba(99, 36, 176, 0.15);
      transition: .3s;
      border-radius: 24px;
    }

    .cookie-slider:before {
      position: absolute;
      content: "";
      height: 16px;
      width: 16px;
      left: 4px;
      bottom: 4px;
      background-color: var(--white);
      transition: .3s;
      border-radius: 50%;
    }

    .cookie-switch input:checked + .cookie-slider {
      background-color: var(--purple);
    }

    .cookie-switch input:checked + .cookie-slider:before {
      transform: translateX(20px);
    }

    .cookie-switch input:disabled + .cookie-slider {
      background-color: rgba(99, 36, 176, 0.05);
      cursor: not-allowed;
    }

    .cookie-switch input:disabled + .cookie-slider:before {
      background-color: rgba(255, 255, 255, 0.5);
    }

    .cookie-modal-buttons {
      display: flex;
      gap: 0.8rem;
      margin-top: 0.5rem;
    }

    .cookie-modal-btn {
      flex: 1;
      padding: 0.8rem;
      border-radius: 50px;
      font-size: 0.82rem;
      font-weight: 700;
      cursor: pointer;
      font-family: var(--font-body);
      border: none;
      text-align: center;
      transition: all 0.2s;
    }

    .cookie-modal-btn.save {
      background: var(--purple);
      color: var(--white);
    }

    .cookie-modal-btn.save:hover {
      background: var(--purple-light);
    }

    .cookie-modal-btn.accept-all-modal {
      background: linear-gradient(135deg, var(--orange) 0%, var(--coral) 100%);
      color: var(--white);
    }

    .cookie-modal-btn.accept-all-modal:hover {
      background: linear-gradient(135deg, var(--orange-dark) 0%, var(--coral) 100%);
    }

    @media (max-width: 480px) {
      #cookie-banner {
        bottom: 1rem;
        left: 1rem;
        max-width: calc(100vw - 2rem);
      }
      .cookie-modal-buttons {
        flex-direction: column;
        gap: 0.5rem;
      }
    }

    /* ─── CUMPLE & LEGAL PAGE HEADER ─── */
    .cumple-page-header {
      padding: 8rem 1.5rem 3rem;
      background: radial-gradient(circle at 50% 0%, var(--purple-dark) 0%, var(--purple-xdark) 100%);
      text-align: center;
      color: var(--white);
      position: relative;
      overflow: hidden;
    }

    .cumple-page-header::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background-size: 40px 40px;
      background-image:
        linear-gradient(to right, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
      z-index: 1;
      pointer-events: none;
    }

    .header-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      background: rgba(252, 163, 59, 0.12);
      border: 1px solid rgba(252, 163, 59, 0.3);
      color: var(--orange);
      font-size: 0.78rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      padding: 0.4rem 1rem;
      border-radius: 50px;
      margin-bottom: 1rem;
      position: relative;
      z-index: 2;
    }

    .header-title {
      font-family: var(--font-display);
      font-weight: 800;
      font-size: clamp(2.2rem, 5vw, 3.8rem);
      line-height: 1.1;
      max-width: 800px;
      margin: 0 auto;
      position: relative;
      z-index: 2;
    }

    .header-subtitle {
      font-size: clamp(0.95rem, 2vw, 1.15rem);
      color: rgba(255, 255, 255, 0.7);
      max-width: 540px;
      margin: 1rem auto 0;
      position: relative;
      z-index: 2;
    }

    /* ─── EMAIL REDIRECTION MODAL ─── */
    .email-modal {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 11000;
      display: none;
      align-items: center;
      justify-content: center;
      padding: 1.5rem;
    }

    .email-modal.open {
      display: flex;
    }

    .email-modal-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(15, 6, 28, 0.45);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      animation: modalFadeIn 0.3s ease both;
    }

    .email-modal-container {
      position: relative;
      background: var(--white);
      max-width: 460px;
      width: 100%;
      border-radius: var(--radius-lg);
      padding: 2.5rem 2rem;
      border: 1.5px solid rgba(99, 36, 176, 0.15);
      box-shadow: 0 20px 50px rgba(99, 36, 176, 0.2);
      z-index: 2;
      text-align: center;
      animation: modalScaleIn 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.15) both;
    }

    .email-modal-close {
      position: absolute;
      top: 1rem;
      right: 1.2rem;
      background: none;
      border: none;
      font-size: 1.8rem;
      font-weight: 300;
      color: var(--text-light);
      cursor: pointer;
      line-height: 1;
      transition: color 0.2s, transform 0.2s;
    }

    .email-modal-close:hover {
      color: var(--purple);
      transform: scale(1.1);
    }

    .email-modal-header {
      margin-bottom: 2rem;
    }

    .email-modal-icon {
      font-size: 3rem;
      display: block;
      margin-bottom: 0.8rem;
    }

    .email-modal-title {
      font-family: var(--font-display);
      font-size: 1.35rem;
      font-weight: 800;
      color: var(--purple);
      margin-bottom: 0.6rem;
      line-height: 1.3;
    }

    .email-modal-desc {
      font-size: 0.88rem;
      color: var(--text-mid);
      line-height: 1.5;
    }

    .email-modal-options {
      display: flex;
      flex-direction: column;
      gap: 0.8rem;
    }

    .email-opt-btn {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.6rem;
      padding: 0.85rem 1.2rem;
      border-radius: 50px;
      font-family: var(--font-body);
      font-size: 0.92rem;
      font-weight: 700;
      text-decoration: none;
      cursor: pointer;
      border: 1.5px solid transparent;
      transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
      outline: none;
      width: 100%;
    }

    .email-opt-btn .opt-icon {
      font-size: 1.1rem;
    }

    .email-opt-btn.gmail {
      background: #FFF0ED;
      color: #D93025;
      border-color: rgba(217, 48, 37, 0.1);
    }

    .email-opt-btn.gmail:hover {
      background: #D93025;
      color: var(--white);
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(217, 48, 37, 0.2);
    }

    .email-opt-btn.outlook {
      background: #EAF3FF;
      color: #0078D4;
      border-color: rgba(0, 120, 212, 0.1);
    }

    .email-opt-btn.outlook:hover {
      background: #0078D4;
      color: var(--white);
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(0, 120, 212, 0.2);
    }

    .email-opt-btn.default {
      background: rgba(99, 36, 176, 0.05);
      color: var(--purple);
      border-color: rgba(99, 36, 176, 0.12);
    }

    .email-opt-btn.default:hover {
      background: var(--purple);
      color: var(--white);
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(99, 36, 176, 0.2);
    }

    .email-opt-btn.copy {
      background: #FFF9F2;
      color: var(--orange-dark);
      border-color: rgba(252, 163, 59, 0.15);
    }

    .email-opt-btn.copy:hover {
      background: var(--orange);
      color: var(--white);
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(252, 163, 59, 0.2);
    }

    @keyframes modalFadeIn {
      from { opacity: 0; }
      to { opacity: 1; }
    }

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

