/* ================================================
   CS-IPTV - TV Tech Platform
   Palette: Midnight navy + Cyan + Magenta + Violet
   ================================================ */

:root {
    --bg: #07091a;
    --bg-2: #0c1130;
    --surface: #11173d;
    --surface-2: #161d52;
    --line: rgba(148, 163, 184, 0.14);
    --line-soft: rgba(148, 163, 184, 0.08);
    --text: #e8ecff;
    --text-soft: #b6bee0;
    --text-mute: #7a85b8;

    --cyan: #22d3ee;
    --violet: #a855f7;
    --magenta: #ec4899;
    --grad: linear-gradient(135deg, #22d3ee 0%, #a855f7 55%, #ec4899 100%);
    --grad-soft: linear-gradient(135deg, rgba(34,211,238,0.18) 0%, rgba(168,85,247,0.18) 55%, rgba(236,72,153,0.18) 100%);
    --grad-faint: linear-gradient(135deg, rgba(34,211,238,0.07) 0%, rgba(236,72,153,0.07) 100%);

    --shadow-1: 0 8px 30px rgba(7, 9, 26, 0.55);
    --shadow-glow: 0 18px 60px rgba(168, 85, 247, 0.28);

    --r-sm: 10px;
    --r-md: 16px;
    --r-lg: 22px;
    --r-xl: 28px;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-soft);
    background: var(--bg);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; }

h1, h2, h3, h4 {
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    color: var(--text);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.01em;
}

.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

.grad-text {
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: var(--grad-soft);
    border: 1px solid rgba(168, 85, 247, 0.35);
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #cdd5ff;
    margin-bottom: 16px;
}

.seo-content {
    position: absolute !important;
    left: -9999px !important;
    top: -9999px !important;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

/* ================================================
   HEADER
   ================================================ */
.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 1000;
    padding: 14px 0;
    background: rgba(7, 9, 26, 0.7);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--line-soft);
}

.header-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 32px;
}

.brand {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.brand-img {
    height: 42px;
    width: auto;
}

.primary-nav {
    display: flex;
    justify-content: center;
    gap: 28px;
}

.primary-nav a {
    text-decoration: none;
    font-size: 0.92rem;
    color: var(--text-soft);
    font-weight: 500;
    letter-spacing: 0.01em;
    position: relative;
    padding: 6px 0;
    transition: color 0.25s ease;
}

.primary-nav a::after {
    content: '';
    position: absolute;
    inset: auto 0 0 0;
    height: 2px;
    background: var(--grad);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.25s ease;
}

.primary-nav a:hover { color: var(--text); }
.primary-nav a:hover::after { transform: scaleX(1); }

.header-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--grad);
    color: #0b0f2a;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: 999px;
    box-shadow: var(--shadow-glow);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.header-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 70px rgba(34, 211, 238, 0.35);
}

/* ================================================
   HERO
   ================================================ */
.hero {
    position: relative;
    padding: 160px 0 100px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.signal-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(34, 211, 238, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(168, 85, 247, 0.05) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: radial-gradient(ellipse at 60% 40%, black 25%, transparent 75%);
}

.aurora {
    position: absolute;
    border-radius: 50%;
    filter: blur(110px);
    opacity: 0.55;
}
.aurora-a { width: 480px; height: 480px; background: var(--cyan); top: -80px; left: -100px; animation: drift 14s ease-in-out infinite; }
.aurora-b { width: 360px; height: 360px; background: var(--magenta); top: 20%; right: -60px; animation: drift 16s ease-in-out infinite reverse; }
.aurora-c { width: 280px; height: 280px; background: var(--violet); bottom: -60px; left: 35%; animation: drift 18s ease-in-out infinite; }

@keyframes drift {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(40px, -30px) scale(1.08); }
}

.hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 70px;
    align-items: center;
}

/* Visual on the LEFT (reversed from origin) */
.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 460px;
}

.tv-screen {
    position: relative;
    width: 100%;
    max-width: 460px;
    animation: floaty 7s ease-in-out infinite;
}

@keyframes floaty {
    0%, 100% { transform: translateY(0) rotate(-2deg); }
    50% { transform: translateY(-14px) rotate(2deg); }
}

