/**
 * Download Hosting Modern Page - 2025 Design
 * Blue/Cyan Theme
 */

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

.dl-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #0c4a6e 0%, #082f49 50%, #0a1929 100%);
    z-index: 0;
}

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

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

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

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

.dl-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(14, 165, 233, 0.2);
    color: #7dd3fc;
    font-size: 14px;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 24px;
}

.dl-badge svg {
    fill: #38bdf8;
}

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

.dl-hero h1 .text-gradient {
    background: linear-gradient(135deg, #38bdf8, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.dl-hero-desc strong {
    color: #38bdf8;
}

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

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

.dl-feature-item i {
    color: #38bdf8;
    font-size: 12px;
}

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

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

.btn-dl-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(14, 165, 233, 0.4);
    color: #fff;
}

.btn-dl-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-dl-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

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

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

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

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

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

.dl-logo-float svg {
    width: 100px;
    height: 100px;
    fill: #fff;
    position: relative;
    z-index: 1;
}

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

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

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

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

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

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

.card-icon.cyan {
    background: linear-gradient(135deg, #06b6d4, #14b8a6);
}

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

/* ============================================
   VIDEO SECTION
   ============================================ */
.dl-video-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #0a1929 0%, #0f172a 100%);
}

.dl-video-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
    background: rgba(14, 165, 233, 0.05);
    border: 1px solid rgba(14, 165, 233, 0.15);
    border-radius: 24px;
    padding: 40px;
}

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

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

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

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

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

.dl-video-features li i {
    color: #38bdf8;
    font-size: 12px;
}

.dl-video-player {
    flex: 1;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: #000;
}

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

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

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

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

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

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

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

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

.dl-section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.1), rgba(6, 182, 212, 0.1));
    color: #0ea5e9;
    font-size: 14px;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 16px;
}

.dl-section-header h2 {
    font-size: 40px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 12px;
}

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

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

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

.dl-pricing-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}

.dl-pricing-card {
    background: #fff;
    border-radius: 20px;
    padding: 32px 24px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s;
    position: relative;
}

.dl-pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(14, 165, 233, 0.15);
    border-color: #0ea5e9;
}

.dl-pricing-card.popular {
    background: linear-gradient(135deg, #0ea5e9, #06b6d4);
    border: none;
    transform: scale(1.05);
}

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

.dl-popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 20px;
    background: #fbbf24;
    color: #0f172a;
    font-size: 12px;
    font-weight: 700;
    border-radius: 20px;
}

.dl-card-header {
    text-align: center;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid #e2e8f0;
}

.dl-pricing-card.popular .dl-card-header {
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.dl-plan-name {
    display: block;
    font-size: 24px;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 8px;
}

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

.dl-plan-space {
    display: inline-block;
    padding: 6px 16px;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.1), rgba(6, 182, 212, 0.1));
    color: #0ea5e9;
    font-size: 16px;
    font-weight: 700;
    border-radius: 8px;
}

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

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

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

.dl-price-value {
    font-size: 32px;
    font-weight: 800;
    color: #0f172a;
}

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

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

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

.dl-discount-badge {
    display: inline-block;
    margin-top: 12px;
    padding: 6px 14px;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.15), rgba(34, 197, 94, 0.1));
    color: #22c55e;
    font-size: 13px;
    font-weight: 600;
    border-radius: 50px;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.dl-pricing-card.popular .dl-discount-badge {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
    color: #fff;
    border-color: rgba(255, 255, 255, 0.3);
}

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

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

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

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

.dl-card-features li i {
    color: #0ea5e9;
    font-size: 12px;
}

.dl-pricing-card.popular .dl-card-features li i {
    color: #fbbf24;
}

.dl-btn-order {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px 24px;
    background: #f1f5f9;
    color: #0f172a;
    font-size: 15px;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s;
}

.dl-btn-order:hover {
    background: linear-gradient(135deg, #0ea5e9, #06b6d4);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(14, 165, 233, 0.3);
}

.dl-pricing-card.popular .dl-btn-order {
    background: #fff;
    color: #0ea5e9;
}

.dl-pricing-card.popular .dl-btn-order:hover {
    background: #fbbf24;
    color: #0f172a;
}

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

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

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

.dl-feature-card:hover {
    background: #fff;
    border-color: #0ea5e9;
    box-shadow: 0 20px 40px rgba(14, 165, 233, 0.1);
    transform: translateY(-5px);
}

.dl-feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.1), rgba(6, 182, 212, 0.1));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    transition: all 0.3s;
}

