/* ============================================
   VPS Windows Page Styles - Modern Design
   ============================================ */

/* Hero Section */
.vps-windows-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8fbff 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.vps-windows-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 80% 20%, rgba(81, 167, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(81, 167, 255, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
    border: 1px solid rgba(81, 167, 255, 0.2);
    border-radius: 50px;
    margin-bottom: 24px;
    font-size: 14px;
    font-weight: 600;
    color: #51a7ff;
}

.hero-badge svg {
    width: 18px;
    height: 18px;
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 24px;
    line-height: 1.1;
}

.hero-description {
    font-size: 20px;
    color: #666;
    margin-bottom: 32px;
    line-height: 1.6;
    max-width: 540px;
}

.hero-features-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
}

.hero-features-list .feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    color: #333;
}

.hero-features-list .feature-item svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

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

.btn-primary-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: linear-gradient(135deg, #51a7ff 0%, #3b82f6 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(81, 167, 255, 0.3);
}

.btn-primary-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(81, 167, 255, 0.4);
    text-decoration: none;
    color: white;
}

.btn-primary-cta svg {
    width: 20px;
    height: 20px;
}

.hero-price-tag {
    font-size: 15px;
    color: #666;
}

.hero-price-tag strong {
    font-size: 24px;
    color: #51a7ff;
    font-weight: 800;
}

