/* ═══════════════════════════════════════════════
   MizaDigital — Premium Streaming Platform
   Design System & Core Styles
   Dark Neon Theme (Black, Blue, Purple)
   ═══════════════════════════════════════════════ */

/* ── CSS Custom Properties ───────────────────── */
:root {
    /* Primary Colors */
    --color-bg: #050510;
    --color-bg-secondary: #0a0a1a;
    --color-bg-card: #0f0f24;
    --color-bg-card-hover: #141432;
    --color-surface: rgba(15, 15, 36, 0.8);

    /* Neon Accent Colors */
    --color-primary: #6c5ce7;
    --color-primary-light: #a29bfe;
    --color-primary-dark: #5a4bd1;
    --color-secondary: #00d2ff;
    --color-secondary-dark: #00b4d8;
    --color-accent: #e040fb;
    --color-accent-dark: #c51feb;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #6c5ce7 0%, #00d2ff 100%);
    --gradient-hero: linear-gradient(135deg, #6c5ce7 0%, #e040fb 50%, #00d2ff 100%);
    --gradient-card: linear-gradient(145deg, rgba(108, 92, 231, 0.1) 0%, rgba(0, 210, 255, 0.05) 100%);
    --gradient-glow: linear-gradient(135deg, rgba(108, 92, 231, 0.4) 0%, rgba(0, 210, 255, 0.4) 100%);

    /* Text Colors */
    --color-text: #e8e8f0;
    --color-text-secondary: #9d9db8;
    --color-text-muted: #65657a;
    --color-text-heading: #ffffff;

    /* Status Colors */
    --color-success: #00e676;
    --color-whatsapp: #25D366;
    --color-warning: #ffc107;
    --color-error: #ff5252;

    /* Border & Shadow */
    --border-color: rgba(108, 92, 231, 0.15);
    --border-color-hover: rgba(108, 92, 231, 0.35);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 30px rgba(108, 92, 231, 0.3);
    --shadow-glow-blue: 0 0 30px rgba(0, 210, 255, 0.3);

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-arabic: 'Cairo', 'Inter', sans-serif;

    /* Spacing */
    --section-padding: 100px 0;
    --container-max: 1200px;
    --border-radius: 12px;
    --border-radius-lg: 20px;
    --border-radius-sm: 8px;

    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Reset & Base ────────────────────────────── */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-primary);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.7;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Arabic Font Override */
[data-lang="ar"] body,
[dir="rtl"] body {
    font-family: var(--font-arabic);
}

[dir="rtl"] {
    direction: rtl;
    text-align: right;
}

::selection {
    background: var(--color-primary);
    color: #fff;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: var(--color-primary-light);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--color-secondary);
}

/* ── Container ───────────────────────────────── */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
}

/* ── Floating Particles Background ───────────── */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--color-primary);
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat 8s infinite;
}

@keyframes particleFloat {
    0% {
        opacity: 0;
        transform: translateY(100vh) scale(0);
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.2;
    }
    100% {
        opacity: 0;
        transform: translateY(-10vh) scale(1);
    }
}

/* ── Navigation ──────────────────────────────── */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(5, 5, 16, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    padding: 10px 0;
    box-shadow: var(--shadow-md);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-icon {
    font-size: 28px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 10px rgba(108, 92, 231, 0.5));
}

.logo-text {
    font-size: 22px;
    font-weight: 800;
    color: var(--color-text-heading);
    letter-spacing: -0.5px;
}

.logo-highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Nav Links */
.nav-links {
    display: flex;
    list-style: none;
    gap: 8px;
}

.nav-links a {
    color: var(--color-text-secondary);
    font-weight: 500;
    font-size: 14px;
    padding: 8px 16px;
    border-radius: var(--border-radius-sm);
    transition: var(--transition);
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--color-text-heading);
    background: rgba(108, 92, 231, 0.1);
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

/* Nav Actions */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Language Switcher */
.lang-switcher {
    display: flex;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-sm);
    padding: 2px;
    border: 1px solid var(--border-color);
}

.lang-btn {
    background: none;
    border: none;
    color: var(--color-text-muted);
    font-size: 12px;
    font-weight: 600;
    padding: 6px 10px;
    cursor: pointer;
    border-radius: 6px;
    transition: var(--transition);
    font-family: inherit;
}

