/* ═══════════════════════════════════════════════════════════ */
/*  Prime Services — Global Styles                           */
/* ═══════════════════════════════════════════════════════════ */

:root {
    --primary: #6C3AED;
    --primary-light: #8B5CF6;
    --primary-dark: #5B21B6;
    --accent: #06B6D4;
    --bg: #0F0F1A;
    --bg-card: #1A1A2E;
    --bg-card-hover: #1E1E35;
    --surface: #16162A;
    --text: #F1F5F9;
    --text-muted: #94A3B8;
    --text-dim: #64748B;
    --border: rgba(255, 255, 255, 0.08);
    --gradient: linear-gradient(135deg, #6C3AED, #06B6D4);
    --gradient-text: linear-gradient(135deg, #8B5CF6, #06B6D4);
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
    --radius: 12px;
    --radius-lg: 20px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
}

a { color: var(--primary-light); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--accent); }

h1, h2, h3, h4 { line-height: 1.3; }
h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 700; }
h3 { font-size: 1.15rem; font-weight: 600; }

.gradient-text {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
}

.btn-primary {
    background: var(--gradient);
    color: #fff;
    box-shadow: 0 4px 16px rgba(108, 58, 237, 0.35);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(108, 58, 237, 0.5);
    color: #fff;
}

.btn-outline {
    background: transparent;
    color: var(--text);
    border: 1.5px solid var(--border);
}
.btn-outline:hover {
    border-color: var(--primary-light);
    color: var(--primary-light);
}

/* ── Navbar ─────────────────────────────────────────────── */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(15, 15, 26, 0.85);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--text);
    text-decoration: none;
}
.logo:hover { color: var(--text); }

.logo-stack {
    display: flex;
    flex-direction: column;
    gap: 1px;
    line-height: 1.1;
}
.logo-by {
    font-size: 0.62rem;
    font-weight: 500;
    color: var(--text-dim);
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.logo-icon {
    font-size: 1.5rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    gap: 32px;
}
.nav-links a {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    transition: all 0.3s;
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu {
    display: none;
    flex-direction: column;
    padding: 16px 24px;
    border-top: 1px solid var(--border);
}
.mobile-menu a {
    padding: 12px 0;
    color: var(--text-muted);
    font-weight: 500;
    border-bottom: 1px solid var(--border);
}
.mobile-menu.active { display: flex; }

@media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-toggle { display: flex; }
}

/* ── Hero ───────────────────────────────────────────────── */

.hero {
    position: relative;
    padding: 160px 0 100px;
    text-align: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(108, 58, 237, 0.15) 0%, transparent 60%),
                radial-gradient(ellipse at 80% 50%, rgba(6, 182, 212, 0.08) 0%, transparent 50%);
}

.hero-content { position: relative; z-index: 1; }

.hero-badge {
    display: inline-block;
    padding: 6px 18px;
    background: rgba(108, 58, 237, 0.15);
    border: 1px solid rgba(108, 58, 237, 0.3);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-light);
    margin-bottom: 24px;
    letter-spacing: 0.5px;
}

.hero-subtitle {
    max-width: 600px;
    margin: 20px auto 36px;
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ── Features ───────────────────────────────────────────── */

.features {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 56px;
}
.section-header p {
    color: var(--text-muted);
    margin-top: 12px;
    font-size: 1.05rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    transition: all 0.3s ease;
}
.feature-card:hover {
    background: var(--bg-card-hover);
    border-color: rgba(108, 58, 237, 0.3);
    transform: translateY(-4px);
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 16px;
}

.feature-card h3 {
    margin-bottom: 8px;
    color: var(--text);
}
.feature-card p {
    color: var(--text-muted);
    font-size: 0.92rem;
}

/* ── About ─────────────────────────────────────────────── */

.about {
    padding: 80px 0;
    background: var(--surface);
}

.about-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 48px;
    align-items: center;
}

.about-text h2 { margin-bottom: 20px; }
.about-text p {
    color: var(--text-muted);
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.stat {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    text-align: center;
}
.stat-value {
    font-size: 2rem;
    font-weight: 800;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.stat-label {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-top: 4px;
}

@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
    }
    .about-stats {
        flex-direction: row;
        flex-wrap: wrap;
    }
    .stat { flex: 1; min-width: 120px; }
}

/* ── Footer ────────────────────────────────────────────── */

