/* ==========================================================================
   FLEX FITNESS — LANDING PAGE TEMPLATE SYSTEM
   Master Stylesheet v2.0
   Event: Run for Delta (Race Day Sponsor Special)
   ========================================================================== */

/* ---------- Design Tokens ---------- */
:root {
    /* Brand Colors */
    --green: #4db848;
    --green-dark: #3da03a;
    --green-glow: rgba(77, 184, 72, 0.35);
    --green-subtle: rgba(77, 184, 72, 0.12);
    --navy: #07122a;
    --navy-light: #0e1d3a;
    --navy-mid: #162849;
    --white: #ffffff;
    --off-white: #f6f7f9;
    --text: #333333;
    --text-light: #6b7280;
    --border: #e2e5ea;

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --section-pad: 80px;
    --container-max: 1140px;

    /* Motion */
    --ease: cubic-bezier(0.25, 0.8, 0.25, 1);
    --speed: 0.3s;
}

/* ---------- Reset ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; font-family: inherit; }

/* ---------- Utilities ---------- */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}
.sr-only {
    position: absolute; width: 1px; height: 1px;
    padding: 0; margin: -1px; overflow: hidden;
    clip: rect(0,0,0,0); border: 0;
}
.accent { color: var(--green); }

/* ==========================================================================
   TOP BAR — Logo + Event Badge + Phone
   ========================================================================== */
.top-bar {
    background: var(--navy);
    padding: 14px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.top-bar-logo img {
    height: 42px;
    width: auto;
    object-fit: contain;
}

.top-bar-sponsor-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(77, 184, 72, 0.12);
    border: 1px solid rgba(77, 184, 72, 0.3);
    border-radius: 50px;
    padding: 6px 14px;
    color: var(--green);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.sponsor-dot {
    width: 8px;
    height: 8px;
    background: var(--green);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--green);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.85); }
}

.top-bar-phone {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--white);
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: 0.5px;
}

.top-bar-phone i {
    color: var(--green);
    font-size: 1.1rem;
}

.top-bar-phone a {
    color: var(--white);
    transition: color var(--speed);
}

.top-bar-phone a:hover { color: var(--green); }

/* ==========================================================================
   HERO — Headline + Form Above the Fold
   ========================================================================== */
.hero {
    background: var(--navy);
    background-image: linear-gradient(rgba(7, 18, 42, 0.92), rgba(7, 18, 42, 0.95)), url('https://dogpark.flexfitnessclubs.com/assets/gym floor flex.jpg');
    background-size: cover;
    background-position: center;
    padding: 56px 0 68px;
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 48px;
    align-items: center;
}

/* Left Column */
.hero-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.campaign-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--green-subtle);
    border: 1px solid rgba(77, 184, 72, 0.35);
    border-radius: 50px;
    padding: 6px 16px;
    color: var(--green);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero-headline {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.hero-lead {
    font-size: 1.12rem;
    color: #cbd5e1;
    line-height: 1.65;
    margin-bottom: 22px;
    max-width: 520px;
}

/* Value Highlights Grid */
.hero-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 14px;
    margin-bottom: 22px;
    width: 100%;
    max-width: 520px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 700;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 9px 14px;
    border-radius: 8px;
    backdrop-filter: blur(6px);
}

.highlight-item i {
    color: var(--green);
    font-size: 0.9rem;
}

.location-micro {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #94a3b8;
    font-size: 0.85rem;
    font-weight: 500;
    margin-top: 14px;
}

.location-micro i {
    color: var(--green);
}

.offer-headline {
    font-family: var(--font-heading);
    font-size: 2.1rem;
    font-weight: 900;
    color: var(--white);
    letter-spacing: 0.5px;
    line-height: 1.15;
}

.offer-subtitle {
    color: #e2e8f0;
    font-size: 0.95rem;
    font-weight: 500;
    margin-top: 4px;
}

.offer-note {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 8px;
    font-style: italic;
}

/* Trust Row */
.trust-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 6px;
}

.google-stars {
    display: flex;
    gap: 2px;
    color: #f59e0b;
    font-size: 1rem;
}

.trust-text {
    color: #e2e8f0;
    font-size: 0.92rem;
}

/* Right Column: Form Card */
.hero-form-card {
    background: var(--white);
    border-radius: 16px;
    padding: 34px 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.15);
    position: relative;
}

.form-header-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--green-dark);
    background: var(--green-subtle);
    border: 1px solid rgba(77, 184, 72, 0.25);
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 12px;
}

