@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

/* --- DESIGN SYSTEM --- */
:root {
    /* Colors */
    --bg-main: #06070c;
    --bg-card: #0d0f19;
    --bg-card-hover: #141727;
    
    --primary: hsl(224, 62%, 56%);
    --primary-glow: rgba(51, 182, 234, 0.2);
    --secondary: hsl(180, 100%, 45%);
    --secondary-glow: rgba(6, 182, 212, 0.15);
    
    --gradient-hero: linear-gradient(135deg, hsl(226, 85%, 58%) 0%, hsl(245, 75%, 45%) 100%);
    --gradient-cyan: linear-gradient(135deg, hsl(180, 100%, 45%) 0%, hsl(195, 100%, 40%) 100%);
    --gradient-mixed: linear-gradient(135deg, hsl(249, 80%, 58%) 0%, hsl(180, 100%, 45%) 100%);
    --gradient-dark: linear-gradient(180deg, #06070c 0%, #0d0f19 100%);
    
    --text-white: #ffffff;
    --text-primary: #f3f4f6;
    --text-secondary: #9ca3af;
    --text-muted: #6b7280;
    
    --border-color: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(255, 255, 255, 0.15);
    
    /* Glassmorphism */
    --glass-bg: rgba(13, 15, 25, 0.7);
    --glass-border: rgba(255, 255, 255, 0.06);
    --glass-blur: blur(12px);
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 16px 40px rgba(0, 0, 0, 0.5);
    --shadow-primary: 0 8px 30px rgba(51, 54, 234, 0.3);
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s ease;
}

/* --- RESET & GLOBAL STYLES --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

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

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

button, input, select, textarea {
    font-family: inherit;
}

ul {
    list-style: none;
}

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

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-main);
}
::-webkit-scrollbar-thumb {
    background: var(--bg-card);
    border-radius: 4px;
    border: 2px solid var(--bg-main);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* --- REUSABLE COMPONENTS --- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    border-radius: 12px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition-normal);
    border: 1px solid transparent;
}

.btn-primary {
    background: var(--gradient-mixed);
    color: var(--text-white);
    box-shadow: 0 4px 15px rgba(51, 115, 234, 0.459);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(62, 135, 230, 0.5);
    background: linear-gradient(135deg, hsla(189, 100%, 50%, 0.801) 0%, hsl(192, 100%, 50%) 100%);
}

.btn-secondary {
    background: var(--glass-bg);
    border: 1px solid var(--border-color);
    color: var(--text-white);
    backdrop-filter: var(--glass-blur);
}

.btn-secondary:hover {
    background: var(--bg-card-hover);
    border-color: var(--primary);
    transform: translateY(-2px);
}

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

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

.badge {
    display: inline-block;
    padding: 0.35rem 0.85rem;
    border-radius: 99px;
    font-size: 0.75rem;
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.badge-primary {
    background-color: var(--primary-glow);
    color: hsl(108, 78%, 56%);
    border: 1px solid rgba(147, 51, 234, 0.3);
}

.badge-secondary {
    background-color: var(--secondary-glow);
    color: var(--secondary);
    border: 1px solid rgba(6, 182, 212, 0.3);
}

.section-tag {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 0.75rem;
    display: block;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--text-white);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-desc {
    color: var(--text-secondary);
    max-width: 600px;
    margin-bottom: 3rem;
    font-size: 1.05rem;
}

/* --- HEADER & NAVIGATION --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(6, 7, 12, 0.7);
    backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid var(--glass-border);
    transition: var(--transition-normal);
}

.header.scrolled {
    background: rgba(6, 7, 12, 0.9);
    padding: 0.5rem 0;
    box-shadow: var(--shadow-sm);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 5rem;
    transition: var(--transition-normal);
}

.header.scrolled .container {
    height: 4.25rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--text-white);
}

.logo-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--secondary);
    box-shadow: 0 0 10px var(--secondary);
}

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

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

.nav-link {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-secondary);
    position: relative;
    padding: 0.5rem 0;
}

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

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

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-white);
    font-size: 1.5rem;
    cursor: pointer;
}

/* --- HERO SECTION --- */
.hero {
    position: relative;
    padding-top: 10rem;
    padding-bottom: 7rem;
    overflow: hidden;
    background: var(--gradient-dark);
}

/* Tech mesh background element */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background-image: url('../images/hero_bg.png');
    background-size: cover;
    background-position: center;
    opacity: 0.35;
    z-index: 1;
    mask-image: linear-gradient(to left, rgba(0,0,0,1) 30%, rgba(0,0,0,0) 100%);
    -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,1) 30%, rgba(0,0,0,0) 100%);
}