.tv-bezel {
    position: relative;
    background: linear-gradient(180deg, #1a2152 0%, #0c1130 100%);
    border: 1px solid rgba(168, 85, 247, 0.4);
    border-radius: var(--r-lg);
    padding: 18px;
    box-shadow:
        0 30px 80px rgba(7, 9, 26, 0.7),
        0 0 80px rgba(168, 85, 247, 0.2),
        inset 0 0 30px rgba(34, 211, 238, 0.05);
}

.tv-display {
    position: relative;
    aspect-ratio: 16 / 10;
    border-radius: var(--r-md);
    overflow: hidden;
    background:
        radial-gradient(circle at 30% 20%, rgba(34, 211, 238, 0.35), transparent 55%),
        radial-gradient(circle at 80% 80%, rgba(236, 72, 153, 0.35), transparent 55%),
        linear-gradient(135deg, #1a2152 0%, #0c1130 100%);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.tv-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    filter: saturate(1.05) contrast(1.02);
}

.tv-stripe {
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
    animation: scan 4s linear infinite;
    z-index: 2;
}
.tv-stripe:nth-child(1) { top: 30%; animation-delay: 0s; }
.tv-stripe:nth-child(2) { top: 55%; animation-delay: 1.3s; }
.tv-stripe:nth-child(3) { top: 80%; animation-delay: 2.6s; }

@keyframes scan {
    0% { transform: translateX(-100%); opacity: 0; }
    20% { opacity: 1; }
    100% { transform: translateX(100%); opacity: 0; }
}

.tv-overlay {
    position: absolute;
    inset: 0;
    padding: 22px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: linear-gradient(180deg, rgba(7, 9, 26, 0.55) 0%, transparent 35%, transparent 65%, rgba(7, 9, 26, 0.7) 100%);
    z-index: 3;
}

.tv-channel {
    display: flex;
    flex-direction: column;
}
.ch-num {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.02em;
    line-height: 1;
}
.ch-name {
    font-size: 0.85rem;
    color: var(--cyan);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-top: 6px;
}

.tv-live {
    align-self: flex-end;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background: rgba(236, 72, 153, 0.18);
    border: 1px solid rgba(236, 72, 153, 0.5);
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: #ffd6e9;
}

.dot-live {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--magenta);
    box-shadow: 0 0 0 4px rgba(236, 72, 153, 0.25);
    animation: blink 1.4s ease-in-out infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.35; }
}

.tv-stand {
    width: 110px;
    height: 6px;
    margin: 14px auto 0;
    border-radius: 0 0 12px 12px;
    background: linear-gradient(180deg, #1a2152, #0a0d24);
    border: 1px solid rgba(168, 85, 247, 0.25);
    border-top: 0;
}

.floating-stat {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(17, 23, 61, 0.92);
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-1);
    animation: floaty 7s ease-in-out infinite;
}

.floating-stat i {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    background: var(--grad);
    color: #0b0f2a;
    border-radius: 10px;
    font-size: 1rem;
}

.floating-stat strong {
    display: block;
    color: var(--text);
    font-size: 1rem;
    font-family: 'Space Grotesk', sans-serif;
}

.floating-stat span {
    font-size: 0.75rem;
    color: var(--text-mute);
}

.stat-top { top: 8%; right: -20px; animation-delay: 1.2s; }
.stat-bottom { bottom: 6%; left: -10px; animation-delay: 2.4s; }

/* Hero text on the RIGHT */
.hero-content {
    max-width: 560px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: rgba(34, 211, 238, 0.08);
    border: 1px solid rgba(34, 211, 238, 0.3);
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--cyan);
    margin-bottom: 22px;
    letter-spacing: 0.04em;
}

.eyebrow i { font-size: 0.85rem; }

.hero-content h1 {
    font-size: clamp(2.4rem, 4.5vw, 3.6rem);
    font-weight: 700;
    margin-bottom: 22px;
}

.hero-content .lead {
    font-size: 1.1rem;
    color: var(--text-soft);
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 28px;
}

.hero-points {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 18px;
}

.hero-points li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.92rem;
    color: var(--text-soft);
}

.hero-points i {
    color: var(--cyan);
}

