/* ===== ART DECO ELEGANCE - Great Gatsby Luxury Aesthetic ===== */
/* Black + Gold(#c9a84c) + Dark Emerald Green(#1a3c34) */

/* === Variables === */
:root {
    --black: #0a0a0a;
    --black-soft: #1a1a1a;
    --gold: #c9a84c;
    --gold-light: #d4b95e;
    --gold-dark: #a88a2e;
    --emerald: #1a3c34;
    --emerald-light: #2a5c50;
    --cream: #f5f0e8;
    --cream-dark: #e8e0d0;
    --white: #fafaf7;
    --text-light: #c0b8a8;
    --text-dim: #8a8070;
    --font-main: 'Georgia', 'Noto Serif SC', 'STSong', 'SimSun', 'PingFang SC', 'Microsoft YaHei', serif;
    --font-heading: 'Georgia', 'Noto Serif SC', 'STSong', 'SimSun', serif;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-main);
    background: var(--cream);
    color: var(--black);
    line-height: 1.7;
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

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

/* === NAVBAR === */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10,10,10,0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--gold-dark);
    transition: all 0.3s;
}

.navbar.scrolled {
    box-shadow: 0 2px 30px rgba(201,168,76,0.15);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

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

.logo-frame {
    width: 40px;
    height: 40px;
    border: 2px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.logo-frame::before {
    content: '';
    position: absolute;
    inset: -4px;
    border: 1px solid rgba(201,168,76,0.3);
}

.logo-letter {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 900;
    color: var(--gold);
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: #fff;
}

.nav-menu { display: flex; align-items: center; gap: 28px; }

.nav-link {
    font-weight: 600;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s;
    position: relative;
}

.nav-link:hover { color: var(--gold); }

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s;
}

.nav-link:hover::after { width: 100%; }

.nav-cta {
    background: var(--gold);
    color: var(--black) !important;
    padding: 10px 22px;
    font-weight: 700;
    letter-spacing: 1px;
    position: relative;
    border: 1px solid var(--gold);
    transition: all 0.3s;
}

.nav-cta::after { display: none; }

.nav-cta:hover {
    background: transparent;
    color: var(--gold) !important;
}

/* Hamburger */
.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; }

.nav-toggle span {
    width: 26px; height: 2px;
    background: var(--gold);
    transition: all 0.3s;
}

.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* === HERO === */
.hero {
    position: relative;
    padding: 150px 0 80px;
    background: var(--black);
    overflow: hidden;
}

.hero-pattern { position: absolute; inset: 0; pointer-events: none; }

.artdeco-line {
    position: absolute;
    width: 120px;
    height: 120px;
    border: 1px solid rgba(201,168,76,0.2);
}

.line-tl { top: 40px; left: 40px; border-right: none; border-bottom: none; }
.line-tr { top: 40px; right: 40px; border-left: none; border-bottom: none; }
.line-bl { bottom: 40px; left: 40px; border-right: none; border-top: none; }
.line-br { bottom: 40px; right: 40px; border-left: none; border-top: none; }

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content { position: relative; }

.hero-overline {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
    color: var(--gold);
    font-size: 0.9rem;
    letter-spacing: 3px;
    font-weight: 600;
    text-transform: uppercase;
}

.overline-line {
    width: 40px;
    height: 1px;
    background: var(--gold);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 900;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.title-gold {
    color: var(--gold);
    position: relative;
}

.hero-desc {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 30px;
    max-width: 480px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    font-family: var(--font-main);
    text-transform: uppercase;
}

.btn-gold {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
    background-size: 200% 200%;
    color: var(--black);
    border: none;
    position: relative;
}

.btn-gold:hover {
    background-position: 100% 100%;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(201,168,76,0.35);
}

.btn-outline {
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
}

.btn-outline:hover {
    background: rgba(201,168,76,0.1);
    transform: translateY(-2px);
}

.btn-lg { padding: 16px 34px; font-size: 1rem; }

.hero-badges {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: var(--text-light);
    letter-spacing: 1px;
}

.badge-item i { color: var(--gold); font-size: 0.7rem; }

/* Hero Visual - Art Deco Card */
.hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.artdeco-card {
    width: 320px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.artdeco-frame {
    width: 280px;
    height: 360px;
    border: 3px solid var(--gold);
    position: relative;
    background: linear-gradient(180deg, rgba(26,60,52,0.95) 0%, rgba(10,10,10,0.95) 100%);
    padding: 40px 30px;
}

.frame-corner {
    position: absolute;
    width: 30px;
    height: 30px;
    border-color: var(--gold);
    border-style: solid;
}

.corner-tl { top: -3px; left: -3px; border-width: 3px 0 0 3px; }
.corner-tr { top: -3px; right: -3px; border-width: 3px 3px 0 0; }
.corner-bl { bottom: -3px; left: -3px; border-width: 0 0 3px 3px; }
.corner-br { bottom: -3px; right: -3px; border-width: 0 3px 3px 0; }

.frame-inner {
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.frame-emblem {
    width: 70px;
    height: 70px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    position: relative;
}

.frame-emblem::before {
    content: '';
    position: absolute;
    inset: -6px;
    border: 1px solid rgba(201,168,76,0.4);
    border-radius: 50%;
}

.frame-emblem i { color: var(--gold); font-size: 1.6rem; }

.frame-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--gold);
    letter-spacing: 4px;
    margin-bottom: 6px;
}

.frame-subtitle {
    font-size: 0.85rem;
    color: var(--text-light);
    letter-spacing: 2px;
}

.frame-divider {
    margin: 20px 0;
    color: var(--gold);
    font-size: 0.6rem;
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
}

.frame-divider::before,
.frame-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-dark), transparent);
}

