/* =====================================================
   LANDING: Divertiland Relay by Seven — /start
   Pagina EVENIMENTULUI (big picture, 3 probe, festival)
   Design: mobile-first, dark theme premium
   Palette: orange #FF4500 × cyan #00D4FF
   Fonts: Bebas Neue (display) + Inter (body)
   ===================================================== */

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

:root {
    --color-primary: #FF4500;
    --color-primary-dim: rgba(255, 69, 0, 0.15);
    --color-secondary: #00D4FF;
    --color-secondary-dim: rgba(0, 212, 255, 0.12);
    --bg-dark: #0A0E1A;
    --bg-darker: #050812;
    --text-primary: #F5F5F5;
    --text-secondary: rgba(245, 245, 245, 0.65);
    --text-muted: rgba(245, 245, 245, 0.45);
    --border-subtle: rgba(255, 255, 255, 0.08);
    --font-display: 'Bebas Neue', sans-serif;
    --font-body: 'Inter', sans-serif;
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-darker);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

/* ---- CONTAINERS ---- */
.lr-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.lr-container--narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ---- SECTION BASE ---- */
.lr-section {
    padding: 80px 0;
    position: relative;
}

/* ---- REVEAL ANIMATIONS ---- */
.lr-reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.lr-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}
.lr-d1 { transition-delay: 0.1s; }
.lr-d2 { transition-delay: 0.2s; }
.lr-d3 { transition-delay: 0.3s; }
.lr-d4 { transition-delay: 0.4s; }

/* ---- BUTTONS ---- */
.lr-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
    border-radius: 6px;
    transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), filter 0.2s var(--ease);
}
.lr-btn-primary {
    background: var(--color-primary);
    color: var(--text-primary);
    padding: 16px 36px;
    box-shadow: 0 4px 20px rgba(255, 69, 0, 0.3);
}
.lr-btn-primary:hover {
    filter: brightness(1.1);
    box-shadow: 0 8px 32px rgba(255, 69, 0, 0.45);
    transform: translateY(-2px);
}
.lr-btn-secondary {
    background: rgba(255, 255, 255, 0.06);
    color: var(--text-primary);
    padding: 16px 36px;
    border: 1px solid var(--border-subtle);
}
.lr-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}
.lr-btn-outline {
    background: transparent;
    color: var(--text-primary);
    padding: 16px 36px;
    border: 1px solid rgba(255, 255, 255, 0.25);
}
.lr-btn-outline:hover {
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
}
.lr-btn-lg {
    padding: 18px 44px;
    font-size: 15px;
}
.lr-btn-race {
    width: 100%;
    margin-top: auto;
}

.lr-link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 15px;
    font-weight: 600;
    color: var(--color-secondary);
    text-decoration: none;
    transition: gap 0.2s var(--ease);
}
.lr-link-arrow:hover {
    gap: 12px;
}

/* ---- SHARED ---- */
.lr-mini-headline {
    font-family: var(--font-display);
    font-size: clamp(28px, 5vw, 44px);
    line-height: 1.1;
    letter-spacing: 0.02em;
    color: var(--text-primary);
}
.lr-body {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-secondary);
}
.lr-section-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 6vw, 52px);
    line-height: 1.1;
    letter-spacing: 0.02em;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 48px;
}
.lr-image-placeholder {
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(255, 69, 0, 0.08), rgba(0, 212, 255, 0.08));
    border: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.lr-image-placeholder span {
    font-family: var(--font-display);
    font-size: 28px;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.06);
}

/* =====================================================
   S1. HERO
   ===================================================== */
