:root {
    --ovh-dark: #00185A;
    --ovh-blue: #0050D7;
    --ovh-text: #102136;
    --ovh-light: #F5F7FA;
    --ovh-border: #E5E7EB;
    --white: #FFFFFF;
    --green: #059669;
    --green-bg: #D1FAE5;
    --orange: #EA580C;
    --cyan: #06B6D4;
    --light-blue-bg: #E0F2FE;
    --transition: all 0.2s ease;
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--ovh-text);
    background-color: var(--white);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

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

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

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

/* Header */
.ovh-header {
    width: 100%;
}

.top-bar {
    background-color: var(--ovh-dark);
    color: var(--white);
    font-size: 13px;
    font-weight: 600;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 40px;
}

.logo a {
    font-size: 24px;
    font-weight: 900;
    color: var(--white);
    display: flex;
    align-items: center;
}

.top-links {
    display: flex;
    align-items: center;
    gap: 24px;
}
.top-links a:hover {
    color: #93C5FD;
}

.lang-switcher select {
    background: transparent;
    color: var(--white);
    border: none;
    font-weight: 600;
    cursor: pointer;
    outline: none;
}
.lang-switcher select option {
    color: var(--ovh-text);
}

.bottom-bar {
    background: var(--white);
    border-bottom: 1px solid var(--ovh-border);
}

.bottom-bar-inner {
    display: flex;
    align-items: center;
    height: 70px;
    justify-content: space-between;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 32px;
}

.main-nav a {
    font-size: 15px;
    font-weight: 600;
    color: var(--ovh-text);
    padding: 24px 0;
    border-bottom: 3px solid transparent;
}

.main-nav a:hover, .main-nav a.active {
    color: var(--ovh-blue);
    border-bottom-color: var(--ovh-blue);
}

