/* ==============================================
   Server Landing Page Styles
   YourIT - Toss-inspired clean, modern design
============================================== */

/* Promotion Banner */
.promo-banner {
    background: linear-gradient(90deg, #191f28 0%, #2d3748 100%);
    padding: 14px 0;
    position: relative;
    overflow: hidden;
}

.promo-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 170, 0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.promo-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    position: relative;
    z-index: 1;
}

.promo-badge {
    display: inline-block;
    padding: 4px 10px;
    background: linear-gradient(135deg, var(--primary) 0%, #00B4D8 100%);
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.5px;
    margin-bottom: 0;
}

.promo-content p {
    color: #fff;
    font-size: 14px;
}

.promo-content p strong {
    color: var(--primary);
}

.promo-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: var(--primary);
    color: #fff;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.promo-btn:hover {
    background: #00c49a;
    transform: translateX(3px);
}

/* Floating CTA */
.floating-cta {
    position: fixed;
    right: 24px;
    bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 1000;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.floating-cta.visible {
    opacity: 1;
    transform: translateY(0);
}

.floating-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 20px;
    background: linear-gradient(135deg, var(--primary) 0%, #00B4D8 100%);
    color: #fff;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 8px 25px rgba(0, 212, 170, 0.35);
    transition: all 0.3s ease;
}

.floating-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 212, 170, 0.45);
}

.floating-btn.phone {
    background: #191f28;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

.floating-btn.phone:hover {
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.35);
}

.floating-btn i {
    font-size: 18px;
}

/* Hero Section */
.server-hero {
    position: relative;
    padding: 140px 0 100px;
    background: linear-gradient(180deg, #f8fafb 0%, #ffffff 100%);
    overflow: hidden;
}

.server-hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 60%;
    height: 120%;
    background: radial-gradient(ellipse at center, rgba(0, 212, 170, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.server-hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.server-hero .hero-content {
    text-align: left;
    max-width: none;
    margin: 0;
}

.server-hero .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.12) 0%, rgba(0, 180, 216, 0.12) 100%);
    border: 1px solid rgba(0, 212, 170, 0.25);
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 28px;
}

.server-hero .hero-badge i {
    font-size: 16px;
}

.server-hero .hero-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.3;
    color: #191f28;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.server-hero .hero-desc {
    font-size: 18px;
    line-height: 1.8;
    color: #6b7684;
    margin-bottom: 36px;
}

.server-hero .hero-desc strong {
    color: var(--primary);
    font-weight: 600;
}

.server-hero .hero-buttons {
    display: flex;
    gap: 14px;
    margin-bottom: 40px;
    justify-content: flex-start;
}

.hero-trust-badges {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #4e5968;
    font-weight: 500;
}

.trust-item i {
    color: var(--primary);
    font-size: 16px;
}

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

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