.form-title {
    font-family: var(--font-heading);
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 4px;
}

.form-subtitle {
    font-size: 0.88rem;
    color: var(--text-light);
    margin-bottom: 22px;
}

.lead-form.hidden { display: none; }

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.form-group {
    margin-bottom: 14px;
    position: relative;
}

.form-group label {
    display: block;
    font-size: 0.82rem;
    font-weight: 700;
    color: #334155;
    margin-bottom: 6px;
}

.form-group input,
.custom-select {
    width: 100%;
    padding: 13px 15px;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text);
    transition: border-color var(--speed), box-shadow var(--speed);
    outline: none;
    background: #ffffff;
}

.custom-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%236b7280' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: calc(100% - 16px) center;
}

.form-group input:focus,
.custom-select:focus {
    border-color: var(--green);
    box-shadow: 0 0 0 3px var(--green-glow);
}

.optional-tag {
    font-weight: 400;
    color: var(--text-light);
    font-size: 0.75rem;
}

.submit-btn {
    width: 100%;
    padding: 16px 20px;
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: 0.8px;
    border-radius: 8px;
    margin-top: 8px;
    transition: transform var(--speed), box-shadow var(--speed);
    box-shadow: 0 6px 20px var(--green-glow);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(77, 184, 72, 0.5);
}

.form-privacy {
    font-size: 0.75rem;
    color: var(--text-light);
    text-align: center;
    margin-top: 12px;
}

.form-privacy i {
    color: var(--green);
    margin-right: 4px;
}

/* Form Success */
.form-success {
    display: none;
    text-align: center;
    padding: 20px 0;
}

.form-success.active { display: block; }

.success-icon {
    font-size: 3rem;
    color: var(--green);
    margin-bottom: 12px;
}

.form-success h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 6px;
}

.success-congrats {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.voucher-box {
    margin: 20px 0;
    background: var(--navy);
    border: 2px dashed rgba(77, 184, 72, 0.5);
    border-radius: 12px;
    padding: 22px;
    text-align: center;
}

.voucher-label {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: #94a3b8;
    margin-bottom: 6px;
}

.voucher-code {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 900;
    letter-spacing: 2px;
    color: var(--green);
    margin-bottom: 6px;
}

.voucher-status {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--white);
}

.success-instructions {
    text-align: left;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 16px 20px;
    margin-bottom: 20px;
}

.success-instructions h4 {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #0f172a;
}

.success-instructions ol {
    margin-left: 20px;
    font-size: 0.85rem;
    line-height: 1.5;
    color: #475569;
}

.success-instructions li {
    margin-bottom: 6px;
}

.direction-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px;
    background: var(--navy);
    color: #ffffff;
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 8px;
    transition: background 0.2s;
}

.direction-btn:hover {
    background: var(--navy-mid);
    color: var(--green);
}

/* ==========================================================================
   3-STEP SECTION (Direct Match to Poster)
   ========================================================================== */
.race-steps-section {
    padding: var(--section-pad) 0;
    background: #0a1731;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.section-title-wrap {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 50px;
}

.sub-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--green);
    background: var(--green-subtle);
    border: 1px solid rgba(77, 184, 72, 0.3);
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 12px;
}

.section-title-wrap h2 {
    font-family: var(--font-heading);
    font-size: 2.3rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 12px;
}

.section-title-wrap p {
    color: #94a3b8;
    font-size: 1.05rem;
}

.race-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.race-step-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 36px 28px;
    position: relative;
    text-align: center;
    transition: transform 0.3s, border-color 0.3s;
}

.race-step-card:hover {
    transform: translateY(-6px);
    border-color: rgba(77, 184, 72, 0.4);
}

.step-num {
    position: absolute;
    top: -16px;
    left: 28px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--green);
    color: #ffffff;
    font-family: var(--font-heading);
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    box-shadow: 0 4px 12px var(--green-glow);
}

.step-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--green-subtle);
    color: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 20px;
}

.race-step-card h3 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
}

.race-step-card p {
    color: #94a3b8;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ==========================================================================
   FEATURES SHOWCASE (Alternating Rows)
   ========================================================================== */
.features-showcase {
    padding: var(--section-pad) 0;
    background: var(--off-white);
}

.showcase-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 60px;
}

.showcase-header h2 {
    font-family: var(--font-heading);
    font-size: 2.3rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 10px;
}

.showcase-header p {
    color: var(--text-light);
    font-size: 1.05rem;
}

.showcase-row {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
    margin-bottom: 56px;
}

