/**
 * Linux Pro VIP Hosting Modern Page - 2025 Design
 * Gold/Premium Theme
 */

/* ============================================
   HERO SECTION
   ============================================ */
.vip-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.vip-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f0f23 100%);
    z-index: 0;
}

.vip-hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle, rgba(245, 158, 11, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 1;
}

.vip-hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.15) 0%, transparent 70%);
    z-index: 1;
}

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

.vip-hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.vip-hero-text {
    flex: 1;
    max-width: 600px;
}

.vip-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.2), rgba(217, 119, 6, 0.2));
    color: #fbbf24;
    font-size: 14px;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 24px;
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.vip-badge svg {
    fill: #f59e0b;
}

.vip-hero h1 {
    font-size: 52px;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 20px;
    text-align: right;
}

.vip-hero h1 .text-gradient {
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.vip-hero-desc {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 28px;
}

.vip-hero-desc strong {
    color: #fbbf24;
}

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

.vip-feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
}

.vip-feature-item i {
    color: #f59e0b;
    font-size: 12px;
}

.vip-hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-vip-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #0f0f23;
    font-size: 16px;
    font-weight: 700;
    border-radius: 12px;
    transition: all 0.3s;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.btn-vip-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(245, 158, 11, 0.4);
    color: #0f0f23;
}

.btn-vip-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border-radius: 12px;
    border: 1px solid rgba(245, 158, 11, 0.3);
    transition: all 0.3s;
    cursor: pointer;
}

.btn-vip-secondary:hover {
    background: rgba(245, 158, 11, 0.1);
    border-color: #f59e0b;
    color: #fbbf24;
}

/* Hero Visual */
.vip-hero-visual {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vip-server-illustration {
    position: relative;
    width: 350px;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vip-logo-float {
    width: 220px;
    height: 220px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 30px 60px rgba(245, 158, 11, 0.4),
        0 0 80px rgba(245, 158, 11, 0.2),
        inset 0 -5px 20px rgba(0, 0, 0, 0.2);
    animation: float 3s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.vip-logo-float::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 40%,
        rgba(255, 255, 255, 0.15) 50%,
        transparent 60%
    );
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}

.vip-logo-float .linux-tux-logo {
    width: 120px;
    height: 120px;
    object-fit: contain;
    filter: drop-shadow(0 5px 15px rgba(0, 0, 0, 0.3));
    position: relative;
    z-index: 1;
}

.vip-crown {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.vip-crown svg {
    width: 50px;
    height: 50px;
    fill: #fbbf24;
    filter: drop-shadow(0 3px 10px rgba(245, 158, 11, 0.5));
}

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

.vip-floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid rgba(245, 158, 11, 0.2);
    animation: floatCard 4s ease-in-out infinite;
}

.vip-floating-card.card-1 {
    top: 20%;
    right: 0;
    animation-delay: 0s;
}

.vip-floating-card.card-2 {
    bottom: 20%;
    left: 0;
    animation-delay: 2s;
}

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

.card-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-icon.gold {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
}

.card-icon i {
    font-size: 18px;
    color: #0f0f23;
}

/* ============================================
   VIDEO SECTION
   ============================================ */
.vip-video-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #0f0f23 0%, #1a1a2e 100%);
}

.vip-video-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
    background: rgba(245, 158, 11, 0.03);
    border: 1px solid rgba(245, 158, 11, 0.15);
    border-radius: 24px;
    padding: 40px;
}

.vip-video-content {
    flex: 1;
}

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

.vip-video-content > p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 24px;
}

.vip-video-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.vip-video-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
}

.vip-video-features li i {
    color: #f59e0b;
    font-size: 12px;
}

.vip-video-player {
    flex: 1;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: #000;
    border: 2px solid rgba(245, 158, 11, 0.2);
}

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

.video-cover {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.9), rgba(217, 119, 6, 0.9));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: opacity 0.3s;
}

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

.play-button {
    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;
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.play-button svg {
    width: 22px;
    height: 22px;
    fill: #fff;
    margin-left: 4px;
}

.play-text {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.8rem;
    font-weight: 500;
    margin-top: 12px;
}

/* ============================================
   PRICING SECTION
   ============================================ */
.vip-pricing-section {
    padding: 100px 0;
    background: #f8f9fa;
}

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

.vip-section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(217, 119, 6, 0.1));
    color: #d97706;
    font-size: 14px;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 16px;
}

.vip-section-header h2 {
    font-size: 40px;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 12px;
}

.vip-section-header p {
    font-size: 18px;
    color: #64748b;
}