.server-rack {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 180px;
    background: linear-gradient(145deg, #2d3748 0%, #1a202c 100%);
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
}

.rack-unit {
    height: 40px;
    background: #4a5568;
    border-radius: 6px;
    margin-bottom: 8px;
    position: relative;
    overflow: hidden;
}

.rack-unit:last-child {
    margin-bottom: 0;
}

.rack-unit.active {
    background: linear-gradient(90deg, #2d3748 0%, #4a5568 100%);
}

.rack-unit.active::before {
    content: '';
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--primary);
    animation: blink 1.5s ease-in-out infinite;
}

.rack-unit.active::after {
    content: '';
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 4px;
    background: repeating-linear-gradient(90deg, #718096, #718096 4px, transparent 4px, transparent 8px);
}

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

.floating-icons {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.float-icon {
    position: absolute;
    width: 56px;
    height: 56px;
    background: white;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    animation: float 3s ease-in-out infinite;
}

.float-icon i {
    font-size: 24px;
    color: var(--primary);
}

.float-icon.icon-1 { top: 10%; left: 5%; animation-delay: 0s; }
.float-icon.icon-2 { top: 5%; right: 10%; animation-delay: 0.5s; }
.float-icon.icon-3 { bottom: 15%; left: 0; animation-delay: 1s; }
.float-icon.icon-4 { bottom: 10%; right: 5%; animation-delay: 1.5s; }
.float-icon.icon-5 { top: 35%; left: -5%; animation-delay: 0.3s; }
.float-icon.icon-6 { top: 25%; right: 0; animation-delay: 0.8s; }
.float-icon.icon-7 { bottom: 35%; right: -3%; animation-delay: 1.3s; }
.float-icon.icon-8 { bottom: 5%; left: 15%; animation-delay: 1.8s; }

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

/* Stats Section */
.server-stats {
    padding: 80px 0;
    background: #fff;
}

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

.stat-card {
    text-align: center;
    padding: 40px 30px;
    background: #f8fafb;
    border-radius: 24px;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.stat-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.15) 0%, rgba(0, 180, 216, 0.15) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon i {
    font-size: 28px;
    color: var(--primary);
}

.stat-card .stat-number {
    font-size: 48px;
    font-weight: 800;
    color: #191f28;
    line-height: 1.2;
    margin-bottom: 8px;
}

.stat-card .stat-number .unit {
    font-size: 28px;
    color: var(--primary);
}

.stat-card .stat-label {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.stat-card .stat-desc {
    font-size: 14px;
    color: #8b95a1;
}

/* Why Choose Section */
.why-choose-section {
    padding: 100px 0;
    background: #fff;
}

.comparison-table {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.comparison-header {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    background: linear-gradient(135deg, #191f28 0%, #2d3748 100%);
    color: #fff;
    font-weight: 600;
}

.comparison-header .comparison-col {
    padding: 24px;
    text-align: center;
}

.comparison-header .comparison-col.feature {
    text-align: left;
}

.comparison-header .comparison-col.yourit {
    background: linear-gradient(135deg, var(--primary) 0%, #00B4D8 100%);
}

.comparison-logo {
    width: 24px;
    height: 24px;
    margin-right: 8px;
    vertical-align: middle;
}

.comparison-row {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    border-bottom: 1px solid #e5e8eb;
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-col {
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.comparison-col.feature {
    background: #f8fafb;
    font-weight: 500;
    color: #333;
}

.comparison-col.feature i {
    color: var(--primary);
    width: 20px;
}

.comparison-col.yourit {
    background: rgba(0, 212, 170, 0.05);
    justify-content: center;
    color: #191f28;
    font-weight: 500;
}

.comparison-col.yourit.highlight i {
    color: var(--primary);
}

.comparison-col.others {
    justify-content: center;
    color: #8b95a1;
}

.comparison-col.others i {
    color: #e74c3c;
}

/* Free Services Section */
.free-services-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #191f28 0%, #2d3748 100%);
}

.section-header.light .section-badge {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--primary);
}

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

.section-desc.light {
    color: rgba(255, 255, 255, 0.7);
    font-size: 18px;
    margin-top: 16px;
}

.free-services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 50px;
}

.free-service-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
}

.free-service-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
    border-color: var(--primary);
}

.free-service-item .service-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary) 0%, #00B4D8 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.free-service-item .service-icon i {
    font-size: 22px;
    color: #fff;
}

.free-service-item .service-info {
    width: 100%;
}

.free-service-item .service-info h4 {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 6px;
    line-height: 1.4;
}

.free-service-item .service-info p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
}

.free-service-item .service-value {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(0, 212, 170, 0.2);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
    margin-top: auto;
}

.free-services-total {
    margin-top: 50px;
    padding: 30px 40px;
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.15) 0%, rgba(0, 180, 216, 0.15) 100%);
    border: 1px solid rgba(0, 212, 170, 0.3);
    border-radius: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.total-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.total-label {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
}

.total-value {
    font-size: 28px;
    color: #fff;
}

.total-value strong {
    color: var(--primary);
    font-weight: 800;
}

.btn-cta-gradient {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 36px;
    background: linear-gradient(135deg, var(--primary) 0%, #00B4D8 100%);
    color: #fff;
    border-radius: 14px;
    font-size: 17px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-cta-gradient:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 212, 170, 0.4);
}

/* Server Products Section */
.server-products-section {
    padding: 100px 0;
    background: #f8fafb;
}

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

