:root {
    --primary-color: #6d28d9;
    --primary-light: #8b5cf6;
    --accent-color: #06b6d4;
    --accent-glow: rgba(6, 182, 212, 0.5);
    --success-color: #10b981;
    --success-glow: rgba(16, 185, 129, 0.4);
    --warning-color: #f59e0b;

    --bg-dark: #0f172a;
    --bg-darker: #020617;
    --bg-card: #1e293b;
    --bg-card-hover: #334155;

    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --glass-bg: rgba(15, 23, 42, 0.4);
    --glass-border: rgba(255, 255, 255, 0.05);

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Outfit', sans-serif;

    --transition: all 0.3s ease;
    --shadow-main: 0 10px 15px -3px rgba(0, 0, 0, 0.5);
    --glow-primary: 0 0 20px rgba(109, 40, 217, 0.5);
}

/* --- NEW COMPONENTS --- */

/* Live Status Widget */
.status-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--success-color);
    width: fit-content;
    margin: 0 auto 30px;
}

.status-dot {
    width: 10px;
    height: 10px;
    background: var(--success-color);
    border-radius: 50%;
    position: relative;
    box-shadow: 0 0 10px var(--success-color);
}

.status-dot::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--success-color);
    border-radius: 50%;
    animation: pulse-status 2s infinite;
}

@keyframes pulse-status {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }

    100% {
        transform: scale(2.5);
        opacity: 0;
    }
}

/* How It Works Section */
.how-it-works-section {
    margin-top: 120px;
    position: relative;
    padding-bottom: 20px;
}

.how-it-works-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 80px;
    position: relative;
}

/* Connecting Line */
.how-it-works-grid::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(to right, transparent, var(--accent-color), var(--primary-color), transparent);
    opacity: 0.15;
    z-index: 1;
    transform: translateY(-40px);
}