/* Legendary Premium Hero */
.premium-hero {
    background-color: #030712; /* Deep dark tech background */
    color: var(--white);
    padding: 120px 0 140px 0;
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

/* Glowing Background Orbs */
.premium-hero::before, .premium-hero::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    z-index: 0;
    pointer-events: none;
}
.premium-hero::before {
    width: 600px;
    height: 600px;
    background: rgba(6, 182, 212, 0.15); /* Cyan glow */
    top: -100px;
    left: -200px;
}
.premium-hero::after {
    width: 500px;
    height: 500px;
    background: rgba(59, 130, 246, 0.2); /* Blue glow */
    bottom: -150px;
    right: -100px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge-pill {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: #93C5FD;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}
.hero-badge-pill span {
    display: block;
    width: 8px;
    height: 8px;
    background: #10B981;
    border-radius: 50%;
    box-shadow: 0 0 10px #10B981;
}

.hero-text h1 {
    font-size: 64px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1px;
}
.hero-text h1 .text-gradient {
    background: linear-gradient(to right, #60A5FA, #A78BFA);
    -webkit-background-clip: text;
    color: transparent;
}

.hero-sub {
    font-size: 20px;
    font-weight: 400;
    color: #9CA3AF;
    margin-bottom: 40px;
    max-width: 540px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    align-items: center;
    gap: 20px;
}

.btn-hero-primary {
    background: linear-gradient(135deg, #2563EB, #4F46E5);
    color: var(--white);
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    display: inline-block;
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.4);
    border: 1px solid rgba(255,255,255,0.1);
    transition: var(--transition);
}
.btn-hero-primary:hover {
    box-shadow: 0 15px 35px rgba(37, 99, 235, 0.6);
    transform: translateY(-2px);
}

.btn-hero-secondary {
    background: rgba(255,255,255,0.05);
    color: var(--white);
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    display: inline-block;
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    transition: var(--transition);
}
.btn-hero-secondary:hover {
    background: rgba(255,255,255,0.1);
}

/* Hero Glass Graphic */
.hero-graphic {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: float 6s ease-in-out infinite;
}

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

.glass-panel {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 30px;
    width: 100%;
    max-width: 500px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.1);
    position: relative;
}

.glass-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    padding-bottom: 15px;
}
.glass-header .dots {
    display: flex;
    gap: 8px;
}
.glass-header .dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
}
.glass-header .dots span:nth-child(1) { background: #EF4444; }
.glass-header .dots span:nth-child(2) { background: #F59E0B; }
.glass-header .dots span:nth-child(3) { background: #10B981; }

.glass-stat-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 25px;
}
.glass-stat-block h4 {
    font-size: 12px;
    color: #9CA3AF;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}
.glass-stat-block h2 {
    font-size: 32px;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}

.glass-chart {
    height: 120px;
    width: 100%;
    background: linear-gradient(180deg, rgba(96, 165, 250, 0.2) 0%, rgba(96, 165, 250, 0) 100%);
    border-bottom: 2px solid #60A5FA;
    position: relative;
    border-radius: 4px;
    margin-bottom: 20px;
}
.glass-chart::after {
    content: '';
    position: absolute;
    bottom: -6px;
    right: 20%;
    width: 10px;
    height: 10px;
    background: var(--white);
    border: 2px solid #60A5FA;
    border-radius: 50%;
    box-shadow: 0 0 15px #60A5FA;
}

.glass-server-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.server-item {
    background: rgba(0,0,0,0.2);
    border-radius: 8px;
    padding: 12px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid rgba(255,255,255,0.02);
}
.server-info {
    display: flex;
    align-items: center;
    gap: 12px;
}
.server-icon {
    width: 32px;
    height: 32px;
    background: rgba(59, 130, 246, 0.2);
    color: #60A5FA;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.server-name {
    font-size: 14px;
    font-weight: 600;
}
.server-status {
    color: #10B981;
    font-size: 12px;
    font-weight: 700;
}

/* Common Section Titles */
.section-title {
    text-align: center;
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 20px;
    color: var(--ovh-dark);
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: #4B5563;
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Foundation Section (Domains & Email) */
.foundation-section {
    padding: 80px 0;
    background: var(--white);
}

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

.foundation-card {
    background: var(--light-blue-bg);
    border-radius: 16px;
    padding: 50px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 400px;
}

.foundation-card .label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--ovh-dark);
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.foundation-card h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--ovh-dark);
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.foundation-pricing {
    font-size: 14px;
    color: var(--ovh-dark);
    font-weight: 700;
    margin-bottom: 16px;
    position: relative;
    z-index: 2;
}
.foundation-pricing strong {
    font-size: 48px;
    line-height: 1;
}

.btn-cyan {
    background: var(--cyan);
    color: var(--white);
    padding: 14px 30px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 16px;
    display: inline-block;
    border: none;
    cursor: pointer;
    position: relative;
    z-index: 2;
    align-self: flex-start;
}
.btn-cyan:hover {
    background: #0891B2;
}

/* Domain Search Section */
.domain-search-section {
    background: var(--ovh-dark);
    padding: 60px 0;
    color: var(--white);
}

.domain-search-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--white);
    padding: 8px;
    border-radius: 8px;
    max-width: 900px;
    margin: 0 auto;
}

.domain-search-wrapper input {
    flex: 1;
    border: none;
    padding: 16px 24px;
    font-size: 18px;
    outline: none;
    border-radius: 4px;
}

.domain-search-wrapper select {
    border: none;
    border-left: 1px solid var(--ovh-border);
    padding: 16px 24px;
    font-size: 18px;
    font-weight: 600;
    outline: none;
    background: transparent;
    cursor: pointer;
}

.domain-search-wrapper button {
    background: var(--ovh-blue);
    color: var(--white);
    border: none;
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 700;
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition);
}

.domain-search-wrapper button:hover {
    background: #003CA8;
}

.tld-prices {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 20px;
    font-size: 14px;
    font-weight: 600;
}
.tld-prices span {
    color: #93C5FD;
}