.vip-section-header.light h2 {
    color: #fff;
}

.vip-section-header.light p {
    color: rgba(255, 255, 255, 0.7);
}

.vip-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.vip-pricing-card {
    background: #fff;
    border-radius: 24px;
    padding: 40px 32px;
    border: 2px solid #f59e0b;
    transition: all 0.3s;
    position: relative;
}

.vip-pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(245, 158, 11, 0.15);
}

.vip-pricing-card.popular {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    border: 2px solid #f59e0b;
    transform: scale(1.05);
}

.vip-pricing-card.popular:hover {
    transform: scale(1.05) translateY(-10px);
}

.vip-pricing-card.premium {
    background: #fff;
    border: 2px solid #f59e0b;
}

.vip-popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    padding: 8px 24px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #0f0f23;
    font-size: 13px;
    font-weight: 700;
    border-radius: 20px;
}

.vip-unlimited-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    padding: 8px 24px;
    background: #fff;
    color: #f59e0b;
    font-size: 13px;
    font-weight: 700;
    border-radius: 20px;
    border: 2px solid #f59e0b;
}

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

.vip-plan-name {
    display: block;
    font-size: 28px;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 8px;
}

.vip-pricing-card.popular .vip-plan-name {
    color: #fff;
}

.vip-plan-space {
    display: inline-block;
    padding: 6px 16px;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(217, 119, 6, 0.1));
    color: #d97706;
    font-size: 18px;
    font-weight: 700;
    border-radius: 10px;
}

.vip-pricing-card.popular .vip-plan-space {
    background: rgba(245, 158, 11, 0.2);
    color: #fbbf24;
}

.vip-card-resources {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid #e2e8f0;
}

.vip-pricing-card.popular .vip-card-resources {
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

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

.resource-label {
    display: block;
    font-size: 12px;
    color: #94a3b8;
    margin-bottom: 4px;
}

.vip-pricing-card.popular .resource-label {
    color: rgba(255, 255, 255, 0.6);
}

.resource-value {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: #1a1a2e;
}

.vip-pricing-card.popular .resource-value {
    color: #fbbf24;
}

.vip-card-price {
    text-align: center;
    margin-bottom: 24px;
}

.vip-yearly-discount {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 12px;
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(5, 150, 105, 0.1));
    color: #10b981;
    font-size: 13px;
    font-weight: 600;
    border-radius: 8px;
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.vip-yearly-discount i {
    font-size: 10px;
}

.vip-yearly-discount.light {
    background: rgba(16, 185, 129, 0.2);
    color: #34d399;
    border-color: rgba(52, 211, 153, 0.3);
}

.vip-price-amount {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.vip-price-value {
    font-size: 36px;
    font-weight: 800;
    color: #1a1a2e;
}

.vip-pricing-card.popular .vip-price-value {
    color: #fff;
}

.vip-price-unit {
    font-size: 14px;
    color: #64748b;
}

.vip-pricing-card.popular .vip-price-unit {
    color: rgba(255, 255, 255, 0.7);
}

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

.vip-card-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    font-size: 14px;
    color: #475569;
    border-bottom: 1px solid #f1f5f9;
}

.vip-pricing-card.popular .vip-card-features li {
    color: rgba(255, 255, 255, 0.9);
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

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

.vip-card-features li i {
    color: #f59e0b;
    font-size: 12px;
}

.vip-btn-order {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 16px 24px;
    background: #f1f5f9;
    color: #1a1a2e;
    font-size: 16px;
    font-weight: 700;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s;
}

.vip-btn-order:hover {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #0f0f23;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.3);
}

.vip-pricing-card.popular .vip-btn-order {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #0f0f23;
}

.vip-pricing-card.popular .vip-btn-order:hover {
    box-shadow: 0 15px 40px rgba(245, 158, 11, 0.5);
}

/* ============================================
   CONSULTATION BANNER
   ============================================ */
.vip-consult-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    border: 2px solid #f59e0b;
    border-radius: 20px;
    padding: 30px 40px;
    margin-top: 60px;
}

.vip-consult-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.vip-consult-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vip-consult-icon i {
    font-size: 24px;
    color: #0f0f23;
}

.vip-consult-text h3 {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.vip-consult-text p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.vip-consult-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.vip-consult-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 28px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #0f0f23;
    font-size: 16px;
    font-weight: 700;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s;
}

.vip-consult-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.4);
    color: #0f0f23;
}

.vip-consult-btn.online {
    background: transparent;
    border: 2px solid #f59e0b;
    color: #fbbf24;
    cursor: pointer;
}