.step-card {
    text-align: center;
    background: rgba(15, 23, 42, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 40px 20px 30px;
    border-radius: 28px;
    position: relative;
    z-index: 2;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.step-card:hover {
    transform: translateY(-15px);
    background: rgba(30, 41, 59, 0.5);
    border-color: var(--accent-color);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.step-indicator {
    width: 60px;
    height: 60px;
    background: var(--bg-darker);
    border: 3px solid var(--primary-color);
    color: #fff;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin: -70px auto 25px;
    position: relative;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
}

.step-card:hover .step-indicator {
    background: var(--primary-color);
    transform: rotate(10deg) scale(1.1);
    box-shadow: 0 0 25px var(--glow-primary);
}

.step-card h3 {
    color: #fff;
    font-size: 1.15rem;
    margin-bottom: 12px;
}

.step-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.step-icon {
    display: none;
    /* Hide old icon container */
}

/* Comparison Section Redesign */
.comparison-section {
    padding: 100px 0;
    position: relative;
}

.comparison-table-wrapper {
    max-width: 1000px;
    margin: 50px auto 0;
    position: relative;
}

.comparison-grid {
    background: rgba(15, 23, 42, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 40px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
}

.comp-header-row {
    background: rgba(255, 255, 255, 0.03);
    padding: 30px 20px;
    display: contents;
}

.comp-header-cell {
    padding: 30px;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.comp-header-cell:first-child {
    justify-content: flex-start;
}

.comp-header-cell.highlight {
    background: linear-gradient(to bottom, rgba(6, 182, 212, 0.1), transparent);
    color: var(--accent-color);
    position: relative;
    padding-top: 45px;
    /* Room for the label */
}

.comp-header-cell.highlight::after {
    content: 'LA MEJOR OPCIÓN';
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-color);
    color: var(--bg-darker);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.6rem;
    font-weight: 900;
    white-space: nowrap;
    box-shadow: 0 4px 10px var(--accent-glow);
    z-index: 10;
}

.comp-row {
    display: contents;
}

.comp-cell {
    padding: 25px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.comp-cell:nth-child(3n+1) {
    justify-content: flex-start;
    color: #fff;
    font-weight: 600;
}

.comp-cell:nth-child(3n+2) {
    color: var(--accent-color);
    font-weight: 700;
    background: rgba(6, 182, 212, 0.02);
    border-left: 1px solid rgba(255, 255, 255, 0.03);
    border-right: 1px solid rgba(255, 255, 255, 0.03);
}

.comp-cell:nth-child(3n+3) {
    color: var(--text-muted);
    opacity: 0.7;
}

/* Icons & Labels */
.comp-cell i {
    font-size: 1.1rem;
    margin-right: 10px;
}

.comp-cell .win-tag {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success-color);
    padding: 4px 10px;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-left: 10px;
}

.comp-cell .loss-tag {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
    padding: 4px 10px;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-left: 10px;
}

.comp-row:hover .comp-cell {
    background: rgba(255, 255, 255, 0.02);
}

.comp-row:hover .comp-cell:nth-child(3n+2) {
    background: rgba(6, 182, 212, 0.05);
}

/* Category Pills */
.category-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin: 30px 0 40px;
}

.pill {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.pill:hover {
    background: var(--primary-color);
    border-color: var(--primary-light);
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(109, 40, 217, 0.3);
}

.pill i {
    color: var(--accent-color);
}

/* Downloads Section */
.downloads-section {
    padding: 100px 0;
    position: relative;
    background: radial-gradient(circle at bottom right, rgba(109, 40, 217, 0.05), transparent 60%);
}

.downloads-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 50px;
}

.download-card {
    background: rgba(30, 41, 59, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.download-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    opacity: 0;
    transition: var(--transition);
}

.download-card:hover {
    transform: translateY(-12px);
    background: rgba(30, 41, 59, 0.6);
    border-color: var(--primary-light);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

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

.download-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 25px;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.download-card:hover .download-icon {
    background: var(--primary-color);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 25px var(--glow-primary);
}

.download-card h3 {
    font-size: 1.35rem;
    margin-bottom: 10px;
    color: #fff;
}

.download-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 25px;
}

.download-btn {
    width: 100%;
    padding: 12px;
    border-radius: 14px;
    font-weight: 700;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.download-card:hover .download-btn {
    background: var(--accent-color);
    color: var(--bg-darker);
    border-color: var(--accent-color);
    box-shadow: 0 5px 15px var(--accent-glow);
}

.download-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-color);
    color: #fff;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.5px;
}

/* APK Link Bar */
.apk-link-container {
    max-width: 800px;
    margin: 60px auto 0;
    background: rgba(15, 23, 42, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 30px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
    backdrop-filter: blur(20px);
}

.apk-info {
    flex: 1;
    min-width: 200px;
}

.apk-info h4 {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.apk-info p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.apk-bar {
    flex: 2;
    min-width: 300px;
    display: flex;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 15px;
    padding: 5px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.apk-input {
    flex: 1;
    background: transparent;
    border: none;
    color: var(--accent-color);
    padding: 10px 15px;
    font-family: monospace;
    font-size: 0.85rem;
    outline: none;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.copy-btn {
    background: var(--bg-card);
    border: none;
    color: #fff;
    padding: 10px 20px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.copy-btn:hover {
    background: var(--accent-color);
    color: var(--bg-darker);
}

@media (max-width: 768px) {
    .downloads-grid {
        grid-template-columns: 1fr;
    }
    
    .apk-bar {
        min-width: 100%;
    }
}

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

i,
em {
    font-style: normal;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-darker);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

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

ul {
    list-style: none;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

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

.text-gradient {
    background: linear-gradient(to right, var(--accent-color), var(--primary-light));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

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

.text-primary {
    color: var(--accent-color);
}

.mt-4 {
    margin-top: 1.5rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    box-shadow: 0 4px 15px rgba(109, 40, 217, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(109, 40, 217, 0.6);
}

.btn-outline {
    border-color: var(--primary-light);
    color: var(--text-main);
    background: transparent;
}

.btn-outline:hover {
    background: rgba(139, 92, 246, 0.1);
    border-color: var(--accent-color);
    color: white;
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

.btn-sm {
    padding: 0.5rem 1.2rem;
    font-size: 0.9rem;
}

/* Navbar & Logo Styling */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 0;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
    background: rgba(2, 6, 23, 0.7);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    box-shadow: 0 0 20px rgba(109, 40, 217, 0.4);
    transition: var(--transition);
}

.logo:hover .logo-icon {
    transform: rotate(10deg) scale(1.1);
    box-shadow: 0 0 30px rgba(109, 40, 217, 0.6);
}

.logo-text {
    line-height: 0.9;
    font-size: 1.5rem;
    font-weight: 900;
    color: white;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.logo-text span {
    background: linear-gradient(135deg, var(--accent-color), var(--primary-light));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.logo-text small {
    display: block;
    margin-top: 2px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--text-muted);
    opacity: 0.8;
}

.nav-menu {
    display: flex;
    gap: 2.5rem;
    align-items: center;
    margin-left: auto;
    margin-right: 2.5rem;
}

.nav-link {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-muted);
    position: relative;
    padding: 0.5rem 0;
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: var(--transition);
}

.nav-link:hover {
    color: white;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    z-index: 1001;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(2, 6, 23, 0.7), var(--bg-darker));
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.badge-hero {
    display: inline-block;
    background: rgba(139, 92, 246, 0.2);
    color: var(--accent-color);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(139, 92, 246, 0.3);
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
}

.hero-price-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(6, 182, 212, 0.1);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(6, 182, 212, 0.2);
    backdrop-filter: blur(5px);
}

.hero-price-badge i {
    color: var(--accent-color);
}

.hero-price-badge strong {
    color: var(--accent-color);
    font-weight: 800;
}

.hero-text {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.hero-features {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.feature-item i {
    color: var(--accent-color);
    margin-right: 0.5rem;
}

/* Sections */
.section {
    padding: 6rem 0;
}

.section-header {
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: 2.5rem;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* Benefits Grid */
.benefits {
    position: relative;
    overflow: hidden;
}

.benefits::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 40%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(109, 40, 217, 0.1) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

.grid-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 1;
}

.card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.benefit-card {
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.benefit-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(109, 40, 217, 0.05), transparent 60%);
    opacity: 0;
    transition: var(--transition);
    border-radius: 16px;
    z-index: -1;
}

.benefit-card:hover {
    transform: translateY(-10px);
    background: var(--bg-card-hover);
    border-color: rgba(109, 40, 217, 0.4);
    box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.5);
}

.benefit-card:hover::after {
    opacity: 1;
}

.icon-box {
    width: 70px;
    height: 70px;
    background: rgba(109, 40, 217, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    transition: var(--transition);
    box-shadow: inset 0 0 15px rgba(255, 255, 255, 0.02);
}

.benefit-card:hover .icon-box {
    background: var(--primary-color);
    color: white;
}

.benefit-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.benefit-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* --- PROFESSIONAL PRICING REDESIGN --- */
#planes {
    padding: 100px 0;
    position: relative;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    align-items: stretch;
}

.pricing-card {
    background: rgba(15, 23, 42, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 0;
    position: relative;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-12px);
    border-color: var(--accent-color);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    background: rgba(30, 41, 59, 0.5);
}

.pricing-card.popular {
    border: 2px solid var(--accent-color);
    box-shadow: 0 0 30px var(--accent-glow);
    background: rgba(15, 23, 42, 0.6);
    transform: scale(1.03);
}

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

/* Badges */
.badge-top {
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.badge-base {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
}

.badge-recommeded {
    background: var(--warning-color);
    color: #fff;
    box-shadow: 0 4px 10px rgba(245, 158, 11, 0.3);
}

.badge-elite {
    background: var(--accent-color);
    color: var(--bg-darker);
    box-shadow: 0 4px 10px var(--accent-glow);
}

/* Discount Tag */
.discount-tag {
    position: absolute;
    top: 50px;
    right: 15px;
    background: var(--success-color);
    color: white;
    padding: 4px 10px;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 800;
    transform: rotate(10deg);
    box-shadow: 0 4px 10px var(--success-glow);
    z-index: 5;
}

/* Header */
.plan-header {
    padding: 60px 20px 20px;
    text-align: center;
}

.plan-icon {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 15px;
    display: block;
}

.plan-header h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.plan-pricing {
    margin: 15px 0;
}

.old-price {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-decoration: line-through;
    opacity: 0.6;
    display: block;
    margin-bottom: 5px;
}

.current-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
}

.current-price .currency {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--accent-color);
}

.current-price .amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
}

.current-price .period {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-left: 5px;
}

.plan-subtitle {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 10px;
}

/* Body */
.plan-body {
    padding: 0 25px 30px;
    flex-grow: 1;
}

.plan-features-list {
    list-style: none;
    margin-bottom: 30px;
}

.plan-features-list li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.85rem;
    color: var(--text-main);
}

.plan-features-list li i {
    color: var(--success-color);
    font-size: 0.8rem;
}

/* Button */
.plan-buy-btn {
    background: var(--accent-color);
    color: var(--bg-darker);
    border: none;
    padding: 15px;
    border-radius: 12px;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.plan-buy-btn:hover {
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px var(--accent-glow);
}

.plan-footer-note {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: 20px;
    line-height: 1.4;
    opacity: 0.7;
}

@media (max-width: 1200px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .pricing-card.popular {
        transform: scale(1);
    }
}

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

    .comparison-table {
        overflow-x: auto;
    }

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

    .comp-row {
        padding: 15px;
    }
}

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

    .comp-row {
        grid-template-columns: 1.5fr 1fr 1fr;
        font-size: 0.75rem;
    }

    .current-price .amount {
        font-size: 2rem;
    }
}


.methods-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    font-size: 1.8rem;
    color: var(--text-muted);
    margin-top: 1rem;
}

/* Devices Section Styling */
.devices-section {
    background: radial-gradient(circle at 80% 20%, rgba(109, 40, 217, 0.05) 0%, transparent 60%);
}

.devices-layout {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4rem;
    margin-bottom: 3rem;
}

.devices-image {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    padding: 2rem;
}

.devices-image img {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.5));
    animation: float_image 6s ease-in-out infinite;
}

@keyframes float_image {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-20px) scale(1.02);
    }
}

.devices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 3rem;
    width: 100%;
    max-width: 1000px;
}

