/**
 * Windows Hosting Modern Page - 2025 Design
 * Purple/Magenta Theme
 */

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

.win-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #4c1d95 0%, #2e1065 50%, #1e1b4b 100%);
    z-index: 0;
}

.win-hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,0.08) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 1;
}

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

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

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

.win-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(147, 51, 234, 0.2);
    color: #c4b5fd;
    font-size: 14px;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 24px;
}

.win-badge svg {
    fill: #a78bfa;
}

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

.win-hero h1 .text-gradient {
    background: linear-gradient(135deg, #a78bfa, #f472b6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.win-hero-desc strong {
    color: #f472b6;
}

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

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

.win-feature-item i {
    color: #a78bfa;
    font-size: 12px;
}

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

.btn-win-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #9333ea, #ec4899);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s;
    text-decoration: none;
}

.btn-win-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(147, 51, 234, 0.4);
    color: #fff;
}

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

.btn-win-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
}

/* Hero Visual */
.win-hero-visual {
    flex: 1;
    position: relative;
    min-height: 400px;
}

.win-server-illustration {
    width: 300px;
    height: 300px;
    margin: 0 auto;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.win-logo-float {
    width: 180px;
    height: 180px;
    background: linear-gradient(135deg, #9333ea, #ec4899);
    border-radius: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 30px 60px rgba(147, 51, 234, 0.4);
    animation: float 3s ease-in-out infinite;
}

.win-logo-float svg {
    width: 100px;
    height: 100px;
    fill: #fff;
}

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

.win-floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    font-size: 14px;
    font-weight: 600;
    color: #1e1b4b;
}

.win-floating-card .card-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #9333ea, #ec4899);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.win-floating-card .card-icon.purple {
    background: linear-gradient(135deg, #7c3aed, #a78bfa);
}

.win-floating-card.card-1 {
    top: 20%;
    right: 10%;
    animation: floatCard 4s ease-in-out infinite;
}

.win-floating-card.card-2 {
    bottom: 25%;
    left: 5%;
    animation: floatCard 4s ease-in-out infinite 1s;
}

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

/* ============================================
   VIDEO SECTION
   ============================================ */
.win-video-section {
    padding: 80px 0;
    background: #fff;
}

.win-video-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
    background: #f8fafc;
    border-radius: 24px;
    padding: 50px;
}

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

.win-video-content h2 {
    font-size: 28px;
    font-weight: 700;
    color: #1e1b4b;
    margin-bottom: 12px;
}

.win-video-content p {
    font-size: 16px;
    color: #64748b;
    margin-bottom: 24px;
}

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

.win-video-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #1e1b4b;
}

.win-video-features li i {
    color: #9333ea;
    font-size: 12px;
}

.win-video-player {
    flex: 1.2;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    position: relative;
}

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

/* Video Cover */
.video-cover {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #4c1d95 0%, #2e1065 50%, #1e1b4b 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: opacity 0.4s ease;
}

.video-cover::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px);
    background-size: 30px 30px;
}

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

.cover-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.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;
}

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

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

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

@media (max-width: 991px) {
    .win-video-wrapper {
        flex-direction: column;
        padding: 30px;
    }

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

/* ============================================
   PRICING SECTION
   ============================================ */
.win-pricing {
    padding: 100px 0;
    background: linear-gradient(180deg, #faf5ff 0%, #fff 100%);
}

.section-header-modern {
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.1), rgba(236, 72, 153, 0.1));
    color: #9333ea;
    font-size: 14px;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 16px;
}

.section-header-modern h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1e1b4b;
    margin-bottom: 12px;
}

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

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

.win-price-card {
    background: #fff;
    border-radius: 24px;
    padding: 40px 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
    position: relative;
}

.win-price-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(147, 51, 234, 0.15);
}

