/* -------------------- RESET & MINIMALIST BASE -------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden; /* iOS Safari requires this on html, not just body */
}

body {
    overflow-x: hidden;
    position: relative; /* Required for iOS Safari overflow clipping */
    background-color: #16191D;
    color: #E8E8E8;
    font-family: 'Inter', sans-serif;
    line-height: 1.5;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

/* Bank Gothic for strong brand elements */
h1,
h2,
h3,
.logo-text,
.nav-links a,
.btn,
.badge,
.ticker-item,
.stat-value,
.section-title,
.cta-banner h2,
.feature-card h3,
.check-list li,
.info-item .label {
    font-family: 'Bank Gothic', 'BankGothic Lt BT', 'Arial Narrow', 'Arial', sans-serif;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-weight: 500;
}

/* body text remains clean, light, readable */
p,
.feature-card p,
.form-disclaimer,
.stat-label,
.address,
.info-item p:not(.label),
.section-subtitle {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    letter-spacing: normal;
    text-transform: none;
    color: #CDCDCD;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* -------------------- MINIMALIST NAVBAR -------------------- */
.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #16191D;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.2s ease;
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.1rem 2rem;
    gap: 1.5rem;
    flex-wrap: nowrap;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    text-decoration: none;
}

.logo-img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    display: block;
}

.logo-text {
    font-size: 1.3rem;
    font-weight: 600;
    color: #FFFFFF;
    letter-spacing: 2px;
}

.logo-text .accent {
    color: #DD8520;
}

.nav-links {
    display: flex;
    gap: 1.5rem;
    list-style: none;
}

.nav-link {
    text-decoration: none;
    color: #DDDDDD;
    font-size: 0.85rem;
    font-weight: 500;
    transition: color 0.3s ease;
    letter-spacing: 1px;
}