.lang-btn:hover {
    color: var(--color-text);
}

.lang-btn.active {
    background: var(--color-primary);
    color: #fff;
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--color-text);
    transition: var(--transition);
    border-radius: 2px;
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ── Buttons ─────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: inherit;
    font-weight: 600;
    font-size: 15px;
    padding: 12px 28px;
    border-radius: var(--border-radius);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 13px;
    border-radius: var(--border-radius-sm);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 16px;
}

.btn-full {
    width: 100%;
}

.btn-primary {
    background: var(--gradient-primary);
    color: #fff;
    box-shadow: 0 4px 15px rgba(108, 92, 231, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(108, 92, 231, 0.5);
    color: #fff;
}

.btn-outline {
    background: transparent;
    color: var(--color-text);
    border: 1px solid var(--border-color-hover);
}

.btn-outline:hover {
    background: rgba(108, 92, 231, 0.1);
    border-color: var(--color-primary);
    color: var(--color-text-heading);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background: var(--color-whatsapp);
    color: #fff;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    background: #20bd5a;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
    color: #fff;
}

.glow-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transition: 0.5s;
}

.glow-btn:hover::before {
    left: 100%;
}

.btn-icon {
    font-size: 18px;
}

/* ── Hero Section ────────────────────────────── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 120px 0 80px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-gradient {
    position: absolute;
    top: -30%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(108, 92, 231, 0.15) 0%, rgba(0, 210, 255, 0.05) 40%, transparent 70%);
    animation: heroGlow 8s ease-in-out infinite;
}

@keyframes heroGlow {
    0%, 100% { opacity: 0.6; transform: translateX(-50%) scale(1); }
    50% { opacity: 1; transform: translateX(-50%) scale(1.1); }
}

.hero-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(108, 92, 231, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(108, 92, 231, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    padding: 8px 24px;
    background: rgba(108, 92, 231, 0.15);
    border: 1px solid rgba(108, 92, 231, 0.3);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-primary-light);
    margin-bottom: 28px;
    animation: fadeInDown 0.8s ease;
}

.hero-title {
    font-size: clamp(36px, 6vw, 68px);
    font-weight: 900;
    line-height: 1.1;
    color: var(--color-text-heading);
    margin-bottom: 24px;
    letter-spacing: -1px;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-title span {
    display: block;
}

.gradient-text {
    background: var(--gradient-hero);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradientShift 4s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-subtitle {
    font-size: 18px;
    color: var(--color-text-secondary);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.8;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.6s both;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-top: 60px;
    animation: fadeInUp 0.8s ease 0.8s both;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 36px;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline;
}

.stat-suffix {
    font-size: 24px;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    display: block;
    font-size: 13px;
    color: var(--color-text-muted);
    margin-top: 4px;
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border-color);
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 24px;
    height: 24px;
    border-right: 2px solid var(--color-text-muted);
    border-bottom: 2px solid var(--color-text-muted);
    transform: rotate(45deg);
    opacity: 0.5;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* ── Section Common ──────────────────────────── */
.section {
    padding: var(--section-padding);
    position: relative;
    z-index: 1;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.section-badge {
    display: inline-block;
    padding: 6px 20px;
    background: rgba(108, 92, 231, 0.1);
    border: 1px solid rgba(108, 92, 231, 0.2);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-primary-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    color: var(--color-text-heading);
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 16px;
    color: var(--color-text-secondary);
    line-height: 1.7;
}

/* ── Features Section ────────────────────────── */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    background: var(--color-bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 36px 28px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-color-hover);
    box-shadow: var(--shadow-glow);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    position: relative;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 20px;
}

.icon-glow {
    position: absolute;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-primary);
    opacity: 0.15;
    filter: blur(15px);
}

.feature-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-text-heading);
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 14px;
    color: var(--color-text-secondary);
    line-height: 1.7;
}

/* ── Pricing Section ─────────────────────────── */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
}

.pricing-card {
    background: var(--color-bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 36px 28px;
    transition: var(--transition);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-5px);
    border-color: var(--border-color-hover);
}

.pricing-card.popular {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-glow);
    transform: scale(1.03);
    z-index: 2;
    background: linear-gradient(145deg, rgba(108, 92, 231, 0.08) 0%, var(--color-bg-card) 100%);
}

.pricing-card.popular:hover {
    transform: scale(1.03) translateY(-5px);
}