.product-card {
    background: #fff;
    border-radius: 24px;
    padding: 36px;
    position: relative;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.product-card.featured {
    border-color: var(--primary);
    box-shadow: 0 10px 40px rgba(0, 212, 170, 0.15);
}

.product-badge {
    position: absolute;
    top: -12px;
    left: 36px;
    padding: 8px 16px;
    background: #f2f4f6;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    color: #4e5968;
}

.product-badge.popular {
    background: linear-gradient(135deg, var(--primary) 0%, #00B4D8 100%);
    color: #fff;
}

.product-name {
    font-size: 24px;
    font-weight: 700;
    color: #191f28;
    margin-bottom: 8px;
    margin-top: 12px;
}

.product-desc {
    font-size: 14px;
    color: #8b95a1;
    margin-bottom: 28px;
}

.product-specs {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 24px 0;
    border-top: 1px solid #e5e8eb;
    border-bottom: 1px solid #e5e8eb;
    margin-bottom: 24px;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.spec-label {
    font-size: 14px;
    color: #8b95a1;
}

.spec-value {
    font-size: 14px;
    font-weight: 600;
    color: #191f28;
}

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

.price-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 8px;
}

.price-original {
    font-size: 16px;
    color: #8b95a1;
    text-decoration: line-through;
}

.price-discount {
    display: inline-block;
    padding: 4px 10px;
    background: linear-gradient(135deg, #ff4757 0%, #ff6b81 100%);
    color: #fff;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 700;
}

.price-current {
    font-size: 18px;
    color: #191f28;
}

.price-current strong {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary);
}

.product-btn {
    display: block;
    width: 100%;
    padding: 16px;
    background: #f2f4f6;
    color: #4e5968;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
}

.product-btn:hover {
    background: #e5e8eb;
}

.product-btn.primary {
    background: linear-gradient(135deg, var(--primary) 0%, #00B4D8 100%);
    color: #fff;
}

.product-btn.primary:hover {
    box-shadow: 0 8px 20px rgba(0, 212, 170, 0.3);
}

/* Soldout Product Card Styles */
.product-card.soldout {
    position: relative;
    opacity: 0.85;
}

.product-card.soldout:hover {
    transform: none;
    box-shadow: none;
}

.soldout-ribbon {
    position: absolute;
    top: 20px;
    right: -35px;
    background: #6b7684;
    color: #fff;
    padding: 6px 40px;
    font-size: 11px;
    font-weight: 700;
    transform: rotate(45deg);
    z-index: 10;
    letter-spacing: 1px;
}

.soldout-btn-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.product-card.soldout .product-btn.soldout-main {
    background: #6b7684;
    color: #fff;
    cursor: not-allowed;
}

.product-card.soldout .product-btn.restock-notify {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    cursor: pointer;
    pointer-events: auto;
}

.product-card.soldout .product-btn.restock-notify:hover {
    background: var(--primary);
    color: #fff;
}

/* Product Badge Variants */
.product-badge.entry {
    background: #e8f5e9;
    color: #2e7d32;
}

.product-badge.standard {
    background: #e3f2fd;
    color: #1565c0;
}

.product-badge.business {
    background: #fff3e0;
    color: #ef6c00;
}

.product-badge.premium {
    background: #fce4ec;
    color: #c2185b;
}

.product-badge.enterprise {
    background: #f3e5f5;
    color: #7b1fa2;
}

.product-badge.highend {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #fff;
}

.products-notice {
    margin-top: 40px;
    padding: 20px 30px;
    background: #fff;
    border-radius: 14px;
    display: flex;
    align-items: center;
    gap: 14px;
    border: 1px solid #e5e8eb;
}

.products-notice i {
    font-size: 20px;
    color: var(--primary);
}

.products-notice p {
    font-size: 15px;
    color: #6b7684;
}

.products-notice strong {
    color: var(--primary);
}

.products-notice a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}

.products-notice a:hover {
    text-decoration: underline;
}

/* Product ID */
.product-id {
    font-size: 13px;
    color: #8b95a1;
    font-family: 'SF Mono', 'Consolas', monospace;
    margin-bottom: 8px;
}

/* Spec highlight */
.spec-value.highlight {
    color: var(--primary);
}

/* View All Button */
.products-more-link {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 20px;
}

.btn-view-all {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: #191f28;
    color: #fff;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-view-all:hover {
    background: #2d3748;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.btn-view-all i {
    transition: transform 0.3s ease;
}

.btn-view-all:hover i {
    transform: translateX(4px);
}

/* Review Section */
.review-section {
    padding: 100px 0;
    background: #fff;
}

.review-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 600px;
    margin: 0 auto 50px;
    padding: 30px 40px;
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.08) 0%, rgba(0, 180, 216, 0.08) 100%);
    border-radius: 20px;
}

