/* ===============
   HOMEPAGE STYLES - CASINO ONLINE INDONESIA
   Enhanced with particles, gradient mesh, micro-animations
   =============== */

/* ===============
   1. HERO SECTION
   =============== */
.hero {
    position: relative;
    background: linear-gradient(165deg, #0c1e3d 0%, #081425 40%, #04080f 100%);
    padding: 80px 0 100px;
    text-align: center;
    color: var(--text-white);
    overflow: hidden;
}

/* Animated gradient mesh */
.hero::before {
    content: '';
    position: absolute;
    top: -150px;
    left: 50%;
    transform: translateX(-50%);
    width: 1200px;
    height: 700px;
    background:
        radial-gradient(circle at 30% 40%, rgba(34, 197, 94, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(99, 102, 241, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 50% 20%, rgba(59, 130, 246, 0.08) 0%, transparent 50%);
    pointer-events: none;
    filter: blur(60px);
    animation: float 8s ease-in-out infinite;
}

/* Particle dots overlay */
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle, rgba(255,255,255,0.08) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.4;
    pointer-events: none;
}

/* Bottom fade to page bg */
.hero-bottom-fade {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to top, var(--bg-page), transparent);
    pointer-events: none;
    z-index: 3;
}

.hero > .container {
    position: relative;
    z-index: 4;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 7px 20px;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.25);
    border-radius: var(--radius-pill);
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--brand-green);
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
    letter-spacing: 0.5px;
    animation: fadeInUp 0.6s ease both;
    max-width: 100%;
    white-space: normal;
    text-align: center;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.6rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1.5px;
    max-width: 900px;
    margin: 0 auto 20px;
    color: #ffffff;
    animation: fadeInUp 0.6s ease 0.1s both;
}

.hero-title .highlight {
    background: linear-gradient(135deg, #4ade80 0%, #22c55e 50%, #16a34a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--text-white-sub);
    max-width: 660px;
    margin: 0 auto 40px;
    line-height: 1.7;
    animation: fadeInUp 0.6s ease 0.2s both;
}

/* Hero CTA Buttons */
.hero-cta-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 45px;
    flex-wrap: wrap;
    animation: fadeInUp 0.6s ease 0.3s both;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 36px;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1rem;
    color: #04080f;
    background: var(--brand-green);
    border-radius: var(--radius-pill);
    box-shadow: var(--shadow-glow-green);
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-hero-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 0 35px rgba(34, 197, 94, 0.55);
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-pill);
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

/* Floating Search / Filter Bar */
.hero-filter-bar {
    background: rgba(13, 23, 42, 0.85);
    backdrop-filter: blur(16px);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-pill);
    padding: 6px 8px 6px 22px;
    display: inline-flex;
    align-items: center;
    gap: 0;
    box-shadow: 0 25px 60px -12px rgba(0, 0, 0, 0.65), 0 0 0 1px rgba(255, 255, 255, 0.08);
    margin-bottom: 50px;
    max-width: 100%;
    animation: fadeInUp 0.6s ease 0.4s both;
}

.filter-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-main);
    font-size: 0.88rem;
    font-weight: 500;
    padding: 10px 16px;
    cursor: pointer;
    border-right: 1px solid var(--border-light);
    transition: var(--transition-fast);
}

.filter-item:hover { background: rgba(255, 255, 255, 0.05); }
.filter-item:last-of-type { border-right: none; }

.filter-item select {
    border: none;
    outline: none;
    background: transparent;
    font-weight: 600;
    color: #ffffff;
    cursor: pointer;
    font-size: 0.86rem;
}

.filter-item select option {
    background: #0d172a;
    color: #ffffff;
}

.btn-filter-search {
    background: var(--brand-green);
    color: #04080f;
    border: none;
    outline: none;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    cursor: pointer;
    box-shadow: 0 6px 16px rgba(34, 197, 94, 0.35);
    transition: var(--transition);
    flex-shrink: 0;
}

.btn-filter-search:hover {
    background: #4ade80;
    transform: scale(1.08);
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.5);
}

/* Hero Visual Showcase */
.hero-visual-wrap {
    position: relative;
    max-width: 780px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease 0.5s both;
}

.hero-main-img {
    width: 100%;
    max-height: 360px;
    object-fit: contain;
    filter: drop-shadow(0 30px 50px rgba(0, 0, 0, 0.5));
    transition: transform 0.6s ease;
}

.hero-main-img:hover { transform: translateY(-8px) scale(1.02); }