.win-price-card.popular {
    background: linear-gradient(135deg, #4c1d95, #7c3aed);
    color: #fff;
}

.win-price-card.popular .win-plan-name,
.win-price-card.popular .win-plan-space,
.win-price-card.popular .price-amount,
.win-price-card.popular .price-period,
.win-price-card.popular .win-features-list li {
    color: #fff;
}

.win-price-card.popular .win-features-list li {
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.win-price-card.popular .feature-label {
    color: rgba(255, 255, 255, 0.7);
}

.win-price-card.popular .feature-value {
    color: #fff;
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 20px;
    background: linear-gradient(135deg, #ec4899, #f472b6);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(236, 72, 153, 0.4);
}

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

.win-plan-name {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: #1e1b4b;
    margin-bottom: 8px;
}

.win-plan-space {
    display: inline-block;
    padding: 4px 16px;
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.1), rgba(236, 72, 153, 0.1));
    color: #9333ea;
    font-size: 14px;
    font-weight: 600;
    border-radius: 20px;
}

.win-price-card.popular .win-plan-space {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.win-card-price {
    text-align: center;
    margin-bottom: 28px;
}

.price-amount {
    display: block;
    font-size: 36px;
    font-weight: 800;
    color: #1e1b4b;
}

.price-period {
    display: block;
    font-size: 14px;
    color: #64748b;
    margin-top: 4px;
}

.price-discount {
    display: block;
    margin-top: 8px;
    padding: 6px 12px;
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.1), rgba(236, 72, 153, 0.1));
    color: #9333ea;
    font-size: 12px;
    font-weight: 600;
    border-radius: 8px;
}

.win-price-card.popular .price-discount {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.win-features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    text-align: right;
}

.win-features-list li {
    padding: 10px 0;
    border-bottom: 1px solid #f1f5f9;
    font-size: 14px;
    color: #64748b;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.win-features-list .feature-label {
    color: #64748b;
    font-weight: 500;
}

.win-features-list .feature-value {
    font-weight: 700;
    color: #1e1b4b;
}

.win-btn-order {
    display: block;
    width: 100%;
    padding: 14px 24px;
    background: #f1f5f9;
    color: #1e1b4b;
    font-size: 15px;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
}

.win-btn-order:hover {
    background: linear-gradient(135deg, #9333ea, #ec4899);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(147, 51, 234, 0.3);
}

.win-btn-order.primary {
    background: linear-gradient(135deg, #ec4899, #f472b6);
    color: #fff;
}

.win-btn-order.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(236, 72, 153, 0.4);
}

.win-pricing-note {
    margin-top: 40px;
    color: #64748b;
}

.win-pricing-note a {
    color: #9333ea;
    font-weight: 600;
}

.btn-consult-inline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    padding: 12px 24px;
    background: transparent;
    border: 2px solid #9333ea;
    color: #9333ea;
    font-size: 14px;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-consult-inline:hover {
    background: #9333ea;
    color: #fff;
}

@media (max-width: 991px) {
    .win-pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
}

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

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

.win-feature-card {
    padding: 40px 30px;
    background: #faf5ff;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s;
}

.win-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(147, 51, 234, 0.1);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #9333ea, #ec4899);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

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

.feature-icon.purple {
    background: linear-gradient(135deg, #7c3aed, #a78bfa);
}

.feature-icon.green {
    background: linear-gradient(135deg, #10b981, #34d399);
}

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

.feature-icon.blue {
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
}

.feature-icon.pink {
    background: linear-gradient(135deg, #ec4899, #f472b6);
}

.win-feature-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1e1b4b;
    margin-bottom: 12px;
}

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

@media (max-width: 991px) {
    .win-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* ============================================
   TECH STACK SECTION
   ============================================ */
.win-tech-stack {
    padding: 80px 0;
    background: linear-gradient(135deg, #4c1d95 0%, #2e1065 100%);
    position: relative;
    overflow: hidden;
}

.win-tech-stack::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 40px 40px;
}

.win-tech-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.win-tech-text h2 {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.win-tech-text p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
}

.win-tech-list {
    display: flex;
    gap: 24px;
}

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

.tech-icon-box {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
}

.tech-icon-box svg {
    width: 32px;
    height: 32px;
    fill: #4c1d95;
}

.tech-icon-box.purple svg {
    fill: #7c3aed;
}

.tech-item span {
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}

.win-tech-stats {
    display: flex;
    gap: 40px;
    position: relative;
    z-index: 1;
}

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

.stat-number {
    display: block;
    font-size: 36px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 991px) {
    .win-tech-content {
        flex-direction: column;
        text-align: center;
    }

    .win-tech-list {
        justify-content: center;
    }

    .win-tech-stats {
        justify-content: center;
    }
}

/* ============================================
   FAQ SECTION
   ============================================ */
.win-faq {
    padding: 100px 0;
    background: #faf5ff;
}

.win-faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

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

.faq-question:hover {
    background: #faf5ff;
}

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

.faq-question i {
    color: #9333ea;
    transition: transform 0.3s;
}

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

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

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

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

/* ============================================
   CTA SECTION
   ============================================ */
.win-cta {
    padding: 80px 0;
    background: #fff;
}

.win-cta-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 60px;
    background: linear-gradient(135deg, #4c1d95 0%, #7c3aed 100%);
    border-radius: 32px;
    position: relative;
    overflow: hidden;
}

.win-cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle, rgba(255,255,255,0.06) 1px, transparent 1px);
    background-size: 30px 30px;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
}

.cta-content p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
}

.cta-buttons {
    display: flex;
    gap: 16px;
    position: relative;
    z-index: 1;
}

.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    background: #fff;
    color: #4c1d95;
    font-size: 16px;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s;
    text-decoration: none;
}

