/* ================================
   FASTPANEL - HÉBERGEMENT WEB
   Design professionnel 2024
   Thème Bleu
   ================================ */

/* Variables CSS */
:root {
    --primary-900: #0f172a;
    --primary-800: #1e293b;
    --primary-700: #334155;
    --primary-600: #475569;
    --primary-500: #64748b;
    --primary-400: #94a3b8;
    --primary-300: #cbd5e1;
    --primary-200: #e2e8f0;
    --primary-100: #f1f5f9;

    --blue-600: #2563eb;
    --blue-500: #3b82f6;
    --blue-400: #60a5fa;
    --blue-300: #93c5fd;

    --green-500: #22c55e;
    --green-400: #4ade80;

    --white: #ffffff;
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);

    --radius-sm: 6px;
    --radius: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
}

/* ================================
   NAVIGATION
   ================================ */

.navigation-bar,
.sticky-wrapper {
    z-index: 9999 !important;
    transition: all 0.3s ease !important;
}

.header-top-area {
    z-index: 1 !important;
    position: relative !important;
}

/* ================================
   HERO SECTION
   ================================ */

.web-hosting-hero {
    background: linear-gradient(135deg, var(--primary-900) 0%, #0c1929 50%, var(--primary-800) 100%);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    padding-bottom: 60px;
}

/* Fondu en bas du hero vers la section suivante */
.web-hosting-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(15, 23, 42, 0.3) 30%,
        rgba(15, 23, 42, 0.7) 60%,
        var(--primary-900) 100%
    );
    z-index: 3;
    pointer-events: none;
}

.web-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(37, 99, 235, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(59, 130, 246, 0.1) 0%, transparent 40%),
        radial-gradient(ellipse at 60% 80%, rgba(37, 99, 235, 0.08) 0%, transparent 40%);
}

.particles-container {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.particle.web-particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--blue-400);
    border-radius: 50%;
    opacity: 0.3;
    animation: floatParticle 20s ease-in-out infinite;
}

.particle.web-particle:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
.particle.web-particle:nth-child(2) { top: 60%; left: 20%; animation-delay: 3s; }
.particle.web-particle:nth-child(3) { top: 30%; left: 80%; animation-delay: 6s; }
.particle.web-particle:nth-child(4) { top: 70%; left: 70%; animation-delay: 9s; }
.particle.web-particle:nth-child(5) { top: 15%; left: 50%; animation-delay: 12s; }
.particle.web-particle:nth-child(6) { top: 80%; left: 85%; animation-delay: 15s; }

@keyframes floatParticle {
    0%, 100% { transform: translateY(0) translateX(0); opacity: 0.3; }
    50% { transform: translateY(-30px) translateX(10px); opacity: 0.5; }
}

.gradient-orbs,
.orb {
    display: none;
}

/* Hero Content */
.hero-content-ultra {
    position: relative;
    z-index: 2;
}

/* Badge Hero */
.hero-badge-premium,
.web-badge {
    background: rgba(37, 99, 235, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: var(--radius-full);
    padding: 10px 20px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 32px;
}

.badge-icon {
    width: 24px;
    height: 24px;
    background: var(--blue-500);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 12px;
}

.badge-text {
    color: var(--blue-300);
    font-size: 14px;
    font-weight: 500;
}

.badge-text strong {
    color: var(--white);
}

/* Breadcrumb */
.modern-breadcrumb {
    display: flex;
    align-items: center;
    margin: 20px 0 30px;
    font-size: 14px;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-300);
    text-decoration: none;
    transition: all 0.2s ease;
}

.breadcrumb-item:hover {
    color: var(--blue-400);
    text-decoration: none;
}

.breadcrumb-separator {
    margin: 0 12px;
    color: var(--primary-500);
    font-size: 10px;
}

.breadcrumb-current {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--blue-400);
    font-weight: 500;
}

/* Titre Hero */
.hero-title-ultra,
.web-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.title-line-1,
.title-line-3 {
    display: block;
    color: var(--white);
}

.title-line-2 {
    display: block;
}

