/* =============================================
   DEDICATED-SERVERS.CSS — DONHOSTER
   Brand colors: #6B3DBB · #8E2FE4 · #10B981
   Same architecture as vps.css
   ============================================= */

/* ── SHARED SECTION UTILITIES ───────────────── */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-header h2 {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-header p {
    font-size: 1.0625rem;
    color: var(--text-secondary);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.7;
}

.section-header p strong { color: var(--text-primary); }

/* ════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════ */
.ds-hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #6B3DBB 0%, #4C1D95 50%, #1E3A8A 100%);
    overflow: hidden;
    padding: 80px 20px;
}

.ds-hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1558494949-ef010cbdcc31?w=1920&q=70');
    background-size: cover;
    background-position: center;
    opacity: 0.12;
}

.ds-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 860px;
    margin: 0 auto;
}

.ds-uptime-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(10px);
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 28px;
    border: 1px solid rgba(255,255,255,0.2);
}

.pulse-dot {
    width: 10px;
    height: 10px;
    background: #10B981;
    border-radius: 50%;
    display: inline-block;
    animation: pulse-green 2s infinite;
    flex-shrink: 0;
}

@keyframes pulse-green {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(16,185,129,0.4); }
    50%       { opacity: 0.8; box-shadow: 0 0 0 8px rgba(16,185,129,0); }
}

.ds-hero-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 900;
    color: white;
    margin-bottom: 10px;
    line-height: 1.15;
}

