/* ============================================
   IPTV Smarters Pro - Main Styles
   ============================================ */

/* CSS Variables */
:root {
    /* Colors - Purple Theme with Dark Background */
    --primary: #6B5AED;
    --primary-dark: #4E37E5;
    --primary-light: #8B7FF0;
    --secondary: #7C6BF0;
    --accent: #1e1e38;
    --dark: #0d0d1a;
    --dark-lighter: #161628;
    --text: #e8e8f0;
    --text-muted: #9ca3b4;
    --text-dark: #c0c4d0;
    --bg-dark: #0f0f1e;
    --bg-card: #1a1a30;
    --bg-card-hover: #222240;
    --border: rgba(107, 90, 237, 0.2);
    --success: #10b981;
    --warning: #f59e0b;

    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;

    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 2rem;
    --font-size-4xl: 2.5rem;
    --font-size-5xl: 3rem;

    /* Border Radius */
    --radius-sm: 0.25rem;
    --radius-md: 0.5rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.3);
    --shadow-glow: 0 0 40px rgba(107, 90, 237, 0.3);

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 350ms ease;

    /* Container */
    --container-max: 1200px;
    --container-padding: 1.5rem;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    line-height: 1.6;
    color: var(--text);
    background: var(--bg-dark);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
}

ul {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* Container */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* ============================================
   Cookie Consent Banner
   ============================================ */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark-lighter);
    border-top: 1px solid var(--border);
    padding: var(--space-lg);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform var(--transition-base);
    backdrop-filter: blur(10px);
}

.cookie-banner.active {
    transform: translateY(0);
}

.cookie-content {
    max-width: var(--container-max);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-xl);
    flex-wrap: wrap;
}

.cookie-text p {
    color: var(--text-muted);
    font-size: var(--font-size-sm);
    margin-bottom: var(--space-xs);
}

.cookie-text p:last-child {
    margin-bottom: 0;
}

.cookie-text strong {
    font-size: var(--font-size-lg);
    color: var(--text);
    display: block;
}

.cookie-text a {
    color: var(--primary);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

.cookie-buttons button {
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-md);
    font-weight: 500;
    font-size: var(--font-size-sm);
    transition: all var(--transition-fast);
}

.btn-accept {
    background: var(--primary);
    color: white;
}

.btn-accept:hover {
    background: var(--primary-dark);
}

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

.btn-reject:hover {
    border-color: var(--text-muted);
    color: var(--text);
}

.btn-customize {
    background: transparent;
    color: var(--text-muted);
}

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

/* ============================================
   Header & Navigation
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(15, 15, 30, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(107, 90, 237, 0.15);
    transition: all var(--transition-base);
}

.header.scrolled {
    background: rgba(15, 15, 30, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
    border-radius: 8px;
}

.footer-logo-img {
    height: 36px;
    border-radius: 6px;
}

.nav-menu {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}

.nav-link {
    font-size: var(--font-size-sm);
    font-weight: 500;
    color: var(--text-muted);
    transition: color var(--transition-fast);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary);
    border-radius: var(--radius-full);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: var(--space-sm);
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text);
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
}

/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-lg);
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: var(--font-size-sm);
    transition: all var(--transition-fast);
    white-space: nowrap;
}

.btn svg {
    width: 18px;
    height: 18px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    box-shadow: 0 4px 15px rgba(78, 55, 229, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(78, 55, 229, 0.5);
}

/* Hero specific button styling */
.hero .btn-primary {
    background: linear-gradient(135deg, #a78bfa, #c4b5fd);
    color: #1a0533;
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(167, 139, 250, 0.4);
}

.hero .btn-primary:hover {
    box-shadow: 0 6px 25px rgba(167, 139, 250, 0.5);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
}

.btn-lg {
    padding: var(--space-md) var(--space-xl);
    font-size: var(--font-size-base);
}

.btn-block {
    width: 100%;
}

.whatsapp-icon {
    width: 20px;
    height: 20px;
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: calc(72px + var(--space-3xl)) 0 var(--space-3xl);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: url('/images/hero-bg.jpg') center center / cover no-repeat;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 150% 80% at 10% 90%, rgba(138, 43, 226, 0.35) 0%, transparent 50%),
        radial-gradient(ellipse 120% 60% at 90% 70%, rgba(148, 0, 211, 0.25) 0%, transparent 45%),
        radial-gradient(ellipse 80% 40% at 50% 20%, rgba(75, 0, 130, 0.2) 0%, transparent 40%),
        linear-gradient(160deg, rgba(13,1,24,0.75) 0%, rgba(26,5,51,0.7) 25%, rgba(45,27,78,0.65) 50%, rgba(61,26,92,0.6) 75%, rgba(74,26,107,0.55) 100%);
}

