/* ═══════════════════════════════════════
   0032 — TYPE 5: Deep Purple + Gold
   Royal / Imperial Style
   ═══════════════════════════════════════ */

:root {
  --purple: #6d28d9;
  --purple-dark: #4c1d95;
  --purple-light: #a78bfa;
  --gold: #f59e0b;
  --gold-dark: #d97706;
  --gold-light: #fde68a;
  --dark: #1e1b4b;
  --darker: #0f0d2e;
  --white: #ffffff;
  --gray-50: #fafafa;
  --gray-100: #f5f3ff;
  --gray-200: #e4e4e7;
  --gray-600: #52525b;
  --gray-700: #3f3f46;
  --gray-800: #27272a;
  --gray-900: #18181b;
}

* { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }
body { font-family:'Segoe UI',system-ui,-apple-system,sans-serif; color:var(--gray-800); line-height:1.6; background:var(--white); }

/* ═══ Navbar ═══ */
.navbar { position:fixed; top:0; left:0; width:100%; z-index:1000; background:rgba(30,27,75,0.95); backdrop-filter:blur(10px); border-bottom:1px solid rgba(245,158,11,0.2); transition:all 0.3s; }
.navbar.scrolled { box-shadow:0 4px 20px rgba(109,40,217,0.3); }
.nav-container { max-width:1200px; margin:0 auto; padding:0 1.5rem; display:flex; align-items:center; justify-content:space-between; height:72px; }
.nav-logo { font-size:1.5rem; font-weight:800; color:var(--white); text-decoration:none; display:flex; align-items:center; gap:0.5rem; }
.nav-logo i { color:var(--gold); }
.nav-logo span { color:var(--purple-light); }
.nav-links { display:flex; align-items:center; gap:2rem; list-style:none; }
.nav-links a { text-decoration:none; color:rgba(255,255,255,0.8); font-weight:500; font-size:0.95rem; transition:all 0.2s; position:relative; }
.nav-links a:hover, .nav-links a.active { color:var(--gold); }
.nav-links a::after { content:''; position:absolute; bottom:-4px; left:50%; transform:translateX(-50%); width:0; height:2px; background:var(--gold); transition:width 0.3s; border-radius:2px; }
.nav-links a:hover::after, .nav-links a.active::after { width:100%; }
.nav-cta { background:linear-gradient(135deg, var(--gold), var(--gold-dark)); color:var(--dark)!important; padding:0.5rem 1.25rem; border-radius:50px; font-weight:700!important; transition:all 0.3s!important; }
.nav-cta:hover { transform:translateY(-2px); box-shadow:0 4px 14px rgba(245,158,11,0.5); color:var(--dark)!important; }
.nav-cta::after { display:none!important; }
.hamburger { display:none; flex-direction:column; gap:5px; cursor:pointer; background:none; border:none; padding:4px; z-index:1001; }
.hamburger span { display:block; width:26px; height:2.5px; background:var(--gold); border-radius:2px; transition:all 0.3s; }
.hamburger.active span:nth-child(1) { transform:rotate(45deg) translate(5px,5px); }
.hamburger.active span:nth-child(2) { opacity:0; }
.hamburger.active span:nth-child(3) { transform:rotate(-45deg) translate(5px,-5px); }