.popular-badge,
.best-value-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    white-space: nowrap;
}

.popular-badge {
    background: var(--gradient-primary);
    color: #fff;
    box-shadow: 0 4px 15px rgba(108, 92, 231, 0.4);
}

.best-value-badge {
    background: linear-gradient(135deg, #e040fb, #00d2ff);
    color: #fff;
    box-shadow: 0 4px 15px rgba(224, 64, 251, 0.3);
}

.pricing-header {
    text-align: center;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 24px;
}

.plan-icon {
    font-size: 36px;
    margin-bottom: 8px;
}

.pricing-duration {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: var(--color-text-heading);
    margin-bottom: 4px;
}

.pricing-period {
    display: block;
    font-size: 13px;
    color: var(--color-text-muted);
    margin-bottom: 12px;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 6px;
}

.price-amount {
    font-size: 52px;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.price-currency {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-text-secondary);
}

.pricing-per {
    font-size: 13px;
    color: var(--color-text-muted);
}

.pricing-save {
    display: inline-block;
    margin-top: 8px;
    padding: 4px 14px;
    background: rgba(0, 230, 118, 0.1);
    color: var(--color-success);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
}

.pricing-features {
    list-style: none;
    margin-bottom: 28px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 14px;
    color: var(--color-text-secondary);
}

.pricing-features li.disabled {
    opacity: 0.4;
}

.check {
    color: var(--color-success);
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
}

.cross {
    color: var(--color-text-muted);
    font-size: 14px;
    flex-shrink: 0;
}

/* ── Testimonials Section ────────────────────── */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: var(--color-bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 32px;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-3px);
    border-color: var(--border-color-hover);
}

.testimonial-stars {
    color: #ffc107;
    font-size: 18px;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 15px;
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    color: #fff;
    flex-shrink: 0;
}

.author-name {
    display: block;
    font-weight: 600;
    color: var(--color-text-heading);
    font-size: 14px;
}

.author-location {
    font-size: 12px;
    color: var(--color-text-muted);
}

/* ── FAQ Section ─────────────────────────────── */
.faq-list {
    max-width: 720px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    margin-bottom: 12px;
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--border-color-hover);
}

.faq-item.active {
    border-color: var(--color-primary);
    box-shadow: 0 0 20px rgba(108, 92, 231, 0.1);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: var(--color-bg-card);
    border: none;
    color: var(--color-text-heading);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    transition: var(--transition);
}

[dir="rtl"] .faq-question {
    text-align: right;
}

.faq-question::after {
    content: '+';
    font-size: 22px;
    font-weight: 300;
    color: var(--color-primary);
    transition: var(--transition);
    flex-shrink: 0;
    margin-left: 16px;
}

[dir="rtl"] .faq-question::after {
    margin-left: 0;
    margin-right: 16px;
}

.faq-item.active .faq-question::after {
    content: '−';
    color: var(--color-secondary);
}

.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 24px 20px;
    font-size: 14px;
    color: var(--color-text-secondary);
    line-height: 1.8;
}

/* ── CTA Section ─────────────────────────────── */
.cta-section {
    padding: 60px 0 100px;
}