.vip-consult-btn.online:hover {
    background: rgba(245, 158, 11, 0.1);
    color: #fbbf24;
}

@media (max-width: 768px) {
    .vip-consult-banner {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 24px;
    }

    .vip-consult-content {
        flex-direction: column;
    }
}

/* ============================================
   WHY VIP SECTION
   ============================================ */
.vip-why-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
}

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

.vip-comparison-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(245, 158, 11, 0.15);
    border-radius: 20px;
    padding: 40px 24px;
    text-align: center;
    transition: all 0.3s;
}

.vip-comparison-card:hover {
    background: rgba(245, 158, 11, 0.05);
    border-color: #f59e0b;
    transform: translateY(-5px);
}

.comparison-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.2), rgba(217, 119, 6, 0.2));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.comparison-icon svg {
    width: 32px;
    height: 32px;
    stroke: #f59e0b;
}

.vip-comparison-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.vip-comparison-card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.vip-features-section {
    padding: 100px 0;
    background: #fff;
}

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

.vip-feature-card {
    padding: 40px 30px;
    background: #f8f9fa;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.vip-feature-card:hover {
    background: #fff;
    border-color: #f59e0b;
    box-shadow: 0 20px 40px rgba(245, 158, 11, 0.1);
    transform: translateY(-5px);
}

.vip-feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(217, 119, 6, 0.1));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    transition: all 0.3s;
}

.vip-feature-card:hover .vip-feature-icon {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.vip-feature-icon svg {
    width: 32px;
    height: 32px;
    stroke: #f59e0b;
}

.vip-feature-card:hover .vip-feature-icon svg {
    stroke: #0f0f23;
}

.vip-feature-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 12px;
}

.vip-feature-card p {
    font-size: 15px;
    color: #64748b;
    line-height: 1.7;
}

/* ============================================
   TECH SECTION
   ============================================ */
.vip-tech-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.vip-tech-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
}

.vip-tech-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.vip-tech-icon-box {
    width: 80px;
    height: 80px;
    background: #fff;
    border: 2px solid #e2e8f0;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.vip-tech-icon-box:hover {
    border-color: #f59e0b;
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.15);
    transform: translateY(-5px);
}

.vip-tech-icon-box svg {
    fill: #f59e0b;
}

.vip-tech-item span {
    font-size: 14px;
    font-weight: 600;
    color: #475569;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.vip-faq-section {
    padding: 100px 0;
    background: #fff;
}

.vip-faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.vip-faq-item {
    background: #f8f9fa;
    border-radius: 16px;
    margin-bottom: 16px;
    overflow: hidden;
    border: 2px solid #e2e8f0;
    transition: all 0.3s;
}

.vip-faq-item:hover {
    border-color: #f59e0b;
}

.vip-faq-item.active {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.05), rgba(217, 119, 6, 0.05));
    border-color: #f59e0b;
}

.vip-faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    cursor: pointer;
}

.vip-faq-question span {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a2e;
}

.vip-faq-question i {
    color: #f59e0b;
    font-size: 14px;
    transition: transform 0.3s;
}

.vip-faq-item.active .vip-faq-question i {
    transform: rotate(45deg);
}

.vip-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.vip-faq-item.active .vip-faq-answer {
    max-height: 500px;
}

.vip-faq-answer p {
    padding: 0 24px 20px;
    font-size: 15px;
    color: #64748b;
    line-height: 1.8;
}

/* ============================================
   CTA SECTION
   ============================================ */
.vip-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
}

.vip-cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.vip-cta-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
    box-shadow: 0 20px 40px rgba(245, 158, 11, 0.3);
}

.vip-cta-icon svg {
    width: 50px;
    height: 50px;
    fill: #0f0f23;
}

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

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

.vip-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* ============================================
   MODAL - Modern Style
   ============================================ */
.consult-modal {
    border: none;
    border-radius: 24px;
    overflow: hidden;
}