.hero-gradient::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 100% 50% at 20% 80%, rgba(138, 43, 226, 0.15) 0%, transparent 35%),
        radial-gradient(ellipse 80% 40% at 80% 60%, rgba(148, 0, 211, 0.12) 0%, transparent 30%);
}

.hero-gradient::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 200% 100% at -20% 120%, rgba(138, 43, 226, 0.25) 0%, transparent 40%),
        radial-gradient(ellipse 150% 80% at 120% 100%, rgba(75, 0, 130, 0.2) 0%, transparent 35%);
    pointer-events: none;
}

.hero-container {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    background: rgba(255, 107, 53, 0.1);
    border: 1px solid rgba(255, 107, 53, 0.3);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-full);
    font-size: var(--font-size-sm);
    color: var(--primary);
    margin-bottom: var(--space-lg);
}

.badge-icon {
    font-size: var(--font-size-lg);
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: var(--space-lg);
    color: #FFFFFF;
}

.highlight {
    background: linear-gradient(135deg, #a78bfa, #c4b5fd);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: var(--font-size-lg);
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: var(--space-xl);
    line-height: 1.7;
}

.hero-description strong {
    color: #FFFFFF;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: var(--font-size-sm);
    color: rgba(255, 255, 255, 0.9);
}

.feature-item svg {
    width: 20px;
    height: 20px;
    color: #a78bfa;
}

/* Light outline button for hero */
.btn-outline-light {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.7);
    color: #FFFFFF;
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #FFFFFF;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
    justify-content: center;
}

.hero-features {
    justify-content: center;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--space-xl);
}

.trust-rating {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.stars {
    color: var(--warning);
    font-size: var(--font-size-lg);
    letter-spacing: 2px;
}

.trust-rating span {
    color: var(--text-muted);
    font-size: var(--font-size-sm);
}

.trust-badges {
    display: flex;
    gap: var(--space-sm);
}

.trust-badge {
    background: rgba(255, 255, 255, 0.05);
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-full);
    font-size: var(--font-size-xs);
    color: var(--text-muted);
    border: 1px solid var(--border);
}

.hero-image {
    position: relative;
}

.hero-visual {
    position: relative;
}

.hero-visual img {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-glow);
}

.hero-stats {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: var(--space-md);
    background: var(--bg-card);
    padding: var(--space-md) var(--space-xl);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-xl);
}

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

.stat-number {
    display: block;
    font-size: var(--font-size-2xl);
    font-weight: 700;
    color: var(--primary);
}

.stat-label {
    font-size: var(--font-size-xs);
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================
   Section Styles
   ============================================ */
section {
    padding: var(--space-4xl) 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--space-3xl);
}

.section-badge {
    display: inline-block;
    background: rgba(255, 107, 53, 0.1);
    color: var(--primary);
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-full);
    font-size: var(--font-size-sm);
    font-weight: 600;
    margin-bottom: var(--space-md);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: var(--space-md);
    color: var(--text);
}

.section-description {
    font-size: var(--font-size-lg);
    color: var(--text-muted);
    line-height: 1.7;
}

.section-description strong {
    color: var(--text);
}

/* ============================================
   Features Section
   ============================================ */
.features {
    background: var(--dark-lighter);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--space-lg);
}

.feature-card {
    background: var(--bg-card);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: all var(--transition-base);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2), rgba(247, 147, 30, 0.1));
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-lg);
}

.feature-icon svg {
    width: 28px;
    height: 28px;
    color: var(--primary);
}

.feature-card h3 {
    font-size: var(--font-size-xl);
    font-weight: 700;
    margin-bottom: var(--space-sm);
    color: var(--text);
}

.feature-card p {
    color: var(--text-muted);
    line-height: 1.6;
}

/* ============================================
   Pricing Section
   ============================================ */
.pricing {
    background: var(--bg-dark);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-lg);
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-card {
    position: relative;
    background: var(--bg-card);
    padding: var(--space-xl) var(--space-xl) var(--space-lg);
    border-radius: var(--radius-xl);
    border: 2px solid var(--border);
    transition: all var(--transition-base);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(78, 55, 229, 0.15);
    border-color: rgba(78, 55, 229, 0.3);
}