/* ================================================
   BUTTONS
   ================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 26px;
    font-size: 0.98rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 999px;
    cursor: pointer;
    border: none;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
    white-space: nowrap;
}

.btn-primary {
    background: var(--grad);
    color: #0b0f2a;
    box-shadow: var(--shadow-glow);
}
.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 70px rgba(236, 72, 153, 0.35);
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--line);
    color: var(--text);
}
.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(168, 85, 247, 0.4);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 1.5px solid rgba(34, 211, 238, 0.6);
    color: var(--cyan);
}
.btn-outline:hover {
    background: rgba(34, 211, 238, 0.1);
    transform: translateY(-2px);
}

.btn-plan {
    width: 100%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--line);
    color: var(--text);
}
.btn-plan:hover {
    background: var(--grad);
    color: #0b0f2a;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.btn-lg {
    padding: 18px 32px;
    font-size: 1.04rem;
}

/* ================================================
   STATS STRIP
   ================================================ */
.stats-strip {
    padding: 40px 0;
    background:
        linear-gradient(180deg, transparent, rgba(168, 85, 247, 0.04), transparent),
        var(--bg-2);
    border-top: 1px solid var(--line-soft);
    border-bottom: 1px solid var(--line-soft);
}

.stats-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
    flex: 1;
    min-width: 130px;
}

.stat-num {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.3rem;
    font-weight: 700;
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 6px;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-mute);
    letter-spacing: 0.04em;
}

.stat-sep {
    width: 1px;
    height: 40px;
    background: var(--line);
}

/* ================================================
   SECTION HEAD
   ================================================ */
.section-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 60px;
}

.section-head.left {
    text-align: left;
    margin: 0 0 60px;
}

.section-head h2 {
    font-size: clamp(1.9rem, 3.6vw, 2.7rem);
    font-weight: 700;
    margin-bottom: 14px;
}

.section-head p {
    font-size: 1.05rem;
    color: var(--text-soft);
    line-height: 1.7;
}

/* ================================================
   TECH SECTION (asymmetric grid)
   ================================================ */
.tech {
    padding: 110px 0;
    background: var(--bg);
    position: relative;
}

.tech-board {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: minmax(180px, auto);
    gap: 22px;
}

.tech-card {
    position: relative;
    padding: 28px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.tech-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--grad-faint);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.tech-card:hover {
    transform: translateY(-6px);
    border-color: rgba(168, 85, 247, 0.4);
    box-shadow: 0 20px 50px rgba(7, 9, 26, 0.55);
}
.tech-card:hover::after { opacity: 1; }

.tech-card.big {
    grid-row: span 2;
    grid-column: span 1;
    background:
        radial-gradient(120% 80% at 0% 0%, rgba(34, 211, 238, 0.12), transparent 60%),
        var(--surface);
}

.tech-card.wide {
    grid-column: span 2;
    background:
        radial-gradient(120% 100% at 100% 0%, rgba(236, 72, 153, 0.12), transparent 60%),
        var(--surface);
}

.tech-icon {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    background: var(--grad);
    color: #0b0f2a;
    border-radius: 14px;
    font-size: 1.25rem;
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
}

.tech-icon.alt {
    background: rgba(34, 211, 238, 0.1);
    color: var(--cyan);
    border: 1px solid rgba(34, 211, 238, 0.3);
}

.tech-card h3 {
    position: relative;
    z-index: 1;
    font-size: 1.18rem;
    margin-bottom: 10px;
}

.tech-card p {
    position: relative;
    z-index: 1;
    color: var(--text-soft);
    font-size: 0.95rem;
    line-height: 1.65;
}

.tech-tag {
    position: relative;
    z-index: 1;
    display: inline-block;
    margin-top: 18px;
    padding: 4px 12px;
    background: rgba(168, 85, 247, 0.12);
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 600;
    color: #d6c1ff;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

/* ================================================
   PRICING
   ================================================ */
.pricing {
    padding: 110px 0;
    background: var(--bg-2);
    position: relative;
    overflow: hidden;
}

.pricing::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.12), transparent 60%);
    top: -200px;
    right: -200px;
    pointer-events: none;
}

.plans {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
}

