:root {
    --bg: #080b16;
    --bg-soft: #0d1120;
    --card: rgba(18, 23, 42, 0.78);
    --card-solid: #11162a;
    --text: #f7f8ff;
    --muted: #9ba3bc;
    --primary: #7c5cff;
    --primary-light: #a78bfa;
    --cyan: #44d8ff;
    --green: #25d366;
    --border: rgba(255, 255, 255, 0.09);
    --container: 1180px;
    --shadow: 0 24px 70px rgba(0, 0, 0, 0.35);
}

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

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

body {
    min-width: 320px;
    overflow-x: hidden;
    color: var(--text);
    background:
        radial-gradient(circle at 50% -20%, rgba(90, 65, 190, 0.18), transparent 38%),
        var(--bg);
    font-family: "Manrope", sans-serif;
    line-height: 1.6;
}

body.menu-open {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    color: inherit;
    border: 0;
    font: inherit;
    cursor: pointer;
}

svg {
    display: block;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

.container {
    width: min(calc(100% - 40px), var(--container));
    margin-inline: auto;
}

.page-glow {
    position: fixed;
    z-index: -1;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(120px);
    opacity: 0.12;
}

.page-glow-one {
    top: 20%;
    left: -250px;
    background: var(--primary);
}

.page-glow-two {
    right: -280px;
    bottom: 15%;
    background: var(--cyan);
}

.site-header {
    position: fixed;
    z-index: 50;
    top: 0;
    right: 0;
    left: 0;
    border-bottom: 1px solid transparent;
    transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
}

.site-header.scrolled {
    border-color: var(--border);
    background: rgba(8, 11, 22, 0.86);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(18px);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 80px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    font-size: 21px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.brand strong {
    color: var(--primary-light);
}

.brand-icon {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border: 1px solid rgba(167, 139, 250, 0.35);
    border-radius: 11px;
    color: #fff;
    background: linear-gradient(145deg, var(--primary), #4b35b9);
    box-shadow: 0 8px 24px rgba(124, 92, 255, 0.28);
}

.brand-icon svg {
    width: 23px;
}

.brand-icon svg path {
    fill: currentColor;
    stroke: none;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 34px;
}

.main-nav a {
    color: #bbc1d4;
    font-size: 14px;
    font-weight: 600;
    transition: color 0.2s;
}

.main-nav a:hover {
    color: #fff;
}

.main-nav .nav-contact {
    padding: 10px 19px;
    border: 1px solid var(--border);
    border-radius: 10px;
    color: #fff;
    background: rgba(255, 255, 255, 0.04);
}

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    padding: 10px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.06);
}

.menu-toggle span {
    display: block;
    height: 2px;
    margin: 4px 0;
    border-radius: 2px;
    background: #fff;
    transition: transform 0.25s, opacity 0.25s;
}

.hero {
    position: relative;
    display: flex;
    min-height: 760px;
    align-items: center;
    padding: 145px 0 90px;
    overflow: hidden;
}

.hero::before {
    position: absolute;
    top: 0;
    left: 50%;
    width: 1px;
    height: 100%;
    content: "";
    background: linear-gradient(transparent, rgba(255, 255, 255, 0.04), transparent);
}

.hero-grid {
    display: grid;
    align-items: center;
    grid-template-columns: 1.02fr 0.98fr;
    gap: 65px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 20px;
    padding: 7px 12px;
    border: 1px solid rgba(124, 92, 255, 0.25);
    border-radius: 100px;
    color: #c6baff;
    background: rgba(124, 92, 255, 0.08);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.7px;
    text-transform: uppercase;
}

.eyebrow span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--primary-light);
    box-shadow: 0 0 12px var(--primary-light);
}

.hero h1 {
    max-width: 680px;
    font-size: clamp(43px, 5vw, 68px);
    font-weight: 800;
    letter-spacing: -3.8px;
    line-height: 1.07;
}

