/* ==========================================================================
   ESLAN - Main Stylesheet
   Consolidated CSS for all pages
   ========================================================================== */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: #2c3e50;
    line-height: 1.6;
}

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

/* ==========================================================================
   2. HEADER & NAVIGATION
   ========================================================================== */
header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 2rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    height: 110px;
}

nav {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 80px;
    cursor: pointer;
    transition: transform 0.3s;
}

.logo:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    gap: 0;
    list-style: none;
    align-items: center;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: #45525B;
    text-decoration: none;
    font-weight: 600;
    padding: 1.5rem 1.5rem;
    display: block;
    transition: all 0.3s;
    font-size: 1.1rem;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: #45525B;
    transition: width 0.3s;
}

.nav-link:hover {
    color: #45525B;
}

.nav-link:hover::after {
    width: 70%;
}

.switch-link {
    color: #6c757d;
    text-decoration: none;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    border: 1px solid #e9ecef;
    border-radius: 5px;
    transition: all 0.3s;
}

.switch-link:hover {
    background: #f8f9fa;
    border-color: #45525B;
    color: #45525B;
}

.cta-button {
    background: #45525B;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    margin-left: 1rem;
    box-shadow: 0 2px 10px rgba(69, 82, 91, 0.2);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(69, 82, 91, 0.4);
}

/* ==========================================================================
   3. MEGA MENU
   ========================================================================== */
.mega-menu {
    position: fixed;
    top: 110px;
    left: 0;
    right: 0;
    width: 100vw;
    background: white;
    box-shadow: 0 15px 50px rgba(0,0,0,0.12);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-top: 1px solid #e9ecef;
    max-height: calc(100vh - 76px);
    overflow-y: auto;
}

.nav-item:hover .mega-menu {
    opacity: 1;
    visibility: visible;
}

.mega-menu-container {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    min-height: 500px;
}

.mega-menu-sidebar {
    width: 320px;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    padding: 3rem 0;
    border-right: 1px solid #e9ecef;
    flex-shrink: 0;
}

.mega-menu-category {
    padding: 1.2rem 2.5rem;
    color: #6c757d;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 1.2rem;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
    cursor: pointer;
    border-left: 4px solid transparent;
}

.mega-menu-category:hover,
.mega-menu-category.active {
    color: #45525B;
    background: white;
    border-left-color: #45525B;
    padding-left: 3rem;
}

.mega-menu-category-icon {
    font-size: 1.8rem;
    width: 35px;
    text-align: center;
}

.mega-menu-content {
    flex: 1;
    padding: 3rem 4rem;
    background: white;
}

.mega-menu-section {
    display: none;
}

.mega-menu-section.active {
    display: block;
    animation: fadeInUp 0.4s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.mega-menu-section-title {
    font-size: 1.8rem;
    color: #45525B;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.mega-menu-section-subtitle {
    color: #6c757d;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.mega-menu-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 2rem;
}

.mega-menu-card {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 2rem;
    text-decoration: none;
    transition: all 0.3s;
    border: 2px solid transparent;
    display: flex;
    gap: 1.5rem;
}

.mega-menu-card:hover {
    background: white;
    border-color: #45525B;
    box-shadow: 0 10px 30px rgba(91, 143, 163, 0.12);
    transform: translateY(-5px);
}

.mega-menu-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    flex-shrink: 0;
    background: #45525B;
    transition: transform 0.3s;
}

.mega-menu-card:hover .mega-menu-card-icon {
    transform: scale(1.1);
}

.mega-menu-card-content {
    flex: 1;
}

.mega-menu-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #45525B;
    margin-bottom: 0.3rem;
}

