/* ============================================
   INDEX.CSS — Homepage Styles
   ============================================ */

/* ── NOISE TEXTURE OVERLAY ── */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
    opacity: 0.4;
}

/* ── AMBIENT ORBS ── */
.ambient-background {
    position: fixed;
    inset: 0;
    z-index: -1;
    overflow: hidden;
    background: radial-gradient(ellipse at 20% 10%, #1a1200 0%, var(--bg-base) 60%);
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.18;
    animation: orbFloat 25s infinite ease-in-out;
}

.orb-1 {
    width: 600px; height: 600px;
    background: var(--gold);
    top: -200px; left: -150px;
}

.orb-2 {
    width: 500px; height: 500px;
    background: var(--crimson);
    bottom: -150px; right: -100px;
    animation-delay: -8s;
}

.orb-3 {
    width: 350px; height: 350px;
    background: #7c5c1e;
    top: 45%; left: 50%;
    animation-delay: -15s;
}

@keyframes orbFloat {
    0%,100% { transform: translate(0,0) scale(1); }
    33%      { transform: translate(40px,-60px) scale(1.08); }
    66%      { transform: translate(-30px,30px) scale(0.94); }
}

/* ── HERO ── */
.hero {
    position: relative;
    min-height: 92vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10rem 5% 6rem;
    z-index: 1;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 1.1rem;
    background: var(--gold-dim);
    border: 1px solid var(--gold-border);
    border-radius: 50px;
    color: var(--gold-light);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.8rem, 7vw, 5.5rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.hero h1 .gold-word {
    background: linear-gradient(135deg, var(--gold) 20%, var(--gold-light) 80%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 560px;
    margin: 0 auto 3rem;
    font-weight: 400;
    line-height: 1.85;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--gold), #a8722a);
    color: #0d0d0d;
    padding: 0.95rem 2.5rem;
    font-size: 0.95rem;
    border-radius: var(--radius-sm);
    font-weight: 700;
    box-shadow: 0 8px 24px rgba(201,168,76,0.35);
    transition: var(--transition);
    letter-spacing: 0.3px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 32px rgba(201,168,76,0.5);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.95rem 2.5rem;
    font-size: 0.95rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    color: var(--text-primary);
    background: transparent;
    border: 1px solid var(--gold-border);
    transition: var(--transition);
}

.btn-secondary:hover {
    background: var(--gold-dim);
    border-color: var(--gold);
    transform: translateY(-3px);
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.4;
    animation: scrollBounce 2.5s infinite;
}

.mouse {
    width: 22px; height: 34px;
    border: 1.5px solid var(--text-muted);
    border-radius: 20px;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 5px; left: 50%;
    transform: translateX(-50%);
    width: 3px; height: 6px;
    background: var(--gold);
    border-radius: 2px;
    animation: scrollDot 2.5s infinite;
}

@keyframes scrollBounce {
    0%,100% { transform: translateX(-50%) translateY(0); }
    50%      { transform: translateX(-50%) translateY(8px); }
}

@keyframes scrollDot {
    0%   { opacity: 1; top: 5px; }
    100% { opacity: 0; top: 16px; }
}

/* ── DIVIDER ── */
.section-divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), transparent);
    margin: 0 auto 1rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1rem;
    margin-top: 0.6rem;
}

/* ── GAME FEATURES ── */
.game-features {
    padding: 7rem 0;
    position: relative;
    z-index: 1;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.game-card.premium-hover {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
}

.game-card.premium-hover::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, var(--gold-dim), transparent);
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
    z-index: 0;
}

.game-card.premium-hover:hover {
    transform: translateY(-8px);
    border-color: var(--gold-border);
    box-shadow: var(--shadow-card), var(--shadow-glow);
}

.game-card.premium-hover:hover::before { opacity: 1; }

.card-img-wrapper {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.card-img-wrapper img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}

.game-card.premium-hover:hover .card-img-wrapper img { transform: scale(1.08); }

.overlay-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13,13,13,0.9) 0%, transparent 60%);
}

.game-info {
    padding: 1.8rem;
    position: relative;
    z-index: 1;
}

.game-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
    color: var(--text-primary);
}

.game-info p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.cyber-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.6rem 1.3rem;
    background: transparent;
    border: 1px solid var(--gold-border);
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gold);
    transition: var(--transition);
}

.game-card:hover .cyber-btn {
    background: var(--gold);
    border-color: var(--gold);
    color: #0d0d0d;
}

.cyber-btn svg { transition: transform 0.3s; }
.game-card:hover .cyber-btn svg { transform: translateX(3px); }

/* ── NEWS SECTION ── */
.latest-news {
    padding: 7rem 0;
    background: linear-gradient(180deg, transparent, rgba(20,14,0,0.4) 20%, rgba(20,14,0,0.4) 80%, transparent);
    position: relative;
    z-index: 1;
}

.news-grid.modern-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 2rem;
}

.news-card.glass-effect {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.news-card.glass-effect:hover {
    border-color: var(--gold-border);
    transform: translateY(-6px);
    box-shadow: var(--shadow-card);
}

.news-img-container {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.news-img-container img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease);
}

