:root {
    --color-bg: #050714;
    --color-surface: rgba(14, 17, 37, 0.85);
    --color-card: rgba(20, 24, 48, 0.95);
    --color-primary: #6c5ce7;
    --color-primary-light: #9d8cff;
    --color-secondary: #0fd0c0;
    --color-accent: #ff6b6b;
    --color-text: #f6f6f9;
    --color-text-muted: rgba(230, 232, 252, 0.7);
    --color-border: rgba(255, 255, 255, 0.08);
    --shadow-soft: 0 20px 60px rgba(6, 9, 25, 0.4);
    --gradient-hero: linear-gradient(135deg, rgba(12, 16, 42, 0.8), rgba(52, 29, 168, 0.75));
    --gradient-card: linear-gradient(135deg, rgba(36, 41, 75, 0.9), rgba(8, 16, 40, 0.9));
    --radius-lg: 28px;
    --radius-md: 18px;
    --radius-sm: 12px;
    --transition: all 0.3s ease;
}

html {
    width: 100%;
    overflow-x: hidden;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    background: radial-gradient(circle at top, rgba(108, 92, 231, 0.12), transparent 50%) no-repeat,
                radial-gradient(circle at 20% 20%, rgba(15, 208, 192, 0.1), transparent 40%) no-repeat,
                var(--color-bg);
    color: var(--color-text);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
    border-radius: var(--radius-md);
}

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

.container {
    width: min(1180px, 92%);
    margin: 0 auto;
}

.section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 3.5rem;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.section-header p {
    color: var(--color-text-muted);
    margin: 0;
}

.section-tag {
    display: inline-flex; align-items: center; justify-content: center;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--color-secondary);
}

.btn {
    display: inline-flex; align-items: center; justify-content: center;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 1.8rem;
    border-radius: 999px;
    border: none;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
}

.btn--primary {
    background: linear-gradient(135deg, var(--color-primary), #5430ff);
    color: #fff;
    box-shadow: 0 12px 30px rgba(108, 92, 231, 0.4);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 35px rgba(108, 92, 231, 0.55);
}

.btn--secondary {
    background: rgba(15, 208, 192, 0.12);
    color: var(--color-secondary);
    border: 1px solid rgba(15, 208, 192, 0.5);
}

.btn--secondary:hover {
    background: rgba(15, 208, 192, 0.25);
}

.btn--ghost {
    background: transparent;
    color: var(--color-text);
    border: 1px solid rgba(255, 255, 255, 0.35);
}

.btn--ghost:hover {
    border-color: rgba(255, 255, 255, 0.6);
    color: #fff;
}

.top-bar {
    background: rgba(8, 13, 32, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--color-border);
    color: var(--color-text-muted);
    font-size: 0.85rem;
}

.top-bar__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.65rem 0;
}

.top-bar__content i {
    color: var(--color-secondary);
    margin-right: 0.35rem;
}

.top-bar a {
    color: var(--color-text);
    font-weight: 500;
}

.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1.25rem 0;
    transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.4s ease, transform 0.4s ease;
    backdrop-filter: blur(18px);
}

.navbar.navbar-scrolled {
    background: rgba(7, 10, 26, 0.85);
    box-shadow: 0 14px 40px rgba(3, 6, 22, 0.45);
    padding: 0.8rem 0;
}

.navbar__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    background: rgba(12, 17, 42, 0.6);
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0.8rem 1.6rem;
    backdrop-filter: blur(18px);
    box-shadow: 0 25px 50px rgba(5, 8, 25, 0.35);
}

.logo {
    font-size: 1.35rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 1px;
}

.main-nav {
    flex: 1;
}

.nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.75rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: var(--color-text-muted);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    padding-bottom: 0.25rem;
    transition: var(--transition);
}

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

.nav-links a:hover,
.nav-links a:focus {
    color: #fff;
}

