
  *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

  :root {
    --ink: #0d0d0d;
    --white: #fafaf7;
    --accent: #6847FF;
    --partner: #be9114;
    --accent2: #1c6bff;
    --gold: #f0b429;
    --surface: #f4f3ef;
    --muted: #8a8880;
    --radius: 16px;
    --font-display: 'Barlow', sans-serif;
    --font-body: 'DM Sans', sans-serif;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: var(--font-body);
    background: var(--white);
    color: var(--ink);
    overflow-x: hidden;
  }

  /* ── CURSOR ── */
  .cursor {
    width: 12px; height: 12px;
    border-radius: 50%;
    background: var(--accent);
    position: fixed; pointer-events: none;
    z-index: 9999;
    transform: translate(-50%,-50%);
    transition: width .2s, height .2s, opacity .2s;
    mix-blend-mode: multiply;
  }
  .cursor-ring {
    width: 40px; height: 40px;
    border-radius: 50%;
    border: 1.5px solid var(--accent);
    position: fixed; pointer-events: none;
    z-index: 9998;
    transform: translate(-50%,-50%);
    transition: all .12s ease-out;
    opacity: .5;
  }

  /* ── NAV ── */
  nav {
    position: fixed; top: 0; width: 100%; z-index: 100;
    padding: 1.2rem 4rem;
    display: flex; align-items: center; justify-content: space-between;
    background: rgba(250,250,247,.88);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(13,13,13,.06);
    transition: all .3s;
  }
  .nav-logo {
    font-family: var(--font-display);
    font-weight: 800; font-size: 1.6rem;
    letter-spacing: -1px; color: var(--ink);
    text-decoration: none;
  }
  .nav-logo span { color: var(--accent); }
  .nav-links { display: flex; gap: 2.5rem; list-style: none; }
  .nav-links a {
    font-size: .9rem; font-weight: 500; color: var(--muted);
    text-decoration: none; transition: color .2s; letter-spacing: .02em;
  }
  .nav-links a:hover { color: var(--ink); }
  .nav-cta {
    background: var(--ink); color: var(--white);
    padding: .65rem 1.5rem; border-radius: 100px;
    font-size: .875rem; font-weight: 500;
    text-decoration: none; transition: background .2s, transform .2s;
    letter-spacing: .01em;
  }
  .nav-cta:hover { background: var(--accent); transform: translateY(-1px); }

  /* ── HERO ── */
  .hero {
    min-height: 100vh;
    display: flex; align-items: center;
    padding: 7rem 4rem 4rem;
    position: relative; overflow: hidden;
  }
  .hero-bg {
    position: absolute; inset: 0; z-index: 0;
    background: var(--white);
  }
  .hero-blob {
    position: absolute; border-radius: 50%;
    filter: blur(90px); opacity: .25;
    animation: blobFloat 8s ease-in-out infinite;
  }
  .blob1 { width: 700px; height: 700px; background: #7b52d4; top: -200px; right: -200px; }
  .blob2 { width: 500px; height: 500px; background: #1c6bff; bottom: -100px; left: -100px; animation-delay: -4s; }
  .blob3 { width: 300px; height: 300px; background: #f0b429; top: 40%; right: 20%; animation-delay: -2s; }
  @keyframes blobFloat {
    0%,100% { transform: scale(1) translate(0,0); }
    50% { transform: scale(1.08) translate(20px,-20px); }
  }
  .hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; position: relative; z-index: 1; width: 100%; max-width: 1300px; margin: 0 auto; }
  .hero-tag {
    display: inline-flex; align-items: center; gap: .5rem;
    background: rgba(123,82,212,.1); color: var(--accent);
    padding: .4rem 1rem; border-radius: 100px;
    font-size: .8rem; font-weight: 600; letter-spacing: .04em;
    text-transform: uppercase; margin-bottom: 1.5rem;
    border: 1px solid rgba(123,82,212,.2);
    opacity: 0; transform: translateY(20px);
    animation: fadeUp .6s ease forwards .3s;
  }
  .hero-title {
    font-family: var(--font-display);
    font-weight: 900; font-size: clamp(3rem, 5vw, 5.5rem);
    line-height: 1.0; letter-spacing: -2px;
    opacity: 0; transform: translateY(30px);
    animation: fadeUp .8s ease forwards .5s;
  }
  .hero-title em { font-style: normal; color: var(--accent); }
  .hero-sub {
    margin-top: 1.5rem;
    font-size: 1.15rem; color: var(--muted); line-height: 1.7; max-width: 480px;
    opacity: 0; transform: translateY(20px);
    animation: fadeUp .7s ease forwards .7s;
  }
  .hero-actions {
    display: flex; gap: 1rem; margin-top: 2.5rem; flex-wrap: wrap;
    opacity: 0; transform: translateY(20px);
    animation: fadeUp .7s ease forwards .9s;
  }
  .btn-primary {
    background: var(--ink); color: var(--white);
    padding: .9rem 2.2rem; border-radius: 100px;
    font-size: 1rem; font-weight: 500;
    text-decoration: none; transition: all .25s;
    display: inline-flex; align-items: center; gap: .5rem;
  }
  .btn-primary:hover { background: var(--accent); transform: translateY(-2px); box-shadow: 0 12px 32px rgba(123,82,212,.35); }
  .btn-outline {
    border: 1.5px solid rgba(13,13,13,.2); color: var(--ink);
    padding: .9rem 2rem; border-radius: 100px;
    font-size: 1rem; font-weight: 500;
    text-decoration: none; transition: all .25s;
    display: inline-flex; align-items: center; gap: .5rem;
  }
  .user .btn-outline{background: var(--white);}
  .btn-outline:hover { border-color: var(--ink); background: var(--white); color: var(--white); }
  .hero-stats {
    display: flex; gap: 2.5rem; margin-top: 3rem;
    opacity: 0; transform: translateY(20px);
    animation: fadeUp .7s ease forwards 1.1s;
  }
  .stat-item { display: flex; flex-direction: column; }
  .stat-num { font-family: var(--font-display); font-size: 2rem; font-weight: 800; letter-spacing: -1px; }
  .stat-label { font-size: .8rem; color: var(--muted); font-weight: 500; }

  /* Hero visual */
  .hero-visual {
    position: relative;
    opacity: 0; transform: translateX(40px);
    animation: fadeLeft .9s ease forwards .6s;
  }
  .app-mockup {
    background: var(--white);
    border-radius: 28px;
    border: 1.5px solid rgba(13,13,13,.08);
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0,0,0,.1);
    transform: perspective(1200px) rotateY(-8deg) rotateX(3deg);
    transition: transform .5s ease;
  }
  .app-mockup:hover { transform: perspective(1200px) rotateY(-2deg) rotateX(1deg); }
  .app-header {
    background: var(--ink); padding: 1.5rem 1.5rem 1rem;
    display: flex; align-items: center; gap: .75rem;
  }
  .app-avatar { width: 36px; height: 36px; border-radius: 50%; background: var(--accent); display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 700; font-size: .85rem; }
  .app-header-text { flex: 1; }
  .app-header-text h4 { color: #fff; font-size: .9rem; font-weight: 600; }
  .app-header-text p { color: rgba(255,255,255,.5); font-size: .75rem; }
  .app-search {
    background: rgba(255,255,255,.08); border-radius: 12px;
    margin: .75rem 0; padding: .65rem 1rem;
    display: flex; align-items: center; gap: .5rem;
    color: rgba(255,255,255,.4); font-size: .8rem;
  }
  .service-grid { padding: 1.25rem; display: grid; grid-template-columns: repeat(3,1fr); gap: .75rem; }
  .service-chip {
    background: var(--surface); border-radius: 14px;
    padding: .9rem .75rem; display: flex; flex-direction: column;
    align-items: center; gap: .4rem; text-align: center;
    transition: transform .2s;
    cursor: pointer;
  }
  .service-chip:hover { transform: translateY(-2px); }
  .chip-icon { width: 40px; height: 40px;  display: flex; align-items: center; justify-content: center; font-size: 1.2rem; }
  .chip-icon img{ width: 40px;}
  .chip-label { font-size: .7rem; font-weight: 600; color: var(--ink); }
  .booking-card {
    margin: 0 1.25rem 1.25rem;
    background: var(--ink); border-radius: 18px;
    padding: 1rem 1.25rem; color: #fff;
    display: flex; align-items: center; gap: 1rem;
    position: relative; overflow: hidden;
  }
  .booking-card::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, var(--accent) 0%, transparent 70%);
    opacity: .3;
  }
  .booking-info { flex: 1; position: relative; z-index: 1; }
  .booking-info h4 { font-size: .9rem; font-weight: 600; }
  .booking-info p { font-size: .75rem; color: rgba(255,255,255,.6); margin-top: .2rem; }
  .booking-badge {
    background: #22c55e; color: #fff;
    font-size: .7rem; font-weight: 700; padding: .4rem .8rem;
    border-radius: 100px; position: relative; z-index: 1;
  }

  @keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
  @keyframes fadeLeft { to { opacity: 1; transform: translateX(0); } }

  /* ── MARQUEE ── */
  .marquee-wrap {
    background: var(--ink); padding: 1rem 0;
    overflow: hidden; white-space: nowrap;
    border-top: 1px solid rgba(255,255,255,.06);
    border-bottom: 1px solid rgba(255,255,255,.06);
  }
  .marquee-inner {
    display: inline-flex; gap: 3rem;
    animation: marquee 20s linear infinite;
  }
  .marquee-item {
    font-family: var(--font-display); font-size: .85rem;
    font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
    color: rgba(255,255,255,.4);
    display: flex; align-items: center; gap: 1rem;
  }
  .marquee-item span { color: var(--accent); }
  @keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

  /* ── SECTIONS ── */
  section { padding: 7rem 4rem; }
  .container { max-width: 1200px; margin: 0 auto; }
  .section-tag {
    font-size: .78rem; font-weight: 700; letter-spacing: .08em;
    text-transform: uppercase; color: var(--accent);
    display: flex; align-items: center; gap: .5rem; margin-bottom: 1rem;
  }
  .section-tag::before { content: ''; display: block; width: 24px; height: 2px; background: var(--accent); }
  .section-title {
    font-family: var(--font-display); font-weight: 800;
    font-size: clamp(2.2rem, 3.5vw, 3.5rem);
    letter-spacing: -1.5px; line-height: 1.1;
    max-width: 640px;
  }
  .section-title em { font-style: normal; color: var(--accent); }

  /* ── HOW IT WORKS ── */
  .how-bg { background: var(--surface); }
  .steps-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; margin-top: 4rem; }
  .step-card {
    background: var(--white); border-radius: var(--radius);
    padding: 2rem 1.75rem;
    border: 1.5px solid rgba(13,13,13,.06);
    position: relative; overflow: hidden;
    transition: transform .3s, box-shadow .3s;
    opacity: 0; transform: translateY(40px);
  }
  .step-card.visible { animation: fadeUp .6s ease forwards; }
  .step-card:nth-child(2).visible { animation-delay: .1s; }
  .step-card:nth-child(3).visible { animation-delay: .2s; }
  .step-card:nth-child(4).visible { animation-delay: .3s; }
  .step-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,.08); }
  .step-num {
    font-family: var(--font-display); font-size: 5rem; font-weight: 800;
    color: rgba(13,13,13,.04); position: absolute; top: -1rem; right: 1rem;
    line-height: 1; letter-spacing: -3px;
  }
  /* .step-icon { width: 60px; height:60px; border-radius: 14px; background: var(--ink); display: flex; align-items: center; justify-content: center; font-size: 1.4rem; margin-bottom: 1.25rem; }
  .step-title { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; margin-bottom: .5rem; }
  .step-desc { font-size: .9rem; color: var(--muted); line-height: 1.7; } */

  /* ── SERVICES ── */
  .services-header { display: flex; align-items: flex-end; justify-content: space-between; flex-wrap: wrap; gap: 2rem; margin-bottom: 3.5rem; }
  .services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
  .service-card {
    background: var(--white); border-radius: 20px;
    padding: 2rem; border: 1.5px solid rgba(13,13,13,.06);
    transition: all .3s; position: relative; overflow: hidden;
    cursor: pointer;
    opacity: 0; transform: translateY(30px);
  }
  .service-card.visible { animation: fadeUp .6s ease forwards; }
  .service-card:nth-child(2).visible { animation-delay: .08s; }
  .service-card:nth-child(3).visible { animation-delay: .16s; }
  .service-card:nth-child(4).visible { animation-delay: .24s; }
  .service-card:nth-child(5).visible { animation-delay: .32s; }
  .service-card:nth-child(6).visible { animation-delay: .4s; }
  .service-card::after {
    content: ''; position: absolute; inset: 0;
    background: var(--ink); opacity: 0;
    transition: opacity .3s; z-index: 0;
  }
  .service-card:hover::after { opacity: .97; }
  .service-card:hover .sc-icon { background: var(--accent); }
  .service-card:hover .sc-title,
  .service-card:hover .sc-desc,
  .service-card:hover .sc-link { color: #fff; }
  .sc-icon {
    width: 52px; height: 52px; border-radius: 50px;
    background: var(--surface); display: flex; align-items: center;
    justify-content: center; font-size: 1.5rem; margin-bottom: 1.25rem;
    position: relative; z-index: 1; transition: background .3s;
  }
  .sc-icon img{width:40px}
  .sc-title { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; margin-bottom: .5rem; position: relative; z-index: 1; transition: color .3s; }
  .sc-desc { font-size: .88rem; color: var(--muted); line-height: 1.7; position: relative; z-index: 1; transition: color .3s; }
  .sc-link { font-size: .82rem; font-weight: 600; color: var(--accent); margin-top: 1rem; display: flex; align-items: center; gap: .3rem; position: relative; z-index: 1; transition: color .3s; }

  /* ── FEATURES ── */
  .features-bg { background: var(--ink); }
  .features-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
  .features-list { margin-top: 3rem; display: flex; flex-direction: column; gap: 1.5rem; }
  .feature-item {
    display: flex; gap: 1rem; align-items: flex-start;
    padding: 1.5rem; border-radius: 16px;
    border: 1px solid rgba(255,255,255,.07);
    transition: background .3s;
    cursor: pointer;
    opacity: 0; transform: translateX(-30px);
  }
  .feature-item.visible { animation: fadeRight .5s ease forwards; }
  .feature-item:nth-child(2).visible { animation-delay: .1s; }
  .feature-item:nth-child(3).visible { animation-delay: .2s; }
  .feature-item:nth-child(4).visible { animation-delay: .3s; }
  .feature-item:hover { background: rgba(255,255,255,.05); }
  @keyframes fadeRight { to { opacity: 1; transform: translateX(0); } }
  .fi-icon { width: 55px; height: 55px; flex-shrink: 0; border-radius: 12px; background: var(--accent); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; }
  .fi-text h4 { color: #fff; font-weight: 600; font-size: 1rem; margin-bottom: .3rem; }
  .fi-text p { color: rgba(255,255,255,.45); font-size: .87rem; line-height: 1.6; }
  .features-visual { position: relative; }
  .feature-item:hover .fi-text h4 { color: var(--font-display); }
  .feature-item:hover .fi-text p { color: var(--muted); }
  .fi-icon img{width:40px}
  .partner .fi-icon{ background: var(--partner);}
  .partner .fi-text h4{color: var(--font-display)}
  .partner .fi-text p{color: var(--muted)}
  .phone-frame {
    width: 280px; margin: 0 auto;
    background: #111; border-radius: 48px;
    padding: 16px;
    box-shadow: 0 60px 120px rgba(0,0,0,.5), inset 0 0 0 1px rgba(255,255,255,.08);
    animation: phoneFloat 5s ease-in-out infinite;
  }
  @keyframes phoneFloat { 0%,100% { transform: translateY(0) rotate(-1deg); } 50% { transform: translateY(-16px) rotate(1deg); } }
  .phone-screen { background: var(--white); border-radius: 36px; overflow: hidden; }
  .phone-notch { width: 90px; height: 28px; background: #111; border-radius: 0 0 18px 18px; margin: 0 auto; }
  .phone-content { padding: 1.25rem; }
  .phone-greeting { font-size: .8rem; color: var(--muted); margin-bottom: .25rem; }
  .phone-heading { font-family: var(--font-display); font-size: 1.1rem; font-weight: 800; margin-bottom: 1rem; }
  .phone-stat-row { display: flex; gap: .75rem; margin-bottom: 1rem; }
  .phone-stat { flex: 1; background: var(--surface); border-radius: 12px; padding: .75rem; }
  .phone-stat .num { font-family: var(--font-display); font-size: 1.2rem; font-weight: 800; }
  .phone-stat .lbl { font-size: .65rem; color: var(--muted); font-weight: 500; }
  .phone-booking-item { background: var(--surface); border-radius: 12px; padding: .85rem; display: flex; align-items: center; gap: .75rem; margin-bottom: .6rem; }
  .pbi-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
  .pbi-text h5 { font-size: .78rem; font-weight: 600; }
  .pbi-text p { font-size: .68rem; color: var(--muted); }
  .pbi-time { margin-left: auto; font-size: .7rem; font-weight: 600; color: var(--accent); }

  /* ── TESTIMONIALS ── */
  .testimonials-bg { background: var(--surface); }
  .testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3.5rem; }
  .testi-card {
    background: var(--white); border-radius: 20px;
    padding: 2rem; border: 1.5px solid rgba(13,13,13,.06);
    transition: transform .3s;
    opacity: 0; transform: translateY(30px);
  }
  .testi-card.visible { animation: fadeUp .6s ease forwards; }
  .testi-card:nth-child(2).visible { animation-delay: .1s; }
  .testi-card:nth-child(3).visible { animation-delay: .2s; }
  .testi-card:hover { transform: translateY(-4px); }
  .stars { display: flex; gap: .2rem; margin-bottom: 1rem; color: var(--gold); font-size: 1rem; }
  .testi-quote { font-size: .95rem; line-height: 1.75; color: #444; margin-bottom: 1.5rem; }
  .testi-author { display: flex; align-items: center; gap: .75rem; }
  .author-avatar { width: 40px; height: 40px; border-radius: 50%; font-weight: 700; font-size: .85rem; display: flex; align-items: center; justify-content: center; }
  .author-name { font-weight: 600; font-size: .9rem; }
  .author-role { font-size: .78rem; color: var(--muted); }

  /* ── APP PROMO ── */
  .app-promo {
    background: var(--ink); border-radius: 28px;
    padding: 5rem 4rem; margin: 0 4rem;
    display: flex; align-items: center; justify-content: space-between;
    position: relative; overflow: hidden;
    gap: 3rem;
  }
  .app-promo::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse 80% 80% at 80% 50%, rgba(123,82,212,.25) 0%, transparent 60%);
  }
  .promo-text { position: relative; z-index: 1; }
  .promo-text h2 {
    font-family: var(--font-display); font-weight: 800;
    font-size: clamp(2rem, 3.5vw, 3rem); color: #fff;
    letter-spacing: -1px; line-height: 1.15; margin-bottom: 1rem;
  }
  .promo-text p { color: rgba(255,255,255,.5); font-size: 1.05rem; line-height: 1.7; max-width: 440px; }
  .app-btns { display: flex; flex-direction: column; gap: .75rem; position: relative; z-index: 1; flex-shrink: 0; }
  .app-store-btn {
    display: flex; align-items: center; gap: .85rem;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 14px; padding: .85rem 1.5rem;
    transition: all .25s; text-decoration: none;
    min-width: 180px;
  }
  .app-store-btn:hover { background: rgba(255,255,255,.15); transform: translateY(-2px); }
  .store-sub { font-size: .68rem; color: rgba(255,255,255,.45); text-transform: uppercase; letter-spacing: .05em; }
  .store-name { font-size: 1rem; font-weight: 700; color: #fff; }

  /* ── FOOTER ── */
  /* footer {
    background: var(--ink); padding: 5rem 4rem 2rem;
    border-top: 1px solid rgba(255,255,255,.06);
  }
  .footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 4rem; }
  .footer-brand .logo { font-family: var(--font-display); font-size: 1.8rem; font-weight: 800; color: #fff; letter-spacing: -1px; }
  .footer-brand .logo span { color: var(--accent); }
  .footer-tagline { color: rgba(255,255,255,.7); font-size: .9rem; line-height: 1.7; margin-top: .75rem; max-width: 260px; }
  .footer-socials { display: flex; gap: .75rem; margin-top: 1.5rem; }
  .social-icon {
    width: 36px; height: 36px; border-radius: 10px;
    border: 1px solid rgba(255,255,255,.1);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,.5); font-size: 1rem;
    text-decoration: none; transition: all .2s;
  }
  .social-icon:hover { background: var(--accent); border-color: var(--accent); color: #fff; }
  .footer-col h5 { color: #fff; font-weight: 600; font-size: .9rem; margin-bottom: 1.25rem; }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .7rem; }
  .footer-col a { color: rgba(255,255,255,.4); font-size: .87rem; text-decoration: none; transition: color .2s; }
  .footer-col a:hover { color: #fff; }
  .footer-bottom { border-top: 1px solid rgba(255,255,255,.07); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
  .footer-copy { color: rgba(255,255,255,.3); font-size: .8rem; }
  .footer-legal { display: flex; gap: 1.5rem; }
  .footer-legal a { color: rgba(255,255,255,.3); font-size: .8rem; text-decoration: none; transition: color .2s; }
  .footer-legal a:hover { color: rgba(255,255,255,.7); } */

  /* ── TRUST SECTION ── */
  .trust-strip { padding: 3.5rem 4rem; border-top: 1px solid rgba(13,13,13,.07); border-bottom: 1px solid rgba(13,13,13,.07); }
  .trust-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 2rem; }
  .trust-label { font-size: .8rem; font-weight: 600; color: rgba(13,13,13,.45); text-transform: uppercase; letter-spacing: .08em; }
  .trust-logos { display: flex; align-items: center; gap: 2.5rem; flex-wrap: wrap; }
  .trust-logo-item { font-family: var(--font-display); font-weight: 800; font-size: 1.2rem; color: rgba(13,13,13,.25); letter-spacing: -0.5px; }

  /* ── FAQ ── */
  .faq-grid { max-width: 760px; margin: 3rem auto 0; }
  .faq-item {
    border-bottom: 1px solid rgba(13,13,13,.08); padding: 1.5rem 0;
    cursor: pointer;
  }
  .faq-q { display: flex; justify-content: space-between; align-items: center; }
  .faq-q h4 { font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; }
  .faq-toggle { font-size: 1.5rem; color: var(--muted); transition: transform .3s; font-weight: 300; }
  .faq-item.open .faq-toggle { transform: rotate(45deg); color: var(--accent); }
  .faq-a { overflow: hidden; max-height: 0; transition: max-height .4s ease, padding .3s; }
  .faq-item.open .faq-a { max-height: 200px; padding-top: 1rem; }
  .faq-a p { font-size: .93rem; color: var(--muted); line-height: 1.75; }

  /* Scroll reveal */
  .reveal { opacity: 0; transform: translateY(40px); transition: opacity .7s ease, transform .7s ease; }
  .reveal.visible { opacity: 1; transform: none; }

  @media (max-width: 1024px) {
    nav { padding: 1rem 2rem; }
    .hero, section { padding-left: 2rem; padding-right: 2rem; }
    .hero-grid { grid-template-columns: 1fr; gap: 3rem; }
    .steps-grid { grid-template-columns: repeat(2,1fr); }
    .services-grid { grid-template-columns: repeat(2,1fr); }
    .features-inner { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr 1fr; }
    .footer-top { grid-template-columns: 1fr 1fr; }
    .app-promo { margin: 0 2rem; flex-direction: column; }
  }
  /* ── HAMBURGER ── */
  .hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px; height: 44px;
    background: none; border: 2px solid rgba(13,13,13,.1);
    cursor: pointer; padding: 8px;
    border-radius: 12px;
    transition: background .2s, border-color .2s;
    z-index: 1000;
    position: relative;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
  }
  .hamburger:hover { background: rgba(13,13,13,.06); border-color: rgba(13,13,13,.2); }
  .hamburger:active { background: rgba(13,13,13,.12); }
  .hamburger span {
    display: block;
    width: 22px; height: 2px;
    background: var(--ink);
    border-radius: 2px;
    transition: transform .35s cubic-bezier(.4,0,.2,1), opacity .25s, width .3s;
    transform-origin: center;
  }
  .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
  .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* ── MOBILE DRAWER ── */
  .mobile-menu-overlay {
    position: fixed; inset: 0;
    background: rgba(13,13,13,.5);
    backdrop-filter: blur(4px);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .3s ease, visibility .3s ease;
  }
  .mobile-menu-overlay.visible {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
  }

  .mobile-drawer {
    position: fixed;
    top: 0; right: 0;
    width: min(320px, 85vw);
    height: 100dvh;
    background: var(--white);
    z-index: 999;
    padding: 5rem 2rem 2.5rem;
    display: flex; flex-direction: column; gap: 0;
    transform: translateX(100%);
    transition: transform .38s cubic-bezier(.4,0,.2,1);
    box-shadow: -20px 0 60px rgba(0,0,0,.15);
    overflow-y: auto;
  }
  .mobile-drawer.open { transform: translateX(0); }

  .mobile-drawer-logo {
    position: absolute; top: 1.25rem; left: 1.5rem;
  }
  .mobile-drawer-logo img { height: 32px; width: auto; }

  .mobile-close {
    position: absolute; top: 1rem; right: 1rem;
    width: 38px; height: 38px;
    border: none; background: rgba(13,13,13,.06);
    border-radius: 50%; cursor: pointer; font-size: 1.1rem;
    display: flex; align-items: center; justify-content: center;
    transition: background .2s;
  }
  .mobile-close:hover { background: rgba(13,13,13,.12); }

  .mobile-nav-links {
    list-style: none; display: flex; flex-direction: column;
    gap: 0; margin-bottom: 1.5rem;
  }
  .mobile-nav-links li { border-bottom: 1px solid rgba(13,13,13,.06); }
  .mobile-nav-links a {
    display: flex; align-items: center; justify-content: space-between;
    padding: 1rem .25rem;
    font-size: 1.05rem; font-weight: 600; color: var(--ink);
    text-decoration: none; transition: color .2s;
    font-family: var(--font-display);
  }
  .mobile-nav-links a::after { content: '→'; color: var(--accent); font-size: .85rem; }
  .mobile-nav-links a:hover { color: var(--accent); }

  .mobile-cta {
    display: flex; align-items: center; justify-content: center;
    background: var(--ink); color: var(--white);
    padding: 1rem 2rem; border-radius: 100px;
    font-size: 1rem; font-weight: 600;
    text-decoration: none; transition: background .2s;
    margin-top: .5rem;
  }
  .mobile-cta:hover { background: var(--accent); }

  .mobile-drawer-footer {
    margin-top: auto; padding-top: 1.5rem;
    border-top: 1px solid rgba(13,13,13,.06);
    font-size: .8rem; color: var(--muted); text-align: center;
  }