.dl-feature-card:hover .dl-feature-icon {
    background: linear-gradient(135deg, #0ea5e9, #06b6d4);
}

.dl-feature-icon svg {
    width: 32px;
    height: 32px;
    stroke: #0ea5e9;
}

.dl-feature-card:hover .dl-feature-icon svg {
    stroke: #fff;
}

.dl-feature-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 12px;
}

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

/* ============================================
   USE CASES SECTION
   ============================================ */
.dl-usecases-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0c4a6e, #082f49);
}

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

.dl-usecase-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 24px;
    text-align: center;
    transition: all 0.3s;
}

.dl-usecase-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(14, 165, 233, 0.5);
    transform: translateY(-5px);
}

.dl-usecase-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #0ea5e9, #06b6d4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.dl-usecase-icon svg {
    width: 32px;
    height: 32px;
    fill: #fff;
}

.dl-usecase-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

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

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

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

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

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

.dl-tech-icon-box:hover {
    border-color: #0ea5e9;
    box-shadow: 0 10px 30px rgba(14, 165, 233, 0.15);
    transform: translateY(-5px);
}

.dl-tech-icon-box svg {
    fill: #0ea5e9;
}

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

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

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

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

.dl-faq-item:hover {
    border-color: #0ea5e9;
}

.dl-faq-item.active {
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.05), rgba(6, 182, 212, 0.05));
    border-color: #0ea5e9;
}

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

.dl-faq-question span {
    font-size: 16px;
    font-weight: 600;
    color: #0f172a;
}

.dl-faq-question i {
    color: #0ea5e9;
    font-size: 14px;
    transition: transform 0.3s;
}

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

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

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

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

/* ============================================
   CTA SECTION
   ============================================ */
.dl-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0c4a6e, #082f49);
}

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

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

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

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

/* ============================================
   CONSULTATION MODAL
   ============================================ */
.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, #0c4a6e 0%, #0ea5e9 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: #7dd3fc;
}

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

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

.badge-free {
    display: inline-block;
    padding: 4px 12px;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.1), rgba(6, 182, 212, 0.1));
    color: #0ea5e9;
    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: #0ea5e9;
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.1);
}

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

.time-select > label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #0c4a6e;
    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, #0ea5e9, #06b6d4);
    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(14, 165, 233, 0.3);
}

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

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

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

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

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

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

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

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

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

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

    .dl-pricing-card.popular:hover {
        transform: translateY(-8px);
    }

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

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

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

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

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

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

    .dl-usecases-grid {
        grid-template-columns: 1fr;
    }

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

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

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

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

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


/* ============================================
   SEO CONTENT SECTION
   ============================================ */
#host-content-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #eef2f7 100%);
    position: relative;
    overflow: hidden;
}

#host-content-section::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(33, 160, 213, 0.06) 0%, transparent 70%);
    top: -250px;
    left: -250px;
    border-radius: 50%;
}

#host-content-section::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 212, 170, 0.05) 0%, transparent 70%);
    bottom: -200px;
    right: -200px;
    border-radius: 50%;
}

#host-content-section .container {
    position: relative;
    z-index: 2;
}

#host-content-section .content-section-title {
    font-size: 2rem;
    font-weight: 800;
    color: #1e3a5f;
    margin-bottom: 12px;
}

#host-content-section .content-section-subtitle {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 0;
}

#host-content-section .content-section-header {
    margin-bottom: 50px;
}

#host-content-section .content-accordion {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
}

#host-content-section .content-accordion > .col-12,
#host-content-section .content-accordion > .col-md-6 {
    padding: 0 10px;
}

#host-content-section .accordion-item {
    background: #fff;
    border: 1px solid rgba(33, 160, 213, 0.12);
    border-radius: 14px;
    margin-bottom: 14px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

#host-content-section .accordion-item:hover {
    border-color: rgba(33, 160, 213, 0.3);
    box-shadow: 0 8px 30px rgba(33, 160, 213, 0.08);
    transform: translateY(-2px);
}

#host-content-section .accordion-item:has(.accordion-collapse.show) {
    border-color: rgba(33, 160, 213, 0.35);
    box-shadow: 0 12px 35px rgba(33, 160, 213, 0.12);
}

#host-content-section .accordion-header {
    margin: 0;
}