.plan {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 32px 28px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--r-lg);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.plan:hover {
    transform: translateY(-8px);
    border-color: rgba(34, 211, 238, 0.45);
    box-shadow: 0 25px 60px rgba(7, 9, 26, 0.6);
}

.plan.featured {
    background:
        linear-gradient(180deg, rgba(168, 85, 247, 0.12), var(--surface) 80%);
    border: 1px solid rgba(168, 85, 247, 0.55);
    transform: translateY(-12px);
}

.plan-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 18px;
    background: var(--grad);
    color: #0b0f2a;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 999px;
    letter-spacing: 0.06em;
    white-space: nowrap;
}

.plan-top {
    text-align: left;
    margin-bottom: 24px;
}

.plan-icon {
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    background: rgba(34, 211, 238, 0.1);
    border: 1px solid rgba(34, 211, 238, 0.3);
    border-radius: 14px;
    color: var(--cyan);
    font-size: 1.4rem;
    margin-bottom: 18px;
}

.plan.featured .plan-icon {
    background: var(--grad);
    color: #0b0f2a;
    border-color: transparent;
}

.plan-top h3 {
    font-size: 1.3rem;
    margin-bottom: 6px;
}

.plan-sub {
    font-size: 0.88rem;
    color: var(--text-mute);
}

.plan-prices {
    padding: 20px 0;
    border-top: 1px solid var(--line-soft);
    border-bottom: 1px solid var(--line-soft);
    margin-bottom: 22px;
}

.prow {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    padding: 10px 0;
}

.prow + .prow { border-top: 1px dashed var(--line-soft); }
.prow.single + .prow { border-top: none; }

.prow-amount {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.95rem;
    font-weight: 700;
    color: var(--text);
}

.prow.highlight .prow-amount {
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2.4rem;
}

.prow-text {
    font-size: 0.86rem;
    color: var(--text-mute);
    text-align: right;
    flex: 1;
    margin-left: 14px;
}

.plan-list {
    list-style: none;
    margin-bottom: 24px;
    flex: 1;
}

.plan-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 0;
    font-size: 0.94rem;
    color: var(--text-soft);
}

.plan-list i {
    width: 18px;
    height: 18px;
    display: grid;
    place-items: center;
    background: rgba(34, 211, 238, 0.15);
    color: var(--cyan);
    border-radius: 50%;
    font-size: 0.65rem;
}

.warranty {
    margin-top: 50px;
    padding: 24px 28px;
    display: flex;
    align-items: center;
    gap: 18px;
    background: var(--grad-faint);
    border: 1px solid rgba(168, 85, 247, 0.25);
    border-radius: var(--r-lg);
}

.warranty i {
    font-size: 1.6rem;
    color: var(--cyan);
    flex-shrink: 0;
}

.warranty p {
    font-size: 0.95rem;
    color: var(--text-soft);
}

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

/* ================================================
   CHANNELS
   ================================================ */
.channels {
    padding: 110px 0;
    background: var(--bg);
}

.channel-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
}

.channel-tile {
    aspect-ratio: 1 / 0.9;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--r-md);
    color: var(--text-soft);
    transition: transform 0.3s ease, border-color 0.3s ease, color 0.3s ease, background 0.3s ease;
    cursor: default;
}

.channel-tile i {
    font-size: 1.8rem;
    color: var(--cyan);
    transition: color 0.3s ease, transform 0.3s ease;
}

.channel-tile span {
    font-size: 0.88rem;
    font-weight: 500;
}

.channel-tile:hover {
    transform: translateY(-5px);
    border-color: rgba(236, 72, 153, 0.4);
    background: var(--grad-faint);
    color: var(--text);
}

.channel-tile:hover i {
    color: var(--magenta);
    transform: scale(1.1);
}

/* ================================================
   CONTACT / CTA
   ================================================ */
.contact {
    padding: 110px 0;
    background: var(--bg-2);
}

.cta-card {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 50px;
    align-items: center;
    padding: 56px;
    background:
        radial-gradient(120% 80% at 0% 100%, rgba(34, 211, 238, 0.12), transparent 60%),
        radial-gradient(120% 80% at 100% 0%, rgba(236, 72, 153, 0.12), transparent 60%),
        var(--surface);
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: var(--r-xl);
    box-shadow: 0 30px 90px rgba(7, 9, 26, 0.6);
}