.device-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    color: var(--text-muted);
    transition: var(--transition);
}

.device-icon {
    width: 80px;
    height: 80px;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--primary-light);
    transition: var(--transition);
    box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.3);
}

.device-item span {
    font-weight: 600;
    font-size: 0.95rem;
    text-align: center;
    white-space: nowrap;
}

.device-item:hover {
    color: white;
    transform: translateY(-8px);
}

.device-item:hover .device-icon {
    background: var(--primary-color);
    color: white;
    border-color: var(--accent-color);
    box-shadow: 0 15px 30px -5px rgba(109, 40, 217, 0.4);
    transform: rotate(5deg);
}

.apps-recommendation-box {
    margin-top: 4rem;
    background: rgba(109, 40, 217, 0.05);
    border: 1px dashed rgba(109, 40, 217, 0.3);
    padding: 1.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.apps-recommendation-box p {
    margin: 0;
    color: var(--text-main);
}

.apps-recommendation-box strong {
    color: var(--accent-color);
}

/* FAQ */
/* FAQ Styling */
.faq-container {
    max-width: 850px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(30, 41, 59, 0.4);
    margin-bottom: 1.25rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: rgba(109, 40, 217, 0.3);
    background: rgba(30, 41, 59, 0.6);
}

.faq-question {
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question h4 {
    margin: 0;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-main);
}

.faq-question i {
    font-size: 1rem;
    color: var(--text-muted);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active {
    border-color: var(--primary-light);
    background: rgba(109, 40, 217, 0.05);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: var(--accent-color);
}

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
}

.faq-item.active .faq-answer {
    padding: 0 2rem 2rem 2rem;
    max-height: 500px;
    opacity: 1;
}

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

/* CTA Final */
/* CTA Final Styling */
.cta-final {
    position: relative;
    padding: 8rem 0;
}

.cta-box {
    text-align: center;
    padding: 5rem 3rem;
    border-radius: 32px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.8), rgba(2, 6, 23, 0.9));
}

