/* ===================================
   OFF THE DECK - Premium Golf App
   CSS Styles
   =================================== */

/* CSS Variables - OTD Brand Colors */
:root {
    /* Colors - Premium Dark Theme with OTD Brand */
    --color-bg: #0d1210;
    --color-bg-elevated: #111916;
    --color-bg-card: #151d1a;
    --color-bg-card-hover: #1a2420;

    /* Brand Gold Gradient */
    --color-gold-light: #e8d5a3;
    --color-gold-dark: #c9a962;
    --color-gold: #d4b87a;

    /* Brand Forest Green */
    --color-forest: #1a3a2f;
    --color-forest-light: #234a3d;

    /* Cream/Off-white for dark mode */
    --color-cream: #f8f5ed;

    /* Primary = Gold */
    --color-primary: var(--color-gold);
    --color-primary-dark: var(--color-gold-dark);
    --color-primary-glow: rgba(212, 184, 122, 0.25);

    /* Accent colors */
    --color-accent: #4ade80; /* Green for wins */
    --color-accent-soft: rgba(74, 222, 128, 0.1);
    --color-win: #4ade80;

    --color-text: var(--color-cream);
    --color-text-secondary: #b8c4bf;
    --color-text-muted: #7a8a82;

    --color-border: #2a3a32;
    --color-border-subtle: #1f2d26;

    /* Typography */
    --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing */
    --section-padding: 120px;
    --container-max: 1200px;
    --container-padding: 24px;

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 400ms ease;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 9999px;
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

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

img {
    max-width: 100%;
    height: auto;
}

/* Container */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* ===================================
   NAVIGATION
   =================================== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition-base);
    background: linear-gradient(to bottom, rgba(13, 18, 16, 0.95), transparent);
}

.nav.scrolled {
    background: rgba(13, 18, 16, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--color-border-subtle);
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 40px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text-secondary);
    transition: var(--transition-fast);
}

.nav-links a:hover {
    color: var(--color-text);
}

.nav-links .nav-cta {
    background: linear-gradient(135deg, var(--color-gold-light), var(--color-gold-dark));
    color: var(--color-forest);
    padding: 10px 20px;
    border-radius: var(--radius-full);
    font-weight: 600;
}

.nav-links .nav-cta:hover {
    box-shadow: 0 4px 20px var(--color-primary-glow);
    transform: translateY(-1px);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}

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

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: rgba(13, 18, 16, 0.98);
    backdrop-filter: blur(20px);
    padding: 20px;
    flex-direction: column;
    gap: 20px;
    z-index: 999;
    border-bottom: 1px solid var(--color-border);
}

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

.mobile-menu a {
    font-size: 16px;
    font-weight: 500;
    color: var(--color-text-secondary);
    padding: 12px 0;
    border-bottom: 1px solid var(--color-border-subtle);
}

.mobile-menu .nav-cta {
    background: linear-gradient(135deg, var(--color-gold-light), var(--color-gold-dark));
    color: var(--color-forest);
    padding: 14px 24px;
    border-radius: var(--radius-full);
    text-align: center;
    border: none;
}

/* ===================================
   HERO SECTION
   =================================== */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
    padding: 140px var(--container-padding) 80px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: -1;
}

.hero-gradient {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 100%;
    background: radial-gradient(ellipse, rgba(212, 184, 122, 0.15) 0%, transparent 60%);
    opacity: 0.6;
}

.hero-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 1px 1px, var(--color-border-subtle) 1px, transparent 0);
    background-size: 40px 40px;
    opacity: 0.5;
}

.hero-content {
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 500;
    color: var(--color-text-secondary);
    margin-bottom: 32px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--color-gold);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

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

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(48px, 6vw, 72px);
    font-weight: 500;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.title-accent {
    background: linear-gradient(135deg, var(--color-gold-light), var(--color-gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 480px;
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 28px;
    border-radius: var(--radius-full);
    font-size: 15px;
    font-weight: 600;
    transition: var(--transition-base);
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-gold-light), var(--color-gold-dark));
    color: var(--color-forest);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 40px var(--color-primary-glow);
}

.btn-secondary {
    background: var(--color-bg-card);
    color: var(--color-text);
    border: 1px solid var(--color-border);
}

.btn-secondary:hover {
    background: var(--color-bg-card-hover);
    border-color: var(--color-gold);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 32px;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 600;
    color: var(--color-gold);
    margin-bottom: 4px;
}

.stat-label {
    font-size: 13px;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--color-border);
}

/* Hero Visual - Phone Mockup */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.phone-mockup {
    position: relative;
}