.hero-glow-1 {
    position: absolute;
    top: 10%;
    left: -10%;
    width: 40vw;
    height: 40vw;
    border-radius: 50%;
    background: var(--primary);
    filter: blur(150px);
    opacity: 0.15;
    z-index: 0;
}

.hero-glow-2 {
    position: absolute;
    bottom: -10%;
    right: 10%;
    width: 30vw;
    height: 30vw;
    border-radius: 50%;
    background: var(--secondary);
    filter: blur(150px);
    opacity: 0.1;
    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
    color: var(--text-white);
    margin-bottom: 1.5rem;
}

.hero-title span {
    background: var(--gradient-mixed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-desc {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 580px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3.5rem;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    border-top: 1px solid var(--border-color);
    padding-top: 2rem;
    width: 100%;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-val {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-white);
    line-height: 1.2;
    background: var(--gradient-mixed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-lbl {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: 0.25rem;
}

.hero-card-wrapper {
    display: flex;
    justify-content: center;
}

/* Glass Floating Interactive Card */
.hero-interactive-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 2.25rem;
    backdrop-filter: var(--glass-blur);
    width: 100%;
    max-width: 380px;
    box-shadow: var(--shadow-lg);
    position: relative;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

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

.h-card-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: var(--secondary);
    font-weight: 600;
}

.h-card-pulse {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--secondary);
    box-shadow: 0 0 8px var(--secondary);
    position: relative;
}

.h-card-pulse::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: 50%;
    background-color: var(--secondary);
    animation: pulse 1.5s infinite;
}

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

.h-card-speed {
    margin-bottom: 1.5rem;
}

.h-card-speed-val {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-white);
    line-height: 1;
}

.h-card-speed-lbl {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.h-card-features {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 1.25rem;
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.h-card-feat-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.85rem;
    color: var(--text-primary);
}

.h-card-feat-item svg {
    color: var(--secondary);
    flex-shrink: 0;
}

/* --- SHORTCUTS SECTION --- */
.shortcuts {
    background-color: var(--bg-main);
    padding: 4rem 0;
    border-bottom: 1px solid var(--border-color);
    position: relative;
    z-index: 3;
}

.shortcuts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.shortcut-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    transition: var(--transition-normal);
}

.shortcut-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: var(--shadow-md);
}

.shortcut-num {
    font-family: var(--font-heading);
    font-weight: 700;
    color: rgba(255, 255, 255, 0.05);
    font-size: 2.5rem;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.shortcut-card:hover .shortcut-num {
    color: rgba(147, 51, 234, 0.15);
}

.shortcut-card h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.shortcut-card p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 1.25rem;
    flex-grow: 1;
}

.shortcut-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--secondary);
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.shortcut-card:hover .shortcut-link {
    color: var(--text-white);
}

/* --- PLANS SECTION --- */
.plans {
    padding: 7rem 0;
    position: relative;
    background-color: var(--bg-main);
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    align-items: stretch;
}

.plan-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: var(--transition-normal);
}

.plan-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: var(--shadow-lg);
}

/* Popular Highlight */
.plan-card.popular {
    background: linear-gradient(180deg, rgba(13, 15, 25, 0.95) 0%, rgba(20, 23, 40, 0.95) 100%);
    border: 1px solid var(--primary);
    box-shadow: 0 4px 20px var(--primary-glow);
}

.plan-card.popular::before {
    content: '';
    position: absolute;
    top: -1px; left: -1px; right: -1px; bottom: -1px;
    border-radius: 24px;
    background: var(--gradient-mixed);
    z-index: -1;
    opacity: 0.5;
}

.popular-badge {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
}

.plan-header {
    margin-bottom: 2rem;
}