/* ═══ Hero — Fullscreen gradient + centered ═══ */
.hero { min-height:100vh; display:flex; align-items:center; justify-content:center; background:linear-gradient(135deg, var(--darker) 0%, var(--dark) 40%, #2d1b69 70%, #4c1d95 100%); position:relative; overflow:hidden; padding:100px 0; }
.hero::before { content:''; position:absolute; top:10%; left:5%; width:350px; height:350px; background:radial-gradient(circle, rgba(245,158,11,0.15), transparent 70%); border-radius:50%; }
.hero::after { content:''; position:absolute; bottom:5%; right:5%; width:400px; height:400px; background:radial-gradient(circle, rgba(109,40,217,0.2), transparent 70%); border-radius:50%; }
.hero-bg-img { position:absolute; top:50%; left:50%; transform:translate(-50%,-50%); width:600px; height:400px; background:url('https://images.unsplash.com/photo-1596838132731-3301c638a1d3?w=600') center/cover no-repeat; border-radius:24px; opacity:0.12; }
.hero .container { position:relative; z-index:2; max-width:800px; margin:0 auto; padding:0 1.5rem; text-align:center; }
.hero-badge { display:inline-block; background:rgba(245,158,11,0.15); color:var(--gold-light); padding:0.5rem 1.25rem; border-radius:50px; font-size:0.85rem; font-weight:600; margin-bottom:1.5rem; border:1px solid rgba(245,158,11,0.3); }
.hero h1 { font-size:3.5rem; font-weight:800; line-height:1.2; color:var(--white); margin-bottom:1.25rem; }
.hero h1 span { background:linear-gradient(135deg, var(--gold), var(--gold-light)); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; }
.hero p { font-size:1.15rem; color:rgba(255,255,255,0.7); margin-bottom:2.5rem; line-height:1.8; }
.hero-buttons { display:flex; gap:1rem; flex-wrap:wrap; justify-content:center; }
.btn { display:inline-flex; align-items:center; gap:0.5rem; padding:0.9rem 2.25rem; border-radius:50px; font-weight:600; font-size:1rem; text-decoration:none; transition:all 0.3s; border:none; cursor:pointer; }
.btn-primary { background:linear-gradient(135deg, var(--purple), var(--purple-dark)); color:white; box-shadow:0 4px 14px rgba(109,40,217,0.4); }
.btn-primary:hover { transform:translateY(-2px); box-shadow:0 8px 24px rgba(109,40,217,0.5); }
.btn-gold { background:linear-gradient(135deg, var(--gold), var(--gold-dark)); color:var(--dark); font-weight:700; box-shadow:0 4px 14px rgba(245,158,11,0.4); }
.btn-gold:hover { transform:translateY(-2px); box-shadow:0 8px 24px rgba(245,158,11,0.5); }
.btn-outline { background:transparent; color:var(--white); border:2px solid rgba(255,255,255,0.3); }
.btn-outline:hover { background:rgba(255,255,255,0.1); border-color:var(--gold); color:var(--gold); transform:translateY(-2px); }

/* ═══ Section Common ═══ */
section { padding:80px 0; }
.container { max-width:1200px; margin:0 auto; padding:0 1.5rem; }
.section-label { display:inline-block; color:var(--purple); font-weight:700; font-size:0.85rem; text-transform:uppercase; letter-spacing:2px; margin-bottom:0.5rem; }
.section-title { font-size:2.5rem; font-weight:800; color:var(--gray-900); margin-bottom:1rem; text-align:center; }
.section-subtitle { font-size:1.1rem; color:var(--gray-600); text-align:center; max-width:600px; margin:0 auto 3rem; }
.bg-light { background:var(--gray-100); }
.bg-dark { background:var(--dark); }

/* ═══ Features — icon hover enlarge ═══ */
.features-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:2rem; }
.feature-card { background:white; border-radius:20px; padding:2.5rem 2rem; text-align:center; box-shadow:0 1px 3px rgba(0,0,0,0.06); transition:all 0.4s cubic-bezier(0.4,0,0.2,1); border:1px solid var(--gray-200); }
.feature-card:hover { box-shadow:0 20px 40px rgba(109,40,217,0.12); border-color:var(--purple-light); }
.feature-card:hover .feature-icon { transform:scale(1.2); }
.feature-icon { width:72px; height:72px; border-radius:18px; display:flex; align-items:center; justify-content:center; font-size:1.8rem; margin:0 auto 1.5rem; transition:transform 0.4s cubic-bezier(0.4,0,0.2,1); }
.feature-icon.purple { background:rgba(109,40,217,0.1); color:var(--purple); }
.feature-icon.gold { background:rgba(245,158,11,0.1); color:var(--gold-dark); }
.feature-icon.indigo { background:rgba(99,102,241,0.1); color:#6366f1; }
.feature-card h3 { font-size:1.25rem; font-weight:700; color:var(--gray-900); margin-bottom:0.75rem; }
.feature-card p { color:var(--gray-600); font-size:0.95rem; line-height:1.7; }

/* ═══ Stats — Gradient background bars ═══ */
.stats-section { background:linear-gradient(135deg, var(--dark), var(--darker)); position:relative; }
.stats-section::before { content:''; position:absolute; top:0; left:0; right:0; height:4px; background:linear-gradient(90deg, var(--purple), var(--gold), var(--purple-light)); }
.stats-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:2rem; text-align:center; }
.stat-item { padding:1.5rem; border-radius:12px; background:rgba(255,255,255,0.03); border:1px solid rgba(255,255,255,0.06); position:relative; overflow:hidden; }
.stat-item::after { content:''; position:absolute; bottom:0; left:0; right:0; height:3px; background:linear-gradient(90deg, var(--purple-light), var(--gold)); border-radius:0 0 3px 3px; }
.stat-number { font-size:3rem; font-weight:800; background:linear-gradient(135deg, var(--gold), var(--gold-light)); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; line-height:1; margin-bottom:0.5rem; }
.stat-label { font-size:1rem; color:rgba(255,255,255,0.7); }

/* ═══ Testimonials ═══ */
.testimonials-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:2rem; }
.testimonial-card { background:white; border-radius:20px; padding:2rem; box-shadow:0 1px 3px rgba(0,0,0,0.06); transition:all 0.3s; border:1px solid var(--gray-200); position:relative; }
.testimonial-card:hover { transform:translateY(-6px); box-shadow:0 16px 32px rgba(109,40,217,0.1); border-color:var(--purple-light); }
.testimonial-card::before { content:'\201C'; position:absolute; top:1rem; right:1.5rem; font-size:4rem; color:var(--purple-light); opacity:0.2; font-family:Georgia,serif; line-height:1; }
.testimonial-card p { color:var(--gray-600); font-size:0.95rem; line-height:1.8; margin-bottom:1.5rem; }
.testimonial-author { display:flex; align-items:center; gap:0.75rem; }
.testimonial-author img { width:48px; height:48px; border-radius:50%; object-fit:cover; border:2px solid var(--purple-light); }
.testimonial-author .name { font-weight:700; color:var(--gray-900); font-size:0.95rem; }
.testimonial-author .role { color:var(--gray-600); font-size:0.8rem; }
.testimonial-rating { color:var(--gold); font-size:0.85rem; margin-top:2px; }