.phone-frame {
    width: 280px;
    height: 580px;
    background: linear-gradient(145deg, #2a3a32 0%, #1a2420 100%);
    border-radius: 40px;
    padding: 12px;
    box-shadow:
        0 50px 100px rgba(0, 0, 0, 0.5),
        inset 0 1px 0 rgba(248, 245, 237, 0.1);
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: var(--color-bg);
    border-radius: 32px;
    overflow: hidden;
}

.app-preview {
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 24px 20px;
}

.app-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--color-border);
}

.app-logo-icon {
    width: 28px;
    height: auto;
}

.app-title {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 500;
    flex: 1;
    margin-left: 12px;
}

.app-hole {
    font-size: 14px;
    color: var(--color-gold);
    font-weight: 600;
}

.app-scores {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.score-row {
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    gap: 20px;
    padding: 16px;
    background: var(--color-bg-card);
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border-subtle);
}

.score-row.winner {
    background: rgba(74, 222, 128, 0.08);
    border-color: rgba(74, 222, 128, 0.3);
}

.player-name {
    font-weight: 500;
}

.player-score {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 600;
    width: 40px;
    text-align: center;
}

.skins-won {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text-muted);
    min-width: 50px;
    text-align: right;
}

.score-row.winner .skins-won {
    color: var(--color-win);
}

.app-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    margin-top: 20px;
    border-top: 1px solid var(--color-border);
}

.pot-label {
    font-size: 14px;
    color: var(--color-text-muted);
}

.pot-amount {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 600;
    color: var(--color-gold);
}

.phone-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(212, 184, 122, 0.2) 0%, transparent 70%);
    z-index: -1;
    opacity: 0.6;
}

/* ===================================
   TICKER
   =================================== */
.ticker {
    background: var(--color-bg-elevated);
    border-top: 1px solid var(--color-border-subtle);
    border-bottom: 1px solid var(--color-border-subtle);
    padding: 16px 0;
    overflow: hidden;
}

.ticker-content {
    display: flex;
    animation: ticker 30s linear infinite;
    white-space: nowrap;
}

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

.ticker-item {
    font-size: 14px;
    color: var(--color-text-muted);
    padding: 0 40px;
    flex-shrink: 0;
}

/* ===================================
   SECTIONS COMMON
   =================================== */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px;
}

.section-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    background: linear-gradient(135deg, var(--color-gold-light), var(--color-gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 52px);
    font-weight: 500;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 18px;
    color: var(--color-text-secondary);
    line-height: 1.7;
}

/* ===================================
   FEATURES SECTION
   =================================== */
.features {
    padding: var(--section-padding) 0;
}

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

.feature-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border-subtle);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: var(--transition-base);
}

.feature-card:hover {
    border-color: var(--color-gold);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.feature-large {
    grid-column: span 3;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 24px;
    align-items: center;
    background: linear-gradient(135deg, var(--color-bg-card) 0%, rgba(212, 184, 122, 0.03) 100%);
}

.feature-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    color: var(--color-gold);
    margin-bottom: 20px;
}

.feature-large .feature-icon {
    width: 72px;
    height: 72px;
    margin-bottom: 0;
}

.feature-title {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 12px;
}

.feature-large .feature-title {
    font-size: 28px;
}

.feature-desc {
    font-size: 15px;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

/* ===================================
   GAMES SECTION
   =================================== */
.games {
    padding: var(--section-padding) 0;
    background: var(--color-bg-elevated);
}

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

.game-card {
    background: var(--color-bg);
    border: 1px solid var(--color-border-subtle);
    border-radius: var(--radius-lg);
    padding: 32px;
    position: relative;
    transition: var(--transition-base);
}

.game-card:hover {
    border-color: var(--color-gold);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.game-number {
    font-family: var(--font-display);
    font-size: 48px;
    font-weight: 600;
    color: var(--color-border);
    line-height: 1;
    margin-bottom: 16px;
}

.game-card:hover .game-number {
    background: linear-gradient(135deg, var(--color-gold-light), var(--color-gold-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.game-name {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 12px;
}

.game-desc {
    font-size: 15px;
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
}

.game-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-gold);
    background: rgba(212, 184, 122, 0.1);
    padding: 6px 12px;
    border-radius: var(--radius-full);
}

/* ===================================
   HOW IT WORKS SECTION
   =================================== */
.how-it-works {
    padding: var(--section-padding) 0;
}

.steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.step {
    flex: 1;
    text-align: center;
    max-width: 280px;
}

.step-number {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, var(--color-gold-light), var(--color-gold-dark));
    color: var(--color-forest);
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 600;
    border-radius: 50%;
}

.step-title {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 12px;
}

.step-desc {
    font-size: 15px;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

.step-connector {
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, var(--color-gold), var(--color-border));
    margin-top: 32px;
    flex-shrink: 0;
}

/* ===================================
   QUOTE SECTION
   =================================== */
.quote-section {
    padding: var(--section-padding) 0;
    background: var(--color-bg-elevated);
}

.quote-card {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 60px;
    background: var(--color-bg);
    border: 1px solid var(--color-border-subtle);
    border-radius: var(--radius-lg);
}

.quote-icon {
    margin-bottom: 32px;
}

.quote-logo {
    height: 60px;
    width: auto;
    opacity: 0.6;
}

.quote-text {
    font-family: var(--font-display);
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 400;
    line-height: 1.5;
    font-style: italic;
    margin-bottom: 32px;
}

.quote-attribution {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.quote-dash {
    color: var(--color-gold);
}

.quote-author {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-muted);
}

/* ===================================
   WAITLIST SECTION
   =================================== */
.waitlist {
    padding: var(--section-padding) 0;
}

.waitlist > .container {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 80px;
    align-items: center;
}

.waitlist-content {
    max-width: 560px;
}

.waitlist-title {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 52px);
    font-weight: 500;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.waitlist-subtitle {
    font-size: 18px;
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin-bottom: 40px;
}

.waitlist-form {
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    gap: 12px;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-full);
    padding: 6px;
}

.form-group:focus-within {
    border-color: var(--color-gold);
}

.form-group input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 12px 20px;
    font-size: 16px;
    color: var(--color-text);
    outline: none;
}