.cta-box {
    background: var(--color-bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 60px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-glow {
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(108, 92, 231, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.cta-box h2 {
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 800;
    color: var(--color-text-heading);
    margin-bottom: 12px;
    position: relative;
}

.cta-box p {
    font-size: 16px;
    color: var(--color-text-secondary);
    margin-bottom: 32px;
    position: relative;
}

.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
}

/* ── Page Header ─────────────────────────────── */
.page-header {
    padding: 140px 0 60px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 400px;
    background: radial-gradient(circle, rgba(108, 92, 231, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.page-title {
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 900;
    color: var(--color-text-heading);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.page-subtitle {
    font-size: 17px;
    color: var(--color-text-secondary);
    max-width: 500px;
    margin: 0 auto;
}

/* ── Steps Section (How It Works) ────────────── */
.steps-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.steps-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--color-primary), var(--color-secondary));
    opacity: 0.2;
    transform: translateX(-50%);
}

.step-card {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
    align-items: center;
    position: relative;
}

.step-card.reverse {
    flex-direction: row-reverse;
    text-align: right;
}

[dir="rtl"] .step-card.reverse {
    text-align: left;
}

.step-number {
    font-size: 72px;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.3;
    flex-shrink: 0;
    line-height: 1;
    min-width: 100px;
    text-align: center;
}

.step-content {
    background: var(--color-bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 32px;
    flex: 1;
    transition: var(--transition);
}

.step-content:hover {
    border-color: var(--border-color-hover);
    box-shadow: var(--shadow-glow);
}

.step-icon {
    font-size: 36px;
    margin-bottom: 16px;
}

.step-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--color-text-heading);
    margin-bottom: 10px;
}

.step-content p {
    font-size: 15px;
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin-bottom: 16px;
}

.step-link {
    color: var(--color-primary-light);
    font-weight: 600;
    font-size: 14px;
}

.step-link:hover {
    color: var(--color-secondary);
}

.step-highlight {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(0, 230, 118, 0.1);
    color: var(--color-success);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
}

.step-payment-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.step-card.reverse .step-payment-badges {
    justify-content: flex-end;
}

.step-payment-badges span {
    padding: 4px 14px;
    background: rgba(108, 92, 231, 0.1);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    font-size: 12px;
    color: var(--color-text-secondary);
    font-weight: 600;
}

/* ── Devices Grid ────────────────────────────── */
.devices-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

.device-card {
    background: var(--color-bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 24px 16px;
    text-align: center;
    transition: var(--transition);
}

.device-card:hover {
    transform: translateY(-3px);
    border-color: var(--border-color-hover);
    box-shadow: var(--shadow-glow);
}

.device-icon {
    font-size: 32px;
    display: block;
    margin-bottom: 10px;
}

.device-card h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-text-heading);
    margin-bottom: 4px;
}

.device-card p {
    font-size: 12px;
    color: var(--color-text-muted);
}

/* ── Contact Section ─────────────────────────── */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: start;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card {
    background: var(--color-bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 28px;
    transition: var(--transition);
}

.contact-card:hover {
    border-color: var(--border-color-hover);
}

.whatsapp-card {
    border-color: rgba(37, 211, 102, 0.2);
    background: linear-gradient(145deg, rgba(37, 211, 102, 0.05) 0%, var(--color-bg-card) 100%);
}

.contact-card-icon {
    font-size: 32px;
    margin-bottom: 12px;
    color: var(--color-whatsapp);
}

.contact-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-text-heading);
    margin-bottom: 8px;
}

.contact-card p {
    font-size: 14px;
    color: var(--color-text-secondary);
    margin-bottom: 16px;
}

.contact-email-link {
    display: block;
    color: var(--color-primary-light);
    font-weight: 600;
    font-size: 15px;
    margin-bottom: 8px;
}

.contact-response {
    font-size: 12px;
    color: var(--color-success);
    font-weight: 600;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: var(--color-text-secondary);
}

.hours-badge {
    padding: 4px 12px;
    background: rgba(0, 230, 118, 0.1);
    color: var(--color-success);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--color-bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 36px;
}

.contact-form-wrapper h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--color-text-heading);
    margin-bottom: 24px;
}

.contact-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 13px;
    font-weight: 600;
    color: var(--color-text);
}

.form-group input,
.form-group select,
.form-group textarea {
    background: var(--color-bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    padding: 12px 16px;
    color: var(--color-text);
    font-family: inherit;
    font-size: 14px;
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(108, 92, 231, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--color-text-muted);
}

.form-group select {
    cursor: pointer;
    appearance: auto;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.contact-form .btn {
    grid-column: 1 / -1;
    margin-top: 8px;
}

.form-success {
    text-align: center;
    padding: 40px;
}

.success-icon {
    font-size: 48px;
    display: block;
    margin-bottom: 16px;
}

.form-success h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-success);
    margin-bottom: 8px;
}

.form-success p {
    color: var(--color-text-secondary);
}

/* ── Download Section ────────────────────────── */
.download-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 80px;
}

.download-card {
    background: var(--color-bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    transition: var(--transition);
}

.download-card:hover {
    border-color: var(--border-color-hover);
    transform: translateY(-3px);
}

.download-card-header {
    padding: 24px;
    border-bottom: 1px solid var(--border-color);
    text-align: center;
}

.download-icon {
    font-size: 36px;
    display: block;
    margin-bottom: 8px;
}

.download-card-header h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-text-heading);
    margin-bottom: 4px;
}

