/* ===== CSS Variables ===== */
:root {
    --bg-primary: #0a0a0a;
    --bg-secondary: #111111;
    --bg-card: #161616;
    --bg-card-hover: #1c1c1c;
    --bg-border: #2a2a2a;
    --bg-border-light: #333333;

    --accent: #ccff00;
    --accent-dim: rgba(204, 255, 0, 0.15);
    --accent-glow: rgba(204, 255, 0, 0.4);

    --text-primary: #ffffff;
    --text-secondary: #a0a0a0;
    --text-muted: #666666;

    --font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: "Horizon", "Inter", sans-serif;

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== Fonts ===== */
@font-face {
    font-family: "Horizon";
    src: url("Fonts/Horizon.otf") format("opentype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* ===== Reset & Base ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* Global grain/noise overlay */
body::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 9999;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    opacity: 0.08;
    mix-blend-mode: soft-light;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-accent {
    color: var(--accent);
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 10px;
    transition: var(--transition);
    white-space: nowrap;
    letter-spacing: 0.3px;
}

.btn-primary {
    background: linear-gradient(135deg, #ccff00 0%, #a8e000 100%);
    color: #000000;
    border: none;
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 32px var(--accent-glow);
    filter: brightness(1.05);
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.25);
    color: var(--text-primary);
}

.btn-small {
    padding: 10px 24px;
    font-size: 12px;
}

.btn-large {
    padding: 16px 40px;
    font-size: 15px;
}

/* ===== Trust Bar ===== */
.trust-bar {
    background-color: var(--accent);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    overflow: hidden;
    margin-bottom: 16px;
}

.trust-track {
    display: flex;
    width: max-content;
    animation: trust-scroll 25s linear infinite;
}

.trust-content {
    font-family: var(--font-display);
    display: flex;
    align-items: center;
    gap: 32px;
    padding-right: 32px;
    font-size: 13px;
    font-weight: 800;
    color: var(--bg-primary);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    white-space: nowrap;
}

.trust-sep {
    color: var(--bg-primary);
    font-size: 8px;
    opacity: 0.4;
}

.trust-num {
    color: var(--bg-primary);
    opacity: 0.7;
}

@keyframes trust-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* ===== Navigation ===== */
.navbar {
    position: relative;
    z-index: 100;
    display: flex;
    justify-content: center;
    padding: 20px 32px 0;
    background: transparent;
    border-bottom: none;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    background: transparent;
    border: none;
    padding: 0;
    height: auto;
    gap: 32px;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 0;
}

.logo img {
    height: 48px;
    width: auto;
    object-fit: contain;
    display: block;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 32px;
    flex: 1;
    justify-content: flex-start;
}

.nav-menu a {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
    transition: var(--transition);
    white-space: nowrap;
    opacity: 0.9;
}

.nav-menu a:hover {
    color: var(--accent);
    opacity: 1;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

/* Language Dropdown */
.lang-dropdown {
    position: relative;
}

.lang-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.lang-dropdown-toggle:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
}

.lang-dropdown-toggle .lang-flag-img {
    width: 20px;
    height: 15px;
    border-radius: 2px;
    object-fit: cover;
    display: block;
}

.lang-dropdown-toggle .lang-chevron {
    font-size: 8px;
    color: rgba(255, 255, 255, 0.4);
    transition: transform 0.2s ease;
}

.lang-dropdown.active .lang-chevron {
    transform: rotate(180deg);
}

.lang-dropdown-menu {
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    min-width: 160px;
    background: #141414;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 6px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-4px);
    transition: all 0.2s ease;
    z-index: 100;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

.lang-dropdown.active .lang-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.15s ease;
    cursor: pointer;
}

.lang-option:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
}

.lang-option.active {
    background: rgba(204, 255, 0, 0.08);
    color: var(--accent);
}

.lang-option .lang-flag-img {
    width: 20px;
    height: 15px;
    border-radius: 2px;
    object-fit: cover;
    display: block;
}

.btn-nav-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 10px;
    transition: var(--transition);
    white-space: nowrap;
    background: rgba(255, 255, 255, 0.08);
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    letter-spacing: 0.3px;
}

.btn-nav-ghost:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.25);
    color: var(--text-primary);
}