.hero h1 span {
    color: transparent;
    background: linear-gradient(100deg, #a88cff 10%, #64dcff 95%);
    -webkit-background-clip: text;
    background-clip: text;
}

.hero-content > p {
    margin-top: 22px;
    color: var(--muted);
    font-size: 18px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-top: 36px;
}

.button {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 0 22px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 700;
    transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.button:hover {
    transform: translateY(-2px);
}

.button svg {
    width: 18px;
}

.button-primary {
    color: #fff;
    background: linear-gradient(135deg, #8a68ff, #6848e2);
    box-shadow: 0 14px 35px rgba(124, 92, 255, 0.3);
}

.button-primary:hover {
    box-shadow: 0 18px 40px rgba(124, 92, 255, 0.42);
}

.hero-support {
    display: flex;
    align-items: center;
    gap: 11px;
}

.hero-support > span:last-child {
    display: flex;
    flex-direction: column;
    color: #777f99;
    font-size: 11px;
    line-height: 1.5;
}

.hero-support strong {
    color: #dce1f0;
    font-size: 12px;
}

.status-dot {
    width: 10px;
    height: 10px;
    border: 2px solid #0d301d;
    border-radius: 50%;
    background: #3de778;
    box-shadow: 0 0 14px rgba(61, 231, 120, 0.8);
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 36px;
}

.hero-features span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #8e96ad;
    font-size: 12px;
    font-weight: 600;
}

.hero-features svg {
    width: 16px;
    height: 16px;
    color: #6ee7a1;
    stroke-width: 2.5;
}

.hero-visual {
    position: relative;
    min-height: 500px;
}

.visual-orbit {
    position: absolute;
    border: 1px solid rgba(124, 92, 255, 0.1);
    border-radius: 50%;
}

.orbit-one {
    top: 22px;
    left: 35px;
    width: 440px;
    height: 440px;
}

.orbit-two {
    top: 78px;
    left: 90px;
    width: 330px;
    height: 330px;
    border-color: rgba(68, 216, 255, 0.1);
}

.tv-card {
    position: absolute;
    z-index: 2;
    top: 55px;
    left: 25px;
    width: 485px;
    padding: 14px;
    transform: perspective(1000px) rotateY(-4deg) rotateX(2deg);
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 20px;
    background: rgba(14, 19, 36, 0.87);
    box-shadow: 0 35px 80px rgba(0, 0, 0, 0.45), 0 0 70px rgba(124, 92, 255, 0.1);
    backdrop-filter: blur(18px);
}

.tv-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2px 3px 11px;
    color: #afb6cb;
    font-size: 10px;
    font-weight: 700;
}

.mini-brand,
.live-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.mini-brand i {
    width: 15px;
    height: 15px;
    border-radius: 4px;
    background: linear-gradient(135deg, var(--primary), #44d8ff);
}

.live-badge {
    padding: 4px 7px;
    border-radius: 5px;
    color: #ffbec7;
    background: rgba(255, 65, 90, 0.12);
}

.live-badge i {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #ff5167;
}

.screen {
    position: relative;
    height: 260px;
    overflow: hidden;
    border-radius: 13px;
    background:
        radial-gradient(circle at 24% 20%, rgba(111, 213, 255, 0.95), transparent 24%),
        linear-gradient(130deg, #243d6c 0%, #593e91 42%, #ff765c 100%);
}

.screen::before,
.screen::after {
    position: absolute;
    content: "";
    border-radius: 50%;
    filter: blur(1px);
}

.screen::before {
    right: -50px;
    bottom: -150px;
    width: 390px;
    height: 320px;
    background: linear-gradient(150deg, rgba(255, 196, 84, 0.85), rgba(247, 70, 90, 0.72));
}

.screen::after {
    right: 60px;
    bottom: -180px;
    width: 230px;
    height: 360px;
    transform: rotate(-27deg);
    border-radius: 30%;
    background: linear-gradient(165deg, rgba(83, 36, 123, 0), rgba(16, 20, 55, 0.9));
}

.screen-shine {
    position: absolute;
    z-index: 1;
    top: -80px;
    left: 20%;
    width: 80px;
    height: 400px;
    transform: rotate(36deg);
    background: rgba(255, 255, 255, 0.08);
    filter: blur(12px);
}

.play-button {
    position: absolute;
    z-index: 3;
    top: 50%;
    left: 50%;
    display: grid;
    width: 60px;
    height: 60px;
    transform: translate(-50%, -60%);
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    box-shadow: 0 10px 30px rgba(20, 15, 50, 0.25);
    backdrop-filter: blur(8px);
}

.play-button svg {
    width: 28px;
}

.play-button path {
    fill: #fff;
    stroke: none;
}

.screen-info {
    position: absolute;
    z-index: 3;
    right: 20px;
    bottom: 17px;
    left: 20px;
    display: flex;
    flex-direction: column;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.4);
}

.screen-info small {
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 1px;
}

.screen-info strong {
    margin: 2px 0 8px;
    font-size: 15px;
}

.progress {
    height: 3px;
    overflow: hidden;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.25);
}

.progress span {
    display: block;
    width: 62%;
    height: 100%;
    border-radius: inherit;
    background: #fff;
}

.channel-row {
    display: grid;
    gap: 8px;
    grid-template-columns: repeat(4, 1fr);
    padding-top: 11px;
}

.channel-row div {
    display: flex;
    min-height: 50px;
    flex-direction: column;
    justify-content: center;
    padding: 8px 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.035);
}

