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

:root {
    --bg-color: #040914; /* Darker blue background */
    --surface-color: #0c162c; /* Card background */
    --surface-light: #162445;
    --primary-color: #00E5FF; /* Cyan */
    --secondary-color: #0066FF; /* Blue */
    --text-main: #FFFFFF;
    --text-muted: #9ba5b5;
    --border-color: #1f3056;
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
}

.section-subtitle {
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    display: inline-block;
    color: var(--primary-color);
    font-weight: 700;
    letter-spacing: 2px;
}

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

ul {
    list-style: none;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

/* =========================================
   HEADER & NAVBAR
========================================= */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    background: transparent;
    padding: 20px 0;
}

header.scrolled {
    background: rgba(4, 9, 20, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 40px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links li a {
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-main);
    white-space: nowrap;
}

.nav-links li a:hover,
.nav-links li a.active {
    color: var(--primary-color);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-phone {
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.btn-primary {
    background: var(--secondary-color);
    color: #fff;
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-primary:hover {
    background: #0052cc;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--text-main);
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    border: 2px solid rgba(0, 102, 255, 0.5);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.btn-outline:hover {
    border-color: var(--secondary-color);
    background: rgba(0, 102, 255, 0.1);
}

/* =========================================
   HERO SECTION
========================================= */
.hero {
    padding: 140px 0 60px;
    position: relative;
    overflow: hidden;
    min-height: 85vh;
    display: flex;
    align-items: center;
    background-color: var(--bg-color);
}

/* Fiber optic background simulation */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: -20%;
    width: 70%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 229, 255, 0.15) 0%, transparent 70%);
    z-index: -1;
}

.hero .container {
    max-width: 1280px; /* Use the standard container width instead of 100% to keep it centered */
    margin: 0 auto;
    padding: 0 40px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hero-content {
    max-width: 600px;
    position: relative;
    z-index: 10;
    margin-left: 0;
}

.hero-subtitle {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
    display: block;
}

.hero h1 {
    font-size: 56px;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 25px;
}

.hero h1 span {
    color: var(--primary-color);
    font-style: italic;
}

.hero p {
    color: var(--text-muted);
    font-size: 18px;
    margin-bottom: 40px;
    max-width: 420px;
}

.hero-stats-wrapper {
    position: relative;
    text-align: center;
    max-width: 450px;
    z-index: 10;
    transform: scale(0.8);
    transform-origin: center right;
    right: 120px;
}

.stats-header {
    margin-bottom: 40px;
}

.stats-header h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 59px;
    font-weight: 800;
    margin-bottom: 5px;
    letter-spacing: -1px;
}

.stats-header p {
    font-size: 16.5px;
    font-weight: 600;
    color: var(--text-main);
    margin: 0;
    margin-left: -40px;
}

.stats-header p span {
    color: var(--primary-color);
}

.hero-stats {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.stat-item {
    text-align: center;
    flex: 1;
    min-width: 120px;
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -5px;
    top: 15%;
    height: 70%;
    width: 1px;
    background: var(--primary-color);
    box-shadow: 0 0 10px var(--primary-color);
    opacity: 0.6;
}

.stat-icon {
    color: var(--primary-color);
    font-size: 18px;
    margin-bottom: 10px;
    width: 42px;
    height: 42px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    background: rgba(0, 229, 255, 0.05);
}

.stat-value {
    font-size: 16.5px;
    font-weight: 700;
    margin-bottom: 3px;
}

.stat-label {
    font-size: 11px;
    color: #FFFFFF;
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

/* =========================================
   BENEFITS BAR
 ========================================= */
.benefits-bar {
    background: rgba(12, 22, 44, 0.4);
    backdrop-filter: blur(10px);
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    /* margin-top: -30px; REMOVED TO PREVENT HEADER OVERLAP */
    position: relative;
    z-index: 20;
}

.benefits-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    position: relative;
    padding: 10px 0;
}

.benefit-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(0, 229, 255, 0.3), transparent);
}

.benefit-icon {
    color: var(--primary-color);
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
}

.benefit-text h4 {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 2px;
    line-height: 1.2;
}

.benefit-text p {
    font-size: 11px;
    color: var(--text-muted);
    line-height: 1.2;
    margin: 0;
}

/* =========================================
   PRICING PLANS
 ========================================= */
.pricing {
    padding: 80px 0;
    background: #02060e;
    position: relative;
}

.pricing-wrapper {
    background: #040914;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 30px;
    padding: 60px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
}

.section-header {
    margin-bottom: 60px;
    display: flex;
    justify-content: space-between;
    align-items: center; /* Changed from flex-end to center */
}

.section-subtitle {
    color: var(--primary-color);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
    display: block;
}

.section-title {
    font-size: 34px; /* Slightly smaller */
    font-weight: 800;
    color: #fff;
    margin: 0;
}

.link-all {
    font-size: 13px;
    color: var(--primary-color); /* Changed to primary */
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
}

.link-all:hover {
    color: var(--primary-color);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 60px;
}

.plan-card {
    background: rgba(12, 22, 44, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 50px 40px;
    position: relative;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(10px);
}

.plan-card:hover {
    transform: translateY(-10px);
    border-color: var(--secondary-color);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.plan-card.popular {
    border: 2px solid var(--primary-color);
    background: rgba(12, 22, 44, 0.8);
    box-shadow: 0 0 30px rgba(0, 229, 255, 0.15);
}

.badge-popular {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: #040914;
    padding: 6px 24px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 20px rgba(0, 229, 255, 0.4);
}

.plan-name {
    color: var(--secondary-color);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.plan-card.popular .plan-name {
    color: var(--primary-color);
}

.plan-price {
    font-size: 64px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 5px;
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.plan-price span {
    font-size: 24px;
    font-weight: 600;
    color: #fff;
}

.plan-type {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 35px;
    display: block;
}

.plan-features {
    margin-bottom: 40px;
    flex-grow: 1;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.plan-features li i {
    color: var(--primary-color);
    font-size: 12px;
}

.plan-price-month {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 25px;
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.plan-price-month small {
    font-size: 16px;
    color: var(--text-muted);
    font-weight: 400;
}

.plan-card .btn-primary {
    width: 100%;
    justify-content: center;
    padding: 16px;
    font-size: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.plan-card.popular .btn-primary {
    background: var(--primary-color);
    color: #040914;
}

.plan-card.popular .btn-primary:hover {
    background: #fff;
    color: #040914;
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.4);
}

/* PLAN FEATURES FOOTER */
.plan-features-footer {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 30px 20px 0;
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    width: 100%;
}

.pf-item {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    justify-content: center;
    white-space: nowrap;
    position: relative;
}

.pf-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 25%;
    height: 50%;
    width: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.pf-item i {
    color: var(--primary-color);
    font-size: 20px;
}

.pf-item span {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 0.5px;
}

/* =========================================
   COVERAGE SECTION
========================================= */
.coverage {
    padding: 100px 0;
    background: var(--surface-color);
    border-radius: 20px;
    margin: 0 20px;
}

.coverage-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.coverage-text h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.coverage-text p {
    color: var(--text-muted);
    margin-bottom: 30px;
}

.coverage-map {
    position: relative;
    /* Placeholder para el mapa */
    height: 400px;
    background: url('https://via.placeholder.com/600x400/0c162c/00E5FF?text=Map+Illustration') no-repeat center center / contain;
}

.coverage-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.c-stat-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.c-stat-icon {
    width: 50px;
    height: 50px;
    background: rgba(0, 229, 255, 0.1);
    color: var(--primary-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.c-stat-info h4 {
    font-size: 20px;
    margin-bottom: 5px;
}

.c-stat-info p {
    font-size: 14px;
    color: var(--text-muted);
}

/* =========================================
   TECHNOLOGY SECTION
========================================= */
.technology {
    padding: 100px 0;
}

.tech-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.tech-image {
    background: var(--surface-color);
    border-radius: 16px;
    height: 100%;
    min-height: 300px;
    /* Placeholder */
    background: url('https://via.placeholder.com/600x400/0c162c/00E5FF?text=Tech+Image') center / cover;
}

.tech-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.t-feature-card {
    background: var(--surface-color);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.05);
}

.t-feature-icon {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.t-feature-card h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

.t-feature-card p {
    font-size: 14px;
    color: var(--text-muted);
}

/* =========================================
   BRANDS SECTION
========================================= */
.brands {
    padding: 50px 0;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.brands h5 {
    color: var(--primary-color);
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.brands-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
    opacity: 0.6;
}

.brands-logos i {
    font-size: 40px; /* Placeholder for logos */
}

/* =========================================
   CTA SECTION
========================================= */
.cta-section {
    padding: 50px 0 100px;
}

.cta-box {
    background: linear-gradient(90deg, #0066FF 0%, #00E5FF 100%);
    border-radius: 20px;
    padding: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.2) 0%, transparent 50%);
}

.cta-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 30px;
    max-width: 500px;
    margin-left: 300px;
}

.cta-icon {
    display: none !important;
}

.cta-text h2 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 5px;
}

.cta-text p {
    font-size: 12px;
    opacity: 0.9;
}

.btn-dark {
    background: #040914;
    color: #fff;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}

.btn-dark:hover {
    background: #162445;
}

/* =========================================
   FOOTER
========================================= */
footer {
    background: var(--surface-color);
    padding: 80px 0 30px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 2fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-logo img {
    height: 100px;
    width: auto;
    margin-bottom: 20px;
}

.footer-about p {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
}

.social-links a:hover {
    background: var(--primary-color);
    color: #000;
}

.footer-widget h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 14px;
}

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

.footer-contact li {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    color: var(--text-muted);
    font-size: 14px;
}

.footer-contact i {
    color: var(--primary-color);
    margin-top: 3px;
}

.newsletter-form {
    display: flex;
    margin-top: 20px;
}

.newsletter-form input {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 12px 15px;
    border-radius: 6px 0 0 6px;
    color: #fff;
    width: 100%;
    outline: none;
}

.newsletter-form button {
    background: var(--secondary-color);
    border: none;
    color: #fff;
    padding: 0 20px;
    border-radius: 0 6px 6px 0;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background: var(--primary-color);
    color: #000;
}

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

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

/* =========================================
   RESPONSIVE DESIGN
========================================= */
.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    color: var(--text-main);
    font-size: 26px;
    cursor: pointer;
    z-index: 1001;
}
@media (max-width: 1180px) {
    .nav-links {
        gap: 15px;
    }
    .nav-links li a {
        font-size: 13px;
    }
    .header-right {
        gap: 15px;
    }
    .btn-primary {
        padding: 8px 16px;
        font-size: 13px;
    }
    .contact-phone {
        font-size: 13px;
    }
}
@media (max-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .coverage-content {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }
    
    .nav-links {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: var(--surface-color);
        padding: 80px 30px 30px;
        transition: var(--transition);
        box-shadow: -5px 0 15px rgba(0,0,0,0.5);
        z-index: 999;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .header-right {
        display: none;
    }
    
    .header-right.active {
        display: flex;
        flex-direction: column;
        position: fixed;
        bottom: 30px;
        right: 30px;
        z-index: 1000;
        background: var(--surface-color);
        padding: 20px;
        border-radius: 12px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.5);
    }

    .hero {
        padding: 100px 0 40px;
        min-height: auto;
    }

    .hero .container {
        padding: 0 20px;
        flex-direction: column;
    }

    .hero-content {
        max-width: 100%;
        text-align: center;
        margin: 0 auto 30px;
    }

    .hero h1 {
        font-size: 40px;
        margin-bottom: 20px;
    }

    .hero p {
        margin: 0 auto 30px;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-stats-wrapper {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        max-width: 100%;
        margin: 40px auto 0;
    }

    .stats-header {
        text-align: center;
    }

    .stats-header p {
        margin-left: 0;
        font-size: 14px;
    }

    .stats-header h2 {
        font-size: 48px;
    }

    .hero-stats {
        position: static;
        transform: none;
        flex-wrap: wrap;
        gap: 15px;
    }

    .stat-item {
        min-width: 45%;
    }

    .stat-item:not(:last-child)::after {
        display: none;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .benefit-item:not(:last-child)::after {
        display: none;
    }
    
    .pricing-wrapper {
        padding: 30px 20px;
    }

    .section-header {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 20px;
    }

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

    .plan-features-footer {
        flex-direction: column;
        gap: 20px;
    }

    .pf-item:not(:last-child)::after {
        display: none;
    }

    .coverage-text h2 {
        font-size: 28px;
    }

    .tech-grid, .coverage-content {
        grid-template-columns: 1fr;
    }

    .cta-box {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        padding: 30px 20px;
    }

    .cta-content {
        margin-left: 0;
        flex-direction: column;
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 32px;
    }
    
    .stats-header h2 {
        font-size: 38px;
    }
    
    .plan-price {
        font-size: 48px;
    }
    
    .nav-links {
        width: 100%;
        max-width: none;
    }
}

/* =========================================
   ABOUT PAGE STYLES
========================================= */
.breadcrumb {
    margin-bottom: 40px;
    font-size: 14px;
    color: var(--text-muted);
}
.breadcrumb a {
    color: var(--text-muted);
}
.breadcrumb span {
    color: var(--primary-color);
}
.breadcrumb i {
    font-size: 10px;
    margin: 0 10px;
}

.about-hero {
    padding: 160px 0 100px;
    min-height: 600px;
    color: #fff;
    position: relative;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
}
.about-hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: center;
}
.about-hero-content {
    max-width: 480px;
}
.about-hero-content h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 38px;
    line-height: 1.2;
    margin-bottom: 15px;
    font-weight: 800;
}
.about-hero-content h1 span {
    color: var(--primary-color);
    font-style: italic;
    text-shadow: 0 0 10px rgba(0, 229, 255, 0.4);
}
.about-hero-content p {
    color: var(--text-muted);
    font-size: 15px;
    margin-bottom: 25px;
    line-height: 1.6;
}

.about-hero-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding-left: 40px;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}
.about-list-item {
    display: flex;
    align-items: center;
    gap: 25px;
    background: none;
    padding: 0;
    border: none;
}
.about-list-icon {
    width: 64px;
    height: 64px;
    background: transparent;
    border: 1.5px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    flex-shrink: 0;
    box-shadow: inset 0 0 15px rgba(0, 229, 255, 0.15), 0 0 10px rgba(0, 229, 255, 0.05);
}
.about-list-text h4 {
    font-size: 18px;
    margin-bottom: 5px;
    font-weight: 700;
    color: #fff;
}
.about-list-text p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.4;
}

/* History & Timeline */
.history {
    padding: 80px 0;
}
.history-card {
    background: var(--surface-color);
    border-radius: 20px;
    padding: 60px;
    border: 1px solid rgba(255,255,255,0.05);
}
.history-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}
.history-text p {
    color: var(--text-muted);
    font-size: 16px;
}
.history-image {
    height: 300px;
    background: url('https://via.placeholder.com/600x400/0c162c/00E5FF?text=History+Fiber') center / cover;
    border-radius: 12px;
}

.timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    position: relative;
    padding-top: 40px;
}
.timeline::before {
    content: '';
    position: absolute;
    top: 55px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--secondary-color), var(--primary-color));
    opacity: 0.3;
}
.timeline-item {
    position: relative;
    text-align: center;
}
.timeline-dot {
    width: 30px;
    height: 30px;
    background: var(--bg-color);
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 12px;
    position: relative;
    z-index: 2;
}
.timeline-year {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}
.timeline-content h4 {
    font-size: 14px;
    margin-bottom: 5px;
}
.timeline-content p {
    font-size: 12px;
    color: var(--text-muted);
}

/* Stats Bar Simple */
.stats-bar-simple {
    padding: 60px 0;
    background: rgba(12, 22, 44, 0.5);
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.stats-grid-simple {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}
.stat-simple-item {
    display: flex;
    align-items: center;
    gap: 15px;
}
.stat-simple-item i {
    font-size: 24px;
    color: var(--primary-color);
    opacity: 0.8;
}
.stat-simple-info h4 {
    font-size: 18px;
    font-weight: 700;
}
.stat-simple-info p {
    font-size: 12px;
    color: var(--text-muted);
}

/* Values Grid */
.values {
    padding: 100px 0;
}
.values-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 40px;
}
.value-card {
    background: var(--surface-color);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.05);
    transition: var(--transition);
}
.value-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}
.value-icon {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 20px;
}
.value-card h4 {
    font-size: 16px;
    margin-bottom: 10px;
}
.value-card p {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Why Choose */
.why-choose {
    padding: 100px 0;
    background: var(--surface-color);
}
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: center;
}
.why-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
}
.why-content h2 span {
    color: var(--primary-color);
}
.why-content p {
    color: var(--text-muted);
    margin-bottom: 30px;
}