.cta-box.glass {
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(109, 40, 217, 0.15) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
}

/* Footer Styling */
.footer {
    background: linear-gradient(to bottom, var(--bg-dark), var(--bg-darker));
    padding: 6rem 0 3rem;
    margin-top: 6rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(109, 40, 217, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.brand-col .logo {
    margin-bottom: 1.5rem;
}

.brand-col p {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-main);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-5px);
    color: white;
    box-shadow: 0 5px 15px rgba(109, 40, 217, 0.4);
}

.footer-col h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: white;
    position: relative;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--accent-color);
}

.footer-col ul li {
    margin-bottom: 1rem;
}

.footer-col ul li a {
    color: var(--text-muted);
    font-size: 0.95rem;
    transition: var(--transition);
    display: inline-block;
}

.footer-col ul li a:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.payments-col {
    display: flex;
    flex-direction: column;
}

.trust-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 2rem;
    transition: var(--transition);
}

.trust-box:hover {
    border-color: rgba(6, 182, 212, 0.3);
    background: rgba(255, 255, 255, 0.05);
}

.trust-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.trust-header i {
    color: var(--accent-color);
    font-size: 1.5rem;
}

.trust-header h4 {
    margin: 0 !important;
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
}

/* Override footer heading line for trust header */
.trust-header h4::after {
    display: none;
}