.hero-badge-float {
    position: absolute;
    bottom: 20px;
    left: 24px;
    background: rgba(8, 20, 37, 0.9);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(34, 197, 94, 0.25);
    border-radius: var(--radius-md);
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    text-align: left;
    box-shadow: 0 12px 32px rgba(0,0,0,0.4);
    animation: float 4s ease-in-out infinite;
}

.hero-badge-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--brand-green);
    color: #04080f;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.hero-badge-text strong {
    display: block;
    font-size: 0.9rem;
    color: #ffffff;
    font-weight: 700;
}

.hero-badge-text span {
    font-size: 0.78rem;
    color: var(--brand-green);
    font-weight: 500;
}

/* Second floating badge on right */
.hero-badge-float-right {
    position: absolute;
    top: 20px;
    right: 24px;
    background: rgba(99, 102, 241, 0.15);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: var(--radius-md);
    padding: 12px 18px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
    animation: float 5s ease-in-out infinite 1s;
}

.hero-badge-float-right .stat-val {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--accent-amber);
    display: block;
}

.hero-badge-float-right .stat-txt {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.7);
    font-weight: 600;
}

/* ===============
   2. BROWSE BY CATEGORY
   =============== */
.browse-section {
    padding: 75px 0;
}

.browse-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 18px;
    margin-bottom: 35px;
}

.browse-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 28px 16px 24px;
    text-align: center;
    position: relative;
    transition: var(--transition);
    box-shadow: var(--shadow-subtle);
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    overflow: hidden;
}

.browse-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--brand-green-subtle), transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.browse-card:hover::before { opacity: 1; }

.browse-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--brand-green);
    background: var(--bg-surface-alt);
}

.browse-badge-popular {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--accent-rose);
    color: #ffffff;
    font-size: 0.68rem;
    font-weight: 800;
    padding: 3px 9px;
    border-radius: var(--radius-pill);
    box-shadow: 0 4px 12px rgba(244, 63, 94, 0.35);
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.browse-icon-wrap {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--bg-surface-alt);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    font-size: 2.2rem;
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.browse-card:hover .browse-icon-wrap {
    background: var(--brand-green-light);
    transform: scale(1.12) rotate(5deg);
}

.browse-title {
    font-family: var(--font-heading);
    font-size: 1.02rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 4px;
    position: relative;
    z-index: 1;
}

.browse-count {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
    position: relative;
    z-index: 1;
}

.browse-action-center { text-align: center; }

.btn-view-all-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--brand-green);
    color: #04080f;
    font-weight: 700;
    font-size: 0.92rem;
    padding: 13px 34px;
    border-radius: var(--radius-pill);
    box-shadow: var(--shadow-glow-green);
    transition: var(--transition);
}

.btn-view-all-pill:hover {
    background: #4ade80;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(34, 197, 94, 0.45);
}

/* ===============
   3. DUAL PROMO SPLIT CARDS
   =============== */
.dual-promo-section {
    padding: 20px 0 70px;
}

.dual-promo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.promo-action-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    padding: 44px 40px;
    position: relative;
    box-shadow: var(--shadow-subtle);
    transition: var(--transition);
    overflow: hidden;
}

.promo-action-card::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    opacity: 0.08;
    transition: opacity 0.4s ease;
}

.promo-action-card:first-child::before { background: var(--brand-green); }
.promo-action-card:last-child::before { background: var(--accent-blue); }

.promo-action-card:hover::before { opacity: 0.16; }

.promo-action-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-card);
    border-color: rgba(34, 197, 94, 0.3);
}

.promo-action-card h3 {
    font-family: var(--font-heading);
    font-size: 1.55rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 12px;
    line-height: 1.3;
}

.promo-action-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 28px;
    max-width: 82%;
    line-height: 1.6;
}

.btn-promo-action {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--brand-green);
    color: #04080f;
    font-size: 0.9rem;
    font-weight: 700;
    padding: 12px 28px;
    border-radius: var(--radius-pill);
    transition: var(--transition);
}

.btn-promo-action:hover {
    background: #4ade80;
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.4);
}

.promo-floating-circle {
    position: absolute;
    bottom: 30px;
    right: 34px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}

.promo-action-card:hover .promo-floating-circle {
    transform: scale(1.15) rotate(10deg);
}