.gpay-btn{width:160px;}
.home-screen{width: 300px;}
.hero .home-screen{width: 700px; border-radius: 20px;
    -webkit-mask-image: radial-gradient(circle, black 50%, transparent 95%);
    mask-image: radial-gradient(circle, black 75%, transparent 95%); z-index: -1;}
.text-center{text-align: center;}

  @media (max-width: 768px) {
    .hamburger { display: flex; }
    .nav-links { display: none !important; }
    .nav-cta { display: none; }
    nav { padding: 1rem 1.25rem; }
    .cursor, .cursor-ring { display: none !important; }
    .features-visual, .hero-visual{order: 1;}
    .trust, .partner-hero{order: 2;}
    .hero .home-screen, .home-screen{width: 260px;margin: auto;}
  }

  @media (max-width: 640px) {
    .steps-grid, .services-grid, .testimonials-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; }
    .app-promo { margin: 0; padding: 2.5rem; }
    .hero, section { padding-left: 1.25rem; padding-right: 1.25rem; }
    .trust-strip { padding: 2.5rem 1.25rem; }
  }





/*partner css*/


  /* *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

  :root {
    --ink: #0d0d0d;
    --white: #fafaf7;
    --accent: #7b52d4;
    --accent2: #1c6bff;
    --gold: #f0b429;
    --surface: #f4f3ef;
    --muted: #8a8880;
    --radius: 16px;
    --font-display: 'Barlow', sans-serif;
    --font-body: 'DM Sans', sans-serif;
  }

  html { scroll-behavior: smooth; }
  body { font-family: var(--font-body); background: var(--white); color: var(--ink); overflow-x: hidden; }

  /* ── CURSOR ── */
  /*.cursor {
    width: 12px; height: 12px; border-radius: 50%;
    background: var(--accent); position: fixed; pointer-events: none;
    z-index: 9999; transform: translate(-50%,-50%);
    transition: width .2s, height .2s, opacity .2s; mix-blend-mode: multiply;
  }
  .cursor-ring {
    width: 40px; height: 40px; border-radius: 50%;
    border: 1.5px solid var(--accent); position: fixed; pointer-events: none;
    z-index: 9998; transform: translate(-50%,-50%);
    transition: all .12s ease-out; opacity: .5;
  } */

  /* ── NAV ── */
  nav {
    position: fixed; top: 0; width: 100%; z-index: 100;
    padding: 1.2rem 4rem;
    display: flex; align-items: center; justify-content: space-between;
    background: rgba(250,250,247,.88); backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(13,13,13,.06); transition: all .3s;
  }
  .nav-logo {
    font-family: var(--font-display); font-weight: 800; font-size: 1.6rem;
    letter-spacing: -1px; color: var(--ink); text-decoration: none;
  }
  .nav-logo span { color: var(--accent); }
  .nav-links { display: flex; gap: 2.5rem; list-style: none; }
  .nav-links a {
    font-size: .9rem; font-weight: 500; color: var(--muted);
    text-decoration: none; transition: color .2s; letter-spacing: .02em;
  }
  .nav-links a:hover, .nav-links a.active, .mobile-nav-links a.active{ color: var(--accent); }
  .nav-cta {
    background: var(--accent); color: var(--white);
    padding: .65rem 1.5rem; border-radius: 100px;
    font-size: .875rem; font-weight: 500; text-decoration: none;
    transition: background .2s, transform .2s; letter-spacing: .01em;
  }
  .nav-cta:hover { background: var(--ink); transform: translateY(-1px); }

  /* ── HAMBURGER ── */
  .hamburger {
    display: none; flex-direction: column; justify-content: center;
    gap: 5px; width: 44px; height: 44px;
    background: none; border: 2px solid rgba(13,13,13,.1);
    cursor: pointer; padding: 8px; border-radius: 12px;
    transition: background .2s, border-color .2s;
    z-index: 1000; position: relative; -webkit-tap-highlight-color: transparent;
  }
  .hamburger span {
    display: block; width: 22px; height: 2px; background: var(--ink);
    border-radius: 2px; transition: transform .35s cubic-bezier(.4,0,.2,1), opacity .25s, width .3s;
    transform-origin: center;
  }
  .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
  .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* ── MOBILE DRAWER ── */
  .mobile-menu-overlay {
    position: fixed; inset: 0; background: rgba(13,13,13,.5);
    backdrop-filter: blur(4px); z-index: 998;
    opacity: 0; visibility: hidden; pointer-events: none;
    transition: opacity .3s ease, visibility .3s ease;
  }
  .mobile-menu-overlay.visible { opacity: 1; visibility: visible; pointer-events: all; }
  .mobile-drawer {
    position: fixed; top: 0; right: 0; width: min(320px, 85vw);
    height: 100dvh; background: var(--white); z-index: 999;
    padding: 5rem 2rem 2.5rem; display: flex; flex-direction: column;
    transform: translateX(100%); transition: transform .38s cubic-bezier(.4,0,.2,1);
    box-shadow: -20px 0 60px rgba(0,0,0,.15); overflow-y: auto;
  }
  .mobile-drawer.open { transform: translateX(0); }
  .mobile-close {
    position: absolute; top: 1rem; right: 1rem;
    width: 38px; height: 38px; border: none; background: rgba(13,13,13,.06);
    border-radius: 50%; cursor: pointer; font-size: 1.1rem;
    display: flex; align-items: center; justify-content: center;
  }
  .mobile-nav-links { list-style: none; display: flex; flex-direction: column; gap: 0; margin-bottom: 1.5rem; }
  .mobile-nav-links li { border-bottom: 1px solid rgba(13,13,13,.06); }
  .mobile-nav-links a {
    display: flex; align-items: center; justify-content: space-between;
    padding: 1rem .25rem; font-size: 1.05rem; font-weight: 600; color: var(--ink);
    text-decoration: none; font-family: var(--font-display);
  }
  .mobile-nav-links a::after { content: '\2192'; color: var(--accent); }
  .mobile-cta {
    display: flex; align-items: center; justify-content: center;
    background: var(--accent); color: var(--white);
    padding: 1rem 2rem; border-radius: 100px; font-size: 1rem; font-weight: 600;
    text-decoration: none; margin-top: .5rem;
  }

  /* ── KEYFRAMES ── */
  @keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }
  @keyframes fadeLeft { to { opacity: 1; transform: translateX(0); } }
  @keyframes fadeRight { to { opacity: 1; transform: translateX(0); } }
  @keyframes blobFloat {
    0%,100% { transform: scale(1) translate(0,0); }
    50% { transform: scale(1.08) translate(20px,-20px); }
  }
  @keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
  @keyframes phoneFloat { 0%,100% { transform: translateY(0) rotate(-1deg); } 50% { transform: translateY(-14px) rotate(1deg); } }

  /* ── SCROLL REVEAL ── */
  .reveal { opacity: 0; transform: translateY(40px); transition: opacity .7s ease, transform .7s ease; }
  .reveal.visible { opacity: 1; transform: none; }

  /* ── HERO ── */
  .hero {
    min-height: 100vh; display: flex; align-items: center;
    padding: 7rem 4rem 4rem; position: relative; overflow: hidden;
    background: #12102b;
  }
  .hero-blob {
    position: absolute; border-radius: 50%;
    filter: blur(90px); opacity: .22;
    animation: blobFloat 8s ease-in-out infinite;
  }
  .blob1 { width: 700px; height: 700px; background: #7b52d4; top: -200px; right: -200px; }
  .blob2 { width: 500px; height: 500px; background: #1c6bff; bottom: -100px; left: -100px; animation-delay: -4s; }
  .blob3 { width: 300px; height: 300px; background: #f0b429; top: 40%; right: 25%; animation-delay: -2s; }

  .hero-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 4rem;
    align-items: center; position: relative; z-index: 1;
    width: 100%; max-width: 1300px; margin: 0 auto;
  }
 .partner-hero .hero-tag {
    display: inline-flex; align-items: center; gap: .5rem;
    background: rgba(123,82,212,.18); color: #e1b438;
    padding: .4rem 1rem; border-radius: 100px;
    font-size: .8rem; font-weight: 600; letter-spacing: .04em;
    text-transform: uppercase; margin-bottom: 1.5rem;
    border: 1px solid rgba(123,82,212,.35);
    opacity: 0; transform: translateY(20px);
    animation: fadeUp .6s ease forwards .3s;
  }
  .partner-hero .hero-title {
    font-family: var(--font-display); font-weight: 900;
    font-size: clamp(2.8rem, 4.5vw, 5rem); line-height: 1.0;
    letter-spacing: -2px; color: #fff;
    opacity: 0; transform: translateY(30px);
    animation: fadeUp .8s ease forwards .5s;
  }
  .partner-hero .hero-title em { font-style: normal; color: var(--partner); }
 .partner-hero .hero-sub {
    margin-top: 1.5rem; font-size: 1.1rem; color: rgba(255,255,255,.55);
    line-height: 1.7; max-width: 460px;
    opacity: 0; transform: translateY(20px);
    animation: fadeUp .7s ease forwards .7s;
  }
  .hero-actions {
    display: flex; gap: 1rem; margin-top: 2.5rem; flex-wrap: wrap;
    opacity: 0; transform: translateY(20px);
    animation: fadeUp .7s ease forwards .9s;
  }
  .btn-primary {
    background: var(--accent); color: #fff;
    padding: .9rem 2.2rem; border-radius: 100px;
    font-size: 1rem; font-weight: 500; text-decoration: none;
    transition: all .25s; display: inline-flex; align-items: center; gap: .5rem;
  }
  .btn-primary:hover { background: #9470e8; transform: translateY(-2px); box-shadow: 0 12px 32px rgba(123,82,212,.45); }
  .btn-outline-light {
    border: 1.5px solid rgba(255,255,255,.25); color: #fff;
    padding: .9rem 2rem; border-radius: 100px;
    font-size: 1rem; font-weight: 500; text-decoration: none;
    transition: all .25s; display: inline-flex; align-items: center; gap: .5rem;
  }
  .btn-outline-light:hover { border-color: #fff; background: rgba(255,255,255,.08); }

  .hero-stats {
    display: flex; gap: 2.5rem; margin-top: 3rem;
    opacity: 0; transform: translateY(20px);
    animation: fadeUp .7s ease forwards 1.1s;
  }
  .stat-item { display: flex; flex-direction: column; }
  .stat-num { font-family: var(--font-display); font-size: 2rem; font-weight: 800; letter-spacing: -1px; color: #fff; }
  .stat-label { font-size: .8rem; color: rgba(255,255,255,.4); font-weight: 500; }

  /* Hero phone visual */
  .hero-visual {
    position: relative; display: flex; justify-content: center; align-items: center;
    opacity: 0; transform: translateX(40px);
    animation: fadeLeft .9s ease forwards .6s;
  }
  .partner-phone {
    width: 260px; background: #1a1730; border-radius: 44px;
    padding: 14px; box-shadow: 0 50px 100px rgba(0,0,0,.6), inset 0 0 0 1px rgba(255,255,255,.1);
    animation: phoneFloat 5s ease-in-out infinite; position: relative; z-index: 2;
  }
  .partner-screen { background: var(--white); border-radius: 34px; overflow: hidden; min-height: 520px; }
  .pscreen-notch { width: 80px; height: 26px; background: #1a1730; border-radius: 0 0 16px 16px; margin: 0 auto; }
  .pscreen-body { padding: 1rem; }
  .pscreen-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; }
  .pscreen-header h4 { font-family: var(--font-display); font-size: .95rem; font-weight: 800; }
  .pscreen-badge { background: rgba(123,82,212,.12); color: var(--accent); font-size: .65rem; font-weight: 700; padding: .3rem .7rem; border-radius: 100px; }
  .pscreen-stat-row { display: grid; grid-template-columns: 1fr 1fr; gap: .6rem; margin-bottom: 1rem; }
  .pscreen-stat { background: var(--surface); border-radius: 12px; padding: .8rem; }
  .pscreen-stat .num { font-family: var(--font-display); font-size: 1.3rem; font-weight: 800; color: var(--ink); }
  .pscreen-stat .lbl { font-size: .62rem; color: var(--muted); font-weight: 500; margin-top: .1rem; }
  .pscreen-stat.accent-stat { background: var(--accent); }
  .pscreen-stat.accent-stat .num, .pscreen-stat.accent-stat .lbl { color: #fff; }
  .pscreen-booking { background: var(--surface); border-radius: 12px; padding: .8rem; margin-bottom: .6rem; display: flex; align-items: center; gap: .75rem; }
  .pb-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
  .pb-info h5 { font-size: .76rem; font-weight: 600; }
  .pb-info p { font-size: .65rem; color: var(--muted); }
  .pb-amount { margin-left: auto; font-size: .76rem; font-weight: 700; color: var(--accent); }
  .pscreen-earnings {
    background: var(--ink); border-radius: 12px; padding: .9rem; color: #fff;
    position: relative; overflow: hidden;
  }
  .pscreen-earnings::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, var(--accent) 0%, transparent 60%); opacity: .3;
  }
  .pscreen-earnings p { font-size: .65rem; color: rgba(255,255,255,.5); margin-bottom: .2rem; position: relative; z-index: 1; }
  .pscreen-earnings h3 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 800; position: relative; z-index: 1; }
  .earn-badge { display: inline-block; background: #22c55e; color: #fff; font-size: .6rem; font-weight: 700; padding: .25rem .6rem; border-radius: 100px; margin-left: .5rem; position: relative; z-index: 1; }

  /* floating chips around phone */
  .float-chip {
    position: absolute; background: var(--white); border-radius: 14px;
    padding: .7rem 1rem; box-shadow: 0 8px 30px rgba(0,0,0,.15);
    display: flex; align-items: center; gap: .5rem; font-size: .8rem; font-weight: 600;
    white-space: nowrap;
  }
  .fc1 { top: 12%; right: -8%; animation: phoneFloat 6s ease-in-out infinite; animation-delay: -1s; }
  .fc2 { bottom: 22%; left: -10%; animation: phoneFloat 7s ease-in-out infinite; animation-delay: -3s; }
  .fc3 { bottom: 8%; right: -5%; animation: phoneFloat 5.5s ease-in-out infinite; animation-delay: -2s; }
  .chip-dot { width: 8px; height: 8px; border-radius: 50%; }

  /* ── MARQUEE ── */
  .marquee-wrap {
    background: var(--ink); padding: 1rem 0; overflow: hidden; white-space: nowrap;
    border-top: 1px solid rgba(255,255,255,.06); border-bottom: 1px solid rgba(255,255,255,.06);
  }
  .marquee-inner { display: inline-flex; gap: 3rem; animation: marquee 20s linear infinite; }
  .marquee-item {
    font-family: var(--font-display); font-size: .85rem;
    font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
    color: rgba(255,255,255,.4); display: flex; align-items: center; gap: 1rem;
  }
  .marquee-item span { color: var(--accent); }

  /* ── SECTIONS ── */
  section { padding: 7rem 4rem; }
  .container { max-width: 1200px; margin: 0 auto; }
  .partner-hero .section-tag {
    font-size: .78rem; font-weight: 700; letter-spacing: .08em;
    text-transform: uppercase; color: var(--accent);
    display: flex; align-items: center; gap: .5rem; margin-bottom: 1rem;
  }
  .section-tag::before { content: ''; display: block; width: 24px; height: 2px; background: var(--accent); }
  .partner-hero .section-title {
    font-family: var(--font-display); font-weight: 800;
    font-size: clamp(2.2rem, 3.5vw, 3.5rem); letter-spacing: -1.5px; line-height: 1.1; max-width: 640px;
  }
  .section-title em { font-style: normal; color: var(--accent); }
  .partner .section-title em { font-style: normal; color: var(--partner); }

  /* ── HOW IT WORKS ── */
  .how-bg { background: var(--surface); }
  .steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 4rem; }
  .step-card {
    background: var(--white); border-radius: var(--radius);
    padding: 2rem 1.75rem; border: 1.5px solid rgba(13,13,13,.06);
    position: relative; overflow: hidden;
    transition: transform .3s, box-shadow .3s;
    opacity: 0; transform: translateY(40px);
  }
  .step-card.visible { animation: fadeUp .6s ease forwards; }
  .step-card:nth-child(2).visible { animation-delay: .1s; }
  .step-card:nth-child(3).visible { animation-delay: .2s; }
  .step-card:nth-child(4).visible { animation-delay: .3s; }
  .step-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,.08); }
  .step-num {
    font-family: var(--font-display); font-size: 5rem; font-weight: 800;
    color: rgba(13,13,13,.04); position: absolute; top: -1rem; right: 1rem;
    line-height: 1; letter-spacing: -3px;
  }
  .step-icon { width: 60px; height: 60px; border-radius: 14px; background: var(--accent); display: flex; align-items: center; justify-content: center; font-size: 1.4rem; margin-bottom: 1.25rem; }
  .step-title { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; margin-bottom: .5rem; }
  .step-desc { font-size: .9rem; color: var(--muted); line-height: 1.7; }
  .step-icon img{width:40px}
.partner .step-icon{background: var(--partner);}
  /* ── KEY FEATURES ── */
  .features-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
  .features-visual { position: relative; }
  .feat-phone {
    width: 260px; background: #111; border-radius: 44px;
    padding: 14px; box-shadow: 0 40px 80px rgba(0,0,0,.2), inset 0 0 0 1px rgba(255,255,255,.08);
    margin: 0 auto;
  }
  .feat-screen { background: var(--white); border-radius: 34px; overflow: hidden; }
  .feat-notch { width: 80px; height: 26px; background: #111; border-radius: 0 0 16px 16px; margin: 0 auto; }
  .feat-body { padding: 1rem; }
  .feat-row { background: var(--surface); border-radius: 12px; padding: .75rem; margin-bottom: .6rem; display: flex; align-items: center; gap: .7rem; }
  .feat-row-icon { width: 32px; height: 32px; border-radius: 8px; background: var(--accent); display: flex; align-items: center; justify-content: center; font-size: .9rem; flex-shrink: 0; }
  .feat-row-text h5 { font-size: .75rem; font-weight: 600; }
  .feat-row-text p { font-size: .65rem; color: var(--muted); }
  .feat-row-val { margin-left: auto; font-size: .8rem; font-weight: 700; color: var(--accent); }

  .features-list { margin-top: 3rem; display: flex; flex-direction: column; gap: 1.25rem; }
  .feature-item {
    display: flex; gap: 1rem; align-items: flex-start;
    padding: 1.25rem 1.5rem; border-radius: 16px;
    border: 1.5px solid rgba(13,13,13,.07); transition: all .3s; cursor: pointer;
    opacity: 0; transform: translateX(30px);
  }
  .feature-item.visible { animation: fadeRight .5s ease forwards; }
  .feature-item:nth-child(2).visible { animation-delay: .1s; }
  .feature-item:nth-child(3).visible { animation-delay: .2s; }
  .feature-item:nth-child(4).visible { animation-delay: .3s; }
  .feature-item:nth-child(5).visible { animation-delay: .4s; }
  .feature-item:nth-child(6).visible { animation-delay: .5s; }
  .feature-item:hover { background: var(--surface); border-color: transparent; transform: translateX(4px); }
  /* .fi-icon { width: 44px; height: 44px; flex-shrink: 0; border-radius: 12px; background: rgba(123,82,212,.1); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; }
  .fi-text h4 { font-weight: 600; font-size: .95rem; margin-bottom: .25rem; }
  .fi-text p { color: var(--muted); font-size: .85rem; line-height: 1.6; } */

  /* ── PLANS ── */
  .plans-bg { background: var(--ink); }
  .plans-header { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: end; margin-bottom: 4rem; }
  .plans-header .section-title { color: #fff; }
  .plans-header .section-title em { color: var(--partner); }
  .plans-header .section-tag { color: var(--accent); }
  .plans-header .section-tag::before { background: var(--gold); }
  .plans-desc { color: rgba(255,255,255,.45); font-size: 1rem; line-height: 1.7; }
  .plans-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
  .plan-card {
    background: rgba(255,255,255,.06); border-radius: 24px;
    padding: 2.5rem 2rem; border: 1.5px solid rgba(255,255,255,.08);
    position: relative; transition: transform .3s, border-color .3s;
    opacity: 0; transform: translateY(40px);
  }
  .plan-card.visible { animation: fadeUp .6s ease forwards; }
  .plan-card:nth-child(2).visible { animation-delay: .12s; }
  .plan-card:nth-child(3).visible { animation-delay: .24s; }
  .plan-card:hover { transform: translateY(-6px); border-color: rgba(255,255,255,.15); }
  .plan-card.featured {
    background: var(--partner); border-color: var(--partner);
    box-shadow: 0 30px 80px rgba(123,82,212,.5);
  }
  .plan-card.featured:hover { transform: translateY(-8px); }
  .plan-popular {
    position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
    background: var(--gold); color: var(--ink);
    font-size: .72rem; font-weight: 800; letter-spacing: .05em; text-transform: uppercase;
    padding: .35rem .9rem; border-radius: 100px;
  }
  .plan-name { font-family: var(--font-display); font-size: .85rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: rgba(255,255,255,.5); margin-bottom: .75rem; }
  .plan-card.featured .plan-name { color: rgba(255,255,255,.7); }
  .plan-price { font-family: var(--font-display); font-size: 3rem; font-weight: 900; color: #fff; letter-spacing: -2px; line-height: 1; }
  .plan-price .currency { font-size: 1.5rem; letter-spacing: 0; vertical-align: top; margin-top: .5rem; display: inline-block; }
  .plan-price .period { font-size: .9rem; font-weight: 500; color: rgba(255,255,255,.4); letter-spacing: 0; }
  .plan-card.featured .plan-price .period { color: rgba(255,255,255,.6); }
  .plan-divider { border: none; border-top: 1px solid rgba(255,255,255,.1); margin: 1.5rem 0; }
  .plan-card.featured .plan-divider { border-color: rgba(255,255,255,.2); }
  .plan-features { list-style: none; display: flex; flex-direction: column; gap: .75rem; margin-bottom: 2rem; }
  .plan-features li { display: flex; align-items: flex-start; gap: .75rem; font-size: .88rem; color: rgba(255,255,255,.7); line-height: 1.5; }
  .plan-card.featured .plan-features li { color: rgba(255,255,255,.9); }
  .plan-features li::before { content: '✓'; font-size: .8rem; font-weight: 800; color: var(--gold); flex-shrink: 0; margin-top: .05rem; }
  .plan-card.featured .plan-features li::before { color: #fff; }
  .plan-cta {
    display: flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,.1); color: #fff;
    padding: .9rem 1.5rem; border-radius: 100px;
    font-size: .9rem; font-weight: 600; text-decoration: none;
    transition: background .25s; letter-spacing: .01em;
  }
  .plan-cta:hover { background: rgba(255,255,255,.2); }
  .plan-card.featured .plan-cta { background: #fff; color: var(--partner); }
  .plan-card.featured .plan-cta:hover { background: rgba(255,255,255,.9); }

  /* ── TESTIMONIALS ── */
  .testimonials-bg { background: var(--surface); }
  .testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3.5rem; }
  .testi-card {
    background: var(--white); border-radius: 20px;
    padding: 2rem; border: 1.5px solid rgba(13,13,13,.06);
    transition: transform .3s;
    opacity: 0; transform: translateY(30px);
  }
  .testi-card.visible { animation: fadeUp .6s ease forwards; }
  .testi-card:nth-child(2).visible { animation-delay: .1s; }
  .testi-card:nth-child(3).visible { animation-delay: .2s; }
  .testi-card:hover { transform: translateY(-4px); }
  .stars { display: flex; gap: .2rem; margin-bottom: 1rem; color: var(--gold); font-size: 1rem; }
  .testi-quote { font-size: .93rem; line-height: 1.75; color: #444; margin-bottom: 1.5rem; }
  .testi-author { display: flex; align-items: center; gap: .75rem; }
  .author-avatar { width: 40px; height: 40px; border-radius: 50%; font-weight: 700; font-size: .85rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
  .author-name { font-weight: 600; font-size: .9rem; }
  .author-role { font-size: .78rem; color: var(--muted); }

  /* ── APP DOWNLOAD ── */
  .app-promo {
    background: var(--ink); border-radius: 28px; padding: 5rem 4rem;
    margin: 0 4rem; display: flex; align-items: center; justify-content: space-between;
    position: relative; overflow: hidden; gap: 3rem;
  }
  .app-promo::before {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(ellipse 80% 80% at 80% 50%, rgba(123,82,212,.25) 0%, transparent 60%);
  }
  .promo-text { position: relative; z-index: 1; }
  .promo-text h2 {
    font-family: var(--font-display); font-weight: 800;
    font-size: clamp(2rem, 3.5vw, 3rem); color: #fff;
    letter-spacing: -1px; line-height: 1.15; margin-bottom: 1rem;
  }
  .promo-text h2 em { font-style: normal; color: var(--partner); }
  .user .promo-text h2 em { font-style: normal; color: var(--accent); }
  .promo-text p { color: rgba(255,255,255,.5); font-size: 1.05rem; line-height: 1.7; max-width: 440px; }
  .app-btns { display: flex; flex-direction: column; gap: .75rem; position: relative; z-index: 1; flex-shrink: 0; }
  .app-store-btn {
    display: flex; align-items: center; gap: .85rem;
    background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12);
    border-radius: 14px; padding: .85rem 1.5rem;
    transition: all .25s; text-decoration: none; min-width: 180px;
  }
  .app-store-btn:hover { background: rgba(255,255,255,.15); transform: translateY(-2px); }
  .store-sub { font-size: .68rem; color: rgba(255,255,255,.45); text-transform: uppercase; letter-spacing: .05em; }
  .store-name { font-size: 1rem; font-weight: 700; color: #fff; }
  .store-icon { font-size: 1.6rem; }
  .promo-phone {
    width: 180px; position: relative; z-index: 1;
    background: #222; border-radius: 36px; padding: 10px;
    box-shadow: 0 30px 60px rgba(0,0,0,.4);
    animation: phoneFloat 5s ease-in-out infinite;
  }
  .promo-screen { background: var(--white); border-radius: 28px; overflow: hidden; min-height: 280px; }
  .promo-notch { width: 60px; height: 20px; background: #222; border-radius: 0 0 12px 12px; margin: 0 auto; }
  .promo-body { padding: .8rem; }
  .promo-app-header { background: var(--accent); border-radius: 10px; padding: .75rem; margin-bottom: .6rem; color: #fff; }
  .promo-app-header p { font-size: .6rem; opacity: .7; }
  .promo-app-header h4 { font-family: var(--font-display); font-size: .95rem; font-weight: 800; }
  .promo-mini-stat { background: var(--surface); border-radius: 10px; padding: .65rem; margin-bottom: .5rem; }
  .promo-mini-stat .n { font-family: var(--font-display); font-size: 1.1rem; font-weight: 800; }
  .promo-mini-stat .l { font-size: .6rem; color: var(--muted); }

  /* ── FAQ ── */
  .faq-grid { max-width: 760px; margin: 3rem auto 0; }
  .faq-item { border-bottom: 1px solid rgba(13,13,13,.08); padding: 1.5rem 0; cursor: pointer; }
  .faq-q { display: flex; justify-content: space-between; align-items: center; }
  .faq-q h4 { font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; }
  .faq-toggle { font-size: 1.5rem; color: var(--muted); transition: transform .3s; font-weight: 300; }
  .faq-item.open .faq-toggle { transform: rotate(45deg); color: var(--accent); }
  .faq-a { overflow: hidden; max-height: 0; transition: max-height .4s ease, padding .3s; }
  .faq-item.open .faq-a { max-height: 200px; padding-top: 1rem; }
  .faq-a p { font-size: .93rem; color: var(--muted); line-height: 1.75; }

  /* ── FOOTER ── */
  footer { background: var(--ink); padding: 5rem 4rem 2rem; border-top: 1px solid rgba(255,255,255,.06); }
  .footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 4rem; }
  .footer-brand .logo { font-family: var(--font-display); font-size: 1.8rem; font-weight: 800; color: #fff; letter-spacing: -1px; }
  .footer-brand .logo span { color: var(--accent); }
  .footer-tagline { color: rgba(255,255,255,.7); font-size: .9rem; line-height: 1.7; margin-top: .75rem; max-width: 260px; }
  .footer-socials { display: flex; gap: .75rem; margin-top: 1.5rem; }
  .social-icon { width: 36px; height: 36px; border-radius: 10px; border: 1px solid rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.5); font-size: 1rem; text-decoration: none; transition: all .2s; }
  .social-icon:hover { background: var(--accent); border-color: var(--accent); color: #fff; }
  .footer-col h5 { color: #fff; font-weight: 600; font-size: .9rem; margin-bottom: 1.25rem; }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .7rem; padding-left: 0;}
  .footer-col a { color: rgba(255,255,255,.7); font-size: .87rem; text-decoration: none; transition: color .2s; }
  .footer-col a:hover { color: #fff; }
  .footer-bottom { border-top: 1px solid rgba(255,255,255,.07); padding-top: 1.5rem; display: flex; justify-content: center; align-items: center; flex-wrap: wrap; gap: 1rem; }
  .footer-copy { color: rgba(255,255,255,.7); font-size: .8rem; }
  .footer-legal { display: flex; gap: 1.5rem; }
  .footer-legal a { color: rgba(255,255,255,.3); font-size: .8rem; text-decoration: none; transition: color .2s; }
  .footer-legal a:hover { color: rgba(255,255,255,.7); }

  /* ── RESPONSIVE ── */
  @media (max-width: 1024px) {
    nav { padding: 1rem 2rem; }
    .hero, section { padding-left: 2rem; padding-right: 2rem; }
    .hero-grid { grid-template-columns: 1fr; gap: 3rem; }
    .steps-grid { grid-template-columns: repeat(2, 1fr); }
    .features-inner { grid-template-columns: 1fr; }
    .plans-header { grid-template-columns: 1fr; gap: 1.5rem; }
    .plans-grid { grid-template-columns: 1fr 1fr; }
    .testi-grid { grid-template-columns: 1fr 1fr; }
    .footer-top { grid-template-columns: 1fr 1fr; }
    .app-promo { margin: 0 2rem; flex-direction: column; }
  }

  @media (max-width: 768px) {
    .hamburger { display: flex; }
    .nav-links { display: none !important; }
    .nav-cta { display: none; }
    nav { padding: 1rem 1.25rem; }
    .cursor, .cursor-ring { display: none !important; }
    .plans-grid { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }
    .testi-grid { grid-template-columns: 1fr; }
    .float-chip { display: none; }
  }

  @media (max-width: 640px) {
    .steps-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; }
    .app-promo { margin: 0; padding: 2.5rem; }
    .hero, section { padding-left: 1.25rem; padding-right: 1.25rem; }
  }





  /*contact us css*/
  
    :root {
      --accent: #6847ff;
      --accent-light: #aa98fc;
      --bg-deep: #0e0c1a;
      --bg-card: rgba(255,255,255,0.04);
      --bg-input: rgba(255,255,255,0.06);
      --border: rgba(255,255,255,0.10);
      --text: #e8e6f0;
      --muted: #9390a8;
      --font-display: 'Barlow', sans-serif;
      --font-body: 'DM Sans', sans-serif;
    }

    /* *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    html { scroll-behavior: smooth; }

    body {
      font-family: var(--font-body);
      background: var(--bg-deep);
      color: var(--text);
      min-height: 100vh;
      overflow-x: hidden;
    } */

    /* ── SUNRAY BG ── */
    /* body::before {
      content: '';
      position: fixed;
      top: 0; left: 50%;
      transform: translateX(-50%);
      width: 900px; height: 600px;
      background: conic-gradient(from 270deg at 50% 0%,
        transparent 0deg,
        rgba(123,82,212,0.06) 10deg,
        transparent 20deg,
        rgba(123,82,212,0.05) 30deg,
        transparent 40deg,
        rgba(123,82,212,0.07) 50deg,
        transparent 60deg,
        rgba(123,82,212,0.04) 70deg,
        transparent 80deg,
        rgba(123,82,212,0.06) 90deg,
        transparent 100deg,
        rgba(123,82,212,0.05) 110deg,
        transparent 120deg,
        rgba(123,82,212,0.06) 130deg,
        transparent 140deg,
        rgba(123,82,212,0.04) 150deg,
        transparent 160deg,
        rgba(123,82,212,0.06) 170deg,
        transparent 180deg
      );
      pointer-events: none;
      z-index: 0;
    } */

    /* ── NAVBAR ── */
    .topedox-nav {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: rgba(14,12,26,0.92);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-bottom: 1px solid var(--border);
      padding: 0.85rem 0;
    }

    .nav-logo img { height: 36px; width: auto; }

    .nav-link-item {
      color: rgba(0,0,0,0.75) !important;
      font-family: var(--font-display);
      font-weight: 600;
      font-size: 0.95rem;
      text-decoration: none;
      padding: 0.4rem 1rem !important;
      border-radius: 8px;
      transition: color 0.2s, background 0.2s;
    }
    .nav-link-item:hover { color: var(--accent-light) !important; background: rgba(255,255,255,0.06); }
    .nav-link-item.active { color: var(--accent-light) !important; }

    .nav-partner-btn {
      background: var(--accent-light) !important;;
      border: 1.5px solid var(--border);
      color: var(--text) !important;
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 0.9rem;
      padding: 0.45rem 1.2rem;
      border-radius: 100px;
      text-decoration: none;
      transition: border-color 0.2s, color 0.2s, background 0.2s;
      white-space: nowrap;
    }
    .nav-partner-btn:hover {
      border-color: var(--accent);
      color: var(--text) !important;
      background: rgba(123,82,212,0.08);
    }

    /* Hamburger */
    .ham-btn {
      display: none;
      flex-direction: column;
      gap: 5px;
      background: none;
      border: 1.5px solid var(--accent);
      border-radius: 10px;
      padding: 8px 10px;
      cursor: pointer;
      touch-action: manipulation;
      -webkit-tap-highlight-color: transparent;
    }
    .ham-btn span {
      display: block;
      width: 20px; height: 2px;
      background: var(--accent);
      border-radius: 2px;
      transition: transform 0.3s, opacity 0.2s;
    }
    .ham-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .ham-btn.open span:nth-child(2) { opacity: 0; }
    .ham-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    /* Mobile drawer */
    .mobile-overlay {
      position: fixed; inset: 0;
      background: rgba(10,8,20,0.6);
      backdrop-filter: blur(4px);
      z-index: 1998;
      opacity: 0; visibility: hidden;
      pointer-events: none;
      transition: opacity 0.3s, visibility 0.3s;
    }
    .mobile-overlay.open { opacity: 1; visibility: visible; pointer-events: all; }

    .mobile-drawer {
      position: fixed;
      top: 0; right: 0;
      width: min(300px, 85vw);
      height: 100dvh;
      background: #fff;
      border-left: 1px solid var(--border);
      z-index: 1999;
      padding: 4.5rem 1.5rem 2rem;
      display: flex; flex-direction: column; gap: 0.25rem;
      transform: translateX(100%);
      transition: transform 0.35s cubic-bezier(.4,0,.2,1);
      overflow-y: auto;
    }
    .mobile-drawer.open { transform: translateX(0); }
    .mobile-drawer .nav-link-item { display: block; padding: 0.75rem 1rem !important; font-size: 1.05rem; border-bottom: 1px solid var(--border); border-radius: 0; }
    .mobile-drawer .nav-partner-btn { margin-top: 1rem; display: block; text-align: center; padding: 0.75rem; }
    .drawer-close {
      position: absolute; top: 1rem; right: 1rem;
      width: 36px; height: 36px;
      background: rgba(0,0,0,0.6);
      border: none; border-radius: 50%;
      color: var(--text); font-size: 1rem;
      cursor: pointer; display: flex; align-items: center; justify-content: center;
    }

    /* ── BREADCRUMB ── */
    .breadcrumb-wrap {
      position: relative; z-index: 1;
      padding: 1.25rem 0 0;
    }
    .breadcrumb-nav {
      font-size: 0.82rem;
      color: var(--muted);
      display: flex; align-items: center; gap: 0.4rem;
    }
    .breadcrumb-nav a { color: var(--muted); text-decoration: none; }
    .breadcrumb-nav a:hover { color: var(--text); }
    .breadcrumb-nav .sep { font-size: 0.7rem; opacity: 0.5; }
    .breadcrumb-nav .current { color: var(--text); }

    /* ── CONTACT SECTION ── */
    .contact-section {
      position: relative; z-index: 1;
      padding: 4rem 0 6rem;
      min-height: calc(100vh - 64px - 380px);
    }

    .contact-headline {
      font-family: var(--font-display);
      font-weight: 600;
      font-size: 1.1rem;
      color: var(--muted);
      margin-bottom: 0.75rem;
      letter-spacing: 0.01em;
    }

    .contact-title {
      font-family: var(--font-display);
      font-weight: 900;
      font-size: clamp(2.8rem, 7vw, 5rem)!important;
      line-height: 1.05;
      color: var(--accent-light);
      margin-bottom: 0;
    }

    .contact-desc {
      color: var(--muted);
      font-size: 0.95rem;
      line-height: 1.7;
      margin-top: 1.5rem;
      max-width: 340px;
    }

    .contact-info-items {
      margin-top: 2.5rem;
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }
    .ci-item {
      display: flex;
      align-items: center;
      gap: 0.9rem;
    }
    .ci-icon {
      width: 38px; height: 38px;
      background: rgba(123,82,212,0.15);
      border: 1px solid rgba(123,82,212,0.25);
      border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1rem;
      flex-shrink: 0;
    }
    .ci-text { font-size: 0.88rem; color: var(--muted); }
    .ci-text strong { display: block; color: var(--text); font-size: 0.92rem; margin-bottom: 0.1rem; }

    /* ── FORM CARD ── */
    .form-card {
      background: rgba(255,255,255,0.03);
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 2.5rem 2rem;
      backdrop-filter: blur(10px);
    }

    .form-label {
      font-family: var(--font-display);
      font-weight: 600;
      font-size: 0.85rem;
      color: var(--muted);
      letter-spacing: 0.03em;
      text-transform: uppercase;
      margin-bottom: 0.5rem;
    }

    .form-control, .form-select {
      background: var(--bg-input) !important;
      border: 1px solid var(--border) !important;
      border-radius: 10px !important;
      color: var(--text) !important;
      font-family: var(--font-body) !important;
      font-size: 0.93rem !important;
      padding: 0.75rem 1rem !important;
      transition: border-color 0.2s, background 0.2s, box-shadow 0.2s !important;
    }
    .form-control::placeholder { color: rgba(147,144,168,0.5) !important; }
    .form-control:focus, .form-select:focus {
      background: rgba(255,255,255,0.08) !important;
      border-color: var(--accent) !important;
      box-shadow: 0 0 0 3px rgba(123,82,212,0.18) !important;
      outline: none !important;
      color: var(--muted) !important;
    }
    textarea.form-control { resize: vertical; min-height: 130px; }

    .submit-btn {
      background: var(--accent);
      color: #fff;
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 0.95rem;
      letter-spacing: 0.03em;
      border: none;
      border-radius: 10px;
      padding: 0.85rem 2.5rem;
      cursor: pointer;
      transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
      width: 100%;
    }
    .submit-btn:hover {
      background: #8f64e0;
      box-shadow: 0 8px 28px rgba(123,82,212,0.4);
      transform: translateY(-1px);
    }
    .submit-btn:active { transform: translateY(0); }
    .submit-btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

    /* Success / Error alerts */
    .form-alert {
      border-radius: 10px;
      padding: 0.9rem 1.1rem;
      font-size: 0.88rem;
      font-weight: 500;
      display: none;
      align-items: center;
      gap: 0.6rem;
    }
    .form-alert.success {
      background: rgba(34,197,94,0.12);
      border: 1px solid rgba(34,197,94,0.25);
      color: #86efac;
    }
    .form-alert.error {
      background: rgba(239,68,68,0.12);
      border: 1px solid rgba(239,68,68,0.25);
      color: #fca5a5;
    }
    .form-alert.show { display: flex; }

    /* Spinner */
    .btn-spinner {
      display: inline-block;
      width: 16px; height: 16px;
      border: 2px solid rgba(255,255,255,0.3);
      border-top-color: #fff;
      border-radius: 50%;
      animation: spin 0.7s linear infinite;
      vertical-align: middle;
      margin-right: 6px;
      display: none;
    }
    @keyframes spin { to { transform: rotate(360deg); } }

    /* ── FOOTER ── */
    .site-footer {
      position: relative; z-index: 1;
      background: rgba(8,6,18,0.95);
      border-top: 1px solid var(--border);
      padding: 3.5rem 0 0;
    }

    .footer-logo img { height: 36px; width: auto; }

    .footer-tagline {
      color: var(--muted);
      font-size: 0.85rem;
      line-height: 1.65;
      margin-top: 0.85rem;
      max-width: 280px;
    }

    .store-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.6rem;
      background: rgba(255,255,255,0.07);
      border: 1px solid var(--border);
      border-radius: 10px;
      padding: 0.5rem 1rem;
      text-decoration: none;
      color: var(--text);
      font-size: 0.78rem;
      font-weight: 600;
      transition: background 0.2s, border-color 0.2s;
      white-space: nowrap;
    }
    .store-badge:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.2); color: #fff; }
    .store-badge .store-icon { font-size: 1.3rem; }
    .store-badge .store-sub { font-size: 0.65rem; font-weight: 400; color: var(--muted); display: block; line-height: 1; }
    .store-badge .store-name { font-size: 0.82rem; font-weight: 700; display: block; line-height: 1.2; }

    .footer-heading {
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 0.9rem;
      color: var(--text);
      letter-spacing: 0.04em;
      text-transform: uppercase;
      margin-bottom: 1rem;
    }

    .footer-links { list-style: none; padding: 0; margin: 0; }
    .footer-links li { margin-bottom: 0.55rem; }
    .footer-links a {
      color: var(--muted);
      text-decoration: none;
      font-size: 0.87rem;
      transition: color 0.2s;
    }
    .footer-links a:hover { color: var(--accent-light); }

    .footer-email-link {
      color: var(--accent-light);
      text-decoration: none;
      font-size: 0.9rem;
      font-weight: 600;
      transition: opacity 0.2s;
    }
    .footer-email-link:hover { opacity: 0.8; }

    .newsletter-wrap {
      display: flex;
      margin-top: 1rem;
      border-radius: 10px;
      overflow: hidden;
      border: 1px solid var(--border);
    }
    .newsletter-input {
      flex: 1;
      background: var(--bg-input);
      border: none;
      padding: 0.6rem 0.9rem;
      color: var(--text);
      font-size: 0.83rem;
      font-family: var(--font-body);
      outline: none;
    }
    .newsletter-input::placeholder { color: var(--muted); }
    .newsletter-btn {
      background: var(--accent);
      border: none;
      color: #fff;
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 0.82rem;
      padding: 0.6rem 1.1rem;
      cursor: pointer;
      transition: background 0.2s;
      white-space: nowrap;
    }
    .newsletter-btn:hover { background: #8f64e0; }

    .footer-bottom {
      margin-top: 3rem;
      border-top: 1px solid var(--border);
      padding: 1.25rem 0;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 0.5rem;
    }
    .footer-copy { font-size: 0.8rem; color: var(--muted); margin: 0; }
    .footer-copy a { color: var(--accent-light); text-decoration: none; }
    .footer-legal { display: flex; gap: 1rem; flex-wrap: wrap; }
    .footer-legal a { font-size: 0.78rem; color: var(--muted); text-decoration: none; transition: color 0.2s; }
    .footer-legal a:hover { color: var(--text); }

    /* ── RESPONSIVE ── */
    @media (max-width: 991px) {
      .desktop-nav { display: none !important; }
      .ham-btn { display: flex !important; }
    }
    @media (max-width: 767px) {
      .contact-section { padding: 2.5rem 0 4rem; }
      .contact-title { font-size: 3rem; }
      .form-card { padding: 1.75rem 1.25rem; }
      .contact-left { margin-bottom: 2.5rem; }
      .footer-bottom { flex-direction: column; align-items: flex-start; }
    }


    /*policy css*/


     /* ── MAIN CONTENT LAYOUT ── */
  .policy-wrap {
    max-width: 1024px;
    margin:  100px  auto;
    padding: 0 clamp(20px,5vw,60px) 80px;
  }

  /* ── POLICY SECTIONS ── */
  .policy-section {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: clamp(1.4rem,4vw,2rem);
    margin-bottom: 1.2rem;
    transition: border-color .25s, transform .2s;
    position: relative;
    overflow: hidden;
  }
  .policy-section::before {
    content:'';
    position:absolute; top:0; left:0; width:3px; height:100%;
    background: var(--accent); border-radius:3px 0 0 3px;
    opacity:0; transition: opacity .25s;
  }
  .policy-section:hover {
    border-color: var(--border-acc);
    transform: translateX(4px);
  }
  .policy-section:hover::before { opacity:1; }

  .section-tag {
    display:inline-flex; align-items:center; gap:.5rem;
    font-size:.72rem; font-weight:700; letter-spacing:1.5px;
    text-transform:uppercase; color:var(--accent);
    margin-bottom:.9rem;
  }
  .partner .section-tag {color:var(--partner);}
  .section-tag::before {
    content:'';
    width:18px; height:2px; background:var(--accent); border-radius:2px;
  }
  .partner .section-tag::before {
    background:var(--partner);
  }

  .policy-section h2 {
    font-family:'Barlow', sans-serif; font-weight:800;
    font-size:clamp(1.1rem,2.5vw,1.35rem); letter-spacing:-.3px;
    color:var(--accent-soft); margin-bottom:.8rem;
  }

  .policy-section p {
    color:var(--text-muted); font-size:.92rem; line-height:1.75;
    margin-bottom:.6rem;
  }
  .policy-section p:last-child { margin-bottom:0; }

  .policy-section ul {
    list-style:none; display:flex; flex-direction:column; gap:.5rem;
    margin-top:.2rem;
  }
  .policy-section ul li {
    display:flex; align-items:flex-start; gap:.7rem;
    color:var(--text-muted); font-size:.92rem; line-height:1.65;
  }
  .policy-section ul li::before {
    content:'';
    flex-shrink:0; margin-top:.55rem;
    width:6px; height:6px; border-radius:50%;
    background:var(--accent);
  }

  .policy-section strong { color:var(--accent-light); font-weight:500; }

  .policy-section a {
    color:var(--accent); text-decoration:none;
    border-bottom:1px solid transparent;
    transition: border-color .2s;
  }
  .policy-section a:hover { border-color:var(--accent); }

  /* sub-label rows (Billing Errors, Non-Refundable etc) */
  .policy-row { margin-bottom:.7rem; }
  .policy-row-label {
    font-weight:700; color:var(--accent-light); font-size:.9rem;
    display:block; margin-bottom:.1rem;
  }
  .policy-row p { margin:0; }

  /* contact chips */
  .contact-chips { display:flex; flex-wrap:wrap; gap:.7rem; margin-top:.8rem; }
  .chip {
    display:inline-flex; align-items:center; gap:.5rem;
    background: var(--accent-soft); border:1px solid var(--border-acc);
    padding:.45rem .9rem; border-radius:8px;
    font-size:.85rem; color:var(--text);
    text-decoration:none; transition: background .2s;
  }
  .chip:hover { background: rgba(124,58,237,.2); }
  .chip-icon { font-size:.9rem; }

  /* ── REVEAL ANIMATION ── */
  .reveal {
    opacity:0; transform:translateY(24px);
    transition: opacity .55s cubic-bezier(.4,0,.2,1), transform .55s cubic-bezier(.4,0,.2,1);
  }
  .reveal.visible { opacity:1; transform:translateY(0); }

  /* stagger children */
  .reveal:nth-child(2) { transition-delay:.08s; }
  .reveal:nth-child(3) { transition-delay:.14s; }
  .reveal:nth-child(4) { transition-delay:.2s; }
  .reveal:nth-child(5) { transition-delay:.26s; }
  .reveal:nth-child(6) { transition-delay:.32s; }
  .reveal:nth-child(7) { transition-delay:.38s; }
  .reveal:nth-child(8) { transition-delay:.44s; }
  .reveal:nth-child(9) { transition-delay:.5s; }
  .reveal:nth-child(10) { transition-delay:.56s; }

  /*slider css home*/
.slider-outer {
    position: relative;
    width: 100%;
  }

  .slider-outer::before,
  .slider-outer::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 48px;
    z-index: 3;
    pointer-events: none;
  }
  /* .slider-outer::before { left: 0;  background: linear-gradient(to right, #f5f4f0, transparent); }
  .slider-outer::after  { right: 0; background: linear-gradient(to left,  #f5f4f0, transparent); } */

  .slider-wrapper {
    overflow: hidden;
    padding: 8px 0 28px;
    cursor: default;
  }

  .slider-track {
    display: flex;
    gap: var(--gap, 16px);
    padding: 8px 48px;
    width: max-content;
  }

  .slider-track.animating {
    animation: slide var(--dur, 28s) linear infinite;
  }
  .slider-wrapper:hover .slider-track.animating {
    animation-play-state: paused;
  }

  @keyframes slide {
    0%   { transform: translateX(0); }
    100% { transform: translateX(var(--shift, -50%)); }
  }

  .slider-wrapper.snap-mode {
    overflow-x: scroll;
    overflow-y: visible;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    cursor: grab;
  }
  .slider-wrapper.snap-mode::-webkit-scrollbar { display: none; }
  .slider-wrapper.snap-mode .slider-track {
    animation: none !important;
    width: auto;
  }
  .slider-wrapper.snap-mode .card {
    scroll-snap-align: start;
  }

  /* ── Card ── */
  .card {
    flex: 0 0 var(--card-w, 260px);
    background: #fff;
    border-radius: 20px;
    padding: 28px 24px 32px;
    border: 1px solid rgba(0,0,0,0.07);
    transition: transform 0.35s cubic-bezier(.22,.68,0,1.2),
                box-shadow 0.35s ease, border-color 0.3s;
    position: relative;
    overflow: hidden;
  }
  .card::before {
    content: '';
    position: absolute; inset: 0;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(107,92,231,0.06) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s;
  }
  .card:hover {
    transform: translateY(-6px) scale(1.015);
    box-shadow: 0 20px 50px rgba(107,92,231,0.13), 0 4px 12px rgba(0,0,0,0.06);
    border-color: rgba(107,92,231,0.25);
  }
  .card:hover::before { opacity: 1; }

  /* ── Image icon ── */
  .icon-wrap {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    margin-bottom: 20px;
    border: 2.5px solid rgba(107,92,231,0.15);
    box-shadow: 0 4px 14px rgba(107,92,231,0.1);
    background: #f0eefb;
    overflow: hidden;
    flex-shrink: 0;
    transition: transform 0.4s cubic-bezier(.22,.68,0,1.3), box-shadow 0.3s;
  }
  .icon-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 50%;
  }
  .card:hover .icon-wrap {
    transform: scale(1.1) rotate(-4deg);
    box-shadow: 0 8px 22px rgba(107,92,231,0.2);
  }

  .card-title {
    font-family: 'Syne', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #111;
    margin-bottom: 8px;
    letter-spacing: -0.01em;
  }
  .card-desc {
    font-size: 12.5px;
    line-height: 1.65;
    color: #666;
  }
  .card-arrow {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: 16px;
    font-size: 11px;
    font-weight: 600;
    color: #6b5ce7;
    opacity: 0;
    transform: translateY(4px);
    transition: opacity 0.25s, transform 0.25s;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }
  .card:hover .card-arrow { opacity: 1; transform: translateY(0); }

  /* ── Dots ── */
  .dots {
    display: none;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
  }
  .dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: rgba(107,92,231,0.25);
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
    border: none; padding: 0;
  }
  .dot.active {
    background: #6b5ce7;
    transform: scale(1.35);
  }


  /*partner slider*/

  