.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #16191D;
    min-width: 160px;
    border: 1px solid #2A2A2A;
    z-index: 100;
    top: 100%;
    left: 0;
    padding: 0.5rem 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.dropdown:hover .dropdown-content {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.dropdown-content a {
    color: #CDCDCD;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-size: 0.85rem;
    transition: color 0.3s ease, background 0.3s ease;
}

.dropdown-content a:hover {
    color: #DD8520;
    background: rgba(221, 133, 32, 0.05);
}

.nav-link:hover {

    color: #DD8520;
}

.btn {
    display: inline-block;
    padding: 0.6rem 1.6rem;
    border-radius: 0px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    cursor: pointer;
    border: none;
    text-transform: uppercase;
}

.btn-primary {
    background: #DD8520;
    color: #16191D;
    border: 1px solid #DD8520;
}

.btn-primary:hover {
    background: transparent;
    color: #DD8520;
    border-color: #DD8520;
}

.btn-outline {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #FFFFFF;
}

.btn-outline:hover {
    border-color: #DD8520;
    color: #DD8520;
}

.btn-secondary {
    background: #FFFFFF;
    color: #16191D;
    border: 1px solid #FFFFFF;
}

.btn-secondary:hover {
    background: #DD8520;
    border-color: #DD8520;
    color: #16191D;
}

.btn-lg {
    padding: 0.8rem 2rem;
    font-size: 0.9rem;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
}

/* -------------------- TICKER (clean, minimal) -------------------- */
.ticker-wrap {
    background: #16191D;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    white-space: nowrap;
    padding: 0.6rem 0;
}

.ticker {
    display: inline-flex;
    animation: scrollTicker 35s linear infinite;
    gap: 2rem;
}

.ticker-item {
    font-size: 0.8rem;
    letter-spacing: 1px;
    color: #DD8520;
    font-weight: 500;
    background: none;
    padding: 0;
    margin: 0;
}

@keyframes scrollTicker {
    0% {
        transform: translateX(0%);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* -------------------- HERO SECTION -------------------- */
.hero {
    padding: 5rem 0 6rem;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.badge {
    display: inline-block;
    background: rgba(221, 133, 32, 0.12);
    padding: 0.3rem 1rem;
    font-size: 0.7rem;
    color: #DD8520;
    letter-spacing: 1.5px;
    margin-bottom: 1.8rem;
    border-left: 2px solid #DD8520;
}

h1 {
    font-size: 3.6rem;
    line-height: 1.1;
    margin-bottom: 1.2rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: #FFFFFF;
}

.text-gradient {
    background: linear-gradient(135deg, #DD8520, #F5A623);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.hero-actions {
    display: flex;
    gap: 1.2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.hero-visual {
    position: relative;
    z-index: 1;
}

.hero-image-placeholder {
    background: url('assets/gym%20images.png') center/cover no-repeat;
    border-radius: 20px;
    padding: 2rem;
    height: 360px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.5);
}

.hero-image-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background: inherit;
    filter: blur(35px) saturate(1.5);
    z-index: -1;
    opacity: 0.7;
    border-radius: inherit;
    transform: translateY(5px) scale(1.02);
    animation: pulseGlow 4s infinite alternate ease-in-out;
}

@keyframes pulseGlow {
    0% {
        opacity: 0.5;
        filter: blur(30px) saturate(1.3);
        transform: translateY(5px) scale(1.01);
    }
    100% {
        opacity: 0.8;
        filter: blur(40px) saturate(1.6);
        transform: translateY(10px) scale(1.03);
    }
}


.glass-overlay {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 2rem;
    background: rgba(22, 25, 29, 0.6);
    -webkit-backdrop-filter: blur(16px);

    backdrop-filter: blur(16px);
    -webkit--webkit-backdrop-filter: blur(16px);
backdrop-filter: blur(16px);
    padding: 1rem 1.8rem;
    width: 90%;
    max-width: 320px;
    border-radius: 100px;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat {
    text-align: center;
}

.stat-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: #DD8520;
    letter-spacing: 1.5px;
}

.stat-label {
    font-size: 0.7rem;
    letter-spacing: 0.5px;
}

/* -------------------- ABOUT / FEATURES -------------------- */
.about {
    padding: 4rem 0 5rem;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.2rem;
    margin-bottom: 0.8rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    color: #FFFFFF;
}

.section-subtitle {
    font-size: 0.95rem;
    max-width: 600px;
    margin: 0 auto;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: #16191D;
    padding: 2rem 1.8rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.feature-card:hover {
    border-color: rgba(221, 133, 32, 0.4);
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 30px rgba(221, 133, 32, 0.1);
}

.icon-wrapper {
    margin-bottom: 1.5rem;
}

.icon-wrapper i {
    width: 32px;
    height: 32px;
    color: #DD8520;
    stroke-width: 1.5;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.6rem;
    letter-spacing: 1px;
}

.feature-card p {
    font-size: 0.9rem;
    line-height: 1.45;
}

/* -------------------- FACILITIES -------------------- */
.facilities {
    padding: 4rem 0 5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.facilities-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.check-list {
    list-style: none;
    margin: 1.8rem 0 2rem;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    color: #E0E0E0;
}

.check-list i {
    color: #DD8520;
    width: 18px;
}

.facilities-visual .grid-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.grid-img {
    background: #151515;
    border-radius: 12px;
    aspect-ratio: 4/3;
    height: auto;
    background-size: cover;
    background-position: center;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: 0.2s;
}

.img-1 {
    background-image: url('assets/gym%20images.jpg');
    background-size: cover;
    background-position: center;
}

.img-2 {
    background-image: url('https://images.unsplash.com/photo-1534438327276-14e5300c3a48?w=800&q=80');
    background-size: cover;
    background-position: center;
}

.img-3 {
    background-image: url('https://images.unsplash.com/photo-1581009146145-b5ef050c2e1e?w=800&q=80');
    background-size: cover;
    grid-column: span 2;
    aspect-ratio: 21/9;
    background-position: center;
}

/* -------------------- LOCATION -------------------- */
.location {
    padding: 5rem 0;
}

.location-card {
    background: #16191D;
    display: grid;
    grid-template-columns: 1fr 1fr;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.location-info {
    padding: 2.5rem;
}

.location-info h2 {
    font-size: 1.8rem;
    margin-bottom: 0.4rem;
    letter-spacing: 1px;
}

.address {
    font-size: 1rem;
    margin: 0.75rem 0 1.8rem;
    border-left: 2px solid #DD8520;
    padding-left: 1rem;
}

.info-item {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.info-item i {
    color: #DD8520;
}

.label {
    font-size: 0.7rem;
    letter-spacing: 1px;
    color: #DD8520;
    margin-bottom: 0.2rem;
}

.location-map .map-placeholder {
    background: #121212;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #777;
    font-size: 0.8rem;
    border-left: 1px solid rgba(255, 255, 255, 0.05);
}

/* -------------------- CTA -------------------- */
.cta-section {
    padding: 2rem 0 5rem;
}

.cta-banner {
    background: #16191D;
    padding: 3rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.cta-banner h2 {
    font-size: 2rem;
    margin-bottom: 0.8rem;
}

.cta-form {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0 1rem;
}

.cta-form input,
.cta-form select {
    padding: 0.8rem 1.2rem;
    background: #16191D;
    border: 1px solid #2A2A2A;
    color: #FFFFFF;
    font-size: 16px; /* Prevent iOS auto-zoom on focus */
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    min-width: 240px;
    outline: none;
    transition: border-color 0.3s ease;
}

.cta-form input:focus,
.cta-form select:focus {
    border-color: #DD8520;
}

.cta-form button {
    background: #DD8520;
    border: none;
    color: #16191D;
    font-weight: 600;
    cursor: pointer;
    padding: 0.8rem 2rem;
    font-size: 0.8rem;
}

.form-disclaimer {
    font-size: 0.7rem;
    opacity: 0.6;
}

/* -------------------- FOOTER -------------------- */
.footer {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2rem 0;
    background: #16191D;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer p {
    font-size: 0.75rem;
    color: #888;
}

.social-links a {
    margin-left: 1rem;
    color: #aaa;
    transition: 0.2s;
    display: inline-flex;
}

.social-links a:hover {
    color: #DD8520;
}

/* -------------------- REVEAL ANIMATIONS -------------------- */
[data-reveal] {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s cubic-bezier(0.2, 0.9, 0.4, 1.1), transform 0.5s ease;
}

[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

[data-reveal="left"] {
    transform: translateX(-25px);
}

[data-reveal="left"].revealed {
    transform: translateX(0);
}

[data-reveal="right"] {
    transform: translateX(25px);
}

[data-reveal="right"].revealed {
    transform: translateX(0);
}

/* ==================== RESPONSIVE OVERHAUL ====================
   Replaces the old sparse media queries. Covers all breakpoints.
   ============================================================ */

/* ---- Tablet / Small Desktop (≤900px) ---- */
@media (max-width: 900px) {

    /* NAV */
    .nav-links { display: none; }
    .mobile-menu-toggle { display: block; }
    .nav-cta { display: none; }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: #16191D;
        padding: 2rem;
        gap: 1.5rem;
        border-bottom: 1px solid #2A2A2A;
        text-align: center;
        z-index: 99;
    }

    /* mobile dropdown */
    .dropdown-content {
        position: static;
        box-shadow: none;
        border: none;
        background: rgba(255,255,255,0.04);
        opacity: 1;
        transform: none;
        display: none;
        margin-top: 0.5rem;
    }
    .dropdown.open .dropdown-content { display: block; }

    /* HERO */
    .hero { padding: 3rem 0 4rem; }
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    .hero-actions { justify-content: center; }
    h1 { font-size: 2.4rem; line-height: 1.15; }

    /* CONTAINER */
    .container { padding: 0 1.5rem; }

    /* ABOUT CARDS */
    .feature-grid { grid-template-columns: 1fr; gap: 1.2rem; }

    /* FACILITIES */
    .facilities-layout { grid-template-columns: 1fr; gap: 2rem; }
    .facilities-visual .grid-images { grid-template-columns: 1fr 1fr; }

    /* PRICING */
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 440px;
        margin-left: auto;
        margin-right: auto;
    }

    /* LOCATION */
    .location-card { grid-template-columns: 1fr; }
    .hex-map { min-height: 300px; }

    /* CTA FORM */
    .cta-banner { padding: 2rem 1.5rem; }
    .cta-form { flex-direction: column; align-items: stretch; }
    .cta-form input,
    .cta-form select { min-width: unset; width: 100%; }
    .cta-form button { width: 100%; }

    /* FOOTER */
    .footer-bottom { flex-direction: column; text-align: center; }
}

/* ---- Mobile (≤600px) ---- */
@media (max-width: 600px) {

    /* TYPOGRAPHY */
    h1 { font-size: 2rem; }
    h2, .section-title { font-size: 1.6rem; }
    .section-subtitle { font-size: 0.9rem; }

    /* NAVBAR */
    .nav-content { padding: 0.9rem 1rem; }
    .logo-img { width: 38px; height: 38px; }
    .logo-text { font-size: 0.95rem; letter-spacing: 1px; }

    /* HERO */
    .hero { padding: 2rem 0 3rem; }
    .hero-image-placeholder { height: 240px; }
    .glass-overlay {
        padding: 0.7rem 1.2rem;
        gap: 1.2rem;
        max-width: 90%;
    }
    .stat-value { font-size: 1rem; }
    .hero-actions { flex-direction: column; gap: 0.8rem; }
    .hero-actions .btn { width: 100%; text-align: center; }
    .badge { font-size: 0.65rem; margin-bottom: 1.2rem; }

    /* ABOUT */
    .about { padding: 3rem 0; }
    .section-header { margin-bottom: 2rem; }
    .feature-card { padding: 1.5rem 1.2rem; }

    /* FACILITIES */
    .facilities { padding: 3rem 0; }
    .check-list li { font-size: 0.85rem; }
    .facilities-visual .grid-images { grid-template-columns: 1fr; }
    .img-3 { grid-column: span 1; aspect-ratio: 16/9; }
    .grid-img { aspect-ratio: 16/9; }

    /* MEMBERSHIP */
    .membership { padding: 3rem 0; }
    .pricing-card { padding: 2rem 1.5rem; }
    .pricing-card .price { font-size: 2rem; }
    .pricing-card.featured::after { display: none; }

    /* LOCATION */
    .location { padding: 3rem 0; }
    .location-info { padding: 1.5rem; }
    .location-info h2 { font-size: 1.4rem; }
    .hex-map { min-height: 250px; }

    /* CTA */
    .cta-section { padding: 1rem 0 3rem; }
    .cta-banner { padding: 1.5rem 1rem; }
    .cta-banner h2 { font-size: 1.4rem; }

    /* FRANCHISE FORM */
    .vertical-form { padding: 1.5rem 1rem; }

    /* FOOTER */
    .footer { padding: 1.5rem 0; }
    .social-links a { margin-left: 0.6rem; }

    /* TICKER – hide on small screens */
    .ticker-wrap { display: none; }

    /* SUBPAGE HERO */
    .page-hero { padding: 5rem 0 2.5rem; }
    .page-hero h1 { font-size: 2rem; }
}

/* ---- iPhone & small phones (≤390px) ---- */
@media (max-width: 390px) {

    /* Scale down typography further */
    h1 { font-size: 1.7rem; }
    h2, .section-title { font-size: 1.4rem; }

    /* Prevent oversized logo from overflowing */
    .logo-text { font-size: 0.85rem; letter-spacing: 0.5px; }
    .logo-img { width: 32px; height: 32px; }

    /* Very small hero */
    .hero { padding: 1.5rem 0 2.5rem; }
    .hero-image-placeholder { height: 200px; }

    /* Stat bar inside hero image */
    .glass-overlay { gap: 0.8rem; padding: 0.6rem 1rem; }
    .stat-value { font-size: 0.85rem; }
    .stat-label { font-size: 0.65rem; }

    /* Tighter container */
    .container { padding: 0 1rem; }

    /* CTA form */
    .cta-banner h2 { font-size: 1.2rem; }
    .cta-form input,
    .cta-form select,
    .cta-form button { padding: 0.7rem 1rem; }

    /* Membership cards */
    .pricing-card .price { font-size: 1.7rem; }
}

/* ---- Disable parallax fly-in on mobile — iOS Safari cannot clip transforms ---- */
@media (max-width: 900px) {
    .img-1, .img-2, .img-3 {
        /* Reset any scroll-driven transforms that cause horizontal overflow on iOS */
        transform: none !important;
        opacity: 1 !important;
    }
}

/* ---- iOS Safari-specific fixes ---- */
@supports (-webkit-touch-callout: none) {
    /* Fixes tap highlight on interactive elements */
    a, button { -webkit-tap-highlight-color: transparent; }

    /* Safari ignores border-radius on grid children sometimes */
    .grid-img { -webkit-mask-image: -webkit-radial-gradient(white, black); }

    /* Fix 100vh on iPhone (Safari toolbar shrinks viewport) */
    .hero {
        min-height: calc(100svh - 140px);
        padding: 2rem 0;
    }
}

/* -------------------- NEW PAGES -------------------- */
.page-hero {
    padding: 8rem 0 4rem;
    text-align: center;
    background: radial-gradient(circle at 50% -20%, rgba(221, 133, 32, 0.15), transparent 60%);
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 5rem;
}

.product-card {
    background: #16191D;
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-8px);
    border-color: rgba(221, 133, 32, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.product-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    background: #16191D;
    margin-bottom: 1.5rem;
    border-radius: 8px;
}

.product-title {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #FFF;
}

.product-price {
    color: #DD8520;
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.btn-add {
    width: 100%;
    text-align: center;
    margin-top: auto;
}

.text-content {
    max-width: 800px;
    margin: 0 auto 5rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #CCC;
}

.text-content h2 {
    color: #FFF;
    margin: 2rem 0 1rem;
    font-size: 1.8rem;
}

.legacy-timeline {
    border-left: 2px solid #DD8520;
    padding-left: 2rem;
    margin: 3rem auto;
    max-width: 800px;
}

.timeline-item {
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: calc(-2rem - 11px);
    top: 0;
    width: 20px;
    height: 20px;
    background: #16191D;
    border: 4px solid #DD8520;
    border-radius: 50%;
    box-sizing: border-box;
}

.timeline-year {
    color: #DD8520;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

@keyframes pulse-ring {
    0% {
        box-shadow: 0 0 0 0 rgba(221, 133, 32, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(221, 133, 32, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(221, 133, 32, 0);
    }
}

.timeline-pulse::before {
    animation: pulse-ring 2s infinite;
    background: #DD8520;
}


.hex-map {
    width: 100%;
    height: 100%;
    min-height: 450px;
    border-radius: 12px;
    filter: grayscale(100%) invert(90%) contrast(85%);
    transition: filter 0.4s ease;
}

.hex-map:hover {
    filter: grayscale(80%) invert(90%) contrast(100%);
}

/* -------------------- BRANDING & MEMBERSHIP -------------------- */
.tm {
    font-size: 0.72em;
    vertical-align: super;
    margin-left: 2px;
    color: inherit;
    opacity: 0.9;
}

.membership {
    padding: 100px 0;
    background: #16191D;
    position: relative;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-card {
    background: #16191D;
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 3rem 2rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: #DD8520;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.pricing-card.featured {
    border-color: #DD8520;
    background: radial-gradient(circle at top right, rgba(221, 133, 32, 0.1), transparent);
}

.pricing-card.featured::after {
    content: 'BEST VALUE';
    position: absolute;
    top: 18px;
    right: -35px;
    background: #DD8520;
    color: #16191D;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 40px;
    transform: rotate(45deg);
    font-family: 'Bank Gothic', sans-serif;
}

.pricing-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: #FFF;
}

.pricing-card .price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #DD8520;
    margin-bottom: 2rem;
    display: block;
    font-family: 'Inter', sans-serif;
}

.pricing-card .price span {
    font-size: 0.9rem;
    color: #888;
    font-weight: 400;
    text-transform: none;
    font-family: 'Inter', sans-serif;
}

.pricing-card ul {
    list-style: none;
    margin-bottom: 2.5rem;
    text-align: left;
    flex-grow: 1;
}

.pricing-card ul li {
    margin-bottom: 1rem;
    color: #BBB;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.7rem;
}

.pricing-card ul li i {
    color: #DD8520;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.vertical-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem auto;
    max-width: 600px;
    background: #16191D;
    padding: 3rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.vertical-form input,
.vertical-form select {
    width: 100%;
    padding: 1rem 1.2rem;
    background: #16191D;
    border: 1px solid #2A2A2A;
    border-radius: 4px;
    color: #FFF;
    font-size: 16px; /* Prevent iOS auto-zoom on focus */
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.vertical-form input:focus,
.vertical-form select:focus {
    border-color: #DD8520;
    outline: none;
}