.circle-green { background: var(--brand-green); color: #04080f; }
.circle-blue { background: var(--accent-blue); color: #ffffff; }

/* ===============
   4. BRAND VALUES & CREDIBILITY
   =============== */
.credibility-section {
    padding: 80px 0;
    background: var(--bg-page);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.credibility-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.credibility-media-collage {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    position: relative;
}

.media-item-large {
    grid-column: span 2;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 210px;
    background: linear-gradient(135deg, #0c1e3d, #132040);
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border-light);
}

.media-item-large img,
.media-item-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.media-item-large:hover img,
.media-item-small:hover img {
    transform: scale(1.08);
}

.media-item-small {
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 175px;
    background: linear-gradient(135deg, #132040, #1b2e55);
    box-shadow: var(--shadow-card);
    border: 1px solid var(--border-light);
}

.credibility-experience-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--bg-surface);
    border: 4px solid var(--bg-page);
    border-radius: 50%;
    width: 90px;
    height: 90px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
    text-align: center;
    z-index: 2;
}

.credibility-experience-badge strong {
    font-size: 1.4rem;
    font-family: var(--font-heading);
    color: var(--brand-green);
    line-height: 1;
}

.credibility-experience-badge span {
    font-size: 0.65rem;
    color: var(--text-muted);
    font-weight: 700;
}

.credibility-info .section-badge { margin-bottom: 14px; }

.credibility-title {
    font-family: var(--font-heading);
    font-size: 2.3rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 18px;
}

.credibility-desc {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 28px;
}

.credibility-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 32px;
}

.credibility-list-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 14px;
    border-radius: var(--radius-md);
    transition: var(--transition-fast);
}

.credibility-list-item:hover {
    background: var(--bg-surface-alt);
}

.item-icon-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--brand-green-light);
    color: var(--brand-green-hover);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.item-text strong {
    display: block;
    font-size: 1.02rem;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 2px;
}

.item-text p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.credibility-rating-row {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-top: 22px;
    border-top: 1px solid var(--border-light);
}

.rating-avatars { display: flex; }

.rating-avatar-img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid var(--border-light);
    margin-left: -10px;
    object-fit: cover;
    background: #111e38;
}

.rating-avatar-img:first-child { margin-left: 0; }

.rating-score {
    font-size: 0.88rem;
    color: #ffffff;
}

.rating-score strong {
    font-size: 1.1rem;
    font-weight: 800;
}

/* ===============
   5. POPULAR GAMES SHOWCASE
   =============== */
.popular-games-section {
    padding: 80px 0;
    background: var(--bg-surface-alt);
    position: relative;
}

.filter-pills-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-pill {
    padding: 9px 22px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-muted);
    background: var(--bg-surface);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-pill);
    cursor: pointer;
    transition: var(--transition);
}

.filter-pill:hover {
    border-color: var(--brand-green);
    color: #ffffff;
    background: var(--bg-surface);
}

.filter-pill.active {
    background: var(--brand-green);
    color: #04080f;
    font-weight: 700;
    border-color: var(--brand-green);
    box-shadow: 0 4px 14px rgba(34, 197, 94, 0.3);
}

.games-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    margin-bottom: 36px;
}

.game-item-card {
    background: var(--bg-surface);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    overflow: hidden;
    box-shadow: var(--shadow-subtle);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.game-item-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(34, 197, 94, 0.4);
}