.btn-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    color: #4c1d95;
}

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

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

@media (max-width: 768px) {
    .win-cta-card {
        flex-direction: column;
        text-align: center;
        padding: 40px 30px;
    }

    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-cta-primary,
    .btn-cta-secondary {
        justify-content: center;
    }
}

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

.modal-close {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.modal-visual {
    background: linear-gradient(135deg, #4c1d95 0%, #7c3aed 100%);
    padding: 50px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.modal-avatar {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.modal-avatar i {
    font-size: 40px;
    color: #fff;
}

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

.modal-contact p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

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

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

.modal-form h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1e1b4b;
    margin-bottom: 30px;
}

.badge-free {
    display: inline-block;
    padding: 4px 12px;
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.1), rgba(236, 72, 153, 0.1));
    color: #9333ea;
    font-size: 12px;
    font-weight: 600;
    border-radius: 20px;
    margin-right: 8px;
}

.modal-form input {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    font-size: 14px;
    margin-bottom: 16px;
    transition: all 0.3s;
}

.modal-form input:focus {
    outline: none;
    border-color: #9333ea;
    box-shadow: 0 0 0 3px rgba(147, 51, 234, 0.1);
}

.time-select {
    margin-bottom: 24px;
}

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

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

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

.form-btns {
    display: flex;
    gap: 12px;
}

.btn-cancel {
    flex: 1;
    padding: 14px;
    background: #f1f5f9;
    border: none;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    color: #64748b;
    cursor: pointer;
    transition: all 0.3s;
}

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

.btn-submit {
    flex: 2;
    padding: 14px;
    background: linear-gradient(135deg, #9333ea, #ec4899);
    border: none;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(147, 51, 234, 0.3);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 991px) {
    .win-hero-content {
        flex-direction: column;
        text-align: center;
    }

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

    .win-hero h1 {
        font-size: 36px;
    }

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

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

    .win-hero-visual {
        min-height: 300px;
    }
}

@media (max-width: 576px) {
    .win-hero {
        padding: 100px 0 60px;
    }

    .win-hero h1 {
        font-size: 28px;
    }

    .section-header-modern h2 {
        font-size: 24px;
    }

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

    .modal-visual {
        display: none;
    }
}

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

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

/* ============================================
   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, #9333ea, #ec4899);
    box-shadow: 0 4px 15px rgba(147, 51, 234, 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, #9333ea, #7c3aed);
    color: #fff;
}
@keyframes pulse-badge {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}
/* Price display */
.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: #9333ea;
    text-decoration-thickness: 2px;
}
.price-save-badge {
    display: inline-block;
    padding: 3px 10px;
    background: linear-gradient(135deg, rgba(147,51,234,0.1), rgba(236,72,153,0.1));
    color: #9333ea;
    font-size: 12px;
    font-weight: 700;
    border-radius: 20px;
    border: 1px solid rgba(147,51,234,0.25);
}
.price-period-sub {
    display: block;
    font-size: 12px;
    color: #94a3b8;
    margin-top: 4px;
}
.win-price-card.popular .price-old {
    color: rgba(255,255,255,0.5);
    text-decoration-color: #c4b5fd;
}
.win-price-card.popular .price-save-badge {
    background: rgba(255,255,255,0.15);
    color: #fff;
    border-color: rgba(255,255,255,0.25);
}
.win-price-card.popular .price-period-sub {
    color: rgba(255,255,255,0.6);
}


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