/* 4rabetnow - Premium Casino & Betting Site Styles */
/* Complete vanilla CSS replacing Tailwind */

/* ========================================
   CSS Reset & Base Styles
   ======================================== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700;800;900&display=swap');

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    /* Brand Colors */
    --brand-primary: #0e1d2f;
    --brand-secondary: #00eaff;
    --brand-accent: #ffcc00;

    /* Slate Colors */
    --slate-50: #f8fafc;
    --slate-100: #f1f5f9;
    --slate-200: #e2e8f0;
    --slate-300: #cbd5e1;
    --slate-400: #94a3b8;
    --slate-500: #64748b;
    --slate-600: #475569;
    --slate-700: #334155;
    --slate-800: #1e293b;
    --slate-900: #0f172a;

    /* Other Colors */
    --white: #ffffff;
    --red-500: #ef4444;

    /* Spacing */
    --container-max: 1280px;
    --container-padding: 1rem;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--slate-50);
    color: var(--slate-900);
    line-height: 1.5;
}

/* ========================================
   Utility Classes
   ======================================== */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
}

/* Text Colors */
.text-white {
    color: var(--white);
}

.text-slate-300 {
    color: var(--slate-300);
}

.text-slate-400 {
    color: var(--slate-400);
}

.text-slate-500 {
    color: var(--slate-500);
}

.text-slate-600 {
    color: var(--slate-600);
}

.text-slate-700 {
    color: var(--slate-700);
}

.text-slate-800 {
    color: var(--slate-800);
}

.text-brand-secondary {
    color: var(--brand-secondary);
}

.text-brand-accent {
    color: var(--brand-accent);
}

.text-brand-primary {
    color: var(--brand-primary);
}

/* Background Colors */
.bg-white {
    background-color: var(--white);
}

.bg-slate-50 {
    background-color: var(--slate-50);
}

.bg-slate-100 {
    background-color: var(--slate-100);
}

.bg-slate-800 {
    background-color: var(--slate-800);
}

.bg-slate-900 {
    background-color: var(--slate-900);
}

.bg-brand-primary {
    background-color: var(--brand-primary);
}

.bg-brand-secondary {
    background-color: var(--brand-secondary);
}

.bg-brand-accent {
    background-color: var(--brand-accent);
}

/* ========================================
   Header / Navigation
   ======================================== */
.sticky-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 50;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.sticky-nav.scrolled {
    background: rgba(14, 29, 47, 0.9);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 0.5rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-container a {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 60px;
    max-width: 180px;
    object-fit: contain;
    border-radius: 8px;
}

.nav-links {
    display: none;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }
}

.nav-links a {
    color: var(--white);
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--brand-secondary);
}

.nav-buttons {
    display: flex;
    gap: 0.75rem;
}