.ds-gradient-text {
    background: linear-gradient(135deg, #df4dfc 0%, #f797fa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.ds-hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.25rem);
    color: rgba(255,255,255,0.88);
    margin-bottom: 36px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.ds-hero-subtitle strong { color: #FCD34D; font-weight: 700; }

/* CTA buttons */
.ds-hero-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.btn-large {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 36px;
    font-size: 1.0625rem;
    font-weight: 700;
    border-radius: var(--radius-lg);
    text-decoration: none;
    transition: all var(--transition-base);
    border: 2px solid transparent;
}

.btn-large.btn-primary {
    background: linear-gradient(135deg, #10B981 0%, #059669 100%);
    color: white;
    box-shadow: 0 8px 24px rgba(16,185,129,0.35);
}
.btn-large.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(16,185,129,0.5); }

.btn-large.btn-secondary {
    background: rgba(255,255,255,0.1);
    color: white;
    border-color: rgba(255,255,255,0.4);
    backdrop-filter: blur(8px);
}
.btn-large.btn-secondary:hover { background: rgba(255,255,255,0.2); border-color: rgba(255,255,255,0.7); }

/* Social proof */
.ds-social-proof { display: flex; align-items: center; justify-content: center; gap: 10px; flex-wrap: wrap; }
.rating-stars { font-size: 1.25rem; }
.rating-text { color: rgba(255,255,255,0.88); }
.rating-text strong { color: white; font-weight: 700; }
.rating-text strong:last-child { color: #FCD34D; }

/* ════════════════════════════════════════════
   TRUST BAR — static desktop / ticker mobile
   ════════════════════════════════════════════ */
.ds-trust-bar {
    background: var(--bg-card);
    border-bottom: 1px solid var(--border-color);
    overflow: hidden;
}

/* ── DESKTOP: static, centered, evenly spaced ── */
.trust-bar-track {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1280px;
    margin: 0 auto;
    width: 100%;
}

/* Hide clone on desktop — only used for mobile loop */
.trust-bar-clone {
    display: none;
}

.trust-bar-item {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 15px 24px;
    font-size: 0.875rem;
    color: var(--text-secondary);
    white-space: nowrap;
    flex-shrink: 0;
    user-select: none;
}

.trust-bar-item svg    { stroke: #10B981; flex-shrink: 0; }
.trust-bar-item strong { color: var(--text-primary); }
.trust-bar-payments    { gap: 10px; }
.payment-icons { display: inline-flex; align-items: center; gap: 8px; }

/* Thin vertical separator */
.trust-bar-divider {
    width: 1px;
    height: 24px;
    background: var(--border-color);
    flex-shrink: 0;
}

/* ── MOBILE (≤900px): infinite auto-scroll ticker ── */
@media (max-width: 900px) {
    .ds-trust-bar {
        -webkit-mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
        mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
    }

    /* Show the clone so there are 2 sets back-to-back */
    .trust-bar-clone {
        display: contents;
    }

    .trust-bar-track {
        width: max-content;
        max-width: none;
        margin: 0;
        justify-content: flex-start;
        animation: trustTicker 28s linear infinite;
    }

    .trust-bar-track:hover {
        animation-play-state: paused;
    }

    @keyframes trustTicker {
        0%   { transform: translateX(0); }
        100% { transform: translateX(-50%); }
    }
}

/* ════════════════════════════════════════════
   PRICING SECTION
   ════════════════════════════════════════════ */
.ds-pricing {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.ds-pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* Card base */
.ds-card {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 28px 22px;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.ds-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: #6B3DBB;
}

/* Featured card — brand purple gradient */
.ds-card--featured {
    background: linear-gradient(160deg, #5B2FA6 0%, #7E22CE 60%, #6B21A8 100%);
    border-color: #F59E0B;
    border-width: 3px;
    transform: scale(1.04);
    box-shadow: 0 20px 50px rgba(107,61,187,0.4);
    color: white;
}

.ds-card--featured:hover {
    transform: scale(1.04) translateY(-4px);
    box-shadow: 0 28px 60px rgba(107,61,187,0.5);
}

.ds-card--featured .ds-plan-name,
.ds-card--featured .ds-currency,
.ds-card--featured .ds-amount,
.ds-card--featured .ds-decimal,
.ds-card--featured .ds-period,
.ds-card--featured .ds-setup { color: white; }

.ds-card--featured .ds-specs { background: rgba(255,255,255,0.12); }
.ds-card--featured .ds-spec-row { color: rgba(255,255,255,0.9); }
.ds-card--featured .ds-spec-row svg { stroke: #A5F3FC; }
.ds-card--featured .ds-spec-highlight .ds-spec-row svg { stroke: #FCD34D; }
.ds-card--featured .ds-features li { color: rgba(255,255,255,0.9); }
.ds-card--featured .ds-features li::before { color: #FCD34D; }

.ds-popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #F59E0B 0%, #F97316 100%);
    color: white;
    padding: 6px 18px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(245,158,11,0.4);
}

/* Plan name / price */
.ds-plan-name {
    font-size: 1.375rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 12px;
    color: var(--text-primary);
    margin-top: 8px;
}

.ds-plan-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
    margin-bottom: 6px;
}

.ds-currency { font-size: 1.5rem; font-weight: 600; color: var(--text-secondary); }
.ds-amount   { font-size: 3.5rem; font-weight: 900; line-height: 1; color: var(--text-primary); }
.ds-decimal  { font-size: 1.125rem; color: var(--text-secondary); }
.ds-period   { font-size: 0.9rem; color: var(--text-secondary); font-weight: 500; margin-left: 2px; }

.ds-setup {
    text-align: center;
    font-size: 0.8125rem;
    color: #10B981;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 0.3px;
}

/* Spec rows */
.ds-specs {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 18px;
    padding: 14px;
    background: var(--bg-secondary);
    border-radius: 10px;
}

.ds-spec-row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.ds-spec-row svg { stroke: #9CA3AF; flex-shrink: 0; }

.ds-spec-highlight {
    color: var(--text-primary);
    font-weight: 600;
}
.ds-spec-highlight svg { stroke: #10B981; }

/* Feature list */
.ds-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.ds-features li {
    font-size: 0.875rem;
    color: var(--text-secondary);
    padding-left: 24px;
    position: relative;
    line-height: 1.4;
}

.ds-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10B981;
    font-weight: 800;
    font-size: 1rem;
}

/* Order button */
.ds-btn-order {
    display: block;
    width: 100%;
    text-align: center;
    padding: 13px;
    font-weight: 700;
    font-size: 0.9375rem;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, #6B3DBB 0%, #8E2FE4 100%);
    color: white;
    text-decoration: none;
    transition: all var(--transition-base);
    box-shadow: 0 4px 12px rgba(107,61,187,0.3);
    margin-top: auto;
}
.ds-btn-order:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(107,61,187,0.4); }

.ds-card--featured .ds-btn-order {
    background: linear-gradient(135deg, #F59E0B 0%, #F97316 100%);
    box-shadow: 0 4px 16px rgba(245,158,11,0.35);
}

/* ════════════════════════════════════════════
   WHY DEDICATED
   ════════════════════════════════════════════ */
.ds-why { padding: 80px 0; background: var(--bg-primary); }

.ds-why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.ds-why-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 32px 28px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.ds-why-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(135deg, #6B3DBB, #8E2FE4);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.ds-why-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: #6B3DBB;
}

.ds-why-card:hover::before { opacity: 1; }

.ds-why-icon {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.ds-icon--purple { background: rgba(107,61,187,0.1); }
.ds-icon--purple svg { stroke: #6B3DBB; }
.ds-icon--blue   { background: rgba(59,130,246,0.1); }
.ds-icon--blue svg { stroke: #3B82F6; }
.ds-icon--green  { background: rgba(16,185,129,0.1); }
.ds-icon--green svg { stroke: #10B981; }
.ds-icon--yellow { background: rgba(245,158,11,0.1); }
.ds-icon--yellow svg { stroke: #F59E0B; }

.ds-why-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
    line-height: 1.3;
}

.ds-why-card p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.75;
    margin: 0;
}

/* ════════════════════════════════════════════
   COMPARISON TABLE
   ════════════════════════════════════════════ */
.ds-comparison { padding: 80px 20px; background: var(--bg-secondary); }

.ds-comparison-wrapper { max-width: 1000px; margin: 0 auto; }

.comparison-table-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

.comparison-table {
    width: 100%;
    min-width: 560px;
    background: var(--bg-card);
    border-radius: 16px;
    overflow: hidden;
    border-collapse: collapse;
}

.comparison-table thead tr { background: #1F2937; }
.comparison-table th { padding: 20px 16px; font-weight: 700; font-size: 1rem; }

.column-header { display: flex; align-items: center; justify-content: center; gap: 8px; color: white; }

.dedicated-col-header { background: #6B3DBB; }   /* brand purple for dedicated */
.vps-col-header       { background: #4B5563; }   /* gray for VPS */

.comparison-table td { padding: 18px 16px; border-bottom: 1px solid var(--border-color); vertical-align: top; }
.comparison-table tbody tr:last-child td { border-bottom: none; }

.feature-name { font-weight: 600; font-size: 0.9375rem; color: var(--text-primary); }
.dedicated-cell { background: rgba(107,61,187,0.04); text-align: center; }
.vps-cell { text-align: center; }

.check-icon, .cross-icon { font-size: 1.5rem; margin-bottom: 4px; display: block; }
.cell-title { font-weight: 700; color: var(--text-primary); font-size: 1rem; margin-bottom: 4px; }
.dedicated-cell .cell-title { color: #6B3DBB; }
.cell-value { font-weight: 700; font-size: 0.9375rem; color: var(--text-primary); }
.cell-description { font-size: 0.8125rem; color: var(--text-secondary); margin-top: 4px; }

.scroll-hint { text-align: center; font-size: 0.8125rem; color: var(--text-secondary); margin-top: 12px; display: none; }

.comparison-cta { display: flex; justify-content: center; gap: 16px; margin-top: 40px; flex-wrap: wrap; }

.comparison-cta .btn-primary,
.comparison-cta .btn-secondary {
    padding: 14px 36px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: var(--radius-lg);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all var(--transition-base);
    border: 2px solid transparent;
}
.comparison-cta .btn-primary { background: var(--gradient-primary); color: white; box-shadow: var(--shadow-md); }
.comparison-cta .btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.comparison-cta .btn-secondary { background: transparent; color: var(--primary); border-color: var(--primary); }
.comparison-cta .btn-secondary:hover { background: var(--primary); color: white; }

/* ════════════════════════════════════════════
   INFRASTRUCTURE
   ════════════════════════════════════════════ */
.ds-infrastructure { padding: 80px 0; background: var(--bg-primary); }

.ds-infra-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.ds-infra-card {
    background: var(--bg-card);
    padding: 36px 28px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.3s ease;
}
.ds-infra-card:hover { box-shadow: var(--shadow-xl); transform: translateY(-5px); }

.infra-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}
.infra-icon.purple { background: rgba(107,61,187,0.1); }
.infra-icon.purple svg { stroke: #6B3DBB; }
.infra-icon.blue { background: rgba(59,130,246,0.1); }
.infra-icon.blue svg { stroke: #3B82F6; }
.infra-icon.yellow { background: rgba(245,158,11,0.1); }
.infra-icon.yellow svg { stroke: #F59E0B; }

.ds-infra-card h3 { font-size: 1.3125rem; font-weight: 700; margin-bottom: 12px; }
.ds-infra-card > p { font-size: 0.9375rem; color: var(--text-secondary); line-height: 1.75; margin-bottom: 16px; }

.latency-grid { display: flex; flex-wrap: wrap; gap: 8px; margin: 16px 0; justify-content: center; }
.latency-item {
    background: rgba(107,61,187,0.08);
    border: 1px solid rgba(107,61,187,0.2);
    border-radius: 8px;
    padding: 8px 14px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
}
.latency-note { font-size: 0.75rem; font-style: italic; color: var(--text-secondary); text-align: center; }

/* ════════════════════════════════════════════
   USE CASES
   ════════════════════════════════════════════ */
.ds-usecases { padding: 80px 0; background: var(--bg-secondary); }

.ds-usecases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.ds-usecase-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 28px 24px;
    text-align: center;
    transition: all 0.3s ease;
}
.ds-usecase-card:hover { border-color: #6B3DBB; transform: translateY(-4px); box-shadow: var(--shadow-xl); }

.usecase-emoji { font-size: 2.25rem; margin-bottom: 12px; display: block; }
.ds-usecase-card h4 { font-size: 1.0625rem; font-weight: 700; color: var(--text-primary); margin-bottom: 8px; }
.ds-usecase-card p  { font-size: 0.875rem; color: var(--text-secondary); line-height: 1.65; margin: 0; }

/* ════════════════════════════════════════════
   TESTIMONIALS
   ════════════════════════════════════════════ */
.ds-testimonials { padding: 80px 0; background: var(--bg-primary); }

.ds-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 28px;
    margin: 0;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}
.testimonial-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-xl); border-color: #6B3DBB; }

.testimonial-stars { font-size: 1rem; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-text {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.75;
    margin: 0 0 20px;
    flex: 1;
    font-style: italic;
}
.testimonial-text::before { content: '"'; }
.testimonial-text::after  { content: '"'; }

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
}

.author-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6B3DBB, #8E2FE4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.75rem;
    color: white;
    flex-shrink: 0;
}

.author-name { font-weight: 700; font-size: 0.9rem; color: var(--text-primary); font-style: normal; display: block; }
.author-role { font-size: 0.8125rem; color: var(--text-secondary); margin-top: 2px; }

/* ════════════════════════════════════════════
   FAQ
   ════════════════════════════════════════════ */
.ds-faq { padding: 80px 0; background: var(--bg-secondary); }

.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 4px; }

.faq-item { border: 1px solid var(--border-color); border-radius: 12px; overflow: hidden; background: var(--bg-card); transition: border-color 0.2s ease; }
.faq-item.active { border-color: #6B3DBB; }

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    gap: 12px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    transition: color 0.2s ease;
    font-family: inherit;
}
.faq-question:hover { color: #6B3DBB; }
.faq-item.active .faq-question { color: #6B3DBB; }

.faq-chevron { flex-shrink: 0; color: var(--text-secondary); transition: transform 0.3s ease; }
.faq-item.active .faq-chevron { transform: rotate(180deg); color: #6B3DBB; }

.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-item.active .faq-answer { max-height: 300px; }
.faq-answer p { padding: 0 24px 20px; font-size: 0.9375rem; color: var(--text-secondary); line-height: 1.75; margin: 0; }

/* ════════════════════════════════════════════
   FINAL CTA — brand purple gradient
   ════════════════════════════════════════════ */
.ds-cta-final {
    padding: 80px 0;
    background: linear-gradient(135deg, #6B3DBB 0%, #8E2FE4 50%, #6B3DBB 100%);
    position: relative;
    overflow: hidden;
}

.ds-cta-final::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.06) 0%, transparent 60%);
    pointer-events: none;
}

.cta-final-content { text-align: center; position: relative; z-index: 1; max-width: 680px; margin: 0 auto; }
.cta-final-content h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); font-weight: 800; color: white; margin-bottom: 16px; line-height: 1.2; }
.cta-final-content > p { font-size: 1.0625rem; color: rgba(255,255,255,0.88); margin-bottom: 36px; line-height: 1.65; }

.cta-final-buttons { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; margin-bottom: 24px; }
.cta-final-buttons .btn-large.btn-primary { background: linear-gradient(135deg, #10B981 0%, #059669 100%); }
.cta-final-buttons .btn-large.btn-secondary { background: rgba(255,255,255,0.12); color: white; border-color: rgba(255,255,255,0.4); backdrop-filter: blur(8px); }
.cta-final-buttons .btn-large.btn-secondary:hover { background: rgba(255,255,255,0.22); }

.cta-reassurance { display: flex; align-items: center; justify-content: center; gap: 6px; font-size: 0.875rem; color: rgba(255,255,255,0.72); margin: 0; }
.cta-reassurance svg { stroke: rgba(255,255,255,0.72); }

/* ════════════════════════════════════════════
   RESPONSIVE — TABLET (≤1024px)
   ════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .ds-pricing-grid      { grid-template-columns: repeat(2, 1fr); }
    .ds-card--featured    { transform: none; }
    .ds-card--featured:hover { transform: translateY(-6px); }
    .ds-why-grid          { grid-template-columns: repeat(2, 1fr); }
    .ds-infra-grid        { grid-template-columns: repeat(2, 1fr); }
    .ds-usecases-grid     { grid-template-columns: repeat(2, 1fr); }
    .ds-testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ════════════════════════════════════════════
   RESPONSIVE — MOBILE (≤768px)
   ════════════════════════════════════════════ */
@media (max-width: 768px) {
    .ds-hero     { padding: 60px 20px; min-height: auto; }
    .ds-hero-cta { flex-direction: column; align-items: center; }
    .btn-large   { width: 100%; max-width: 320px; justify-content: center; }

    .ds-pricing-grid      { grid-template-columns: 1fr; }
    .ds-why-grid          { grid-template-columns: 1fr; }
    .ds-infra-grid        { grid-template-columns: 1fr; }
    .ds-usecases-grid     { grid-template-columns: repeat(2, 1fr); }
    .ds-testimonials-grid { grid-template-columns: 1fr; }

    .comparison-table-scroll { margin: 0; }
    .scroll-hint   { display: block; }
    .comparison-cta { flex-direction: column; align-items: center; }
    .comparison-cta .btn-primary,
    .comparison-cta .btn-secondary { width: 100%; max-width: 320px; justify-content: center; }

    .cta-final-buttons { flex-direction: column; align-items: center; }
    .section-container { padding: 0 1.25rem; }
}

@media (max-width: 480px) {
    .ds-usecases-grid { grid-template-columns: 1fr; }
    .comparison-table { min-width: 520px; }
}

/* ── USE CASE ICONS (SVG replacement for emojis) ── */
.usecase-icon {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    background: rgba(107, 61, 187, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    transition: all 0.3s ease;
}

.usecase-icon svg {
    stroke: #6B3DBB;
    width: 30px;
    height: 30px;
}

.ds-usecase-card:hover .usecase-icon {
    background: rgba(107, 61, 187, 0.15);
}

/* ── RATING STARS (SVG) ── */
.rating-stars {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    line-height: 1;
}

.testimonial-stars {
    display: flex;
    align-items: center;
    gap: 2px;
    margin-bottom: 16px;
}

/* ── COMPARISON TABLE ICON CELLS ── */
.check-icon,
.cross-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 6px;
}

.check-icon svg,
.cross-icon svg {
    flex-shrink: 0;
    display: block;
}

/* ── LATENCY ITEMS WITH ICON ── */
.latency-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.latency-item svg {
    stroke: #6B3DBB;
    flex-shrink: 0;
}

/* ── POPULAR BADGE (no emoji) ── */
.ds-popular-badge {
    letter-spacing: 1px;
}