.footer {
    padding: 64px 0 32px;
    border-top: 1px solid var(--border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 48px;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 12px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-links h4 {
    color: var(--text);
    font-size: 0.9rem;
    margin-bottom: 4px;
}
.footer-links a {
    color: var(--text-muted);
    font-size: 0.85rem;
}
.footer-links a:hover { color: var(--primary-light); }

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 24px;
    text-align: center;
}
.footer-bottom p {
    color: var(--text-dim);
    font-size: 0.82rem;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* ── Legal Pages (Privacy, Terms, Delete Account) ──────── */

.legal-page {
    padding: 120px 0 80px;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    margin-bottom: 8px;
}

.legal-meta {
    color: var(--text-dim);
    font-size: 0.85rem;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}

.legal-content h2 {
    font-size: 1.3rem;
    margin: 36px 0 14px;
    color: var(--text);
}

.legal-content h3 {
    font-size: 1.08rem;
    margin: 24px 0 10px;
}

.legal-content p,
.legal-content li {
    color: var(--text-muted);
    font-size: 0.93rem;
    line-height: 1.8;
    margin-bottom: 12px;
}

.legal-content ul, .legal-content ol {
    padding-left: 24px;
    margin-bottom: 16px;
}

.legal-content li {
    margin-bottom: 6px;
}

.legal-content strong {
    color: var(--text);
}

/* ── Contact Page ─────────────────────────────────────── */

.contact-page {
    padding: 120px 0 80px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    max-width: 900px;
    margin: 0 auto;
}

.contact-info h1 {
    font-size: 2rem;
    margin-bottom: 16px;
}
.contact-info > p {
    color: var(--text-muted);
    margin-bottom: 32px;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
    margin-bottom: 16px;
    transition: border-color 0.2s;
}
.contact-card:hover {
    border-color: rgba(108, 58, 237, 0.3);
}

.contact-card-icon {
    font-size: 1.4rem;
    flex-shrink: 0;
}
.contact-card h4 {
    font-size: 0.9rem;
    margin-bottom: 4px;
}
.contact-card p, .contact-card a {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.contact-form {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px;
}

.contact-form h3 {
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 18px;
}
.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 6px;
}
.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 14px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text);
    font-family: inherit;
    font-size: 0.9rem;
    transition: border-color 0.2s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-light);
}
.form-group textarea {
    min-height: 100px;
    resize: vertical;
}

.form-submit {
    width: 100%;
    padding: 14px;
    background: var(--gradient);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s;
}
.form-submit:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* ── Delete Account Page ─────────────────────────────── */

.delete-warning {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.25);
    border-radius: var(--radius);
    padding: 20px;
    margin: 24px 0;
}
.delete-warning p {
    color: #FCA5A5 !important;
}

.delete-steps {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    margin: 24px 0;
}

.delete-steps ol {
    counter-reset: step;
    list-style: none;
    padding: 0;
}
.delete-steps ol li {
    counter-increment: step;
    padding-left: 40px;
    position: relative;
    margin-bottom: 16px;
}
.delete-steps ol li::before {
    content: counter(step);
    position: absolute;
    left: 0;
    top: 2px;
    width: 26px;
    height: 26px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: #fff;
}

/* ── Hero Note ────────────────────────────────────────── */

.hero-note {
    margin-top: 20px;
    font-size: 0.82rem;
    color: var(--text-dim);
    letter-spacing: 0.2px;
}

/* ── Highlight Box (Privacy etc.) ─────────────────────── */

.highlight-box {
    background: var(--bg-card);
    border: 1px solid rgba(108, 58, 237, 0.2);
    border-left: 3px solid var(--primary);
    border-radius: var(--radius);
    padding: 24px 28px;
    margin: 16px 0 24px;
}
.highlight-box h3 {
    margin-bottom: 12px;
    color: var(--text);
    font-size: 1rem;
}

/* ── Pricing Preview (Homepage) ──────────────────────── */

.pricing-preview {
    padding: 100px 0;
    background: var(--surface);
}

.pricing-cards-home {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    max-width: 900px;
    margin: 0 auto 32px;
}

.pricing-card-home {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    text-align: center;
    position: relative;
    transition: all 0.3s;
}
.pricing-card-home:hover {
    border-color: rgba(108, 58, 237, 0.3);
    transform: translateY(-4px);
}
.pricing-card-featured {
    border-color: var(--primary);
    box-shadow: 0 0 0 1px var(--primary), 0 8px 32px rgba(108, 58, 237, 0.2);
}

.plan-badge {
    display: inline-block;
    background: var(--gradient);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 50px;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.plan-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.plan-price {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 8px;
}
.plan-price span {
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--text-muted);
}

.pricing-card-home > p {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 0;
}

.pricing-note {
    text-align: center;
    color: var(--text-dim);
    font-size: 0.83rem;
    margin-top: 12px;
}

/* ── Pricing Page ─────────────────────────────────────── */