.btn-login {
    background: transparent;
    border: 1px solid var(--brand-secondary);
    color: var(--brand-secondary);
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-login:hover {
    background: var(--brand-secondary);
    color: var(--brand-primary);
}

.btn-register {
    background: var(--brand-secondary);
    color: var(--brand-primary);
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    font-weight: 700;
    border: none;
    box-shadow: 0 4px 6px rgba(0, 234, 255, 0.3);
    cursor: pointer;
    transition: filter 0.2s;
}

.btn-register:hover {
    filter: brightness(1.1);
}

/* ========================================
   Hero Section
   ======================================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 4rem;
    background-color: var(--brand-primary);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 10;
    color: var(--white);
    max-width: 42rem;
}

.hero-badge {
    background: var(--brand-accent);
    color: var(--brand-primary);
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 4.5rem;
    }
}

.hero-title .highlight {
    color: var(--brand-secondary);
    text-decoration: underline;
}

.hero-description {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: var(--slate-300);
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

.btn-primary {
    background: var(--brand-accent);
    color: var(--brand-primary);
    padding: 1rem 2rem;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 1.125rem;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 0 15px rgba(255, 204, 0, 0.5);
    transition: transform 0.2s;
    display: inline-block;
}

.btn-primary:hover {
    transform: scale(1.05);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 1.125rem;
    text-align: center;
    text-decoration: none;
    transition: background 0.2s;
    display: inline-block;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
}

/* Animation */
.fade-in {
    animation: fadeIn 1s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   Overview Section
   ======================================== */
.overview-section {
    padding: 3rem 0;
    background: var(--slate-100);
    border-bottom: 1px solid var(--slate-200);
}

.overview-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.overview-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: inherit;
}

.overview-link:hover .overview-icon {
    background: var(--brand-secondary);
}

.overview-icon {
    width: 3.5rem;
    height: 3.5rem;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
    transition: background 0.2s;
}

.overview-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ========================================
   History / Trust Section
   ======================================== */
.history-section {
    padding: 5rem 0;
    background: var(--white);
}

.history-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .history-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.history-grid.reverse .history-image {
    order: 2;
}

@media (min-width: 768px) {
    .history-grid.reverse .history-image {
        order: 1;
    }

    .history-grid.reverse .history-content {
        order: 2;
    }
}

.history-image img {
    width: 100%;
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.history-image.border-bottom img {
    border-bottom: 4px solid var(--brand-accent);
}

.history-image.border-top img {
    border-top: 4px solid var(--brand-secondary);
}

.section-title {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.section-title.italic {
    font-style: italic;
}

.section-text {
    color: var(--slate-600);
    margin-bottom: 1rem;
    line-height: 1.75;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.feature-list .icon {
    font-size: 1.25rem;
    margin-right: 0.5rem;
    color: var(--brand-accent);
}

.feature-list strong {
    margin-right: 0.25rem;
}

/* ========================================
   Games Section
   ======================================== */
.games-section {
    padding: 5rem 0;
    background: var(--slate-900);
    color: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--slate-400);
    max-width: 42rem;
    margin: 0 auto;
}

.games-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .games-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .games-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.game-card {
    background: var(--slate-800);
    padding: 1rem;
    border-radius: 0.75rem;
    border: 1px solid var(--slate-700);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.game-card:hover {
    border-color: var(--brand-secondary);
    box-shadow: 0 0 20px rgba(255, 204, 0, 0.4);
}

.game-card img {
    width: 100%;
    height: 10rem;
    object-fit: cover;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    transition: transform 0.2s;
}

.game-card:hover img {
    transform: scale(1.05);
}

.game-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.game-card p {
    font-size: 0.875rem;
    color: var(--slate-400);
    margin-bottom: 1rem;
}

.game-btn {
    width: 100%;
    padding: 0.5rem;
    background: var(--brand-secondary);
    color: var(--brand-primary);
    font-weight: 700;
    border: none;
    border-radius: 0.375rem;
    cursor: pointer;
    transition: background 0.2s;
}

.game-btn:hover {
    background: var(--white);
}

/* ========================================
   Bonus Section
   ======================================== */
.bonus-section {
    padding: 5rem 0;
    background: var(--brand-secondary);
    color: var(--brand-primary);
    overflow: hidden;
}

.bonus-container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 768px) {
    .bonus-container {
        flex-direction: row;
    }
}

.bonus-content {
    flex: 1;
    position: relative;
    z-index: 10;
}

.bonus-title {
    font-size: 3rem;
    font-weight: 900;
    font-style: italic;
    text-transform: uppercase;
    letter-spacing: -0.05em;
    margin-bottom: 1.5rem;
}

.bonus-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 1.5rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    border-left: 8px solid var(--brand-accent);
}

.bonus-card h3 {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--brand-primary);
}

.bonus-card .description {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    color: var(--slate-700);
    font-weight: 500;
}

.bonus-features {
    list-style: none;
    margin-bottom: 2rem;
}

.bonus-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
    color: var(--slate-800);
    font-weight: 700;
}

.bonus-cta {
    width: 100%;
    padding: 1.25rem 2.5rem;
    background: var(--brand-primary);
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    border: none;
    border-radius: 9999px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: transform 0.2s;
}

.bonus-cta:hover {
    transform: scale(1.05);
}

.bonus-image {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
}

.bonus-image img {
    max-width: 28rem;
    width: 100%;
    border-radius: 50%;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    border: 12px solid rgba(255, 255, 255, 0.5);
    transform: rotate(12deg);
}

.rupee-badge {
    position: absolute;
    top: 2.5rem;
    right: 2.5rem;
    background: var(--brand-accent);
    color: var(--brand-primary);
    padding: 1.5rem;
    border-radius: 50%;
    font-weight: 900;
    font-size: 1.875rem;
    animation: bounce 1s infinite;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(-25%);
        animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
    }

    50% {
        transform: translateY(0);
        animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
    }
}

/* ========================================
   Mobile App Section
   ======================================== */
.mobile-section {
    padding: 5rem 0;
    background: var(--white);
}

.mobile-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 768px) {
    .mobile-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.phone-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
}

.phone-frame {
    position: relative;
    width: 100%;
    max-width: 320px;
    border-radius: 3rem;
    overflow: hidden;
    border: 12px solid var(--slate-900);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    aspect-ratio: 9/16;
}

.phone-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.phone-label {
    position: absolute;
    bottom: 2.5rem;
    left: 0;
    right: 0;
    text-align: center;
}

.phone-label span {
    background: var(--brand-secondary);
    color: var(--brand-primary);
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 1.125rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    display: inline-block;
}

.phone-decoration {
    position: absolute;
    z-index: -1;
    background: rgba(0, 234, 255, 0.2);
    width: 16rem;
    height: 16rem;
    border-radius: 50%;
    filter: blur(48px);
    top: -2.5rem;
    left: -2.5rem;
}