.download-tag {
    font-size: 12px;
    color: var(--color-text-muted);
}

.download-apps {
    padding: 20px;
}

.app-item {
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
}

.app-item:last-child {
    border-bottom: none;
}

.app-name {
    display: block;
    font-weight: 700;
    color: var(--color-text-heading);
    font-size: 14px;
    margin-bottom: 6px;
}

.app-desc {
    font-size: 13px;
    color: var(--color-text-secondary);
    margin-bottom: 8px;
    line-height: 1.5;
}

.app-install {
    font-size: 12px;
    color: var(--color-text-muted);
    font-style: italic;
}

/* Downloader Code Section */
.downloader-section {
    max-width: 700px;
    margin: 0 auto;
}

.downloader-box {
    background: var(--color-bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    padding: 36px;
}

.code-steps {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 28px;
}

.code-step {
    display: flex;
    align-items: center;
    gap: 14px;
}

.code-step-num {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 50%;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

.code-step p {
    font-size: 14px;
    color: var(--color-text-secondary);
}

.code-display {
    text-align: center;
    padding: 24px;
    background: var(--color-bg-secondary);
    border-radius: var(--border-radius);
    border: 1px dashed var(--border-color-hover);
}

.code-label {
    display: block;
    font-size: 13px;
    color: var(--color-text-muted);
    margin-bottom: 12px;
}

.code-value {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.code-value span {
    font-size: 36px;
    font-weight: 900;
    letter-spacing: 8px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.copy-btn {
    padding: 8px 20px;
    background: rgba(108, 92, 231, 0.2);
    border: 1px solid var(--color-primary);
    color: var(--color-primary-light);
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    font-weight: 600;
    font-size: 13px;
    font-family: inherit;
    transition: var(--transition);
}

.copy-btn:hover {
    background: var(--color-primary);
    color: #fff;
}

.code-note {
    margin-top: 12px;
    font-size: 12px;
    color: var(--color-text-muted);
}

/* ── Payment Section ─────────────────────────── */
.payment-section {
    text-align: center;
    margin-top: 60px;
    margin-bottom: 40px;
}

.payment-section h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--color-text-heading);
    margin-bottom: 28px;
}

.payment-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.payment-card {
    background: var(--color-bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 24px;
    text-align: center;
    transition: var(--transition);
}

.payment-card:hover {
    border-color: var(--border-color-hover);
    transform: translateY(-2px);
}

.payment-icon {
    font-size: 32px;
    display: block;
    margin-bottom: 10px;
}

.payment-name {
    display: block;
    font-weight: 700;
    color: var(--color-text-heading);
    font-size: 15px;
    margin-bottom: 4px;
}

.payment-desc {
    font-size: 12px;
    color: var(--color-text-muted);
}

.payment-methods {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.payment-badge {
    padding: 8px 16px;
    background: rgba(108, 92, 231, 0.1);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    font-size: 13px;
    font-weight: 600;
    color: var(--color-text-secondary);
    text-align: center;
}

/* Guarantee Box */
.guarantee-box {
    text-align: center;
    background: var(--color-bg-card);
    border: 1px solid rgba(0, 230, 118, 0.15);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    max-width: 600px;
    margin: 0 auto;
}

.guarantee-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.guarantee-box h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--color-text-heading);
    margin-bottom: 10px;
}

.guarantee-box p {
    font-size: 15px;
    color: var(--color-text-secondary);
}

/* ── Footer ──────────────────────────────────── */
.footer {
    background: var(--color-bg-secondary);
    border-top: 1px solid var(--border-color);
    padding: 60px 0 30px;
    position: relative;
    z-index: 1;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand p {
    font-size: 14px;
    color: var(--color-text-secondary);
    margin-top: 16px;
    line-height: 1.7;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    font-size: 18px;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    transform: translateY(-2px);
}

.footer-links h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--color-text-heading);
    margin-bottom: 16px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--color-text-secondary);
    font-size: 14px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--color-primary-light);
    padding-left: 5px;
}

[dir="rtl"] .footer-links a:hover {
    padding-left: 0;
    padding-right: 5px;
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 24px;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: var(--color-text-muted);
}

.footer-disclaimer {
    margin-top: 8px;
    font-size: 11px;
    color: var(--color-text-muted);
    opacity: 0.7;
}