.payments-col p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.payment-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

/* Pricing Trust Section */
.pricing-trust-section {
    margin-top: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    position: relative;
    overflow: hidden;
}

.trust-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    position: relative;
}

.trust-divider::before,
.trust-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.trust-divider span {
    padding: 0 1.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.payment-methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(70px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.method-item {
    height: 50px;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--text-muted);
    transition: var(--transition);
    cursor: default;
}

.method-item:hover {
    color: white;
    background: rgba(6, 182, 212, 0.1);
    border-color: rgba(6, 182, 212, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.custom-icon {
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    font-family: sans-serif;
    text-transform: uppercase;
}

.trust-note {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.5;
    text-align: center;
}

.trust-note i {
    color: var(--primary-light);
    margin-right: 0.5rem;
}

.payment-item {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--text-muted);
    transition: var(--transition);
}

.payment-item:hover {
    color: white;
    border-color: rgba(6, 182, 212, 0.4);
    background: rgba(6, 182, 212, 0.1);
    transform: translateY(-2px);
}

.security-note {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: #10b981;
    background: rgba(16, 185, 129, 0.1);
    padding: 0.6rem 1rem;
    border-radius: 50px;
    width: fit-content;
}

.security-note i {
    font-size: 0.85rem;
}

@media (max-width: 576px) {
    .trust-box {
        margin: 0 auto;
        max-width: 320px;
    }

    .security-note {
        margin: 0 auto;
    }
}

.footer-bottom {
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

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

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }

    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .social-links,
    .payment-methods {
        justify-content: center;
    }

    .footer-logo {
        justify-content: center;
    }
}

/* Floating Buttons - Simplified to Dock */
.whatsapp-float,
.telegram-float {
    display: none !important;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: white;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    border: none;
    font-size: 1.1rem;
    padding: 1rem 2rem;
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
}

.btn-telegram {
    background: linear-gradient(135deg, #0088cc, #006699);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 136, 204, 0.4);
    border: none;
    font-size: 1.1rem;
    padding: 1rem 2rem;
}

.btn-telegram:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 136, 204, 0.6);
}

.cta-buttons i {
    margin-right: 0.5rem;
    font-size: 1.3rem;
}

/* Action Dock */
.action-dock {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 1000;
}

.dock-item {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: white;
    cursor: pointer;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    text-decoration: none;
}

.dock-item:hover {
    transform: scale(1.1) translateX(-5px);
}

.dock-item.whatsapp {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
}

