/* Dedicated Server - Modern Design 2025 */
/* Cyan/Dark Enterprise Theme */

:root {
    --ded-primary: #0891b2;
    --ded-primary-dark: #0e7490;
    --ded-primary-light: #22d3ee;
    --ded-accent: #67e8f9;
    --ded-dark: #0f172a;
    --ded-darker: #020617;
    --ded-text: #e2e8f0;
    --ded-text-muted: #94a3b8;
    --ded-glass: rgba(8, 145, 178, 0.1);
    --ded-glass-border: rgba(8, 145, 178, 0.2);
}

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

.ded-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(8, 145, 178, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(34, 211, 238, 0.2) 0%, transparent 50%);
    z-index: 0;
}

.ded-hero-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(8, 145, 178, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(8, 145, 178, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 0;
}

.ded-hero .container {
    position: relative;
    z-index: 1;
}

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

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

.ded-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--ded-glass), rgba(34, 211, 238, 0.15));
    border: 1px solid var(--ded-glass-border);
    border-radius: 50px;
    color: var(--ded-accent);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.ded-badge svg {
    width: 20px;
    height: 20px;
}

.ded-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 24px;
    line-height: 1.3;
    text-align: right;
}

.ded-hero h1 .text-gradient {
    background: linear-gradient(135deg, var(--ded-primary-light), var(--ded-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ded-hero-desc {
    font-size: 1.2rem;
    color: var(--ded-text-muted);
    margin-bottom: 32px;
    line-height: 1.8;
}

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

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

.ded-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    background: var(--ded-glass);
    border: 1px solid var(--ded-glass-border);
    border-radius: 12px;
    color: var(--ded-text);
    font-size: 14px;
    font-weight: 500;
}

.ded-feature-item i {
    color: var(--ded-accent);
    font-size: 16px;
}

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

.btn-ded-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--ded-primary), var(--ded-primary-dark));
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border-radius: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 30px rgba(8, 145, 178, 0.4);
}

.btn-ded-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(8, 145, 178, 0.5);
    color: #fff;
}

.btn-ded-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: transparent;
    color: var(--ded-text);
    font-size: 16px;
    font-weight: 600;
    border-radius: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid var(--ded-glass-border);
    cursor: pointer;
}

.btn-ded-secondary:hover {
    background: var(--ded-glass);
    border-color: var(--ded-primary);
    color: #fff;
}

/* Hero Visual - Server Rack */
.ded-hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 500px;
}

.server-rack {
    width: 200px;
    background: linear-gradient(180deg, rgba(8, 145, 178, 0.1) 0%, rgba(14, 116, 144, 0.2) 100%);
    border: 2px solid var(--ded-glass-border);
    border-radius: 20px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    box-shadow: 0 30px 80px rgba(8, 145, 178, 0.3);
}

.rack-unit {
    height: 50px;
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid var(--ded-glass-border);
    border-radius: 8px;
    position: relative;
    display: flex;
    align-items: center;
    padding: 0 12px;
}

.rack-unit::before {
    content: '';
    width: 8px;
    height: 8px;
    background: #475569;
    border-radius: 50%;
    margin-left: 8px;
}

.rack-unit.active::before {
    background: #22c55e;
    box-shadow: 0 0 10px #22c55e;
    animation: blink 2s infinite;
}

@keyframes blink {
    0%, 50%, 100% { opacity: 1; }
    25%, 75% { opacity: 0.5; }
}

.ded-floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 14px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    animation: floatCard 5s ease-in-out infinite;
}

.ded-floating-card span:not(.card-icon) {
    font-size: 14px;
    font-weight: 600;
    color: var(--ded-dark);
}

.ded-floating-card .card-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--ded-primary), var(--ded-primary-dark));
    border-radius: 10px;
    color: #fff;
    font-size: 18px;
}

.ded-floating-card .card-icon.cyan {
    background: linear-gradient(135deg, var(--ded-accent), var(--ded-primary-light));
}

.ded-floating-card.card-1 {
    top: 60px;
    right: -40px;
    animation-delay: 0s;
}

.ded-floating-card.card-2 {
    bottom: 80px;
    left: -20px;
    animation-delay: -2s;
}

.ded-floating-card.card-3 {
    top: 30px;
    left: -30px;
    animation-delay: -3s;
}