#host-content-section .accordion-button {
    background: transparent;
    color: #1e3a5f;
    font-size: 0.95rem;
    font-weight: 700;
    padding: 18px 22px 18px 60px !important;
    border: none;
    box-shadow: none;
    display: block !important;
    width: 100%;
    text-align: right !important;
    position: relative;
    transition: all 0.3s ease;
    line-height: 1.7;
}

#host-content-section .accordion-button:focus {
    box-shadow: none;
    outline: none;
}

#host-content-section .accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, rgba(33, 160, 213, 0.06), rgba(0, 212, 170, 0.04));
    color: #21a0d5;
}

#host-content-section .accordion-button::after {
    display: none;
}

#host-content-section .accordion-button .acc-icon {
    width: 30px;
    height: 30px;
    min-width: 30px;
    background: linear-gradient(135deg, rgba(33, 160, 213, 0.1), rgba(0, 212, 170, 0.08));
    border: 1px solid rgba(33, 160, 213, 0.2);
    border-radius: 8px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: absolute !important;
    left: 18px !important;
    right: auto !important;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
}

#host-content-section .accordion-button .acc-icon i {
    color: #21a0d5;
    font-size: 11px;
    transition: transform 0.3s ease;
}

#host-content-section .accordion-button:not(.collapsed) .acc-icon {
    background: linear-gradient(135deg, #21a0d5, #00d4aa);
    border-color: transparent;
    box-shadow: 0 4px 12px rgba(33, 160, 213, 0.3);
}

#host-content-section .accordion-button:not(.collapsed) .acc-icon i {
    transform: rotate(45deg);
    color: #fff;
}

#host-content-section .accordion-collapse {
    background: transparent;
    transition: height 0.25s cubic-bezier(0.25, 0.1, 0.25, 1), opacity 0.2s ease;
}

#host-content-section .accordion-collapse.collapsing {
    transition: height 0.25s cubic-bezier(0.25, 0.1, 0.25, 1);
}

#host-content-section .accordion-collapse.show .accordion-body,
#host-content-section .accordion-collapse.collapsing .accordion-body {
    animation: contentFadeIn 0.2s ease forwards;
}

@keyframes contentFadeIn {
    from {
        opacity: 0;
        transform: translateY(-5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#host-content-section .accordion-body {
    padding: 0 22px 20px 60px;
    color: #475569;
    font-size: 0.9rem;
    line-height: 2;
    text-align: right;
}

#host-content-section .accordion-body p {
    margin: 0 0 10px;
    color: #475569;
}

#host-content-section .accordion-body a {
    color: #21a0d5;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

#host-content-section .accordion-body a:hover {
    color: #1a8ab8;
}

#host-content-section .accordion-body strong {
    color: #1e3a5f;
    font-weight: 700;
}

#host-content-section .accordion-body ol,
#host-content-section .accordion-body ul {
    padding-right: 20px;
    margin: 8px 0;
}

#host-content-section .accordion-body li {
    margin-bottom: 4px;
}

#host-content-section .acc-body-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 12px;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(33, 160, 213, 0.08), rgba(0, 212, 170, 0.06));
    color: #21a0d5;
    border: 1px solid rgba(33, 160, 213, 0.2);
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

#host-content-section .acc-body-btn:hover {
    background: linear-gradient(135deg, #21a0d5, #00d4aa);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(33, 160, 213, 0.3);
}

@media (max-width: 768px) {
    #host-content-section {
        padding: 60px 0;
    }

    #host-content-section .content-section-title {
        font-size: 1.6rem;
    }

    #host-content-section .accordion-button {
        padding: 16px 18px 16px 52px !important;
        font-size: 0.9rem;
    }

    #host-content-section .accordion-button .acc-icon {
        left: 14px !important;
        width: 28px;
        height: 28px;
        min-width: 28px;
    }

    #host-content-section .accordion-body {
        padding: 0 18px 18px 52px;
    }
}

@media (max-width: 480px) {
    #host-content-section .accordion-button {
        padding: 14px 14px 14px 48px !important;
        font-size: 0.85rem;
    }

    #host-content-section .accordion-button .acc-icon {
        left: 12px !important;
        width: 26px;
        height: 26px;
        min-width: 26px;
    }

    #host-content-section .accordion-body {
        padding: 0 14px 14px 48px;
        font-size: 0.85rem;
    }
}