.channel-row span {
    color: #727a93;
    font-size: 7px;
    font-weight: 700;
}

.channel-row b {
    color: #cdd2e2;
    font-size: 11px;
}

.floating-card {
    position: absolute;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 13px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    background: rgba(18, 24, 44, 0.88);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(16px);
}

.floating-card span:last-child {
    display: flex;
    flex-direction: column;
    color: #7e87a2;
    font-size: 8px;
}

.floating-card strong {
    color: #e9ebf5;
    font-size: 10px;
}

.floating-quality {
    top: 28px;
    right: -20px;
}

.floating-icon {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border-radius: 9px;
    color: #b6eaff;
    background: linear-gradient(145deg, #285fa1, #163257);
    font-size: 11px;
    font-weight: 800;
}

.floating-devices {
    right: 0;
    bottom: 15px;
}

.floating-devices > svg {
    width: 31px;
    padding: 6px;
    border-radius: 8px;
    color: #cdbfff;
    background: rgba(124, 92, 255, 0.2);
}

.section {
    padding: 105px 0;
}

.section-heading {
    max-width: 650px;
    margin: 0 auto 48px;
    text-align: center;
}

.section-kicker {
    display: inline-block;
    margin-bottom: 11px;
    color: #9a82ff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.section-heading h2,
.faq-intro h2 {
    font-size: clamp(32px, 4vw, 45px);
    letter-spacing: -2px;
    line-height: 1.15;
}

.section-heading p,
.faq-intro p {
    margin-top: 13px;
    color: var(--muted);
    font-size: 15px;
}

.packages-section {
    border-top: 1px solid rgba(255, 255, 255, 0.035);
    background: linear-gradient(180deg, rgba(13, 17, 32, 0.45), transparent);
}

.packages-grid {
    display: grid;
    align-items: stretch;
    gap: 17px;
    grid-template-columns: repeat(4, 1fr);
}

.package-card {
    position: relative;
    display: flex;
    min-height: 340px;
    flex-direction: column;
    padding: 25px;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: linear-gradient(155deg, rgba(21, 27, 49, 0.92), rgba(13, 17, 32, 0.82));
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.16);
    transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}

.package-card:hover {
    transform: translateY(-7px);
    border-color: rgba(124, 92, 255, 0.42);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.28);
}