.pricing-page {
    position: relative;
    padding: 120px 0 80px;
    overflow: hidden;
}

.pricing-hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(108, 58, 237, 0.12) 0%, transparent 60%),
                radial-gradient(ellipse at 80% 60%, rgba(6, 182, 212, 0.07) 0%, transparent 50%);
    pointer-events: none;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 24px;
    max-width: 960px;
    margin: 0 auto 56px;
    align-items: stretch;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.3s;
}
.pricing-card:hover {
    background: var(--bg-card-hover);
    transform: translateY(-4px);
}

.pricing-featured {
    border-color: var(--primary);
    box-shadow: 0 0 0 1px var(--primary), 0 12px 40px rgba(108, 58, 237, 0.25);
    background: linear-gradient(160deg, #1a1634 0%, #1A1A2E 100%);
}

.pricing-badge {
    display: inline-block;
    background: var(--gradient);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 50px;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
    align-self: flex-start;
}

.pricing-plan-name {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.pricing-amount {
    display: flex;
    align-items: flex-start;
    gap: 2px;
    margin-bottom: 4px;
}
.pricing-currency {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text);
    margin-top: 6px;
}
.pricing-number {
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--text);
    line-height: 1;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.pricing-period {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 18px;
}

.pricing-billing {
    color: var(--text-dim);
    font-size: 0.82rem;
    margin-bottom: 6px;
}

.pricing-savings {
    display: inline-block;
    background: rgba(6, 182, 212, 0.12);
    border: 1px solid rgba(6, 182, 212, 0.25);
    color: var(--accent);
    font-size: 0.78rem;
    font-weight: 600;
    padding: 2px 10px;
    border-radius: 50px;
    margin-bottom: 24px;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 20px 0 28px;
    flex: 1;
}
.pricing-features li {
    color: var(--text-muted);
    font-size: 0.88rem;
    padding: 7px 0;
    border-bottom: 1px solid var(--border);
}
.pricing-features li:last-child { border-bottom: none; }

.pricing-cta {
    width: 100%;
    justify-content: center;
    text-align: center;
}

/* ── Payment Info Box ─────────────────────────────────── */

.payment-info-box {
    max-width: 800px;
    margin: 0 auto 64px;
    background: var(--bg-card);
    border: 1px solid rgba(108, 58, 237, 0.2);
    border-radius: var(--radius-lg);
    padding: 36px;
}

.payment-info-inner {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border);
}

.payment-info-icon {
    font-size: 2.4rem;
    flex-shrink: 0;
}

.payment-info-text h3 {
    margin-bottom: 8px;
    font-size: 1.15rem;
}
.payment-info-text p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.payment-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.pay-badge {
    background: rgba(108, 58, 237, 0.12);
    border: 1px solid rgba(108, 58, 237, 0.25);
    color: var(--primary-light);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 50px;
}

.payment-cta-note p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
}

@media (max-width: 600px) {
    .payment-info-inner { flex-direction: column; gap: 12px; }
}

/* ── FAQ Section ──────────────────────────────────────── */

.faq-section {
    max-width: 900px;
    margin: 0 auto;
    padding-top: 16px;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 40px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 20px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    transition: border-color 0.2s;
}
.faq-item:hover { border-color: rgba(108, 58, 237, 0.3); }

.faq-item h4 {
    font-size: 0.95rem;
    margin-bottom: 10px;
    color: var(--text);
}
.faq-item p {
    color: var(--text-muted);
    font-size: 0.87rem;
    line-height: 1.7;
}

@media (max-width: 600px) {
    .faq-grid { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════════════ */
/*  V2 Website Styles — Full Redesign                    */
/* ══════════════════════════════════════════════════════ */

/* ── Shared Utilities ───────────────────────────────── */

.btn-lg { padding: 16px 36px; font-size: 1rem; border-radius: 12px; }
.btn-ghost {
    background: rgba(255,255,255,0.06);
    color: var(--text);
    border: 1.5px solid var(--border);
}
.btn-ghost:hover {
    background: rgba(255,255,255,0.1);
    color: var(--text);
    border-color: rgba(255,255,255,0.2);
}

.section-label {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--primary-light);
    margin-bottom: 14px;
}

.hidden { display: none !important; }

/* Scroll animations */
.fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── Navbar v2 extras ──────────────────────────────── */
.navbar.scrolled {
    background: rgba(15, 15, 26, 0.97);
    box-shadow: 0 4px 24px rgba(0,0,0,0.4);
}
.nav-cta { padding: 10px 20px; font-size: 0.87rem; }
.mobile-download-btn {
    margin-top: 12px;
    background: var(--gradient);
    color: #fff !important;
    padding: 12px 20px;
    border-radius: 10px;
    text-align: center;
    font-weight: 700;
    border: none !important;
}
@media (max-width: 900px) {
    .nav-cta { display: none; }
    .nav-links { gap: 20px; }
}
@media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-toggle { display: flex; }
    .nav-cta { display: none; }
}