.ded-floating-card .card-icon.cyan {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.2), rgba(34, 211, 238, 0.3));
}

.ded-floating-card .card-icon.cyan i {
    color: #06b6d4;
}

.ded-floating-card .card-icon.green {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(52, 211, 153, 0.3));
}

.ded-floating-card .card-icon.green i {
    color: #10b981;
}

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

/* ============================================
   BENEFITS SECTION
   ============================================ */
.ded-benefits {
    padding: 80px 0;
    background: var(--ded-darker);
}

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

.benefit-card {
    background: linear-gradient(180deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
    border: 1px solid var(--ded-glass-border);
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-8px);
    border-color: var(--ded-primary);
    box-shadow: 0 20px 50px rgba(8, 145, 178, 0.2);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--ded-primary), var(--ded-primary-dark));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(8, 145, 178, 0.3);
}

.benefit-icon svg {
    width: 32px;
    height: 32px;
    color: #fff;
}

.benefit-icon.cyan { background: linear-gradient(135deg, #06b6d4, #0891b2); }
.benefit-icon.orange { background: linear-gradient(135deg, #f59e0b, #d97706); }
.benefit-icon.purple { background: linear-gradient(135deg, #8b5cf6, #7c3aed); }

.benefit-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 10px;
}

.benefit-card p {
    font-size: 14px;
    color: var(--ded-text-muted);
    line-height: 1.7;
    margin: 0;
}

/* ============================================
   SERVERS SECTION
   ============================================ */
.ded-servers {
    padding: 100px 0;
    background: #fff;
}

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

.section-badge {
    display: inline-block;
    padding: 10px 24px;
    background: linear-gradient(135deg, rgba(8, 145, 178, 0.1), rgba(34, 211, 238, 0.15));
    border: 1px solid var(--ded-glass-border);
    border-radius: 50px;
    color: var(--ded-primary);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.section-header-modern h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--ded-dark);
    margin-bottom: 16px;
}

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

/* Location Tabs */
.location-tabs {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.location-tab {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    background: #fff;
    border: 2px solid #e5e7eb;
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 15px;
    font-weight: 600;
    color: var(--ded-dark);
}

.location-tab img {
    width: 24px;
    height: 24px;
    border-radius: 4px;
}

.location-tab:hover {
    border-color: var(--ded-primary);
    background: rgba(8, 145, 178, 0.05);
}

.location-tab.active {
    background: linear-gradient(135deg, var(--ded-primary), var(--ded-primary-dark));
    color: #fff;
    border-color: transparent;
    box-shadow: 0 8px 25px rgba(8, 145, 178, 0.3);
}

/* Servers Panel */
.servers-panel {
    display: none;
}

.servers-panel.active {
    display: block;
}

.servers-table-wrapper {
    overflow-x: auto;
    border-radius: 20px;
    border: 2px solid var(--ded-primary);
    margin-bottom: 24px;
}

.servers-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 900px;
}

.servers-table thead {
    background: linear-gradient(135deg, var(--ded-primary), var(--ded-primary-dark));
}

.servers-table th {
    padding: 18px 16px;
    text-align: right;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    white-space: nowrap;
}

.servers-table th:last-child {
    text-align: center;
}

.servers-table td {
    padding: 18px 16px;
    text-align: right;
    font-size: 14px;
    color: var(--ded-dark);
    border-bottom: 1px solid #e5e7eb;
    vertical-align: middle;
}

.servers-table td:last-child {
    text-align: center;
}

.servers-table tr:last-child td {
    border-bottom: none;
}

.servers-table tr:hover {
    background: rgba(8, 145, 178, 0.03);
}

.servers-table tr.featured {
    background: linear-gradient(135deg, rgba(8, 145, 178, 0.08), rgba(34, 211, 238, 0.05));
}

.plan-name {
    font-weight: 700;
    color: var(--ded-primary);
}

.badge-popular {
    display: inline-block;
    margin-right: 8px;
    padding: 4px 10px;
    background: linear-gradient(135deg, var(--ded-primary), var(--ded-primary-dark));
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    border-radius: 20px;
}

.servers-table small {
    display: block;
    color: #64748b;
    margin-top: 4px;
}

.servers-table .price {
    font-weight: 700;
    font-size: 16px;
    color: var(--ded-primary);
}

.btn-order {
    display: inline-block;
    padding: 10px 24px;
    background: linear-gradient(135deg, var(--ded-primary), var(--ded-primary-dark));
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.btn-order:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(8, 145, 178, 0.3);
    color: #fff;
}

.btn-order.primary {
    background: linear-gradient(135deg, var(--ded-accent), var(--ded-primary-light));
    color: var(--ded-dark);
}

.datacenter-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px;
    background: rgba(8, 145, 178, 0.05);
    border-radius: 12px;
    color: var(--ded-primary);
    font-size: 14px;
    font-weight: 500;
}

/* ============================================
   SERVER CARDS GRID (Iran Dedicated)
   ============================================ */
.ded-servers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.ded-server-card {
    position: relative;
    background: #fff;
    border: 2px solid #e5e7eb;
    border-radius: 24px;
    padding: 32px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.ded-server-card:hover {
    border-color: var(--ded-primary);
    box-shadow: 0 20px 60px rgba(8, 145, 178, 0.15);
    transform: translateY(-8px);
}

.ded-server-card.featured {
    border-color: var(--ded-primary);
    background: linear-gradient(180deg, rgba(8, 145, 178, 0.03) 0%, #fff 100%);
}

.ded-server-card .featured-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 6px 16px;
    background: linear-gradient(135deg, var(--ded-primary), var(--ded-primary-dark));
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(8, 145, 178, 0.4);
}

.server-card-header {
    margin-bottom: 24px;
}

.server-location {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: rgba(8, 145, 178, 0.1);
    border-radius: 50px;
    color: var(--ded-primary);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 12px;
}

.server-location svg {
    fill: var(--ded-primary);
}

.server-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--ded-dark);
    margin-bottom: 8px;
}

.server-desc {
    font-size: 14px;
    color: #64748b;
    margin: 0;
}

.server-card-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 28px;
    padding-bottom: 24px;
    border-bottom: 2px solid #f1f5f9;
}

.server-card-price .price-amount {
    font-size: 2rem;
    font-weight: 800;
    color: var(--ded-primary);
}

.server-card-price .price-period {
    font-size: 14px;
    color: #64748b;
}

.server-specs {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
}

.server-specs li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #f1f5f9;
}