.nav-links a:hover::after,
.nav-links a:focus::after,
.nav-links a.active::after {
    width: 100%;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(12, 15, 32, 0.6);
    cursor: pointer;
    transition: var(--transition);
}

.hamburger span {
    display: block;
    width: 50%;
    height: 2px;
    margin: 0 auto;
    background: #fff;
    border-radius: 10px;
}

.hamburger:hover {
    transform: translateY(-2px);
}
.hero-section {
    position: relative;
    padding: 6.5rem 0;
    background: url('background.png') center/cover no-repeat;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: var(--gradient-hero);
    z-index: 0;
}

.hero-content {
    position: relative;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    align-items: center;
    gap: 2.5rem;
    z-index: 1;
}

.hero-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hero-tag {
    display: inline-flex; align-items: center; justify-content: center;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    border-radius: 999px;
    background: rgba(15, 208, 192, 0.12);
    border: 1px solid rgba(15, 208, 192, 0.4);
    color: var(--color-secondary);
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 3.4rem);
    line-height: 1.1;
    margin: 0;
}

.hero-subtitle {
    color: var(--color-text-muted);
    font-size: 1rem;
    max-width: 560px;
    margin: 0;
}

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

.hero-highlights {
    display: flex;
    gap: 1.5rem;
    margin-top: 0.5rem;
}

.hero-highlights div {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-sm);
    min-width: 120px;
    text-align: left;
}

.hero-highlights strong {
    display: block;
    font-size: 1.1rem;
}

.hero-highlights span {
    color: var(--color-text-muted);
    font-size: 0.85rem;
}

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

.hero-card {
    background: var(--gradient-card);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow-soft);
    max-width: 360px;
    position: relative;
}

.hero-card__tag {
    position: absolute;
    top: -14px;
    left: 1.5rem;
    background: var(--color-secondary);
    color: #020410;
    padding: 0.35rem 1rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.hero-card h3 {
    margin-top: 0.5rem;
    font-size: 1.5rem;
}

.hero-card p {
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
}

.hero-card__list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0;
    display: grid;
    gap: 0.75rem;
    color: var(--color-text-muted);
}

.hero-card__list i {
    color: var(--color-secondary);
    margin-right: 0.5rem;
}

.stats-section {
    padding: 4rem 0;
}

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

.stat-card {
    background: rgba(10, 14, 35, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    padding: 1.75rem 1.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.stat-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top, rgba(108, 92, 231, 0.25), transparent 65%);
    opacity: 0;
    transition: var(--transition);
}

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

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    display: block;
}

.stat-label {
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

.services-section {
    padding: 5rem 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.75rem;
}

.service-card {
    background: rgba(10, 13, 32, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    padding: 2rem 1.75rem;
    display: grid;
    gap: 1rem;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.service-card i {
    font-size: 1.9rem;
    color: var(--color-secondary);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 45px rgba(5, 10, 30, 0.45);
}

.channels-section {
    padding: 5rem 0 1rem;
}

.channels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    align-items: center;
}

.channels-text p {
    color: var(--color-text-muted);
    margin: 1rem 0 1.5rem;
}

.channels-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
    display: grid;
    gap: 0.9rem;
    color: var(--color-text-muted);
}

.channels-list i {
    color: var(--color-primary);
    margin-right: 0.65rem;
}

.channels-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.channels-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow-soft);
}

.channels-card__badge {
    position: absolute;
    top: 1.2rem;
    left: 1.2rem;
    background: rgba(11, 14, 32, 0.9);
    padding: 0.4rem 1rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.85rem;
}

.devices-section {
    padding: 4rem 0;
}

.devices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2.5rem;
    align-items: center;
    background: rgba(10, 13, 32, 0.75);
    padding: 2.5rem 3rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-soft);
}

.devices-text p {
    color: var(--color-text-muted);
}

.devices-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
    text-align: center;
    font-weight: 600;
    color: var(--color-text-muted);
}