.title-gradient,
.web-gradient {
    background: linear-gradient(135deg, var(--blue-400) 0%, var(--blue-300) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.title-highlight,
.web-highlight {
    color: var(--blue-400);
}

/* Sous-titre Hero */
.hero-subtitle-ultra {
    font-size: 1.125rem;
    line-height: 1.75;
    color: var(--primary-300);
    margin-bottom: 40px;
    max-width: 540px;
}

.hero-subtitle-ultra strong {
    color: var(--white);
    font-weight: 600;
}

/* ================================
   HERO METRICS
   ================================ */

.hero-metrics,
.web-metrics {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.metric-card,
.web-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: all 0.2s ease;
}

.metric-card:hover,
.web-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(59, 130, 246, 0.3);
    transform: translateY(-2px);
}

.metric-icon,
.web-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--blue-500) 0%, var(--blue-600) 100%);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 18px;
}

.metric-info {
    display: flex;
    flex-direction: column;
}

.metric-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
}

.metric-label {
    font-size: 0.875rem;
    color: var(--primary-400);
    font-weight: 500;
}

/* ================================
   HERO ACTIONS
   ================================ */

.hero-actions,
.web-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
    flex-wrap: wrap;
    align-items: center;
}

.btn-primary-ultra,
.web-primary {
    background: linear-gradient(135deg, var(--blue-500) 0%, var(--blue-600) 100%);
    color: var(--white);
    padding: 16px 28px;
    border-radius: var(--radius-md);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 16px;
    font-weight: 600;
    transition: all 0.2s ease;
    box-shadow: 0 4px 14px 0 rgba(37, 99, 235, 0.4);
    border: none;
}

.btn-primary-ultra:hover,
.web-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px 0 rgba(37, 99, 235, 0.5);
    color: var(--white);
    text-decoration: none;
}

.btn-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.btn-content {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.btn-title {
    font-size: 1rem;
    font-weight: 600;
}

.btn-subtitle {
    font-size: 0.75rem;
    opacity: 0.8;
    font-weight: 400;
}

.btn-arrow {
    opacity: 0.7;
    transition: transform 0.2s ease;
}

.btn-primary-ultra:hover .btn-arrow,
.web-primary:hover .btn-arrow {
    transform: translateX(4px);
    opacity: 1;
}

.btn-secondary-ultra,
.web-secondary {
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 14px 24px;
    border-radius: var(--radius-md);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    transition: all 0.2s ease;
    background: rgba(255, 255, 255, 0.03);
}

.btn-secondary-ultra:hover,
.web-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--white);
    text-decoration: none;
}

/* ================================
   HERO GUARANTEES
   ================================ */

.hero-guarantees,
.web-guarantees {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.guarantee-item,
.web-guarantee {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-300);
    font-size: 0.875rem;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 8px 14px;
    border-radius: var(--radius-full);
    transition: all 0.2s ease;
}

.guarantee-item:hover,
.web-guarantee:hover {
    background: rgba(34, 197, 94, 0.1);
    border-color: rgba(34, 197, 94, 0.3);
}

.guarantee-item i,
.web-guarantee i {
    color: var(--green-400);
    font-size: 14px;
}

/* ================================
   HERO VISUAL - BROWSER MOCKUP
   ================================ */

.hero-visual,
.web-visual {
    position: relative;
    z-index: 2;
}

