:root {
    --navy: #ffffff;
    --deep: #f4f8ff;
    --blue-1: #e8f1ff;
    --blue-2: #daeaff;
    --accent: #1a6fff;
    --accent-2: #0099e6;
    --glow: #38beff;
    --text: #0a1628;
    --muted: #5577a0;
    --card: rgba(255,255,255,0.85);
  }

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

  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    background: #ffffff;
    color: var(--text);
    overflow-x: hidden;
  }




  /* ─── HERO AVATAR ─── */
  .hero-avatar-wrap {
    width: 460px; height: 560px;
    border-radius: 32px;
    overflow: hidden;
    border: 3px solid rgba(26,111,255,0.25);
    box-shadow: 0 0 0 8px rgba(26,111,255,0.07), 0 24px 64px rgba(26,111,255,0.2);
    animation: fadeUp .6s ease both;
    flex-shrink: 0;
  }

  .hero-avatar {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center 10%;
  }

  /* ─── NAV ─── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 1.2rem 5%;
    backdrop-filter: blur(18px);
    background: rgba(255,255,255,0.88);
    border-bottom: 1px solid rgba(30,144,255,0.12);
    box-shadow: 0 1px 24px rgba(26,111,255,0.07);
  }

  .nav-logo {
    
    font-weight: 800; font-size: 1.15rem;
    letter-spacing: .04em;
    background: linear-gradient(90deg, var(--accent), var(--accent-2));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  }

  .nav-links { display: flex; gap: 2.2rem; list-style: none; }
  .nav-links a {
    text-decoration: none; color: var(--muted);
    font-size: .9rem; font-weight: 500;
    letter-spacing: .02em;
    transition: color .25s;
  }
  .nav-links a:hover { color: var(--accent); }

  .nav-cta {
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    color: #fff; border: none; border-radius: 1000px;
    padding: .55rem 1.1rem; font-size: .82rem; font-weight: 600;
    cursor: pointer; letter-spacing: .02em;
    box-shadow: 0 0 20px rgba(30,144,255,0.35);
    transition: box-shadow .3s, transform .2s;
    white-space: nowrap;
  }
  .nav-cta:hover { box-shadow: 0 0 35px rgba(0,200,255,0.5); transform: translateY(-1px); }

  /* ─── WRAPPER ─── */
  .wrap { position: relative; z-index: 2; }

  /* ─── HERO ─── */
  .hero {
    min-height: 100vh;
    display: flex; flex-direction: row;
    justify-content: center; align-items: center;
    text-align: left;
    padding: 8rem 8% 5rem;
    gap: 5rem;
    position: relative;
  }

  .hero-content {
    flex: 1;
    display: flex; flex-direction: column; align-items: flex-start;
  }

  .hero-eyebrow {
    display: inline-flex; align-items: center; gap: .5rem;
    background: rgba(26,111,255,0.08);
    border: 1px solid rgba(26,111,255,0.2);
    border-radius: 100px;
    padding: .35rem 1rem;
    font-size: .8rem; letter-spacing: .1em;
    text-transform: uppercase; color: var(--accent);
    margin-bottom: 1.8rem;
    animation: fadeUp .8s ease both;
  }

  .hero-eyebrow::before {
    content: '';
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--accent-2);
    box-shadow: 0 0 8px var(--accent-2);
    animation: pulse 2s infinite;
  }

  @keyframes pulse {
    0%, 100% { opacity: 1; } 50% { opacity: .4; }
  }

  .hero h1 {
    
    font-size: clamp(2.2rem, 4.5vw, 4rem);
    font-weight: 800;
    line-height: .95;
    letter-spacing: -.03em;
    animation: fadeUp .8s .15s ease both;
  }

  .hero h1 .name {
    display: block;
    background: linear-gradient(135deg, #0a1628 30%, #1a6fff 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  }

  .hero h1 .brand {
    display: block;
    background: linear-gradient(90deg, var(--accent) 0%, var(--accent-2) 60%, #7df9ff 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  }

  .hero-sub {
    max-width: 520px;
    color: var(--muted);
    font-size: 1.05rem; line-height: 1.7;
    margin: 1.8rem 0 2.8rem;
    font-weight: 300;
    animation: fadeUp .8s .3s ease both;
  }

  .hero-btns {
    display: flex; gap: 1rem; flex-wrap: wrap; justify-content: flex-start;
    animation: fadeUp .8s .45s ease both;
  }

  .btn-primary {
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    color: #fff; border: none; border-radius: 1000px;
    padding: .85rem 2.2rem; font-size: 1rem; font-weight: 600;
    cursor: pointer; letter-spacing: .02em;
    box-shadow: 0 0 30px rgba(30,144,255,0.4), 0 4px 20px rgba(0,0,0,0.4);
    transition: all .3s;
  }
  .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 0 50px rgba(0,200,255,0.6); }

  .btn-outline {
    background: transparent;
    color: var(--accent-2); border: 1.5px solid rgba(30,144,255,0.4);
    border-radius: 1000px; padding: .85rem 2.2rem; font-size: 1rem; font-weight: 600;
    cursor: pointer; letter-spacing: .02em;
    transition: all .3s;
  }
  .btn-outline:hover { border-color: var(--accent-2); background: rgba(30,144,255,0.08); }



  /* ─── STATS ─── */
  .stats {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    border: 1px solid rgba(26,111,255,0.14);
    border-radius: 16px; overflow: hidden;
    margin: 4rem 5%;
    background: rgba(26,111,255,0.08);
  }

  .stat {
    padding: 2.5rem 2rem;
    text-align: center;
    background: #fff;
  }

  .stat-num {
    
    font-size: clamp(1.6rem, 4vw, 3.5rem);
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    display: block; line-height: 1;
  }
  .stat-label { color: var(--muted); font-size: .88rem; margin-top: .5rem; letter-spacing: .04em; }

  /* ─── SECTION ─── */
  section { padding: 6rem 5%; }

  .section-tag {
    display: inline-block;
    font-size: .72rem; letter-spacing: .15em; text-transform: uppercase;
    color: var(--accent-2);
    margin-bottom: 1rem;
    padding: .2rem .8rem;
    border-left: 2px solid var(--accent);
  }

  .section-title {
    
    font-size: clamp(1.6rem, 4vw, 3.2rem);
    font-weight: 800; line-height: 1.1;
    letter-spacing: -.02em;
    margin-bottom: 1.2rem;
  }

  .section-title span {
    background: linear-gradient(90deg, var(--accent), var(--accent-2));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  }

  .section-sub { color: var(--muted); font-size: 1rem; line-height: 1.7; max-width: 520px; }

  /* ─── MAIA REACH ─── */
  .maia-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 4rem;
  }

  .maia-features { display: flex; flex-direction: column; gap: 1.2rem; margin-top: 2rem; }

  .feature-card {
    display: flex; gap: 1rem; align-items: flex-start;
    background: #fff;
    border: 1px solid rgba(26,111,255,0.13);
    border-radius: 12px;
    padding: 1.2rem 1.4rem;
    box-shadow: 0 2px 16px rgba(26,111,255,0.06);
    transition: border-color .3s, transform .3s, box-shadow .3s;
  }
  .feature-card:hover { border-color: rgba(0,153,230,0.4); transform: translateX(6px); box-shadow: 0 6px 30px rgba(26,111,255,0.12); }

  .feature-icon {
    width: 42px; height: 42px; flex-shrink: 0;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(30,144,255,0.2), rgba(0,200,255,0.1));
    border: 1px solid rgba(30,144,255,0.3);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
  }

  .feature-card h4 {
    
    font-size: 1rem; font-weight: 700; margin-bottom: .25rem;
  }
  .feature-card p { color: var(--muted); font-size: .88rem; line-height: 1.6; }

  /* ─── CALL SIMULATOR ─── */
  .maia-call-sim {
    position: relative; z-index: 2;
    width: 92%;
    background: #fff;
    border: 1px solid rgba(26,111,255,0.18);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(26,111,255,0.13);
  }

  .sim-header {
    display: flex; align-items: center; gap: .8rem;
    padding: 1rem 1.2rem;
    border-bottom: 1px solid rgba(26,111,255,0.1);
    background: #f8fbff;
  }

  .sim-avatar {
    width: 36px; height: 36px; border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    display: flex; align-items: center; justify-content: center;
    font-size: .9rem; font-weight: 700; color: #fff;
    box-shadow: 0 0 10px rgba(26,111,255,0.3);
    flex-shrink: 0;
  }

  .sim-info { flex: 1; }
  .sim-title { font-weight: 700; font-size: .9rem; color: var(--text); }
  .sim-sub { font-size: .72rem; color: var(--muted); }

  .sim-live {
    display: flex; align-items: center; gap: .35rem;
    font-size: .68rem; font-weight: 700; letter-spacing: .1em;
    color: #e53935;
  }

  .live-dot {
    width: 7px; height: 7px; border-radius: 50%;
    background: #e53935;
    animation: pulse 1.2s infinite;
  }

  .sim-stats {
    display: grid; grid-template-columns: repeat(3,1fr);
    border-bottom: 1px solid rgba(26,111,255,0.08);
  }

  .sim-stat {
    padding: .8rem .5rem;
    text-align: center;
    border-right: 1px solid rgba(26,111,255,0.08);
  }
  .sim-stat:last-child { border-right: none; }

  .sim-stat-num {
    font-size: 1.4rem; font-weight: 800;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    line-height: 1;
    transition: all .3s;
  }

  .sim-stat-label { font-size: .65rem; color: var(--muted); margin-top: .2rem; }

  .sim-call-box {
    padding: 1.5rem 1.2rem 1rem;
    text-align: center;
    position: relative;
    min-height: 140px;
    display: flex; flex-direction: column; align-items: center; gap: .4rem;
    border-bottom: 1px solid rgba(26,111,255,0.08);
  }

  .call-pulse-ring {
    position: absolute;
    width: 60px; height: 60px; border-radius: 50%;
    border: 2px solid rgba(26,111,255,0.2);
    top: 50%; left: 50%; transform: translate(-50%,-60%);
    animation: ringPulse 1.5s ease-out infinite;
    pointer-events: none;
  }

  @keyframes ringPulse {
    0% { transform: translate(-50%,-60%) scale(.8); opacity: .8; }
    100% { transform: translate(-50%,-60%) scale(1.8); opacity: 0; }
  }

  .call-icon { font-size: 1.6rem; line-height: 1; }

  .call-prospect {
    font-weight: 700; font-size: .95rem; color: var(--text);
    min-height: 1.2em;
    transition: opacity .4s;
  }

  .call-status {
    font-size: .75rem; color: var(--muted);
    min-height: 1em;
  }

  .call-timer {
    font-size: .75rem; font-weight: 600;
    color: var(--accent); letter-spacing: .08em;
    min-height: 1em;
  }

  .call-waveform {
    display: flex; align-items: center; gap: 3px;
    height: 28px; margin-top: .2rem;
    opacity: 0;
    transition: opacity .5s;
  }

  .call-waveform.active { opacity: 1; }

  .call-waveform span {
    display: block; width: 3px; border-radius: 2px;
    background: linear-gradient(to top, var(--accent), var(--accent-2));
    animation: wave 0.8s ease-in-out infinite alternate;
    height: 6px;
  }

  .call-waveform span:nth-child(1)  { animation-delay: 0s;    }
  .call-waveform span:nth-child(2)  { animation-delay: .08s;  }
  .call-waveform span:nth-child(3)  { animation-delay: .16s;  }
  .call-waveform span:nth-child(4)  { animation-delay: .24s;  }
  .call-waveform span:nth-child(5)  { animation-delay: .32s;  }
  .call-waveform span:nth-child(6)  { animation-delay: .24s;  }
  .call-waveform span:nth-child(7)  { animation-delay: .16s;  }
  .call-waveform span:nth-child(8)  { animation-delay: .08s;  }
  .call-waveform span:nth-child(9)  { animation-delay: .04s;  }
  .call-waveform span:nth-child(10) { animation-delay: 0s;    }

  @keyframes wave {
    from { height: 4px; }
    to   { height: 22px; }
  }

  .sim-log { padding: .8rem 1.2rem 1rem; }
  .log-title { font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: .5rem; }

  .log-list { display: flex; flex-direction: column; gap: .35rem; max-height: 100px; overflow: hidden; }

  .log-item {
    display: flex; align-items: center; gap: .5rem;
    font-size: .75rem; color: var(--text);
    opacity: 0;
    transform: translateY(8px);
    animation: logIn .4s ease forwards;
  }

  .log-dot {
    width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0;
  }
  .log-dot.success { background: #00c853; box-shadow: 0 0 6px #00c853; }
  .log-dot.missed  { background: #ff9800; }
  .log-dot.meeting { background: var(--accent); box-shadow: 0 0 6px var(--accent); }

  .log-name { font-weight: 600; flex: 1; }
  .log-result { color: var(--muted); font-size: .7rem; }

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

  /* ─── END CALL SIM ─── */

  /* MAIA visual */
  .maia-visual {
    position: relative;
    height: 460px;
    border-radius: 20px;
    background: linear-gradient(145deg, #daeaff, #e8f4ff);
    border: 1px solid rgba(26,111,255,0.15);
    overflow: hidden;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 12px 50px rgba(26,111,255,0.1);
  }

  .maia-visual::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 60% 60% at 50% 40%, rgba(26,111,255,0.12) 0%, transparent 70%);
  }

  .maia-ui {
    position: relative; z-index: 2;
    width: 85%;
    background: rgba(255,255,255,0.96);
    border: 1px solid rgba(26,111,255,0.18);
    border-radius: 14px;
    padding: 1.4rem;
    box-shadow: 0 20px 60px rgba(26,111,255,0.12);
  }

  .maia-header {
    display: flex; align-items: center; gap: .6rem;
    margin-bottom: 1rem;
    padding-bottom: .8rem;
    border-bottom: 1px solid rgba(26,111,255,0.12);
  }

  .maia-avatar {
    width: 34px; height: 34px; border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    display: flex; align-items: center; justify-content: center;
    font-size: .85rem; font-weight: 700; color: #fff;
    box-shadow: 0 0 12px rgba(30,144,255,0.5);
  }

  .maia-name {  font-weight: 700; font-size: .95rem; }
  .maia-status { font-size: .72rem; color: #00e676; letter-spacing: .04em; }

  .chat-bubble {
    padding: .7rem 1rem;
    border-radius: 10px;
    font-size: .83rem;
    line-height: 1.5;
    margin-bottom: .6rem;
    animation: fadeUp .5s ease both;
  }
  .chat-ai {
    background: rgba(26,111,255,0.07);
    border: 1px solid rgba(26,111,255,0.15);
    color: var(--text);
    border-bottom-left-radius: 3px;
    animation-delay: .1s;
  }
  .chat-user {
    background: rgba(0,153,230,0.06);
    border: 1px solid rgba(0,153,230,0.12);
    color: var(--muted);
    margin-left: auto;
    max-width: 80%;
    border-bottom-right-radius: 3px;
    text-align: right;
    animation-delay: .3s;
  }

  .typing {
    display: flex; gap: 4px; padding: .6rem 1rem;
    background: rgba(30,144,255,0.08);
    border-radius: 10px; width: fit-content;
    border: 1px solid rgba(30,144,255,0.15);
  }
  .typing span {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--accent-2); opacity: .5;
    animation: bounce 1.2s infinite;
  }
  .typing span:nth-child(2) { animation-delay: .2s; }
  .typing span:nth-child(3) { animation-delay: .4s; }
  @keyframes bounce { 0%,80%,100% { transform: translateY(0); } 40% { transform: translateY(-6px); opacity: 1; } }

  /* ─── PROGRAM ─── */
  .program-section {
    background: linear-gradient(180deg, transparent 0%, rgba(232,244,255,0.6) 50%, transparent 100%);
  }

  .program-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 4rem;
  }

  .timeline { display: flex; flex-direction: column; gap: 0; margin-top: 1rem; }

  .tl-item {
    display: flex; gap: 1.2rem;
    padding-bottom: 1.8rem;
    position: relative;
  }

  .tl-item::after {
    content: '';
    position: absolute;
    left: 15px; top: 32px;
    width: 1px; height: calc(100% - 12px);
    background: linear-gradient(to bottom, rgba(30,144,255,0.4), transparent);
  }
  .tl-item:last-child::after { display: none; }

  .tl-dot {
    width: 32px; height: 32px; flex-shrink: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    display: flex; align-items: center; justify-content: center;
    font-size: .75rem; font-weight: 700; color: #fff;
    box-shadow: 0 0 15px rgba(30,144,255,0.4);
    z-index: 1;
  }

  .tl-content h4 {
    
    font-size: 1rem; font-weight: 700;
    margin-bottom: .3rem;
  }
  .tl-content p { color: var(--muted); font-size: .88rem; line-height: 1.6; }

  /* Program card */
  .program-card {
    background: #fff;
    border: 1px solid rgba(26,111,255,0.18);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 12px 50px rgba(26,111,255,0.1), inset 0 1px 0 rgba(255,255,255,0.9);
  }

  .program-card::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(ellipse 40% 40% at 60% 30%, rgba(26,111,255,0.06) 0%, transparent 60%);
    pointer-events: none;
  }

  .price-tag {
    
    font-size: 3.5rem; font-weight: 800;
    background: linear-gradient(135deg, #0a1628, var(--accent));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    line-height: 1; margin: .5rem 0;
  }

  .price-label { color: var(--muted); font-size: .85rem; margin-bottom: 1.8rem; }

  .include-list { list-style: none; display: flex; flex-direction: column; gap: .8rem; margin-bottom: 2rem; }
  .include-list li {
    display: flex; gap: .7rem; align-items: center;
    font-size: .92rem; color: var(--text);
  }
  .include-list li::before {
    content: '✓';
    width: 20px; height: 20px; flex-shrink: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    display: flex; align-items: center; justify-content: center;
    font-size: .68rem; font-weight: 700; color: #fff;
  }

  /* ─── ABOUT ─── */
  .about-section {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 5rem;
    align-items: center;
  }

  .about-portrait {
    width: 300px; height: 400px; flex-shrink: 0;
    border-radius: 20px;
    background: #daeaff;
    border: 1px solid rgba(26,111,255,0.18);
    position: relative;
    overflow: hidden;
    display: flex; align-items: flex-end; justify-content: center;
    box-shadow: 0 0 60px rgba(26,111,255,0.1), 0 20px 40px rgba(26,111,255,0.08);
  }

  .portrait-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 15%;
  }

  .about-portrait::after {
    content: '👤'; display: none;
    position: absolute;
    bottom: 0; left: 50%; transform: translateX(-50%);
    font-size: 9rem; line-height: 1;
    opacity: .18;
  }

  .portrait-glow {
    position: absolute; bottom: 0; left: 0; right: 0; height: 50%;
    background: linear-gradient(to top, rgba(26,111,255,0.08), transparent);
  }

  .portrait-label {
    position: absolute; bottom: 1rem; left: 50%; transform: translateX(-50%);
    white-space: nowrap;
    background: rgba(255,255,255,0.92);
    border: 1px solid rgba(26,111,255,0.2);
    border-radius: 100px;
    padding: .35rem 1rem;
    font-size: .78rem; letter-spacing: .06em;
    color: var(--accent);
    z-index: 2;
  }

  .about-text .section-title { margin-bottom: .8rem; }
  .about-quote {
    border-left: 3px solid var(--accent);
    padding-left: 1.2rem;
    margin: 1.5rem 0;
    color: var(--muted);
    font-style: italic;
    font-size: 1.05rem;
    line-height: 1.7;
  }

  .badges { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.5rem; }
  .badge {
    background: rgba(26,111,255,0.07);
    border: 1px solid rgba(26,111,255,0.2);
    border-radius: 100px;
    padding: .3rem .9rem;
    font-size: .8rem; color: var(--accent);
    letter-spacing: .04em;
  }

  /* ─── CTA ─── */
  .cta-section {
    text-align: center;
    padding: 8rem 5%;
    position: relative;
    background: linear-gradient(180deg, transparent, #f0f7ff 50%, transparent);
  }

  .cta-section::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 70% 60% at 50% 50%, rgba(26,111,255,0.07) 0%, transparent 70%);
  }

  .cta-section .section-title { font-size: clamp(1.8rem, 5vw, 4rem); }

  .cta-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 800px;
    margin: 3.5rem auto 0;
  }

  .cta-card {
    background: #fff;
    border: 1px solid rgba(26,111,255,0.15);
    border-radius: 16px;
    padding: 2rem;
    text-align: left;
    box-shadow: 0 4px 24px rgba(26,111,255,0.07);
    transition: all .3s;
    cursor: pointer;
    position: relative;
    overflow: hidden;
  }

  .cta-card:hover {
    border-color: rgba(26,111,255,0.4);
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(26,111,255,0.14);
  }

  .cta-card-link {
    color: var(--accent); font-size: .88rem; font-weight: 600;
    display: flex; align-items: center; gap: .4rem;
  }
  .cta-card-link::after { content: '→'; }

  /* ─── FOOTER ─── */
  footer {
    border-top: 1px solid rgba(26,111,255,0.1);
    padding: 3rem 5%;
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 1rem;
    background: #f8fbff;
  }

  .footer-logo {
    
    font-weight: 800; font-size: 1rem;
    background: linear-gradient(90deg, var(--accent), var(--accent-2));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  }

  .footer-copy { color: var(--muted); font-size: .82rem; }

  .footer-links { display: flex; gap: 1.5rem; }
  .footer-links a {
    color: var(--muted); text-decoration: none; font-size: .82rem;
    transition: color .2s;
  }
  .footer-links a:hover { color: var(--accent-2); }

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

  .reveal {
    opacity: 0; transform: translateY(32px);
    transition: opacity .7s ease, transform .7s ease;
  }
  .reveal.visible { opacity: 1; transform: translateY(0); }

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

    /* NAV */
    .nav-links { display: none; }
    .nav-logo { font-size: .95rem; }
    nav { padding: 1rem 4%; }

    /* HERO */
    .hero {
      min-height: auto;
      flex-direction: column-reverse;
      padding: 7rem 4% 4rem;
      text-align: center;
      gap: 2.5rem;
    }
    .hero-content { align-items: center; }
    .hero-avatar-wrap { width: 260px; height: 320px; border-radius: 24px; }
    .hero h1 { font-size: 2.4rem; letter-spacing: -.02em; line-height: 1; }
    .hero-sub { font-size: .92rem; margin: 1.2rem auto 2rem; }
    .hero-btns { flex-direction: column; align-items: center; gap: .75rem; }
    .btn-primary, .btn-outline { width: 100%; max-width: 320px; padding: .8rem 1.5rem; font-size: .92rem; }

    /* STATS */
    .stats { grid-template-columns: repeat(3,1fr); margin: 2rem 4%; }
    .stat { padding: 1.2rem .8rem; }
    .stat-num { font-size: 1.6rem; }
    .stat-label { font-size: .65rem; }

    /* SECTIONS */
    section { padding: 3.5rem 4%; }

    /* SECTION TITLES */
    .section-title { font-size: 1.75rem; }
    .section-sub { font-size: .9rem; }

    /* MAIA GRID */
    .maia-grid { grid-template-columns: 1fr; gap: 2rem; }
    .maia-visual { height: auto; min-height: 340px; border-radius: 14px; }
    .maia-call-sim { width: 100%; }
    .maia-features { gap: .8rem; }
    .feature-card { padding: 1rem 1.1rem; }
    .feature-card h4 { font-size: .9rem; }
    .feature-card p { font-size: .82rem; }

    /* PROGRAM */
    .program-grid { grid-template-columns: 1fr; gap: 2rem; }
    .program-card { padding: 1.6rem; }
    .price-tag { font-size: 2.4rem; }

    /* ABOUT */
    .about-section { grid-template-columns: 1fr; gap: 2rem; }
    .about-portrait { width: 100%; height: 220px; }
    .about-quote { font-size: .92rem; }

    /* CTA */
    .cta-cards { grid-template-columns: 1fr; gap: 1rem; }
    .cta-section { padding: 4rem 4%; }
    .cta-section .section-title { font-size: 1.9rem; }

    /* FOOTER */
    footer { flex-direction: column; text-align: center; padding: 2rem 4%; gap: .75rem; }
    .footer-links { justify-content: center; }

    /* SLIDER */
    .slider-section { padding: 2rem 0; }
    .slider-card { font-size: .8rem; padding: .55rem 1rem; }

    /* PROGRAM TIMELINE */
    .tl-content h4 { font-size: .9rem; }
    .tl-content p { font-size: .82rem; }

    /* TESTIMONIOS */
    .testimonios-section { padding: 3.5rem 4%; }
    .testi-card { padding: 1.3rem; }
    .testi-text { font-size: .86rem; }
    .testi-name { font-size: .84rem; }
    .testi-role { font-size: .72rem; }

    /* INCLUDE LIST */
    .include-list li { font-size: .86rem; }
  }

  /* ─── INFINITE SLIDER ─── */
  .slider-section {
    padding: 3rem 0;
    overflow: hidden;
    position: relative;
    border-top: 1px solid rgba(26,111,255,0.08);
    border-bottom: 1px solid rgba(26,111,255,0.08);
    background: #f8fbff;
  }

  .slider-track-wrap {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .slider-track {
    display: flex;
    gap: 1rem;
    width: max-content;
    animation: scrollLeft 28s linear infinite;
  }

  .slider-track.reverse {
    animation: scrollRight 32s linear infinite;
  }

  .slider-track:hover { animation-play-state: paused; }

  @keyframes scrollLeft {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
  }

  @keyframes scrollRight {
    from { transform: translateX(-50%); }
    to   { transform: translateX(0); }
  }

  .slider-card {
    display: flex;
    align-items: center;
    gap: .7rem;
    background: #fff;
    border: 1px solid rgba(26,111,255,0.12);
    border-radius: 100px;
    padding: .65rem 1.3rem;
    white-space: nowrap;
    font-size: .88rem;
    font-weight: 500;
    color: var(--text);
    box-shadow: 0 2px 12px rgba(26,111,255,0.06);
    transition: border-color .2s, box-shadow .2s;
    flex-shrink: 0;
  }

  .slider-card:hover {
    border-color: rgba(26,111,255,0.3);
    box-shadow: 0 4px 20px rgba(26,111,255,0.12);
  }

  .slider-card .s-icon {
    font-size: 1.1rem;
    line-height: 1;
  }

  .slider-card .s-text { color: var(--text); }
  .slider-card .s-highlight {
    font-weight: 700;
    background: linear-gradient(90deg, var(--accent), var(--accent-2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-left: .15rem;
  }

  /* Fade edges */
  .slider-section::before,
  .slider-section::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
  }
  .slider-section::before { left: 0; background: linear-gradient(to right, #f8fbff, transparent); }
  .slider-section::after  { right: 0; background: linear-gradient(to left, #f8fbff, transparent); }
  /* ─── END INFINITE SLIDER ─── */


  /* ─── TESTIMONIOS ─── */
  .testimonios-section {
    padding: 6rem 5%;
    background: #fff;
    overflow: hidden;
  }

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

  .testi-card {
    background: #f8fbff;
    border: 1px solid rgba(26,111,255,0.1);
    border-radius: 16px;
    padding: 1.6rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: transform .3s, box-shadow .3s, border-color .3s;
    position: relative;
    overflow: hidden;
  }

  .testi-card::before {
    content: "“";
    position: absolute;
    top: -8px; right: 16px;
    font-size: 6rem;
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: .12;
    pointer-events: none;
  }

  .testi-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(26,111,255,0.1);
    border-color: rgba(26,111,255,0.25);
  }

  .testi-card.featured {
    background: linear-gradient(145deg, #e8f1ff, #f0f8ff);
    border-color: rgba(26,111,255,0.22);
    grid-row: span 1;
  }

  .testi-stars {
    display: flex;
    gap: 2px;
    font-size: .85rem;
  }

  .testi-text {
    font-size: .92rem;
    line-height: 1.7;
    color: var(--text);
    flex: 1;
  }

  .testi-text strong {
    background: linear-gradient(90deg, var(--accent), var(--accent-2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
  }

  .testi-author {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding-top: .8rem;
    border-top: 1px solid rgba(26,111,255,0.08);
  }

  .testi-avatar {
    width: 38px; height: 38px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: .9rem; font-weight: 800;
    color: #fff;
    flex-shrink: 0;
  }

  .testi-avatar.a1 { background: linear-gradient(135deg, #1a6fff, #00c8ff); }
  .testi-avatar.a2 { background: linear-gradient(135deg, #7b2ff7, #e040fb); }
  .testi-avatar.a3 { background: linear-gradient(135deg, #00b09b, #96c93d); }
  .testi-avatar.a4 { background: linear-gradient(135deg, #f7971e, #ffd200); }
  .testi-avatar.a5 { background: linear-gradient(135deg, #e53935, #ff6f00); }
  .testi-avatar.a6 { background: linear-gradient(135deg, #0f2027, #203a43); }

  .testi-name { font-weight: 700; font-size: .88rem; color: var(--text); }
  .testi-role { font-size: .75rem; color: var(--muted); }

  .testi-badge {
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    background: rgba(26,111,255,0.08);
    border: 1px solid rgba(26,111,255,0.15);
    border-radius: 100px;
    padding: .2rem .7rem;
    font-size: .68rem;
    color: var(--accent);
    font-weight: 600;
    margin-top: .3rem;
    width: fit-content;
  }

  @media (min-width: 821px) and (max-width: 1100px) {
    .testimonios-grid { grid-template-columns: repeat(2, 1fr); }
  }

  /* Testimonios viewport always present */
  .testi-viewport {
    overflow: hidden;
    width: 100%;
  }

  /* Mobile slider */
  @media (max-width: 820px) {
    .testi-viewport { overflow: hidden; }

    .testimonios-grid {
      display: flex !important;
      flex-wrap: nowrap;
      gap: 0;
      width: 100%;
      will-change: transform;
      transition: transform .42s cubic-bezier(.4,0,.2,1);
    }

    .testi-card {
      min-width: 100%;
      width: 100%;
      flex-shrink: 0;
      box-sizing: border-box;
    }

    .testi-slider-controls {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 1rem;
      margin-top: 1.5rem;
    }

    .testi-arrow {
      width: 42px; height: 42px;
      border-radius: 50%;
      border: 1.5px solid rgba(26,111,255,0.2);
      background: #fff;
      display: flex; align-items: center; justify-content: center;
      cursor: pointer;
      font-size: 1.1rem;
      color: var(--accent);
      transition: background .2s, border-color .2s, transform .15s;
      box-shadow: 0 2px 12px rgba(26,111,255,0.1);
      flex-shrink: 0;
      -webkit-tap-highlight-color: transparent;
    }
    .testi-arrow:active { transform: scale(.9); background: rgba(26,111,255,0.06); }

    .testi-dots {
      display: flex;
      gap: .5rem;
      align-items: center;
    }

    .testi-dot {
      width: 8px; height: 8px;
      border-radius: 50%;
      background: rgba(26,111,255,0.18);
      cursor: pointer;
      transition: background .25s, transform .25s;
      -webkit-tap-highlight-color: transparent;
    }
    .testi-dot.active {
      background: var(--accent);
      transform: scale(1.4);
    }
  }

  @media (min-width: 821px) {
    .testi-slider-controls { display: none; }
  }
  /* ─── END TESTIMONIOS ─── */
/* ─── FAQ ─── */
.faq-section {
  padding: 6rem 5%;
  max-width: 860px;
  margin: 0 auto;
}

.faq-list {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.faq-item {
  border: 1px solid rgba(26,111,255,0.15);
  border-radius: 16px;
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(8px);
  overflow: hidden;
  transition: border-color .25s, box-shadow .25s;
}

.faq-item:hover {
  border-color: rgba(26,111,255,0.35);
  box-shadow: 0 4px 24px rgba(26,111,255,0.08);
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  font-family: inherit;
}

.faq-icon {
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform .3s;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .3s;
}

.faq-item.open .faq-a {
  max-height: 300px;
}

.faq-a p {
  padding: 0 1.5rem 1.25rem;
  color: var(--muted);
  font-size: .95rem;
  line-height: 1.75;
}

@media (max-width: 820px) {
  .faq-section { padding: 4rem 4%; }
  .faq-q { font-size: .92rem; padding: 1rem 1.2rem; }
  .faq-a p { padding: 0 1.2rem 1rem; }
}
/* ─── END FAQ ─── */