.pricing-popular {
    background: linear-gradient(135deg, #4E37E5 0%, #6C52F5 100%);
    border-color: #4E37E5;
    box-shadow: 0 10px 40px rgba(78, 55, 229, 0.35);
    transform: scale(1.03);
    padding-top: calc(var(--space-xl) + 12px);
}

.pricing-best-value {
    padding-top: calc(var(--space-xl) + 12px);
}

.pricing-popular:hover {
    transform: scale(1.03) translateY(-5px);
    border-color: #4E37E5;
}

.pricing-popular .pricing-title,
.pricing-popular .pricing-subtitle,
.pricing-popular .price-amount,
.pricing-popular .price-period,
.pricing-popular .pricing-features li {
    color: #FFFFFF;
}

.pricing-popular .price-currency {
    color: rgba(255, 255, 255, 0.9);
}

.pricing-popular .pricing-features svg {
    stroke: #FFFFFF;
}

.pricing-popular .pricing-price {
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.pricing-card .btn-primary {
    background: #ffffff;
    color: var(--primary);
    border-color: #ffffff;
}

.pricing-card .btn-primary:hover {
    background: #f0eef8;
    color: var(--primary-dark);
}

.pricing-popular .btn-primary {
    background: #ffffff;
    color: var(--primary);
    border-color: #ffffff;
}

.pricing-popular .btn-primary:hover {
    background: #f0eef8;
    color: var(--primary-dark);
}

.pricing-best-value.pricing-best-value {
    border-color: var(--primary);
    background: linear-gradient(180deg, rgba(78, 55, 229, 0.03) 0%, var(--bg-card) 100%);
}

.popular-badge,
.value-badge {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ff6b35, #f7c948);
    color: #1a1a2e;
    padding: 8px 24px;
    border-radius: 0 0 12px 12px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    white-space: nowrap;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.pricing-popular .popular-badge {
    background: linear-gradient(135deg, #ff6b35, #f7c948);
    color: #1a1a2e;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.value-badge {
    background: linear-gradient(135deg, #00c9a7, #00d4ff);
    color: #1a1a2e;
    box-shadow: 0 4px 15px rgba(0, 201, 167, 0.3);
}

.pricing-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    margin: 0 auto var(--space-md);
    border-radius: 50%;
    background: rgba(78, 55, 229, 0.1);
    color: var(--primary);
}

.pricing-icon svg {
    stroke: var(--primary);
}

.pricing-popular .pricing-icon {
    background: rgba(255, 255, 255, 0.15);
}

.pricing-popular .pricing-icon svg {
    stroke: #FFFFFF;
}

.pricing-header {
    text-align: center;
    margin-bottom: var(--space-lg);
}

.pricing-title {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--text);
    margin-bottom: var(--space-xs);
    letter-spacing: -0.3px;
}

.pricing-subtitle {
    color: var(--text-muted);
    font-size: var(--font-size-sm);
    font-weight: 600;
    background: rgba(78, 55, 229, 0.08);
    display: inline-block;
    padding: 4px 14px;
    border-radius: var(--radius-full);
    margin-top: var(--space-xs);
}

.pricing-popular .pricing-subtitle {
    background: rgba(255, 255, 255, 0.15);
}

.pricing-price {
    text-align: center;
    margin-bottom: var(--space-xl);
    padding-bottom: var(--space-xl);
    border-bottom: 1px solid var(--border);
}

.price-currency {
    font-size: var(--font-size-2xl);
    font-weight: 600;
    color: var(--primary);
    vertical-align: top;
}

.price-amount {
    font-size: var(--font-size-5xl);
    font-weight: 800;
    color: var(--text);
    line-height: 1;
}

.price-period {
    color: var(--text-muted);
    font-size: var(--font-size-sm);
}

.pricing-features {
    margin-bottom: var(--space-xl);
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) 0;
    color: var(--text-muted);
    font-size: var(--font-size-sm);
}

.pricing-features svg {
    width: 18px;
    height: 18px;
    color: var(--success);
    flex-shrink: 0;
}

.pricing-guarantee {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    background: var(--bg-card);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    margin-top: var(--space-3xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.guarantee-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(16, 185, 129, 0.1);
    border-radius: var(--radius-lg);
    flex-shrink: 0;
}

.guarantee-icon svg {
    width: 28px;
    height: 28px;
    color: var(--success);
}

.guarantee-content h4 {
    font-size: var(--font-size-lg);
    font-weight: 700;
    margin-bottom: var(--space-xs);
    color: var(--text);
}

.guarantee-content p {
    color: var(--text-muted);
    font-size: var(--font-size-sm);
}

/* ============================================
   Info Section
   ============================================ */
.info-section {
    background: var(--dark-lighter);
    padding: var(--space-4xl) 0;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
    max-width: 960px;
    margin: 0 auto;
}

.info-grid .info-card:last-child {
    grid-column: 1 / -1;
    max-width: 480px;
    justify-self: center;
}

.info-card {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    border: 1px solid var(--border);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    text-align: center;
    transition: all var(--transition-base);
}

.info-card:hover {
    box-shadow: 0 8px 30px rgba(78, 55, 229, 0.1);
    transform: translateY(-3px);
}

.info-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4E37E5, #7C6BF0);
    color: #fff;
    font-size: var(--font-size-lg);
    font-weight: 800;
    margin-bottom: var(--space-md);
}

.info-card h3 {
    font-size: var(--font-size-lg);
    font-weight: 700;
    color: var(--text);
    margin-bottom: var(--space-md);
    line-height: 1.4;
}

.info-card p {
    color: var(--text-muted);
    font-size: var(--font-size-base);
    line-height: 1.7;
    margin-bottom: var(--space-sm);
}

.info-card p:last-child {
    margin-bottom: 0;
}

.info-devices {
    list-style: none;
    padding: 0;
    margin: var(--space-md) 0;
    display: inline-flex;
    flex-direction: column;
    gap: var(--space-sm);
    text-align: left;
}

.info-devices li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--text);
    font-size: var(--font-size-sm);
    font-weight: 500;
}