/* ── Particles ──────────────────────────────────────── */
.hero-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}
.particle {
    position: absolute;
    border-radius: 50%;
    background: var(--primary-light);
    animation: floatUp linear infinite;
}
@keyframes floatUp {
    0% { transform: translateY(0) scale(1); opacity: var(--op, 0.3); }
    100% { transform: translateY(-100vh) scale(0.5); opacity: 0; }
}

/* ── Hero V2 ────────────────────────────────────────── */
.hero-v2 {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 100px 0 80px;
}
.hero-bg-v2 {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(108, 58, 237, 0.18) 0%, transparent 55%),
        radial-gradient(ellipse at 80% 30%, rgba(6, 182, 212, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 100%, rgba(108, 58, 237, 0.08) 0%, transparent 40%);
    pointer-events: none;
}
.hero-v2-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.hero-text-col { max-width: 560px; }
.hero-text-col h1 { margin-bottom: 20px; }
.hero-subtitle-v2 {
    color: var(--text-muted);
    font-size: 1.08rem;
    line-height: 1.8;
    margin-bottom: 36px;
}
.hero-actions-v2 { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 32px; }
.hero-trust-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
    align-items: center;
    font-size: 0.82rem;
    color: var(--text-dim);
}
.trust-sep { color: var(--border); }

/* Floating phone + alert cards */
.hero-img-col { display: flex; justify-content: center; align-items: center; }
.hero-phone-wrap { position: relative; width: 320px; }
.hero-phone-img {
    width: 100%;
    border-radius: 32px;
    box-shadow: 0 24px 80px rgba(108, 58, 237, 0.3), 0 0 0 1px rgba(255,255,255,0.06);
}
.hero-floating-card {
    position: absolute;
    background: rgba(26, 26, 46, 0.92);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 14px;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
    animation: floatCard 4s ease-in-out infinite;
    min-width: 190px;
}
.card-1 { top: 10%; right: -40px; animation-delay: 0s; }
.card-2 { top: 45%; left: -50px; animation-delay: 1.5s; }
.card-3 { bottom: 15%; right: -30px; animation-delay: 3s; }
@keyframes floatCard {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-8px); }
}
.fc-icon { font-size: 1.4rem; flex-shrink: 0; }
.fc-title { font-size: 0.82rem; font-weight: 600; color: var(--text); }
.fc-sub { font-size: 0.72rem; color: var(--text-dim); margin-top: 2px; }

@media (max-width: 900px) {
    .hero-v2-inner { grid-template-columns: 1fr; text-align: center; }
    .hero-text-col { max-width: 100%; }
    .hero-actions-v2 { justify-content: center; }
    .hero-trust-bar { justify-content: center; }
    .hero-img-col { display: none; }
}

/* ── Social Proof ──────────────────────────────────── */
.social-proof {
    padding: 48px 0;
    background: var(--surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.sp-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    flex-wrap: wrap;
}
.sp-item { text-align: center; padding: 12px 40px; }
.sp-number {
    font-size: 2.2rem;
    font-weight: 800;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.sp-label { font-size: 0.82rem; color: var(--text-dim); margin-top: 4px; }
.sp-divider { width: 1px; height: 48px; background: var(--border); }
@media (max-width: 600px) {
    .sp-divider { display: none; }
    .sp-item { padding: 12px 24px; }
}

/* ── Features V2 ───────────────────────────────────── */
.features-v2 { padding: 100px 0; }
.features-grid-v2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}
.feat-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: all 0.3s;
}
.feat-card:hover {
    border-color: rgba(108, 58, 237, 0.3);
    background: var(--bg-card-hover);
    transform: translateY(-4px);
}
.feat-icon-wrap {
    font-size: 2rem;
    margin-bottom: 16px;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: color-mix(in srgb, var(--ic) 15%, transparent);
    border-radius: 14px;
    border: 1px solid color-mix(in srgb, var(--ic) 30%, transparent);
}
.feat-card h3 { color: var(--text); margin-bottom: 10px; }
.feat-card p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; }
.features-cta { text-align: center; }