.mobile-content h2 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.mobile-content p {
    font-size: 1.125rem;
    color: var(--slate-600);
    margin-bottom: 2rem;
}

.download-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 640px) {
    .download-buttons {
        flex-direction: row;
    }
}

.download-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: var(--slate-900);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
}

.download-btn:hover {
    background: var(--brand-primary);
}

.download-btn .icon {
    font-size: 1.875rem;
    transition: transform 0.2s;
}

.download-btn:hover .icon {
    transform: scale(1.1);
}

.download-btn .text {
    text-align: left;
}

.download-btn .text p:first-child {
    font-size: 0.625rem;
    text-transform: uppercase;
    opacity: 0.7;
    margin-bottom: 0.125rem;
}

.download-btn .text p:last-child {
    font-size: 1.125rem;
    font-weight: 700;
}

/* ========================================
   Winners Section
   ======================================== */
.winners-section {
    padding: 5rem 0;
    background: var(--slate-900);
    color: var(--white);
}

.winners-section .section-title {
    text-align: center;
    margin-bottom: 3rem;
    text-decoration: underline;
    text-decoration-color: var(--brand-secondary);
}

.winners-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .winners-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .winners-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.winner-card {
    background: var(--slate-800);
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    border: 1px solid var(--slate-700);
}

.winner-card img {
    width: 100%;
    height: 14rem;
    object-fit: cover;
}

.winner-card .card-content {
    padding: 1.5rem;
}

.winner-card .card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.winner-card .badge {
    font-weight: 700;
}

.winner-card .badge.gold {
    color: var(--brand-accent);
}

.winner-card .badge.cyan {
    color: var(--brand-secondary);
}

.winner-card .badge.red {
    color: var(--red-500);
}

.winner-card .time {
    font-size: 0.75rem;
    color: var(--slate-500);
}

.winner-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.winner-card p {
    font-size: 0.875rem;
    color: var(--slate-400);
}

.winners-cta {
    text-align: center;
    margin-top: 3rem;
}