.server-specs li:last-child {
    border-bottom: none;
}

.server-specs .spec-label {
    font-size: 14px;
    font-weight: 600;
    color: #64748b;
}

.server-specs .spec-value {
    font-size: 14px;
    font-weight: 600;
    color: var(--ded-dark);
}

.server-card-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.feature-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: rgba(8, 145, 178, 0.08);
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    color: var(--ded-primary);
}

.feature-tag i {
    font-size: 12px;
}

.btn-server-order {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--ded-primary), var(--ded-primary-dark));
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-server-order:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(8, 145, 178, 0.4);
    color: #fff;
}

.ded-server-card.featured .btn-server-order {
    background: linear-gradient(135deg, var(--ded-accent), var(--ded-primary-light));
    color: var(--ded-dark);
}

/* ============================================
   FEATURE CARDS MODERN
   ============================================ */
.feature-card-modern {
    background: linear-gradient(180deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
    border: 1px solid var(--ded-glass-border);
    border-radius: 20px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
}

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

.feature-icon-wrap {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--ded-glass), rgba(34, 211, 238, 0.2));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon-wrap svg {
    width: 32px;
    height: 32px;
    color: var(--ded-accent);
}

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

.feature-card-modern p {
    font-size: 14px;
    color: var(--ded-text-muted);
    line-height: 1.7;
    margin: 0;
}

/* ============================================
   FAQ MODERN ITEMS
   ============================================ */
.faq-item-modern {
    background: linear-gradient(180deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
    border: 1px solid var(--ded-glass-border);
    border-radius: 16px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item-modern:hover {
    border-color: var(--ded-primary);
}

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

.faq-item-modern .faq-question span {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
}

.faq-item-modern .faq-question i {
    color: var(--ded-accent);
    font-size: 18px;
    transition: transform 0.3s ease;
}

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

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

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

.faq-item-modern .faq-answer p {
    padding: 0 24px 20px;
    font-size: 14px;
    color: var(--ded-text-muted);
    line-height: 1.8;
    margin: 0;
}

/* Consultation Section */
.ded-consult-section {
    padding: 80px 0;
    background: var(--ded-darker);
}

/* Consultation Banner */
.ded-consult-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
    padding: 32px 40px;
    background: linear-gradient(135deg, var(--ded-primary), var(--ded-primary-dark));
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(8, 145, 178, 0.3);
}

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

.consult-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    font-size: 24px;
    color: #fff;
}

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