.web-preview-stack {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Browser Mockup */
.browser-mockup {
    background: var(--primary-800);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
}

.browser-header {
    background: var(--primary-900);
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.browser-controls {
    display: flex;
    gap: 6px;
}

.control-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.control-dot.red { background: #ef4444; }
.control-dot.yellow { background: #eab308; }
.control-dot.green { background: #22c55e; }

.browser-url {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    padding: 6px 12px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-300);
    font-size: 13px;
}

.browser-url i {
    color: var(--green-400);
    font-size: 12px;
}

.browser-content {
    padding: 0;
}

.website-preview {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    color: #333;
    padding: 15px;
}

.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.site-logo {
    font-weight: 800;
    font-size: 16px;
    background: linear-gradient(135deg, var(--blue-500), var(--blue-400));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.site-nav {
    display: flex;
    gap: 15px;
    font-size: 12px;
    color: #666;
}

.site-hero {
    text-align: center;
    margin: 12px 0;
}

.site-hero .hero-text {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 4px;
}

.site-hero .hero-subtitle {
    font-size: 12px;
    color: #666;
    margin-bottom: 12px;
}

.site-stats {
    display: flex;
    gap: 15px;
    justify-content: center;
}

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

.metric-mini .number {
    font-size: 14px;
    font-weight: 700;
    color: var(--blue-500);
}

.metric-mini .label {
    font-size: 10px;
    color: #666;
}

/* Web Admin Panel */
.web-admin-panel {
    background: var(--primary-800);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
}

.panel-header {
    background: var(--primary-900);
    padding: 12px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.panel-title {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--blue-400);
    font-weight: 600;
    font-size: 13px;
}

.panel-user {
    color: var(--primary-400);
    font-size: 11px;
    background: rgba(59, 130, 246, 0.1);
    padding: 4px 10px;
    border-radius: var(--radius-full);
}

.panel-content {
    padding: 15px;
}

.panel-section {
    margin-bottom: 15px;
}

.section-title {
    color: var(--white);
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 8px;
}

.domain-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.domain-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius);
    font-size: 11px;
}

.domain-item.active {
    border-color: rgba(59, 130, 246, 0.2);
    background: rgba(59, 130, 246, 0.05);
}

.domain-item i {
    color: var(--blue-400);
    font-size: 10px;
    width: 12px;
}

.domain-item span:first-of-type {
    flex: 1;
    color: var(--primary-300);
}

.status-active {
    background: var(--green-500);
    color: white;
    padding: 2px 6px;
    border-radius: var(--radius-full);
    font-size: 9px;
    font-weight: 600;
}

.status-redirect {
    background: #f59e0b;
    color: white;
    padding: 2px 6px;
    border-radius: var(--radius-full);
    font-size: 9px;
    font-weight: 600;
}

.panel-actions {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.action-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius);
    color: var(--primary-300);
    font-size: 11px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.action-btn:hover {
    background: rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.3);
    color: var(--blue-400);
}

.action-btn i {
    font-size: 10px;
    width: 12px;
    color: var(--blue-400);
}

/* ================================
   PRICING SECTION
   ================================ */

.web-pricing {
    background: var(--primary-900);
    padding: 100px 0;
    position: relative;
}

.section-header-ultra,
.web-pricing-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-badge {
    background: rgba(59, 130, 246, 0.15);
    color: var(--blue-400);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.section-title-ultra {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.title-normal {
    color: var(--white);
}

.section-subtitle-ultra {
    color: var(--primary-300);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto 32px;
    line-height: 1.7;
}

.section-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.deco-line {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--blue-500), var(--blue-400));
    border-radius: 2px;
}

.deco-diamond {
    width: 12px;
    height: 12px;
    background: var(--blue-500);
    transform: rotate(45deg);
}

/* Pricing Grid */
.pricing-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.pricing-grid .col-md-4,
.pricing-grid .col-sm-6 {
    flex: 0 0 calc(33.333% - 20px);
    max-width: calc(33.333% - 20px);
}

@media (max-width: 992px) {
    .pricing-grid .col-md-4,
    .pricing-grid .col-sm-6 {
        flex: 0 0 calc(50% - 15px);
        max-width: calc(50% - 15px);
    }
}

@media (max-width: 576px) {
    .pricing-grid .col-md-4,
    .pricing-grid .col-sm-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* Pricing Cards */
.pricing-card-ultra {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: 32px;
    transition: all 0.3s ease;
    min-height: 580px;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    position: relative;
}

.pricing-card-ultra:hover {
    border-color: rgba(59, 130, 246, 0.4);
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-4px);
}

.pricing-header {
    text-align: center;
    margin-bottom: 24px;
}

.plan-name {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.plan-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}

.currency {
    font-size: 1.25rem;
    color: var(--blue-400);
    font-weight: 700;
}

.price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--blue-400);
    line-height: 1;
}

.subscription {
    color: var(--primary-400);
    font-size: 0.875rem;
    font-weight: 400;
}

.pricing-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
    flex: 1;
}

.pricing-features li {
    padding: 10px 0;
    color: var(--primary-300);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li i {
    color: var(--blue-400);
    font-size: 14px;
    width: 18px;
}

.pricing-features li b {
    color: var(--white);
}

.dispo__span.high {
    background: var(--green-500);
    color: white;
    padding: 2px 8px;
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 600;
}

.pricing-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--blue-500) 0%, var(--blue-600) 100%);
    color: var(--white);
    border: none;
    padding: 14px 24px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.pricing-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(37, 99, 235, 0.4);
}

/* ================================
   EFFET "BIENTÔT DISPONIBLE"
   ================================ */

.coming-soon-card {
    position: relative;
}

.coming-soon-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    border-radius: var(--radius-xl);
    z-index: 10;
    opacity: 0;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
}

.coming-soon-card:hover .coming-soon-overlay {
    opacity: 1;
}