.btn-cyan {
    background: var(--brand-secondary);
    color: var(--brand-primary);
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-cyan:hover {
    background: var(--white);
}

/* ========================================
   Registration Section
   ======================================== */
.register-section {
    padding: 5rem 0;
    background: var(--brand-primary);
    color: var(--white);
}

.register-grid {
    display: grid;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .register-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.register-content h2 {
    font-size: 2.25rem;
    font-weight: 700;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.register-content>p {
    color: var(--slate-400);
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.step {
    display: flex;
    gap: 1rem;
    text-align: left;
}

.step-number {
    width: 3rem;
    height: 3rem;
    background: var(--brand-secondary);
    color: var(--brand-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 900;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.step-content h4 {
    font-weight: 700;
    font-size: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.25rem;
}

.step-content p {
    color: var(--slate-400);
}

.register-image {
    position: relative;
    display: flex;
    justify-content: center;
}

.register-image img {
    width: 100%;
    border-radius: 1.5rem;
    box-shadow: 0 0 80px rgba(0, 234, 255, 0.3);
    border: 2px solid rgba(0, 234, 255, 0.3);
}

.biggest-win-badge {
    position: absolute;
    top: -1.5rem;
    left: -1.5rem;
    background: var(--brand-accent);
    color: var(--brand-primary);
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    font-weight: 700;
    transform: rotate(-3deg);
}

.biggest-win-badge .amount {
    font-size: 1.875rem;
    font-weight: 900;
    display: block;
}

/* ========================================
   Payments Section
   ======================================== */
.payments-section {
    padding: 5rem 0;
    background: var(--white);
    text-align: center;
}

.payments-section h2 {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.payments-section>p {
    color: var(--slate-500);
    margin-bottom: 3rem;
}

.payment-icons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2.5rem;
    align-items: center;
}

.payment-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0.6;
    filter: grayscale(1);
    transition: all 0.2s;
}

.payment-icon:hover {
    opacity: 1;
    filter: grayscale(0);
}

.payment-icon img {
    width: 4rem;
}

.payment-icon p {
    font-size: 0.625rem;
    font-weight: 700;
    margin-top: 0.5rem;
}

.payment-tip {
    margin-top: 3rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
    padding: 1rem;
    background: rgba(255, 204, 0, 0.1);
    border: 1px solid rgba(255, 204, 0, 0.2);
    border-radius: 0.75rem;
    color: var(--slate-700);
    font-weight: 500;
}

/* ========================================
   Security Section
   ======================================== */
.security-section {
    padding: 5rem 0;
    background: var(--slate-900);
    color: var(--white);
    overflow: hidden;
    position: relative;
}

.security-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    align-items: center;
    text-align: left;
}

@media (min-width: 768px) {
    .security-grid {
        flex-direction: row;
    }
}

.security-content {
    flex: 1;
}

.security-content h2 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.security-content>p {
    color: var(--slate-400);
    margin-bottom: 1.5rem;
    line-height: 1.75;
}

.security-badges {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.security-badge {
    text-align: center;
    background: var(--slate-800);
    padding: 1rem;
    border-radius: 0.75rem;
}

.security-badge .icon {
    font-size: 1.875rem;
    margin-bottom: 0.25rem;
}

.security-badge p {
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -0.05em;
}

.security-image {
    flex: 1;
}

.security-image img {
    width: 100%;
    border-radius: 1.5rem;
    border: 1px solid rgba(0, 234, 255, 0.2);
    box-shadow: 0 0 50px rgba(0, 234, 255, 0.1);
}

/* ========================================
   Reviews Section
   ======================================== */
.reviews-section {
    padding: 5rem 0;
    background: var(--white);
}

.reviews-section .section-title {
    text-align: center;
    font-style: italic;
    text-decoration: underline;
    text-decoration-color: var(--brand-accent);
    margin-bottom: 3rem;
}

.reviews-carousel {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 1.5rem;
    padding-bottom: 2.5rem;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.reviews-carousel::-webkit-scrollbar {
    display: none;
}

.review-card {
    min-width: 320px;
    scroll-snap-align: center;
    padding: 2rem;
    border-radius: 1.5rem;
    color: var(--white);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

@media (min-width: 768px) {
    .review-card {
        min-width: 450px;
    }
}

.review-card.dark {
    background: var(--brand-primary);
}

.review-card.darker {
    background: var(--slate-900);
}

.review-card .watermark {
    position: absolute;
    right: -1rem;
    top: -1rem;
    font-size: 6rem;
    color: rgba(255, 255, 255, 0.05);
    font-weight: 900;
}

.review-card .stars {
    font-size: 1.5rem;
    color: var(--brand-accent);
    margin-bottom: 1rem;
}

.review-card .text {
    color: var(--slate-300);
    margin-bottom: 2rem;
    font-size: 1.125rem;
    position: relative;
    z-index: 10;
    font-style: italic;
}

.review-card .author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.review-card .avatar {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
}

.review-card .avatar.cyan {
    background: var(--brand-secondary);
    color: var(--brand-primary);
}

.review-card .avatar.gold {
    background: var(--brand-accent);
    color: var(--brand-primary);
}

.review-card .avatar.white {
    background: var(--white);
    color: var(--brand-primary);
}

.review-card .author-info .name {
    font-weight: 700;
    font-size: 1.125rem;
}

.review-card .author-info .title {
    font-size: 0.75rem;
    color: var(--brand-secondary);
    text-transform: uppercase;
}

/* ========================================
   FAQ Section
   ======================================== */
.faq-section {
    padding: 5rem 0;
    background: var(--slate-50);
}

.faq-section .container {
    max-width: 56rem;
}

.faq-section .section-title {
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 3rem;
}

.faq-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .faq-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.faq-item {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 1rem;
    border: 1px solid var(--slate-200);
    cursor: pointer;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: border-color 0.2s;
}

.faq-item:hover {
    border-color: var(--brand-secondary);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.faq-question .icon {
    color: var(--brand-secondary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    color: var(--slate-600);
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

/* ========================================
   Footer
   ======================================== */
.footer {
    background: var(--brand-primary);
    color: var(--slate-500);
    padding: 4rem 0;
    border-top: 1px solid var(--slate-800);
}

.footer-grid {
    display: grid;
    gap: 3rem;
    margin-bottom: 3rem;
    text-align: left;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

.footer-brand .logo {
    height: 3.5rem;
    margin-bottom: 1.5rem;
    opacity: 1;
}

.footer-logo {
    height: 100px;
    max-width: 240px;
    object-fit: contain;
    margin-bottom: 1.5rem;
}

.footer-brand p {
    max-width: 28rem;
    margin-bottom: 2rem;
    line-height: 1.75;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links span {
    width: 2.5rem;
    height: 2.5rem;
    background: var(--slate-800);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
}

.social-links span:hover {
    background: var(--brand-secondary);
    color: var(--brand-primary);
}

.footer-links h5 {
    color: var(--white);
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.875rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--slate-500);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--brand-secondary);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--slate-800);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.75rem;
    margin-bottom: 1rem;
}

.footer-badges {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    opacity: 0.3;
}

.footer-badges span {
    font-weight: 700;
    border: 1px solid var(--slate-500);
    padding: 0.125rem 0.25rem;
}

/* ========================================
   Responsive Utilities
   ======================================== */
@media (max-width: 767px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .bonus-title {
        font-size: 2rem;
    }
}