    /* ===== RESET & BASE ===== */
    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
    
    html {
      scroll-behavior: smooth;
      overflow-x: hidden;
      font-size: 16px;
    }

    body { 
      font-family: 'Outfit', sans-serif; 
      background-color: #060918;
      color: #fff;
      overflow-x: hidden;
      width: 100%;
      min-height: 100vh;
      position: relative;
    }
    
    /* ===== ANIMATED BACKGROUND ===== */
    body::before {
      content: '';
      position: fixed;
      top: 0; left: 0;
      width: 100%; height: 100%;
      z-index: -2;
      background: 
        radial-gradient(ellipse 80% 60% at 10% 10%, rgba(241, 90, 34, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 90% 15%, rgba(30, 58, 138, 0.35) 0%, transparent 60%),
        radial-gradient(ellipse 70% 40% at 50% 90%, rgba(241, 90, 34, 0.1) 0%, transparent 60%),
        radial-gradient(ellipse 40% 30% at 70% 60%, rgba(100, 50, 180, 0.08) 0%, transparent 60%);
    }
    
    body::after {
      content: '';
      position: fixed;
      top: 0; left: 0;
      width: 100%; height: 100%;
      z-index: -1;
      background-image: 
        linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
      background-size: 60px 60px;
      pointer-events: none;
    }

    /* ===== TYPOGRAPHY ===== */
    h1, h2, h3, .nav-logo { font-family: 'Syne', sans-serif; }
    p { font-family: 'Inter', sans-serif; line-height: 1.7; }

    /* ===== LAYOUT ===== */
    .container {
      width: 100%;
      max-width: 1140px;
      margin: 0 auto;
      padding-left: 20px;
      padding-right: 20px;
    }

    /* ===== NAVBAR ===== */
    .navbar { 
      position: fixed; 
      top: 0; left: 0; 
      width: 100%; 
      z-index: 100; 
      padding: 16px 0;
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      background: rgba(6, 9, 24, 0.75);
      border-bottom: 1px solid rgba(255,255,255,0.06);
      transition: background 0.3s;
    }
    .nav-inner {
      display: flex;
      justify-content: space-between;
      align-items: center;
      width: 100%;
    }
    .nav-logo { 
      color: white; 
      font-weight: 800; 
      font-size: 1.4rem; 
      letter-spacing: -1px; 
      text-decoration: none; 
      display: flex;
      align-items: center;
      gap: 10px;
      flex-shrink: 0;
    }
    .nav-logo img { width: 30px; height: 30px; border-radius: 8px; }
    .nav-right {
      display: flex;
      align-items: center;
      gap: 28px;
    }
    .nav-links { 
      display: flex; 
      gap: 28px; 
      align-items: center; 
    }
    .nav-item { 
      color: rgba(255,255,255,0.55); 
      text-decoration: none; 
      font-weight: 600; 
      font-size: 0.8rem; 
      letter-spacing: 1.5px; 
      transition: color 0.3s; 
      text-transform: uppercase; 
      white-space: nowrap;
    }
    .nav-item:hover { color: white; }

    /* ===== BUTTONS ===== */
    .btn { 
      display: inline-flex; 
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 14px 28px; 
      border: 1px solid rgba(255,255,255,0.12); 
      border-radius: 100px; 
      color: white; 
      text-decoration: none; 
      font-weight: 600; 
      backdrop-filter: blur(10px); 
      -webkit-backdrop-filter: blur(10px);
      transition: all 0.3s ease; 
      background: rgba(255,255,255,0.06); 
      font-size: 0.95rem; 
      font-family: 'Outfit', sans-serif;
      white-space: nowrap;
      cursor: pointer;
    }
    .btn:hover { 
      background: white; 
      color: #060918; 
      transform: translateY(-3px); 
      box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
    }
    .btn-primary {
      background: #F15A22;
      border-color: #F15A22;
    }
    .btn-primary:hover {
      background: #ff6a33;
      border-color: #ff6a33;
      color: white;
      box-shadow: 0 12px 30px rgba(241, 90, 34, 0.35);
    }
    .btn-sm {
      padding: 10px 22px;
      font-size: 0.8rem;
    }

    /* ===== SECTIONS ===== */
    section {
      padding: 100px 0;
      position: relative;
      width: 100%;
    }

    /* ===== HERO ===== */
    #hero {
      padding-top: 140px;
      padding-bottom: 80px;
    }
    .hero-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 48px;
      align-items: center;
    }
    .hero-text { position: relative; z-index: 2; }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 6px 14px;
      background: rgba(241, 90, 34, 0.1);
      border: 1px solid rgba(241, 90, 34, 0.25);
      color: #F15A22;
      border-radius: 100px;
      font-weight: 600;
      font-size: 0.78rem;
      letter-spacing: 1.5px;
      margin-bottom: 24px;
      text-transform: uppercase;
    }
    .hero-badge i { font-size: 0.7rem; }

    .hero-title { 
      font-size: clamp(2.2rem, 5.5vw, 4.8rem); 
      line-height: 1.05;
      margin-bottom: 20px; 
      text-transform: uppercase;
      letter-spacing: -1px;
    }
    .hero-title .gradient-text {
      background: linear-gradient(135deg, #fff 0%, #8b90b0 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    .hero-title .accent {
      background: linear-gradient(135deg, #F15A22, #ff8c5a);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .hero-desc { 
      font-size: 1.05rem; 
      color: rgba(255,255,255,0.55); 
      margin-bottom: 32px; 
      max-width: 440px;
      line-height: 1.7;
    }
    .hero-buttons {
      display: flex; 
      gap: 12px; 
      flex-wrap: wrap;
    }
    
    .hero-visual {
      position: relative;
      display: flex;
      justify-content: center;
      align-items: center;
    }
    .mascot-glow {
      position: absolute;
      width: 300px; height: 300px;
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      background: radial-gradient(circle, rgba(241,90,34,0.2) 0%, transparent 70%);
      filter: blur(50px);
      z-index: 0;
    }
    .mascot-float {
      position: relative;
      z-index: 1;
      animation: mascotFloat 5s ease-in-out infinite;
    }
    .mascot-float img {
      width: 100%;
      max-width: 380px;
      height: auto;
      display: block;
      filter: drop-shadow(0 20px 40px rgba(0,0,0,0.4));
    }

    @keyframes mascotFloat { 
      0%, 100% { transform: translateY(0); } 
      50% { transform: translateY(-14px); } 
    }

    /* ===== FEATURES ===== */
    .section-header {
      text-align: center;
      margin-bottom: 56px;
    }
    .section-tag {
      display: inline-block;
      font-size: 0.75rem;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: #F15A22;
      font-weight: 700;
      margin-bottom: 12px;
    }
    .section-title {
      font-size: clamp(1.8rem, 4vw, 3rem);
      margin-bottom: 14px;
      text-transform: uppercase;
      letter-spacing: -0.5px;
    }
    .section-desc {
      color: rgba(255,255,255,0.5);
      font-size: 1rem;
      max-width: 520px;
      margin: 0 auto;
    }

    .features-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
    }
    .feature-card {
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(255,255,255,0.07);
      border-radius: 20px;
      padding: 30px 26px;
      transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
      cursor: pointer;
      text-decoration: none;
      color: inherit;
      display: block;
    }
    .feature-card:hover {
      transform: translateY(-4px);
      border-color: rgba(241, 90, 34, 0.25);
      background: rgba(255,255,255,0.05);
    }
    .feature-card .learn-more {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      margin-top: 14px;
      color: #F15A22;
      font-size: 0.85rem;
      font-weight: 600;
      transition: gap 0.3s;
    }
    .feature-card:hover .learn-more { gap: 10px; }
    .feature-icon {
      width: 48px; height: 48px;
      border-radius: 14px;
      background: rgba(241, 90, 34, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      color: #F15A22;
      margin-bottom: 18px;
    }
    .feature-title {
      font-family: 'Outfit', sans-serif;
      font-size: 1.15rem;
      margin-bottom: 10px;
      font-weight: 700;
    }
    .feature-desc {
      color: rgba(255,255,255,0.45);
      font-size: 0.9rem;
      line-height: 1.6;
    }

    /* ===== SCREENSHOTS ===== */
    .screenshots-row {
      display: flex;
      gap: 24px;
      justify-content: center;
      align-items: flex-end;
      padding-top: 30px;
    }
    .phone-frame {
      flex-shrink: 0;
      width: 220px; height: 460px;
      border-radius: 32px;
      border: 5px solid rgba(255,255,255,0.08);
      background: #111;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: flex-start;
      position: relative;
      overflow: hidden;
      transition: transform 0.4s ease;
    }
    .phone-frame::before {
      content: '';
      position: absolute;
      top: 8px; left: 50%;
      transform: translateX(-50%);
      width: 60px; height: 20px;
      background: rgba(0,0,0,0.7);
      border-radius: 12px;
      z-index: 2;
    }
    .phone-frame img {
      width: 100%; height: 100%;
      object-fit: cover;
      object-position: top;
      display: block;
      image-rendering: -webkit-optimize-contrast;
    }
    .phone-frame.elevated { transform: translateY(-24px); }
    .phone-frame:hover {
      transform: translateY(-8px);
      border-color: rgba(241, 90, 34, 0.2);
    }
    .phone-frame.elevated:hover { transform: translateY(-32px); }


    /* ===== PREMIUM ===== */
    .premium-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 30px;
      max-width: 900px;
      margin: 0 auto;
    }
    .pricing-card {
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(255,255,255,0.07);
      border-radius: 24px;
      padding: 40px 32px;
      position: relative;
      transition: transform 0.3s ease, border-color 0.3s ease;
      display: flex;
      flex-direction: column;
    }
    .pricing-card:hover {
      transform: translateY(-5px);
    }
    .pricing-card.pro {
      background: rgba(241, 90, 34, 0.05);
      border-color: rgba(241, 90, 34, 0.3);
      box-shadow: 0 20px 40px rgba(241, 90, 34, 0.1);
    }
    .pricing-card.pro::before {
      content: 'Recommended';
      position: absolute;
      top: -14px; left: 50%;
      transform: translateX(-50%);
      background: #F15A22;
      color: white;
      font-size: 0.75rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 1px;
      padding: 4px 16px;
      border-radius: 100px;
    }
    .plan-name {
      font-size: 1.4rem;
      font-family: 'Syne', sans-serif;
      margin-bottom: 8px;
    }
    .plan-desc {
      color: rgba(255,255,255,0.5);
      font-size: 0.9rem;
      margin-bottom: 32px;
      line-height: 1.6;
    }
    .plan-features {
      list-style: none;
      margin-bottom: 40px;
      flex-grow: 1;
    }
    .plan-features li {
      position: relative;
      padding-left: 28px;
      margin-bottom: 16px;
      font-size: 0.95rem;
      color: rgba(255,255,255,0.8);
      line-height: 1.5;
    }
    .plan-features li::before {
      content: '\f00c';
      font-family: 'Font Awesome 6 Free';
      font-weight: 900;
      position: absolute;
      left: 0; top: 2px;
      color: rgba(255,255,255,0.3);
      font-size: 0.9rem;
    }
    .pricing-card.pro .plan-features li::before {
      color: #F15A22;
    }
    .pricing-card.pro .plan-features li {
      color: white;
    }
    .pricing-card .btn {
      width: 100%;
    }

    /* ===== FAQ ===== */
    .faq-list {
      max-width: 760px;
      margin: 0 auto;
    }
    .faq-item {
      border: 1px solid rgba(255,255,255,0.07);
      border-radius: 16px;
      margin-bottom: 12px;
      background: rgba(255,255,255,0.03);
      overflow: hidden;
      transition: border-color 0.3s;
    }
    .faq-item:hover {
      border-color: rgba(255,255,255,0.12);
    }
    .faq-item.open {
      border-color: rgba(241, 90, 34, 0.2);
    }
    .faq-question {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 20px 24px;
      cursor: pointer;
      gap: 16px;
      -webkit-user-select: none;
      user-select: none;
    }
    .faq-question h3 {
      font-family: 'Outfit', sans-serif;
      font-size: 1.05rem;
      font-weight: 600;
      line-height: 1.4;
    }
    .faq-question .faq-toggle {
      flex-shrink: 0;
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background: rgba(255,255,255,0.06);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.75rem;
      color: rgba(255,255,255,0.5);
      transition: transform 0.3s, background 0.3s;
    }
    .faq-item.open .faq-toggle {
      transform: rotate(180deg);
      background: rgba(241, 90, 34, 0.15);
      color: #F15A22;
    }
    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease, padding 0.3s ease;
    }
    .faq-item.open .faq-answer {
      max-height: 300px;
    }
    .faq-answer p {
      padding: 0 24px 20px 24px;
      color: rgba(255,255,255,0.5);
      font-size: 0.92rem;
      line-height: 1.7;
    }

    /* ===== CTA ===== */
    .cta-wrapper {
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(255,255,255,0.07);
      padding: 56px 32px;
      border-radius: 28px;
      text-align: center;
      position: relative;
      overflow: hidden;
    }
    .cta-wrapper::before {
      content: '';
      position: absolute;
      top: -50%; left: -50%;
      width: 200%; height: 200%;
      background: radial-gradient(circle at center, rgba(241,90,34,0.06) 0%, transparent 50%);
      pointer-events: none;
    }
    .cta-title {
      font-size: clamp(1.8rem, 4vw, 2.8rem);
      margin-bottom: 16px;
      text-transform: uppercase;
      position: relative;
    }
    .cta-desc {
      color: rgba(255,255,255,0.5);
      font-size: 1rem;
      max-width: 460px;
      margin: 0 auto 28px auto;
      position: relative;
    }

    /* ===== FOOTER ===== */
    .footer { 
      padding: 32px 0;
      border-top: 1px solid rgba(255,255,255,0.06);
    }
    .footer-inner {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 16px;
      flex-wrap: wrap;
    }
    .footer-copy {
      color: rgba(255,255,255,0.35);
      font-size: 0.8rem;
    }
    .footer-links {
      display: flex;
      gap: 20px;
      flex-wrap: wrap;
    }
    .footer-link {
      color: rgba(255,255,255,0.4);
      text-decoration: none;
      font-size: 0.8rem;
      transition: color 0.3s;
    }
    .footer-link:hover { color: white; }

    /* ===== SCROLL REVEAL ===== */
    .reveal {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }
    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* ===== RESPONSIVE: TABLET ===== */
    @media (max-width: 900px) {
      #hero { padding-top: 120px; padding-bottom: 60px; }
      .hero-grid { grid-template-columns: 1fr; text-align: center; gap: 32px; }
      .hero-desc { margin-left: auto; margin-right: auto; }
      .hero-buttons { justify-content: center; }
      .hero-badge { margin-left: auto; margin-right: auto; }
      .mascot-float img { max-width: 260px; }
      .mascot-glow { width: 220px; height: 220px; }
      .features-grid { grid-template-columns: 1fr; }
      .screenshots-row { flex-wrap: wrap; gap: 20px; }
      .phone-frame { width: 180px; height: 380px; }
      .phone-frame.elevated { transform: translateY(0); }
      .phone-frame.elevated:hover { transform: translateY(-8px); }
      .premium-grid { grid-template-columns: 1fr; }
    }

    /* ===== RESPONSIVE: MOBILE ===== */
    @media (max-width: 600px) {
      html { font-size: 15px; }
      section { padding: 64px 0; }
      #hero { padding-top: 100px; padding-bottom: 48px; }
      .nav-inner { flex-wrap: wrap; }
      .nav-right { flex-wrap: wrap; justify-content: flex-end; gap: 12px; }
      .nav-links { 
        display: flex;
        width: 100%; 
        order: 3; 
        margin-top: 12px; 
        gap: 16px; 
        justify-content: center; 
        flex-wrap: wrap;
      }
      .nav-item { font-size: 0.75rem; }
      .hero-title { font-size: 2rem; }
      .hero-desc { font-size: 0.95rem; }
      .hero-buttons { flex-direction: column; align-items: stretch; gap: 10px; }
      .btn { padding: 14px 20px; font-size: 0.9rem; }
      .feature-card { padding: 24px 20px; }
      .screenshots-row { flex-direction: column; align-items: center; gap: 20px; }
      .phone-frame { width: 200px; height: 420px; }
      .cta-wrapper { padding: 40px 20px; }
      .cta-title { font-size: 1.5rem; }
      .footer-inner { flex-direction: column; text-align: center; gap: 16px; }
      .footer-links { justify-content: center; }
      .modal-box { padding: 32px 18px; border-radius: 20px; }
      .modal-text h2 { font-size: 1.5rem; }
      .modal-phone { width: 160px; height: 340px; }
    }

    /* ===== RESPONSIVE: VERY SMALL ===== */
    @media (max-width: 380px) {
      .container { padding-left: 16px; padding-right: 16px; }
      .hero-title { font-size: 1.7rem; }
      .btn { padding: 12px 16px; font-size: 0.85rem; }
      .phone-frame { width: 170px; height: 360px; }
    }
/* ===== LANG SWITCHER ===== */
.lang-switcher {
  position: relative;
  display: inline-block;
}
.lang-btn {
  background: transparent;
  border: none;
  color: rgba(255,255,255,0.55);
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  transition: color 0.3s;
}
.lang-btn:hover {
  color: white;
}
.lang-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  background: rgba(16, 20, 48, 0.95);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 8px 0;
  min-width: 120px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
}
.lang-switcher:hover .lang-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.lang-dropdown a {
  display: block;
  padding: 8px 16px;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  transition: background 0.3s, color 0.3s;
}
.lang-dropdown a:hover {
  background: rgba(241, 90, 34, 0.1);
  color: #F15A22;
}