.mega-menu-card-desc {
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.mega-menu-card-arrow {
    font-size: 1.5rem;
    color: #45525B;
    font-weight: 700;
}

/* Mega Menu Card Colors */
.mega-menu-card-icon.connect {
    background: linear-gradient(135deg, #2D5F3E 0%, #3a7a50 100%) !important;
}

.mega-menu-card-icon.voice {
    background: linear-gradient(135deg, #5B8FA3 0%, #6fa3b8 100%) !important;
}

.mega-menu-card-icon.cloud {
    background: linear-gradient(135deg, #C41E3A 0%, #d83851 100%) !important;
}

.mega-menu-card-icon.digital {
    background: linear-gradient(135deg, #5B8FA3 0%, #6fa3b8 100%) !important;
}

.mega-menu-card.connect:hover {
    border-color: #2D5F3E !important;
    box-shadow: 0 10px 30px rgba(45, 95, 62, 0.12) !important;
}

.mega-menu-card.voice:hover {
    border-color: #5B8FA3 !important;
    box-shadow: 0 10px 30px rgba(91, 143, 163, 0.12) !important;
}

.mega-menu-card.cloud:hover {
    border-color: #C41E3A !important;
    box-shadow: 0 10px 30px rgba(196, 30, 58, 0.12) !important;
}

.mega-menu-card.digital:hover {
    border-color: #5B8FA3 !important;
    box-shadow: 0 10px 30px rgba(91, 143, 163, 0.12) !important;
}

/* ==========================================================================
   4. MOBILE MENU
   ========================================================================== */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: #45525B;
    padding: 0.5rem;
}

.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 110px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.4s;
}

.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
}

.mobile-menu {
    position: fixed;
    top: 110px;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    z-index: 999;
    overflow: hidden;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -5px 0 20px rgba(0,0,0,0.1);
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu-level {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    overflow-y: auto;
    padding: 1.5rem;
    padding-top: 1rem;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-submenu {
    transform: translateX(100%);
}

.mobile-submenu.active {
    transform: translateX(0);
}

.mobile-menu-category {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem;
    background: white;
    border-bottom: 1px solid #e9ecef;
    cursor: pointer;
    transition: background 0.3s;
}

.mobile-menu-category:hover {
    background: #f8f9fa;
}

.mobile-menu-category-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mobile-menu-category-icon {
    font-size: 1.5rem;
    width: 30px;
}

.mobile-menu-category-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: #45525B;
}

.mobile-menu-arrow {
    font-size: 1.3rem;
    color: #6c757d;
}

.mobile-menu-back {
    padding: 1rem 0.5rem;
    margin-bottom: 1rem;
    cursor: pointer;
    color: #45525B;
    font-weight: 600;
}

.mobile-submenu-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #45525B;
    margin-bottom: 1.5rem;
    padding-bottom: 0.8rem;
    border-bottom: 3px solid #5B8FA3;
}

.mobile-menu-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem;
    background: #f8f9fa;
    border-radius: 10px;
    margin-bottom: 0.8rem;
    text-decoration: none;
    transition: all 0.3s;
}

.mobile-menu-item:hover {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transform: translateX(5px);
}

.mobile-menu-item-content {
    flex: 1;
}

.mobile-menu-item-title {
    font-size: 1rem;
    font-weight: 600;
    color: #45525B;
    margin-bottom: 0.3rem;
}

.mobile-menu-item-desc {
    font-size: 0.85rem;
    color: #6c757d;
    line-height: 1.3;
}

.mobile-menu-item-arrow,
.mobile-menu-item-price {
    font-size: 1.2rem;
    color: #45525B;
    margin-left: 1rem;
}

.mobile-menu-link {
    display: block;
    padding: 1rem;
    color: #45525B;
    text-decoration: none;
    border-bottom: 1px solid #e9ecef;
    transition: all 0.3s;
}

.mobile-menu-link:hover {
    background: #f8f9fa;
    padding-left: 1.5rem;
}

.mobile-menu-divider {
    height: 1px;
    background: #e9ecef;
    margin: 1rem 0;
}

/* ==========================================================================
   5. HERO SECTIONS
   ========================================================================== */

/* Hero - Homepage (index.php) */
.hero {
    background: linear-gradient(135deg, #2c3e50 0%, #45525B 100%);
    color: white;
    padding: 6rem 2rem;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    max-width: 1200px;
    text-align: center;
}

.hero h1 {
    font-size: 4rem;
    font-weight: bold;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero .highlight {
    color: #fbbf24;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.tagline {
    font-size: 1.5rem;
    margin-bottom: 3rem;
    opacity: 0.9;
}

.hero-question {
    font-size: 1.8rem;
    margin-bottom: 3rem;
    font-weight: 600;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: white;
    color: #45525B;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.hero-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.hero-button.primary {
    background: white;
    color: #45525B;
}

.hero-button.secondary {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.hero-badges {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    font-size: 0.9rem;
    margin-top: 30px;
}

/* Hero - Subpages (telephonie-fixe, flat-mobile) */
.hero-subpage {
    background: linear-gradient(135deg, #3D4449, #2D5F3E);
    color: white;
    padding: 150px 20px 80px;
    margin-top: 0;
}

.hero-subpage .hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hero-subpage h1 {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.2;
}

/* ==========================================================================
   6. CHOICE CARDS (Homepage)
   ========================================================================== */
.choice-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto 3rem;
}

.choice-card {
    background: white;
    color: #2c3e50;
    padding: 2.5rem;
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    border: 3px solid transparent;
}

.choice-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    border-color: #2D5F3E;
}

.choice-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.choice-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #45525B;
}

.choice-desc {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 1.5rem;
}

.choice-features {
    list-style: none;
    text-align: left;
}

.choice-features li {
    padding: 0.5rem 0;
    color: #45525B;
    font-size: 1rem;
}

.choice-features li::before {
    content: '✓';
    color: #2D5F3E;
    font-weight: bold;
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

/* ==========================================================================
   7. QUICK STATS
   ========================================================================== */
.quick-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
    padding-top: 3rem;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* ==========================================================================
   8. SERVICES OVERVIEW
   ========================================================================== */
.services-overview {
    padding: 5rem 2rem;
    background: white;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    text-align: center;
    color: #6c757d;
    margin-bottom: 3rem;
}

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

.service-card {
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s;
    border: 2px solid transparent;
}

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

.service-card.connect:hover { border-color: #2D5F3E; }
.service-card.voice:hover { border-color: #5B8FA3; }
.service-card.cloud:hover { border-color: #C41E3A; }
.service-card.digital:hover { border-color: #5B8FA3; }

.service-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.service-name {
    font-size: 1.8rem;
    color: #45525B;
    margin-bottom: 0.5rem;
}

.service-tagline {
    color: #6c757d;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.service-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #2D5F3E;
    margin-bottom: 0.5rem;
}

.service-link {
    display: inline-block;
    margin-top: 1rem;
    color: #45525B;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.service-link:hover {
    color: #2D5F3E;
    transform: translateX(5px);
}

/* ==========================================================================
   9. WHY ESLAN SECTION
   ========================================================================== */
.why-eslan {
    padding: 5rem 2rem;
    background: #f8f9fa;
}

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

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-title {
    font-size: 1.3rem;
    color: #45525B;
    margin-bottom: 0.8rem;
}

.feature-desc {
    color: #6c757d;
    line-height: 1.6;
}

/* Why ESLAN - B2B Style */
.why-eslan-section {
    padding: 0 2rem 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.why-eslan-b2b {
    background: linear-gradient(135deg, #45525B 0%, #2D5F3E 100%);
    padding: 4rem 3rem;
    border-radius: 15px;
    color: white;
}

.why-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 700;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

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

.why-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.why-card-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.why-card-desc {
    font-size: 1.05rem;
    line-height: 1.7;
    opacity: 0.95;
}

/* ==========================================================================
   10. ZONE SECTION
   ========================================================================== */
.zone-section {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #2D5F3E 0%, #3a7a50 100%);
    color: white;
    text-align: center;
}

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

.zone-list {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
    font-size: 1.2rem;
}

/* ==========================================================================
   11. CTA SECTION
   ========================================================================== */
.cta-section {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #45525B 0%, #2c3e50 100%);
    color: white;
    text-align: center;
}

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

.cta-section p {
    font-size: 1.25rem;
    margin-bottom: 30px;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.cta-btn {
    padding: 1.2rem 2.5rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
    transition: all 0.3s;
}

.cta-btn.primary {
    background: white;
    color: #45525B;
}

.cta-btn.secondary {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* ==========================================================================
   12. OFFERS CAROUSEL
   ========================================================================== */
.offers-carousel {
    background: linear-gradient(to bottom, white, #f8f9fa);
    padding: 4rem 2rem;
    overflow: hidden;
}

.carousel-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.carousel-track {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 1rem 0;
    justify-content: center;
}

.carousel-track::-webkit-scrollbar {
    display: none;
}

.offer-card {
    min-width: 360px;
    background: white;
    border-radius: 20px;
    padding: 0;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    transition: all 0.4s;
    position: relative;
    border: 3px solid transparent;
}

.offer-card:hover {
    transform: scale(1.05) rotate(-1deg);
    box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}

.offer-card.green:hover { border-color: #2D5F3E; }
.offer-card.blue:hover { border-color: #5B8FA3; }
.offer-card.red:hover { border-color: #C41E3A; }

.offer-card-ribbon {
    position: absolute;
    top: 20px;
    right: -35px;
    background: #C41E3A;
    color: white;
    padding: 0.4rem 2.5rem;
    transform: rotate(45deg);
    font-weight: 700;
    font-size: 0.7rem;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.offer-card-ribbon.blue { background: #5B8FA3; }
.offer-card-ribbon.green { background: #2D5F3E; }
.offer-card-ribbon.red { background: #C41E3A; }

.offer-card-header {
    padding: 2rem 2rem 1rem;
    text-align: center;
}

.offer-card-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.offer-card-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: #45525B;
    margin-bottom: 0.5rem;
}

.offer-card-subtitle {
    color: #6c757d;
    font-size: 0.95rem;
}

.offer-card-price-box {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 1.5rem 2rem;
    text-align: center;
    border-top: 2px dashed #d1d5db;
    border-bottom: 2px dashed #d1d5db;
}

.offer-card-price {
    font-size: 3rem;
    font-weight: 700;
    color: #C41E3A;
    line-height: 1;
}

.offer-card-price.green { color: #2D5F3E; }
.offer-card-price.blue { color: #5B8FA3; }
.offer-card-price.red { color: #C41E3A; }

.offer-card-period {
    font-size: 1rem;
    color: #6c757d;
    font-weight: 400;
}

.offer-card-economy {
    background: #2D5F3E;
    color: white;
    display: inline-block;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    margin-top: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
}

.offer-card-economy.blue { background: #5B8FA3; }
.offer-card-economy.red { background: #C41E3A; }

.offer-card-features {
    padding: 1.5rem 2rem;
}

.offer-card-feature {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    color: #45525B;
    font-size: 0.95rem;
}

.offer-card-feature::before {
    content: '✓';
    color: #2D5F3E;
    font-weight: 700;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.offer-card-btn {
    margin: 0 2rem 2rem;
    padding: 1.2rem;
    background: linear-gradient(135deg, #2D5F3E 0%, #3a7a50 100%);
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    display: block;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(45, 95, 62, 0.3);
}

.offer-card-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(45, 95, 62, 0.5);
}

.offer-card-btn.blue {
    background: linear-gradient(135deg, #5B8FA3 0%, #6fa3b8 100%);
    box-shadow: 0 4px 15px rgba(91, 143, 163, 0.3);
}

.offer-card-btn.blue:hover {
    box-shadow: 0 8px 25px rgba(91, 143, 163, 0.5);
}

.offer-card-btn.red {
    background: linear-gradient(135deg, #C41E3A 0%, #d83851 100%);
    box-shadow: 0 4px 15px rgba(196, 30, 58, 0.3);
}

.offer-card-btn.red:hover {
    box-shadow: 0 8px 25px rgba(196, 30, 58, 0.5);
}

/* Carousel Navigation */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 2rem;
    color: #45525B;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s;
    z-index: 10;
}

.carousel-btn:hover {
    box-shadow: 0 6px 25px rgba(0,0,0,0.15);
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn.prev { left: -25px; }
.carousel-btn.next { right: -25px; }

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #d1d5db;
    cursor: pointer;
    transition: all 0.3s;
}

.carousel-dot.active {
    background: #45525B;
    width: 30px;
    border-radius: 5px;
}

/* ==========================================================================
   13. STATS CARDS
   ========================================================================== */
.stats-cards-section {
    padding: 4rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.stats-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.stat-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border-left: 4px solid #2D5F3E;
    transition: all 0.3s;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.stat-card.blue { border-left-color: #5B8FA3; }
.stat-card.red { border-left-color: #C41E3A; }

.stats-cards .stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #2D5F3E;
    margin-bottom: 0.5rem;
}

.stat-card.blue .stat-number { color: #5B8FA3; }
.stat-card.red .stat-number { color: #C41E3A; }

.stats-cards .stat-label {
    color: #6c757d;
    font-size: 1rem;
}

/* Hero Stats Section (B2C) */
.hero-stats-section {
    padding: 4rem 2rem;
    background: #f8f9fa;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

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

.hero-stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #2D5F3E;
    margin-bottom: 0.5rem;
}

.hero-stat-label {
    color: #6c757d;
    font-size: 1rem;
}

/* ==========================================================================
   14. TESTIMONIALS
   ========================================================================== */
.testimonials-section {
    padding: 4rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.section-title-center {
    text-align: center;
    font-size: 2rem;
    color: #45525B;
    margin-bottom: 3rem;
    font-weight: 700;
}

/* ==========================================================================
   15. PRICING & COMPARISON
   ========================================================================== */
.pricing-section {
    padding: 80px 20px;
    background: #f9fafb;
}

.pricing-hero {
    text-align: center;
    margin-bottom: 50px;
}

.pricing-hero .big-price {
    font-size: 5rem;
    font-weight: bold;
    color: #2D5F3E;
}

.pricing-hero .big-price span {
    font-size: 2rem;
}

.pricing-comparison {
    max-width: 900px;
    margin: 0 auto 50px;
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table th {
    text-align: left;
    padding: 15px;
    border-bottom: 2px solid #e5e7eb;
    font-size: 1.125rem;
}

.comparison-table td {
    padding: 15px;
    border-bottom: 1px solid #e5e7eb;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.provider-name {
    font-weight: bold;
}

.best-price {
    color: #10b981;
    font-weight: bold;
    font-size: 1.25rem;
}

/* ==========================================================================
   16. PLANS & OFFERS
   ========================================================================== */
.plan-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 12px 30px;
    border-radius: 8px;
    border: 2px solid #e5e7eb;
    background: white;
    font-weight: 600;
    font-size: 1.125rem;
    cursor: pointer;
    transition: all 0.3s;
}

.tab-btn.active {
    background: linear-gradient(135deg, #3D4449, #2D5F3E);
    color: white;
    border-color: #2D5F3E;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.plan-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    border: 2px solid #e5e7eb;
}

.plan-card:hover {
    transform: translateY(-10px);
    border-color: #2D5F3E;
}

.plan-card.recommended {
    border-color: #2D5F3E;
    border-width: 3px;
}

.plan-badge {
    background: #2D5F3E;
    color: white;
    text-align: center;
    padding: 8px;
    font-size: 0.875rem;
    font-weight: 600;
}

.plan-header {
    padding: 40px 30px;
    text-align: center;
    background: linear-gradient(135deg, #f9fafb, white);
}

.plan-header h3 {
    font-size: 1.75rem;
    font-weight: bold;
    margin-bottom: 15px;
    color: #1f2937;
}

.plan-price {
    font-size: 3rem;
    font-weight: bold;
    color: #2D5F3E;
    margin: 20px 0;
}

.plan-price span {
    font-size: 1.25rem;
}

.plan-body {
    padding: 30px;
}

.plan-features {
    list-style: none;
    margin-bottom: 25px;
}

.plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    color: #4b5563;
}

.plan-features li::before {
    content: "✓";
    color: #10b981;
    font-weight: bold;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.plan-features .feature-label {
    font-weight: 600;
    color: #1f2937;
}

/* Offers Grid */
.offers-section {
    padding: 80px 20px;
    background: white;
}

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

.offer-card-static {
    background: linear-gradient(135deg, #f9fafb, white);
    border: 2px solid #e5e7eb;
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s;
}

.offer-card-static:hover {
    transform: translateY(-8px);
    border-color: #2D5F3E;
    box-shadow: 0 10px 30px rgba(45, 95, 62, 0.1);
}

.offer-card-static h3 {
    font-size: 1.75rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #1f2937;
}

.offer-price-static {
    font-size: 2.5rem;
    font-weight: bold;
    color: #2D5F3E;
    margin-bottom: 20px;
}

.offer-price-static span {
    font-size: 1rem;
    font-weight: normal;
}

.offer-features-static {
    list-style: none;
    text-align: left;
    margin-bottom: 25px;
}

.offer-features-static li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
    color: #4b5563;
}

.offer-features-static li::before {
    content: "✓";
    color: #10b981;
    font-weight: bold;
    font-size: 1.25rem;
    flex-shrink: 0;
}

/* ==========================================================================
   17. FAQ SECTION
   ========================================================================== */
.faq-section {
    padding: 80px 20px;
    background: #f9fafb;
}

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

details {
    background: white;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: all 0.5s ease;
}

details[open] {
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

summary {
    font-weight: bold;
    font-size: 1.125rem;
    color: #1f2937;
    transition: color 0.3s;
}

summary:hover {
    color: #2D5F3E;
}

details[open] summary {
    margin-bottom: 15px;
}

details > *:not(summary) {
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================================================
   18. STATS SECTION (Subpages)
   ========================================================================== */
.stats-section {
    padding: 80px 20px;
    background: white;
}

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

.stats-section .stat-card {
    text-align: center;
    padding: 30px;
    background: #f9fafb;
    border-radius: 16px;
    border-left: none;
}

.stats-section .stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: #2D5F3E;
    margin-bottom: 10px;
}

.stats-section .stat-label {
    font-size: 1.125rem;
    color: #1f2937;
}

/* ==========================================================================
   19. FEATURES SECTION
   ========================================================================== */
.features-section {
    padding: 80px 20px;
    background: #f9fafb;
}

.features-section .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.features-section .feature-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.features-section .feature-card:hover {
    transform: translateY(-8px);
}

.features-section .feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.features-section .feature-card h3 {
    font-size: 1.25rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #1f2937;
}

.features-section .feature-card p {
    color: #6b7280;
}

/* ==========================================================================
   20. NETWORK SECTION
   ========================================================================== */
.network-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #eff6ff, #f9fafb);
}

.network-info {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.network-logo {
    font-size: 3rem;
    font-weight: bold;
    color: #2D5F3E;
    margin: 30px 0;
}

.network-badge {
    display: inline-block;
    background: white;
    padding: 15px 30px;
    border-radius: 12px;
    margin: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    font-weight: 600;
}

/* ==========================================================================
   21. BUTTONS
   ========================================================================== */
.btn {
    padding: 10px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, #2D5F3E, #3d7a4f) !important;
    color: white !important;
}

.btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

/* ==========================================================================
   21. SERVICES MINIMAL (B2C)
   ========================================================================== */
.services-minimal-section {
    padding: 5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.services-minimal {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
}

.service-minimal {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.service-minimal-icon {
    font-size: 3.5rem;
    flex-shrink: 0;
}

.service-minimal-content {
    flex: 1;
}

.service-minimal-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #45525B;
    margin-bottom: 1rem;
}

.service-minimal-desc {
    color: #6c757d;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.service-minimal-link {
    color: #2D5F3E;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
}

.service-minimal-link:hover {
    color: #3a7a50;
    gap: 1rem;
}

.service-minimal-link::after {
    content: '→';
}

/* CTA Final B2C */
.cta-final-section {
    padding: 0 2rem 5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.cta-final-block {
    background: linear-gradient(135deg, #2D5F3E 0%, #3a7a50 100%);
    padding: 4rem 3rem;
    border-radius: 20px;
    text-align: center;
    color: white;
}

.cta-final-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-final-subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-final-button {
    background: white;
    color: #2D5F3E;
    padding: 1.2rem 3rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    display: inline-block;
    transition: all 0.3s;
}

.cta-final-button:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* ==========================================================================
   22. CTA FINAL B2B
   ========================================================================== */
.cta-final-section-b2b {
    padding: 0 2rem 5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.cta-final-b2b {
    background: linear-gradient(135deg, #5B8FA3 0%, #6fa3b8 100%);
    padding: 4rem 3rem;
    border-radius: 20px;
    text-align: center;
    color: white;
}

.cta-final-title-b2b {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-final-subtitle-b2b {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-final-button-b2b {
    background: white;
    color: #5B8FA3;
    padding: 1.2rem 3rem;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    display: inline-block;
    transition: all 0.3s;
}

.cta-final-button-b2b:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* ==========================================================================
   23. TESTIMONIALS
   ========================================================================== */
.testimonials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    position: relative;
    transition: all 0.3s;
}

.testimonial:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.testimonial::before {
    content: '"';
    font-size: 3rem;
    color: #5B8FA3;
    opacity: 0.1;
    position: absolute;
    top: 0.5rem;
    left: 1rem;
    font-family: Georgia, serif;
}

.testimonial-text {
    font-style: italic;
    color: #45525B;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    font-weight: 700;
    color: #5B8FA3;
    margin-bottom: 0.3rem;
}

.testimonial-company {
    color: #6c757d;
    font-size: 0.9rem;
}

/* ==========================================================================
   24. CLIENTS
   ========================================================================== */
.clients-section {
    padding: 4rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2rem;
    align-items: center;
}

.client-logo {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    font-size: 0.9rem;
    color: #6c757d;
    font-weight: 600;
    transition: all 0.3s;
    border: 2px solid #e9ecef;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.client-logo:hover {
    transform: scale(1.05);
    border-color: #5B8FA3;
}

/* ==========================================================================
   25. FOOTER
   ========================================================================== */
footer {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
    padding: 4rem 0 0;
}

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

.footer-section h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: white;
}

.footer-section p,
.footer-section a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    display: block;
    margin-bottom: 0.8rem;
    transition: color 0.3s;
    line-height: 1.6;
}

.footer-section a:hover {
    color: white;
    padding-left: 5px;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
    margin: 0;
    color: rgba(255,255,255,0.6);
}

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

.footer-links a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}

/* ==========================================================================
   26. 404 PAGE
   ========================================================================== */
.error-page {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

.error-content h1 {
    font-size: 8rem;
    color: #2D5F3E;
    margin-bottom: 1rem;
}

.error-content h2 {
    font-size: 2rem;
    color: #45525B;
    margin-bottom: 1rem;
}

.error-content p {
    color: #6c757d;
    margin-bottom: 2rem;
}

.error-container {
    min-height: calc(100vh - 110px - 400px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #f9fafb 0%, #ffffff 100%);
}

.error-container .error-content {
    max-width: 800px;
    text-align: center;
}

.error-code {
    font-size: 10rem;
    font-weight: bold;
    color: #45525B;
    line-height: 1;
    margin-bottom: 1rem;
    opacity: 0.2;
}

.error-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.error-description {
    font-size: 1.25rem;
    color: #6c757d;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.error-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.error-btn {
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
    display: inline-block;
}

.error-btn-primary {
    background: linear-gradient(135deg, #45525B 0%, #2D5F3E 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(69, 82, 91, 0.2);
}

.error-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(69, 82, 91, 0.3);
}

.error-btn-secondary {
    background: white;
    color: #45525B;
    border: 2px solid #e9ecef;
}

.error-btn-secondary:hover {
    border-color: #45525B;
    background: #f8f9fa;
}

.error-suggestions {
    margin-top: 4rem;
    padding: 2rem;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.error-suggestions h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.suggestions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    text-align: left;
}

.suggestion-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    text-decoration: none;
    color: #45525B;
    transition: all 0.3s;
    font-weight: 500;
}

.suggestion-link:hover {
    background: #45525B;
    color: white;
    transform: translateX(5px);
}

.suggestion-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
}

/* ==========================================================================
   27. RESPONSIVE
   ========================================================================== */
@media (max-width: 1600px) {
    .carousel-track {
        justify-content: flex-start;
    }
}

@media (min-width: 1600px) {
    .carousel-track {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .carousel-btn {
        display: none;
    }
    
    .carousel-dots {
        display: none;
    }
}

@media (max-width: 1024px) {
    .stats-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .why-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    /* Header */
    .nav-links, .switch-link, .cta-button {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    /* Hero */
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-question {
        font-size: 1.3rem;
    }
    
    .choice-buttons {
        grid-template-columns: 1fr;
    }
    
    .quick-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Carousel */
    .offers-carousel {
        padding: 3rem 1rem;
    }
    
    .carousel-btn {
        display: none;
    }
    
    .carousel-container {
        padding: 0;
    }
    
    .carousel-track {
        padding: 1rem 1rem;
        scroll-padding-left: 1rem;
    }
    
    .offer-card {
        min-width: 300px;
        max-width: 85vw;
    }
    
    .offer-card-ribbon {
        font-size: 0.65rem;
        padding: 0.3rem 2rem;
    }
    
    .offer-card:first-child {
        margin-left: 0;
    }
    
    /* Stats */
    .stats-cards {
        grid-template-columns: 1fr;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Why Grid */
    .why-grid {
        grid-template-columns: 1fr;
    }
    
    /* Testimonials */
    .testimonials {
        grid-template-columns: 1fr;
    }
    
    /* Clients */
    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Services Minimal B2C */
    .services-minimal {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-minimal {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    /* CTA */
    .cta-final-title,
    .cta-final-title-b2b {
        font-size: 1.8rem;
    }
    
    /* Pricing */
    .pricing-hero .big-price {
        font-size: 3rem;
    }
    
    .comparison-table {
        font-size: 0.875rem;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 10px;
    }
    
    .plan-price {
        font-size: 2.5rem;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
    
    /* 404 Page */
    .error-code {
        font-size: 6rem;
    }
    
    .error-title {
        font-size: 1.8rem;
    }
    
    .error-description {
        font-size: 1rem;
    }
    
    .error-actions {
        flex-direction: column;
    }
    
    .error-btn {
        width: 100%;
    }
    
    .suggestions-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .why-title {
        font-size: 1.8rem;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
    }
}



/* ========================================================================== */
/* VDI PAGE SPECIFIC STYLES */
/* ========================================================================== */

/* VDI CSS Variables */
body.vdi-page {
    --primary: #1a1a2e;
    --accent: #BB0A21;
    --accent-light: #d41c37;
    --swiss-red: #da291c;
    --bg-light: #f8f9fc;
    --bg-card: #ffffff;
    --text-dark: #1a1a2e;
    --text-muted: #6b7280;
    --border: #e5e7eb;
    --gradient-start: #1a1a2e;
    --gradient-end: #16213e;
    --success: #10b981;
    
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* VDI Header Override */
body.vdi-page header {
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%) !important;
    color: white !important;
    padding: 1rem 2rem !important;
    position: fixed !important;
    width: 100% !important;
    top: 0 !important;
    z-index: 1000 !important;
    backdrop-filter: blur(10px) !important;
    height: auto !important;
    box-shadow: none !important;
}

body.vdi-page .header-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

body.vdi-page .logo {
    font-weight: 800;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    height: auto;
}

body.vdi-page .logo-icon {
    width: 40px;
    height: 40px;
    background: var(--accent);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

body.vdi-page .swiss-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.1);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
}

body.vdi-page .swiss-flag {
    width: 20px;
    height: 14px;
    background: var(--swiss-red);
    position: relative;
    border-radius: 2px;
}

body.vdi-page .swiss-flag::before,
body.vdi-page .swiss-flag::after {
    content: '';
    position: absolute;
    background: white;
}

body.vdi-page .swiss-flag::before {
    width: 12px;
    height: 4px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

body.vdi-page .swiss-flag::after {
    width: 4px;
    height: 12px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* VDI Hero Section */
body.vdi-page .hero {
    background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
    color: white;
    padding: 8rem 2rem 4rem;
    position: relative;
    overflow: hidden;
}

body.vdi-page .hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

/* VDI Footer - Keep site footer style or customize here */
body.vdi-page footer {
    /* Footer styles can be customized here if needed */
}



/* ========================================================================== */
/* VSI PAGE SPECIFIC STYLES */
/* ========================================================================== */

/* VSI CSS Variables */
body.vsi-page {
    --dark: #1a1a2e;
    --dark-lighter: #16213e;
    --accent: #BB0A21;
    --accent-light: #d42a3e;
    --success: #10b981;
    --text: #f0f0f5;
    --text-muted: #a0a0b0;
    
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--dark);
    color: var(--text);
    line-height: 1.6;
}

/* VSI Header - similar to VDI but potentially different colors */
body.vsi-page header {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-lighter) 100%) !important;
    color: white !important;
    padding: 1rem 2rem !important;
    position: fixed !important;
    width: 100% !important;
    top: 0 !important;
    z-index: 1000 !important;
    backdrop-filter: blur(10px) !important;
    height: auto !important;
    box-shadow: none !important;
}

body.vsi-page .swiss-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.1);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

body.vsi-page .swiss-flag {
    width: 20px;
    height: 20px;
    background: #ff0000;
    border-radius: 2px;
    position: relative;
}

body.vsi-page .swiss-flag::before,
body.vsi-page .swiss-flag::after {
    content: '';
    position: absolute;
    background: white;
}

body.vsi-page .swiss-flag::before {
    width: 12px;
    height: 4px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

body.vsi-page .swiss-flag::after {
    width: 4px;
    height: 12px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* VSI Hero */
body.vsi-page .hero {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-lighter) 50%, #0f3460 100%);
    position: relative;
    overflow: hidden;
}

body.vsi-page .hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

/* VSI Footer - Keep site footer style or customize here */
body.vsi-page footer {
    /* Footer styles can be customized here if needed */
}