.btn-nav-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 10px;
    transition: var(--transition);
    white-space: nowrap;
    background: var(--text-primary);
    color: #000000;
    border: 1px solid var(--text-primary);
    letter-spacing: 0.3px;
}

.btn-nav-primary:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #000000;
    transform: translateY(-1px);
}

.nav-coming-soon {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.coming-soon-badge {
    display: inline-block;
    padding: 2px 8px;
    background: linear-gradient(135deg, #ff8c00 0%, #ff5500 100%);
    color: #fff;
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 100px;
    white-space: nowrap;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--text-primary);
    transition: var(--transition);
}

/* ===== Hero ===== */
.hero {
    position: relative;
    margin: 24px 24px 0;
    border-radius: 24px;
    padding: 0 0 100px;
    overflow: hidden;
    text-align: center;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 1px;
    background: linear-gradient(135deg, #444444, #888888, #cccccc, #888888, #444444);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 10;
}

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

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('/landing/herobackground.png');
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(10,10,10,0.35) 0%, rgba(10,10,10,0.55) 100%);
    z-index: 1;
}

.hero-glow {
    display: none;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 600;
    color: #ffffff;
    margin-top: 48px;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
}

.badge-stars {
    color: #ffd700;
    font-size: 14px;
    letter-spacing: 2px;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(42px, 8.5vw, 84px);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -4px;
    margin-bottom: 20px;
    text-transform: uppercase;
    display: inline-block;
    position: relative;
}

.hero-line {
    position: relative;
    display: inline-block;
}

.hero-glove {
    position: absolute;
    left: 0;
    top: 100%;
    height: 1.5em;
    width: auto;
    transform: translate(-58%, -78%);
    pointer-events: none;
    user-select: none;
}

.hero-subtitle {
    font-size: clamp(14px, 1.8vw, 18px);
    color: #ffffff;
    max-width: 500px;
    margin: 0 auto 32px;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

/* Hero Phones */
.hero-leagues {
    margin-top: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.leagues-label {
    font-size: 13px;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    white-space: nowrap;
}

.leagues-logos {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.leagues-logos img {
    height: 40px;
    width: auto;
    max-width: 100px;
    object-fit: contain;
    opacity: 0.85;
    transition: var(--transition);
}

.leagues-logos img:hover {
    opacity: 1;
    transform: scale(1.1);
}

.hero-challenge-banner {
    margin-top: 32px;
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    line-height: 0;
}

.hero-challenge-banner img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* ===== Marquee Bar ===== */
.marquee-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 16px 0;
    z-index: 10;
    border-bottom-left-radius: 24px;
    border-bottom-right-radius: 24px;
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marquee-scroll 20s linear infinite;
}

.marquee-content {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 0 20px;
    white-space: nowrap;
}

.marquee-content span {
    font-family: "Horizon", "Inter", sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.marquee-sep {
    color: var(--accent) !important;
    font-size: 10px !important;
}

@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* ===== App Showcase ===== */
.app-showcase {
    padding: 80px 0;
}

/* Phone Mockup */
/* Picks Screen */
/* Sportsbook Screen */
/* Casino Screen */
/* Arcade Screen */
/* Predictions Screen */
/* Showcase Info */
/* ===== Offer Banner ===== */
.platform-preview-section {
    padding: 40px 0 60px;
    background: var(--bg-primary);
}

.platform-preview-section .container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.platform-preview-wrap {
    position: relative;
    width: 100%;
    max-width: 1400px;
}

.platform-preview-img {
    width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 32px 100px rgba(0, 0, 0, 0.6);
    display: block;
}

.platform-preview-tag {
    position: absolute;
    top: 48px;
    left: 32px;
    font-family: var(--font-display);
    font-size: clamp(14px, 1.8vw, 22px);
    font-weight: 700;
    color: var(--text-primary);
    background: rgba(10, 10, 10, 0.75);
    backdrop-filter: blur(8px);
    padding: 10px 20px;
    border-radius: 12px;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.6);
    pointer-events: none;
    z-index: 2;
}

.platform-preview-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    width: 100%;
    max-width: 1400px;
    margin-top: 32px;
}

.platform-preview-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 24px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    transition: var(--transition);
}

