:root{
    --bg:#0D0C12;
    --bg-soft:#131019;
    --surface:#18151F;
    --surface-2:#211D2C;
    --cream:#F4EEDD;
    --cream-dim:#E7DFC9;
    --amber:#FFB627;
    --amber-dim:#E59E14;
    --violet:#8B7CFF;
    --violet-soft:#6F5FE0;
    --ink:#14121A;
    --text:#F5F3EC;
    --text-muted:#ABA6C2;
    --line:rgba(245,243,236,0.12);
    --radius-lg:28px;
    --radius-md:20px;
    --container:1180px;
    --shadow-pop: 6px 6px 0 var(--ink);
  }

  *,*::before,*::after{box-sizing:border-box;}
  html{scroll-behavior:smooth;}
  body{
    margin:0;
    background:var(--bg);
    color:var(--text);
    font-family:'Tajawal', sans-serif;
    overflow-x:hidden;
    -webkit-font-smoothing:antialiased;
  }
  h1,h2,h3,h4,.display{
    font-family:'Baloo 2', 'Tajawal', sans-serif;
    font-weight:700;
    margin:0;
    line-height:1.15;
  }
  p{margin:0;}
  img{max-width:100%;display:block;}
  a{color:inherit;text-decoration:none;}
  ul{margin:0;padding:0;list-style:none;}
  button{font-family:inherit;cursor:pointer;}

  ::selection{background:var(--amber);color:var(--ink);}

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

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

  .dotted{
    background-image:radial-gradient(rgba(245,243,236,0.10) 1.4px, transparent 1.4px);
    background-size:18px 18px;
  }

  /* ---------- Custom cursor glow (desktop only) ---------- */
  #cursor-glow{
    position:fixed; inset:0; pointer-events:none; z-index:9999;
    width:340px; height:340px;
    border-radius:50%;
    background:radial-gradient(circle, rgba(139,124,255,0.16), transparent 65%);
    transform:translate(-50%,-50%);
    will-change:transform;
    transition:opacity .3s ease;
    opacity:0;
  }

  /* ---------- Header ---------- */
  header{
    position:fixed; top:0; right:0; left:0; z-index:500;
    padding:18px 0;
    transition:padding .3s ease, background .3s ease, border-color .3s ease;
    border-bottom:1px solid transparent;
  }
  header.scrolled{
    padding:10px 0;
    background:rgba(13,12,18,0.86);
    backdrop-filter:blur(14px);
    border-bottom:1px solid var(--line);
  }
  .nav-row{display:flex;align-items:center;justify-content:space-between;gap:16px;}
  .brand{display:flex;align-items:center;gap:10px;}
  .brand img{width:42px;height:42px;border-radius:50%;border:2px solid var(--cream);}
  .brand .word{font-family:'Baloo 2';font-size:1.25rem;font-weight:800;letter-spacing:.5px;}
  .brand .word span{color:var(--amber);}

  nav.links{display:flex;align-items:center;gap:34px;}
  nav.links a{
    font-size:.97rem; font-weight:700; color:var(--text-muted);
    position:relative; padding:4px 0; transition:color .25s ease;
  }
  nav.links a::after{
    content:''; position:absolute; bottom:-2px; right:0; left:auto; width:0; height:2px;
    background:var(--amber); transition:width .25s ease;
  }
  nav.links a:hover{color:var(--text);}
  nav.links a:hover::after{width:100%;}

  .nav-cta{
    display:inline-flex; align-items:center; gap:8px;
    background:var(--amber); color:var(--ink);
    padding:11px 22px; border-radius:999px;
    font-weight:800; font-size:.92rem;
    border:2px solid var(--ink);
    box-shadow:3px 3px 0 var(--ink);
    transition:transform .2s ease, box-shadow .2s ease;
  }
  .nav-cta:hover{transform:translate(-2px,-2px); box-shadow:5px 5px 0 var(--ink);}
  .lang-toggle{
    flex-shrink:0; padding:10px 16px; border-radius:999px;
    border:2px solid var(--line); background:var(--surface);
    color:var(--text); font-weight:800; font-size:.82rem;
    cursor:pointer; transition:.2s ease; font-family:'Baloo 2';
  }
  .lang-toggle:hover{border-color:var(--amber); color:var(--amber);}
  .lang-toggle--mobile{display:none;}
  html[dir="ltr"] .marquee-name{direction:ltr;}
  html[dir="ltr"] .back-link svg{transform:scaleX(-1);}

  .burger{display:none; width:44px;height:44px; border-radius:12px; border:2px solid var(--line); background:var(--surface); position:relative;}
  .burger span{
    position:absolute; right:11px; left:11px; top:21px; height:2px; background:var(--text); transition:.3s ease;
  }
  .burger span::before,.burger span::after{
    content:''; position:absolute; right:0; left:0; height:2px; background:var(--text); transition:.3s ease;
  }
  .burger span::before{top:-7px;}
  .burger span::after{top:7px;}
  .burger.active span{background:transparent;}
  .burger.active span::before{transform:translateY(7px) rotate(45deg);}
  .burger.active span::after{transform:translateY(-7px) rotate(-45deg);}

  .mobile-menu{
    position:fixed; inset:0; z-index:480; background:var(--bg);
    display:flex; flex-direction:column; align-items:center; justify-content:center; gap:30px;
    transform:translateY(-100%); transition:transform .4s cubic-bezier(.65,0,.35,1);
  }
  .mobile-menu.open{transform:translateY(0);}
  .mobile-menu a{font-family:'Baloo 2'; font-size:1.6rem; font-weight:700;}

  /* ---------- Hero ---------- */
  .hero{
    position:relative;
    min-height:100svh;
    display:flex; align-items:center;
    padding:140px 0 90px;
    overflow:hidden;
  }
  #hero-canvas{position:absolute; inset:0; width:100%; height:100%; z-index:0; opacity:.85;}
  .hero::before{
    content:''; position:absolute; inset:0;
    background:radial-gradient(ellipse 60% 50% at 75% 15%, rgba(139,124,255,0.18), transparent 60%),
               radial-gradient(ellipse 50% 40% at 10% 90%, rgba(255,182,39,0.10), transparent 60%);
    z-index:0;
  }
  .hero-grid{
    position:relative; z-index:2;
    display:grid; grid-template-columns:1.15fr .85fr; gap:50px; align-items:center;
  }
  .eyebrow{
    display:inline-flex; align-items:center; gap:8px;
    background:var(--surface); border:1px solid var(--line);
    padding:8px 16px; border-radius:999px; font-size:.85rem; font-weight:700; color:var(--amber);
    margin-bottom:22px;
  }
  .eyebrow .dot{width:7px;height:7px;border-radius:50%;background:var(--amber); animation:pulse 1.8s infinite;}
  @keyframes pulse{0%,100%{opacity:1;}50%{opacity:.35;}}

  .hero h1{
    font-size:clamp(2.3rem, 4.6vw, 3.9rem);
    color:var(--text);
    margin-bottom:22px;
  }
  .hero h1 em{
    font-style:normal; color:var(--amber); position:relative; white-space:nowrap;
  }
  .hero p.lead{
    font-size:1.13rem; color:var(--text-muted); max-width:46ch; line-height:1.85; margin-bottom:34px;
  }
  .hero-ctas{display:flex; flex-wrap:wrap; gap:16px; margin-bottom:40px;}

  .btn{
    display:inline-flex; align-items:center; gap:10px;
    padding:15px 28px; border-radius:999px; font-weight:800; font-size:.98rem;
    border:2px solid var(--ink); transition:transform .2s ease, box-shadow .2s ease;
  }
  .btn-primary{background:var(--amber); color:var(--ink); box-shadow:var(--shadow-pop);}
  .btn-primary:hover{transform:translate(-3px,-3px); box-shadow:9px 9px 0 var(--ink);}
  .btn-ghost{background:transparent; color:var(--text); border-color:var(--line);}
  .btn-ghost:hover{border-color:var(--text); transform:translateY(-2px);}

  .trust-row{display:flex; flex-wrap:wrap; gap:28px;}
  .trust-item{display:flex; align-items:center; gap:10px; font-size:.88rem; color:var(--text-muted); font-weight:700;}
  .trust-item svg{width:20px;height:20px; flex-shrink:0; color:var(--amber);}

  .hero-visual{position:relative; display:flex; align-items:center; justify-content:center; height:480px;}
  .logo-orbit{position:relative; width:300px; height:300px;}
  .logo-ring{
    position:absolute; inset:-26px; border-radius:50%;
    border:2px dashed rgba(245,243,236,0.22);
    animation:spin 30s linear infinite;
  }
  .logo-ring.r2{inset:-58px; border-color:rgba(139,124,255,0.3); animation-duration:46s; animation-direction:reverse;}
  @keyframes spin{to{transform:rotate(360deg);}}
  #hero-logo{
    width:300px; height:300px; border-radius:50%;
    border:6px solid var(--cream);
    box-shadow:0 30px 60px -15px rgba(0,0,0,0.6), 0 0 0 14px rgba(139,124,255,0.07);
    will-change:transform;
    transition:transform .12s ease-out;
  }
  .float-chip{
    position:absolute; display:flex; align-items:center; gap:8px;
    background:var(--cream); color:var(--ink); border:2px solid var(--ink);
    padding:9px 16px; border-radius:999px; font-weight:800; font-size:.82rem;
    box-shadow:4px 4px 0 var(--ink);
    animation:floaty 5s ease-in-out infinite;
  }
  .float-chip.c1{top:6%; right:-8%; animation-delay:.2s;}
  .float-chip.c2{bottom:10%; left:-12%; animation-delay:1.1s; background:var(--amber);}
  .float-chip.c3{top:48%; left:-18%; animation-delay:2s;}
  @keyframes floaty{0%,100%{transform:translateY(0);}50%{transform:translateY(-14px);}}

  /* ---------- Section heading ---------- */
  .section{padding:110px 0;}
  .section-head{max-width:680px; margin-bottom:60px;}
  .section-head.center{margin-inline:auto; text-align:center;}
  .tag{
    display:inline-block; font-size:.82rem; font-weight:800; color:var(--violet);
    letter-spacing:1px; margin-bottom:14px; text-transform:uppercase;
  }
  .section-head h2{font-size:clamp(1.8rem,3.4vw,2.7rem); margin-bottom:16px;}
  .section-head p{color:var(--text-muted); font-size:1.05rem; line-height:1.8;}

  /* ---------- Services (sticker cards) ---------- */
  .services-grid{
    display:grid; grid-template-columns:repeat(3,1fr); gap:28px;
  }
  .sticker{
    position:relative;
    background:var(--cream); color:var(--ink);
    border:3px solid var(--ink); border-radius:var(--radius-lg);
    padding:30px 26px 28px;
    box-shadow:var(--shadow-pop);
    transform:rotate(var(--rot,-1.4deg));
    transition:transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s ease;
  }
  .sticker:nth-child(2n){--rot:1.6deg;}
  .sticker:nth-child(3n){--rot:-2.4deg;}
  .sticker:hover{transform:rotate(0deg) translateY(-8px); box-shadow:11px 11px 0 var(--ink);}
  .sticker .icn{
    width:54px; height:54px; border-radius:16px; background:var(--ink); color:var(--cream);
    display:flex; align-items:center; justify-content:center; margin-bottom:18px;
  }
  .sticker .icn svg{width:28px;height:28px;}
  .sticker h3{font-size:1.18rem; margin-bottom:10px;}
  .sticker p{font-size:.92rem; line-height:1.7; color:#4A4636;}
  .sticker .price-peel{
    position:absolute; top:-14px; left:-14px;
    background:var(--violet); color:#fff; border:2px solid var(--ink);
    border-radius:999px; padding:6px 14px; font-size:.74rem; font-weight:800;
    box-shadow:3px 3px 0 var(--ink); transform:rotate(-8deg);
  }

  /* ---------- Universities marquee (logos) ---------- */
  .uni-section{padding:90px 0; background:var(--bg-soft); border-top:1px solid var(--line); border-bottom:1px solid var(--line);}
  .marquee-wrap{
    overflow:hidden; position:relative; direction:ltr;
    -webkit-mask-image:linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    mask-image:linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  }
  .marquee-track{
    display:flex; align-items:center; gap:48px; width:max-content;
    animation:marqueeScroll 48s linear infinite;
    will-change:transform;
  }
  .marquee-wrap:hover .marquee-track{animation-play-state:paused;}
  @keyframes marqueeScroll{
    from{transform:translateX(0);}
    to{transform:translateX(-50%);}
  }
  .marquee-item{
    flex-shrink:0;
    display:flex; flex-direction:column; align-items:center; gap:12px;
  }
  .marquee-item--circle{width:118px;}
  .marquee-item--full{width:auto; min-width:150px; max-width:240px;}
  .marquee-name{
    font-size:.78rem; font-weight:700; color:var(--text-muted);
    text-align:center; line-height:1.45; direction:rtl;
    max-width:100%;
  }
  .marquee-item--full .marquee-name{direction:ltr;}
  .uni-logo{
    position:relative; flex-shrink:0;
    width:104px; height:104px; border-radius:50%;
    background:#fff; border:2px solid var(--line);
    display:flex; align-items:center; justify-content:center;
    padding:14px;
    transition:transform .3s ease, border-color .3s ease, box-shadow .3s ease;
  }
  .uni-logo.is-fallback{
    background:var(--surface); border-color:var(--amber);
    padding:0;
  }
  .uni-logo .mark{
    font-family:'Baloo 2'; font-weight:800; font-size:1.35rem;
    color:var(--amber); position:relative; z-index:1;
  }
  .marquee-item--circle:hover .uni-logo{
    transform:translateY(-7px) scale(1.06);
    border-color:rgba(255,182,39,.55);
    box-shadow:0 14px 28px -10px rgba(0,0,0,0.45);
  }
  .uni-logo img{
    width:100%; height:100%; object-fit:contain; position:relative; z-index:1;
    filter:drop-shadow(0 1px 2px rgba(0,0,0,.08));
  }
  .partner-logo{
    display:flex; align-items:center; justify-content:center;
    width:100%; min-height:78px; padding:4px 6px;
    background:transparent; border:none; border-radius:0;
    transition:transform .3s ease, filter .3s ease;
  }
  .partner-logo img{
    width:auto; height:auto; max-width:100%; max-height:92px;
    object-fit:contain; display:block;
    filter:drop-shadow(0 2px 8px rgba(0,0,0,.12));
  }
  .marquee-item--full:hover .partner-logo{
    transform:translateY(-6px) scale(1.04);
  }
  .marquee-item--full:hover .partner-logo img{
    filter:drop-shadow(0 6px 14px rgba(0,0,0,.18));
  }
  .partner-logo.is-fallback{
    min-height:72px; padding:10px 14px;
    background:var(--surface); border:1px dashed var(--line); border-radius:14px;
  }
  .partner-fallback{
    font-family:'Baloo 2'; font-weight:800; font-size:1rem;
    color:var(--amber); text-align:center; line-height:1.35;
  }

  /* ---------- Pricing ---------- */
  .pricing-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:26px;}
  .price-card{
    position:relative;
    background:var(--surface); border:1px solid var(--line); border-radius:var(--radius-lg);
    padding:34px 28px; display:flex; flex-direction:column; gap:18px;
    transition:transform .3s ease, border-color .3s ease;
  }
  .price-card:hover{transform:translateY(-6px); border-color:rgba(255,182,39,.5);}
  .price-card.featured{
    background:linear-gradient(165deg, var(--surface-2), var(--surface));
    border:1px solid var(--amber);
  }
  .price-card.featured .ribbon{
    position:absolute; top:-13px; right:24px;
    background:var(--amber); color:var(--ink); font-weight:800; font-size:.78rem;
    padding:6px 14px; border-radius:999px; border:2px solid var(--ink);
  }
  .price-card h3{font-size:1.18rem; margin-bottom:4px;}
  .price-card .desc{color:var(--text-muted); font-size:.9rem; line-height:1.7;}
  .price-card .amount{display:flex; align-items:baseline; gap:8px; margin-top:6px;}
  .price-card .amount .from{font-size:.85rem; color:var(--text-muted); font-weight:700;}
  .price-card .amount .num{font-family:'Baloo 2'; font-size:2.1rem; font-weight:800; color:var(--amber);}
  .price-card .amount .unit{font-size:.85rem; color:var(--text-muted); font-weight:700;}
  .price-card ul{display:flex; flex-direction:column; gap:10px; margin-top:6px;}
  .price-card li{display:flex; align-items:flex-start; gap:9px; font-size:.88rem; color:var(--text-muted);}
  .price-card li svg{width:17px;height:17px; color:var(--amber); flex-shrink:0; margin-top:2px;}
  .price-card .btn{justify-content:center; margin-top:auto;}
  .pricing-note{
    text-align:center; color:var(--text-muted); font-size:.88rem; margin-top:34px; line-height:1.8;
  }

  /* ---------- Process ---------- */
  .process-grid{display:grid; grid-template-columns:repeat(4,1fr); gap:30px; position:relative;}
  .process-grid::before{
    content:''; position:absolute; top:27px; right:12.5%; left:12.5%; height:2px;
    background:repeating-linear-gradient(90deg, var(--line) 0 10px, transparent 10px 18px);
    z-index:0;
  }
  .process-step{position:relative; z-index:1; text-align:center;}
  .process-step .num{
    width:56px; height:56px; border-radius:50%; background:var(--ink); border:3px solid var(--amber);
    color:var(--amber); font-family:'Baloo 2'; font-weight:800; font-size:1.3rem;
    display:flex; align-items:center; justify-content:center; margin:0 auto 18px;
  }
  .process-step h4{font-size:1.02rem; margin-bottom:9px;}
  .process-step p{font-size:.86rem; color:var(--text-muted); line-height:1.7;}

  .deposit-note{
    margin-top:54px; text-align:center; max-width:560px; margin-inline:auto;
    background:var(--surface); border:1px solid var(--line); border-radius:var(--radius-md);
    padding:28px 30px;
  }
  .deposit-note p{color:var(--text-muted); font-size:.92rem; line-height:1.8; margin-bottom:22px;}
  .btn-deposit{
    padding:20px 42px; font-size:1.15rem; width:100%; max-width:420px;
    justify-content:center; margin-inline:auto;
    animation:deposit-pulse 2.4s ease-in-out infinite;
  }
  .btn-deposit svg{flex-shrink:0;}
  @keyframes deposit-pulse{
    0%,100%{box-shadow:var(--shadow-pop);}
    50%{box-shadow:9px 9px 0 var(--ink), 0 0 0 6px rgba(255,182,39,.18);}
  }

  /* ---------- Contact / CTA ---------- */
  .cta-band{
    position:relative; border-radius:36px; overflow:hidden;
    background:var(--surface-2); border:1px solid var(--line);
    padding:70px 50px; text-align:center;
  }
  .cta-band::before{
    content:''; position:absolute; inset:0;
    background:radial-gradient(ellipse 60% 80% at 20% 0%, rgba(139,124,255,0.22), transparent 60%),
               radial-gradient(ellipse 50% 60% at 90% 100%, rgba(255,182,39,0.14), transparent 60%);
  }
  .cta-band > *{position:relative; z-index:1;}
  .cta-band h2{font-size:clamp(1.7rem,3.4vw,2.5rem); margin-bottom:16px;}
  .cta-band p{color:var(--text-muted); max-width:50ch; margin:0 auto 32px; line-height:1.8;}
  .cta-buttons{display:flex; gap:16px; justify-content:center; flex-wrap:wrap;}

  /* ---------- Footer ---------- */
  footer{padding:60px 0 30px; border-top:1px solid var(--line);}
  .foot-grid{display:grid; grid-template-columns:1.4fr 1fr 1fr; gap:40px; margin-bottom:46px;}
  .foot-brand .brand{margin-bottom:14px;}
  .foot-brand p{color:var(--text-muted); font-size:.9rem; line-height:1.8; max-width:34ch;}
  .foot-col h5{font-size:.95rem; margin-bottom:18px; color:var(--text);}
  .foot-col ul{display:flex; flex-direction:column; gap:11px;}
  .foot-col a{font-size:.88rem; color:var(--text-muted); transition:color .2s ease;}
  .foot-col a:hover{color:var(--amber);}
  .foot-bottom{
    display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:14px;
    padding-top:26px; border-top:1px solid var(--line);
    font-size:.82rem; color:var(--text-muted);
  }
  .social-row{display:flex; gap:12px;}
  .social-row a{
    width:38px; height:38px; border-radius:50%; border:1px solid var(--line);
    display:flex; align-items:center; justify-content:center; transition:.2s ease;
  }
  .social-row a:hover{background:var(--amber); border-color:var(--amber); color:var(--ink);}
  .social-row svg{width:17px;height:17px;}

  /* ---------- Floating WhatsApp ---------- */
  .whatsapp-fab{
    position:fixed; bottom:26px; left:26px; z-index:600;
    width:60px; height:60px; border-radius:50%;
    background:#25D366; color:#fff;
    display:flex; align-items:center; justify-content:center;
    box-shadow:0 10px 26px -6px rgba(37,211,102,0.6);
    border:2px solid rgba(255,255,255,0.25);
  }
  .whatsapp-fab svg{width:28px;height:28px;}
  .whatsapp-fab::after{
    content:''; position:absolute; inset:0; border-radius:50%;
    border:2px solid #25D366; animation:ring 2.2s ease-out infinite;
  }
  @keyframes ring{0%{transform:scale(1); opacity:.7;}100%{transform:scale(1.7); opacity:0;}}

  /* ---------- Daily Gift Box ---------- */
  .gift-overlay{
    position:fixed; inset:0; z-index:800;
    background:rgba(13,12,18,0.88);
    backdrop-filter:blur(6px);
    display:flex; align-items:center; justify-content:center;
    padding:20px;
    opacity:0; pointer-events:none;
    transition:opacity .3s ease;
  }
  .gift-overlay.open{opacity:1; pointer-events:auto;}

  .gift-modal{
    width:480px; max-width:96vw; max-height:92vh; overflow-y:auto;
    background:var(--surface); border:1px solid var(--line);
    border-radius:var(--radius-lg);
    box-shadow:0 40px 80px -24px rgba(0,0,0,0.75);
    padding:28px 26px 30px;
  }

  .gift-modal-head{
    display:flex; align-items:center; gap:14px;
    margin-bottom:22px; padding-bottom:18px;
    border-bottom:1px solid var(--line);
  }
  .gift-modal-head img{
    width:44px; height:44px; border-radius:50%;
    border:2px solid var(--amber); flex-shrink:0;
  }
  .gift-modal-head div{display:flex; flex-direction:column; gap:4px;}
  .gift-modal-head strong{font-family:'Baloo 2'; font-size:1.05rem;}
  .gift-modal-head span{font-size:.82rem; color:var(--text-muted); line-height:1.6;}

  .gift-hint{
    text-align:center; font-size:.88rem; color:var(--text-muted);
    line-height:1.75; margin-bottom:24px;
  }

  .gift-boxes{
    display:flex; gap:14px; justify-content:center; flex-wrap:wrap;
  }

  .gift-box{
    position:relative; width:110px; height:130px;
    background:transparent; border:none; padding:0;
    cursor:pointer; transition:transform .25s ease, opacity .3s ease;
    display:flex; flex-direction:column; align-items:center; gap:10px;
  }
  .gift-box:hover:not(:disabled){transform:translateY(-6px) scale(1.04);}
  .gift-box:disabled{cursor:default;}
  .gift-box.dimmed{opacity:.35; transform:scale(.92);}
  .gift-box.opening{animation:gift-shake .5s ease;}
  .gift-box.opened .gift-box-body{background:var(--violet-soft);}
  .gift-box.opened .gift-box-icon{transform:scale(1.3);}

  .gift-box-body{
    position:relative; width:100%; height:100px;
    background:linear-gradient(160deg, var(--amber) 0%, var(--amber-dim) 100%);
    border-radius:14px 14px 18px 18px;
    border:2px solid var(--ink);
    box-shadow:var(--shadow-pop);
    display:flex; align-items:center; justify-content:center;
    transition:background .4s ease;
  }
  .gift-box-lid{
    position:absolute; top:-14px; left:50%; transform:translateX(-50%);
    width:88%; height:22px;
    background:var(--amber-dim); border:2px solid var(--ink);
    border-radius:8px 8px 4px 4px; z-index:1;
  }
  .gift-box-ribbon{
    position:absolute; inset:0;
    background:linear-gradient(90deg, transparent 46%, var(--ink) 46%, var(--ink) 54%, transparent 54%);
    opacity:.25; border-radius:inherit;
  }
  .gift-box-icon{font-size:2rem; transition:transform .4s cubic-bezier(.2,.8,.2,1);}

  .gift-box-label{
    font-size:.78rem; font-weight:800; color:var(--text-muted);
    background:var(--surface-2); border:1px solid var(--line);
    border-radius:999px; padding:4px 12px;
  }

  @keyframes gift-shake{
    0%,100%{transform:rotate(0);}
    20%{transform:rotate(-8deg);}
    40%{transform:rotate(8deg);}
    60%{transform:rotate(-5deg);}
    80%{transform:rotate(5deg);}
  }

  .gift-result-icon{font-size:3rem; text-align:center; margin-bottom:10px;}
  .gift-result-title{
    font-size:1.35rem; text-align:center; margin-bottom:10px;
    color:var(--amber);
  }
  .gift-result-msg{
    text-align:center; font-size:.9rem; color:var(--text-muted);
    line-height:1.8; margin-bottom:20px;
  }
  .gift-result-msg strong{color:var(--amber);}

  .gift-code-row{
    display:flex; align-items:center; gap:10px;
    background:var(--bg-soft); border:1px solid var(--line);
    border-radius:14px; padding:14px 16px; margin-bottom:10px;
  }
  .gift-code{
    flex:1; font-family:'Baloo 2'; font-size:1.15rem; font-weight:800;
    letter-spacing:1.5px; direction:ltr; text-align:center;
    color:var(--amber);
  }
  .gift-copy-btn{flex-shrink:0; padding:10px 16px; font-size:.82rem;}
  .gift-copy-btn.copied{background:#2FBF71; color:#fff;}

  .gift-code-note{
    font-size:.78rem; color:var(--text-muted); text-align:center;
    line-height:1.7; margin-bottom:16px;
  }

  .gift-pay-link{
    display:block; text-align:center; margin-bottom:18px;
    width:100%; justify-content:center;
  }

  .gift-timer-wrap{
    text-align:center; font-size:.82rem; color:var(--text-muted);
    margin-bottom:16px; padding:12px;
    background:var(--surface-2); border-radius:12px;
    border:1px solid var(--line);
  }
  .gift-timer-wrap strong{
    display:block; font-family:'Baloo 2'; font-size:1.4rem;
    color:var(--violet); margin-top:6px; direction:ltr;
  }

  .gift-enter-btn{width:100%; justify-content:center;}

  @media (max-width:480px){
    .gift-box{width:96px; height:118px;}
    .gift-box-body{height:88px;}
    .gift-code-row{flex-direction:column;}
    .gift-copy-btn{width:100%;}
  }

  /* ---------- FAQ Chat Widget ---------- */
  #chatLogoTrigger{cursor:pointer;}
  .chat-overlay{
    position:fixed; inset:0; z-index:700; background:rgba(13,12,18,0.55);
    backdrop-filter:blur(2px);
    opacity:0; pointer-events:none; transition:opacity .25s ease;
  }
  .chat-overlay.open{opacity:1; pointer-events:auto;}

  .chat-widget{
    position:fixed; top:50%; left:50%; z-index:701;
    width:380px; max-width:92vw; max-height:74vh;
    background:var(--surface); border:1px solid var(--line); border-radius:var(--radius-lg);
    box-shadow:0 30px 70px -20px rgba(0,0,0,0.7);
    display:flex; flex-direction:column; overflow:hidden;
    transform:translate(-50%,-50%) scale(.92); opacity:0; pointer-events:none;
    transition:opacity .25s ease, transform .25s cubic-bezier(.2,.8,.2,1);
  }
  .chat-widget.open{transform:translate(-50%,-50%) scale(1); opacity:1; pointer-events:auto;}

  .chat-head{
    display:flex; align-items:center; gap:12px;
    padding:18px 18px; border-bottom:1px solid var(--line);
    background:var(--surface-2); flex-shrink:0;
  }
  .chat-head img{width:38px; height:38px; border-radius:50%; border:2px solid var(--amber);}
  .chat-head-text{display:flex; flex-direction:column; gap:2px;}
  .chat-head-text strong{font-family:'Baloo 2'; font-size:.98rem;}
  .chat-head-text span{font-size:.78rem; color:var(--text-muted);}
  .chat-close{
    margin-right:auto; width:32px; height:32px; border-radius:50%; border:1px solid var(--line);
    background:transparent; color:var(--text-muted); font-size:1.3rem; line-height:1;
    display:flex; align-items:center; justify-content:center; transition:.2s ease;
  }
  .chat-close:hover{background:var(--amber); color:var(--ink); border-color:var(--amber);}

  .chat-body{
    flex:1; overflow-y:auto; padding:18px; display:flex; flex-direction:column; gap:12px;
    min-height:140px;
  }
  .chat-bubble{
    max-width:86%; padding:11px 15px; border-radius:16px; font-size:.88rem; line-height:1.7;
  }
  .chat-bubble.from-bot{
    align-self:flex-start; background:var(--surface-2); color:var(--text);
    border-bottom-left-radius:4px;
  }
  .chat-bubble.from-user{
    align-self:flex-end; background:var(--amber); color:var(--ink); font-weight:700;
    border-bottom-right-radius:4px;
  }

  .chat-questions{
    display:flex; flex-direction:column; gap:8px;
    padding:14px 18px 20px; border-top:1px solid var(--line); flex-shrink:0;
    max-height:38vh; overflow-y:auto;
  }
  .faq-chip{
    text-align:right; background:var(--bg-soft); color:var(--text);
    border:1px solid var(--line); border-radius:12px; padding:10px 14px;
    font-size:.84rem; font-weight:700; transition:.2s ease;
  }
  .faq-chip:hover{border-color:var(--amber); color:var(--amber);}
  .faq-chip.asked{opacity:.55;}
  .faq-chip-wa{
    display:block; color:var(--violet); border-color:var(--violet);
  }
  .faq-chip-wa:hover{background:var(--violet); color:#fff;}

  @media (max-width:640px){
    .chat-widget{width:94vw; max-height:80vh;}
  }

  /* ---------- Reveal animation ---------- */
  .reveal{opacity:0; transform:translateY(28px); transition:opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1);}
  .reveal.in{opacity:1; transform:translateY(0);}

  /* ---------- Responsive ---------- */
  @media (max-width:980px){
    nav.links, .nav-cta{display:none;}
    .nav-row > .lang-toggle{display:none;}
    .lang-toggle--mobile{display:inline-flex;}
    .burger{display:block;}
    .hero-grid{grid-template-columns:1fr;}
    .hero-visual{order:-1; height:340px; margin-bottom:10px;}
    #hero-logo, .logo-orbit{width:220px;height:220px;}
    .services-grid{grid-template-columns:repeat(2,1fr);}
    .pricing-grid{grid-template-columns:repeat(2,1fr);}
    .process-grid{grid-template-columns:repeat(2,1fr); row-gap:46px;}
    .process-grid::before{display:none;}
    .foot-grid{grid-template-columns:1fr 1fr;}
    .foot-brand{grid-column:1/-1;}
  }
  @media (max-width:640px){
    .container{padding:0 18px;}
    .hero{padding:120px 0 60px;}
    .services-grid, .pricing-grid, .process-grid{grid-template-columns:1fr;}
    .section{padding:74px 0;}
    .cta-band{padding:50px 24px;}
    .foot-grid{grid-template-columns:1fr;}
    .foot-bottom{flex-direction:column; align-items:flex-start;}
    .float-chip{display:none;}
    .hero-ctas{flex-direction:column; align-items:stretch;}
    .hero-ctas .btn{justify-content:center;}
  }