.info-devices li svg {
    flex-shrink: 0;
    stroke: var(--primary);
}

@media (max-width: 768px) {
    .info-grid {
        grid-template-columns: 1fr;
    }

    .info-grid .info-card:last-child {
        max-width: 100%;
    }
}

/* ============================================
   Compatibility Section
   ============================================ */
.compatibility {
    background: var(--dark-lighter);
}

.compatibility-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: var(--space-lg);
}

.compat-item {
    text-align: center;
    padding: var(--space-xl);
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: all var(--transition-base);
}

.compat-item:hover {
    transform: translateY(-3px);
    border-color: var(--primary);
}

.compat-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto var(--space-md);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 107, 53, 0.1);
    border-radius: var(--radius-lg);
}

.compat-icon svg {
    width: 32px;
    height: 32px;
    color: var(--primary);
}

.compat-item h4 {
    font-size: var(--font-size-base);
    font-weight: 700;
    margin-bottom: var(--space-xs);
    color: var(--text);
}

.compat-item p {
    font-size: var(--font-size-xs);
    color: var(--text-muted);
}

/* ============================================
   How It Works Section
   ============================================ */
.how-it-works {
    background: var(--bg-dark);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-xl);
}

.step-card {
    display: flex;
    gap: var(--space-lg);
    align-items: flex-start;
}

.step-number {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: var(--radius-full);
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: white;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: var(--font-size-xl);
    font-weight: 700;
    margin-bottom: var(--space-sm);
    color: var(--text);
}

.step-content p {
    color: var(--text-muted);
    line-height: 1.6;
}

/* ============================================
   Carousel Section
   ============================================ */
.carousel-section {
    padding: var(--space-4xl) 0;
    background: var(--bg-dark);
    overflow: hidden;
}

.carousel-track-wrapper {
    overflow: hidden;
    width: 100%;
    mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
}

.carousel-track {
    display: flex;
    gap: var(--space-lg);
    animation: carousel-scroll 40s linear infinite;
    width: max-content;
}

.carousel-slide {
    flex-shrink: 0;
    width: 220px;
    height: 300px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 2px solid var(--border);
    transition: transform var(--transition-base), border-color var(--transition-base);
}