.devices-logos span {
    padding: 0.75rem 1rem;
    border-radius: var(--radius-sm);
    background: rgba(6, 9, 25, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: var(--transition);
}

.devices-logos span:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.2);
}
.pricing-section {
    padding: 5.5rem 0;
}

.toggle-container {
    display: inline-flex; align-items: center; justify-content: center;
    background: rgba(10, 13, 32, 0.7);
    border-radius: 999px;
    padding: 0.4rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    margin: 0 auto 2rem;
    gap: 0.4rem;
}

.toggle-btn {
    background: transparent;
    border: none;
    padding: 0.6rem 1.5rem;
    border-radius: 999px;
    color: var(--color-text-muted);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.toggle-btn.active {
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.8), rgba(39, 107, 255, 0.85));
    color: #fff;
    box-shadow: 0 14px 30px rgba(63, 92, 255, 0.35);
}

.pricing-wrapper {
    position: relative;
}

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

.pricing-grid.active {
    display: grid;
}

.pricing-card {
    background: rgba(11, 14, 32, 0.78);
    border-radius: var(--radius-md);
    padding: 2.2rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 60px rgba(5, 8, 20, 0.35);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
    min-width: 0;
}

.pricing-card .features-list {
    flex-grow: 1;
}

.pricing-card .btn {
    margin-top: auto;
    align-self: center;
}

.pricing-card--highlight {
    background: linear-gradient(145deg, rgba(108, 92, 231, 0.9), rgba(52, 29, 168, 0.85));
    border: none;
}

.pricing-card--highlight .btn--primary,
.pricing-card--highlight .btn--secondary {
    background: #0b1028;
    color: #fff;
    border: none;
}

.pricing-card--highlight .btn--primary:hover {
    background: rgba(255, 255, 255, 0.12);
}

.plan-badge {
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    background: rgba(255, 255, 255, 0.15);
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
}

.price-header {
    display: flex;
    align-items: baseline;
    gap: 0.6rem;
}

.price-value {
    font-size: 2.3rem;
    font-weight: 700;
}

.price-duration {
    color: var(--color-text-muted);
}

.plan-name {
    font-size: 1.35rem;
    margin: 0;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.75rem;
    color: var(--color-text-muted);
}

.features-list i {
    color: var(--color-secondary);
    margin-right: 0.6rem;
}

.testimonials-section {
    padding: 5rem 0;
}