.frame-footer {
    font-size: 0.75rem;
    color: var(--text-dim);
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* === SECTION HEADERS === */
.section-header { text-align: center; margin-bottom: 50px; }

.section-overline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 12px;
    color: var(--gold);
    font-size: 0.85rem;
    letter-spacing: 3px;
    font-weight: 600;
    text-transform: uppercase;
}

.deco-fan {
    display: inline-block;
    width: 50px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold));
}

.deco-fan-r {
    background: linear-gradient(270deg, transparent, var(--gold));
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 900;
    color: var(--black);
    letter-spacing: 2px;
}

/* === FEATURES === */
.features {
    padding: 80px 0;
    background: var(--cream);
}

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

.feature-card {
    background: var(--white);
    border: 1px solid rgba(201,168,76,0.15);
    padding: 40px 28px;
    text-align: center;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s;
}

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

.feature-card:hover::before { width: 120px; }

.feature-icon-wrap {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.artdeco-icon-frame {
    width: 72px;
    height: 72px;
    border: 2px solid var(--emerald);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.artdeco-icon-frame::after {
    content: '';
    position: absolute;
    inset: 4px;
    border: 1px solid var(--gold);
}

.artdeco-icon-frame i {
    font-size: 1.5rem;
    color: var(--emerald);
    position: relative;
    z-index: 2;
}

.feature-card h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.feature-card p {
    color: var(--text-dim);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* === CLUBS === */
.clubs {
    padding: 80px 0;
    background: var(--black);
}

.clubs .section-title { color: #fff; }

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

.club-card {
    background: linear-gradient(180deg, rgba(26,60,52,0.6) 0%, rgba(10,10,10,0.8) 100%);
    border: 1px solid rgba(201,168,76,0.2);
    padding: 36px 24px;
    text-align: center;
    transition: all 0.3s;
    position: relative;
}

.club-card::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 20%;
    width: 60%;
    height: 2px;
    background: var(--gold);
    opacity: 0;
    transition: opacity 0.3s;
}

.club-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
}

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

.club-rank {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 900;
    color: var(--gold);
    margin-bottom: 12px;
    letter-spacing: 2px;
}

.club-card h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.club-card p {
    color: var(--text-light);
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 16px;
}

.club-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    transition: gap 0.3s;
}

.club-link:hover { gap: 12px; }

/* === STATS === */
.stats {
    padding: 80px 0;
    background: var(--black-soft);
    position: relative;
    overflow: hidden;
}

.stats-bg-deco { position: absolute; inset: 0; pointer-events: none; }

.radiating-lines {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    transform: translate(-50%, -50%);
    background:
        repeating-conic-gradient(
            rgba(201,168,76,0.05) 0deg,
            rgba(201,168,76,0.05) 5deg,
            transparent 5deg,
            transparent 10deg
        );
    border-radius: 50%;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.stat-item {
    padding: 30px 20px;
    border: 1px solid rgba(201,168,76,0.2);
    transition: all 0.3s;
}

.stat-item:hover {
    border-color: var(--gold);
    background: rgba(201,168,76,0.05);
}

.stat-num {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 900;
    color: var(--gold);
    display: inline-block;
}

.stat-plus {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--emerald-light);
    display: inline-block;
    margin-left: 4px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    letter-spacing: 1px;
    margin-top: 6px;
}

/* === TESTIMONIALS === */
.testimonials { padding: 80px 0; background: var(--cream); }

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

.testimonial-card {
    background: var(--white);
    border: 1px solid rgba(201,168,76,0.15);
    padding: 32px 24px;
    transition: all 0.3s;
    position: relative;
}

.testimonial-card:hover {
    border-color: var(--gold);
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.testimonial-quote-icon {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 10px;
    opacity: 0.5;
}

.testimonial-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--black-soft);
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid rgba(0,0,0,0.06);
    padding-top: 16px;
}

.author-ring {
    width: 46px;
    height: 46px;
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
}

.author-ring::after {
    content: '';
    position: absolute;
    inset: -3px;
    border: 1px solid rgba(201,168,76,0.3);
    border-radius: 50%;
}