.dock-item.telegram {
    background: linear-gradient(135deg, #0088cc 0%, #006699 100%);
}

.dock-item.email {
    background: linear-gradient(135deg, #ea4335 0%, #c5221f 100%);
}

.dock-item .status-dot {
    position: absolute;
    top: 2px;
    right: 2px;
    width: 12px;
    height: 12px;
    background: #10b981;
    border: 2px solid #0f172a;
    border-radius: 50%;
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 8px rgba(16, 185, 129, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

/* Agent Modal */
.agent-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.agent-modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.agent-modal-content {
    background: var(--bg-card);
    width: 90%;
    max-width: 450px;
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.agent-modal-overlay.active .agent-modal-content {
    transform: translateY(0);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.close-modal {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.3s;
}

.close-modal:hover {
    color: white;
}

.agents-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

.agent-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.03);
    padding: 1rem;
    border-radius: 12px;
    border: 1px solid transparent;
    transition: all 0.3s;
    text-decoration: none;
    color: white;
}

.agent-card:hover {
    background: rgba(37, 211, 102, 0.1);
    border-color: #25d366;
    transform: translateX(5px);
}

/* Telegram Theme for Agent Card */
.agent-card.telegram:hover {
    background: rgba(0, 136, 204, 0.1);
    border-color: #0088cc;
}

.agent-card.telegram .status-dot {
    background: #0088cc;
}

.agent-card.telegram .status-text,
.agent-card.telegram>i {
    color: #0088cc;
}

.agent-card.email:hover {
    background: rgba(109, 40, 217, 0.1);
    border-color: var(--primary-color);
}

.agent-card.email .status-text,
.agent-card.email>i {
    color: var(--primary-light);
}

.agent-avatar {
    position: relative;
    width: 50px;
    height: 50px;
}

.agent-avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.status-dot {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 12px;
    height: 12px;
    background: #25d366;
    border: 2px solid var(--bg-card);
    border-radius: 50%;
}

.agent-info h4 {
    font-size: 1rem;
    margin: 0;
}

.status-text {
    font-size: 0.8rem;
    color: #25d366;
}

.agent-card>i {
    margin-left: auto;
    color: #25d366;
    font-size: 1.2rem;
}

.mobile-lang-switch {
    display: none;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .pricing-card.popular {
        transform: scale(1);
    }

    .navbar {
        padding: 1rem 0;
    }

    .nav-actions {
        margin-left: auto;
        gap: 0.75rem;
        order: 2;
    }

    .nav-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        color: white;
        font-size: 1.1rem;
        cursor: pointer;
        transition: var(--transition);
        order: 2;
    }

    .nav-toggle:active {
        transform: scale(0.9);
        background: rgba(255, 255, 255, 0.1);
    }

    .lang-switch {
        order: 1;
        margin: 0;
    }



    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 85%;
        max-width: 320px;
        height: 100vh;
        background: rgba(2, 6, 23, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        padding: 6rem 2rem;
        gap: 0.5rem;
        transition: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        border-right: 1px solid rgba(255, 255, 255, 0.05);
        box-shadow: 20px 0 60px rgba(0, 0, 0, 0.8);
        z-index: 1000;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        width: 100%;
        opacity: 0;
        transform: translateX(-20px);
        transition: 0.4s ease;
    }

    .nav-menu.active .nav-item {
        opacity: 1;
        transform: translateX(0);
    }

    .nav-menu.active .nav-item:nth-child(1) {
        transition-delay: 0.1s;
    }

    .nav-menu.active .nav-item:nth-child(2) {
        transition-delay: 0.15s;
    }

    .nav-menu.active .nav-item:nth-child(3) {
        transition-delay: 0.2s;
    }

    .nav-menu.active .nav-item:nth-child(4) {
        transition-delay: 0.25s;
    }

    .nav-menu.active .nav-item:nth-child(5) {
        transition-delay: 0.3s;
    }

    .nav-menu.active .nav-item:nth-child(6) {
        transition-delay: 0.35s;
    }

    .nav-link {
        font-size: 1.25rem;
        font-weight: 700;
        color: white;
        display: block;
        padding: 1rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    }

    .nav-link::after {
        display: none;
    }

    /* Hide the duplicate switcher inside the menu when on mobile */
    .nav-menu .lang-switch {
        display: none;
    }
}

/* Nav Overlay */
.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: 0.4s ease;
}

.nav-overlay.active {
    opacity: 1;
    pointer-events: all;
}

/* Testimonials Section */
.testimonials {
    background: radial-gradient(circle at 20% 50%, rgba(109, 40, 217, 0.05) 0%, transparent 50%);
    position: relative;
}

.testimonial-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    gap: 2rem;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card {
    min-width: calc(33.333% - 1.34rem);
    background: rgba(30, 41, 59, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 2.5rem 2rem;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(109, 40, 217, 0.3);
    background: rgba(30, 41, 59, 0.6);
}

.testimonial-card::before {
    content: '\f10d';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    font-size: 2.5rem;
    color: rgba(109, 40, 217, 0.1);
    z-index: 0;
}

.testimonial-stars {
    color: #fbbf24;
    font-size: 0.85rem;
    display: flex;
    gap: 0.25rem;
}

.testimonial-text {
    font-style: normal;
    color: var(--text-main);
    font-size: 1rem;
    line-height: 1.7;
    flex-grow: 1;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--primary-light);
    box-shadow: 0 0 15px rgba(109, 40, 217, 0.3);
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 0.25rem 0;
    color: white;
}

.author-location {
    font-size: 0.85rem;
    color: var(--accent-color);
    display: flex;
    align-items: center;
    gap: 0.4rem;
    opacity: 0.9;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 3.5rem;
}

.dot {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    width: 30px;
    background: var(--accent-color);
    border-radius: 10px;
    box-shadow: 0 0 15px var(--accent-glow);
}

@media (max-width: 992px) {
    .testimonial-card {
        min-width: calc(50% - 1rem);
    }
}

@media (max-width: 768px) {
    .testimonial-card {
        min-width: 100%;
    }
}

/* Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

.delay-300 {
    transition-delay: 0.3s;
}

.delay-400 {
    transition-delay: 0.4s;
}

@keyframes float-hero {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: 0 0 15px rgba(109, 40, 217, 0.4);
    }

    50% {
        box-shadow: 0 0 25px rgba(109, 40, 217, 0.7);
    }
}

.hero-content h1 {
    animation: fade-in-up 0.8s ease-out forwards;
}

.hero-text {
    animation: fade-in-up 0.8s ease-out 0.2s forwards;
    opacity: 0;
}

.hero-buttons {
    animation: fade-in-up 0.8s ease-out 0.4s forwards;
    opacity: 0;
}

.hero-features {
    animation: fade-in-up 0.8s ease-out 0.6s forwards;
    opacity: 0;
}

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Enhancements */
.card:hover {
    transform: translateY(-8px) scale(1.02);
}

.btn-primary {
    animation: pulse-glow 3s infinite;
}

/* Language Switch */
.lang-switch {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--bg-card);
    transition: .4s;
    border-radius: 34px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5px;
    font-size: 10px;
    font-weight: bold;
    color: var(--text-muted);
}

.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 4px;
    bottom: 3px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
    z-index: 2;
}