.platform-preview-card:hover {
    background: var(--bg-card-hover);
    transform: translateY(-3px);
}

.ppc-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(204, 255, 0, 0.1);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ppc-icon svg {
    width: 20px;
    height: 20px;
}

.ppc-content h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 6px;
    line-height: 1.3;
}

.ppc-content p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 1024px) {
    .platform-preview-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .platform-preview-cards {
        grid-template-columns: 1fr;
    }

    .platform-preview-tag {
        top: 16px;
        right: 16px;
        font-size: 12px;
        padding: 6px 12px;
    }
}

.features-section {
    padding: 100px 0;
}

.features-header {
    text-align: center;
    margin-bottom: 64px;
}

.features-header h2 {
    font-family: var(--font-display);
    font-size: clamp(36px, 6vw, 60px);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 16px;
}

.features-header p {
    font-size: 16px;
    color: var(--text-secondary);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.6;
}

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

.feature-card {
    position: relative;
    padding: 32px;
    background:
        radial-gradient(
            ellipse 120% 80% at 50% 0%,
            rgba(204, 255, 0, 0.08) 0%,
            transparent 55%
        ),
        radial-gradient(
            ellipse 90% 60% at 80% 100%,
            rgba(204, 255, 0, 0.03) 0%,
            transparent 50%
        ),
        linear-gradient(
            180deg,
            rgba(28, 28, 32, 0.9) 0%,
            rgba(14, 14, 16, 0.95) 100%
        );
    border: none;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    opacity: 0.04;
    pointer-events: none;
    mix-blend-mode: overlay;
    border-radius: 20px;
}

.feature-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 15%;
    right: 15%;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.15),
        transparent
    );
    pointer-events: none;
}

.feature-card:hover {
    border-color: rgba(204, 255, 0, 0.25);
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(204, 255, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    transform: translateY(-6px);
}

.feature-card-glow {
    position: absolute;
    top: -30%;
    left: 50%;
    transform: translateX(-50%);
    width: 280px;
    height: 280px;
    background: radial-gradient(
        circle,
        rgba(204, 255, 0, 0.18) 0%,
        rgba(204, 255, 0, 0.05) 40%,
        transparent 70%
    );
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.5s ease;
    filter: blur(40px);
}

.feature-card:hover .feature-card-glow {
    opacity: 1;
}

.feature-icon-wrap {
    position: relative;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(
        135deg,
        rgba(204, 255, 0, 0.12) 0%,
        rgba(204, 255, 0, 0.03) 100%
    );
    border: 1px solid rgba(204, 255, 0, 0.2);
    border-radius: 14px;
    color: var(--accent);
    margin-bottom: 24px;
    box-shadow:
        0 4px 20px rgba(204, 255, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.feature-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
    position: relative;
    z-index: 1;
}

.feature-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.65;
    position: relative;
    z-index: 1;
}

/* How It Works grid */
.features-grid.how-it-works {
    grid-template-columns: 1fr 48px 1fr 48px 1fr;
    gap: 0;
    align-items: stretch;
}

.feature-visual {
    position: relative;
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    z-index: 1;
}

.feature-content {
    position: relative;
    z-index: 1;
}

.feature-content h3 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.feature-content p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.65;
}