.author-ring span {
    font-family: var(--font-heading);
    font-weight: 900;
    color: var(--emerald);
}

.author-info strong { display: block; font-size: 0.95rem; }
.author-info span { font-size: 0.8rem; color: var(--text-dim); }

/* === FAQ === */
.faq { padding: 80px 0; background: var(--white); }

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

.faq-item {
    border: 1px solid rgba(201,168,76,0.15);
    background: var(--white);
    transition: all 0.3s;
}

.faq-item:hover { border-color: rgba(201,168,76,0.4); }

.faq-item.active { border-color: var(--gold); }

.faq-question {
    padding: 18px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-weight: 700;
    font-size: 1rem;
    user-select: none;
    letter-spacing: 0.5px;
}

.faq-question i {
    color: var(--gold);
    transition: transform 0.3s;
    font-size: 0.85rem;
}

.faq-item.active .faq-question i { transform: rotate(45deg); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 24px 18px;
}

.faq-answer p {
    color: var(--text-dim);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* === CTA === */
.cta {
    padding: 80px 0;
    background: var(--black);
    position: relative;
    overflow: hidden;
}

.cta-deco { position: absolute; inset: 0; pointer-events: none; }

.cta-radiating {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background:
        repeating-conic-gradient(
            rgba(201,168,76,0.04) 0deg,
            rgba(201,168,76,0.04) 3deg,
            transparent 3deg,
            transparent 6deg
        );
    border-radius: 50%;
}

.cta-card {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta-inner {
    border: 2px solid var(--gold);
    padding: 50px 40px;
    text-align: center;
    position: relative;
    background: rgba(10,10,10,0.9);
}

.cta-inner::before {
    content: '';
    position: absolute;
    inset: 8px;
    border: 1px solid rgba(201,168,76,0.3);
    pointer-events: none;
}

.cta-emblem {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    border: 2px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.cta-emblem::after {
    content: '';
    position: absolute;
    inset: -6px;
    border: 1px solid rgba(201,168,76,0.4);
    border-radius: 50%;
}

.cta-emblem i { color: var(--gold); font-size: 1.8rem; }

.cta-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 12px;
    letter-spacing: 2px;
}

.cta-desc {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 28px;
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    margin-bottom: 28px;
}

.cta-id-display {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(201,168,76,0.1);
    border: 1px solid rgba(201,168,76,0.3);
    padding: 12px 24px;
}

.id-label {
    color: var(--text-light);
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.id-value {
    color: var(--gold);
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 1px;
}

/* === FOOTER === */
.footer {
    background: var(--black);
    border-top: 1px solid var(--gold-dark);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 20px 20px;
}

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

.footer-brand h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 900;
    letter-spacing: 3px;
    color: #fff;
    margin-bottom: 12px;
}

.gold-letter { color: var(--gold); }

.footer-brand p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.7;
}

.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 800;
    color: var(--gold);
    letter-spacing: 2px;
    margin-bottom: 14px;
    text-transform: uppercase;
}

.footer-col ul { display: flex; flex-direction: column; gap: 10px; }

.footer-col ul li a {
    color: var(--text-light);
    font-size: 0.9rem;
    transition: color 0.2s;
}

.footer-col ul li a:hover { color: var(--gold); }

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(201,168,76,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--text-light);
    transition: all 0.3s;
}

.footer-social a:hover {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
}

.footer-bottom { text-align: center; }

.footer-divider {
    margin-bottom: 16px;
    color: var(--gold);
    font-size: 0.5rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-divider::before,
.footer-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-dark), transparent);
}

.footer-bottom p {
    color: var(--text-dim);
    font-size: 0.8rem;
    letter-spacing: 0.5px;
}

/* === RESPONSIVE === */
@media (max-width: 992px) {
    .hero-container { grid-template-columns: 1fr; text-align: center; }
    .hero-desc { margin: 0 auto 30px; }
    .hero-buttons { justify-content: center; }
    .hero-badges { justify-content: center; }
    .hero-visual { display: none; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .clubs-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

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

    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: rgba(10,10,10,0.97);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 20px;
        border-bottom: 1px solid var(--gold-dark);
        transform: translateY(-150%);
        transition: transform 0.3s;
        gap: 16px;
    }

    .nav-menu.active { transform: translateY(0); }

    .features-grid { grid-template-columns: 1fr; }
    .clubs-grid { grid-template-columns: 1fr 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .cta-buttons { flex-direction: column; align-items: center; }
    .section-title { font-size: 1.5rem; }
    .hero-title { font-size: 2rem; }
}

@media (max-width: 480px) {
    .hero-buttons { flex-direction: column; align-items: center; }
    .btn { width: 80%; justify-content: center; }
    .clubs-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .hero-title { font-size: 1.6rem; }
    .hero-badges { flex-direction: column; align-items: center; }
}