input:checked+.slider {
    background-color: var(--primary-color);
}

input:focus+.slider {
    box-shadow: 0 0 1px var(--primary-color);
}

input:checked+.slider:before {
    transform: translateX(22px);
}

.lang-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: white;
    cursor: pointer;
}

/* Mobile Nav Adjustments */
@media (max-width: 768px) {
    .lang-switch {
        margin: 0;
    }
}



/* Report Modal Form Styles */
.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: white;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-light);
    background: rgba(255, 255, 255, 0.1);
}

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

.btn-submit {
    width: 100%;
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-submit:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(109, 40, 217, 0.4);
}

/* Duration Buttons Styles */
.plan-durations {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.duration-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-muted);
    padding: 0.4rem 0.8rem;
    border-radius: 8px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.duration-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.duration-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(109, 40, 217, 0.3);
}

.pricing-card.popular .duration-btn.active {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--bg-darker);
    box-shadow: 0 4px 12px rgba(6, 182, 212, 0.3);
}

.pricing-card.popular .duration-btn:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
}

.pricing-card.popular .duration-btn.active:hover {
    color: var(--bg-darker);
}

/* Stacked Action Buttons */
.plan-actions {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-top: 1rem;
}

.action-btn {
    width: 100%;
    padding: 0.8rem;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.action-btn span:first-child {
    font-weight: 500;
}

.action-btn span:last-child {
    font-weight: 800;
}

/* Specific styles for different durations to add variety if needed, 
   or keep them consistent with the card theme */

.pricing-card .action-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
}