.plan-name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--text-white);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.plan-speed {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-white);
    line-height: 1.1;
    margin: 1rem 0;
    display: flex;
    align-items: baseline;
}

.plan-speed span {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-left: 0.25rem;
}

.plan-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.plan-price {
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    padding: 1.5rem 0;
    margin-bottom: 2rem;
}

.price-sub {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.price-val {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--text-white);
    display: flex;
    align-items: baseline;
}

.price-val span {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.plan-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
    flex-grow: 1;
}

.plan-feat-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
}

.plan-feat-item svg {
    color: var(--secondary);
    flex-shrink: 0;
}

.plan-feat-item.highlight {
    font-weight: 600;
    color: var(--text-white);
}

.plan-feat-item.highlight svg {
    color: var(--primary);
}

.plans-notice {
    text-align: center;
    margin-top: 3.5rem;
    color: var(--text-muted);
    font-size: 0.85rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* --- BENEFITS SECTION --- */
.benefits {
    padding: 7rem 0;
    background: var(--gradient-dark);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.benefit-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2rem;
    transition: var(--transition-normal);
}

.benefit-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.15);
}

.benefit-icon-wrapper {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 12px;
    background: var(--primary-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.benefit-card:nth-child(even) .benefit-icon-wrapper {
    background: var(--secondary-glow);
    color: var(--secondary);
}

.benefit-card h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.75rem;
}

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

/* --- IPTV PROMOTION --- */
.iptv-promo {
    padding: 7rem 0;
    position: relative;
    overflow: hidden;
}

.iptv-promo::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60vw;
    height: 60vw;
    background: var(--primary);
    filter: blur(200px);
    opacity: 0.08;
    z-index: 0;
    pointer-events: none;
}

.iptv-promo .container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.iptv-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.iptv-title {
    font-family: var(--font-heading);
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--text-white);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.iptv-title span {
    background: var(--gradient-mixed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.iptv-desc {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 1.05rem;
}

.iptv-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    width: 100%;
}

.iptv-feat-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1.25rem;
}

.iptv-feat-card h4 {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.iptv-feat-card p {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

.iptv-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Glass TV Card mockup */
.iptv-mockup {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 1.5rem;
    backdrop-filter: var(--glass-blur);
    width: 100%;
    max-width: 460px;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.mockup-screen {
    width: 100%;
    aspect-ratio: 16/9;
    background: #0f1016;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
}

/* Gradient Overlay for IPTV Mockup */
.mockup-screen::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(0deg, rgba(6, 7, 12, 0.9) 0%, rgba(6, 7, 12, 0.3) 60%, rgba(6, 7, 12, 0) 100%);
    z-index: 1;
}

/* Dynamic movie thumbnail grid inside mockup representing a TV screen */
.mockup-screen-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 6px;
    padding: 6px;
    opacity: 0.35;
    z-index: 0;
}

.mockup-tile {
    background: var(--bg-card-hover);
    border-radius: 4px;
    border: 1px solid rgba(255,255,255,0.05);
}

.mockup-tile-glow {
    background: linear-gradient(45deg, var(--primary), var(--secondary));
}

.mockup-info {
    position: relative;
    z-index: 2;
}

.mockup-badge {
    background-color: red;
    color: white;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 0.15rem 0.5rem;
    border-radius: 4px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 0.5rem;
    letter-spacing: 0.05em;
}

.mockup-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 0.25rem;
}

.mockup-meta {
    font-size: 0.75rem;
    color: var(--text-secondary);
    display: flex;
    gap: 0.75rem;
}

.mockup-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 1rem;
}

.mockup-btn {
    font-size: 0.75rem;
    color: var(--text-white);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* --- COVERAGE AREA & INTERACTIVE FORM --- */
.coverage {
    padding: 7rem 0;
    background-color: var(--bg-main);
    border-bottom: 1px solid var(--border-color);
}

.coverage .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.coverage-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.coverage-stats {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1.25rem 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.coverage-stat-num {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary);
}

.coverage-stat-lbl {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.condo-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2.5rem;
    width: 100%;
}

.condo-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
}

.condo-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--secondary);
}

.coverage-checker {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 2.5rem;
}