.lr-hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: var(--bg-dark);
}
.lr-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.lr-hero-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    z-index: 0;
}
.lr-hero-gradient {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        radial-gradient(ellipse 80% 60% at 50% 30%, rgba(255, 69, 0, 0.06) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 20% 80%, rgba(0, 212, 255, 0.04) 0%, transparent 50%),
        linear-gradient(180deg, rgba(5, 8, 18, 0.7) 0%, rgba(5, 8, 18, 0.8) 100%);
}
.lr-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
        rgba(5, 8, 18, 0.45) 0%,
        rgba(5, 8, 18, 0.35) 40%,
        rgba(5, 8, 18, 0.7) 70%,
        rgba(5, 8, 18, 0.95) 100%);
    z-index: 2;
}
.lr-hero-content {
    position: relative;
    z-index: 2;
    padding: 0 20px;
    max-width: 800px;
}
.lr-hero-logo {
    max-width: 360px;
    height: auto;
    margin: 0 auto 0;
    filter: drop-shadow(0 0 24px rgba(0, 212, 255, 0.15)) drop-shadow(0 0 60px rgba(255, 69, 0, 0.08));
    animation: lr-float 5s ease-in-out infinite;
}
@keyframes lr-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}
.lr-hero-separator {
    width: 140px;
    height: 1px;
    margin: 24px auto 28px;
    border: none;
    background: linear-gradient(90deg, transparent, var(--color-secondary), transparent);
    opacity: 0.5;
}
.lr-hero-headline {
    font-family: var(--font-display);
    font-size: clamp(40px, 9vw, 72px);
    line-height: 1.05;
    letter-spacing: 0.02em;
    color: var(--text-primary);
    margin-bottom: 24px;
}
.lr-hero-sub {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-secondary);
    max-width: 560px;
    margin: 0 auto 16px;
}
.lr-hero-tagline {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--color-secondary);
    margin-bottom: 32px;
}
.lr-hero-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}
.lr-hero-actions .lr-btn {
    width: 100%;
    max-width: 320px;
}

.lr-scroll-indicator {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: rgba(245, 245, 245, 0.35);
    animation: lr-bounce 2.4s ease-in-out infinite;
}
@keyframes lr-bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* =====================================================
   S2. CELE 3 PROBE
   ===================================================== */
.lr-races {
    background: var(--bg-darker);
}
.lr-races-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.lr-race-card {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.lr-race-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}
.lr-race-card--primary {
    border-color: var(--color-primary);
    background: rgba(255, 69, 0, 0.04);
    box-shadow: 0 0 40px rgba(255, 69, 0, 0.06);
}
.lr-race-badge {
    position: absolute;
    top: -1px;
    left: 24px;
    transform: translateY(-50%);
    background: var(--color-primary);
    color: var(--text-primary);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 5px 16px;
    border-radius: 50px;
    white-space: nowrap;
}
.lr-race-icon {
    color: var(--color-secondary);
    margin-bottom: 4px;
}
.lr-race-card--primary .lr-race-icon {
    color: var(--color-primary);
}
.lr-race-title {
    font-family: var(--font-display);
    font-size: 28px;
    letter-spacing: 0.02em;
    color: var(--text-primary);
    line-height: 1.1;
}
.lr-race-tag {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--color-secondary);
}
.lr-race-card--primary .lr-race-tag {
    color: var(--color-primary);
}
.lr-race-desc {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-secondary);
    flex: 1;
}
.lr-race-price {
    font-size: 14px;
    color: var(--text-muted);
    padding-top: 12px;
    border-top: 1px solid var(--border-subtle);
}
.lr-race-price strong {
    color: var(--text-primary);
    font-size: 16px;
}

/* =====================================================
   S3. SEVEN RELAY HIGHLIGHT
   ===================================================== */
.lr-highlight {
    background: var(--bg-dark);
}
.lr-highlight-inner {
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.lr-highlight-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.lr-steps-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.lr-step-card {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-subtle);
    border-radius: 12px;
    padding: 28px 20px;
    overflow: hidden;
    transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.lr-step-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}
