@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Playfair+Display:wght@700;800&display=swap');

:root {
  --pink: #ec4899;
  --pink-light: #f9a8d4;
  --coral: #f97066;
  --coral-light: #fecaca;
  --purple: #a855f7;
  --dark: #0f0f1a;
  --dark2: #1a1a2e;
  --glass: rgba(255,255,255,0.08);
  --glass-border: rgba(255,255,255,0.12);
  --text: #f1f5f9;
  --text-muted: #94a3b8;
  --gradient: linear-gradient(135deg, #ec4899, #f97066, #a855f7);
  --gradient2: linear-gradient(135deg, #0f0f1a 0%, #1a1a2e 50%, #16132d 100%);
}

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

html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Inter', sans-serif; background: var(--dark); color: var(--text); overflow-x: hidden; line-height: 1.6; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* === NAV === */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 16px 0; transition: all 0.4s ease; }
.nav.scrolled { background: rgba(15,15,26,0.92); backdrop-filter: blur(20px); border-bottom: 1px solid var(--glass-border); padding: 10px 0; }
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo img { height: 40px; width: 40px; border-radius: 10px; }
.nav-logo span { font-size: 1.3rem; font-weight: 700; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a { color: var(--text-muted); text-decoration: none; font-size: 0.9rem; font-weight: 500; transition: color 0.3s; position: relative; }
.nav-links a:hover, .nav-links a.active { color: #fff; }
.nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: var(--gradient); transition: width 0.3s; border-radius: 2px; }
.nav-links a:hover::after { width: 100%; }
.nav-cta { background: var(--gradient); color: #fff; border: none; padding: 10px 24px; border-radius: 50px; font-weight: 600; font-size: 0.9rem; cursor: pointer; transition: transform 0.3s, box-shadow 0.3s; text-decoration: none; }
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(236,72,153,0.4); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 8px; }
.hamburger span { width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: all 0.3s; }

/* === HERO === */
.hero { min-height: 100vh; display: flex; align-items: center; position: relative; overflow: hidden; padding-top: 80px; }
.hero::before { content: ''; position: absolute; top: -200px; right: -200px; width: 600px; height: 600px; background: radial-gradient(circle, rgba(236,72,153,0.15), transparent 70%); border-radius: 50%; pointer-events: none; }
.hero::after { content: ''; position: absolute; bottom: -100px; left: -200px; width: 500px; height: 500px; background: radial-gradient(circle, rgba(168,85,247,0.1), transparent 70%); border-radius: 50%; pointer-events: none; }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 1; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: var(--glass); border: 1px solid var(--glass-border); border-radius: 50px; padding: 8px 16px; font-size: 0.8rem; color: var(--pink-light); margin-bottom: 24px; backdrop-filter: blur(10px); }
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: #22c55e; animation: pulse-dot 2s infinite; }
@keyframes pulse-dot { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
.hero h1 { font-family: 'Playfair Display', serif; font-size: 3.8rem; font-weight: 800; line-height: 1.1; margin-bottom: 24px; }
.hero h1 .gradient-text { background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.hero-sub { font-size: 1.15rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 36px; max-width: 500px; }
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-primary { background: var(--gradient); color: #fff; border: none; padding: 16px 36px; border-radius: 50px; font-size: 1rem; font-weight: 600; cursor: pointer; transition: all 0.3s; display: inline-flex; align-items: center; gap: 8px; text-decoration: none; }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(236,72,153,0.4); }
.btn-secondary { background: var(--glass); border: 1px solid var(--glass-border); color: #fff; padding: 16px 36px; border-radius: 50px; font-size: 1rem; font-weight: 600; cursor: pointer; transition: all 0.3s; backdrop-filter: blur(10px); display: inline-flex; align-items: center; gap: 8px; text-decoration: none; }
.btn-secondary:hover { background: rgba(255,255,255,0.15); transform: translateY(-3px); }
.hero-image { position: relative; }
.hero-image img { width: 100%; border-radius: 24px; box-shadow: 0 40px 80px rgba(0,0,0,0.5); }
.hero-float { position: absolute; background: var(--glass); backdrop-filter: blur(20px); border: 1px solid var(--glass-border); border-radius: 16px; padding: 16px 20px; animation: float 6s ease-in-out infinite; }
.hero-float.f1 { top: 10%; right: -30px; }
.hero-float.f2 { bottom: 15%; left: -30px; animation-delay: -3s; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-15px); } }
.hero-float .ff-icon { font-size: 1.5rem; margin-bottom: 4px; }
.hero-float .ff-text { font-size: 0.75rem; color: var(--text-muted); }
.hero-float .ff-val { font-size: 1.1rem; font-weight: 700; }

/* === STATS === */
.stats { padding: 60px 0; border-top: 1px solid var(--glass-border); border-bottom: 1px solid var(--glass-border); background: var(--glass); backdrop-filter: blur(10px); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; text-align: center; }
.stat-num { font-size: 2.5rem; font-weight: 800; background: var(--gradient); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.stat-label { font-size: 0.85rem; color: var(--text-muted); margin-top: 4px; }

/* === SECTIONS === */
.section { padding: 100px 0; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-badge { display: inline-block; background: var(--glass); border: 1px solid var(--glass-border); border-radius: 50px; padding: 6px 18px; font-size: 0.8rem; color: var(--pink); font-weight: 600; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 1px; }
.section-title { font-family: 'Playfair Display', serif; font-size: 2.8rem; font-weight: 800; margin-bottom: 16px; }
.section-sub { color: var(--text-muted); font-size: 1.05rem; max-width: 600px; margin: 0 auto; }

/* === FEATURES === */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature-card { background: var(--glass); border: 1px solid var(--glass-border); border-radius: 20px; padding: 36px; transition: all 0.4s; position: relative; overflow: hidden; }
.feature-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--gradient); opacity: 0; transition: opacity 0.4s; }
.feature-card:hover { transform: translateY(-8px); border-color: rgba(236,72,153,0.3); background: rgba(255,255,255,0.06); }
.feature-card:hover::before { opacity: 1; }
.feature-icon { width: 56px; height: 56px; border-radius: 14px; background: linear-gradient(135deg, rgba(236,72,153,0.15), rgba(168,85,247,0.15)); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 20px; }
.feature-card h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 10px; }
.feature-card p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.6; }

/* === ABOUT === */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-image { position: relative; }
.about-image img { width: 100%; border-radius: 24px; box-shadow: 0 30px 60px rgba(0,0,0,0.4); }
.about-image::before { content: ''; position: absolute; top: -20px; left: -20px; right: 20px; bottom: 20px; border: 2px solid var(--pink); border-radius: 24px; opacity: 0.2; z-index: -1; }
.about-content h3 { font-family: 'Playfair Display', serif; font-size: 2.2rem; margin-bottom: 20px; }
.about-content p { color: var(--text-muted); line-height: 1.8; margin-bottom: 16px; }
.about-list { list-style: none; margin-top: 24px; }
.about-list li { display: flex; align-items: center; gap: 12px; padding: 10px 0; color: var(--text-muted); font-size: 0.95rem; }
.about-list li .check { color: #22c55e; font-size: 1.2rem; }

/* === HOW IT WORKS === */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; position: relative; }
.steps-grid::before { content: ''; position: absolute; top: 50px; left: 20%; right: 20%; height: 2px; background: var(--gradient); opacity: 0.3; }
.step-card { text-align: center; position: relative; z-index: 1; }
.step-num { width: 70px; height: 70px; border-radius: 50%; background: var(--gradient); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; font-weight: 800; margin: 0 auto 24px; box-shadow: 0 8px 30px rgba(236,72,153,0.3); }
.step-card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.step-card p { color: var(--text-muted); font-size: 0.9rem; }

/* === GALLERY === */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.gallery-item { border-radius: 16px; overflow: hidden; position: relative; aspect-ratio: 1; cursor: pointer; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.6), transparent); opacity: 0; transition: opacity 0.3s; }
.gallery-item:hover::after { opacity: 1; }
.gallery-item .caption { position: absolute; bottom: 16px; left: 16px; right: 16px; z-index: 2; font-size: 0.85rem; font-weight: 600; opacity: 0; transform: translateY(10px); transition: all 0.3s; }
.gallery-item:hover .caption { opacity: 1; transform: translateY(0); }