/* ===== UFC Betting Card ===== */
.ufc-bet-card {
    width: 100%;
    max-width: 300px;
    background: linear-gradient(
        180deg,
        rgba(20, 20, 24, 0.95) 0%,
        rgba(10, 10, 12, 0.98) 100%
    );
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 16px;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.ufc-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.ufc-logo-img {
    height: 28px;
    width: auto;
    object-fit: contain;
    display: block;
}

.ufc-live {
    font-size: 10px;
    font-weight: 800;
    color: #ef4444;
    background: rgba(239, 68, 68, 0.12);
    padding: 3px 8px;
    border-radius: 100px;
    letter-spacing: 0.5px;
    animation: ufc-pulse 2s ease-in-out infinite;
}

@keyframes ufc-pulse {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.ufc-matchup {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 12px;
}

.ufc-fighter-side {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    position: relative;
}

.ufc-halo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140%;
    height: 90%;
    border-radius: 50%;
    filter: blur(28px);
    opacity: 0.5;
    pointer-events: none;
    z-index: 0;
}

.red-side .ufc-halo {
    background: radial-gradient(
        circle,
        rgba(239, 68, 68, 0.9) 0%,
        transparent 70%
    );
}

.blue-side .ufc-halo {
    background: radial-gradient(
        circle,
        rgba(59, 130, 246, 0.9) 0%,
        transparent 70%
    );
}

.ufc-fighter-img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1.1;
    object-fit: cover;
    display: block;
    border-radius: 10px;
}

.ufc-name {
    position: relative;
    z-index: 1;
    font-size: 13px;
    font-weight: 700;
    color: var(--text-primary);
}

.ufc-odds {
    position: relative;
    z-index: 1;
    font-size: 13px;
    font-weight: 800;
    color: var(--accent);
    font-family: "Inter", monospace;
}

.ufc-vs {
    font-family: var(--font-display);
    font-size: 10px;
    font-weight: 900;
    color: var(--text-muted);
    letter-spacing: 2px;
    padding-bottom: 32px;
}

.ufc-action {
    text-align: center;
    font-size: 11px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== Balance Card ===== */
.balance-card {
    width: 100%;
    max-width: 260px;
    background: linear-gradient(
        180deg,
        rgba(20, 20, 24, 0.95) 0%,
        rgba(10, 10, 12, 0.98) 100%
    );
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.6),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.balance-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.balance-amount {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 2px;
    margin-bottom: 16px;
}

.balance-currency {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin-top: 4px;
}

.balance-number {
    font-size: 36px;
    font-weight: 900;
    color: var(--text-primary);
    font-family: "Inter", monospace;
    letter-spacing: -1px;
    line-height: 1;
}

.balance-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: radial-gradient(
        circle,
        rgba(34, 197, 94, 0.15) 0%,
        transparent 70%
    );
    border-radius: 50%;
    pointer-events: none;
    animation: balance-glow 3s ease-in-out infinite;
}

@keyframes balance-glow {
    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 0.2;
    }
}

.balance-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.balance-status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    color: #22c55e;
}

.status-dot {
    width: 6px;
    height: 6px;
    background: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(34, 197, 94, 0.6);
    animation: status-blink 2s ease-in-out infinite;
}

@keyframes status-blink {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0.4;
    }
}

.balance-tier {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-muted);
    background: rgba(255, 255, 255, 0.04);
    padding: 4px 10px;
    border-radius: 100px;
}

/* ===== iOS Notification Stack ===== */
.notification-stack {
    position: relative;
    width: 100%;
    max-width: 300px;
    height: 240px;
}

.ios-notif {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: linear-gradient(
        180deg,
        rgba(40, 40, 44, 0.95) 0%,
        rgba(24, 24, 28, 0.98) 100%
    );
    border: none;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    opacity: 0;
    backdrop-filter: blur(20px);
    animation: notif-stack 8s cubic-bezier(0.34, 1.56, 0.64, 1) infinite;
}