.lr-step-number {
    position: absolute;
    top: -10px;
    right: 12px;
    font-family: var(--font-display);
    font-size: 100px;
    line-height: 1;
    color: rgba(255, 255, 255, 0.04);
    pointer-events: none;
    user-select: none;
}
.lr-step-title {
    font-family: var(--font-display);
    font-size: 24px;
    letter-spacing: 0.02em;
    color: var(--color-secondary);
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
}
.lr-step-text {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-secondary);
    position: relative;
    z-index: 1;
}
.lr-highlight-cta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

/* =====================================================
   S4. FESTIVAL DIVERTILAND
   ===================================================== */
.lr-festival {
    background: var(--bg-darker);
    overflow: hidden;
}
.lr-festival-text {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-secondary);
    text-align: center;
    max-width: 680px;
    margin: 0 auto 48px;
}
.lr-festival-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.lr-festival-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.lr-festival-item .lr-image-placeholder {
    aspect-ratio: 1;
    border-radius: 12px;
}
.lr-festival-item p {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
    text-align: center;
}

/* =====================================================
   S5. SOCIAL PROOF
   ===================================================== */
.lr-proof {
    background: var(--bg-dark);
    padding: 100px 0;
    overflow: hidden;
    text-align: center;
}
.lr-proof-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, var(--bg-dark), rgba(10, 14, 26, 0.3) 50%, var(--bg-dark)),
        radial-gradient(ellipse 70% 50% at 50% 50%, rgba(0, 212, 255, 0.06) 0%, transparent 65%);
    z-index: 0;
}
.lr-proof-content {
    position: relative;
    z-index: 1;
}
.lr-proof-main {
    margin-bottom: 48px;
}
.lr-proof-number {
    font-family: var(--font-display);
    font-size: clamp(72px, 15vw, 120px);
    line-height: 1;
    letter-spacing: 0.02em;
    color: var(--color-secondary);
    display: block;
    margin-bottom: 12px;
}
.lr-proof-label {
    font-size: 18px;
    color: var(--text-primary);
    font-weight: 500;
}
.lr-proof-secondary {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}
.lr-proof-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}
.lr-proof-stat-number {
    font-family: var(--font-display);
    font-size: 40px;
    color: var(--color-secondary);
    line-height: 1;
}
.lr-proof-stat-label {
    font-size: 14px;
    color: var(--text-secondary);
    text-align: center;
    max-width: 280px;
}

/* =====================================================
   S6. PREȚURI — TABEL COMPLET
   ===================================================== */
.lr-pricing {
    background: var(--bg-darker);
}

/* Mobile: stacked cards per race */
.lr-pricing-full {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.lr-pricing-header {
    display: none;
}
.lr-pricing-row {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.lr-pricing-row--primary {
    border-color: var(--color-primary);
    background: rgba(255, 69, 0, 0.04);
}
.lr-pricing-cell--label {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-subtle);
}
.lr-pricing-cell--label strong {
    font-family: var(--font-display);
    font-size: 24px;
    letter-spacing: 0.02em;
    color: var(--text-primary);
}
.lr-pricing-cell--label span {
    font-size: 13px;
    color: var(--text-muted);
}
.lr-pricing-cell--price {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 12px 0;
}
.lr-pricing-amount {
    font-family: var(--font-display);
    font-size: 44px;
    line-height: 1;
    color: var(--text-primary);
}
.lr-pricing-amount small {
    font-size: 20px;
    color: var(--text-secondary);
}
.lr-pricing-sub {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
}
.lr-pricing-period {
    font-size: 12px;
    color: var(--text-muted);
}
.lr-pricing-cell--active {
    position: relative;
}
.lr-pricing-cell--active::before {
    content: 'Activ';
    display: inline-block;
    background: var(--color-primary);
    color: var(--text-primary);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 50px;
    margin-bottom: 6px;
}

.lr-pricing-note {
    text-align: center;
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 24px;
    margin-bottom: 40px;
}
.lr-pricing-cta {
    text-align: center;
}
.lr-pricing-cta .lr-btn {
    width: 100%;
    max-width: 480px;
}
.lr-pricing-badge {
    display: none;
}

/* =====================================================
   S7. FAQ
   ===================================================== */
.lr-faq {
    background: var(--bg-dark);
}
.lr-faq-list {
    display: flex;
    flex-direction: column;
}
.lr-faq-item {
    border-bottom: 1px solid var(--border-subtle);
}
.lr-faq-item:first-child {
    border-top: 1px solid var(--border-subtle);
}
.lr-faq-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 0;
    background: none;
    border: none;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    min-height: 48px;
    transition: color 0.2s;
}
.lr-faq-trigger:hover {
    color: var(--color-secondary);
}
.lr-faq-chevron {
    flex-shrink: 0;
    color: var(--text-muted);
    transition: transform 0.3s var(--ease);
}
.lr-faq-item.is-open .lr-faq-chevron {
    transform: rotate(180deg);
}
.lr-faq-answer {
    overflow: hidden;
}
.lr-faq-answer p {
    padding-bottom: 20px;
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-secondary);
}

