/* ==========================================================================
   CSS VARIABLES & THEME
   ========================================================================== */
   :root {
    /* Colors */
    --c-navy: #13006f;
    --c-navy-light: #5d008e;
    --c-blue: #4127ff;
    --c-blue-hover: #311ad6;
    --c-cyan: #95e200;
    --c-cyan-glow: rgba(149, 226, 0, 0.5);
    --c-white: #ffffff;
    --c-gray-50: #f8fafc;
    --c-gray-100: #f1f5f9;
    --c-gray-200: #e2e8f0;
    --c-gray-600: #475569;
    --c-gray-800: #1e293b;
    --c-black: #02040a;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--c-blue) 0%, var(--c-cyan) 100%);
    --gradient-glow: linear-gradient(135deg, rgba(0,71,255,0.8) 0%, rgba(0,210,255,0.8) 100%);
    --gradient-dark: linear-gradient(180deg, var(--c-navy) 0%, var(--c-black) 100%);

    /* Typography */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Transitions & Animations */
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    
    /* Layout */
    --container-width: 1200px;
    --section-padding: 6rem 1.5rem;
    --border-radius: 16px;
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--c-gray-800);
    background-color: var(--c-white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--c-navy);
    line-height: 1.2;
    font-weight: 700;
}

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

ul {
    list-style: none;
}

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

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: var(--section-padding);
}

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

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 1.75rem;
    font-family: var(--font-heading);
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    outline: none;
    gap: 0.5rem;
    font-size: 1rem;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--c-white);
    box-shadow: 0 4px 14px rgba(0, 71, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 71, 255, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--c-blue);
    border: 2px solid var(--c-blue);
}

.btn-outline:hover {
    background: var(--c-blue);
    color: var(--c-white);
}

.btn-white {
    background: var(--c-white);
    color: var(--c-navy);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.btn-outline-white {
    background: transparent;
    color: var(--c-white);
    border: 2px solid var(--c-white);
}

.btn-outline-white:hover {
    background: var(--c-white);
    color: var(--c-navy);
}

/* ==========================================================================
   NAVBAR
   ========================================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: var(--transition-smooth);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.navbar.scrolled {
    padding: 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    transition: var(--transition-smooth);
}

.navbar.scrolled .nav-container {
    height: 64px;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--c-navy);
    letter-spacing: -0.5px;
}

.logo span {
    color: var(--c-blue);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-link {
    font-family: var(--font-heading);
    font-weight: 500;
    color: var(--c-gray-800);
    font-size: 1rem;
    position: relative;
}

.nav-link:hover, .nav-link.active {
    color: var(--c-blue);
}

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

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

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    background: none;
    border: none;
    color: var(--c-navy);
    cursor: pointer;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
    background: var(--gradient-dark);
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    padding-top: 80px; /* Offset for navbar */
}

.hero-swiper {
    width: 100%;
    height: calc(100vh - 80px); /* Adjust for navbar */
}

.swiper-slide {
    display: flex;
    align-items: center;
    position: relative;
    background: var(--gradient-dark);
}

.swiper-button-next, .swiper-button-prev {
    color: var(--c-white) !important;
}

.swiper-pagination-bullet {
    background: var(--c-gray-200) !important;
    opacity: 0.5 !important;
}

.swiper-pagination-bullet-active {
    background: var(--c-cyan) !important;
    opacity: 1 !important;
}

/* Glowing Background Network Effect */
.hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80vw;
    height: 80vw;
    background: radial-gradient(circle, rgba(0, 210, 255, 0.15) 0%, rgba(0, 71, 255, 0) 70%);
    z-index: 1;
    pointer-events: none;
}

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

.hero-content h1 {
    color: var(--c-white);
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.hero-content p {
    color: var(--c-gray-200);
    font-size: 1.125rem;
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.trust-indicators {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--c-gray-200);
    font-size: 0.875rem;
    background: rgba(255,255,255,0.05);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.1);
}

.trust-item i {
    color: var(--c-cyan);
}

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

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

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

.hero-image-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(19, 0, 111, 0.9), rgba(0, 71, 255, 0.5));
}

/* Network Animation */
.network-nodes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.node {
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--c-cyan);
    border-radius: 50%;
    box-shadow: 0 0 15px var(--c-cyan-glow), 0 0 30px var(--c-cyan);
    animation: float 6s ease-in-out infinite;
}