/* === TESTIMONIALS === */
.testimonials-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.testimonial-card { background: var(--glass); border: 1px solid var(--glass-border); border-radius: 20px; padding: 36px; transition: all 0.3s; }
.testimonial-card:hover { transform: translateY(-4px); border-color: rgba(236,72,153,0.2); }
.testimonial-stars { color: #fbbf24; margin-bottom: 16px; font-size: 1.1rem; letter-spacing: 2px; }
.testimonial-text { color: var(--text-muted); font-size: 0.95rem; line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--gradient); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1.1rem; }
.testimonial-name { font-weight: 600; font-size: 0.95rem; }
.testimonial-role { color: var(--text-muted); font-size: 0.8rem; }

/* === FAQ === */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border: 1px solid var(--glass-border); border-radius: 14px; margin-bottom: 12px; overflow: hidden; background: var(--glass); transition: border-color 0.3s; }
.faq-item.active { border-color: rgba(236,72,153,0.3); }
.faq-question { width: 100%; background: none; border: none; color: #fff; padding: 20px 24px; font-size: 1rem; font-weight: 600; text-align: left; cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
.faq-question .arrow { transition: transform 0.3s; font-size: 1.2rem; color: var(--pink); }
.faq-item.active .arrow { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s ease; }
.faq-answer-inner { padding: 0 24px 20px; color: var(--text-muted); line-height: 1.7; font-size: 0.9rem; }

/* === DOWNLOAD CTA === */
.download-section { background: var(--gradient2); position: relative; overflow: hidden; }
.download-section::before { content: ''; position: absolute; inset: 0; background: var(--gradient); opacity: 0.05; }
.download-card { background: var(--glass); border: 1px solid var(--glass-border); border-radius: 32px; padding: 80px; text-align: center; position: relative; overflow: hidden; backdrop-filter: blur(20px); }
.download-card::before { content: ''; position: absolute; top: -100px; left: 50%; transform: translateX(-50%); width: 400px; height: 400px; background: radial-gradient(circle, rgba(236,72,153,0.15), transparent 70%); border-radius: 50%; }
.download-card h2 { font-family: 'Playfair Display', serif; font-size: 2.5rem; margin-bottom: 16px; position: relative; }
.download-card p { color: var(--text-muted); margin-bottom: 36px; font-size: 1.05rem; position: relative; }
.store-buttons { display: flex; gap: 16px; justify-content: center; position: relative; flex-wrap: wrap; }
.store-btn { display: inline-flex; align-items: center; gap: 12px; background: #fff; color: #000; padding: 14px 28px; border-radius: 14px; text-decoration: none; font-weight: 600; transition: all 0.3s; }
.store-btn:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(0,0,0,0.3); }
.store-btn svg { width: 28px; height: 28px; }
.store-btn .store-label { font-size: 0.7rem; color: #666; line-height: 1; }
.store-btn .store-name { font-size: 1.05rem; line-height: 1; }

/* === CONTACT === */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-icon { width: 48px; height: 48px; border-radius: 12px; background: linear-gradient(135deg, rgba(236,72,153,0.15), rgba(168,85,247,0.15)); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.contact-item h4 { font-size: 0.95rem; margin-bottom: 4px; }
.contact-item p { color: var(--text-muted); font-size: 0.85rem; }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-group input, .form-group textarea { width: 100%; background: var(--glass); border: 1px solid var(--glass-border); border-radius: 12px; padding: 14px 18px; color: #fff; font-size: 0.9rem; font-family: 'Inter', sans-serif; transition: border-color 0.3s; outline: none; }
.form-group input:focus, .form-group textarea:focus { border-color: var(--pink); }
.form-group textarea { min-height: 120px; resize: vertical; }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--text-muted); }
.form-success { background: rgba(34,197,94,0.1); border: 1px solid rgba(34,197,94,0.3); border-radius: 12px; padding: 16px; color: #22c55e; display: none; text-align: center; }

/* === LEGAL MODAL === */
.modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.7); backdrop-filter: blur(8px); z-index: 2000; display: none; align-items: center; justify-content: center; padding: 24px; }
.modal-overlay.active { display: flex; }
.modal-content { background: var(--dark2); border: 1px solid var(--glass-border); border-radius: 24px; max-width: 800px; width: 100%; max-height: 80vh; overflow-y: auto; padding: 48px; position: relative; }
.modal-close { position: absolute; top: 16px; right: 16px; background: var(--glass); border: 1px solid var(--glass-border); color: #fff; width: 40px; height: 40px; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; transition: background 0.3s; }
.modal-close:hover { background: rgba(255,255,255,0.15); }
.modal-content h2 { font-family: 'Playfair Display', serif; font-size: 1.8rem; margin-bottom: 24px; }
.modal-content h3 { font-size: 1.1rem; margin: 24px 0 8px; color: var(--pink-light); }
.modal-content p { color: var(--text-muted); line-height: 1.7; margin-bottom: 12px; font-size: 0.9rem; }
.modal-content a { color: var(--pink); }

/* === FOOTER === */
.footer { background: var(--dark2); border-top: 1px solid var(--glass-border); padding: 60px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand p { color: var(--text-muted); font-size: 0.85rem; line-height: 1.7; margin-top: 16px; max-width: 300px; }
.footer h4 { font-size: 0.9rem; font-weight: 700; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 1px; }
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 10px; }
.footer ul a { color: var(--text-muted); text-decoration: none; font-size: 0.85rem; transition: color 0.3s; }
.footer ul a:hover { color: var(--pink); }
.footer-bottom { border-top: 1px solid var(--glass-border); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.footer-bottom p { color: var(--text-muted); font-size: 0.8rem; }
.social-links { display: flex; gap: 12px; }
.social-links a { width: 40px; height: 40px; border-radius: 50%; background: var(--glass); border: 1px solid var(--glass-border); display: flex; align-items: center; justify-content: center; color: var(--text-muted); text-decoration: none; transition: all 0.3s; font-size: 1.1rem; }
.social-links a:hover { background: var(--gradient); color: #fff; border-color: transparent; }

/* === ANIMATIONS === */
.fade-in { opacity: 0; transform: translateY(30px); transition: all 0.8s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-left { opacity: 0; transform: translateX(-30px); transition: all 0.8s ease; }
.fade-in-left.visible { opacity: 1; transform: translateX(0); }
.fade-in-right { opacity: 0; transform: translateX(30px); transition: all 0.8s ease; }
.fade-in-right.visible { opacity: 1; transform: translateX(0); }

/* Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--dark2); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--pink); }

/* === RESPONSIVE === */

/* Tablet */
@media (max-width: 968px) {
  .container { padding: 0 20px; }

  /* Nav */
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-cta { padding: 8px 18px; font-size: 0.8rem; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(15,15,26,0.98); backdrop-filter: blur(20px);
    padding: 20px 24px; gap: 16px;
    border-bottom: 1px solid var(--glass-border);
  }
  .nav-links.open a { font-size: 1rem; padding: 8px 0; }

  /* Hero */
  .hero { min-height: auto; padding: 100px 0 60px; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-image { order: -1; max-width: 400px; margin: 0 auto; }
  .hero h1 { font-size: 2.6rem; }
  .hero-sub { font-size: 1rem; }
  .hero-content { text-align: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-badge { margin-left: auto; margin-right: auto; }
  .hero-buttons { justify-content: center; }

  /* Stats */
  .stats { padding: 40px 0; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .stat-num { font-size: 2rem; }

  /* Sections */
  .section { padding: 70px 0; }
  .section-header { margin-bottom: 40px; }
  .section-title { font-size: 2rem; }
  .section-sub { font-size: 0.95rem; }

  /* Features */
  .features-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .feature-card { padding: 24px; }

  /* Steps */
  .steps-grid { grid-template-columns: 1fr; gap: 32px; }
  .steps-grid::before { display: none; }
  .step-num { width: 56px; height: 56px; font-size: 1.2rem; }

  /* About */
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-content h3 { font-size: 1.8rem; }
  .about-image::before { display: none; }

  /* Gallery */
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }

  /* Testimonials */
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonial-card { padding: 28px; }

  /* Download */
  .download-card { padding: 48px 28px; border-radius: 24px; }
  .download-card h2 { font-size: 2rem; }
  .store-btn { padding: 14px 24px; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }

  /* Footer */
  .footer { padding: 48px 0 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
}

/* Mobile */
@media (max-width: 640px) {
  .container { padding: 0 16px; }

  /* Nav */
  .nav { padding: 12px 0; }
  .nav.scrolled { padding: 8px 0; }
  .nav-logo img { height: 32px; width: 32px; }
  .nav-logo span { font-size: 1.1rem; }
  .nav-cta { padding: 8px 16px; font-size: 0.75rem; }

  /* Hero */
  .hero { padding: 80px 0 40px; }
  .hero h1 { font-size: 2rem; line-height: 1.15; margin-bottom: 16px; }
  .hero-sub { font-size: 0.9rem; margin-bottom: 24px; line-height: 1.6; }
  .hero-badge { font-size: 0.7rem; padding: 6px 12px; margin-bottom: 16px; }
  .hero-image { max-width: 300px; }
  .hero-image img { border-radius: 16px; }
  .hero-float { display: none; }
  .hero-buttons { gap: 12px; }
  .btn-primary, .btn-secondary { padding: 14px 24px; font-size: 0.9rem; width: 100%; justify-content: center; }

  /* Stats */
  .stats { padding: 32px 0; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .stat-num { font-size: 1.6rem; }
  .stat-label { font-size: 0.75rem; }

  /* Sections */
  .section { padding: 50px 0; }
  .section-header { margin-bottom: 32px; }
  .section-title { font-size: 1.6rem; margin-bottom: 12px; }
  .section-sub { font-size: 0.85rem; }
  .section-badge { font-size: 0.7rem; padding: 5px 14px; }

  /* Features */
  .features-grid { grid-template-columns: 1fr; gap: 12px; }
  .feature-card { padding: 20px; border-radius: 16px; }
  .feature-icon { width: 44px; height: 44px; font-size: 1.2rem; border-radius: 12px; margin-bottom: 14px; }
  .feature-card h3 { font-size: 1rem; }
  .feature-card p { font-size: 0.85rem; }

  /* Steps */
  .steps-grid { gap: 24px; }
  .step-num { width: 50px; height: 50px; font-size: 1.1rem; margin-bottom: 16px; }
  .step-card h3 { font-size: 1rem; }
  .step-card p { font-size: 0.85rem; }

  /* About */
  .about-content h3 { font-size: 1.5rem; }
  .about-content p { font-size: 0.9rem; }
  .about-list li { font-size: 0.85rem; gap: 8px; }

  /* Gallery */
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .gallery-item { border-radius: 12px; }

  /* Testimonials */
  .testimonial-card { padding: 20px; border-radius: 16px; }
  .testimonial-stars { font-size: 0.95rem; margin-bottom: 12px; }
  .testimonial-text { font-size: 0.85rem; margin-bottom: 16px; }
  .testimonial-avatar { width: 36px; height: 36px; font-size: 0.9rem; }
  .testimonial-name { font-size: 0.85rem; }
  .testimonial-role { font-size: 0.75rem; }

  /* FAQ */
  .faq-question { padding: 16px; font-size: 0.9rem; gap: 12px; }
  .faq-answer-inner { padding: 0 16px 16px; font-size: 0.85rem; }
  .faq-item { border-radius: 12px; margin-bottom: 8px; }

  /* Download CTA */
  .download-section { padding: 40px 0; }
  .download-card { padding: 32px 20px; border-radius: 20px; }
  .download-card::before { width: 250px; height: 250px; top: -60px; }
  .download-card h2 { font-size: 1.5rem; margin-bottom: 12px; }
  .download-card p { font-size: 0.9rem; margin-bottom: 24px; }
  .store-buttons { flex-direction: column; align-items: stretch; gap: 12px; }
  .store-btn {
    padding: 16px 20px; border-radius: 14px;
    justify-content: center; width: 100%;
    gap: 14px;
  }
  .store-btn svg { width: 32px; height: 32px; flex-shrink: 0; }
  .store-btn .store-label { font-size: 0.65rem; }
  .store-btn .store-name { font-size: 1.1rem; }

  /* Contact */
  .contact-grid { gap: 32px; }
  .contact-icon { width: 40px; height: 40px; font-size: 1rem; border-radius: 10px; }
  .contact-item h4 { font-size: 0.85rem; }
  .contact-item p { font-size: 0.8rem; }
  .form-group input, .form-group textarea { padding: 12px 14px; font-size: 0.85rem; border-radius: 10px; }
  .form-group textarea { min-height: 100px; }

  /* Footer */
  .footer { padding: 36px 0 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; margin-bottom: 24px; }
  .footer-brand p { max-width: 100%; }
  .footer h4 { font-size: 0.8rem; margin-bottom: 10px; }
  .footer ul a { font-size: 0.8rem; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 12px; padding-top: 20px; }
  .social-links { justify-content: center; }
  .social-links a { width: 36px; height: 36px; font-size: 0.95rem; }
}

/* Extra small phones */
@media (max-width: 380px) {
  .hero h1 { font-size: 1.7rem; }
  .section-title { font-size: 1.4rem; }
  .download-card h2 { font-size: 1.3rem; }
  .stat-num { font-size: 1.4rem; }
  .nav-logo span { font-size: 1rem; }
}