/* =====================================================
   S8. CTA FINAL
   ===================================================== */
.lr-final {
    min-height: 80vh;
    min-height: 80dvh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 80px 0 0;
    background: var(--bg-darker);
    overflow: hidden;
}
.lr-final-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 50% at 50% 50%, rgba(255, 69, 0, 0.06) 0%, transparent 60%),
        radial-gradient(ellipse 50% 40% at 30% 60%, rgba(0, 212, 255, 0.04) 0%, transparent 50%);
    z-index: 0;
}
.lr-final-content {
    position: relative;
    z-index: 1;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
}
.lr-final-headline {
    font-family: var(--font-display);
    font-size: clamp(32px, 7vw, 64px);
    line-height: 1.1;
    letter-spacing: 0.02em;
    color: var(--text-primary);
    margin-bottom: 16px;
    max-width: 600px;
}
.lr-final-sub {
    font-size: 17px;
    color: var(--text-secondary);
    margin-bottom: 36px;
}
.lr-final-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    max-width: 400px;
    margin-bottom: 40px;
}
.lr-final-actions .lr-btn {
    width: 100%;
}
.lr-final-tagline {
    font-size: 16px;
    font-weight: 300;
    font-style: italic;
    color: var(--color-secondary);
    letter-spacing: 0.06em;
    margin-bottom: 40px;
    opacity: 0.8;
}
.lr-final-logo {
    width: 64px;
    height: 64px;
    object-fit: contain;
    opacity: 0.5;
    filter: grayscale(0.3);
}

/* Footer */
.lr-footer {
    position: relative;
    z-index: 1;
    width: 100%;
    border-top: 1px solid var(--border-subtle);
    padding: 24px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}
.lr-footer-logo {
    width: 28px;
    height: 28px;
    object-fit: contain;
    opacity: 0.4;
}
.lr-footer-link {
    font-size: 12px;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
}
.lr-footer-link:hover {
    color: var(--text-primary);
}

/* =====================================================
   MOBILE STICKY CTA
   ===================================================== */
.lr-sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 12px 16px;
    padding-bottom: calc(12px + env(safe-area-inset-bottom, 0px));
    background: rgba(5, 8, 18, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid var(--border-subtle);
    transform: translateY(100%);
    transition: transform 0.3s var(--ease);
}
.lr-sticky-cta.is-visible {
    transform: translateY(0);
}
.lr-btn-sticky {
    width: 100%;
    padding: 14px 24px;
}

/* =====================================================
   DESKTOP BREAKPOINTS
   ===================================================== */