.node:nth-child(1) { top: 20%; left: 30%; animation-delay: 0s; }
.node:nth-child(2) { top: 60%; left: 10%; animation-delay: 1s; }
.node:nth-child(3) { top: 80%; left: 50%; animation-delay: 2s; }
.node:nth-child(4) { top: 40%; left: 80%; animation-delay: 1.5s; }
.node:nth-child(5) { top: 10%; left: 70%; animation-delay: 0.5s; }

.connection {
    position: absolute;
    background: linear-gradient(90deg, rgba(0,210,255,0.5), rgba(0,71,255,0.1));
    height: 2px;
    transform-origin: 0 50%;
    animation: pulse-line 3s infinite alternate;
}

.server-illustration {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(0, 210, 255, 0.2);
    border-radius: 24px;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 40px rgba(0, 71, 255, 0.2);
    animation: float 8s ease-in-out infinite reverse;
}

.server-illustration i {
    font-size: 100px;
    color: var(--c-cyan);
    filter: drop-shadow(0 0 20px var(--c-cyan-glow));
}

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

@keyframes pulse-line {
    0% { opacity: 0.3; }
    100% { opacity: 1; box-shadow: 0 0 10px var(--c-cyan); }
}

/* ==========================================================================
   SECTION HEADERS
   ========================================================================== */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.section-desc {
    color: var(--c-gray-600);
    font-size: 1.125rem;
}

/* ==========================================================================
   PRICING
   ========================================================================== */
.pricing {
    background: var(--c-gray-50);
}

.pricing-toggle {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
}

.toggle-bg {
    background: var(--c-gray-200);
    padding: 0.25rem;
    border-radius: 50px;
    display: inline-flex;
}

.toggle-btn {
    padding: 0.75rem 2rem;
    border-radius: 50px;
    border: none;
    background: transparent;
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--c-gray-600);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.toggle-btn.active {
    background: var(--c-white);
    color: var(--c-navy);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.pricing-card {
    background: var(--c-white);
    border-radius: var(--border-radius);
    padding: 2.5rem 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    transition: var(--transition-smooth);
    position: relative;
    border: 1px solid var(--c-gray-100);
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.pricing-card.popular {
    border: 2px solid var(--c-blue);
    transform: scale(1.05);
    z-index: 2;
}

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

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: var(--c-white);
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    font-family: var(--font-heading);
    letter-spacing: 1px;
}

.card-name {
    font-size: 1rem;
    color: var(--c-gray-600);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.card-speed {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--c-navy);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.card-unit {
    font-size: 1.25rem;
    color: var(--c-blue);
}

.card-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--c-navy);
    margin-top: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--c-gray-200);
}

.card-price span {
    font-size: 1rem;
    color: var(--c-gray-600);
    font-weight: 400;
}

.card-features {
    flex-grow: 1;
    margin-bottom: 2rem;
}

.card-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--c-gray-600);
}

.card-features i {
    color: var(--c-blue);
    font-size: 1.25rem;
}

/* ==========================================================================
   BUSINESS SECTION
   ========================================================================== */
.business {
    background: var(--c-white);
    position: relative;
    overflow: hidden;
}

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

.business-image {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.business-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.business-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(6, 11, 25, 0.8), rgba(0, 71, 255, 0.4));
}

.business-icon-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    color: var(--c-white);
    font-size: 4rem;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2);
}

.business-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 2.5rem;
}

.business-benefit {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
}

.business-benefit i {
    color: var(--c-blue);
    font-size: 1.25rem;
}

/* ==========================================================================
   FEATURES
   ========================================================================== */
.features {
    background: var(--c-gray-50);
}

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

.feature-card {
    background: var(--c-white);
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 20px rgba(0,0,0,0.02);
    transition: var(--transition-smooth);
    border: 1px solid transparent;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-color: var(--c-gray-200);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 71, 255, 0.1);
    color: var(--c-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    transition: var(--transition-fast);
}

.feature-card:hover .feature-icon {
    background: var(--gradient-primary);
    color: var(--c-white);
}

.feature-card h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.feature-card p {
    color: var(--c-gray-600);
}

/* ==========================================================================
   TECHNOLOGY
   ========================================================================== */
.technology {
    background: var(--c-navy);
    color: var(--c-white);
    text-align: center;
}

.technology .section-title {
    color: var(--c-white);
}

.tech-diagram {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin: 4rem 0;
}

.tech-node {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(0, 210, 255, 0.3);
    padding: 1rem 2rem;
    border-radius: 8px;
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--c-cyan);
    min-width: 250px;
}

.tech-arrow {
    color: var(--c-gray-600);
    font-size: 1.5rem;
    animation: bounce-down 2s infinite;
}

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

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 4rem;
}

.stat-item h3 {
    font-size: 3rem;
    color: var(--c-white);
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: var(--c-gray-200);
    font-weight: 500;
}