.showcase-row:last-child { margin-bottom: 0; }

.showcase-row.flipped {
    grid-template-columns: 0.9fr 1.1fr;
}

.showcase-row.flipped .showcase-image { order: 2; }
.showcase-row.flipped .showcase-text { order: 1; }

.showcase-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.1);
}

.showcase-image img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    display: block;
}

.image-badge {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: rgba(7, 18, 42, 0.88);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(77, 184, 72, 0.4);
    color: #ffffff;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.showcase-text {
    padding: 10px 0;
}

.showcase-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: var(--green-subtle);
    color: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 16px;
}

.fire-icon {
    background: rgba(249, 115, 22, 0.12);
    color: #ea580c;
}

.feature-tagline {
    color: var(--green-dark);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin-bottom: 10px;
}

.showcase-text h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 8px;
}

.showcase-text p {
    color: var(--text);
    font-size: 1rem;
    line-height: 1.7;
}

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.testimonials {
    padding: var(--section-pad) 0;
    background: var(--white);
}

.testimonials-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 50px;
}

.testimonials-header h2 {
    font-family: var(--font-heading);
    font-size: 2.3rem;
    font-weight: 800;
    color: var(--navy);
}

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

.testimonial-card {
    background: var(--off-white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px 26px;
    display: flex;
    flex-direction: column;
}

.testimonial-stars {
    color: #f59e0b;
    font-size: 0.95rem;
    margin-bottom: 16px;
    display: flex;
    gap: 2px;
}

.testimonial-text {
    font-size: 0.95rem;
    color: #334155;
    line-height: 1.7;
    margin-bottom: 20px;
    flex-grow: 1;
    font-style: italic;
}

.testimonial-author {
    font-weight: 700;
    color: var(--navy);
    font-size: 1rem;
}

.testimonial-meta {
    font-size: 0.82rem;
    color: var(--text-light);
    margin-top: 2px;
}

/* ==========================================================================
   LOCATION BANNER
   ========================================================================== */
.location-banner {
    padding: 30px 0 50px;
    background: var(--white);
}

.location-box {
    background: linear-gradient(135deg, #0e1d3a, #162849);
    border: 1px solid rgba(77, 184, 72, 0.25);
    border-radius: 16px;
    padding: 36px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.location-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--green);
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.location-content h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 6px;
}

.location-content p {
    color: #94a3b8;
    font-size: 0.95rem;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: linear-gradient(135deg, var(--green), var(--green-dark));
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 800;
    border-radius: 8px;
    box-shadow: 0 4px 16px var(--green-glow);
    transition: transform var(--speed);
    white-space: nowrap;
}

.cta-btn:hover {
    transform: translateY(-2px);
}

/* ==========================================================================
   BOTTOM CTA
   ========================================================================== */
.bottom-cta {
    background: var(--navy);
    background-image: linear-gradient(rgba(7, 18, 42, 0.94), rgba(7, 18, 42, 0.94)), url('https://dogpark.flexfitnessclubs.com/assets/gym floor flex.jpg');
    background-size: cover;
    background-position: center;
    padding: 70px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.bottom-cta h2 {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 12px;
}

.bottom-cta p {
    color: #cbd5e1;
    font-size: 1.1rem;
    margin-bottom: 28px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
    background: #040915;
    color: #94a3b8;
    padding: 50px 0 30px;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    padding-bottom: 30px;
}

.footer-logo img {
    height: 38px;
    width: auto;
    object-fit: contain;
}

.footer-address p {
    font-size: 0.9rem;
    line-height: 1.5;
}

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

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.1rem;
    transition: background var(--speed), color var(--speed);
}

.footer-social a:hover {
    background: var(--green);
    color: var(--white);
}

.footer-terms-box {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 18px 0;
    margin: 20px 0;
    color: #64748b;
    font-size: 0.8rem;
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
    font-size: 0.82rem;
    color: #64748b;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .hero-left {
        text-align: left;
        align-items: flex-start;
    }
    .campaign-badge {
        margin: 0 0 16px 0;
    }
    .trust-row {
        justify-content: flex-start;
    }
    .race-steps-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .showcase-row,
    .showcase-row.flipped {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
        margin-bottom: 48px !important;
    }
    .showcase-row .showcase-image,
    .showcase-row.flipped .showcase-image {
        order: 1 !important;
        width: 100% !important;
    }
    .showcase-row .showcase-text,
    .showcase-row.flipped .showcase-text {
        order: 2 !important;
        width: 100% !important;
        text-align: left !important;
        padding: 0 !important;
    }
    .showcase-icon { margin: 0 0 16px 0 !important; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .location-box {
        flex-direction: column;
        text-align: center;
    }
    .top-bar-sponsor-tag { display: none; }
}

@media (max-width: 768px) {
    :root { --section-pad: 48px; }
    .top-bar { padding: 10px 0; }
    .top-bar-logo img { height: 36px; }
    .top-bar-phone { font-size: 0.95rem; }
    
    .hero { padding: 28px 0 44px; }
    .hero-grid { gap: 28px; }
    
    .hero-headline {
        font-size: clamp(2.1rem, 8.5vw, 2.75rem);
        line-height: 1.08;
        letter-spacing: -0.5px;
        margin-bottom: 14px;
    }
    
    .hero-lead {
        font-size: 1rem;
        line-height: 1.55;
        color: #cbd5e1;
        margin-bottom: 18px;
    }
    
    .hero-highlights {
        grid-template-columns: 1fr;
        gap: 8px;
        margin-bottom: 18px;
    }
    
    .highlight-item {
        font-size: 0.88rem;
        padding: 8px 12px;
    }
    
    .trust-row {
        flex-wrap: wrap;
        gap: 8px;
        margin-top: 4px;
    }
    
    .trust-text {
        font-size: 0.88rem;
    }
    
    .location-micro {
        font-size: 0.8rem;
        line-height: 1.4;
        margin-top: 10px;
    }
    
    .hero-form-card {
        padding: 24px 18px;
        border-radius: 14px;
    }
    
    .form-title {
        font-size: 1.45rem;
    }
    
    .form-subtitle {
        font-size: 0.82rem;
        margin-bottom: 18px;
    }
    
    .form-group {
        margin-bottom: 12px;
    }
    
    .form-group input,
    .custom-select {
        padding: 12px 14px;
        font-size: 0.9rem;
    }
    
    .submit-btn {
        padding: 15px 18px;
        font-size: 0.95rem;
    }
    
    /* Mobile-optimized 3-Step checklist layout */
    .section-title-wrap {
        text-align: left;
        margin-bottom: 30px;
    }
    
    .section-title-wrap h2 {
        font-size: 1.85rem;
    }
    
    .race-step-card {
        padding: 20px 20px 20px 64px;
        text-align: left;
        border-radius: 12px;
    }
    
    .race-step-card .step-num {
        top: 20px;
        left: 18px;
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }
    
    .race-step-card .step-icon {
        display: none;
    }
    
    .race-step-card h3 {
        font-size: 1.15rem;
        margin-bottom: 4px;
    }
    
    .race-step-card p {
        font-size: 0.88rem;
        line-height: 1.5;
    }
    
    /* Showcase mobile refinements */
    .showcase-header {
        text-align: left;
        margin-bottom: 36px;
    }
    
    .showcase-header h2 {
        font-size: 1.85rem;
    }
    
    .showcase-row,
    .showcase-row.flipped {
        display: flex !important;
        flex-direction: column !important;
        margin-bottom: 44px !important;
        gap: 18px !important;
    }
    
    .showcase-image {
        width: 100% !important;
        border-radius: 14px !important;
        overflow: hidden !important;
    }
    
    .showcase-image img {
        width: 100% !important;
        height: auto !important;
        max-height: 380px !important;
        object-fit: cover !important;
        object-position: center 20% !important;
    }
    
    .showcase-text {
        width: 100% !important;
        padding: 4px 0 !important;
    }
    
    .showcase-text h3 {
        font-size: 1.55rem !important;
        line-height: 1.25 !important;
        margin-bottom: 8px !important;
    }
    
    .feature-tagline {
        font-size: 0.82rem !important;
        line-height: 1.4 !important;
        margin-bottom: 8px !important;
    }
    
    .showcase-text p {
        font-size: 0.95rem !important;
        line-height: 1.65 !important;
    }
    
    .testimonials-header {
        text-align: left;
        margin-bottom: 30px;
    }
    
    .testimonials-header h2 {
        font-size: 1.85rem;
    }
    
    .testimonial-card {
        padding: 24px 20px;
    }
    
    .bottom-cta {
        padding: 50px 0;
    }
    
    .bottom-cta h2 {
        font-size: 1.85rem;
    }
    
    .footer-inner {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .form-row { grid-template-columns: 1fr; }
    .hero-form-card { padding: 20px 14px; }
    .highlight-item { font-size: 0.84rem; }
}