/* ── How It Works ──────────────────────────────────── */
.hiw-section {
    position: relative;
    padding: 100px 0;
}
.hiw-bg {
    position: absolute;
    inset: 0;
    background: var(--surface);
    clip-path: polygon(0 5%, 100% 0%, 100% 95%, 0% 100%);
}
.hiw-steps {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
    margin-bottom: 48px;
}
.hiw-step {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    max-width: 260px;
    text-align: center;
    position: relative;
    transition: all 0.3s;
}
.hiw-step:hover { transform: translateY(-4px); border-color: rgba(108,58,237,0.3); }
.hiw-step-num {
    font-size: 3rem;
    font-weight: 900;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 8px;
}
.hiw-step-icon { font-size: 1.8rem; margin-bottom: 12px; }
.hiw-step h3 { color: var(--text); margin-bottom: 8px; }
.hiw-step p { color: var(--text-muted); font-size: 0.87rem; line-height: 1.6; }
.hiw-link { font-size: 0.85rem; color: var(--primary-light); display: block; margin-top: 12px; }
.hiw-arrow {
    font-size: 2rem;
    color: var(--border);
    align-self: center;
    padding-bottom: 40px;
}
.hiw-screens { position: relative; z-index: 1; }
.hiw-screens-img {
    width: 100%;
    max-width: 860px;
    display: block;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
}
@media (max-width: 700px) {
    .hiw-arrow { display: none; }
    .hiw-step { max-width: 100%; }
}

/* ── Video Section ─────────────────────────────────── */
.video-section { padding: 100px 0; }
.video-wrap {
    max-width: 860px;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 24px 64px rgba(0,0,0,0.5);
    aspect-ratio: 16/9;
    position: relative;
    background: #0a0a14;
}
.video-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a2e 0%, #0f0f20 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}
.video-thumb-overlay {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
.play-btn {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gradient);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 32px rgba(108,58,237,0.5);
    transition: transform 0.2s, box-shadow 0.2s;
}
.play-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 40px rgba(108,58,237,0.7);
}
.video-caption { color: var(--text-dim); font-size: 0.85rem; }
.video-iframe {
    width: 100%;
    height: 100%;
    border: none;
    position: absolute;
    inset: 0;
}

/* ── Pricing Preview Home ──────────────────────────── */
.pricing-preview-v2 { padding: 100px 0; background: var(--surface); }
.pricing-grid-home {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    max-width: 860px;
    margin: 0 auto 28px;
}
.ph-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.3s;
}
.ph-card:hover { transform: translateY(-4px); border-color: rgba(108,58,237,0.3); }
.ph-featured {
    border-color: var(--primary);
    box-shadow: 0 0 0 1px var(--primary), 0 12px 40px rgba(108,58,237,0.25);
}
.ph-badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 4px 16px;
    border-radius: 50px;
    white-space: nowrap;
}
.ph-plan { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.2px; color: var(--text-muted); margin-bottom: 10px; }
.ph-price { font-size: 2.4rem; font-weight: 800; color: var(--text); margin-bottom: 4px; }
.ph-price span { font-size: 0.9rem; font-weight: 400; color: var(--text-muted); }
.ph-saving { font-size: 0.8rem; color: var(--accent); margin-bottom: 20px; }
.ph-features {
    list-style: none;
    flex: 1;
    margin-bottom: 24px;
}
.ph-features li { color: var(--text-muted); font-size: 0.87rem; padding: 6px 0; border-bottom: 1px solid var(--border); }
.ph-features li:last-child { border: none; }
.ph-btn { width: 100%; justify-content: center; }
.pricing-razorpay-note { text-align: center; color: var(--text-dim); font-size: 0.83rem; }

/* ── FAQ Accordion ─────────────────────────────────── */
.faq-preview { padding: 100px 0; }
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item-acc {
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}
.faq-q {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    background: none;
    border: none;
    color: var(--text);
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    text-align: left;
    gap: 16px;
    font-family: 'Inter', sans-serif;
    transition: color 0.2s;
}
.faq-q:hover { color: var(--primary-light); }
.faq-arrow { color: var(--primary-light); flex-shrink: 0; font-size: 1.1rem; transition: transform 0.3s; }
.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}
.faq-a p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.75;
    padding-bottom: 20px;
}
.faq-a a { color: var(--primary-light); }
.faq-a ol, .faq-a ul { color: var(--text-muted); font-size: 0.9rem; line-height: 1.8; }

/* ── CTA Banner ─────────────────────────────────────── */
.cta-banner {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}
.cta-banner-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(108,58,237,0.15) 0%, rgba(6,182,212,0.08) 100%);
    border-top: 1px solid rgba(108,58,237,0.2);
    border-bottom: 1px solid rgba(108,58,237,0.2);
}
.cta-banner-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
}
.cta-banner-text h2 { margin-bottom: 8px; }
.cta-banner-text p { color: var(--text-muted); font-size: 0.95rem; }
.cta-banner-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; flex-shrink: 0; }
@media (max-width: 700px) {
    .cta-banner-inner { flex-direction: column; text-align: center; }
    .cta-banner-actions { justify-content: center; }
}