/* ═══ FAQ — Accordion with +/- ═══ */
.faq-container { max-width:800px; margin:0 auto; }
.faq-item { background:white; border-radius:14px; margin-bottom:1rem; overflow:hidden; box-shadow:0 1px 2px rgba(0,0,0,0.04); border:1px solid var(--gray-200); transition:all 0.3s; }
.faq-item:hover { border-color:var(--purple-light); }
.faq-question { width:100%; padding:1.25rem 1.5rem; display:flex; align-items:center; justify-content:space-between; background:none; border:none; cursor:pointer; font-size:1.05rem; font-weight:600; color:var(--gray-800); text-align:left; gap:1rem; }
.faq-toggle { width:30px; height:30px; border-radius:50%; background:var(--purple); color:white; display:flex; align-items:center; justify-content:center; font-size:1rem; font-weight:700; flex-shrink:0; transition:all 0.3s; }
.faq-item.active .faq-toggle { background:var(--gold); transform:rotate(45deg); }
.faq-answer { max-height:0; overflow:hidden; transition:max-height 0.4s ease, padding 0.4s ease; }
.faq-item.active .faq-answer { max-height:300px; }
.faq-answer p { padding:0 1.5rem 1.25rem; color:var(--gray-600); font-size:0.95rem; line-height:1.8; }

/* ═══ CTA Banner ═══ */
.cta-section { background:linear-gradient(135deg, var(--purple-dark), var(--dark)); position:relative; overflow:hidden; }
.cta-section::before { content:''; position:absolute; top:-30%; right:-10%; width:400px; height:400px; background:rgba(245,158,11,0.1); border-radius:50%; }
.cta-content { position:relative; z-index:1; text-align:center; }
.cta-content h2 { font-size:2.5rem; color:white; font-weight:800; margin-bottom:1rem; }
.cta-content p { color:rgba(255,255,255,0.8); font-size:1.1rem; margin-bottom:2rem; max-width:600px; margin-left:auto; margin-right:auto; }