.package-card.featured {
    border-color: rgba(140, 111, 255, 0.55);
    background:
        radial-gradient(circle at 100% 0%, rgba(124, 92, 255, 0.25), transparent 40%),
        linear-gradient(155deg, #171b38, #111426);
    box-shadow: 0 20px 55px rgba(96, 70, 205, 0.22);
}

.popular-ribbon {
    position: absolute;
    top: 16px;
    right: -31px;
    width: 125px;
    transform: rotate(42deg);
    color: #fff;
    background: var(--primary);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.7px;
    text-align: center;
}

.package-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 22px;
}

.package-tag {
    padding: 5px 9px;
    border: 1px solid rgba(124, 92, 255, 0.2);
    border-radius: 6px;
    color: #ad9aff;
    background: rgba(124, 92, 255, 0.08);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.package-signal {
    display: flex;
    align-items: flex-end;
    gap: 3px;
    height: 15px;
}

.package-signal i {
    width: 3px;
    border-radius: 2px;
    background: #68718d;
}

.package-signal i:nth-child(1) { height: 5px; }
.package-signal i:nth-child(2) { height: 9px; }
.package-signal i:nth-child(3) { height: 14px; background: var(--primary-light); }

.package-card h3 {
    max-width: 210px;
    min-height: 52px;
    font-size: 18px;
    letter-spacing: -0.5px;
    line-height: 1.4;
}

.package-price {
    margin: 8px 0 20px;
    font-size: 30px;
    font-weight: 800;
    letter-spacing: -1px;
}

.package-card ul {
    display: grid;
    gap: 10px;
    margin-bottom: 24px;
    color: #979fb7;
    font-size: 11px;
    list-style: none;
}

.package-card li {
    display: flex;
    align-items: center;
    gap: 8px;
}

.package-card li span {
    color: #70e5a1;
    font-weight: 800;
}

.package-button {
    width: 100%;
    min-height: 45px;
    margin-top: auto;
    border: 1px solid rgba(255, 255, 255, 0.09);
    background: rgba(255, 255, 255, 0.045);
}

.package-button:hover {
    border-color: rgba(124, 92, 255, 0.45);
    background: rgba(124, 92, 255, 0.14);
}

.featured .package-button {
    border-color: transparent;
    background: linear-gradient(135deg, #8766ff, #694ae2);
}

.packages-grid .package-card:last-child:nth-child(4n + 3) {
    grid-column: 3;
}

.why-section {
    position: relative;
}

.why-section::before {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: -1;
    width: 800px;
    height: 260px;
    transform: translate(-50%, -50%);
    content: "";
    border-radius: 50%;
    background: rgba(82, 56, 172, 0.09);
    filter: blur(90px);
}

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

.benefit-card {
    padding: 29px 25px;
    border: 1px solid var(--border);
    border-radius: 17px;
    background: rgba(16, 21, 39, 0.68);
    transition: transform 0.25s, background 0.25s;
}

.benefit-card:hover {
    transform: translateY(-5px);
    background: rgba(22, 28, 51, 0.85);
}

.benefit-icon {
    display: grid;
    width: 46px;
    height: 46px;
    margin-bottom: 20px;
    place-items: center;
    border: 1px solid rgba(124, 92, 255, 0.2);
    border-radius: 13px;
    color: #ad9aff;
    background: rgba(124, 92, 255, 0.1);
}

.benefit-icon svg {
    width: 23px;
}

.benefit-card h3 {
    margin-bottom: 8px;
    font-size: 16px;
}

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

.faq-section {
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    background: rgba(13, 17, 32, 0.35);
}

.faq-layout {
    display: grid;
    align-items: start;
    gap: 90px;
    grid-template-columns: 0.75fr 1.25fr;
}

.faq-intro {
    position: sticky;
    top: 120px;
}

.faq-intro a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 24px;
    color: #ad9aff;
    font-size: 13px;
    font-weight: 700;
}

.faq-intro a span {
    transition: transform 0.2s;
}

.faq-intro a:hover span {
    transform: translateX(4px);
}

.accordion {
    display: grid;
    gap: 12px;
}

.faq-item {
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: 14px;
    background: rgba(17, 22, 42, 0.7);
}

.faq-item button {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    padding: 21px 22px;
    background: transparent;
    text-align: left;
}

.faq-item button span {
    font-size: 14px;
    font-weight: 700;
}

.faq-item button i {
    position: relative;
    width: 18px;
    height: 18px;
}

.faq-item button i::before,
.faq-item button i::after {
    position: absolute;
    top: 8px;
    left: 3px;
    width: 12px;
    height: 2px;
    content: "";
    border-radius: 2px;
    background: #929bb5;
    transition: transform 0.25s;
}

.faq-item button i::after {
    transform: rotate(90deg);
}

.faq-item.active button i::after {
    transform: rotate(0);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.faq-answer p {
    padding: 0 22px 22px;
    color: var(--muted);
    font-size: 12px;
}

.site-footer {
    padding: 45px 0 24px;
    border-top: 1px solid var(--border);
    background: #070a13;
}

.footer-main,
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-contact {
    color: #b6bdcf;
    font-size: 13px;
    transition: color 0.2s;
}

.footer-contact:hover {
    color: #fff;
}

.footer-bottom {
    margin-top: 30px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    color: #626a80;
    font-size: 10px;
}

.legal-note {
    max-width: 540px;
    text-align: right;
}

.whatsapp-widget {
    position: fixed;
    z-index: 80;
    right: 24px;
    bottom: 24px;
}

.whatsapp-toggle {
    position: relative;
    display: grid;
    width: 59px;
    height: 59px;
    margin-left: auto;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: var(--green);
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.34);
    transition: transform 0.2s, box-shadow 0.2s;
}

.whatsapp-toggle:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 38px rgba(37, 211, 102, 0.46);
}