.carousel-slide:hover {
    transform: scale(1.05);
    border-color: var(--primary);
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@keyframes carousel-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.carousel-track:hover {
    animation-play-state: paused;
}

@media (max-width: 768px) {
    .carousel-slide {
        width: 160px;
        height: 220px;
    }
}

/* ============================================
   Reviews Section V2
   ============================================ */
.reviews-v2 {
    background: var(--dark-lighter);
    padding: var(--space-4xl) 0;
}

.reviews-header-v2 {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.reviews-header-v2 h2 {
    font-size: var(--font-size-3xl);
    font-weight: 800;
    color: var(--text);
    margin-bottom: var(--space-sm);
}

.reviews-header-v2 p {
    color: var(--text-muted);
    font-size: var(--font-size-base);
}

.reviews-grid-v2 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.review-card-v2 {
    background: var(--bg-card);
    border-radius: 16px;
    padding: var(--space-xl);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.review-card-v2:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.user-meta-v2 {
    display: flex;
    align-items: center;
    gap: 12px;
}

.user-avatar-v2 {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--border);
}

.user-name-v2 {
    display: block;
    font-weight: 700;
    font-size: var(--font-size-base);
    color: var(--text);
}

.review-platform-v2 {
    display: block;
    font-size: var(--font-size-xs);
    color: var(--text-muted);
    font-weight: 500;
}

.stars-v2 {
    color: #facc15;
    font-size: 20px;
    letter-spacing: 2px;
}

.review-content-v2 {
    font-size: var(--font-size-sm);
    color: var(--text-muted);
    line-height: 1.7;
    font-style: italic;
    flex-grow: 1;
}

.google-badge-v2 {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-top: var(--space-sm);
    border-top: 1px solid var(--border);
    margin-top: auto;
}

.google-logo-v2 {
    height: 18px;
    width: auto;
}

.review-time-v2 {
    font-size: var(--font-size-xs);
    color: var(--text-muted);
}

@media (max-width: 1024px) {
    .reviews-grid-v2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .reviews-grid-v2 {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   FAQ Section
   ============================================ */
.faq {
    background: var(--bg-dark);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-md);
    overflow: hidden;
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-lg);
    cursor: pointer;
    font-weight: 600;
    color: var(--text);
}

.faq-question span {
    flex: 1;
}

.faq-question svg {
    width: 20px;
    height: 20px;
    color: var(--primary);
    transition: transform var(--transition-base);
}

.faq-item[open] .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 var(--space-lg) var(--space-lg);
}

.faq-answer p {
    color: var(--text-muted);
    line-height: 1.7;
}

/* ============================================
   CTA Section
   ============================================ */
.cta-section {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    padding: var(--space-4xl) 0;
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: var(--space-md);
    color: white;
}

.cta-content h2 .highlight {
    color: white;
    -webkit-text-fill-color: white;
}

.cta-content p {
    font-size: var(--font-size-lg);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-xl);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.cta-section .btn-primary {
    background: white;
    color: var(--primary);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-section .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.cta-section .btn-outline {
    border-color: white;
    color: white;
}

.cta-section .btn-outline:hover {
    background: white;
    color: var(--primary);
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: #0E1729;
    padding: var(--space-4xl) 0 var(--space-xl);
    border-top: 1px solid rgba(78, 55, 229, 0.2);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(2, 1fr);
    gap: var(--space-3xl);
    margin-bottom: var(--space-3xl);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
}

.footer-logo .logo-icon svg {
    width: 36px;
    height: 36px;
}

.footer-logo span {
    font-size: var(--font-size-xl);
    font-weight: 800;
}

.footer-logo-text strong {
    font-weight: 800;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--font-size-sm);
    line-height: 1.7;
    margin-bottom: var(--space-lg);
}

.footer-social {
    display: flex;
    gap: var(--space-md);
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
}

.social-link svg {
    width: 20px;
    height: 20px;
    color: var(--text-muted);
}

.social-link:hover {
    background: var(--primary);
}

.social-link:hover svg {
    color: white;
}

.footer-links h4 {
    font-size: var(--font-size-base);
    font-weight: 700;
    margin-bottom: var(--space-lg);
    color: #FFFFFF;
}

.footer-links ul li {
    margin-bottom: var(--space-sm);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--font-size-sm);
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: #4E37E5;
}

.footer-bottom {
    text-align: center;
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: var(--font-size-sm);
}

.footer-disclaimer {
    margin-top: var(--space-sm);
    font-size: var(--font-size-xs) !important;
    opacity: 0.7;
}

/* ============================================
   Floating WhatsApp Button
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all var(--transition-base);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    color: white;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: var(--bg-card);
    color: var(--text);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-md);
    font-size: var(--font-size-sm);
    font-weight: 500;
    white-space: nowrap;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-fast);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}

/* ============================================
   Product Page Styles
   ============================================ */
.product-hero {
    padding: calc(72px + var(--space-3xl)) 0 var(--space-2xl);
    background: var(--dark-lighter);
}

.product-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: start;
}

.product-info {
    background: var(--bg-card);
    padding: var(--space-2xl);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
}

.product-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-full);
    font-size: var(--font-size-xs);
    font-weight: 700;
    margin-bottom: var(--space-md);
    text-transform: uppercase;
}

.product-title {
    font-size: var(--font-size-3xl);
    font-weight: 800;
    margin-bottom: var(--space-md);
}

.product-price-box {
    display: flex;
    align-items: baseline;
    gap: var(--space-sm);
    margin-bottom: var(--space-xl);
    padding-bottom: var(--space-xl);
    border-bottom: 1px solid var(--border);
}

.product-price {
    font-size: var(--font-size-4xl);
    font-weight: 800;
    color: var(--primary);
}

.product-period {
    color: var(--text-muted);
}

.product-features-list {
    margin-bottom: var(--space-xl);
}

.product-features-list li {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md) 0;
    border-bottom: 1px solid var(--border);
}