/* Cards Section */
.hosting-cards {
    padding: 80px 0;
    background: var(--white);
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.product-card {
    background: var(--ovh-light);
    border-radius: 12px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--ovh-border);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,24,90,0.1);
    background: var(--white);
}

.product-card .card-header {
    margin-bottom: 24px;
    border-bottom: 1px solid var(--ovh-border);
    padding-bottom: 24px;
}

.title-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}
.title-wrap h3 {
    font-size: 16px;
    color: var(--ovh-blue);
}

.product-card h2 {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--ovh-dark);
}

.product-card p {
    font-size: 15px;
    color: #4B5563;
}

.card-features {
    list-style: none;
    margin-top: auto;
    margin-bottom: 30px;
}

.card-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    margin-bottom: 16px;
    color: var(--ovh-text);
}
.card-features .check-icon {
    color: var(--green);
    width: 20px;
    height: 20px;
}

.btn-card {
    display: block;
    text-align: center;
    padding: 14px;
    border: 2px solid var(--ovh-blue);
    color: var(--ovh-blue);
    font-weight: 700;
    border-radius: 6px;
}
.btn-card:hover {
    background: var(--ovh-blue);
    color: var(--white);
}
.btn-card.solid {
    background: var(--ovh-blue);
    color: var(--white);
}
.btn-card.solid:hover {
    background: #003CA8;
}

/* Pricing Packages */
.pricing-section {
    padding: 100px 0;
    background: var(--ovh-light);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: center;
}

.price-card {
    background: var(--white);
    border-radius: 12px;
    padding: 40px;
    border: 1px solid var(--ovh-border);
    position: relative;
}

.price-card.popular {
    border-color: var(--ovh-blue);
    box-shadow: 0 20px 40px rgba(0,80,215,0.15);
    transform: scale(1.05);
    z-index: 10;
}
.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--ovh-blue);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
}

.price-card h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--ovh-dark);
    margin-bottom: 10px;
}

.price-card .price {
    font-size: 40px;
    font-weight: 900;
    color: var(--ovh-blue);
    margin-bottom: 20px;
}
.price-card .price span {
    font-size: 16px;
    color: #6B7280;
    font-weight: 400;
}

/* Partners Section */
.partners-section {
    padding: 60px 0;
    border-top: 1px solid var(--ovh-border);
    border-bottom: 1px solid var(--ovh-border);
    text-align: center;
    background: var(--white);
}

.partners-section h3 {
    font-size: 20px;
    color: var(--ovh-dark);
    margin-bottom: 40px;
    font-weight: 400;
}

.partners-carousel-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    /* Fade edges for better effect */
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.partners-logos {
    display: flex;
    align-items: center;
    gap: 80px;
    width: max-content;
    animation: scrollLogos 20s linear infinite;
    opacity: 0.6;
    filter: grayscale(100%);
    padding: 10px 40px;
}
.partners-logos:hover {
    animation-play-state: paused;
}