.hero-image-wrapper {
    position: relative;
    padding: 40px;
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.floating-card {
    position: absolute;
    background: white;
    border-radius: 16px;
    padding: 16px 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 10;
}

.floating-card-1 {
    bottom: 60px;
    left: 20px;
}

.floating-card-2 {
    top: 80px;
    right: 20px;
}

.floating-card .card-icon {
    font-size: 28px;
}

.floating-card .card-label {
    font-size: 12px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.floating-card .card-value {
    font-size: 20px;
    font-weight: 800;
    color: #51a7ff;
}

/* Tech Specs Section */
.tech-specs-section {
    padding: 80px 0;
    background: white;
}

.spec-card {
    text-align: center;
    padding: 32px 20px;
    background: #f8fbff;
    border-radius: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    height: 100%;
}

.spec-card:hover {
    transform: translateY(-5px);
    border-color: #51a7ff;
    box-shadow: 0 10px 30px rgba(81, 167, 255, 0.15);
}

.spec-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.spec-icon svg {
    width: 100%;
    height: 100%;
}

.spec-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.spec-card p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 18px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

/* Why Choose Section */
.why-choose-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.why-choose-section .row {
    margin-bottom: -24px;
}

.why-choose-section .col-lg-4,
.why-choose-section .col-md-6 {
    margin-bottom: 24px;
}

.benefit-card {
    padding: 32px;
    background: white;
    border-radius: 20px;
    border: 2px solid rgba(81, 167, 255, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    position: relative;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(81, 167, 255, 0.2);
    border-color: rgba(81, 167, 255, 0.3);
}

.benefit-card-featured {
    background: linear-gradient(135deg, rgba(81, 167, 255, 0.05) 0%, rgba(59, 130, 246, 0.05) 100%);
    border: 2px solid rgba(81, 167, 255, 0.2);
}

.benefit-card-featured:hover {
    border-color: rgba(81, 167, 255, 0.4);
}

.featured-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: linear-gradient(135deg, #51a7ff 0%, #3b82f6 100%);
    color: white;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.benefit-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 20px;
}

.benefit-icon svg {
    width: 100%;
    height: 100%;
}

.benefit-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.benefit-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* Use Cases Section */
.use-cases-section {
    padding: 100px 0;
    background: white;
}

.use-cases-section .row {
    margin-bottom: -24px;
}

.use-cases-section .col-lg-4,
.use-cases-section .col-md-6 {
    margin-bottom: 24px;
}

.usecase-card {
    padding: 32px;
    background: #f8fbff;
    border-radius: 20px;
    border: 2px solid rgba(81, 167, 255, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    text-align: center;
}

.usecase-card:hover {
    transform: translateY(-5px);
    border-color: rgba(81, 167, 255, 0.3);
    box-shadow: 0 10px 30px rgba(81, 167, 255, 0.15);
    background: white;
}

.usecase-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

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

.usecase-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Comparison Section */
.comparison-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.comparison-table {
    width: 100%;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.comparison-table thead {
    background: linear-gradient(135deg, #f8fbff 0%, #ffffff 100%);
}

.comparison-table th {
    padding: 24px 20px;
    font-weight: 700;
    color: #1a1a1a;
    border-bottom: 2px solid #e0e0e0;
    text-align: center;
    position: relative;
}

.comparison-table th:first-child {
    text-align: left;
}

.highlight-column {
    background: linear-gradient(180deg, rgba(81, 167, 255, 0.08) 0%, rgba(81, 167, 255, 0.03) 100%);
    border-left: 2px solid rgba(81, 167, 255, 0.2);
    border-right: 2px solid rgba(81, 167, 255, 0.2);
}

.table-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #51a7ff 0%, #3b82f6 100%);
    color: white;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    white-space: nowrap;
}

.comparison-table td {
    padding: 20px;
    border-bottom: 1px solid #f0f0f0;
    text-align: center;
}

.comparison-table td:first-child {
    text-align: left;
    font-weight: 500;
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
    padding-top: 24px;
}

.table-cta-btn, .table-cta-btn-secondary {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.table-cta-btn {
    background: linear-gradient(135deg, #51a7ff 0%, #3b82f6 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(81, 167, 255, 0.3);
}

.table-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(81, 167, 255, 0.4);
    color: white;
    text-decoration: none;
}

.table-cta-btn-secondary {
    background: white;
    color: #51a7ff;
    border: 2px solid #51a7ff;
}

.table-cta-btn-secondary:hover {
    background: #f8fbff;
    transform: translateY(-2px);
    color: #51a7ff;
    text-decoration: none;
}

/* Mobile Access Section */
.mobile-access-section {
    padding: 100px 0;
    background: white;
}

.mobile-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.mobile-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(81, 167, 255, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
    border: 1px solid rgba(81, 167, 255, 0.2);
    border-radius: 50px;
    margin-bottom: 24px;
    font-size: 14px;
    font-weight: 600;
    color: #51a7ff;
}

.mobile-badge svg {
    width: 18px;
    height: 18px;
}

.mobile-title {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.2;
}

.mobile-description {
    font-size: 18px;
    color: #666;
    margin-bottom: 32px;
    line-height: 1.6;
}

.mobile-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 32px;
}

.mobile-feature-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.mobile-feature-item svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    margin-top: 2px;
}

.mobile-feature-item strong {
    display: block;
    font-size: 16px;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.mobile-feature-item p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.download-label {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 16px;
}

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

.download-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    background: #1a1a1a;
    color: white;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    color: white;
    text-decoration: none;
}

.download-btn svg {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.download-store {
    font-size: 12px;
    opacity: 0.8;
}

.download-device {
    font-size: 14px;
    font-weight: 600;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.faq-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 16px;
    margin-bottom: 16px;
    border: 2px solid rgba(81, 167, 255, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(81, 167, 255, 0.3);
    box-shadow: 0 5px 20px rgba(81, 167, 255, 0.1);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px;
    background: none;
    border: none;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: #51a7ff;
}

.faq-question[aria-expanded="true"] {
    color: #51a7ff;
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(180deg);
}

.faq-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: #51a7ff;
}

.faq-answer {
    padding: 0 24px 24px;
    font-size: 16px;
    color: #666;
    line-height: 1.7;
}

/* Final CTA Section */
.final-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fbff 0%, #ffffff 100%);
}

.cta-card {
    background: linear-gradient(135deg, #51a7ff 0%, #3b82f6 100%);
    border-radius: 30px;
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    box-shadow: 0 20px 60px rgba(81, 167, 255, 0.3);
    flex-wrap: wrap;
}

.cta-content {
    flex: 1;
    min-width: 300px;
}

.cta-title {
    font-size: 36px;
    font-weight: 800;
    color: white;
    margin-bottom: 16px;
    line-height: 1.2;
}

.cta-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    line-height: 1.6;
}

.cta-features-inline {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.cta-features-inline span {
    color: white;
    font-size: 15px;
    font-weight: 500;
}

.cta-action {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
}

.btn-final-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    background: white;
    color: #51a7ff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
}

.btn-final-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    color: #51a7ff;
}

.btn-final-cta svg {
    width: 22px;
    height: 22px;
}

.cta-guarantee {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-size: 14px;
    font-weight: 500;
}

.cta-guarantee svg {
    width: 20px;
    height: 20px;
}

/* Responsive Design */
@media (max-width: 991px) {
    .vps-windows-hero {
        padding: 80px 0 60px;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-description {
        font-size: 18px;
    }

    .section-title {
        font-size: 36px;
    }

    .mobile-title {
        font-size: 32px;
    }

    .cta-card {
        padding: 40px;
        flex-direction: column;
        text-align: center;
    }

    .cta-title {
        font-size: 28px;
    }

    .cta-action {
        align-items: center;
        width: 100%;
    }

    .btn-final-cta {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 32px;
    }

    .hero-description {
        font-size: 16px;
    }

    .section-title {
        font-size: 28px;
    }

    .section-subtitle {
        font-size: 16px;
    }

    .floating-card {
        padding: 12px 16px;
    }

    .floating-card-1 {
        bottom: 20px;
        left: 10px;
    }

    .floating-card-2 {
        top: 20px;
        right: 10px;
    }

    .benefit-card,
    .usecase-card {
        padding: 24px;
    }

    .download-buttons {
        flex-direction: column;
    }

    .download-btn {
        width: 100%;
    }

    .comparison-table {
        font-size: 14px;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 12px 8px;
    }

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