/* ==========================================================================
   COVERAGE
   ========================================================================== */
.coverage {
    background: var(--c-white);
    text-align: center;
}

.coverage-form {
    max-width: 600px;
    margin: 0 auto 3rem;
    display: flex;
    gap: 1rem;
}

.coverage-input {
    flex-grow: 1;
    padding: 1rem 1.5rem;
    border: 1px solid var(--c-gray-200);
    border-radius: 8px;
    font-size: 1rem;
    font-family: var(--font-body);
    outline: none;
    transition: var(--transition-fast);
}

.coverage-input:focus {
    border-color: var(--c-blue);
    box-shadow: 0 0 0 3px rgba(0,71,255,0.1);
}

.map-placeholder {
    width: 100%;
    height: 400px;
    background: var(--c-gray-100);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px dashed var(--c-gray-200);
    position: relative;
    overflow: hidden;
}

.map-placeholder::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background-image: 
        linear-gradient(rgba(0, 71, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 71, 255, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    transform: rotate(15deg);
}

.map-marker {
    position: relative;
    z-index: 2;
    color: var(--c-blue);
    font-size: 3rem;
    animation: bounce 2s infinite;
    filter: drop-shadow(0 10px 10px rgba(0,71,255,0.2));
}

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

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.testimonials {
    background: var(--c-gray-50);
}

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

.testi-card {
    background: var(--c-white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}

.testi-quote {
    color: var(--c-blue);
    font-size: 2rem;
    margin-bottom: 1rem;
    opacity: 0.2;
}

.testi-text {
    font-size: 1.125rem;
    color: var(--c-gray-800);
    font-style: italic;
    margin-bottom: 2rem;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testi-avatar {
    width: 50px;
    height: 50px;
    background: var(--c-gray-200);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--c-gray-600);
    font-size: 1.5rem;
}

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

.testi-info p {
    margin: 0;
    font-size: 0.875rem;
    color: var(--c-gray-600);
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq {
    background: var(--c-white);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--c-gray-200);
}

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

.faq-question i {
    transition: transform 0.3s ease;
    color: var(--c-blue);
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    color: var(--c-gray-600);
}

.faq-answer p {
    padding-bottom: 1.5rem;
}

/* ==========================================================================
   CTA SECTION
   ========================================================================== */
.cta {
    background: var(--c-navy);
    padding: 6rem 1.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 210, 255, 0.2) 0%, rgba(6, 11, 25, 1) 70%);
    pointer-events: none;
}

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

.cta h2 {
    color: var(--c-white);
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.cta p {
    color: var(--c-gray-200);
    font-size: 1.25rem;
    margin-bottom: 3rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

/* ==========================================================================
   CONTACT
   ========================================================================== */
.contact {
    background: var(--c-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-card {
    text-align: center;
    padding: 2rem;
    background: var(--c-gray-50);
    border-radius: var(--border-radius);
    border: 1px solid var(--c-gray-100);
}

.contact-card i {
    font-size: 2.5rem;
    color: var(--c-blue);
    margin-bottom: 1rem;
}

.contact-card h3 {
    margin-bottom: 0.5rem;
}

.contact-card p {
    color: var(--c-gray-600);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
    background: var(--c-navy-light);
    color: var(--c-white);
    padding: 4rem 1.5rem 2rem;
}

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

.footer-brand p {
    color: var(--c-gray-200);
    margin-top: 1rem;
    max-width: 300px;
}

.footer-title {
    color: var(--c-white);
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--c-gray-200);
}

.footer-links a:hover {
    color: var(--c-cyan);
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--c-white);
    font-size: 1.25rem;
    transition: var(--transition-fast);
}

.footer-social a:hover {
    background: var(--c-blue);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: var(--c-gray-200);
}

/* ==========================================================================
   FLOATING WHATSAPP
   ========================================================================== */
.floating-wa {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: var(--transition-fast);
}

.floating-wa:hover {
    transform: scale(1.1);
    background: #20bd5a;
}

/* ==========================================================================
   ANIMATIONS (AOS Style)
   ========================================================================== */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 992px) {
    .hero-container, .business-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content p {
        margin: 0 auto 2rem;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .trust-indicators {
        justify-content: center;
    }
    
    .hero-visual {
        height: 300px;
        order: -1;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 64px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 64px);
        background: var(--c-white);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: var(--transition-smooth);
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .cta h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .coverage-form {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.popular {
        transform: scale(1);
    }
    
    .pricing-card.popular:hover {
        transform: translateY(-10px);
    }
}