.ios-notif:nth-child(1) {
    animation-delay: 0s;
}
.ios-notif:nth-child(2) {
    animation-delay: 2s;
}
.ios-notif:nth-child(3) {
    animation-delay: 4s;
}
.ios-notif:nth-child(4) {
    animation-delay: 6s;
}

@keyframes notif-stack {
    0% {
        opacity: 0;
        transform: translateY(100px) scale(0.85);
    }
    5% {
        opacity: 1;
        transform: translateY(-10px) scale(1.05);
    }
    7.5% {
        transform: translateY(0) scale(1);
    }
    20% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
    25% {
        opacity: 1;
        transform: translateY(calc(-100% - 8px)) scale(1);
    }
    40% {
        opacity: 1;
        transform: translateY(calc(-100% - 8px)) scale(1);
    }
    45% {
        opacity: 1;
        transform: translateY(calc(-200% - 16px)) scale(1);
    }
    60% {
        opacity: 1;
        transform: translateY(calc(-200% - 16px)) scale(1);
    }
    68% {
        opacity: 0;
        transform: translateY(calc(-260% - 20px)) scale(0.92);
    }
    100% {
        opacity: 0;
        transform: translateY(calc(-260% - 20px)) scale(0.92);
    }
}

.notif-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(
        135deg,
        rgba(204, 255, 0, 0.15) 0%,
        rgba(204, 255, 0, 0.05) 100%
    );
    border: 1px solid rgba(204, 255, 0, 0.2);
    border-radius: 10px;
    color: var(--accent);
    flex-shrink: 0;
    overflow: hidden;
}

.notif-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.notif-body {
    flex: 1;
    min-width: 0;
}

.notif-title {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.notif-text {
    font-size: 12px;
    color: var(--text-secondary);
    line-height: 1.4;
}

.notif-text strong {
    color: var(--accent);
    font-weight: 700;
}

.notif-time {
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 500;
    flex-shrink: 0;
}

/* ===== Step Connectors ===== */
.step-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    position: relative;
}

.electric-line {
    position: relative;
    flex: 1;
    height: 2px;
    background: rgba(204, 255, 0, 0.1);
    border-radius: 1px;
    overflow: visible;
}

.electric-bolt {
    position: absolute;
    top: -3px;
    left: 0;
    width: 14px;
    height: 8px;
    background: var(--accent);
    border-radius: 4px;
    box-shadow:
        0 0 16px var(--accent),
        0 0 32px var(--accent-glow);
    animation: electric-flow 1.6s ease-in-out infinite;
}

@keyframes electric-flow {
    0% {
        left: 0;
        opacity: 0;
        transform: scaleX(0.5);
    }
    15% {
        opacity: 1;
        transform: scaleX(1);
    }
    85% {
        opacity: 1;
        transform: scaleX(1);
    }
    100% {
        left: calc(100% - 14px);
        opacity: 0;
        transform: scaleX(0.5);
    }
}

.electric-arrow {
    width: 0;
    height: 0;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    border-left: 7px solid var(--accent);
    filter: drop-shadow(0 0 4px var(--accent));
    flex-shrink: 0;
}

@media (max-width: 900px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid.how-it-works {
        grid-template-columns: 1fr;
    }

    .step-connector {
        display: none;
    }
}

@media (max-width: 600px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

    .features-header h2 {
        font-size: clamp(28px, 8vw, 40px);
    }
}

.offer-banner {
    padding: 80px 0;
}

.offer-box {
    position: relative;
    padding: 80px 40px;
    background-image: url("/landing/cardbackground.png");
    background-size: cover;
    background-position: center;
    border: 1px solid var(--bg-border);
    border-radius: var(--radius-xl);
    text-align: center;
    overflow: hidden;
    max-width: 1000px;
    margin: 0 auto;
}

