/* ============================================
   HOSTS MODERN PAGE STYLES
   ============================================ */

:root {
    --hosts-primary: #8b5cf6;
    --hosts-secondary: #6366f1;
    --hosts-accent: #a78bfa;
    --hosts-dark: #0f0a1f;
    --hosts-darker: #080510;
    --hosts-text: #f1f5f9;
    --hosts-text-muted: #94a3b8;
    --hosts-glass: rgba(255, 255, 255, 0.05);
    --hosts-glass-border: rgba(255, 255, 255, 0.1);
}

/* ============ HERO SECTION ============ */
.hosts-hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--hosts-darker) 0%, #1a103a 50%, var(--hosts-dark) 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
}

.hosts-hero-bg {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(139, 92, 246, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(99, 102, 241, 0.15) 0%, transparent 50%);
}

.hosts-hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(139, 92, 246, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(139, 92, 246, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

.hosts-hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.5;
}

.hosts-hero-glow.glow-1 {
    width: 600px;
    height: 600px;
    background: rgba(139, 92, 246, 0.3);
    top: -200px;
    right: -200px;
}

.hosts-hero-glow.glow-2 {
    width: 400px;
    height: 400px;
    background: rgba(99, 102, 241, 0.3);
    bottom: -100px;
    left: -100px;
}

.hosts-hero .container {
    position: relative;
    z-index: 2;
}

.hosts-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hosts-hero-text {
    text-align: right;
}

.hosts-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(139, 92, 246, 0.15);
    color: var(--hosts-accent);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    border: 1px solid rgba(139, 92, 246, 0.3);
    margin-bottom: 24px;
}

.hosts-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 24px;
    line-height: 1.2;
}

.hosts-hero h1 .text-gradient {
    background: linear-gradient(135deg, #a78bfa 0%, #c4b5fd 50%, #e879f9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hosts-hero-desc {
    font-size: 1.15rem;
    color: var(--hosts-text-muted);
    line-height: 1.9;
    margin-bottom: 32px;
}

.hosts-hero-desc strong {
    color: var(--hosts-accent);
}

.hosts-hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 40px;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--hosts-glass);
    padding: 10px 18px;
    border-radius: 8px;
    border: 1px solid var(--hosts-glass-border);
    color: #fff;
    font-size: 0.9rem;
}

.hero-feature i {
    color: #22c55e;
    font-size: 12px;
}

.hosts-hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--hosts-primary) 0%, var(--hosts-secondary) 100%);
    color: #fff;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(139, 92, 246, 0.3);
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(139, 92, 246, 0.4);
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: transparent;
    color: #fff;
    border: 1px solid var(--hosts-glass-border);
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-hero-secondary:hover {
    background: var(--hosts-glass);
    border-color: var(--hosts-primary);
}

/* Hero Visual */
.hosts-hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.server-illustration {
    position: relative;
    width: 350px;
    height: 400px;
}

.server-rack {
    background: linear-gradient(180deg, rgba(30, 20, 60, 0.8) 0%, rgba(20, 10, 40, 0.9) 100%);
    border: 1px solid var(--hosts-glass-border);
    border-radius: 16px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.server-unit {
    background: linear-gradient(180deg, #1e1e3f 0%, #15152a 100%);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 10px;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.server-unit.active {
    border-color: rgba(139, 92, 246, 0.5);
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.2);
}

.server-lights {
    display: flex;
    gap: 8px;
}

.server-lights .light {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.light.green {
    background: #22c55e;
    box-shadow: 0 0 10px #22c55e;
}

.light.blue {
    background: #3b82f6;
    box-shadow: 0 0 10px #3b82f6;
}

.light.blink {
    animation: blink 1s ease-in-out infinite;
}

.light.blink.delay {
    animation-delay: 0.5s;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.server-slots {
    display: flex;
    gap: 4px;
}

.server-slots::before {
    content: '';
    display: block;
    width: 120px;
    height: 8px;
    background: repeating-linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.1) 0px,
        rgba(255, 255, 255, 0.1) 8px,
        transparent 8px,
        transparent 12px
    );
    border-radius: 2px;
}

.floating-icons {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.float-icon {
    position: absolute;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--hosts-primary) 0%, var(--hosts-secondary) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
    animation: float 3s ease-in-out infinite;
}

.float-icon.icon-1 {
    top: 20px;
    right: -30px;
    animation-delay: 0s;
}

.float-icon.icon-2 {
    bottom: 80px;
    right: -40px;
    animation-delay: 1s;
}

.float-icon.icon-3 {
    top: 60px;
    left: -30px;
    animation-delay: 2s;
}

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

/* ============ VIDEO SECTION ============ */
.hosts-video-section {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--hosts-dark) 0%, #0d0620 100%);
    position: relative;
    overflow: hidden;
}