.consult-text p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.consult-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.consult-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: transparent;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

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

.consult-btn.online {
    background: #fff;
    color: var(--ded-primary);
    border-color: transparent;
}

.consult-btn.online:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

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

.ded-features .section-header-modern h2 {
    color: #fff;
}

.ded-features .section-header-modern p {
    color: var(--ded-text-muted);
}

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

.feature-card {
    background: linear-gradient(180deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
    border: 1px solid var(--ded-glass-border);
    border-radius: 20px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
}

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

.feature-card .feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--ded-glass), rgba(34, 211, 238, 0.2));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-card .feature-icon svg {
    width: 32px;
    height: 32px;
    color: var(--ded-accent);
}

.feature-card .feature-icon.cyan svg { color: #22d3ee; }
.feature-card .feature-icon.orange svg { color: #f59e0b; }
.feature-card .feature-icon.purple svg { color: #8b5cf6; }
.feature-card .feature-icon.blue svg { color: #3b82f6; }
.feature-card .feature-icon.pink svg { color: #ec4899; }

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

.feature-card p {
    font-size: 14px;
    color: var(--ded-text-muted);
    line-height: 1.7;
    margin: 0;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.ded-faq {
    padding: 100px 0;
    background: var(--ded-darker);
}

.ded-faq .section-header-modern h2 {
    color: #fff;
}

.ded-faq .section-header-modern p {
    color: var(--ded-text-muted);
}

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

.faq-item {
    background: linear-gradient(180deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
    border: 1px solid var(--ded-glass-border);
    border-radius: 16px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--ded-primary);
}

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

.faq-question span {
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
}

.faq-question i {
    color: var(--ded-accent);
    font-size: 18px;
    transition: transform 0.3s ease;
}

.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: var(--ded-text-muted);
    line-height: 1.8;
    margin: 0;
}

.faq-answer ul {
    padding: 0 24px 20px 40px;
    margin: 0;
}

.faq-answer ul li {
    font-size: 14px;
    color: var(--ded-text-muted);
    line-height: 1.8;
    margin-bottom: 4px;
}

/* ============================================
   GLOBAL FAQ SECTION OVERRIDES
   ============================================ */
.landing-section.bg-gray#faq-section {
    background: linear-gradient(180deg, #0a1628 0%, var(--ded-darker) 100%) !important;
    padding: 100px 0;
}

.landing-section.bg-gray#faq-section .faq-title {
    color: #fff !important;
    font-size: 2rem;
    font-weight: 700;
}

.landing-section.bg-gray#faq-section .faq-text {
    color: var(--ded-text-muted) !important;
}

.landing-section.bg-gray#faq-section .accordion-item {
    background: linear-gradient(180deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%) !important;
    border: 1px solid var(--ded-glass-border) !important;
    border-radius: 16px !important;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.landing-section.bg-gray#faq-section .accordion-item:hover {
    border-color: var(--ded-primary) !important;
}

.landing-section.bg-gray#faq-section .accordion-button {
    background: transparent !important;
    color: #fff !important;
    font-weight: 600;
    font-size: 1rem;
    padding: 20px 24px 20px 80px !important;
    box-shadow: none !important;
    display: block !important;
    text-align: right !important;
    position: relative;
}

.landing-section.bg-gray#faq-section .accordion-button:not(.collapsed) {
    background: transparent !important;
    color: var(--ded-accent) !important;
}

.landing-section.bg-gray#faq-section .accordion-button::after {
    display: none;
}

.landing-section.bg-gray#faq-section .accordion-button .acc-icon {
    width: 28px;
    height: 28px;
    min-width: 28px;
    background: rgba(8, 145, 178, 0.15);
    border: 1px solid rgba(8, 145, 178, 0.3);
    border-radius: 50%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    position: absolute !important;
    left: 20px !important;
    right: auto !important;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease;
}