.offer-box::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        circle at 50% 50%,
        transparent 0%,
        rgba(10, 10, 10, 0.4) 50%,
        rgba(10, 10, 10, 0.95) 100%
    );
    pointer-events: none;
    z-index: 1;
}

.offer-box > * {
    position: relative;
    z-index: 2;
}

.offer-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(
        circle,
        rgba(204, 255, 0, 0.1) 0%,
        transparent 70%
    );
    pointer-events: none;
    z-index: 2;
}

.offer-tag {
    position: relative;
    display: inline-block;
    padding: 6px 16px;
    background: var(--accent-dim);
    color: var(--accent);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 100px;
    margin-bottom: 20px;
}

.offer-box h2 {
    font-family: var(--font-display);
    position: relative;
    font-size: clamp(44px, 8vw, 72px);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -3px;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.offer-box p {
    position: relative;
    font-size: 15px;
    color: var(--text-secondary);
    max-width: 420px;
    margin: 0 auto 28px;
    line-height: 1.6;
}

/* ===== Availability / Map ===== */
.availability {
    padding: 100px 0;
    background-color: var(--bg-primary);
}

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

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: var(--accent-dim);
    color: var(--accent);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 100px;
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(44px, 8vw, 72px);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -3px;
    text-transform: uppercase;
}

.map-container {
    max-width: 900px;
    margin: 0 auto;
}

.us-map {
    width: 100%;
    height: auto;
}

.state {
    fill: var(--bg-card);
    stroke: var(--bg-border);
    stroke-width: 1;
    transition: var(--transition);
}

.state.available {
    fill: var(--accent-dim);
    stroke: var(--accent);
}

.state.available:hover {
    fill: var(--accent);
    opacity: 0.8;
}

/* ===== Final CTA ===== */
.final-cta {
    padding: 100px 0;
    text-align: center;
}

.final-cta h2 {
    font-family: var(--font-display);
    font-size: clamp(52px, 10vw, 100px);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -4px;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.final-cta p {
    font-size: 16px;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

/* ===== Footer ===== */
.footer {
    padding: 64px 0 0;
    border-top: 1px solid var(--bg-border);
    background: var(--bg-primary);
}

.footer-logo-full {
    width: 100%;
    line-height: 0;
    margin-top: 48px;
}

.footer-logo-full img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
    margin-bottom: 48px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links h4 {
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.footer-links a {
    font-size: 13px;
    color: var(--text-secondary);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-bottom {
    padding: 24px 0;
    border-top: 1px solid var(--bg-border);
    text-align: center;
}

.footer-bottom p {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
    .nav-menu,
    .nav-actions {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

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

@media (max-width: 600px) {
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .hero-cta .btn {
        width: 100%;
        max-width: 280px;
    }

    .hero-leagues {
        flex-direction: column;
        gap: 20px;
    }

    .leagues-logos {
        gap: 16px;
        justify-content: center;
    }

    .leagues-logos img {
        height: 28px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .offer-box {
        padding: 40px 24px;
    }
}

/* ===== Pricing Section ===== */
.pricing-section {
    padding: 100px 0;
    background: var(--bg-primary);
}

.pricing-header {
    text-align: center;
    margin-bottom: 48px;
}

.pricing-header h2 {
    font-family: var(--font-display);
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 12px;
}

.pricing-header p {
    font-size: 16px;
    color: var(--text-secondary);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.6;
}

.pricing-toolbar {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 0;
    border-bottom: none;
    gap: 24px;
    flex-wrap: wrap;
}

.currency-tabs {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 100px;
    backdrop-filter: blur(10px);
}

.currency-tab {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: transparent;
    border: 1px solid transparent;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 700;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition);
    letter-spacing: 0.5px;
}

.currency-tab .currency-flag {
    width: 18px;
    height: auto;
    border-radius: 3px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    opacity: 0.7;
    transition: var(--transition);
}

.currency-tab:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.04);
}

.currency-tab:hover .currency-flag {
    opacity: 1;
}

.currency-tab.active {
    background: linear-gradient(
        135deg,
        rgba(204, 255, 0, 0.12) 0%,
        rgba(204, 255, 0, 0.04) 100%
    );
    color: var(--accent);
    border-color: rgba(204, 255, 0, 0.25);
    box-shadow: 0 0 20px rgba(204, 255, 0, 0.08);
}

.currency-tab.active .currency-flag {
    opacity: 1;
    box-shadow: 0 1px 4px rgba(204, 255, 0, 0.2);
}

.show-numbers-toggle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 700;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition);
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.show-numbers-toggle:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.04);
}

.show-numbers-toggle.active {
    background: linear-gradient(
        135deg,
        rgba(34, 197, 94, 0.15) 0%,
        rgba(34, 197, 94, 0.05) 100%
    );
    color: #22c55e;
    border-color: rgba(34, 197, 94, 0.25);
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.08);
}