.game-card-thumb-wrap {
    position: relative;
    height: 195px;
    background: linear-gradient(135deg, #0c1e3d, #081425);
    overflow: hidden;
}

.game-card-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.game-item-card:hover .game-card-thumb {
    transform: scale(1.1);
}

.game-card-fav {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(8px);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.game-card-fav:hover { background: #ef4444; transform: scale(1.15); }

.game-card-rtp-badge {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background: rgba(34, 197, 94, 0.95);
    color: #04080f;
    font-size: 0.76rem;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: var(--radius-pill);
}

.game-card-body {
    padding: 18px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.game-card-title {
    font-family: var(--font-heading);
    font-size: 1.08rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 4px;
}

.game-card-provider {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.game-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 14px;
    border-top: 1px solid var(--border-light);
}

.game-card-bet {
    font-size: 0.86rem;
    color: var(--brand-green-hover);
    font-weight: 700;
}

.btn-play-mini {
    font-size: 0.82rem;
    font-weight: 700;
    padding: 7px 16px;
    background: var(--brand-green);
    color: #04080f;
    border-radius: var(--radius-pill);
    transition: var(--transition);
}

.game-item-card:hover .btn-play-mini {
    background: #4ade80;
    box-shadow: 0 0 15px rgba(34, 197, 94, 0.4);
}

.carousel-indicators-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.dot-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #334155;
    cursor: pointer;
    transition: var(--transition);
}

.dot-indicator.active {
    width: 28px;
    border-radius: 4px;
    background: var(--brand-green);
}

/* ===============
   6. HOW IT WORKS - Connected Timeline
   =============== */
.how-it-works-section {
    padding: 85px 0;
}

.how-steps-wrap {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-top: 60px;
    gap: 12px;
}

.how-steps-wrap::before {
    content: '';
    position: absolute;
    top: 54px;
    left: 10%;
    right: 10%;
    height: 3px;
    background: linear-gradient(to right,
        #3b82f6 0%, #6366f1 25%, #c026d3 50%, #ea580c 75%, #22c55e 100%);
    border-radius: 3px;
    z-index: 1;
}

.how-step-item {
    flex: 1;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
}

.step-num-label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.step-icon-circle {
    width: 66px;
    height: 66px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 18px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    transition: var(--transition);
    border: 4px solid var(--bg-page);
}

.how-step-item:hover .step-icon-circle {
    transform: scale(1.18) rotate(8deg);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.5);
}

.step-icon-1 { background: rgba(59, 130, 246, 0.2); color: #60a5fa; }
.step-icon-2 { background: rgba(99, 102, 241, 0.2); color: #818cf8; }
.step-icon-3 { background: rgba(192, 38, 211, 0.2); color: #e879f9; }
.step-icon-4 { background: rgba(234, 88, 12, 0.2); color: #fb923c; }
.step-icon-5 { background: rgba(34, 197, 94, 0.2); color: #4ade80; }

.step-title {
    font-family: var(--font-heading);
    font-size: 1.02rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 6px;
}

.step-desc {
    font-size: 0.84rem;
    color: var(--text-muted);
    line-height: 1.45;
    max-width: 180px;
}

/* ===============
   7. TESTIMONIAL FEATURE QUOTE
   =============== */
.testimonial-feature-section {
    padding: 30px 0 80px;
}

.testimonial-quote-box {
    background: linear-gradient(135deg, #0d172a 0%, #111e38 100%);
    border-radius: var(--radius-xl);
    padding: 60px 70px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 40px -5px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--border-light);
}

.quote-mark-large {
    font-family: Georgia, serif;
    font-size: 7rem;
    line-height: 1;
    color: var(--accent-indigo);
    opacity: 0.2;
    position: absolute;
}

.quote-mark-top { top: 15px; left: 30px; }
.quote-mark-bottom { bottom: -20px; right: 40px; }

.quote-body-text {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.7;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
}

.quote-author-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    position: relative;
    z-index: 2;
}

.quote-author-img {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--border-light);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}

.quote-author-name {
    font-weight: 700;
    font-size: 1.05rem;
    color: #ffffff;
}

.quote-author-title {
    font-size: 0.84rem;
    color: var(--text-muted);
}

/* ===============
   8. OUR SUPPORT TEAM
   =============== */
.team-section {
    padding: 75px 0;
    background: var(--bg-page);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.team-member-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    text-align: center;
    padding-bottom: 18px;
    box-shadow: var(--shadow-subtle);
    transition: var(--transition);
}

.team-member-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-card);
    border-color: var(--brand-green);
}

.team-photo-wrap {
    height: 175px;
    background: linear-gradient(135deg, #111e38, #182848);
    overflow: hidden;
    margin-bottom: 14px;
}

.team-photo-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-member-card:hover .team-photo-wrap img {
    transform: scale(1.08);
}

.team-name {
    font-family: var(--font-heading);
    font-size: 0.98rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 3px;
}

.team-role {
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* ===============
   9. TRUSTED PARTNERS
   =============== */
.partners-section {
    padding: 70px 0;
    background: var(--bg-surface-alt);
    border-top: 1px solid var(--border-light);
    border-bottom: 1px solid var(--border-light);
}

.partners-orbit-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.partner-logo-box {
    width: 140px;
    height: 62px;
    background: var(--bg-surface);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    font-weight: 800;
    font-size: 0.78rem;
    color: #ffffff;
    transition: var(--transition);
    letter-spacing: 0.5px;
}

.partner-logo-box:hover {
    border-color: var(--brand-green);
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
    color: var(--brand-green);
}

/* ===============
   10. LATEST STORIES & TIPS
   =============== */
.stories-section {
    padding: 80px 0;
}

.stories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    margin-bottom: 35px;
}

.story-card {
    background: var(--bg-surface);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    overflow: hidden;
    box-shadow: var(--shadow-subtle);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.story-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-card);
}

.story-thumb-wrap {
    height: 200px;
    overflow: hidden;
    background: linear-gradient(135deg, #0c1e3d, #132040);
}

.story-thumb-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.story-card:hover .story-thumb-wrap img {
    transform: scale(1.1);
}

.story-body {
    padding: 22px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.story-badge {
    display: inline-block;
    font-size: 0.76rem;
    font-weight: 700;
    color: var(--brand-green-hover);
    background: var(--brand-green-light);
    padding: 3px 10px;
    border-radius: var(--radius-pill);
    margin-bottom: 10px;
}

.story-title {
    font-family: var(--font-heading);
    font-size: 1.08rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.45;
    margin-bottom: 14px;
}

.story-meta {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ===============
   11. APP DOWNLOAD BANNER
   =============== */
.app-banner-section {
    padding: 40px 0 90px;
}

.app-banner-card {
    background: linear-gradient(135deg, #312e81 0%, #1e1b4b 50%, #064e3b 100%);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    padding: 55px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px -10px rgba(0, 0, 0, 0.6);
}

.app-banner-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 50%;
    pointer-events: none;
}

.app-banner-content {
    max-width: 560px;
    z-index: 2;
}

.app-banner-content h2 {
    font-family: var(--font-heading);
    font-size: 2.3rem;
    font-weight: 800;
    margin-bottom: 12px;
    line-height: 1.2;
}

.app-banner-content p {
    font-size: 1.02rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 28px;
    line-height: 1.55;
}

.app-store-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn-store {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    color: #ffffff;
    padding: 12px 22px;
    border-radius: var(--radius-md);
    font-size: 0.88rem;
    font-weight: 600;
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.15);
}

.btn-store:hover {
    transform: translateY(-3px);
    background: rgba(0, 0, 0, 0.7);
    border-color: rgba(255,255,255,0.3);
}

.app-banner-visual {
    max-width: 300px;
    z-index: 2;
}

/* ===============
   12. SEO CONTENT & MARKETING
   =============== */
.seo-content-section {
    padding: 80px 0;
    background: var(--bg-page);
    border-top: 1px solid var(--border-light);
}

.seo-card-box {
    background: var(--bg-surface);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    padding: 48px;
    margin-bottom: 30px;
}

.seo-card-box h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 2px solid rgba(34, 197, 94, 0.3);
}

.seo-card-box h4 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: #ffffff;
    margin: 24px 0 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.seo-card-box h4::before {
    content: '';
    width: 4px;
    height: 20px;
    background: var(--brand-green);
    border-radius: 2px;
    flex-shrink: 0;
}

.seo-card-box p {
    font-size: 0.95rem;
    color: var(--text-main);
    line-height: 1.8;
    margin-bottom: 16px;
}

.seo-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin: 28px 0;
}

.seo-info-item {
    background: var(--bg-surface-alt);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: 20px;
    transition: var(--transition-fast);
}

.seo-info-item:hover {
    border-color: var(--brand-green);
    box-shadow: var(--shadow-subtle);
}

.seo-info-item strong {
    display: block;
    font-size: 0.85rem;
    color: var(--brand-green-hover);
    margin-bottom: 6px;
}

.seo-info-item p {
    font-size: 0.95rem;
    color: #ffffff;
    font-weight: 600;
    margin: 0;
}

/* ===============
   RESPONSIVE
   =============== */

/* --- Tablet (1024px) --- */
@media (max-width: 1024px) {
    .browse-grid { grid-template-columns: repeat(3, 1fr); }
    .games-cards-grid { grid-template-columns: repeat(2, 1fr); }
    .team-grid { grid-template-columns: repeat(3, 1fr); }
    .how-steps-wrap { flex-wrap: wrap; }
    .how-steps-wrap::before { display: none; }
    .how-step-item { flex: 1 1 30%; margin-bottom: 24px; }
    .seo-info-grid { grid-template-columns: repeat(2, 1fr); }
    .credibility-grid { gap: 40px; }
    .promo-action-card { padding: 34px 30px; }
    .app-banner-card { padding: 40px 36px; }
    .app-banner-content h2 { font-size: 1.9rem; }
    .hero-title { font-size: 3rem; }
    .section-title { font-size: 1.9rem; }
    .credibility-title { font-size: 2rem; }
}

/* --- Mobile landscape / small tablet (768px) --- */
@media (max-width: 768px) {
    /* Hero */
    .hero { padding: 40px 0 60px; }
    .hero-title { font-size: 2.2rem; letter-spacing: -1px; }
    .hero-desc { font-size: 0.95rem; margin-bottom: 28px; }
    .hero-tag { font-size: 0.72rem; padding: 6px 14px; margin-bottom: 18px; }
    .hero-cta-row { flex-direction: column; gap: 10px; }
    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        justify-content: center;
        padding: 13px 24px;
        font-size: 0.92rem;
    }
    .hero-filter-bar {
        border-radius: var(--radius-lg);
        flex-direction: column;
        align-items: stretch;
        padding: 16px;
        margin-bottom: 30px;
    }
    .filter-item {
        border-right: none;
        border-bottom: 1px solid var(--border-light);
        padding: 10px 0;
    }
    .filter-item:last-of-type { border-bottom: none; }
    .btn-filter-search {
        width: 100%;
        border-radius: var(--radius-pill);
        height: 44px;
        margin-top: 8px;
    }
    .hero-badge-float-right { display: none; }
    .hero-badge-float {
        position: relative;
        bottom: auto;
        left: auto;
        margin: 20px auto 0;
        max-width: 320px;
    }
    .hero-visual-wrap { max-width: 100%; }
    .hero-main-img { max-height: 240px; }

    /* Section headers */
    .section-title { font-size: 1.65rem; }
    .section-subtitle { font-size: 0.9rem; }
    .section-header-center { margin-bottom: 30px; }

    /* Browse */
    .browse-section { padding: 50px 0; }
    .browse-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .browse-card { padding: 22px 12px 18px; }
    .browse-icon-wrap { width: 58px; height: 58px; font-size: 1.8rem; margin-bottom: 12px; }
    .browse-title { font-size: 0.92rem; }
    .browse-count { font-size: 0.72rem; }

    /* Dual Promo */
    .dual-promo-section { padding: 15px 0 50px; }
    .dual-promo-grid { grid-template-columns: 1fr; gap: 16px; }
    .promo-action-card { padding: 28px 22px; }
    .promo-action-card h3 { font-size: 1.3rem; }
    .promo-action-card p { max-width: 100%; font-size: 0.9rem; }
    .promo-floating-circle { width: 48px; height: 48px; font-size: 1.2rem; bottom: 20px; right: 20px; }

    /* Credibility */
    .credibility-section { padding: 55px 0; }
    .credibility-grid { grid-template-columns: 1fr; gap: 30px; }
    .credibility-title { font-size: 1.75rem; }
    .credibility-desc { font-size: 0.92rem; }
    .credibility-media-collage { order: -1; }
    .media-item-large { height: 180px; }
    .media-item-small { height: 140px; }
    .credibility-experience-badge { width: 75px; height: 75px; }
    .credibility-experience-badge strong { font-size: 1.15rem; }
    .credibility-rating-row { flex-direction: column; text-align: center; gap: 12px; }
    .rating-avatars { justify-content: center; }

    /* Games */
    .popular-games-section { padding: 55px 0; }
    .games-cards-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .game-card-thumb-wrap { height: 155px; }
    .game-card-body { padding: 14px; }
    .game-card-title { font-size: 0.95rem; }
    .game-card-footer { padding-top: 10px; }
    .game-card-bet { font-size: 0.78rem; }
    .btn-play-mini { font-size: 0.76rem; padding: 6px 12px; }
    .filter-pills-nav { gap: 8px; margin-bottom: 28px; }
    .filter-pill { padding: 7px 16px; font-size: 0.82rem; }

    /* How It Works */
    .how-it-works-section { padding: 55px 0; }
    .how-steps-wrap { flex-wrap: wrap; gap: 8px; margin-top: 36px; }
    .how-step-item { flex: 1 1 45%; margin-bottom: 20px; }
    .step-icon-circle { width: 56px; height: 56px; font-size: 1.3rem; margin-bottom: 12px; }
    .step-title { font-size: 0.92rem; }
    .step-desc { font-size: 0.8rem; max-width: 160px; }

    /* Testimonial */
    .testimonial-feature-section { padding: 20px 0 55px; }
    .testimonial-quote-box { padding: 30px 22px; }
    .quote-body-text { font-size: 1.05rem; line-height: 1.6; }
    .quote-mark-large { font-size: 5rem; }
    .quote-author-img { width: 48px; height: 48px; }
    .quote-author-name { font-size: 0.95rem; }

    /* Team */
    .team-section { padding: 55px 0; }
    .team-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .team-photo-wrap { height: 145px; }
    .team-name { font-size: 0.9rem; }
    .team-role { font-size: 0.72rem; }

    /* Partners */
    .partners-section { padding: 50px 0; }
    .partners-orbit-wrap { gap: 12px; }
    .partner-logo-box { width: 120px; height: 52px; font-size: 0.7rem; }

    /* App Banner */
    .app-banner-section { padding: 20px 0 60px; }
    .app-banner-card {
        flex-direction: column;
        padding: 32px 22px;
        text-align: center;
    }
    .app-banner-content { max-width: 100%; }
    .app-banner-content h2 { font-size: 1.65rem; }
    .app-banner-content p { font-size: 0.9rem; }
    .app-store-btns { justify-content: center; }
    .app-banner-visual { margin-top: 24px; max-width: 200px; margin-left: auto; margin-right: auto; }

    /* SEO */
    .seo-content-section { padding: 55px 0; }
    .seo-card-box { padding: 28px 22px; }
    .seo-card-box h3 { font-size: 1.25rem; }
    .seo-card-box h4 { font-size: 1.02rem; }
    .seo-card-box p { font-size: 0.9rem; }
    .seo-info-grid { grid-template-columns: 1fr; gap: 12px; }
    .seo-info-item { padding: 16px; }

    /* Stories (if re-added) */
    .stories-grid { grid-template-columns: 1fr; }
}

/* --- Mobile portrait (480px) --- */
@media (max-width: 480px) {
    /* Hero */
    .hero { padding: 30px 0 45px; }
    .hero-title { font-size: 1.75rem; letter-spacing: -0.5px; line-height: 1.15; }
    .hero-desc { font-size: 0.88rem; line-height: 1.6; margin-bottom: 22px; }
    .hero-tag { font-size: 0.65rem; padding: 5px 12px; gap: 5px; }
    .hero-filter-bar { padding: 12px; margin-bottom: 24px; }
    .filter-item { font-size: 0.82rem; gap: 6px; }
    .filter-item select { font-size: 0.82rem; }
    .hero-badge-float { padding: 10px 14px; gap: 10px; }
    .hero-badge-icon { width: 34px; height: 34px; font-size: 0.9rem; }
    .hero-badge-text strong { font-size: 0.82rem; }
    .hero-badge-text span { font-size: 0.7rem; }
    .hero-main-img { max-height: 180px; }
    .btn-hero-primary,
    .btn-hero-secondary { padding: 12px 20px; font-size: 0.88rem; }

    /* Section headers */
    .section-title { font-size: 1.4rem; margin-bottom: 8px; }
    .section-subtitle { font-size: 0.84rem; }
    .section-badge { font-size: 0.7rem; padding: 4px 10px; }

    /* Browse */
    .browse-section { padding: 36px 0; }
    .browse-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .browse-card { padding: 18px 10px 14px; border-radius: var(--radius-md); }
    .browse-icon-wrap { width: 48px; height: 48px; font-size: 1.5rem; margin-bottom: 10px; }
    .browse-title { font-size: 0.84rem; }
    .browse-count { font-size: 0.68rem; }
    .browse-badge-popular { font-size: 0.6rem; padding: 2px 7px; top: 7px; right: 7px; }
    .btn-view-all-pill { font-size: 0.84rem; padding: 11px 24px; }

    /* Dual Promo */
    .dual-promo-section { padding: 10px 0 36px; }
    .promo-action-card { padding: 22px 18px; }
    .promo-action-card h3 { font-size: 1.12rem; line-height: 1.35; }
    .promo-action-card p { font-size: 0.84rem; margin-bottom: 20px; }
    .btn-promo-action { font-size: 0.82rem; padding: 10px 22px; }
    .promo-floating-circle { width: 42px; height: 42px; font-size: 1rem; bottom: 16px; right: 16px; }

    /* Credibility */
    .credibility-section { padding: 40px 0; }
    .credibility-title { font-size: 1.5rem; }
    .credibility-desc { font-size: 0.86rem; }
    .credibility-list-item { padding: 10px; gap: 12px; }
    .item-icon-circle { width: 38px; height: 38px; font-size: 1rem; }
    .item-text strong { font-size: 0.92rem; }
    .item-text p { font-size: 0.82rem; }
    .media-item-large { height: 150px; }
    .media-item-small { height: 110px; }
    .credibility-experience-badge { width: 65px; height: 65px; }
    .credibility-experience-badge strong { font-size: 1rem; }
    .credibility-experience-badge span { font-size: 0.58rem; }

    /* Games */
    .popular-games-section { padding: 40px 0; }
    .games-cards-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .game-card-thumb-wrap { height: 130px; }
    .game-card-body { padding: 12px; }
    .game-card-title { font-size: 0.86rem; }
    .game-card-provider { font-size: 0.72rem; margin-bottom: 10px; }
    .game-card-footer { padding-top: 8px; }
    .game-card-bet { font-size: 0.72rem; }
    .btn-play-mini { font-size: 0.7rem; padding: 5px 10px; }
    .game-card-fav { width: 28px; height: 28px; font-size: 0.75rem; top: 8px; right: 8px; }
    .game-card-rtp-badge { font-size: 0.68rem; padding: 3px 8px; bottom: 8px; left: 8px; }
    .filter-pills-nav { gap: 6px; margin-bottom: 22px; }
    .filter-pill { padding: 6px 12px; font-size: 0.76rem; }

    /* How It Works */
    .how-it-works-section { padding: 40px 0; }
    .how-steps-wrap { flex-direction: column; gap: 4px; margin-top: 24px; }
    .how-step-item {
        flex: 1 1 100%;
        flex-direction: row;
        text-align: left;
        gap: 16px;
        padding: 14px;
        background: var(--bg-surface);
        border: 1px solid var(--border-light);
        border-radius: var(--radius-md);
        margin-bottom: 10px;
    }
    .step-num-label { display: none; }
    .step-icon-circle { width: 48px; height: 48px; font-size: 1.1rem; margin-bottom: 0; flex-shrink: 0; }
    .step-title { font-size: 0.88rem; margin-bottom: 3px; }
    .step-desc { font-size: 0.78rem; max-width: 100%; }

    /* Testimonial */
    .testimonial-feature-section { padding: 10px 0 40px; }
    .testimonial-quote-box { padding: 24px 18px; }
    .quote-body-text { font-size: 0.95rem; line-height: 1.55; margin-bottom: 22px; }
    .quote-mark-large { font-size: 4rem; }
    .quote-mark-top { top: 8px; left: 14px; }
    .quote-mark-bottom { bottom: -14px; right: 18px; }
    .quote-author-img { width: 42px; height: 42px; }
    .quote-author-name { font-size: 0.88rem; }
    .quote-author-title { font-size: 0.76rem; }

    /* Team */
    .team-section { padding: 40px 0; }
    .team-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .team-photo-wrap { height: 120px; margin-bottom: 10px; }
    .team-member-card { padding-bottom: 14px; }
    .team-name { font-size: 0.84rem; }
    .team-role { font-size: 0.68rem; }

    /* Partners — horizontal scroll on small screens */
    .partners-section { padding: 36px 0; }
    .partners-orbit-wrap {
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        justify-content: flex-start;
        gap: 10px;
        padding-bottom: 8px;
    }
    .partners-orbit-wrap::-webkit-scrollbar { display: none; }
    .partner-logo-box {
        flex-shrink: 0;
        width: 110px;
        height: 48px;
        font-size: 0.66rem;
    }

    /* App Banner */
    .app-banner-section { padding: 10px 0 45px; }
    .app-banner-card { padding: 26px 18px; border-radius: var(--radius-lg); }
    .app-banner-card::before { width: 250px; height: 250px; }
    .app-banner-content h2 { font-size: 1.4rem; margin-bottom: 10px; }
    .app-banner-content p { font-size: 0.84rem; margin-bottom: 20px; }
    .app-store-btns { flex-direction: column; gap: 10px; }
    .btn-store { justify-content: center; padding: 10px 18px; font-size: 0.84rem; }
    .app-banner-visual { max-width: 160px; }

    /* SEO */
    .seo-content-section { padding: 40px 0; }
    .seo-card-box { padding: 22px 16px; margin-bottom: 20px; }
    .seo-card-box h3 { font-size: 1.1rem; padding-bottom: 10px; margin-bottom: 14px; }
    .seo-card-box h4 { font-size: 0.94rem; margin: 18px 0 8px; }
    .seo-card-box p { font-size: 0.86rem; line-height: 1.7; margin-bottom: 12px; }
    .seo-info-grid { margin: 18px 0; }
    .seo-info-item { padding: 14px; }
    .seo-info-item strong { font-size: 0.8rem; }
    .seo-info-item p { font-size: 0.88rem; }
}

/* --- Ultra small (360px) — narrow phones --- */
@media (max-width: 360px) {
    .hero-title { font-size: 1.5rem; }
    .hero-desc { font-size: 0.82rem; }
    .browse-grid { gap: 8px; }
    .browse-card { padding: 14px 8px 12px; }
    .browse-icon-wrap { width: 42px; height: 42px; font-size: 1.3rem; }
    .browse-title { font-size: 0.78rem; }
    .games-cards-grid { gap: 8px; }
    .game-card-thumb-wrap { height: 110px; }
    .game-card-body { padding: 10px; }
    .game-card-title { font-size: 0.8rem; }
    .credibility-title { font-size: 1.3rem; }
    .app-banner-content h2 { font-size: 1.25rem; }
    .testimonial-quote-box { padding: 20px 14px; }
    .quote-body-text { font-size: 0.88rem; }
    .seo-card-box { padding: 18px 14px; }
}