.news-card:hover .news-img-container img { transform: scale(1.06); }

.news-date-badge {
    position: absolute;
    top: 12px; right: 12px;
    background: rgba(13,13,13,0.85);
    backdrop-filter: blur(6px);
    padding: 0.3rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gold-light);
    border: 1px solid var(--gold-border);
    display: flex;
    align-items: center;
    gap: 4px;
}

.news-content {
    padding: 1.8rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.news-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    line-height: 1.4;
    color: var(--text-primary);
}

.news-content h3 a:hover { color: var(--gold); }

.news-content p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
    flex: 1;
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    margin-top: 1.2rem;
    color: var(--gold);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.read-more:hover { color: var(--gold-light); gap: 0.6rem; }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
    .hero { padding: 7rem 5% 4rem; min-height: auto; }
    .hero h1 { font-size: 2.4rem; }
    .hero-desc { font-size: 1rem; }
    .hero-actions { flex-direction: column; width: 100%; }
    .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
    .grid-container, .news-grid.modern-grid { grid-template-columns: 1fr; }
    .game-features, .latest-news { padding: 4rem 0; }
    .section-header { margin-bottom: 2.5rem; }
}

@media (max-width: 480px) {
    .hero h1 { font-size: 2rem; }
    .card-img-wrapper, .news-img-container { height: 190px; }
    .game-info, .news-content { padding: 1.4rem; }
}

/* ── STATS BAR ── */
.stats-bar {
    padding: 2.5rem 0;
    position: relative;
    z-index: 1;
}

.stats-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    background: var(--bg-surface);
    border: 1px solid var(--gold-border);
    border-radius: var(--radius-lg);
    padding: 2rem 3rem;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
    min-width: 160px;
    justify-content: center;
    padding: 0.5rem 1rem;
}

.stat-item i {
    font-size: 2rem;
    color: var(--gold);
    flex-shrink: 0;
}

.stat-body {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-top: 0.25rem;
    letter-spacing: 0.3px;
}

.stat-divider {
    width: 1px;
    height: 50px;
    background: var(--gold-border);
    flex-shrink: 0;
}

/* ── WHY CHOOSE US ── */
.why-us {
    padding: 7rem 0;
    position: relative;
    z-index: 1;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.why-card {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 2rem 1.8rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.why-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transition: width 0.4s var(--ease);
}

.why-card:hover {
    border-color: var(--gold-border);
    transform: translateY(-5px);
    box-shadow: var(--shadow-card);
}

.why-card:hover::after { width: 100%; }

.why-icon {
    width: 52px; height: 52px;
    background: var(--gold-dim);
    border: 1px solid var(--gold-border);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.3rem;
}

.why-icon i {
    font-size: 1.5rem;
    color: var(--gold);
}

.why-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.6rem;
}

.why-card p {
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.75;
}

/* ── CTA BANNER ── */
.cta-banner {
    padding: 5rem 0;
    position: relative;
    z-index: 1;
}

.cta-inner {
    background: linear-gradient(135deg, #1a1200 0%, #0f0a00 50%, #1a0d00 100%);
    border: 1px solid var(--gold-border);
    border-radius: var(--radius-xl);
    padding: 4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    position: relative;
    overflow: hidden;
}

.cta-inner::before {
    content: '';
    position: absolute;
    top: -80px; right: -80px;
    width: 300px; height: 300px;
    background: var(--gold);
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.12;
    pointer-events: none;
}

.cta-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.3rem 0.9rem;
    background: var(--gold-dim);
    border: 1px solid var(--gold-border);
    border-radius: 50px;
    color: var(--gold-light);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.cta-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.2;
    margin-bottom: 0.8rem;
}

.cta-text p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 480px;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    flex-shrink: 0;
}

.btn-cta-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.9rem 2rem;
    font-size: 0.9rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    color: var(--gold);
    background: transparent;
    border: 1px solid var(--gold-border);
    transition: var(--transition);
    text-align: center;
}

.btn-cta-outline:hover {
    background: var(--gold-dim);
    border-color: var(--gold);
}

/* ── RESPONSIVE NEW SECTIONS ── */
@media (max-width: 992px) {
    .why-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .stats-grid { gap: 0; padding: 1.5rem; }
    .stat-divider { display: none; }
    .stat-item { min-width: 140px; padding: 0.8rem; }
    .stat-number { font-size: 1.5rem; }

    .why-grid { grid-template-columns: 1fr; }
    .why-us { padding: 4rem 0; }

    .cta-inner {
        flex-direction: column;
        text-align: center;
        padding: 2.5rem 1.8rem;
    }
    .cta-text p { margin: 0 auto; }
    .cta-actions { width: 100%; }
    .btn-primary, .btn-cta-outline { width: 100%; justify-content: center; }
    .cta-banner { padding: 3rem 0; }
}

@media (max-width: 480px) {
    .stat-item { min-width: 120px; }
    .stat-number { font-size: 1.3rem; }
}