/* ── Footer V2 ──────────────────────────────────────── */
.footer-v2 {
    background: var(--surface);
    border-top: 1px solid var(--border);
    padding: 64px 0 0;
}
.footer-v2-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 48px;
}
.fv2-brand p { color: var(--text-dim); font-size: 0.88rem; margin-top: 12px; line-height: 1.7; }
.fv2-links h4 { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--text-dim); margin-bottom: 16px; }
.fv2-links { display: flex; flex-direction: column; gap: 10px; }
.fv2-links a { color: var(--text-muted); font-size: 0.88rem; transition: color 0.2s; }
.fv2-links a:hover { color: var(--text); }
.footer-v2-bottom {
    border-top: 1px solid var(--border);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}
.footer-v2-bottom p { color: var(--text-dim); font-size: 0.82rem; }
@media (max-width: 860px) {
    .footer-v2-grid { grid-template-columns: 1fr 1fr; }
    .fv2-brand { grid-column: 1 / -1; }
}
@media (max-width: 500px) {
    .footer-v2-grid { grid-template-columns: 1fr; }
}

/* ── Download Modal ─────────────────────────────────── */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.75);
    backdrop-filter: blur(8px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
}
.modal-overlay.active { opacity: 1; pointer-events: all; }
.modal-box {
    background: var(--bg-card);
    border: 1px solid rgba(108,58,237,0.3);
    border-radius: var(--radius-lg);
    padding: 40px 36px;
    max-width: 460px;
    width: 100%;
    position: relative;
    transform: translateY(20px) scale(0.97);
    transition: transform 0.25s ease;
    text-align: center;
}
.modal-overlay.active .modal-box { transform: translateY(0) scale(1); }
.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    color: var(--text-dim);
    font-size: 1.4rem;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s;
}
.modal-close:hover { color: var(--text); }
.modal-icon { font-size: 3rem; margin-bottom: 16px; }
.modal-box h3 { margin-bottom: 12px; }
.modal-box p { color: var(--text-muted); font-size: 0.92rem; line-height: 1.7; margin-bottom: 0; }
.modal-payment-icons { display: flex; justify-content: center; gap: 8px; flex-wrap: wrap; margin-top: 16px; }
.modal-note { color: var(--text-dim); font-size: 0.8rem; margin-top: 14px; }

/* ── Page Hero (shared) ─────────────────────────────── */
.page-hero {
    position: relative;
    padding: 140px 0 80px;
    text-align: center;
    overflow: hidden;
}
.page-hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(108,58,237,0.14) 0%, transparent 60%);
    pointer-events: none;
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero-inner h1 { margin-bottom: 16px; }
.page-hero-inner p { color: var(--text-muted); font-size: 1.05rem; max-width: 600px; margin: 0 auto; }

/* ── Download Page ──────────────────────────────────── */
.download-page {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}
.download-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 20% 50%, rgba(108,58,237,0.15) 0%, transparent 55%);
    pointer-events: none;
}
.download-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}
.download-text h1 { margin-bottom: 16px; }
.download-subtitle { color: var(--text-muted); font-size: 1.05rem; line-height: 1.8; margin-bottom: 36px; }
.download-btn-group { display: flex; flex-direction: column; gap: 12px; align-items: flex-start; margin-bottom: 24px; }
.download-apk-btn { font-size: 1.05rem; }
.apk-meta { font-size: 0.8rem; color: var(--text-dim); }
.download-security-note {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    background: rgba(16, 185, 129, 0.07);
    border: 1px solid rgba(16,185,129,0.2);
    border-radius: var(--radius);
    padding: 14px 18px;
    max-width: 480px;
}
.download-security-note span { font-size: 1.2rem; flex-shrink: 0; }
.download-security-note p { color: var(--text-muted); font-size: 0.85rem; line-height: 1.6; }
.download-phone-img {
    width: 100%;
    max-width: 360px;
    border-radius: 28px;
    box-shadow: 0 24px 80px rgba(108,58,237,0.25);
    margin: 0 auto;
    display: block;
}
@media (max-width: 860px) {
    .download-inner { grid-template-columns: 1fr; }
    .download-phone-img-col { display: none; }
    .download-btn-group { align-items: center; }
    .download-text { text-align: center; }
    .download-security-note { margin: 0 auto; }
}