@keyframes scrollLogos {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.partners-logos h2 {
    color: var(--ovh-text);
    margin: 0;
    white-space: nowrap;
}
.partners-logos h2 {
    color: var(--ovh-text);
    margin: 0;
}

/* Personal Consultant Section */
.consultant-section {
    padding: 80px 0;
    background: var(--white);
}

.consultant-card {
    background: #E5E7EB;
    border-radius: 20px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 60px;
    min-height: 400px;
    position: relative;
    background-image: url('https://images.unsplash.com/photo-1556742049-0cfed4f6a45d?auto=format&fit=crop&q=80&w=1200');
    background-size: cover;
    background-position: left center;
}

.consultant-content {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    max-width: 450px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.consultant-content h4 {
    font-size: 14px;
    color: var(--ovh-dark);
    margin-bottom: 15px;
    font-weight: 700;
}

.consultant-content h2 {
    font-size: 24px;
    color: var(--ovh-dark);
    margin-bottom: 10px;
}

.consultant-content p {
    font-size: 14px;
    color: #4B5563;
    margin-bottom: 20px;
}

.consultant-phone {
    display: inline-block;
    border: 1px solid var(--ovh-dark);
    color: var(--ovh-dark);
    padding: 10px 24px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
}
.consultant-phone:hover {
    background: var(--ovh-dark);
    color: var(--white);
}

/* More Ways (Mini Cards) Section */
.more-ways-section {
    padding: 80px 0 120px 0;
    background: var(--white);
    text-align: center;
}

.more-ways-grid {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.mini-card {
    background: var(--ovh-light);
    border-radius: 8px;
    padding: 30px 15px;
    width: 180px;
    text-align: center;
    border: 1px solid var(--ovh-border);
    transition: var(--transition);
    cursor: pointer;
}
.mini-card:hover {
    background: var(--white);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    transform: translateY(-5px);
}

.mini-card-icon {
    font-size: 24px;
    color: var(--ovh-blue);
    margin-bottom: 15px;
}

.mini-card-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--ovh-dark);
}

/* Expanded Footer */
.expanded-footer {
    background: var(--ovh-dark);
    color: #9CA3AF;
    padding: 80px 0 20px 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr) 2fr;
    gap: 40px;
    margin-bottom: 60px;
}
.footer-links h4 {
    color: var(--white);
    font-size: 16px;
    margin-bottom: 20px;
    font-weight: 700;
}
.footer-links ul {
    list-style: none;
}
.footer-links li {
    margin-bottom: 12px;
    font-size: 13px;
}
.footer-links a:hover {
    color: var(--white);
    text-decoration: underline;
}

.footer-brand {
    text-align: right;
}
.footer-brand h2 {
    color: var(--white);
    font-size: 32px;
    letter-spacing: 2px;
    margin-bottom: 10px;
}
.footer-brand p {
    font-size: 12px;
    margin-bottom: 20px;
}
.env-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    display: flex;
    justify-content: flex-end;
}
.personal-consultant-bar {
    background: var(--ovh-blue);
    color: var(--white);
    padding: 10px 20px;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    font-size: 13px;
    font-weight: 600;
}
.personal-consultant-bar img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
}

/* Responsive */
@media(max-width: 1024px) {
    .cards-grid, .hero-grid, .pricing-grid, .foundation-grid {
        grid-template-columns: 1fr;
    }
    .price-card.popular {
        transform: scale(1);
    }
    .hero-image { display: none; }
    .main-nav ul { flex-wrap: wrap; }
    .domain-search-wrapper { flex-direction: column; }
    .domain-search-wrapper input, .domain-search-wrapper select, .domain-search-wrapper button {
        width: 100%;
        border-left: none;
        border-bottom: 1px solid var(--ovh-border);
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .footer-brand {
        text-align: left;
        grid-column: 1 / -1;
    }
    .consultant-card {
        padding: 30px;
        justify-content: center;
    }
}

.mobile-menu-btn { display: none; }
.mobile-only-link { display: none; }

@media (max-width: 768px) {
    .top-links { display: none; }
    .bottom-bar-inner { display: flex; justify-content: space-between; align-items: center; }
    .mobile-menu-btn { display: block !important; background: none; border: none; font-size: 24px; color: var(--ovh-dark); cursor: pointer; }
    .main-nav { display: none; width: 100%; position: absolute; top: 100%; left: 0; background: var(--white); z-index: 100; padding: 20px; box-shadow: 0 10px 20px rgba(0,0,0,0.1); }
    .main-nav.active { display: block; }
    .main-nav ul { flex-direction: column; gap: 15px; }
    .main-nav a { padding: 10px 0; color: var(--ovh-dark); border-bottom: none; display: block; }
    .mobile-only-link { display: block; border-top: 1px solid var(--ovh-border); padding-top: 10px; }
    .hero-grid, .foundation-grid, .pricing-grid, .more-ways-grid { grid-template-columns: 1fr !important; }
    .glass-panel { transform: none !important; }
    .premium-hero { padding: 60px 0; }
    .hero-text h1 { font-size: 42px; }
}