:root {
      --blue: #0ea5e9;
      --green: #22c55e;
      --bg: #020617;
      --bg-soft: rgba(2,6,23,0.85);
      --text: #ffffff;
      --muted: #94a3b8;
      --card: rgba(255,255,255,0.08);
      --border: #1e293b;
    }

    body.light {
      --bg: #f8fafc;
      --bg-soft: rgba(255,255,255,0.9);
      --text: #020617;
      --muted: #475569;
      --card: #ffffff;
      --border: #e5e7eb;
    }

    * { margin:0; padding:0; box-sizing:border-box; }
    html { scroll-behavior:smooth; }

    body {
      font-family:'Inter',sans-serif;
      background:var(--bg);
      color:var(--text);
      line-height:1.7;
      transition:background .3s,color .3s;
    }

    /* NAV */
    header{position:fixed;top:0;width:100%;z-index:1000;background:var(--bg-soft);backdrop-filter:blur(14px);border-bottom:1px solid var(--border)}
    .nav{max-width:1280px;margin:auto;padding:18px 28px;display:flex;justify-content:space-between;align-items:center}
    .logo{font-weight:900;font-size:22px;background:linear-gradient(90deg,var(--blue),var(--green));-webkit-background-clip:text;-webkit-text-fill-color:transparent}

    /* LOGO */
    .logo {
      display: flex;
      align-items: center;
    }

    .logo img {
      height: 36px;          /* perfect navbar size */
      width: auto;
      display: block;
    }

    /* Slightly larger on desktop */
    @media (min-width: 1024px) {
      .logo img {
        height: 40px;
      }
    }


    .menu{display:flex;align-items:center}
    .menu a,.menu button{margin-left:28px;color:var(--text);text-decoration:none;font-weight:500;background:none;border:none;cursor:pointer}

    .hamburger{display:none;font-size:26px;cursor:pointer}

    /* MOBILE NAV */
    @media(max-width:900px){
      .menu{position:absolute;top:70px;left:0;right:0;background:var(--bg);flex-direction:column;display:none;border-bottom:1px solid var(--border)}
      .menu a,.menu button{margin:18px 0}
      .menu.active{display:flex}
      .hamburger{display:block}
    }

    section{padding:60px 28px}
    .section-inner{max-width:1280px;margin:auto}

    /* HERO */
    .hero{padding-top:70px}
    .hero-inner{display:grid;grid-template-columns:1.2fr 1fr;gap:80px;align-items:center}
    h1{font-size:64px;font-weight:900;line-height:1.05;margin-bottom:28px}
    .hero p{font-size:20px;color:var(--muted);margin-bottom:40px}
    .cta a{display:inline-block;padding:18px 38px;border-radius:14px;font-weight:700;text-decoration:none;margin-right:16px; margin-bottom: 15px;}
    .cta-primary{
      background:linear-gradient(90deg,var(--blue),var(--green));
      color:#020617;
      padding: 10px 27px 10px 27px;
      border-radius: 30px;
      text-decoration: none;
    }
    .cta-secondary{
      border:1px solid var(--border);
      color:var(--text);
      padding: 10px 27px 10px 27px;
      border-radius: 30px;
      text-decoration: none;
    }

    .hero img{width:100%;border-radius:28px}

    /* CARDS */
    .grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,1fr));gap:36px}
    .card{background:var(--card);border:1px solid var(--border);border-radius:28px;padding:36px}
    .card h3{margin-bottom:12px}
    .card p{color:var(--muted)}

    /* PHONE SHOWCASE */
    .phone-showcase{display:grid;grid-template-columns:1fr 1fr;gap:80px;align-items:center}
    .phone{max-width:360px;margin:auto}
    .phone img{
      width:100%;
      border-radius: 25px;
    }

    /* STATS */
    .stats{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:40px;text-align:center}
    .stat h2{font-size:52px;font-weight:900;background:linear-gradient(90deg,var(--blue),var(--green));-webkit-background-clip:text;-webkit-text-fill-color:transparent}

    /* DOWNLOAD */
    .stores{display:flex;justify-content:center;gap:20px;flex-wrap:wrap}
    .stores img{height:60px}

    footer{padding:70px 28px;border-top:1px solid var(--border);text-align:center;color:var(--muted)}

    .reveal{opacity:0;transform:translateY(40px);transition:.8s}
    .reveal.active{opacity:1;transform:none}

    @media(max-width:900px){
      .hero-inner,.phone-showcase{grid-template-columns:1fr}
      h1{font-size:44px}
      .section-inner{
        margin-top: 30px;
      }
    }

    /* WHY SECTION ENHANCEMENTS */