.landing-section.bg-gray#faq-section .accordion-button .acc-icon i {
    color: var(--ded-accent);
    font-size: 12px;
    transition: transform 0.3s ease;
}

.landing-section.bg-gray#faq-section .accordion-button:not(.collapsed) .acc-icon i {
    transform: rotate(45deg);
}

.landing-section.bg-gray#faq-section .accordion-body {
    background: transparent !important;
    color: var(--ded-text-muted) !important;
    padding: 0 24px 20px 80px;
    font-size: 14px;
    line-height: 1.8;
    text-align: right;
}

.landing-section.bg-gray#faq-section .accordion-collapse {
    background: transparent !important;
}

/* ============================================
   CTA SECTION
   ============================================ */
.ded-cta {
    padding: 80px 0;
    background: linear-gradient(180deg, #0a1628 0%, var(--ded-darker) 100%);
}

.cta-card {
    text-align: center;
    padding: 80px 50px;
    background: linear-gradient(135deg, var(--ded-primary), var(--ded-primary-dark));
    border-radius: 30px;
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -25%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
}

.cta-content h2 {
    position: relative;
    font-size: 2.25rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
}

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

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

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

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

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

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

/* ============================================
   MODAL
   ============================================ */
.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, #cffafe 0%, #a5f3fc 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, var(--ded-primary), var(--ded-primary-dark));
    border-radius: 50%;
    color: #fff;
    font-size: 60px;
    margin-bottom: 30px;
    box-shadow: 0 20px 50px rgba(8, 145, 178, 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: var(--ded-dark);
}

.modal-contact i {
    color: var(--ded-primary);
}

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

.modal-form h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--ded-dark);
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.badge-free {
    padding: 6px 14px;
    background: rgba(8, 145, 178, 0.1);
    color: var(--ded-primary);
    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: var(--ded-primary);
}

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

.time-select > label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--ded-dark);
    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: var(--ded-primary);
}

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

.btn-cancel {
    flex: 1;
    padding: 16px;
    background: #fff;
    color: var(--ded-dark);
    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, var(--ded-primary), var(--ded-primary-dark));
    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(8, 145, 178, 0.4);
}

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

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

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

    .ded-hero h1 {
        text-align: center;
        font-size: 2.5rem;
    }

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

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

    .ded-hero-visual {
        min-height: 350px;
    }

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

    .modal-visual {
        display: none;
    }
}

@media (max-width: 768px) {
    .ded-hero {
        padding: 80px 0 60px;
    }

    .ded-hero h1 {
        font-size: 2rem;
    }

    .ded-hero-features {
        flex-direction: column;
        align-items: center;
    }

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

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

    .section-header-modern h2 {
        font-size: 1.75rem;
    }

    .location-tabs {
        flex-direction: column;
        align-items: stretch;
    }

    .location-tab {
        justify-content: center;
    }

    .ded-consult-section {
        padding: 60px 0;
    }

    .ded-consult-banner {
        flex-direction: column;
        text-align: center;
        padding: 24px;
    }

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

    .consult-buttons {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .ded-hero h1 {
        font-size: 1.75rem;
    }

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

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

    .ded-servers-grid {
        grid-template-columns: 1fr;
    }

    .ded-server-card {
        padding: 24px;
    }

    .server-card-price .price-amount {
        font-size: 1.5rem;
    }

    .cta-card {
        padding: 50px 24px;
    }

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

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

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

/* Video Section */
.ded-video-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #0c1929 0%, #0f172a 100%);
    position: relative;
}

.ded-video-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}

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

.ded-video-content p {
    font-size: 16px;
    color: #94a3b8;
    margin-bottom: 24px;
    line-height: 1.7;
}

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

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

.ded-video-features li i {
    color: #0891b2;
    font-size: 16px;
}

.ded-video-player {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(8, 145, 178, 0.2);
    background: #000;
    aspect-ratio: 16/9;
}

.ded-video-player .video-cover {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(8, 145, 178, 0.3), rgba(6, 182, 212, 0.5));
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

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

.ded-video-player .cover-content {
    text-align: center;
}

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

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

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

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

.ded-video-player video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 992px) {
    .ded-video-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .ded-video-content {
        text-align: center;
    }
    .ded-video-features {
        justify-content: center;
    }
}

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

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