/* ── PROMO HIGHLIGHT ── */
.promo-highlight {
    padding: 5rem 0;
    position: relative;
    z-index: 1;
}

.promo-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 1.5rem;
    align-items: stretch;
}

.promo-card {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.2rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.promo-card:hover {
    border-color: var(--gold-border);
    transform: translateY(-5px);
    box-shadow: var(--shadow-card);
}

.promo-card--main {
    background: linear-gradient(145deg, #1c1400, #0f0900);
    border-color: var(--gold-border);
    box-shadow: var(--shadow-glow);
}

.promo-card--main::before {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 200px; height: 200px;
    background: var(--gold);
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    pointer-events: none;
}

.promo-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.3rem 0.8rem;
    background: var(--gold);
    color: #0d0d0d;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    width: fit-content;
}

.promo-badge--silver {
    background: var(--bg-raised);
    color: var(--gold-light);
    border: 1px solid var(--gold-border);
}

.promo-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
}

.promo-value {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--gold-light);
    font-family: 'Playfair Display', serif;
}

.promo-value strong { color: var(--gold); }

.promo-desc {
    color: var(--text-muted);
    font-size: 0.88rem;
    line-height: 1.7;
    flex: 1;
}

.promo-card .btn-primary,
.promo-card .btn-cta-outline {
    margin-top: auto;
    justify-content: center;
    text-align: center;
}

/* ── HOW IT WORKS ── */
.how-it-works {
    padding: 6rem 0;
    position: relative;
    z-index: 1;
}

.steps-row {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
}

.step-item {
    flex: 1;
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: var(--transition);
    position: relative;
}

.step-item:hover {
    border-color: var(--gold-border);
    transform: translateY(-6px);
    box-shadow: var(--shadow-card);
}

.step-num {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 800;
    color: var(--gold-dim);
    line-height: 1;
    margin-bottom: 0.8rem;
    background: linear-gradient(135deg, var(--gold-border), transparent);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.step-icon {
    width: 60px; height: 60px;
    background: var(--gold-dim);
    border: 1px solid var(--gold-border);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.2rem;
}

.step-icon i {
    font-size: 1.6rem;
    color: var(--gold);
}

.step-item h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.6rem;
}

.step-item p {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.7;
}

.step-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 0.5rem;
    color: var(--gold-border);
    font-size: 1.2rem;
    flex-shrink: 0;
    margin-top: 4rem;
}

/* ── TESTIMONIALS ── */
.testimonials {
    padding: 6rem 0;
    position: relative;
    z-index: 1;
    background: linear-gradient(180deg, transparent, rgba(20,14,0,0.3) 20%, rgba(20,14,0,0.3) 80%, transparent);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    align-items: start;
}

.testi-card {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.testi-card:hover {
    border-color: var(--gold-border);
    transform: translateY(-5px);
    box-shadow: var(--shadow-card);
}

.testi-card--featured {
    border-color: var(--gold-border);
    background: linear-gradient(145deg, #1a1200, #0f0900);
    box-shadow: var(--shadow-glow);
    transform: translateY(-8px);
}

.testi-card--featured:hover { transform: translateY(-14px); }

.testi-stars {
    display: flex;
    gap: 3px;
}

.testi-stars i {
    color: var(--gold);
    font-size: 0.9rem;
}

.testi-text {
    color: #b0a898;
    font-size: 0.92rem;
    line-height: 1.8;
    font-style: italic;
    flex: 1;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.testi-avatar {
    width: 40px; height: 40px;
    background: linear-gradient(135deg, var(--gold), #a8722a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1rem;
    color: #0d0d0d;
    flex-shrink: 0;
}

.testi-name {
    display: block;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-primary);
}

.testi-role {
    display: block;
    font-size: 0.75rem;
    color: var(--gold);
    font-weight: 500;
}

/* ── FAQ ── */
.faq-section {
    padding: 6rem 0;
    position: relative;
    z-index: 1;
}

.faq-list {
    max-width: 780px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.faq-item {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color 0.3s;
}

.faq-item.open {
    border-color: var(--gold-border);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.3rem 1.6rem;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    color: var(--text-primary);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    transition: color 0.3s;
}

.faq-question:hover { color: var(--gold-light); }

.faq-icon {
    color: var(--gold);
    font-size: 1.1rem;
    flex-shrink: 0;
    transition: transform 0.35s var(--ease);
}

.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease), padding 0.3s;
}

.faq-answer p {
    padding: 0 1.6rem 1.4rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.8;
}

.faq-item.open .faq-answer { max-height: 200px; }

/* ── RESPONSIVE NEW SECTIONS ── */
@media (max-width: 992px) {
    .promo-grid { grid-template-columns: 1fr; }
    .promo-card--main { order: -1; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .testi-card--featured { transform: none; }
    .steps-row { flex-direction: column; align-items: stretch; }
    .step-connector { transform: rotate(90deg); margin: 0 auto; padding: 0.3rem 0; }
}

@media (max-width: 768px) {
    .promo-highlight, .how-it-works, .testimonials, .faq-section { padding: 4rem 0; }
    .step-item { padding: 2rem 1.2rem; }
}