/* Install Steps */
.install-section { padding: 80px 0; }
.install-steps { display: flex; flex-direction: column; gap: 24px; max-width: 700px; margin: 0 auto 64px; }
.install-step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px 28px;
}
.install-num {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 50%;
    background: var(--gradient);
    color: #fff;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}
.install-content h3 { margin-bottom: 6px; font-size: 1rem; }
.install-content p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.7; }
.install-content code { background: rgba(108,58,237,0.15); padding: 1px 6px; border-radius: 4px; font-size: 0.85rem; }

/* System requirements */
.system-requirements { max-width: 860px; margin: 0 auto 64px; }
.system-requirements h2 { text-align: center; margin-bottom: 32px; }
.sysreq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
}
.sysreq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px;
}
.sysreq-icon { font-size: 1.5rem; margin-bottom: 8px; }
.sysreq-label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1px; color: var(--text-dim); font-weight: 700; margin-bottom: 4px; }
.sysreq-value { color: var(--text-muted); font-size: 0.88rem; }

.download-faq { max-width: 700px; margin: 0 auto; }
.download-faq h2 { text-align: center; margin-bottom: 28px; }

/* ── Features Full Page ─────────────────────────────── */
.features-banner-section { padding: 48px 0 0; }
.features-banner-img {
    width: 100%;
    max-width: 900px;
    display: block;
    margin: 0 auto;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    max-height: 320px;
    object-fit: cover;
}
.features-full { padding: 80px 0; }
.feat-category { margin-bottom: 72px; }
.feat-category-label {
    display: inline-block;
    background: color-mix(in srgb, var(--lc) 12%, transparent);
    border: 1px solid color-mix(in srgb, var(--lc) 30%, transparent);
    color: var(--lc);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    padding: 5px 16px;
    border-radius: 50px;
    margin-bottom: 28px;
}
.feat-category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}
.feat-detail-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    transition: all 0.3s;
}
.feat-detail-card:hover { border-color: rgba(108,58,237,0.3); transform: translateY(-3px); }
.fdc-icon { font-size: 1.8rem; margin-bottom: 12px; }
.feat-detail-card h3 { color: var(--text); margin-bottom: 10px; font-size: 1rem; }
.feat-detail-card p { color: var(--text-muted); font-size: 0.87rem; line-height: 1.7; }

/* ── How It Works Detailed ──────────────────────────── */
.hiw-detailed { padding: 80px 0; }
.hiw-detail-step {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 32px;
    align-items: start;
    max-width: 760px;
    margin: 0 auto 56px;
    padding-bottom: 56px;
    border-bottom: 1px solid var(--border);
}
.hiw-detail-step:last-of-type { border-bottom: none; }
.hiw-detail-step-reverse { direction: rtl; }
.hiw-detail-step-reverse .hiw-ds-content { direction: ltr; }
.hiw-ds-num {
    font-size: 5rem;
    font-weight: 900;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    opacity: 0.4;
    min-width: 80px;
    text-align: center;
}
.hiw-ds-cat {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-light);
    margin-bottom: 8px;
}
.hiw-ds-content h3 { margin-bottom: 12px; font-size: 1.25rem; }
.hiw-ds-content p { color: var(--text-muted); font-size: 0.92rem; line-height: 1.75; margin-bottom: 16px; }
.hiw-ds-list { list-style: none; display: flex; flex-direction: column; gap: 6px; }
.hiw-ds-list li { color: var(--text-muted); font-size: 0.87rem; }
.hiw-screens-full { margin-top: 56px; }

@media (max-width: 640px) {
    .hiw-detail-step { grid-template-columns: 1fr; gap: 16px; }
    .hiw-detail-step-reverse { direction: ltr; }
    .hiw-ds-num { font-size: 3rem; text-align: left; }
}

/* ── FAQ Full Page ───────────────────────────────────── */
.faq-full-page { padding: 60px 0 100px; }
.faq-full-section { max-width: 760px; margin: 0 auto 56px; }
.faq-section-title { font-size: 1.15rem; font-weight: 700; margin-bottom: 20px; color: var(--text); }
.faq-contact-box {
    max-width: 560px;
    margin: 56px auto 0;
    text-align: center;
    background: var(--bg-card);
    border: 1px solid rgba(108,58,237,0.2);
    border-radius: var(--radius-lg);
    padding: 40px;
}
.faq-contact-box h3 { margin-bottom: 10px; }
.faq-contact-box p { color: var(--text-muted); font-size: 0.92rem; margin-bottom: 20px; }