.whatsapp-toggle svg {
    width: 31px;
    fill: currentColor;
    stroke: none;
}

.notification-dot {
    position: absolute;
    top: -2px;
    right: -1px;
    display: grid;
    width: 19px;
    height: 19px;
    place-items: center;
    border: 2px solid var(--bg);
    border-radius: 50%;
    background: #ff4d64;
    font-size: 9px;
    font-weight: 800;
}

.chat-popup {
    position: absolute;
    right: 0;
    bottom: 75px;
    width: 315px;
    overflow: hidden;
    transform: translateY(12px) scale(0.96);
    transform-origin: bottom right;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 17px;
    background: #f2f2f2;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.22s, transform 0.22s;
}

.chat-popup.open {
    transform: translateY(0) scale(1);
    opacity: 1;
    pointer-events: auto;
}

.chat-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    color: #fff;
    background: #075e54;
}

.chat-avatar {
    display: grid;
    width: 39px;
    height: 39px;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
}

.chat-avatar svg {
    width: 23px;
}

.chat-avatar svg path {
    fill: #fff;
    stroke: none;
}

.chat-header > div:nth-child(2) {
    display: flex;
    flex: 1;
    flex-direction: column;
    line-height: 1.35;
}

.chat-header strong {
    font-size: 13px;
}

.chat-header span {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 9px;
    opacity: 0.8;
}

.chat-header span i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #69f09b;
}

.chat-close {
    padding: 3px 5px;
    color: rgba(255, 255, 255, 0.75);
    background: transparent;
    font-size: 23px;
    line-height: 1;
}