.product-features-list li:last-child {
    border-bottom: none;
}

.product-features-list svg {
    width: 24px;
    height: 24px;
    color: var(--success);
    flex-shrink: 0;
}

.product-cta {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.product-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-card {
    background: var(--bg-card);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    margin-bottom: var(--space-lg);
}

.sidebar-card h4 {
    font-size: var(--font-size-lg);
    margin-bottom: var(--space-md);
}

.sidebar-card ul li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) 0;
    color: var(--text-muted);
    font-size: var(--font-size-sm);
}

.sidebar-card svg {
    width: 16px;
    height: 16px;
    color: var(--primary);
}

/* Breadcrumb */
.breadcrumb {
    padding: var(--space-md) 0;
    background: var(--bg-dark);
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: var(--font-size-sm);
}

.breadcrumb-list a {
    color: var(--text-muted);
}

.breadcrumb-list a:hover {
    color: var(--primary);
}

.breadcrumb-separator {
    color: var(--text-muted);
}

.breadcrumb-current {
    color: var(--text);
}

/* ============================================
   Legal Pages
   ============================================ */
.legal-content {
    padding: calc(72px + var(--space-3xl)) 0 var(--space-4xl);
    background: var(--bg-dark);
}

.legal-content h1 {
    font-size: var(--font-size-3xl);
    margin-bottom: var(--space-xl);
}

.legal-content h2 {
    font-size: var(--font-size-xl);
    margin-top: var(--space-2xl);
    margin-bottom: var(--space-md);
    color: var(--primary);
}

.legal-content p {
    color: var(--text-muted);
    margin-bottom: var(--space-md);
    line-height: 1.8;
}

.legal-content ul {
    margin: var(--space-md) 0;
    padding-left: var(--space-xl);
}

.legal-content ul li {
    color: var(--text-muted);
    margin-bottom: var(--space-sm);
    list-style: disc;
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .product-container {
        grid-template-columns: 1fr;
    }

    .product-sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    :root {
        --container-padding: 1rem;
    }

    .nav-menu {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--dark);
        padding: var(--space-xl);
        border-bottom: 1px solid var(--border);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition-base);
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-list {
        flex-direction: column;
        gap: var(--space-lg);
    }

    .nav-toggle {
        display: flex;
    }

    .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);
    }

    .nav-actions .btn {
        display: none;
    }

    .hero {
        min-height: auto;
        padding-top: calc(72px + var(--space-2xl));
    }

    .hero-stats {
        position: relative;
        bottom: 0;
        margin-top: var(--space-xl);
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

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

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        justify-content: center;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }

    .whatsapp-float svg {
        width: 26px;
        height: 26px;
    }

    .whatsapp-tooltip {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .pricing-card {
        padding: var(--space-lg);
    }

    .hero-cta {
        flex-direction: column;
    }

    .hero-cta .btn {
        width: 100%;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
    }
}

/* ============================================
   Blog Section
   ============================================ */
.blog-section {
    padding: var(--space-4xl) 0;
    background: var(--dark-lighter);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
    margin-top: var(--space-2xl);
}

.blog-card,
.blog-card-item {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
    cursor: pointer;
}

.blog-card:hover,
.blog-card-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-glow);
    border-color: var(--primary);
}

.blog-card-image {
    display: block;
    overflow: hidden;
    height: 200px;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-base);
}

.blog-card:hover .blog-card-image img,
.blog-card-item:hover .blog-card-image img {
    transform: scale(1.08);
}

.blog-card-body {
    padding: var(--space-lg);
}

.blog-card-tag {
    display: inline-block;
    font-size: var(--font-size-xs);
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: var(--space-sm);
}

.blog-card-body h3 {
    font-size: var(--font-size-lg);
    font-weight: 700;
    margin-bottom: var(--space-sm);
    line-height: 1.3;
    color: var(--text);
}

.blog-card-body p {
    color: var(--text-muted);
    font-size: var(--font-size-sm);
    line-height: 1.6;
    margin-bottom: var(--space-md);
}

.blog-card-content {
    padding: var(--space-lg);
}

.blog-card-category {
    display: inline-block;
    font-size: var(--font-size-xs);
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: var(--space-sm);
}

.blog-card-content h3 {
    font-size: var(--font-size-lg);
    font-weight: 700;
    margin-bottom: var(--space-sm);
    line-height: 1.3;
}

.blog-card-content h3 a {
    color: var(--text);
    text-decoration: none;
    transition: color var(--transition-base);
}

.blog-card-content h3 a:hover {
    color: var(--primary);
}