.cta-text h2 {
    font-size: clamp(1.9rem, 3.4vw, 2.5rem);
    margin: 8px 0 16px;
}

.cta-text p {
    color: var(--text-soft);
    font-size: 1.02rem;
    margin-bottom: 28px;
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.cta-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.cta-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--line-soft);
    border-radius: var(--r-md);
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.cta-item:hover {
    border-color: rgba(34, 211, 238, 0.4);
    transform: translateX(4px);
}

.cta-icon {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    background: var(--grad);
    color: #0b0f2a;
    border-radius: 12px;
    font-size: 1rem;
    flex-shrink: 0;
}

.cta-item strong {
    display: block;
    color: var(--text);
    font-size: 1rem;
    margin-bottom: 3px;
}

.cta-item p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-mute);
}

/* ================================================
   FOOTER
   ================================================ */
.site-footer {
    padding: 60px 0 26px;
    background: #04061a;
    border-top: 1px solid var(--line-soft);
}

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

.footer-brand p {
    color: var(--text-mute);
    font-size: 0.92rem;
    margin-top: 14px;
    max-width: 380px;
}

.footer-logo {
    height: 44px;
    width: auto;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links h4 {
    font-size: 0.78rem;
    color: var(--text);
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.footer-links a {
    color: var(--text-mute);
    text-decoration: none;
    font-size: 0.92rem;
    transition: color 0.25s ease;
}
.footer-links a:hover { color: var(--cyan); }

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid var(--line-soft);
    font-size: 0.85rem;
    color: var(--text-mute);
    text-align: center;
}

/* ================================================
   WHATSAPP FLOAT
   ================================================ */
.whatsapp-float {
    position: fixed;
    bottom: 26px;
    left: 26px;
    width: 60px;
    height: 60px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    border-radius: 50%;
    color: #fff;
    font-size: 1.7rem;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.45);
    z-index: 1000;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover { transform: scale(1.1) translateY(-3px); }

.whatsapp-float .pulse {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: #25d366;
    z-index: -1;
    animation: pulse 2s infinite;
}

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

/* ================================================
   SCROLL ANIMATION HELPERS
   ================================================ */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 1024px) {
    .header-inner {
        grid-template-columns: auto 1fr auto;
        gap: 18px;
    }
    .primary-nav { gap: 16px; }
    .primary-nav a { font-size: 0.85rem; }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    .hero-visual { order: 2; min-height: 380px; }
    .hero-content { order: 1; max-width: 100%; }
    .hero-points { justify-content: center; max-width: 480px; margin: 0 auto; }

    .tech-board {
        grid-template-columns: 1fr 1fr;
    }
    .tech-card.big, .tech-card.wide {
        grid-column: span 2;
        grid-row: auto;
    }

    .plans { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
    .plan.featured { transform: none; }

    .channel-grid { grid-template-columns: repeat(4, 1fr); }

    .cta-card {
        grid-template-columns: 1fr;
        padding: 40px 28px;
    }

    .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
    .primary-nav { display: none; }
    .header-inner { grid-template-columns: auto auto; justify-content: space-between; }

    .hero { padding: 130px 0 70px; }
    .hero-content h1 { font-size: 2.1rem; }
    .lead { font-size: 1rem; }
    .hero-points { grid-template-columns: 1fr; }

    .floating-stat { display: none; }
    .tv-screen { max-width: 340px; }

    .stats-row { gap: 18px; }
    .stat-sep { display: none; }
    .stat { min-width: 45%; }

    .tech-board { grid-template-columns: 1fr; }
    .tech-card.big, .tech-card.wide { grid-column: span 1; }

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

    .cta-actions { flex-direction: column; align-items: stretch; }
    .btn-lg { width: 100%; }

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

@media (max-width: 420px) {
    .hero-content h1 { font-size: 1.8rem; }
    .channel-grid { grid-template-columns: repeat(2, 1fr); }
    .cta-card { padding: 32px 22px; }
    .plan { padding: 28px 22px; }
}