.review-score {
    display: flex;
    align-items: center;
    gap: 20px;
}

.score-number {
    font-size: 56px;
    font-weight: 800;
    color: #191f28;
}

.score-stars {
    display: flex;
    gap: 4px;
}

.score-stars i {
    font-size: 20px;
    color: #FFD700;
}

.score-count {
    font-size: 14px;
    color: #8b95a1;
    margin-top: 4px;
}

.btn-review-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
    background: #fff;
    color: var(--primary);
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.btn-review-more:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

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

.review-card {
    background: #f8fafb;
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.review-stars i {
    font-size: 14px;
    color: #FFD700;
}

.review-service {
    padding: 6px 12px;
    background: rgba(0, 212, 170, 0.1);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
}

.review-content {
    font-size: 15px;
    line-height: 1.7;
    color: #4e5968;
    margin-bottom: 20px;
}

.review-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.author-name {
    font-size: 14px;
    font-weight: 600;
    color: #191f28;
}

.author-company {
    font-size: 13px;
    color: #8b95a1;
}

/* Process Section */
.server-process-section {
    padding: 100px 0;
    background: #f8fafb;
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.process-step {
    position: relative;
    text-align: center;
    padding: 40px 24px;
    background: #fff;
    border-radius: 24px;
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.process-step::after {
    content: '';
    position: absolute;
    top: 80px;
    right: -15px;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), #00B4D8);
}

.process-step:last-child::after {
    display: none;
}

.step-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(0, 212, 170, 0.12) 0%, rgba(0, 180, 216, 0.12) 100%);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-icon i {
    font-size: 32px;
    color: var(--primary);
}

.step-number {
    display: none;
}

.step-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: #191f28;
    margin-bottom: 10px;
}

.step-content p {
    font-size: 14px;
    color: #8b95a1;
    line-height: 1.6;
}

.process-highlight {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 28px;
    background: #fff;
    border-radius: 100px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.highlight-item i {
    font-size: 20px;
    color: var(--primary);
}

.highlight-item span {
    font-size: 15px;
    color: #4e5968;
}

.highlight-item strong {
    color: var(--primary);
}

/* FAQ Section */
.server-faq-section {
    padding: 100px 0;
    background: #fff;
}

.server-faq-section .faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.server-faq-section .faq-item {
    background: #f8fafb;
    border-radius: 16px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.server-faq-section .faq-item:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

.server-faq-section .faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 28px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    color: #191f28;
}

.server-faq-section .faq-question i {
    color: #8b95a1;
    transition: transform 0.3s ease;
}

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

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

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

.server-faq-section .faq-answer p {
    padding: 0 28px 24px;
    font-size: 15px;
    line-height: 1.7;
    color: #6b7684;
}

/* CTA Section */
.server-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary) 0%, #00B4D8 100%);
}

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

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

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

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 30px;
}

.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 36px;
    background: #fff;
    color: var(--primary);
    border-radius: 14px;
    font-size: 17px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 36px;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    border-radius: 14px;
    font-size: 17px;
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

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

.cta-contact-info {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.cta-contact-info span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

/* Responsive */
@media (max-width: 1200px) {
    .free-services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

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

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

    .hero-trust-badges {
        justify-content: center;
    }

    .hero-visual {
        display: none;
    }

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

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

    .products-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .review-slider {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

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

    .process-step::after {
        display: none;
    }

    .comparison-table {
        overflow-x: auto;
    }
}

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

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

    .free-services-grid {
        grid-template-columns: 1fr;
    }

    .free-services-total {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }

    .process-timeline {
        grid-template-columns: 1fr;
    }

    .review-summary {
        flex-direction: column;
        gap: 24px;
    }

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

    .cta-contact-info {
        flex-direction: column;
        gap: 12px;
    }

    .process-highlight {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
}
