@charset "UTF-8";
/* CSS Document */

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

  :root {
    --flame: #FF4500;
    --ember: #FF6B35;
    --gold: #C8861A;
    --cream: #FFF8F2;
    --deep: #1A0A00;
    --muted: #7A5C48;
    --card-bg: #FFFFFF;
    --border: rgba(200,134,26,0.18);
  }

  html { scroll-behavior: smooth; }

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

  /* ── NAV ── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 5vw;
    background: rgba(255,248,242,0.88);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
  }

  .nav-logo {
    display: flex; align-items: center; gap: 10px;
  }
  .nav-logo img {
    width: 36px; height: 36px; border-radius: 9px;
  }
  .nav-logo span {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    color: var(--deep);
  }

  .nav-cta {
    background: var(--flame);
    color: #fff;
    padding: 10px 22px;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
  }
  .nav-cta:hover { background: #e03c00; transform: translateY(-1px); }

  /* ── HERO ── */
  .hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 0;
    padding: 100px 5vw 80px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(145deg, #FF6B35 0%, #FF4500 45%, #CC2200 100%);
  }

  /* OM watermark */
  .hero::before {
    content: 'ॐ';
    position: absolute;
    right: -2%;
    top: 50%;
    transform: translateY(-50%);
    font-size: clamp(280px, 35vw, 520px);
    color: rgba(255,255,255,0.06);
    font-family: serif;
    line-height: 1;
    pointer-events: none;
    user-select: none;
  }

  .hero-text {
    position: relative; z-index: 2;
  }

  .hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.25);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 100px;
    margin-bottom: 28px;
  }

  .hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 5.5vw, 5.5rem);
    font-weight: 300;
    line-height: 1.08;
    color: #fff;
    margin-bottom: 10px;
  }
  .hero-title em {
    font-style: italic;
    font-weight: 300;
  }
  .hero-title strong {
    font-weight: 700;
    display: block;
  }

  .hero-subtitle {
    font-size: 1.125rem;
    color: rgba(255,255,255,0.8);
    margin: 22px 0 40px;
    line-height: 1.65;
    max-width: 440px;
    font-weight: 300;
  }

  .hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    align-items: center;
  }

  .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: var(--flame);
    padding: 15px 30px;
    border-radius: 100px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  }
  .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,0.2); }

  .btn-ghost {
    color: rgba(255,255,255,0.9);
    font-size: 0.875rem;
    font-weight: 400;
    text-decoration: none;
    padding: 8px 4px;
    border-bottom: 1px solid rgba(255,255,255,0.4);
    transition: color 0.2s, border-color 0.2s;
  }
  .btn-ghost:hover { color: #fff; border-color: #fff; }

  /* phone mockup in hero */
  .hero-visual {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: flex-end;
  }

.google-play{ width: 240px; height: 90px;}
.google-play2{ width: 200px; height: 70px;}

  .phone-hero {
    width: clamp(200px, 22vw, 280px);
    border-radius: 38px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.35), 0 0 0 1px rgba(255,255,255,0.1);
    transform: rotate(2deg) translateY(20px);
    transition: transform 0.4s ease;
  }
  .phone-hero:hover { transform: rotate(0deg) translateY(10px); }

  .phone-hero-2 {
    width: clamp(160px, 17vw, 220px);
    border-radius: 32px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.25);
    transform: rotate(-4deg) translateX(-20px) translateY(40px);
    margin-right: -40px;
  }

  /* ── SOCIAL PROOF BAR ── */
  .proof-bar {
    background: var(--deep);
    color: rgba(255,255,255,0.7);
    padding: 18px 5vw;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    font-size: 0.875rem;
    flex-wrap: wrap;
  }
  .proof-item {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .proof-item strong {
    color: var(--ember);
    font-size: 1.1rem;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
  }

  /* ── HOW IT WORKS ── */
  .section {
    padding: 100px 5vw;
  }

  .section-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--flame);
    margin-bottom: 16px;
  }

  .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 400;
    line-height: 1.15;
    color: var(--deep);
    max-width: 600px;
  }

  .how-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-top: 60px;
  }

  .steps {
    display: flex;
    flex-direction: column;
    gap: 36px;
  }

  .step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
  }

  .step-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, #FF6B35, #FF4500);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(255,69,0,0.25);
  }

  .step-body h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--deep);
    margin-bottom: 6px;
  }
  .step-body p {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.7;
    font-weight: 300;
  }

  .phone-showcase {
    position: relative;
    display: flex;
    justify-content: center;
  }

  .phone-frame {
    width: clamp(200px, 24vw, 300px);
    border-radius: 40px;
    box-shadow: 0 24px 64px rgba(0,0,0,0.15), 0 0 0 1px rgba(0,0,0,0.06);
  }

  /* ── FEATURES ── */
  .features-section {
    background: var(--deep);
    padding: 100px 5vw;
  }

  .features-section .section-label {
    color: var(--ember);
  }
  .features-section .section-title {
    color: #fff;
  }

  .features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px;
  }

  .feature-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 36px 28px;
    transition: background 0.2s, border-color 0.2s, transform 0.2s;
  }
  .feature-card:hover {
    background: rgba(255,107,53,0.1);
    border-color: rgba(255,107,53,0.25);
    transform: translateY(-4px);
  }

  .feature-icon {
    font-size: 2rem;
    margin-bottom: 18px;
    display: block;
  }

  .feature-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
  }
  .feature-card p {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.7;
    font-weight: 300;
  }

  /* ── SCREENS GALLERY ── */
  .gallery-section {
    padding: 100px 5vw;
    overflow: hidden;
  }

  .gallery-scroll {
    display: flex;
    gap: 24px;
    margin-top: 48px;
    overflow-x: auto;
    padding-bottom: 20px;
    scrollbar-width: thin;
    scrollbar-color: var(--border) transparent;
  }

  .gallery-phone {
    width: 220px;
    flex-shrink: 0;
    border-radius: 28px;
    box-shadow: 0 16px 40px rgba(0,0,0,0.12);
    border: 1px solid var(--border);
    transition: transform 0.3s;
  }
  .gallery-phone:hover { transform: scale(1.04) translateY(-6px); }

  .gallery-label {
    text-align: center;
    font-size: 0.78rem;
    color: var(--muted);
    margin-top: 10px;
    letter-spacing: 0.04em;
  }

  /* ── PRICING ── */
  .pricing-section {
    background: linear-gradient(170deg, #FFF8F2 0%, #FFE8D5 100%);
    padding: 100px 5vw;
  }

  .pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
  }

  .price-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 32px;
    font-size: 0.875rem;
    color: var(--muted);
  }
  .toggle-switch {
    position: relative;
    width: 48px;
    height: 26px;
    cursor: pointer;
  }
  .toggle-switch input { opacity: 0; width: 0; height: 0; }
  .toggle-track {
    position: absolute;
    inset: 0;
    background: var(--border);
    border-radius: 100px;
    transition: background 0.2s;
    border: 1.5px solid rgba(200,134,26,0.25);
  }
  .toggle-switch input:checked + .toggle-track { background: var(--flame); }
  .toggle-thumb {
    position: absolute;
    top: 3px; left: 3px;
    width: 18px; height: 18px;
    background: #fff;
    border-radius: 50%;
    transition: transform 0.2s;
    box-shadow: 0 1px 4px rgba(0,0,0,0.2);
  }
  .toggle-switch input:checked ~ .toggle-thumb { transform: translateX(22px); }
  .toggle-label { font-weight: 500; color: var(--deep); }
  .save-badge {
    background: var(--flame);
    color: #fff;
    font-size: 0.68rem;
    font-weight: 600;
    padding: 3px 9px;
    border-radius: 100px;
    letter-spacing: 0.06em;
  }

  .price-region {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 6px;
  }
  .plan-price-alt {
    font-size: 0.82rem;
    color: var(--muted);
    margin-top: 4px;
    font-weight: 300;
  }
  .plan-price-alt s { color: rgba(122,92,72,0.5); }

  .pricing-card {
    background: #fff;
    border: 1.5px solid var(--border);
    border-radius: 24px;
    padding: 36px 32px;
    position: relative;
    transition: box-shadow 0.2s, transform 0.2s;
  }
  .pricing-card:hover {
    box-shadow: 0 16px 48px rgba(255,69,0,0.1);
    transform: translateY(-4px);
  }
  .pricing-card.featured {
    border-color: var(--flame);
    box-shadow: 0 8px 32px rgba(255,69,0,0.15);
  }

  .price-badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--flame);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 100px;
    white-space: nowrap;
  }

  .plan-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--deep);
    margin-bottom: 8px;
  }

  .plan-price {
    font-size: 2.8rem;
    font-weight: 300;
    color: var(--deep);
    line-height: 1;
    margin-bottom: 4px;
    font-family: 'Cormorant Garamond', serif;
  }
  .plan-price sup {
    font-size: 1.2rem;
    font-weight: 600;
    vertical-align: super;
  }
  .plan-price .period {
    font-size: 1rem;
    color: var(--muted);
    font-family: 'DM Sans', sans-serif;
    font-weight: 300;
  }

  .plan-desc {
    font-size: 0.85rem;
    color: var(--muted);
    margin: 12px 0 24px;
    line-height: 1.6;
  }

  .plan-features {
    list-style: none;
    margin-bottom: 28px;
  }
  .plan-features li {
    font-size: 0.875rem;
    color: var(--deep);
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .plan-features li:last-child { border-bottom: none; }
  .plan-features li::before {
    content: '✦';
    color: var(--gold);
    font-size: 0.6rem;
    flex-shrink: 0;
  }

  .plan-cta {
    display: block;
    text-align: center;
    padding: 13px;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s;
  }
  .plan-cta.primary {
    background: var(--flame);
    color: #fff;
  }
  .plan-cta.primary:hover { background: #e03c00; }
  .plan-cta.secondary {
    background: transparent;
    border: 1.5px solid var(--border);
    color: var(--deep);
  }
  .plan-cta.secondary:hover { border-color: var(--flame); color: var(--flame); }

  /* ── FOOTER CTA ── */
  .footer-cta {
    background: linear-gradient(145deg, #FF6B35 0%, #FF4500 50%, #CC2200 100%);
    padding: 100px 5vw;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .footer-cta::before {
    content: 'ॐ';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 600px;
    color: rgba(255,255,255,0.04);
    font-family: serif;
    pointer-events: none;
  }

  .footer-cta h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 300;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 20px;
    position: relative;
  }
  .footer-cta p {
    color: rgba(255,255,255,0.75);
    font-size: 1.05rem;
    font-weight: 300;
    margin-bottom: 40px;
    position: relative;
  }

  .store-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #fff;
    color: var(--deep);
    padding: 14px 28px;
    border-radius: 14px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.2s;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    position: relative;
  }
  .store-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,0.2); }
  .store-btn svg { width: 24px; height: 24px; }

  /* ── FOOTER ── */
  footer {
    background: var(--deep);
    padding: 40px 5vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
  }
  footer p {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.35);
  }
  .footer-links {
    display: flex;
    gap: 24px;
  }
  .footer-links a {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-links a:hover { color: rgba(255,255,255,0.8); }

  /* ── RESPONSIVE ── */
  @media (max-width: 768px) {
    .hero {
      grid-template-columns: 1fr;
      text-align: center;
      padding: 100px 5vw 60px;
    }
    .hero-subtitle { margin-left: auto; margin-right: auto; }
    .hero-actions { justify-content: center; }
    .hero-visual { display: none; }
    .how-grid { grid-template-columns: 1fr; gap: 48px; }
    .features-grid { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; }
    .proof-bar { gap: 24px; }
  }

  /* Scroll animations */
  .fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
  }
  .fade-up.visible {
    opacity: 1;
    transform: translateY(0);
  }