.why-grid {
    margin-top: 60px;
  }
  
  .why-card {
    position: relative;
  }
  
  .why-icon {
    font-size: 28px;
    margin-bottom: 14px;
  }
  
  .why-example {
    display: block;
    margin-top: 16px;
    font-size: 14px;
    color: var(--muted);
    font-style: italic;
  }
  
  /* Different reveal directions */
  .reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: .8s ease;
  }
  
  .reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: .8s ease;
  }
  
  .reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: .8s ease;
  }
  
  .reveal-left.active,
  .reveal-up.active,
  .reveal-right.active {
    opacity: 1;
    transform: translate(0);
  }
  
  .why-language-note {
    margin-top: 60px;
    text-align: center;
    font-size: 15px;
    color: var(--muted);
  }

  .section-desc{
    padding: 10px;
  }

  #why{
    margin-top: -35px;
  }

  .timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 40px;
    margin-top: 60px;
    }

    .timeline-step {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 32px;
    }

    .step-number {
    display: inline-block;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(90deg, var(--blue), var(--green));
    color: #020617;
    font-weight: 800;
    text-align: center;
    line-height: 36px;
    margin-bottom: 14px;
    }


/* SCENARIO LAYOUT */
.scenario-layout {
    display: grid;
    grid-template-columns: 0.9fr 1.6fr; /* cards smaller, image bigger */
    gap: 60px;
    align-items: center;
    margin-top: 60px;
  }
  
  /* LEFT: Cards */
  .scenario-cards {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }
  
  /* RIGHT: Image */
  .scenario-image {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .scenario-image img {
    width: 100%;
    max-width: 620px;      /* BIG, hero-style image */
    height: auto;
    background: transparent;
    object-fit: contain;
    border-radius: 30px;
  }
  
  /* TABLET */
  @media (max-width: 1024px) {
    .scenario-layout {
      grid-template-columns: 1fr 1.3fr;
      gap: 40px;
    }
  
    .scenario-image img {
      max-width: 520px;
    }
  }
  
  /* MOBILE */
  @media (max-width: 768px) {
    .scenario-layout {
      grid-template-columns: 1fr;
      gap: 40px;
    }
  
    .scenario-image {
      order: -1; /* Image appears first on mobile */
    }
  
    .scenario-image img {
      max-width: 100%;
    }
  }
  
  /* WHY SECTION ICONS */
  .why-card {
    position: relative;
  }

  .why-icon {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    font-size: 22px;
    background: linear-gradient(135deg, var(--blue), var(--green));
    color: #020617;
  }

  body.light .why-icon {
    color: #020617;
  }

  .why-card:hover .why-icon {
    transform: translateY(-2px);
    transition: 0.2s ease;
  }

  .scenario-title {
    display: flex;
    align-items: center;
    gap: 10px;              /* space between icon & text */
    font-weight: 700;
  }
  
  .scenario-title svg {
    flex-shrink: 0;             /* red */
  }
  

  /* FAQ ACCORDION - CENTERED */
.faq-accordion {
  margin: 60px auto 0;
  max-width: 820px;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 0;
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  text-align: left;
}

.faq-question:hover {
  opacity: 0.9;
}

.faq-icon {
  font-size: 22px;
  transition: transform 0.3s ease;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer p {
  padding-bottom: 20px;
  color: var(--muted);
  line-height: 1.7;
}

/* ACTIVE */
.faq-item.active .faq-answer {
  max-height: 400px;
}

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


.site-footer {
  padding: 40px 24px;
  text-align: center;
  border-top: 1px solid var(--border);
}

.site-footer p {
  margin-bottom: 12px;
  color: var(--muted);
  font-size: 14px;
}

.footer-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}

.footer-links a {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
}

.footer-links a:hover {
  text-decoration: underline;
}

.divider {
  color: var(--muted);
}


/* STORE BADGES */
.stores {
  margin-top: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.store-badge img {
  height: 60px;     /* SAME height = same visual size */
  width: auto;
  display: block;
}

/* Larger on desktop */
@media (min-width: 1024px) {
  .store-badge img {
    height: 68px;
  }
}


.store-badge img {
  transition: transform 0.2s ease;
}

.store-badge:hover img {
  transform: translateY(-2px);
}


/* THEME TOGGLE SWITCH */
.theme-switch {
  margin-left: 24px;
}

.theme-switch input {
  display: none;
}

.theme-switch label {
  width: 52px;
  height: 28px;
  background: var(--border);
  border-radius: 999px;
  display: block;
  position: relative;
  cursor: pointer;
  transition: background 0.3s ease;
}

.theme-switch label::after {
  content: "";
  width: 22px;
  height: 22px;
  background: var(--text);
  border-radius: 50%;
  position: absolute;
  top: 3px;
  left: 3px;
  transition: transform 0.3s ease;
}

/* ACTIVE (LIGHT MODE) */
body.light .theme-switch label {
  background: linear-gradient(90deg, var(--blue), var(--green));
}

body.light .theme-switch label::after {
  transform: translateX(24px);
}


/* MOBILE NAV */
@media (max-width: 900px) {
  .menu {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--bg);
    flex-direction: column;
    display: none;          /* hidden by default */
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
    z-index: 1000;
  }

  .menu.active {
    display: flex;          /* SHOW when active */
  }

  .menu a,
  .menu .theme-switch {
    margin: 14px 0;
  }
}



/* ================================
   DISPUTE POLICY PAGE
   ================================ */

   .dispute-container {
    max-width: 900px;
    margin: auto;
    padding: 120px 28px 80px;
  }
  
  .dispute-container h1 {
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 16px;
  }
  
  .dispute-subtitle {
    font-size: 18px;
    color: var(--muted);
    margin-bottom: 60px;
  }
  
  /* POLICY SECTIONS */
  .dispute-section {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 22px;
    padding: 36px;
    margin-bottom: 28px;
  }
  
  .dispute-section h2 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 14px;
  }
  
  .dispute-section p {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.7;
  }
  
  /* LISTS */
  .dispute-section ul {
    padding-left: 22px;
    margin-top: 12px;
  }
  
  .dispute-section li {
    font-size: 15px;
    color: var(--muted);
    margin-bottom: 8px;
  }
  
  /* EMPHASIS NOTES */
  .dispute-note {
    margin-top: 14px;
    font-size: 14px;
    font-weight: 600;
    color: var(--green);
  }
  
  /* WARNING / IMPORTANT TEXT */
  .dispute-warning {
    margin-top: 14px;
    font-size: 14px;
    font-weight: 600;
    color: #ef4444;
  }
  
  /* INLINE EMPHASIS */
  .dispute-section strong {
    color: var(--text);
  }
  
  /* RESPONSIVE */
  @media (max-width: 768px) {
    .dispute-container {
      padding: 100px 20px 60px;
    }
  
    .dispute-container h1 {
      font-size: 32px;
    }
  
    .dispute-section {
      padding: 28px;
    }
  }
  