.testimonials-slider {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.testimonials-window {
    overflow: hidden;
    flex: 1;
    scroll-snap-type: x mandatory;
}


.testimonial-card {
    background: rgba(10, 13, 32, 0.75);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 2rem 1.75rem;
    display: grid;
    gap: 1.1rem;
    scroll-snap-align: start;
    min-height: 270px;
}

.testimonial-rating i {
    color: #ffcc4d;
    margin-right: 0.2rem;
}

.testimonial-card p {
    color: var(--color-text-muted);
    margin: 0;
}

.testimonial-author {
    font-weight: 600;
}

.slider-btn {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: none;
    background: rgba(10, 13, 32, 0.8);
    color: #fff;
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.slider-btn:hover {
    transform: translateY(-2px);
    background: rgba(108, 92, 231, 0.8);
}

.slider-btn:disabled {
    opacity: 0.45;
    cursor: default;
    pointer-events: none;
}

.faq-section {
    padding: 5rem 0;
}

.faq-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1rem 0;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: #fff;
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    padding: 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question::after {
    content: '+';
    font-size: 1.2rem;
    color: var(--color-secondary);
    transition: transform 0.3s ease;
}

.faq-question.active::after {
    transform: rotate(45deg);
}

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

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

.promo-card {
    background: rgba(10, 13, 32, 0.78);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 2.5rem;
    box-shadow: var(--shadow-soft);
    display: grid;
    gap: 1.5rem;
}

.promo-description {
    color: var(--color-text-muted);
}

.promo-image-container {
    position: relative;
}

.play-button {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, var(--color-secondary), #4fffc9);
    color: #030511;
    cursor: pointer;
    display: grid;
    place-items: center;
    box-shadow: 0 10px 30px rgba(15, 208, 192, 0.35);
}

.play-button:hover {
    transform: scale(1.05);
}
.contact-section {
    padding: 5rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    align-items: start;
}

.contact-info p {
    color: var(--color-text-muted);
}

.contact-details p {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin: 0.6rem 0;
}

.contact-details i {
    color: var(--color-secondary);
}

.contact-form form {
    background: rgba(10, 13, 32, 0.75);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: var(--shadow-soft);
    display: grid;
    gap: 1.2rem;
}

.form-group {
    display: grid;
    gap: 0.5rem;
}

label {
    font-weight: 600;
}

input, textarea {
    padding: 0.85rem 1rem;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(6, 9, 25, 0.85);
    color: #fff;
    font-family: inherit;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

input:focus, textarea:focus {
    outline: none;
    border-color: rgba(108, 92, 231, 0.7);
    box-shadow: 0 0 0 3px rgba(108, 92, 231, 0.2);
}

textarea {
    resize: vertical;
}

.form-note {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    margin: 0;
}

.footer-section {
    padding: 4rem 0 2rem;
    background: rgba(6, 9, 25, 0.9);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

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

.footer-column h3, .footer-column h4 {
    margin-top: 0;
}

.footer-column p, .footer-column a {
    color: var(--color-text-muted);
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.6rem;
}

.footer-column a:hover {
    color: #fff;
}

.newsletter-form {
    display: flex;
    gap: 0.75rem;
    margin: 1rem 0;
}

.newsletter-form input {
    flex: 1;
}

.newsletter-form button {
    width: 48px;
    border-radius: 50%;
    border: none;
    background: var(--color-primary);
    color: #fff;
    cursor: pointer;
}

.footer-bottom {
    text-align: center;
    margin-top: 2.5rem;
    color: var(--color-text-muted);
    font-size: 0.85rem;
}

.social-icons-fixed {
    position: fixed;
    left: 25px;
    top: 50%;
    transform: translateY(-50%);
    display: grid;
    gap: 0.75rem;
    z-index: 999;
}

.social-icons-fixed a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: grid;
    place-items: center;
    color: var(--color-text-muted);
    background: rgba(7, 10, 26, 0.65);
    transition: var(--transition);
}

.social-icons-fixed a:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.45);
}

.sidebar {
    position: fixed;
    inset: 0 auto 0 0;
    width: min(320px, 80vw);
    background: rgba(5, 8, 25, 0.95);
    backdrop-filter: blur(12px);
    transform: translateX(-100%);
    transition: transform 0.4s ease;
    z-index: 1500;
    padding: 2.5rem 2rem;
    display: grid;
    gap: 2rem;
}

.sidebar.active {
    transform: translateX(0);
}

.close-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.75rem;
    color: #fff;
    cursor: pointer;
}

.overlay {
    position: fixed;
    inset: 0;
    background: rgba(3, 5, 18, 0.7);
    backdrop-filter: blur(2px);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 1400;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, var(--color-primary), #5430ff);
    color: #fff;
    display: grid;
    place-items: center;
    box-shadow: 0 18px 40px rgba(82, 60, 214, 0.45);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 1200;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(-6px);
}

.whatsapp-bubble {
    position: fixed;
    bottom: 32px;
    left: 32px;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #25d366;
    display: grid;
    place-items: center;
    cursor: pointer;
    box-shadow: 0 14px 35px rgba(37, 211, 102, 0.35);
    z-index: 1200;
    transition: transform 0.3s ease;
}

.whatsapp-bubble img {
    width: 28px;
    border-radius: 0;
}

.whatsapp-bubble:hover {
    transform: translateY(-4px);
}