.checker-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.checker-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
    position: relative;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.form-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    color: var(--text-white);
    font-size: 0.95rem;
    outline: none;
    transition: var(--transition-fast);
}

.form-input:focus {
    border-color: var(--secondary);
    background: rgba(255, 255, 255, 0.05);
}

.checker-results {
    margin-top: 1.5rem;
    padding: 1.25rem;
    border-radius: 12px;
    display: none;
    font-size: 0.9rem;
    animation: fadeIn 0.4s ease;
}

.checker-results.success {
    display: block;
    background-color: rgba(37, 211, 102, 0.1);
    border: 1px solid rgba(37, 211, 102, 0.3);
    color: #25d366;
}

.checker-results.error {
    display: block;
    background-color: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(5px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- FAQ SECTION --- */
.faq {
    padding: 7rem 0;
    background-color: var(--bg-main);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition-normal);
}

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

.faq-item.active {
    border-color: var(--primary);
    background: var(--bg-card-hover);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    color: var(--text-white);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.1rem;
    text-align: left;
    cursor: pointer;
}

.faq-icon {
    width: 1.5rem;
    height: 1.5rem;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-normal);
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    background-color: var(--primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer-inner {
    padding: 0 1.5rem 1.5rem 1.5rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    padding-top: 1rem;
}

/* --- CONTACT SECTION --- */
.contact {
    padding: 7rem 0;
    background: var(--gradient-dark);
    border-top: 1px solid var(--border-color);
}

.contact-box {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 32px;
    padding: 4rem;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    position: relative;
    overflow: hidden;
}

.contact-box::before {
    content: '';
    position: absolute;
    bottom: -10%;
    right: -10%;
    width: 25vw;
    height: 25vw;
    border-radius: 50%;
    background: var(--secondary);
    filter: blur(100px);
    opacity: 0.08;
}

.contact-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    z-index: 1;
}

.contact-left h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-white);
    margin-bottom: 1.25rem;
}

.contact-left p {
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 500px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
}

.method-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.method-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
}

.method-info h4 {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--text-white);
    font-size: 0.95rem;
}

.method-info p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
}

.contact-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1rem;
    position: relative;
    z-index: 1;
}

.contact-card-glass {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    backdrop-filter: var(--glass-blur);
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.contact-card-glass svg {
    color: var(--secondary);
    margin-bottom: 1rem;
}

.contact-card-glass h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.contact-card-glass p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

/* --- FOOTER --- */
.footer {
    background-color: #030407;
    padding: 5rem 0 2rem 0;
    border-top: 1px solid var(--border-color);
}

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

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    max-width: 280px;
}

.footer-column h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--text-white);
    padding-left: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.8rem;
}

.footer-copy {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.footer-dev a {
    color: var(--text-secondary);
}

.footer-dev a:hover {
    color: var(--text-white);
}

/* --- FLOATING WHATSAPP BUTTON --- */
.float-wa {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 3.75rem;
    height: 3.75rem;
    border-radius: 50%;
    background-color: #25d366;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: var(--transition-normal);
}

.float-wa:hover {
    transform: scale(1.1) rotate(10deg);
    background-color: #20ba5a;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
}

.float-wa-badge {
    position: absolute;
    top: -3px;
    left: -3px;
    background-color: red;
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #25d366;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }
    
    .hero-interactive-card {
        max-width: 480px;
    }
    
    .iptv-promo .container, .coverage .container {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .iptv-visual {
        order: -1;
    }
    
    .contact-box {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 3rem;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 1.85rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 5rem;
        left: -100%;
        width: 100%;
        height: calc(100vh - 5rem);
        background: #06070c;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2.5rem;
        transition: var(--transition-normal);
        z-index: 998;
        border-top: 1px solid var(--border-color);
    }
    
    .header.scrolled .nav-menu {
        top: 4.25rem;
        height: calc(100vh - 4.25rem);
    }
    
    .nav-menu.open {
        left: 0;
    }
    
    .nav-actions {
        display: none; /* Hide standard actions in mobile menu, add inside menu instead */
    }
    
    .nav-menu .btn {
        width: 80%;
    }
    
    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
    }
    
    .float-wa {
        bottom: 1.5rem;
        right: 1.5rem;
    }
}