.form-group input::placeholder {
    color: var(--color-text-muted);
}

.form-group .btn {
    flex-shrink: 0;
}

.waitlist-note {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--color-text-muted);
}

.waitlist-note svg {
    color: var(--color-gold);
}

/* App Store Badge */
.waitlist-visual {
    display: flex;
    justify-content: center;
}

.app-store-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 16px 24px;
}

.app-store-badge svg {
    color: var(--color-cream);
}

.badge-text {
    display: flex;
    flex-direction: column;
}

.badge-small {
    font-size: 11px;
    color: var(--color-text-muted);
}

.badge-large {
    font-size: 18px;
    font-weight: 600;
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    background: var(--color-bg-elevated);
    border-top: 1px solid var(--color-border-subtle);
    padding: 80px 0 40px;
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    margin-bottom: 60px;
}

.footer-logo {
    display: block;
    margin-bottom: 16px;
}

.footer-logo-img {
    height: 80px;
    width: auto;
}

.footer-tagline {
    font-size: 14px;
    color: var(--color-text-muted);
    font-style: italic;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column h4 {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-gold);
    margin-bottom: 20px;
}

.footer-column a {
    display: block;
    font-size: 14px;
    color: var(--color-text-secondary);
    padding: 8px 0;
    transition: var(--transition-fast);
}

.footer-column a:hover {
    color: var(--color-cream);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid var(--color-border-subtle);
}

.copyright {
    font-size: 14px;
    color: var(--color-text-muted);
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: 50%;
    color: var(--color-text-secondary);
    transition: var(--transition-fast);
}

.social-links a:hover {
    background: linear-gradient(135deg, var(--color-gold-light), var(--color-gold-dark));
    border-color: var(--color-gold);
    color: var(--color-forest);
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */
@media (max-width: 1024px) {
    :root {
        --section-padding: 80px;
    }

    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        min-height: auto;
        padding-top: 120px;
    }

    .hero-content {
        max-width: 600px;
        margin: 0 auto;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-visual {
        order: -1;
    }

    .phone-frame {
        width: 240px;
        height: 500px;
    }

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

    .feature-large {
        grid-column: span 2;
    }

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

    .steps {
        flex-direction: column;
        gap: 40px;
    }

    .step-connector {
        width: 2px;
        height: 40px;
        margin: 0;
    }

    .waitlist > .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .waitlist-content {
        max-width: 100%;
    }

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

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

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

    .hero-title {
        font-size: 36px;
    }

    .hero-cta {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

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

    .stat-divider {
        width: 40px;
        height: 1px;
    }

    .features-grid,
    .games-grid {
        grid-template-columns: 1fr;
    }

    .feature-large {
        grid-column: span 1;
        grid-template-columns: 1fr;
        text-align: center;
    }

    .feature-large .feature-icon {
        margin: 0 auto 20px;
    }

    .form-group {
        flex-direction: column;
        border-radius: var(--radius-md);
        padding: 12px;
    }

    .form-group input {
        text-align: center;
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

/* ===================================
   ANIMATIONS
   =================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge,
.hero-title,
.hero-subtitle,
.hero-cta,
.hero-stats {
    animation: fadeInUp 0.8s ease forwards;
}

.hero-badge { animation-delay: 0.1s; }
.hero-title { animation-delay: 0.2s; }
.hero-subtitle { animation-delay: 0.3s; }
.hero-cta { animation-delay: 0.4s; }
.hero-stats { animation-delay: 0.5s; }