.hosts-video-section::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, transparent 70%);
    top: -200px;
    left: -200px;
    border-radius: 50%;
    filter: blur(80px);
}

.hosts-video-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
    background: rgba(30, 20, 60, 0.4);
    border: 1px solid var(--hosts-glass-border);
    border-radius: 24px;
    padding: 50px;
    backdrop-filter: blur(10px);
}

.hosts-video-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
}

.hosts-video-content p {
    color: var(--hosts-text-muted);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.hosts-video-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.hosts-video-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--hosts-text);
    font-size: 0.95rem;
}

.hosts-video-features li i {
    color: #22c55e;
    font-size: 0.8rem;
}

.hosts-video-player {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.hosts-video-player video,
.hosts-video-player .fluid_video_wrapper {
    width: 100%;
    aspect-ratio: 16/9;
    display: block;
}

.hosts-video-player .video-cover {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.95) 0%, rgba(99, 102, 241, 0.95) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: opacity 0.4s ease;
}

.hosts-video-player .video-cover::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/assets/images/hosting/server-bg.jpg') center/cover no-repeat;
    opacity: 0.2;
}

.hosts-video-player .video-cover.hidden {
    opacity: 0;
    pointer-events: none;
}

.hosts-video-player .cover-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hosts-video-player .play-btn {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.hosts-video-player .play-btn svg {
    width: 22px;
    height: 22px;
    fill: #fff;
    margin-left: 4px;
}

.hosts-video-player .video-cover:hover .play-btn {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
    border-color: rgba(255, 255, 255, 0.7);
}

.hosts-video-player .cover-text {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.8rem;
    font-weight: 500;
}

@media (max-width: 992px) {
    .hosts-video-wrapper {
        grid-template-columns: 1fr;
        padding: 30px;
    }

    .hosts-video-content {
        text-align: center;
    }

    .hosts-video-features {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .hosts-video-features {
        grid-template-columns: 1fr;
    }

    .hosts-video-content h2 {
        font-size: 1.5rem;
    }
}

/* ============ STATS SECTION ============ */
.hosts-stats {
    padding: 80px 0;
    background: var(--hosts-darker);
    border-top: 1px solid var(--hosts-glass-border);
    border-bottom: 1px solid var(--hosts-glass-border);
}

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

.stat-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--hosts-glass);
    padding: 24px 30px;
    border-radius: 16px;
    border: 1px solid var(--hosts-glass-border);
}

.stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.stat-icon.purple { background: rgba(139, 92, 246, 0.2); color: #a78bfa; }
.stat-icon.blue { background: rgba(59, 130, 246, 0.2); color: #60a5fa; }
.stat-icon.green { background: rgba(34, 197, 94, 0.2); color: #4ade80; }
.stat-icon.orange { background: rgba(249, 115, 22, 0.2); color: #fb923c; }

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

.stat-number {
    font-size: 1.75rem;
    font-weight: 800;
    color: #fff;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--hosts-text-muted);
}

/* ============ HOSTING TYPES ============ */
.hosting-types {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--hosts-darker) 0%, var(--hosts-dark) 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    background: rgba(139, 92, 246, 0.15);
    color: var(--hosts-accent);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(139, 92, 246, 0.3);
    margin-bottom: 20px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--hosts-text-muted);
}

.hosting-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.hosting-card {
    background: linear-gradient(180deg, rgba(30, 20, 60, 0.6) 0%, rgba(20, 10, 40, 0.8) 100%);
    border: 1px solid var(--hosts-glass-border);
    border-radius: 20px;
    padding: 32px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.hosting-card:hover {
    transform: translateY(-8px);
    border-color: var(--hosts-primary);
}

.hosting-card.featured {
    border-color: var(--hosts-primary);
    box-shadow: 0 0 40px rgba(139, 92, 246, 0.2);
}

.featured-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, var(--hosts-primary) 0%, #e879f9 100%);
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.card-glow {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.hosting-card:hover .card-glow {
    opacity: 0.3;
}

.hosting-card.linux .card-glow { background: #f97316; top: -100px; right: -100px; }
.hosting-card.windows .card-glow { background: #3b82f6; top: -100px; right: -100px; }
.hosting-card.wordpress .card-glow { background: #8b5cf6; top: -100px; right: -100px; }
.hosting-card.dedicated .card-glow { background: #06b6d4; top: -100px; right: -100px; }

.card-icon {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.hosting-card.linux .card-icon { background: rgba(249, 115, 22, 0.15); color: #fb923c; }
.hosting-card.windows .card-icon { background: rgba(59, 130, 246, 0.15); color: #60a5fa; }
.hosting-card.wordpress .card-icon { background: rgba(139, 92, 246, 0.15); color: #a78bfa; }
.hosting-card.dedicated .card-icon { background: rgba(6, 182, 212, 0.15); color: #22d3ee; }

.card-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.card-desc {
    font-size: 0.9rem;
    color: var(--hosts-text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
}

.card-features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
}

.card-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--hosts-text-muted);
    font-size: 0.9rem;
    padding: 8px 0;
    border-bottom: 1px solid var(--hosts-glass-border);
}

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

.card-features li i {
    color: #22c55e;
    font-size: 10px;
}

.card-price {
    margin-bottom: 24px;
    text-align: center;
    padding: 16px 12px;
    background: var(--hosts-glass);
    border-radius: 12px;
}

.price-from {
    display: block;
    font-size: 0.75rem;
    color: var(--hosts-text-muted);
    margin-bottom: 6px;
    white-space: nowrap;
}

.price-amount {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
}

.price-period {
    font-size: 0.75rem;
    color: var(--hosts-text-muted);
    margin-right: 4px;
}

.card-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.btn-card-primary {
    display: block;
    text-align: center;
    padding: 14px 20px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hosting-card.linux .btn-card-primary { background: linear-gradient(135deg, #f97316 0%, #ea580c 100%); color: #fff; }
.hosting-card.windows .btn-card-primary { background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%); color: #fff; }
.hosting-card.wordpress .btn-card-primary { background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%); color: #fff; }
.hosting-card.dedicated .btn-card-primary { background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%); color: #fff; }

.btn-card-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.btn-card-secondary {
    display: block;
    text-align: center;
    padding: 12px 20px;
    background: transparent;
    border: 1px solid var(--hosts-glass-border);
    border-radius: 10px;
    color: var(--hosts-text-muted);
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-card-secondary:hover {
    border-color: var(--hosts-primary);
    color: var(--hosts-accent);
}

/* ============ SPECIAL HOSTS ============ */
.special-hosts {
    padding: 80px 0;
    background: var(--hosts-dark);
}

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

.special-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    padding: 40px;
    min-height: 220px;
}

.special-card.download {
    background: linear-gradient(135deg, #1e3a5f 0%, #0f172a 100%);
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.special-card.traffic {
    background: linear-gradient(135deg, #3b1a45 0%, #1a0a1f 100%);
    border: 1px solid rgba(236, 72, 153, 0.3);
}

.hot-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, #ec4899 0%, #f43f5e 100%);
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.special-content {
    position: relative;
    z-index: 2;
}

.special-icon {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.special-card.download .special-icon { background: rgba(59, 130, 246, 0.2); color: #60a5fa; }
.special-card.traffic .special-icon { background: rgba(236, 72, 153, 0.2); color: #f472b6; }

.special-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.special-card p {
    font-size: 0.95rem;
    color: var(--hosts-text-muted);
    margin-bottom: 20px;
    line-height: 1.7;
}

.special-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.special-card.download .special-link { color: #60a5fa; }
.special-card.traffic .special-link { color: #f472b6; }

.special-link:hover {
    gap: 12px;
}

.special-bg {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    bottom: -50px;
    left: -50px;
}

.special-card.download .special-bg { background: #3b82f6; }
.special-card.traffic .special-bg { background: #ec4899; }

/* ============ FEATURES ============ */
.hosts-features {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--hosts-dark) 0%, var(--hosts-darker) 100%);
}

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

.feature-card {
    background: var(--hosts-glass);
    border: 1px solid var(--hosts-glass-border);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: var(--hosts-primary);
    transform: translateY(-5px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon.green { background: rgba(34, 197, 94, 0.15); color: #4ade80; }
.feature-icon.blue { background: rgba(59, 130, 246, 0.15); color: #60a5fa; }
.feature-icon.purple { background: rgba(139, 92, 246, 0.15); color: #a78bfa; }
.feature-icon.orange { background: rgba(249, 115, 22, 0.15); color: #fb923c; }
.feature-icon.cyan { background: rgba(6, 182, 212, 0.15); color: #22d3ee; }
.feature-icon.pink { background: rgba(236, 72, 153, 0.15); color: #f472b6; }

.feature-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--hosts-text-muted);
    line-height: 1.7;
    margin: 0;
}

/* ============ TECH STACK ============ */
.tech-stack {
    padding: 80px 0;
    background: var(--hosts-darker);
}

.tech-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
    background: var(--hosts-glass);
    border: 1px solid var(--hosts-glass-border);
    border-radius: 24px;
    padding: 50px;
}

.tech-text h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin: 16px 0;
}

.tech-text p {
    color: var(--hosts-text-muted);
    font-size: 1rem;
}

.tech-logos {
    display: flex;
    gap: 30px;
}

.tech-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.tech-logo img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.tech-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

.tech-logo span {
    font-size: 0.8rem;
    color: var(--hosts-text-muted);
}

/* ============ RESELLER SECTION ============ */
.reseller-section {
    padding: 80px 0;
    background: var(--hosts-dark);
}

.reseller-card {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    align-items: center;
    background: linear-gradient(135deg, #1e1b4b 0%, #312e81 50%, #1e1b4b 100%);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 24px;
    padding: 60px;
    position: relative;
    overflow: hidden;
}

.reseller-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin: 16px 0;
}

.reseller-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 24px;
}

.reseller-features {
    display: flex;
    gap: 24px;
    margin-bottom: 32px;
}

.reseller-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-size: 0.9rem;
}

.reseller-feature i {
    color: #22c55e;
    font-size: 12px;
}

.reseller-actions {
    display: flex;
    gap: 16px;
}

.btn-reseller {
    padding: 14px 28px;
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: #fff;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-reseller:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
}

.btn-reseller-outline {
    padding: 14px 28px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-reseller-outline:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

.reseller-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.reseller-icon {
    color: rgba(255, 255, 255, 0.1);
}

/* ============ CTA ============ */
.hosts-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--hosts-primary) 0%, var(--hosts-secondary) 100%);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 32px;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
}

.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: #fff;
    color: var(--hosts-primary);
    border-radius: 12px;
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

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

.btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: #fff;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1200px) {
    .hosting-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .hosts-hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

    .hosts-hero h1 {
        font-size: 2.5rem;
    }

    .hosts-hero-features {
        justify-content: center;
    }

    .hosts-hero-actions {
        justify-content: center;
    }

    .hosts-hero-visual {
        display: none;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tech-content {
        flex-direction: column;
        text-align: center;
    }

    .reseller-card {
        grid-template-columns: 1fr;
    }

    .reseller-visual {
        display: none;
    }
}

@media (max-width: 768px) {
    .hosts-hero h1 {
        font-size: 2rem;
    }

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

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

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

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

    .reseller-features {
        flex-direction: column;
        gap: 12px;
    }

    .reseller-actions {
        flex-direction: column;
    }

    .cta-actions {
        flex-direction: column;
        align-items: center;
    }

    .tech-logos {
        flex-wrap: wrap;
        justify-content: center;
    }

    .section-title {
        font-size: 1.8rem;
    }
}

/* Menu spacing */
.main-menu > li {
    margin-left: 12px !important;
}

.main-menu > li > a {
    padding: 15px 16px !important;
}


/* ============================================
   SEO CONTENT SECTION
   ============================================ */
#host-content-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #eef2f7 100%);
    position: relative;
    overflow: hidden;
}

#host-content-section::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(33, 160, 213, 0.06) 0%, transparent 70%);
    top: -250px;
    left: -250px;
    border-radius: 50%;
}

#host-content-section::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 212, 170, 0.05) 0%, transparent 70%);
    bottom: -200px;
    right: -200px;
    border-radius: 50%;
}

#host-content-section .container {
    position: relative;
    z-index: 2;
}

#host-content-section .content-section-title {
    font-size: 2rem;
    font-weight: 800;
    color: #1e3a5f;
    margin-bottom: 12px;
}

#host-content-section .content-section-subtitle {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 0;
}

#host-content-section .content-section-header {
    margin-bottom: 50px;
}

#host-content-section .content-accordion {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
}

#host-content-section .content-accordion > .col-12,
#host-content-section .content-accordion > .col-md-6 {
    padding: 0 10px;
}

#host-content-section .accordion-item {
    background: #fff;
    border: 1px solid rgba(33, 160, 213, 0.12);
    border-radius: 14px;
    margin-bottom: 14px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

#host-content-section .accordion-item:hover {
    border-color: rgba(33, 160, 213, 0.3);
    box-shadow: 0 8px 30px rgba(33, 160, 213, 0.08);
    transform: translateY(-2px);
}

#host-content-section .accordion-item:has(.accordion-collapse.show) {
    border-color: rgba(33, 160, 213, 0.35);
    box-shadow: 0 12px 35px rgba(33, 160, 213, 0.12);
}

#host-content-section .accordion-header {
    margin: 0;
}

#host-content-section .accordion-button {
    background: transparent;
    color: #1e3a5f;
    font-size: 0.95rem;
    font-weight: 700;
    padding: 18px 22px 18px 60px !important;
    border: none;
    box-shadow: none;
    display: block !important;
    width: 100%;
    text-align: right !important;
    position: relative;
    transition: all 0.3s ease;
    line-height: 1.7;
}

#host-content-section .accordion-button:focus {
    box-shadow: none;
    outline: none;
}

#host-content-section .accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, rgba(33, 160, 213, 0.06), rgba(0, 212, 170, 0.04));
    color: #21a0d5;
}

#host-content-section .accordion-button::after {
    display: none;
}

#host-content-section .accordion-button .acc-icon {
    width: 30px;
    height: 30px;
    min-width: 30px;
    background: linear-gradient(135deg, rgba(33, 160, 213, 0.1), rgba(0, 212, 170, 0.08));
    border: 1px solid rgba(33, 160, 213, 0.2);
    border-radius: 8px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: absolute !important;
    left: 18px !important;
    right: auto !important;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
}

#host-content-section .accordion-button .acc-icon i {
    color: #21a0d5;
    font-size: 11px;
    transition: transform 0.3s ease;
}

#host-content-section .accordion-button:not(.collapsed) .acc-icon {
    background: linear-gradient(135deg, #21a0d5, #00d4aa);
    border-color: transparent;
    box-shadow: 0 4px 12px rgba(33, 160, 213, 0.3);
}

#host-content-section .accordion-button:not(.collapsed) .acc-icon i {
    transform: rotate(45deg);
    color: #fff;
}

#host-content-section .accordion-collapse {
    background: transparent;
    transition: height 0.25s cubic-bezier(0.25, 0.1, 0.25, 1), opacity 0.2s ease;
}

#host-content-section .accordion-collapse.collapsing {
    transition: height 0.25s cubic-bezier(0.25, 0.1, 0.25, 1);
}

#host-content-section .accordion-collapse.show .accordion-body,
#host-content-section .accordion-collapse.collapsing .accordion-body {
    animation: contentFadeIn 0.2s ease forwards;
}

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