.whatsapp-chat-window {
    position: fixed;
    bottom: 110px;
    left: 32px;
    width: 320px;
    background: rgba(10, 13, 32, 0.95);
    border-radius: var(--radius-md);
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: var(--shadow-soft);
    display: none;
    flex-direction: column;
    overflow: hidden;
    z-index: 1400;
}

.chat-header, .chat-footer {
    padding: 1rem 1.25rem;
    background: rgba(10, 14, 32, 0.85);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.chat-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 600;
}

.chat-body {
    padding: 1rem 1.25rem;
}

.chat-body textarea {
    width: 100%;
    min-height: 100px;
    background: rgba(8, 11, 26, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #fff;
    border-radius: var(--radius-sm);
    resize: none;
}

.chat-footer button {
    width: 100%;
    border: none;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, var(--color-secondary), #4fffc9);
    color: #020410;
    font-weight: 600;
    cursor: pointer;
}

.fluid-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    background: transparent;
    z-index: 2000;
}

@media (max-width: 1024px) {
    .navbar__container {
        border-radius: var(--radius-md);
        padding: 0.75rem 1rem;
    }

    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .social-icons-fixed {
        display: none;
    }
}

@media (max-width: 768px) {
    .container {
        width: min(1180px, 94vw);
    }

    .top-bar__content {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .navbar__container {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .nav-buttons {
        width: 100%;
        justify-content: space-between;
        gap: 0.75rem;
    }

    .nav-buttons .btn {
        flex: 1 1 auto;
        min-width: 0;
        justify-content: center;
        padding: 0.8rem 1.5rem;
    }

    .hamburger {
        margin-left: auto;
    }

    .hero-section {
        padding: 5rem 0 4rem;
        min-height: auto;
    }

    .hero-content {
        gap: 2rem;
    }

    .hero-card {
        max-width: 100%;
    }

    .hero-highlights {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .testimonials-slider {
        flex-direction: column;
        align-items: stretch;
        gap: 1.25rem;
    }

    .testimonials-window {
        flex: none;
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        padding-bottom: 0.5rem;
    }

    .testimonials-window::-webkit-scrollbar {
        display: none;
    }

    .testimonials-track {
        min-width: max-content;
        padding-bottom: 0.5rem;
    }

    .testimonials-track > * {
        flex: 0 0 min(320px, 90vw);
    }

    .slider-btn {
        display: none;
    }

    .channels-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .devices-grid {
        grid-template-columns: 1fr;
        padding: 1.75rem 1.5rem;
    }

    .devices-logos {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .pricing-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .pricing-card {
        padding: 1.8rem 1.5rem;
    }

    .pricing-card .btn {
        width: 100%;
        align-self: stretch;
    }

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

    .contact-form form {
        padding: 1.8rem 1.5rem;
    }

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

    .promo-card {
        padding: 2rem 1.5rem;
    }

    .scroll-to-top {
        right: 16px;
    }

    .whatsapp-bubble {
        left: 16px;
    }

    .whatsapp-chat-window {
        left: 16px;
        right: 16px;
        width: auto;
    }
}

@media (max-width: 480px) {
    .navbar__container {
        padding: 0.9rem 1rem;
        gap: 0.75rem;
    }

    .nav-buttons {
        flex-direction: column;
        align-items: stretch;
    }

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

    .hamburger {
        margin-left: 0;
        align-self: center;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-highlights div {
        width: 100%;
    }

    .hero-tag {
        font-size: 0.8rem;
    }

    .hero-title {
        font-size: clamp(2rem, 8vw, 2.6rem);
    }

    .devices-grid {
        padding: 1.5rem 1.25rem;
    }

    .devices-logos {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .pricing-card {
        padding: 1.6rem 1.3rem;
    }

    .contact-form form {
        padding: 1.5rem;
    }
}






.testimonials-track {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.5s ease;
}

.testimonials-track > * {
    flex: 0 0 min(320px, 85vw);
    scroll-snap-align: start;
}