/* ── Subscribe Callout (Pricing page) ───────────────── */
.subscribe-callout {
    display: flex;
    gap: 24px;
    align-items: center;
    background: rgba(108,58,237,0.07);
    border: 1px solid rgba(108,58,237,0.2);
    border-radius: var(--radius-lg);
    padding: 28px 32px;
    max-width: 860px;
    margin: 0 auto 48px;
    flex-wrap: wrap;
}
.sc-icon { font-size: 2.4rem; flex-shrink: 0; }
.sc-text { flex: 1; }
.sc-text h3 { margin-bottom: 6px; }
.sc-text p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.6; }
.sc-btn { flex-shrink: 0; }
@media (max-width: 620px) {
    .subscribe-callout { flex-direction: column; text-align: center; }
    .sc-btn { width: 100%; justify-content: center; }
}

/* ══════════════════════════════════════════════════════ */
/*  About Page Styles                                    */
/* ══════════════════════════════════════════════════════ */

/* ── Mission Section ────────────────────────────────── */
.about-mission { padding: 80px 0; }
.about-mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}
.am-text h2 { margin-bottom: 20px; }
.am-text p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.8; margin-bottom: 16px; }
.am-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.am-stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    transition: all 0.3s;
}
.am-stat-card:hover { border-color: rgba(108,58,237,0.3); transform: translateY(-3px); }
.am-stat-icon { font-size: 1.8rem; margin-bottom: 10px; }
.am-stat-card h3 { font-size: 1rem; margin-bottom: 8px; }
.am-stat-card p { color: var(--text-muted); font-size: 0.85rem; line-height: 1.65; }

@media (max-width: 860px) {
    .about-mission-grid { grid-template-columns: 1fr; }
}
@media (max-width: 500px) {
    .am-stats { grid-template-columns: 1fr; }
}

/* ── Values Section ─────────────────────────────────── */
.about-values {
    position: relative;
    padding: 80px 0;
}
.about-values-bg {
    position: absolute;
    inset: 0;
    background: var(--surface);
    clip-path: polygon(0 5%, 100% 0%, 100% 95%, 0% 100%);
}
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    position: relative;
    z-index: 1;
}
.value-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
}
.value-card:hover { border-color: rgba(108,58,237,0.3); transform: translateY(-4px); }
.value-num {
    font-size: 4rem;
    font-weight: 900;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.15;
    position: absolute;
    top: 8px;
    right: 16px;
    line-height: 1;
}
.value-card h3 { margin-bottom: 12px; font-size: 1.1rem; }
.value-card p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.72; }

/* ── Product Showcase ───────────────────────────────── */
.about-product { padding: 80px 0; }
.product-showcase {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}
.product-card-main, .product-card-coming {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    position: relative;
}
.product-card-main {
    border-color: var(--primary);
    box-shadow: 0 0 0 1px var(--primary), 0 12px 40px rgba(108,58,237,0.2);
}
.product-card-coming { opacity: 0.65; }
.pc-badge {
    display: inline-block;
    background: var(--gradient);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 50px;
    margin-bottom: 20px;
}
.coming-badge {
    background: var(--bg-card-hover);
    color: var(--text-dim);
    border: 1px solid var(--border);
}
.pc-icon {
    font-size: 3rem;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
    display: block;
}
.pc-icon-dim {
    background: none;
    -webkit-text-fill-color: var(--text-dim);
    color: var(--text-dim);
}
.product-card-main h3, .product-card-coming h3 { font-size: 1.4rem; margin-bottom: 12px; }
.product-card-main p, .product-card-coming p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; margin-bottom: 24px; }
.pc-links { display: flex; gap: 12px; flex-wrap: wrap; }

@media (max-width: 720px) {
    .product-showcase { grid-template-columns: 1fr; }
}

/* ── About Contact ──────────────────────────────────── */
.about-contact { padding: 80px 0 100px; }
.about-contact-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    max-width: 900px;
    margin: 0 auto;
}
.ac-text h2 { margin-bottom: 12px; }
.ac-text p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.75; }
.ac-info {
    display: flex;
    flex-direction: column;
    gap: 0;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.ac-info-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 20px;
    border-bottom: 1px solid var(--border);
    gap: 16px;
}
.ac-info-item:last-child { border-bottom: none; }
.ac-info-label { font-size: 0.78rem; color: var(--text-dim); font-weight: 600; text-transform: uppercase; letter-spacing: 0.8px; flex-shrink: 0; }
.ac-info-value { color: var(--text-muted); font-size: 0.88rem; text-align: right; }
.ac-info-value a { color: var(--primary-light); }

@media (max-width: 720px) {
    .about-contact-inner { grid-template-columns: 1fr; }
}