.features-grid-small {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}
.feature-item-small {
    display: flex;
    gap: 20px;
}
.feature-icon-small {
    width: 44px;
    height: 44px;
    background: rgba(0, 229, 255, 0.1);
    color: var(--primary-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}
.feature-text-small h4 {
    font-size: 16px;
    margin-bottom: 8px;
}
.feature-text-small p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.4;
}

/* Responsive Nosotros */
@media (max-width: 1024px) {
    .about-hero-grid, .history-grid, .why-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .about-hero-list {
        padding-left: 0;
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-top: 40px;
    }
    .timeline, .values-grid {
        grid-template-columns: 1fr 1fr;
    }
}
@media (max-width: 600px) {
    .timeline, .values-grid, .about-hero-list, .features-grid-small {
        grid-template-columns: 1fr;
    }
    .stats-grid-simple {
        justify-content: center;
    }
}

/* =========================================
   SERVICES PAGE STYLES
========================================= */
.services-hero {
    padding: 160px 0 100px;
    background: linear-gradient(rgba(4, 9, 20, 0.7), rgba(4, 9, 20, 0.7)), url('https://via.placeholder.com/1920x1080/040914/00E5FF?text=Fiber+Optic+Cable') center / cover;
}
.services-hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}
.services-hero-content h1 {
    font-size: 56px;
    margin-bottom: 20px;
}
.services-hero-content h1 span {
    color: var(--primary-color);
}
.services-hero-content p {
    color: var(--text-muted);
    font-size: 18px;
    margin-bottom: 30px;
}