.pricing-card .action-btn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateX(5px);
}

.pricing-card.popular .action-btn {
    background: rgba(6, 182, 212, 0.1);
    border-color: rgba(6, 182, 212, 0.3);
    color: white;
}

.pricing-card.popular .action-btn:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--bg-darker);
}

/* Highlight the 12 month option slightly */
.action-btn.best-value {
    border-color: var(--accent-color);
    position: relative;
    overflow: hidden;
}

/* Remove old duration styles if present or unused */
.plan-durations {
    display: none;
}

/* Discount Badge Styles */
.discount-badge {
    display: inline-block;
    background: #10b981;
    /* Green for discount/saving */
    color: white;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 8px;
    text-transform: uppercase;
    vertical-align: middle;
    letter-spacing: 0.5px;
}

.pricing-card.popular .discount-badge {
    background: var(--accent-color);
    /* Cyan on the popular card */
    color: var(--bg-darker);
}

.action-btn span:first-child {
    display: flex;
    align-items: center;
}

/* ==========================================================================
   ULTIMATE MOBILE & TABLET OPTIMIZATION
   ========================================================================== */

/* Tablet Optimization (max-width: 1024px) */
@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .how-it-works-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem 2rem;
    }

    .hero h1 {
        font-size: 3rem;
    }
}

/* Mobile Optimization (max-width: 768px) */
@media (max-width: 768px) {
    .section {
        padding: 4rem 0;
    }

    .section-header {
        margin-bottom: 3rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .hero {
        height: auto;
        padding: 120px 0 60px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero-text {
        font-size: 1rem;
        padding: 0 10px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        padding: 0 20px;
    }

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

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        padding: 0 10px;
    }

    .how-it-works-grid {
        grid-template-columns: 1fr;
        gap: 4.5rem 1rem;
        margin-top: 100px;
    }

    .how-it-works-grid::before {
        display: none;
    }

    .step-card {
        padding: 40px 20px;
    }

    /* Comparison Mobile Redesign */
    .comparison-grid {
        display: block;
        border-radius: 25px;
    }

    .comp-header-row {
        display: none;
    }

    .comp-row {
        display: block;
        padding: 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .comp-cell {
        padding: 10px 0;
        border: none;
        justify-content: flex-start !important;
        text-align: left;
        background: transparent !important;
    }

    .comp-cell:nth-child(3n+1) {
        font-size: 1.1rem;
        color: var(--accent-color);
        font-weight: 800;
        margin-bottom: 5px;
    }

    .comp-cell:nth-child(3n+2)::before {
        content: "PlayTV: ";
        font-weight: 800;
        font-size: 0.7rem;
        color: var(--text-muted);
        margin-right: 10px;
        text-transform: uppercase;
    }

    .comp-cell:nth-child(3n+3)::before {
        content: "Cable: ";
        font-weight: 800;
        font-size: 0.7rem;
        color: var(--text-muted);
        margin-right: 10px;
        text-transform: uppercase;
    }

    .category-pills {
        gap: 8px;
    }

    .pill {
        padding: 8px 16px;
        font-size: 0.8rem;
    }

    .status-indicator {
        font-size: 0.7rem;
        padding: 6px 12px;
    }
}

/* Small Mobile (max-width: 480px) */
@media (max-width: 480px) {
    .logo-text {
        font-size: 1.2rem;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .pricing-card {
        border-radius: 20px;
    }

    .plan-header h3 {
        font-size: 1.1rem;
    }

    .current-price .amount {
        font-size: 2.5rem;
    }
}