.blog-card-content > p {
    color: var(--text-muted);
    font-size: var(--font-size-sm);
    line-height: 1.6;
    margin-bottom: var(--space-md);
}

.blog-card-link {
    color: var(--primary);
    font-weight: 600;
    font-size: var(--font-size-sm);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap var(--transition-base);
}

.blog-card-link:hover {
    gap: 10px;
}

.blog-card-content .blog-card-link::after {
    content: '→';
}

@media (max-width: 992px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   Product Page
   ============================================ */
.product-page {
    padding: calc(72px + var(--space-2xl)) 0 var(--space-4xl);
}

.product-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: start;
}

.product-gallery {
    position: sticky;
    top: 100px;
}

.product-image-main {
    background: var(--dark-lighter);
    border-radius: var(--radius-xl);
    padding: var(--space-3xl);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
}

.product-image-main img {
    max-width: 100%;
    height: auto;
}

.product-badges-row {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-top: var(--space-md);
    justify-content: center;
}

.product-tag {
    display: inline-block;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: var(--font-size-xs);
    font-weight: 600;
    background: rgba(107, 90, 237, 0.15);
    color: var(--primary);
}

.product-tag-popular {
    background: linear-gradient(135deg, #ff6b35, #f7c948);
    color: #1a1a2e;
    font-weight: 700;
}

.product-tag-best {
    background: linear-gradient(135deg, #00c9a7, #00d4ff);
    color: #1a1a2e;
    font-weight: 700;
}

.product-info {
    padding-top: var(--space-sm);
}

.product-popular-label,
.product-best-label {
    display: inline-block;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-size: var(--font-size-xs);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--space-sm);
}

.product-popular-label {
    background: linear-gradient(135deg, #ff6b35, #f7c948);
    color: #1a1a2e;
}

.product-best-label {
    background: linear-gradient(135deg, #00c9a7, #00d4ff);
    color: #1a1a2e;
}

.product-title {
    font-size: var(--font-size-4xl);
    font-weight: 800;
    color: var(--text);
    line-height: 1.2;
    margin-bottom: var(--space-sm);
}

.product-subtitle {
    color: var(--text-muted);
    font-size: var(--font-size-lg);
    margin-bottom: var(--space-xl);
}

.product-price-box {
    display: flex;
    align-items: baseline;
    gap: var(--space-xs);
    margin-bottom: var(--space-lg);
    padding: var(--space-lg);
    background: rgba(107, 90, 237, 0.1);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
}

.product-price-amount {
    font-size: var(--font-size-5xl);
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.product-price-period {
    font-size: var(--font-size-lg);
    color: var(--text-muted);
    font-weight: 500;
}

.product-description {
    margin-bottom: var(--space-lg);
}

.product-description p {
    color: var(--text-muted);
    line-height: 1.7;
}

.product-features {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--space-xl);
}

.product-features li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) 0;
    color: var(--text);
    font-size: var(--font-size-base);
    border-bottom: 1px solid var(--border);
}

.product-features li:last-child {
    border-bottom: none;
}

.product-features svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    stroke: var(--success);
}

.product-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    width: 100%;
    padding: var(--space-lg) var(--space-xl);
    font-size: var(--font-size-lg);
    font-weight: 700;
    border-radius: var(--radius-lg);
}

.product-cta .whatsapp-icon {
    width: 24px;
    height: 24px;
}

.product-trust {
    display: flex;
    justify-content: center;
    gap: var(--space-xl);
    margin-top: var(--space-lg);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--border);
}

.trust-item {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: var(--font-size-sm);
    color: var(--text-muted);
}

.trust-item svg {
    stroke: var(--primary);
    flex-shrink: 0;
}

.product-details-section {
    margin-top: var(--space-4xl);
    text-align: center;
}

.product-details-section h2 {
    font-size: var(--font-size-3xl);
    font-weight: 800;
    color: var(--text);
    margin-bottom: var(--space-2xl);
}

.product-details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
    text-align: left;
}

.product-detail-card {
    background: var(--dark-lighter);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    border: 1px solid var(--border);
}

.product-detail-card h3 {
    font-size: var(--font-size-lg);
    font-weight: 700;
    color: var(--text);
    margin-bottom: var(--space-sm);
}

.product-detail-card p {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: var(--font-size-sm);
}

@media (max-width: 768px) {
    .product-layout {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .product-gallery {
        position: static;
    }

    .product-title {
        font-size: var(--font-size-3xl);
    }

    .product-trust {
        flex-direction: column;
        gap: var(--space-sm);
        align-items: center;
    }

    .product-details-grid {
        grid-template-columns: 1fr;
    }

    .product-price-amount {
        font-size: var(--font-size-4xl);
    }
}

/* ============================================
   Promo Popup
   ============================================ */
.promo-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    backdrop-filter: blur(4px);
}