.toggle-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--text-muted);
    transition: var(--transition);
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
}

.show-numbers-toggle.active .toggle-dot {
    background: #22c55e;
    box-shadow: 0 0 8px rgba(34, 197, 94, 0.5);
}

.pricing-table-wrap {
    padding-bottom: 8px;
}

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

/* Labels Column */
.pricing-labels {
    display: flex;
    flex-direction: column;
}

.labels-header {
    height: 100px;
    margin-bottom: 8px;
}

.label-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 0;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.label-row svg {
    color: var(--text-muted);
    flex-shrink: 0;
}

.labels-footer {
    margin-top: auto;
    padding-top: 24px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
}

/* Tier Columns */
.pricing-tier {
    display: flex;
    flex-direction: column;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.03) 0%,
        rgba(255, 255, 255, 0.01) 100%
    );
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 24px;
    position: relative;
    transition: var(--transition);
}

.pricing-tier:hover {
    border-color: rgba(255, 255, 255, 0.1);
}

.pricing-tier.popular {
    background:
        radial-gradient(
            ellipse 120% 60% at 50% 0%,
            rgba(204, 255, 0, 0.06) 0%,
            transparent 55%
        ),
        linear-gradient(
            180deg,
            rgba(28, 28, 32, 0.9) 0%,
            rgba(14, 14, 16, 0.95) 100%
        );
}

.tier-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    padding: 5px 14px;
    background: linear-gradient(135deg, #ff8c00 0%, #ff5500 100%);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 100px;
    white-space: nowrap;
    box-shadow: 0 4px 16px rgba(255, 100, 0, 0.3);
}

.tier-header {
    text-align: center;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    margin-bottom: 8px;
}

.tier-label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.tier-amount {
    display: block;
    font-size: 22px;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.5px;
}

.tier-row {
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    font-size: 13px;
    color: var(--text-secondary);
    text-align: center;
}

.tier-row strong {
    color: var(--text-primary);
    font-weight: 600;
}

.tier-phase {
    display: flex;
    justify-content: center;
    gap: 8px;
    font-size: 11px;
}

.tier-phase span {
    color: var(--text-muted);
    font-weight: 500;
}

.tier-phase strong {
    color: var(--text-primary);
    font-weight: 600;
}

.refund-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 3px 10px;
    background: rgba(34, 197, 94, 0.1);
    border-radius: 6px;
    font-size: 12px;
    color: var(--text-secondary);
}

.refund-badge strong {
    color: #22c55e;
    font-weight: 700;
}

.tier-footer {
    margin-top: auto;
    padding-top: 20px;
    text-align: center;
}