#host-content-section .accordion-body {
    padding: 0 22px 20px 60px;
    color: #475569;
    font-size: 0.9rem;
    line-height: 2;
    text-align: right;
}

#host-content-section .accordion-body p {
    margin: 0 0 10px;
    color: #475569;
}

#host-content-section .accordion-body a {
    color: #21a0d5;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

#host-content-section .accordion-body a:hover {
    color: #1a8ab8;
}

#host-content-section .accordion-body strong {
    color: #1e3a5f;
    font-weight: 700;
}

#host-content-section .accordion-body ol,
#host-content-section .accordion-body ul {
    padding-right: 20px;
    margin: 8px 0;
}

#host-content-section .accordion-body li {
    margin-bottom: 4px;
}

#host-content-section .acc-body-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 12px;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(33, 160, 213, 0.08), rgba(0, 212, 170, 0.06));
    color: #21a0d5;
    border: 1px solid rgba(33, 160, 213, 0.2);
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

#host-content-section .acc-body-btn:hover {
    background: linear-gradient(135deg, #21a0d5, #00d4aa);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(33, 160, 213, 0.3);
}

@media (max-width: 768px) {
    #host-content-section {
        padding: 60px 0;
    }

    #host-content-section .content-section-title {
        font-size: 1.6rem;
    }

    #host-content-section .accordion-button {
        padding: 16px 18px 16px 52px !important;
        font-size: 0.9rem;
    }

    #host-content-section .accordion-button .acc-icon {
        left: 14px !important;
        width: 28px;
        height: 28px;
        min-width: 28px;
    }

    #host-content-section .accordion-body {
        padding: 0 18px 18px 52px;
    }
}

@media (max-width: 480px) {
    #host-content-section .accordion-button {
        padding: 14px 14px 14px 48px !important;
        font-size: 0.85rem;
    }

    #host-content-section .accordion-button .acc-icon {
        left: 12px !important;
        width: 26px;
        height: 26px;
        min-width: 26px;
    }

    #host-content-section .accordion-body {
        padding: 0 14px 14px 48px;
        font-size: 0.85rem;
    }
}