.modal-close {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.modal-close:hover {
    background: #f3f4f6;
    transform: rotate(90deg);
}

.modal-visual {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.modal-avatar {
    width: 160px;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    border-radius: 50%;
    color: #fff;
    font-size: 60px;
    margin-bottom: 30px;
    box-shadow: 0 20px 50px rgba(245, 158, 11, 0.3);
}

.modal-avatar svg {
    width: 60px;
    height: 60px;
    stroke: #fff;
    flex-shrink: 0;
}

.modal-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 12px 0;
    font-size: 15px;
    color: #1a1a2e;
}

.modal-contact i {
    color: #f59e0b;
}

.modal-form {
    padding: 50px 40px;
}

.modal-form h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.badge-free {
    padding: 6px 14px;
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
    font-size: 13px;
    font-weight: 600;
    border-radius: 50px;
}

.modal-form input[type="text"],
.modal-form input[type="tel"],
.modal-form input[type="email"] {
    width: 100%;
    padding: 16px 20px;
    margin-bottom: 16px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 15px;
    transition: all 0.3s;
}

.modal-form input:focus {
    outline: none;
    border-color: #f59e0b;
}

.time-select {
    margin: 20px 0;
}

.time-select > label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 12px;
}

.time-opts {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.time-opts label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #64748b;
    cursor: pointer;
}

.time-opts input[type="radio"] {
    width: 18px;
    height: 18px;
    accent-color: #f59e0b;
}

.form-btns {
    display: flex;
    gap: 16px;
    margin-top: 28px;
}

.btn-cancel {
    flex: 1;
    padding: 16px;
    background: #fff;
    color: #1a1a2e;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-cancel:hover {
    background: #f9fafb;
}

.btn-submit {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.4);
}

@media (max-width: 992px) {
    .modal-visual {
        display: none;
    }
}

.vip-phone-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: #0f0f23;
    font-size: 20px;
    font-weight: 700;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s;
}

.vip-phone-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.4);
    color: #0f0f23;
}

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

@media (max-width: 992px) {
    .vip-hero-content {
        flex-direction: column;
        text-align: center;
    }

    .vip-hero-text {
        max-width: 100%;
    }

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

    .vip-hero-buttons {
        justify-content: center;
    }

    .vip-video-wrapper {
        flex-direction: column;
    }

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

    .vip-video-features {
        grid-template-columns: 1fr;
        text-align: right;
    }

    .vip-pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .vip-pricing-card.popular {
        transform: scale(1);
    }

    .vip-pricing-card.popular:hover {
        transform: translateY(-10px);
    }

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

@media (max-width: 768px) {
    .vip-hero h1 {
        font-size: 36px;
    }

    .vip-section-header h2 {
        font-size: 28px;
    }

    .vip-comparison-grid {
        grid-template-columns: 1fr;
    }

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

    .vip-video-wrapper {
        padding: 24px;
    }

    .vip-cta-content h2 {
        font-size: 28px;
    }
}

/* ============================================
   BILLING TABS
   ============================================ */
.billing-tabs-wrapper { display: flex; justify-content: center; margin-bottom: 48px; }
.billing-tabs { display: inline-flex; align-items: center; position: relative; padding: 5px; background: #fff; border-radius: 14px; border: 2px solid #e2e8f0; box-shadow: 0 4px 15px rgba(0,0,0,0.07); }
.billing-tab { position: relative; z-index: 1; padding: 14px 32px; font-size: 15px; font-weight: 700; color: #1e3a5f; background: none; border: none; border-radius: 10px; cursor: pointer; transition: all 0.3s ease; user-select: none; display: inline-flex; align-items: center; gap: 8px; }
.billing-tab.active { color: #fff; background: linear-gradient(135deg, #21a0d5, #00d4aa); box-shadow: 0 4px 15px rgba(33, 160, 213, 0.35); }
.billing-tab:not(.active) { color: #1e3a5f; background: #f1f5f9; }
.billing-tab:not(.active):hover { background: #e2e8f0; }
.discount-badge { display: inline-block; padding: 3px 9px; background: rgba(255,255,255,0.25); color: #fff; font-size: 11px; font-weight: 700; border-radius: 20px; animation: pulse-badge 2s ease-in-out infinite; }
.billing-tab:not(.active) .discount-badge { background: linear-gradient(135deg, #00d4aa, #00a67d); color: #fff; }
@keyframes pulse-badge { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.05); } }
.price-original { margin-bottom: 8px; display: flex; align-items: center; justify-content: center; gap: 10px; }
.price-old { font-size: 20px; font-weight: 600; color: #94a3b8; text-decoration: line-through; text-decoration-color: #21a0d5; text-decoration-thickness: 2px; }
.price-save-badge { display: inline-block; padding: 3px 10px; background: linear-gradient(135deg, rgba(33,160,213,0.1), rgba(0,212,170,0.1)); color: #21a0d5; font-size: 12px; font-weight: 700; border-radius: 20px; border: 1px solid rgba(33,160,213,0.25); }
.price-period-sub { display: block; font-size: 12px; color: #94a3b8; margin-top: 4px; }

/* 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;
    }
}