.chat-body {
    padding: 20px 16px 16px;
    background:
        linear-gradient(rgba(238, 233, 225, 0.92), rgba(238, 233, 225, 0.92)),
        radial-gradient(#c9c4bc 1px, transparent 1px);
    background-size: auto, 18px 18px;
}

.chat-bubble {
    position: relative;
    width: fit-content;
    max-width: 245px;
    margin-bottom: 17px;
    padding: 11px 13px;
    border-radius: 0 9px 9px 9px;
    color: #2d3135;
    background: #fff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    font-size: 12px;
    line-height: 1.55;
}

.chat-body > a {
    display: flex;
    width: 100%;
    min-height: 43px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 8px;
    color: #fff;
    background: var(--green);
    font-size: 12px;
    font-weight: 800;
}

.chat-body > a svg {
    width: 19px;
    fill: currentColor;
    stroke: none;
}

@media (max-width: 1100px) {
    .hero-grid {
        gap: 25px;
    }

    .hero-visual {
        transform: scale(0.88);
        transform-origin: left center;
    }

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

    .packages-grid .package-card:last-child:nth-child(4n + 3) {
        grid-column: auto;
    }
}

@media (max-width: 900px) {
    .hero {
        padding-top: 125px;
    }

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

    .hero-content {
        max-width: 680px;
        text-align: center;
        margin-inline: auto;
    }

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

    .hero-visual {
        width: 545px;
        margin: -10px auto 0;
        transform: none;
    }

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

    .faq-layout {
        gap: 45px;
        grid-template-columns: 1fr;
    }

    .faq-intro {
        position: static;
        max-width: 600px;
    }
}

@media (max-width: 720px) {
    .container {
        width: min(calc(100% - 30px), var(--container));
    }

    .header-inner {
        min-height: 70px;
    }

    .menu-toggle {
        display: block;
    }

    .menu-toggle.active span:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }

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

    .menu-toggle.active span:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }

    .main-nav {
        position: fixed;
        top: 70px;
        right: 15px;
        left: 15px;
        display: flex;
        align-items: stretch;
        flex-direction: column;
        gap: 0;
        padding: 12px;
        transform: translateY(-15px);
        border: 1px solid var(--border);
        border-radius: 15px;
        background: rgba(12, 16, 30, 0.97);
        box-shadow: var(--shadow);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.22s, transform 0.22s;
    }

    .main-nav.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .main-nav a {
        padding: 12px 10px;
    }

    .main-nav .nav-contact {
        margin-top: 7px;
        text-align: center;
    }

    .hero {
        min-height: auto;
        padding: 115px 0 60px;
    }

    .hero h1 {
        font-size: clamp(40px, 12vw, 58px);
        letter-spacing: -2.7px;
    }

    .hero-content > p {
        font-size: 16px;
    }

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

    .button-primary {
        width: 100%;
        max-width: 320px;
    }

    .hero-features {
        gap: 10px 15px;
    }

    .hero-visual {
        width: 100%;
        min-height: 390px;
        margin-top: 10px;
    }

    .orbit-one {
        top: 5%;
        left: 7%;
        width: 86vw;
        height: 86vw;
    }

    .orbit-two {
        top: 15%;
        left: 18%;
        width: 64vw;
        height: 64vw;
    }

    .tv-card {
        top: 40px;
        left: 50%;
        width: min(90vw, 485px);
        transform: translateX(-50%);
    }

    .screen {
        height: min(48vw, 260px);
    }

    .floating-quality {
        top: 17px;
        right: 0;
    }

    .floating-devices {
        right: 4px;
        bottom: 4px;
    }

    .section {
        padding: 78px 0;
    }

    .section-heading {
        margin-bottom: 35px;
    }

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

    .package-card {
        min-height: 325px;
    }

    .footer-main,
    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 15px;
    }

    .legal-note {
        text-align: left;
    }
}

@media (max-width: 520px) {
    .eyebrow {
        font-size: 10px;
    }

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

    .hero-features span {
        font-size: 10px;
    }

    .hero-visual {
        min-height: 340px;
    }

    .tv-card {
        padding: 10px;
    }

    .screen {
        height: 190px;
    }

    .channel-row div {
        min-height: 40px;
        padding: 6px;
    }

    .floating-card {
        padding: 8px 10px;
    }

    .floating-quality {
        right: -5px;
    }

    .floating-devices {
        bottom: -10px;
    }

    .packages-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .package-card {
        min-height: auto;
    }

    .package-card h3 {
        min-height: auto;
    }

    .chat-popup {
        position: fixed;
        right: 15px;
        bottom: 94px;
        left: 15px;
        width: auto;
    }

    .whatsapp-widget {
        right: 17px;
        bottom: 17px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        transition-duration: 0.01ms !important;
    }
}