.tier-price {
    font-size: 20px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.old-price {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    text-decoration: line-through;
    margin-right: 6px;
}

.tier-footer .btn {
    width: 100%;
    margin-bottom: 16px;
}

.tier-reward {
    padding: 12px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.reward-amount {
    display: block;
    font-size: 15px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.reward-label {
    display: block;
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 500;
}

/* ===== Testimonials Section ===== */
.testimonials-section {
    padding: 80px 0;
    background: var(--bg-primary);
}

.testimonials-header {
    text-align: center;
    margin-bottom: 48px;
}

.testimonials-header h2 {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 12px;
}

.testimonials-header p {
    font-size: 15px;
    color: var(--text-secondary);
}

.testimonials-tickers {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ticker-row {
    position: relative;
    overflow: hidden;
    padding: 8px 0;
}

/* Edge fade masks */
.ticker-row::before,
.ticker-row::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
}

.ticker-row::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-primary), transparent);
}

.ticker-row::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-primary), transparent);
}

.ticker-row-left .ticker-track-left {
    display: flex;
    width: max-content;
    animation: ticker-scroll-left 40s linear infinite;
}

.ticker-row-right .ticker-track-right {
    display: flex;
    width: max-content;
    animation: ticker-scroll-right 40s linear infinite;
}

.testimonial-tile {
    width: 380px;
    flex-shrink: 0;
    display: flex;
    gap: 16px;
    padding: 16px;
    margin-right: 16px;
    background: linear-gradient(
        180deg,
        rgba(28, 28, 32, 0.9) 0%,
        rgba(14, 14, 16, 0.95) 100%
    );
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    backdrop-filter: blur(12px);
}

.testimonial-tile-img {
    width: 120px;
    height: 140px;
    flex-shrink: 0;
    border-radius: 12px;
    overflow: hidden;
    line-height: 0;
}

.testimonial-tile-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.testimonial-tile-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    min-width: 0;
}

.testimonial-tile-quote {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.55;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.testimonial-tile-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-primary);
}

.testimonial-tile-location {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 500;
    color: var(--text-muted);
}

.flag-icon {
    width: 18px;
    height: auto;
    border-radius: 2px;
    display: inline-block;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.3);
}

@keyframes ticker-scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes ticker-scroll-right {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}

/* ===== Pricing Responsive Fixes ===== */
@media (max-width: 900px) {
    .pricing-table-wrap {
        overflow-x: visible;
        padding-bottom: 0;
    }

    .pricing-table {
        display: flex;
        flex-direction: column;
        gap: 20px;
        min-width: auto;
    }

    .pricing-labels {
        display: none;
    }

    .pricing-tier {
        padding: 24px;
    }

    .tier-row {
        display: flex;
        justify-content: space-between;
        align-items: center;
        text-align: left;
    }

    .tier-row::before {
        content: attr(data-label);
        font-size: 12px;
        color: var(--text-muted);
        font-weight: 600;
    }

    .tier-row strong {
        text-align: right;
    }
}

/* ===== Q&A Section ===== */
.faq-section {
    padding: 80px 0;
    position: relative;
}

.faq-header {
    text-align: center;
    margin-bottom: 48px;
}

.faq-header h2 {
    font-family: "Horizon", "Inter", system-ui, sans-serif;
    font-size: clamp(24px, 4vw, 36px);
    color: var(--text-primary);
    margin-bottom: 12px;
}

.faq-header p {
    font-size: 16px;
    color: var(--text-secondary);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(255, 255, 255, 0.1);
}

.faq-item.active {
    border-color: rgba(204, 255, 0, 0.2);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 16px;
    font-weight: 600;
    padding: 22px 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    gap: 16px;
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--accent);
}

.faq-question svg {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: var(--text-muted);
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
    color: var(--accent);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition:
        max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1),
        padding 0.35s ease;
    padding: 0 24px;
}

.faq-item.active .faq-answer {
    padding: 0 24px 22px;
}

.faq-answer p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 600px) {
    .faq-question {
        font-size: 14px;
        padding: 18px 20px;
    }

    .faq-item.active .faq-answer {
        padding: 0 20px 18px;
    }

    .faq-answer p {
        font-size: 13px;
    }
}