/* Tablet 768px+ */
@media (min-width: 768px) {
    .lr-container { padding: 0 40px; }
    .lr-container--narrow { padding: 0 40px; }
    .lr-section { padding: 120px 0; }

    /* Hero */
    .lr-hero-headline {
        font-size: clamp(52px, 8vw, 72px);
    }
    .lr-hero-sub {
        font-size: 18px;
    }
    .lr-hero-actions {
        flex-direction: row;
        justify-content: center;
    }
    .lr-hero-actions .lr-btn {
        width: auto;
    }

    /* Races grid */
    .lr-races-grid {
        flex-direction: row;
        gap: 20px;
    }
    .lr-race-card {
        flex: 1;
        padding: 36px 28px;
    }

    /* Steps grid */
    .lr-steps-grid {
        flex-direction: row;
        gap: 16px;
    }
    .lr-step-card {
        flex: 1;
    }

    /* Highlight CTA */
    .lr-highlight-cta {
        flex-direction: row;
        align-items: center;
    }

    /* Festival grid */
    .lr-festival-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 20px;
    }

    /* Social proof secondary */
    .lr-proof-secondary {
        flex-direction: row;
        justify-content: center;
        gap: 64px;
    }

    /* Pricing table: desktop layout */
    .lr-pricing-full {
        gap: 0;
    }
    .lr-pricing-header {
        display: grid;
        grid-template-columns: 1.8fr repeat(3, 1fr);
        gap: 0;
        margin-bottom: 0;
    }
    .lr-pricing-header-cell {
        font-family: var(--font-display);
        font-size: 20px;
        letter-spacing: 0.04em;
        color: var(--text-secondary);
        text-align: center;
        padding: 20px 12px;
        border-bottom: 1px solid var(--border-subtle);
    }
    .lr-pricing-header-cell:first-child {
        text-align: left;
    }
    .lr-pricing-header-cell--active {
        color: var(--text-primary);
        position: relative;
    }
    .lr-pricing-header-cell--active .lr-pricing-badge {
        display: inline-block;
        position: static;
        transform: none;
        font-size: 9px;
        padding: 3px 8px;
        margin-bottom: 4px;
        background: var(--color-primary);
        color: var(--text-primary);
        font-weight: 700;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        border-radius: 50px;
    }
    .lr-pricing-row {
        display: grid;
        grid-template-columns: 1.8fr repeat(3, 1fr);
        gap: 0;
        border-radius: 0;
        padding: 0;
        background: transparent;
        border: none;
        border-bottom: 1px solid var(--border-subtle);
        align-items: center;
    }
    .lr-pricing-row--primary {
        background: rgba(255, 69, 0, 0.03);
        border-color: var(--border-subtle);
    }
    .lr-pricing-cell--label {
        padding: 24px 16px 24px 0;
        border-bottom: none;
    }
    .lr-pricing-cell--price {
        padding: 24px 12px;
        border-left: 1px solid var(--border-subtle);
    }
    .lr-pricing-cell--active::before {
        display: none;
    }
    .lr-pricing-amount {
        font-size: 36px;
    }

    /* CTA final */
    .lr-final-actions {
        flex-direction: row;
        max-width: none;
        width: auto;
        gap: 16px;
    }
    .lr-final-actions .lr-btn {
        width: auto;
    }

    /* Sticky CTA hidden on desktop */
    .lr-sticky-cta {
        display: none;
    }
}

/* Desktop 1024px+ */
@media (min-width: 1024px) {
    .lr-container { padding: 0 48px; }
    .lr-container--narrow { padding: 0 48px; }
    .lr-section { padding: 140px 0; }

    .lr-hero-sub {
        font-size: 18px;
        line-height: 1.8;
    }

    .lr-race-card {
        padding: 40px 32px;
    }
    .lr-race-title {
        font-size: 32px;
    }

    .lr-step-card {
        padding: 32px 24px;
    }
    .lr-step-number {
        font-size: 120px;
    }

    .lr-faq-trigger {
        font-size: 17px;
        padding: 24px 0;
    }

    .lr-final-headline {
        font-size: 64px;
    }
}

/* Large desktop 1280px+ */
@media (min-width: 1280px) {
    .lr-races-grid {
        gap: 28px;
    }
    .lr-steps-grid {
        gap: 20px;
    }
}