/* ── WhatsApp Float Button ───────────────────── */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: var(--color-whatsapp);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    z-index: 999;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    animation: whatsappPulse 2s infinite;
}

[dir="rtl"] .whatsapp-float {
    right: auto;
    left: 24px;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
    color: #fff;
}

@keyframes whatsappPulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ── Admin Page ──────────────────────────────── */
.admin-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 32px;
}

.admin-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.admin-stat-card {
    background: var(--color-bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 24px;
}

.admin-stat-card h4 {
    font-size: 13px;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.admin-stat-card .stat-value {
    font-size: 32px;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.admin-table-wrapper {
    background: var(--color-bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
}

.admin-table-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border-color);
}

.admin-table-header h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-text-heading);
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
}

.admin-table th {
    padding: 14px 20px;
    text-align: left;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-text-muted);
    border-bottom: 1px solid var(--border-color);
    font-weight: 600;
}

[dir="rtl"] .admin-table th {
    text-align: right;
}

.admin-table td {
    padding: 14px 20px;
    font-size: 14px;
    color: var(--color-text-secondary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
}

.admin-table tr:hover td {
    background: rgba(108, 92, 231, 0.03);
}

.status-badge {
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
}

.status-active {
    background: rgba(0, 230, 118, 0.1);
    color: var(--color-success);
}

.status-expired {
    background: rgba(255, 82, 82, 0.1);
    color: var(--color-error);
}

.status-pending {
    background: rgba(255, 193, 7, 0.1);
    color: var(--color-warning);
}

/* ── Responsive Design ───────────────────────── */

/* Prevent horizontal overflow on all sizes */
html, body {
    max-width: 100%;
    overflow-x: hidden;
}

/* Tablet: 769px – 1024px */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-card.popular {
        grid-column: 1 / -1;
        max-width: 420px;
        margin: 0 auto;
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid .testimonial-card:last-child {
        grid-column: 1 / -1;
        max-width: 420px;
        margin: 0 auto;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .devices-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .download-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .payment-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .admin-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-gradient {
        width: 500px;
        height: 500px;
    }
}

/* Mobile: up to 768px */
@media (max-width: 768px) {
    :root {
        --section-padding: 60px 0;
    }

    /* Mobile Navigation — hide desktop links, show hamburger */
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        height: 100dvh;
        background: rgba(5, 5, 16, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 80px 30px 40px;
        gap: 4px;
        transition: var(--transition-slow);
        border-left: 1px solid var(--border-color);
        z-index: 999;
    }

    [dir="rtl"] .nav-links {
        right: auto;
        left: -100%;
        border-left: none;
        border-right: 1px solid var(--border-color);
    }

    .nav-links.active {
        right: 0;
    }

    [dir="rtl"] .nav-links.active {
        right: auto;
        left: 0;
    }

    .nav-links a {
        padding: 12px 16px;
        font-size: 16px;
        width: 100%;
    }

    .mobile-toggle {
        display: flex;
    }

    /* Hide the "Get Started" button in nav on mobile */
    .nav-actions .btn {
        display: none;
    }

    /* Keep lang switcher visible */
    .nav-actions .lang-switcher {
        display: flex;
    }

    /* Ensure nav container doesn't overflow */
    .nav-container {
        gap: 10px;
    }

    /* Hero */
    .hero {
        padding: 100px 0 50px;
        min-height: auto;
    }

    .hero-content {
        padding: 0 4px;
    }

    .hero-badge {
        font-size: 12px;
        padding: 6px 16px;
        margin-bottom: 20px;
    }

    .hero-title {
        font-size: clamp(28px, 8vw, 44px);
    }

    .hero-subtitle {
        font-size: 14px;
        margin-bottom: 28px;
        line-height: 1.7;
        padding: 0 8px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .hero-actions .btn {
        width: 100%;
        max-width: 300px;
    }

    .hero-stats {
        gap: 24px;
        flex-wrap: wrap;
        justify-content: center;
        margin-top: 40px;
    }

    .stat-number {
        font-size: 26px;
    }

    .stat-suffix {
        font-size: 18px;
    }

    .stat-label {
        font-size: 11px;
    }

    .stat-divider {
        display: none;
    }

    .hero-scroll-indicator {
        display: none;
    }

    /* Section headers */
    .section-header {
        margin-bottom: 40px;
    }

    .section-badge {
        font-size: 11px;
        padding: 5px 14px;
    }

    .section-subtitle {
        font-size: 14px;
    }

    /* Features */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .feature-card {
        padding: 24px 20px;
    }

    /* Pricing */
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
        margin: 0 auto;
    }

    .pricing-card {
        padding: 28px 20px;
    }

    .pricing-card.popular {
        max-width: none;
        transform: none;
        grid-column: auto;
    }

    .pricing-card.popular:hover {
        transform: translateY(-5px);
    }

    .price-amount {
        font-size: 44px;
    }

    /* Testimonials */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .testimonials-grid .testimonial-card:last-child {
        max-width: none;
        grid-column: auto;
    }

    .testimonial-card {
        padding: 24px;
    }

    /* FAQ */
    .faq-question {
        font-size: 14px;
        padding: 16px 18px;
    }

    .faq-answer p {
        padding: 0 18px 16px;
        font-size: 13px;
    }

    /* Steps (How It Works) */
    .steps-timeline::before {
        display: none;
    }

    .step-card,
    .step-card.reverse {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }

    [dir="rtl"] .step-card.reverse {
        text-align: center;
    }

    .step-card.reverse .step-payment-badges {
        justify-content: center;
    }

    .step-number {
        font-size: 48px;
        min-width: auto;
    }

    .step-content {
        padding: 24px;
    }

    .step-content h3 {
        font-size: 18px;
    }

    .step-content p {
        font-size: 14px;
    }

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

    .device-card {
        padding: 16px 12px;
    }

    .device-icon {
        font-size: 26px;
    }

    /* Download */
    .download-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

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

    .contact-form {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .contact-form-wrapper {
        padding: 24px;
    }

    .contact-card {
        padding: 20px;
    }

    /* Page Header */
    .page-header {
        padding: 110px 0 40px;
    }

    .page-title {
        font-size: clamp(26px, 7vw, 40px);
    }

    .page-subtitle {
        font-size: 14px;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footer {
        padding: 40px 0 24px;
    }

    /* Payment */
    .payment-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .payment-section {
        margin-top: 40px;
    }

    .payment-card {
        padding: 16px;
    }

    /* Guarantee */
    .guarantee-box {
        padding: 28px 20px;
    }

    /* Admin */
    .admin-stats {
        grid-template-columns: 1fr 1fr;
    }

    .admin-table-wrapper {
        overflow-x: auto;
    }

    .admin-table-header {
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
    }

    /* CTA */
    .cta-box {
        padding: 36px 20px;
    }

    .cta-box h2 {
        font-size: clamp(20px, 5vw, 28px);
    }

    .cta-box p {
        font-size: 14px;
    }

    .cta-actions {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .cta-actions .btn {
        width: 100%;
        max-width: 300px;
    }

    /* Downloader section */
    .downloader-box {
        padding: 24px;
    }

    .code-value {
        flex-direction: column;
        gap: 10px;
    }

    .code-value span {
        font-size: 28px;
        letter-spacing: 4px;
    }
}

/* Small phones: up to 480px */
@media (max-width: 480px) {
    .container {
        padding: 0 14px;
    }

    .hero-title {
        font-size: 28px;
        letter-spacing: -0.5px;
    }

    .hero-badge {
        font-size: 11px;
        padding: 5px 14px;
    }

    .price-amount {
        font-size: 38px;
    }

    .page-header {
        padding: 100px 0 30px;
    }

    /* Hide lang switcher in navbar on very small screens */
    .nav-actions .lang-switcher {
        display: none;
    }

    .hero-stats {
        gap: 16px;
    }

    .stat-number {
        font-size: 22px;
    }

    .stat-suffix {
        font-size: 16px;
    }

    .devices-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .payment-grid {
        grid-template-columns: 1fr;
    }

    .admin-stats {
        grid-template-columns: 1fr;
    }

    .logo-text {
        font-size: 18px;
    }

    .logo-icon {
        font-size: 22px;
    }

    .section-title {
        font-size: clamp(22px, 5vw, 32px);
    }

    .feature-card {
        padding: 20px 16px;
    }

    .pricing-card {
        padding: 24px 16px;
    }

    .testimonial-card {
        padding: 20px;
    }

    .step-content {
        padding: 20px;
    }
}