.coming-soon-badge-price {
    display: flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--blue-500), var(--blue-600));
    color: white;
    padding: 14px 28px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.4);
}

.coming-soon-badge-price i {
    font-size: 16px;
    animation: rotateIcon 3s linear infinite;
}

@keyframes rotateIcon {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* ================================
   RESPONSIVE
   ================================ */

/* Tablet - 992px */
@media (max-width: 992px) {
    .web-hosting-hero {
        min-height: auto;
        padding-top: 100px;
        padding-bottom: 60px;
    }

    .web-hosting-hero .row {
        flex-direction: column-reverse;
    }

    .hero-title-ultra,
    .web-title {
        font-size: 2.5rem;
    }

    .section-title-ultra {
        font-size: 2rem;
    }

    .hero-metrics,
    .web-metrics {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    .metric-card,
    .web-card {
        padding: 12px 14px;
    }

    .metric-icon,
    .web-icon {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }

    .metric-value {
        font-size: 1rem;
    }

    .metric-label {
        font-size: 0.75rem;
    }

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

    .btn-primary-ultra,
    .web-primary,
    .btn-secondary-ultra,
    .web-secondary {
        justify-content: center;
        width: 100%;
    }

    .web-preview-stack {
        margin-bottom: 40px;
    }

    /* Pricing Grid */
    .pricing-grid .col-md-4,
    .pricing-grid .col-sm-6 {
        flex: 0 0 calc(50% - 15px);
        max-width: calc(50% - 15px);
    }
}

/* Mobile Large - 768px */
@media (max-width: 768px) {
    .web-hosting-hero {
        padding-top: 80px;
        padding-bottom: 40px;
    }

    .hero-content-ultra {
        text-align: center;
    }

    /* Badge */
    .hero-badge-premium,
    .web-badge {
        padding: 8px 14px;
        gap: 8px;
        margin-bottom: 20px;
    }

    .badge-icon {
        width: 20px;
        height: 20px;
        font-size: 10px;
    }

    .badge-text {
        font-size: 12px;
    }

    /* Breadcrumb */
    .modern-breadcrumb {
        justify-content: center;
        flex-wrap: wrap;
        gap: 8px;
        margin: 16px 0 20px;
    }

    .breadcrumb-separator {
        margin: 0 8px;
    }

    /* Titre */
    .hero-title-ultra,
    .web-title {
        font-size: 2rem;
        margin-bottom: 16px;
    }

    .hero-subtitle-ultra {
        font-size: 0.95rem;
        margin-bottom: 24px;
    }

    /* Metrics */
    .hero-metrics,
    .web-metrics {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-bottom: 24px;
    }

    .metric-card,
    .web-card {
        flex-direction: row;
        justify-content: flex-start;
        padding: 12px 16px;
    }

    /* Guarantees */
    .hero-guarantees,
    .web-guarantees {
        justify-content: center;
        flex-wrap: wrap;
        gap: 8px;
    }

    .guarantee-item,
    .web-guarantee {
        padding: 6px 10px;
        font-size: 0.75rem;
    }

    .guarantee-item i,
    .web-guarantee i {
        font-size: 12px;
    }

    /* Visual Preview */
    .web-preview-stack {
        margin-top: 32px;
        gap: 12px;
    }

    .browser-mockup,
    .web-admin-panel {
        border-radius: var(--radius-md);
    }

    .browser-header,
    .panel-header {
        padding: 10px 12px;
    }

    .browser-url {
        font-size: 11px;
        padding: 4px 10px;
    }

    .site-nav {
        display: none;
    }

    .site-logo {
        font-size: 14px;
    }

    .site-hero .hero-text {
        font-size: 14px;
    }

    .site-hero .hero-subtitle {
        font-size: 10px;
    }

    .panel-content {
        padding: 12px;
    }

    .domain-item {
        padding: 6px 8px;
        font-size: 10px;
    }

    .action-btn {
        padding: 6px 8px;
        font-size: 10px;
    }

    /* Pricing Section */
    .web-pricing {
        padding: 48px 0;
    }

    .section-header-ultra,
    .web-pricing-header {
        margin-bottom: 40px;
    }

    .section-badge {
        font-size: 11px;
        padding: 6px 12px;
    }

    .section-title-ultra {
        font-size: 1.75rem;
    }

    .section-subtitle-ultra {
        font-size: 0.95rem;
        padding: 0 16px;
    }

    /* Pricing Grid */
    .pricing-grid {
        display: flex;
        flex-direction: column;
        gap: 0;
        padding: 0 8px;
    }

    .pricing-grid .col-md-4,
    .pricing-grid .col-sm-6 {
        flex: 0 0 100%;
        max-width: 100%;
        width: 100%;
        padding-left: 0;
        padding-right: 0;
        margin-bottom: 20px;
    }

    .pricing-grid .col-md-4:last-child,
    .pricing-grid .col-sm-6:last-child {
        margin-bottom: 0;
    }

    .pricing-card-ultra {
        padding: 24px 20px;
        min-height: auto;
        margin-bottom: 0;
    }

    .plan-name {
        font-size: 1.25rem;
        margin-bottom: 12px;
    }

    .price {
        font-size: 2.5rem;
    }

    .currency {
        font-size: 1rem;
    }

    .pricing-features li {
        padding: 8px 0;
        font-size: 13px;
        gap: 10px;
    }

    .pricing-features li i {
        font-size: 12px;
        width: 16px;
    }

    .pricing-btn {
        padding: 12px 20px;
        font-size: 13px;
    }
}

/* Mobile Small - 480px */
@media (max-width: 480px) {
    .web-hosting-hero {
        padding-top: 70px;
        padding-bottom: 32px;
    }

    .hero-title-ultra,
    .web-title {
        font-size: 1.625rem;
        line-height: 1.2;
    }

    .title-line-1,
    .title-line-2,
    .title-line-3 {
        display: inline;
    }

    .hero-subtitle-ultra {
        font-size: 0.875rem;
        line-height: 1.6;
    }

    .btn-primary-ultra,
    .web-primary {
        padding: 14px 20px;
        gap: 12px;
    }

    .btn-primary-ultra .btn-icon,
    .web-primary .btn-icon {
        display: none;
    }

    .btn-title {
        font-size: 0.9rem;
    }

    .btn-subtitle {
        font-size: 0.7rem;
    }

    .btn-secondary-ultra,
    .web-secondary {
        padding: 12px 16px;
        font-size: 0.85rem;
    }

    /* Pricing */
    .web-pricing {
        padding: 40px 0;
    }

    .section-title-ultra {
        font-size: 1.5rem;
    }

    .section-subtitle-ultra {
        font-size: 0.875rem;
    }

    .section-decoration {
        gap: 12px;
    }

    .deco-line {
        width: 40px;
    }

    .deco-diamond {
        width: 8px;
        height: 8px;
    }

    .pricing-grid {
        padding: 0 4px;
        gap: 20px;
    }

    .pricing-card-ultra {
        padding: 20px 16px;
        border-radius: var(--radius-lg);
        margin-bottom: 0;
    }

    .plan-name {
        font-size: 1.125rem;
    }

    .price {
        font-size: 2.25rem;
    }

    .pricing-features {
        margin-bottom: 20px;
    }

    .pricing-features li {
        font-size: 12px;
        padding: 7px 0;
    }

    .dispo__span.high {
        font-size: 10px;
        padding: 2px 6px;
    }

    .pricing-btn {
        padding: 11px 16px;
        font-size: 12px;
        border-radius: var(--radius-sm);
    }

    /* Coming soon */
    .coming-soon-badge-price {
        padding: 10px 20px;
        font-size: 12px;
    }
}

/* Mobile Extra Small - 360px */
@media (max-width: 360px) {
    .hero-title-ultra,
    .web-title {
        font-size: 1.375rem;
    }

    .hero-badge-premium,
    .web-badge {
        padding: 6px 10px;
    }

    .badge-text {
        font-size: 10px;
    }

    .badge-text strong {
        display: block;
    }

    .modern-breadcrumb {
        font-size: 12px;
    }

    .metric-card,
    .web-card {
        padding: 10px 12px;
        gap: 10px;
    }

    .metric-icon,
    .web-icon {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }

    .guarantee-item,
    .web-guarantee {
        padding: 5px 8px;
        font-size: 0.7rem;
    }

    .section-title-ultra {
        font-size: 1.25rem;
    }

    .pricing-grid {
        gap: 16px;
    }

    .pricing-card-ultra {
        padding: 16px 14px;
    }

    .plan-name {
        font-size: 1rem;
    }

    .price {
        font-size: 2rem;
    }

    .pricing-features li {
        font-size: 11px;
    }
}