.services-hero-icons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}
.s-hero-icon-item {
    text-align: center;
}
.s-icon-box {
    width: 60px;
    height: 60px;
    background: rgba(12, 22, 44, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 24px;
    margin: 0 auto 15px;
}
.s-hero-icon-item span {
    font-size: 14px;
    font-weight: 600;
}

/* Services Grid */
.services-main {
    padding: 100px 0;
}
.services-grid-page {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.service-card-page {
    background: var(--surface-color);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}
.service-card-page:hover {
    transform: translateY(-10px);
    border-color: var(--secondary-color);
    background: linear-gradient(180deg, rgba(12, 22, 44, 1) 0%, rgba(0, 102, 255, 0.05) 100%);
}
.service-card-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}
.service-card-icon {
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
    color: #fff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}
.service-card-page h3 {
    font-size: 20px;
}
.service-card-desc {
    color: var(--text-muted);
    font-size: 15px;
    margin-bottom: 25px;
    flex-grow: 1;
}
.service-card-features {
    list-style: none;
    margin-bottom: 30px;
}
.service-card-features li {
    font-size: 14px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}
.service-card-features i {
    color: var(--primary-color);
    font-size: 16px;
}
.service-card-link {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Advisory Section */
.advisory-cta {
    padding: 0 0 100px;
}
.advisory-box {
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.advisory-content {
    display: flex;
    align-items: center;
    gap: 30px;
}
.advisory-icon {
    width: 70px;
    height: 70px;
    background: rgba(0, 229, 255, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
}
.advisory-icon i {
    color: var(--primary-color);
}
.advisory-text h3 {
    font-size: 24px;
    margin-bottom: 5px;
}
.advisory-text p {
    color: var(--text-muted);
}
.btn-cyan {
    background: var(--primary-color);
    color: #040914;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
}
.btn-cyan:hover {
    background: #00b8cc;
}

/* Responsive */
@media (max-width: 1024px) {
    .services-hero-grid {
        grid-template-columns: 1fr;
    }
    .services-grid-page {
        grid-template-columns: 1fr 1fr;
    }
    .advisory-box {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    .advisory-content {
        flex-direction: column;
    }
}
@media (max-width: 600px) {
    .services-grid-page {
        grid-template-columns: 1fr;
    }
    .services-hero-content h1 {
        font-size: 40px;
    }
}


}

/* =========================================
   PLANES PAGE STYLES
========================================= */
.planes-hero {
    padding: 160px 0 80px;
}
.planes-hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}
.planes-hero-content h1 {
    font-size: 52px;
    line-height: 1.1;
    margin-bottom: 20px;
}
.planes-hero-content h1 span {
    color: var(--primary-color);
}
.planes-hero-content p {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.hero-planes-features {
    display: flex;
    gap: 40px;
}
.hp-feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
}
.hp-icon {
    width: 44px;
    height: 44px;
    background: rgba(0, 229, 255, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    border: 1px solid rgba(0, 229, 255, 0.2);
}
.hp-text h4 {
    font-size: 16px;
    margin-bottom: 3px;
}
.hp-text p {
    font-size: 12px;
    color: var(--text-muted);
}

.planes-hero-visual {
    height: 400px;
    background: url('https://via.placeholder.com/600x400/040914/00E5FF?text=Digital+Home+Fiber') center / contain no-repeat;
}

/* Features Bar */
.planes-features-bar {
    background: rgba(12, 22, 44, 0.5);
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.p-features-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}
.p-feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
}
.p-feature-item i {
    font-size: 24px;
    color: var(--primary-color);
    opacity: 0.8;
}
.p-feature-item h4 {
    font-size: 14px;
    font-weight: 700;
}
.p-feature-item p {
    font-size: 11px;
    color: var(--text-muted);
}

/* Pricing Overrides */
.planes-grid-section {
    padding: 100px 0;
}
.pricing-card .short-desc {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 20px;
    text-align: center;
}
.performance-note {
    font-size: 12px;
    color: var(--primary-color);
    margin-top: 15px;
    text-align: center;
    font-weight: 600;
}

/* Comparison Table */
.comparison-section {
    padding: 80px 0 120px;
}
.comparison-wrapper {
    overflow-x: auto;
    background: var(--surface-color);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 800px;
}
.comparison-table th, .comparison-table td {
    padding: 25px 20px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.comparison-table th {
    background: rgba(12, 22, 44, 0.8);
}
.feature-col {
    text-align: left !important;
    width: 250px;
    color: var(--primary-color);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}
.comparison-table td:first-child {
    text-align: left;
    font-weight: 600;
    font-size: 14px;
}
.comparison-table td:first-child i {
    margin-right: 10px;
    color: var(--primary-color);
    opacity: 0.7;
    width: 20px;
}
.p-name {
    font-size: 16px;
    font-weight: 700;
}
.p-speed {
    font-size: 13px;
    color: var(--text-muted);
}
.p-pop {
    display: inline-block;
    font-size: 10px;
    background: var(--primary-color);
    color: #040914;
    padding: 2px 8px;
    border-radius: 4px;
    margin-top: 5px;
    font-weight: 700;
}
.text-primary { color: var(--primary-color); }
.table-note {
    margin-top: 20px;
    font-size: 12px;
    color: var(--text-muted);
}

@media (max-width: 1024px) {
    .planes-hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .hero-planes-features {
        justify-content: center;
    }
    .p-features-grid {
        justify-content: center;
    }
}
@media (max-width: 600px) {
    .hero-planes-features {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    .planes-hero-content h1 {
        font-size: 36px;
    }
}

/* =========================================
   CONSULTA PAGE STYLES
========================================= */
.consulta-hero {
    padding: 160px 0 60px;
}
.consulta-hero-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
}
.consulta-hero-content h1 {
    font-size: 48px;
    margin-bottom: 15px;
}
.consulta-hero-content h1 span {
    color: var(--primary-color);
}
.consulta-hero-content p {
    color: var(--text-muted);
    font-size: 18px;
    max-width: 600px;
}

/* Search Section */
.search-section {
    padding-bottom: 80px;
}
.search-card {
    background: var(--surface-color);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px;
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 60px;
    align-items: center;
}
.search-form-wrapper h4 {
    font-size: 14px;
    color: var(--primary-color);
    margin-bottom: 10px;
}
.search-form-wrapper p {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 25px;
}
.search-form {
    display: flex;
    gap: 15px;
    align-items: flex-end;
}
.search-form .form-group {
    flex: 1;
}
.search-form label {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 8px;
}
.search-form label i {
    margin-right: 5px;
    color: var(--primary-color);
}
.search-form input, .search-form select {
    background: rgba(12, 22, 44, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 12px 15px;
    border-radius: 8px;
    width: 100%;
}
.btn-search {
    background: var(--secondary-color);
    color: #fff;
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
}

.help-box {
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    padding-left: 40px;
}
.help-content {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}
.help-content i {
    font-size: 32px;
    color: var(--primary-color);
}
.help-text h4 {
    font-size: 16px;
}
.help-text p {
    font-size: 12px;
    color: var(--text-muted);
}
.help-link {
    color: var(--primary-color);
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Results */
.results-section {
    padding-bottom: 100px;
}
.results-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 30px;
}
.account-summary-card, .invoice-detail-card {
    background: var(--surface-color);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px;
}
.account-summary-card h4, .invoice-detail-card h4 {
    font-size: 14px;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.client-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
}
.info-item span {
    font-size: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
}
.info-item p {
    font-size: 15px;
    font-weight: 600;
    margin-top: 5px;
}

.billing-summary-box {
    background: rgba(12, 22, 44, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}
.total-to-pay span {
    font-size: 11px;
    color: var(--text-muted);
}
.total-to-pay h2 {
    font-size: 40px;
    color: #fff;
    margin: 5px 0;
}
.total-to-pay p {
    font-size: 11px;
    color: var(--text-muted);
}

.due-date-box {
    display: flex;
    align-items: center;
    gap: 15px;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    padding-left: 30px;
}
.due-icon {
    font-size: 32px;
    color: var(--primary-color);
}
.due-info span {
    font-size: 11px;
    color: var(--text-muted);
}
.due-info h4 {
    font-size: 20px !important;
    margin: 5px 0 !important;
    color: #fff !important;
}
.due-info p {
    font-size: 12px;
}

.history-cta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
}
.h-text {
    display: flex;
    gap: 15px;
    align-items: center;
    max-width: 400px;
}
.h-text i {
    color: var(--primary-color);
}
.h-text p {
    font-size: 12px;
    color: var(--text-muted);
}
.btn-history {
    font-size: 12px;
    color: var(--primary-color);
    font-weight: 700;
    border: 1px solid var(--primary-color);
    padding: 10px 20px;
    border-radius: 8px;
}

/* Invoice Detail */
.invoice-list {
    list-style: none;
    margin-bottom: 30px;
}
.invoice-list li {
    display: flex;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.li-icon {
    width: 32px;
    color: var(--primary-color);
    font-size: 18px;
}
.invoice-list li span {
    flex: 1;
    font-size: 14px;
    color: var(--text-muted);
}
.invoice-list li p {
    font-weight: 700;
}
.invoice-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}
.invoice-total span {
    font-size: 14px;
    font-weight: 700;
}
.invoice-total p {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.e-invoice-box {
    background: rgba(12, 22, 44, 0.5);
    padding: 20px;
    border-radius: 12px;
    display: flex;
    gap: 20px;
}
.e-invoice-box i {
    font-size: 32px;
    color: var(--secondary-color);
}
.e-text h4 {
    font-size: 14px !important;
    margin-bottom: 5px !important;
}
.e-text p {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 10px;
}
.e-text a {
    color: var(--primary-color);
    font-size: 12px;
    font-weight: 700;
}

/* Payment Methods */
.payment-methods-section {
    padding-bottom: 100px;
}
.methods-title {
    font-size: 14px;
    color: var(--primary-color);
    margin-bottom: 30px;
}
.methods-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr) 250px;
    gap: 20px;
}
.method-card {
    background: var(--surface-color);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 20px;
}
.method-header {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}
.method-icon {
    font-size: 20px;
    color: var(--primary-color);
}
.method-info h5 {
    font-size: 14px;
    margin-bottom: 5px;
}
.method-info p {
    font-size: 11px;
    color: var(--text-muted);
}
.btn-method {
    display: block;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--primary-color);
    font-size: 10px;
    font-weight: 700;
    padding: 8px;
    border-radius: 4px;
}

.security-badge-card {
    background: rgba(0, 102, 255, 0.05);
    border: 1px solid rgba(0, 102, 255, 0.2);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    gap: 15px;
}
.security-badge-card .s-icon {
    font-size: 24px;
    color: var(--secondary-color);
}
.security-badge-card h5 {
    font-size: 14px;
    margin-bottom: 5px;
}
.security-badge-card p {
    font-size: 11px;
    color: var(--text-muted);
}

.error-msg {
    color: #dc3545;
    font-size: 12px;
    margin-top: 10px;
}

/* Responsive Consulta */
@media (max-width: 1024px) {
    .search-card, .results-grid, .methods-grid {
        grid-template-columns: 1fr;
    }
    .help-box {
        border-left: none;
        padding-left: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-top: 30px;
    }
    .search-form {
        flex-direction: column;
        align-items: stretch;
    }
    .due-date-box {
        border-left: none;
        padding-left: 0;
        margin-top: 20px;
    }
    .billing-summary-box {
        flex-direction: column;
        align-items: flex-start;
    }
}
/* =========================================
   TECH SECTION
========================================= */
.tech-section {
    padding: 80px 0;
    background: #02060e;
}

.tech-wrapper {
    background: #040914;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 30px;
    padding: 60px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
}

.tech-wrapper .section-subtitle {
    margin-bottom: 40px;
}

.tech-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    align-items: center;
}

.tech-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 229, 255, 0.15);
}

.tech-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.tech-card {
    background: rgba(12, 22, 44, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    padding: 25px;
    display: flex;
    gap: 20px;
    transition: var(--transition);
}

.tech-card:hover {
    background: rgba(12, 22, 44, 0.8);
    border-color: rgba(0, 229, 255, 0.2);
    transform: translateY(-5px);
}

.tech-icon {
    width: 50px;
    height: 50px;
    background: rgba(0, 229, 255, 0.1);
    border: 1px solid rgba(0, 229, 255, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.tech-info h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--text-main);
}

.tech-info p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
}

@media (max-width: 1024px) {
    .tech-content {
        grid-template-columns: 1fr;
    }
    .tech-features {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .tech-features {
        grid-template-columns: 1fr;
    }
    .tech-wrapper {
        padding: 30px;
    }
}
/* SPEED TEST SECTION */
.speed-test-section {
    padding: 100px 0;
    background: #040914;
}

.speed-test-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 50px;
}

.speed-test-container {
    background: var(--surface-color);
    border-radius: 16px;
    overflow: hidden;
    margin: 30px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.fast-iframe {
    background: transparent !important;
    display: block;
    filter: invert(1) hue-rotate(180deg) brightness(1.2) contrast(0.9) !important;
    border: none;
}

.speed-test-footer {
    text-align: center;
    color: #a0aab2;
    font-size: 0.9rem;
}

.speed-test-footer i {
    color: #00E5FF;
    margin-right: 5px;
}

.text-center {
    text-align: center;
}

.section-desc {
    color: #a0aab2;
    max-width: 600px;
    margin: 10px auto 0;
}

@media (max-width: 768px) {
    .speed-test-wrapper {
        padding: 30px 20px;
        margin: 0 15px;
    }
    .speed-test-section {
        padding: 60px 0;
    }
}