/* ═══ Footer ═══ */
.footer { background:var(--darker); color:rgba(255,255,255,0.7); padding:60px 0 0; }
.footer-grid { display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:3rem; }
.footer-about h3 { font-size:1.5rem; color:white; margin-bottom:1rem; }
.footer-about h3 i { color:var(--gold); }
.footer-about p { font-size:0.9rem; line-height:1.8; margin-bottom:1rem; }
.footer h4 { color:var(--gold-light); font-weight:700; margin-bottom:1.25rem; font-size:1.05rem; }
.footer ul { list-style:none; }
.footer ul li { margin-bottom:0.75rem; }
.footer ul a { color:rgba(255,255,255,0.6); text-decoration:none; font-size:0.9rem; transition:color 0.2s; }
.footer ul a:hover { color:var(--gold); }
.footer-bottom { border-top:1px solid rgba(255,255,255,0.08); margin-top:3rem; padding:1.5rem 0; text-align:center; font-size:0.85rem; color:rgba(255,255,255,0.35); }

/* ═══ Page Hero ═══ */
.page-hero { padding:140px 0 70px; text-align:center; background:linear-gradient(135deg, var(--darker), var(--dark)); }
.page-hero h1 { font-size:2.5rem; font-weight:800; color:white; }
.page-hero .breadcrumb { margin-top:0.75rem; color:rgba(255,255,255,0.6); font-size:0.9rem; }
.page-hero .breadcrumb a { color:var(--gold); text-decoration:none; }

/* ═══ Download ═══ */
.dl-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:2rem; }
.dl-card { background:white; border-radius:20px; padding:2.5rem; text-align:center; box-shadow:0 1px 3px rgba(0,0,0,0.06); border:1px solid var(--gray-200); transition:all 0.3s; }
.dl-card:hover { transform:translateY(-6px); box-shadow:0 16px 32px rgba(109,40,217,0.12); }
.dl-card i { font-size:3rem; margin-bottom:1rem; }
.dl-card.android i { color:#3ddc84; }
.dl-card.ios i { color:#000; }
.dl-card h3 { font-size:1.5rem; margin-bottom:0.75rem; color:var(--gray-900); }

/* ═══ About ═══ */
.about-split { display:grid; grid-template-columns:1fr 1fr; gap:3rem; align-items:center; margin-bottom:3rem; }
.about-split img { width:100%; border-radius:16px; }
.values-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:2rem; }
.value-card { text-align:center; padding:2rem; background:white; border-radius:16px; }
.value-card i { font-size:2rem; color:var(--purple); margin-bottom:1rem; }

/* ═══ Contact ═══ */
.contact-split { display:grid; grid-template-columns:1fr 1.5fr; gap:3rem; }
.contact-card { background:white; padding:2.5rem; border-radius:20px; box-shadow:0 1px 3px rgba(0,0,0,0.06); }
.form-group { margin-bottom:1.25rem; }
.form-group label { display:block; font-weight:600; color:var(--gray-700); margin-bottom:0.4rem; font-size:0.9rem; }
.form-group input, .form-group textarea, .form-group select { width:100%; padding:0.8rem 1rem; border:1.5px solid var(--gray-200); border-radius:12px; font-size:0.95rem; font-family:inherit; transition:all 0.3s; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { outline:none; border-color:var(--purple); box-shadow:0 0 0 3px rgba(109,40,217,0.1); }
.form-group textarea { min-height:120px; resize:vertical; }

/* ═══ Responsive ═══ */
@media (max-width: 1024px) {
  .features-grid, .testimonials-grid, .values-grid { grid-template-columns:repeat(2,1fr); }
  .stats-grid { grid-template-columns:repeat(2,1fr); }
  .footer-grid { grid-template-columns:repeat(2,1fr); }
  .about-split, .contact-split { grid-template-columns:1fr; }
  .dl-grid { grid-template-columns:1fr; }
}
@media (max-width: 768px) {
  .hamburger { display:flex; }
  .nav-links { position:fixed; top:0; right:-100%; width:280px; height:100vh; background:var(--dark); flex-direction:column; padding:100px 2rem 2rem; gap:1.5rem; transition:right 0.4s; box-shadow:-4px 0 24px rgba(0,0,0,0.3); }
  .nav-links.active { right:0; }
  .hero h1 { font-size:2.5rem; }
  .section-title { font-size:2rem; }
  .features-grid, .testimonials-grid, .values-grid { grid-template-columns:1fr; }
  .stats-grid { grid-template-columns:repeat(2,1fr); }
  .footer-grid { grid-template-columns:1fr; }
  .cta-content h2 { font-size:2rem; }
}