.promo-overlay.active {
    display: flex;
}

.promo-popup {
    background: linear-gradient(145deg, #1a1a35, #0f0f22);
    border: 1px solid rgba(107, 90, 237, 0.3);
    border-radius: 20px;
    padding: 2rem 1.75rem;
    max-width: 440px;
    width: 100%;
    position: relative;
    text-align: center;
    max-height: 90vh;
    overflow-y: auto;
    animation: promoSlideIn 0.4s ease-out;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5), 0 0 40px rgba(107, 90, 237, 0.15);
}

@keyframes promoSlideIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.promo-close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    color: #9ca3b4;
    font-size: 1.75rem;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s;
    z-index: 1;
}

.promo-close:hover {
    color: #fff;
}

.promo-gift {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.promo-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 6px 20px;
    border-radius: 50px;
    letter-spacing: 0.5px;
    margin-bottom: 0.75rem;
}

.promo-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--primary-light);
    margin: 0 0 0.25rem;
    letter-spacing: -0.5px;
}

.promo-subtitle {
    font-size: 1.1rem;
    font-weight: 600;
    color: #e8e8f0;
    margin: 0 0 1rem;
}

.promo-timer-label {
    font-size: 0.85rem;
    color: #9ca3b4;
    margin-bottom: 0.75rem;
}

.promo-timer {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 1.25rem;
}

.promo-timer-block {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.promo-timer-value {
    background: #252545;
    border: 1px solid rgba(107, 90, 237, 0.25);
    border-radius: 10px;
    font-size: 1.75rem;
    font-weight: 800;
    color: #fff;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.promo-timer-unit {
    font-size: 0.7rem;
    color: #9ca3b4;
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.promo-tags {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 1.25rem;
    flex-wrap: wrap;
}

.promo-tag {
    border: 1px solid rgba(107, 90, 237, 0.3);
    border-radius: 50px;
    padding: 5px 14px;
    font-size: 0.75rem;
    color: #c0c4d0;
    font-weight: 500;
}

.promo-plans {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 1rem;
}

.promo-plan {
    display: flex;
    align-items: center;
    background: #1e1e3a;
    border: 1px solid rgba(107, 90, 237, 0.2);
    border-radius: 14px;
    padding: 14px 16px;
    gap: 12px;
    position: relative;
    transition: border-color 0.2s;
}

.promo-plan:hover {
    border-color: var(--primary);
}

.promo-plan-popular {
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(107, 90, 237, 0.15);
}

.promo-popular-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ff6b35, #ff4444);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 3px 12px;
    border-radius: 50px;
    letter-spacing: 0.5px;
}

.promo-plan-info {
    display: flex;
    flex-direction: column;
    text-align: left;
    flex-shrink: 0;
}

.promo-plan-info strong {
    color: #fff;
    font-size: 0.95rem;
    font-weight: 700;
}

.promo-plan-info span {
    color: #9ca3b4;
    font-size: 0.75rem;
}

.promo-plan-price {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
}

.promo-old-price {
    color: #9ca3b4;
    font-size: 0.8rem;
    text-decoration: line-through;
}

.promo-new-price {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 800;
}

.promo-plan-btn {
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 10px 18px;
    font-size: 0.8rem;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
    flex-shrink: 0;
    white-space: nowrap;
}

.promo-plan-btn:hover {
    background: var(--primary-dark);
    transform: scale(1.03);
}

.promo-disclaimer {
    font-size: 0.7rem;
    color: #6b7280;
    margin: 0;
}

@media (max-width: 480px) {
    .promo-popup {
        padding: 1.5rem 1.25rem;
        border-radius: 16px;
        max-height: 92vh;
    }

    .promo-gift {
        font-size: 2.5rem;
    }

    .promo-title {
        font-size: 1.75rem;
    }

    .promo-subtitle {
        font-size: 1rem;
    }

    .promo-timer-value {
        width: 56px;
        height: 56px;
        font-size: 1.5rem;
    }

    .promo-plan {
        flex-wrap: wrap;
        padding: 12px;
        gap: 8px;
    }

    .promo-plan-price {
        margin-left: 0;
    }

    .promo-new-price {
        font-size: 1.25rem;
    }

    .promo-plan-btn {
        width: 100%;
        text-align: center;
        padding: 10px;
    }
}

/* Print Styles */
@media print {
    .header,
    .cookie-banner,
    .whatsapp-float,
    .cta-section {
        display: none;
    }

    body {
        background: #0f0f1e;
        color: #e8e8f0;
    }
}
