:root {
    color-scheme: light;
    --color-primary: #d92532;
    --color-primary-dark: #a31821;
    --color-dark: #101218;
    --color-muted: #606574;
    --color-light: #f5f6f9;
    --color-surface: #ffffff;
    --color-border: #e2e5ec;
    --font-base: 'Manrope', 'Segoe UI', Arial, sans-serif;
    --max-width: 1100px;
    --transition: 180ms ease;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: var(--font-base);
    color: var(--color-dark);
    background: var(--color-light);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
}

.wrapper {
    width: min(100%, var(--max-width));
    margin: 0 auto;
    padding: 0 1.5rem;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Top bar */
.top-bar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(16, 18, 24, 0.9);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar .wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 70px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #ffffff;
    line-height: 1.1;
}

.brand__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.14);
    padding: 10px;
    color: #ffffff;
}

.brand__icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.brand__text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.brand__accent {
    font-size: 0.88rem;
    color: #ffffff;
}

.brand__name {
    font-size: 1.06rem;
    color: var(--color-primary);
}

.brand--footer {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
}

.brand--footer .brand__icon {
    background: rgba(18, 21, 29, 0.08);
    color: var(--color-primary);
}

.brand--footer .brand__accent {
    color: rgba(255, 255, 255, 0.9);
}

.brand--footer .brand__name {
    color: var(--color-primary);
}

.main-nav {
    position: relative;
}

@media (max-width: 768px) {
    .brand__icon {
        width: 48px;
        height: 48px;
        padding: 8px;
        border-radius: 12px;
    }

    .brand__accent {
        font-size: 0.82rem;
    }

    .brand__name {
        font-size: 0.98rem;
    }
}

.main-nav__toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.25rem;
}

.main-nav__toggle span {
    width: 22px;
    height: 2px;
    background: #ffffff;
    display: block;
    transition: transform var(--transition);
}

.main-nav__list {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-nav__list a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.88);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
}

.main-nav__list a::after {
    content: "";
    position: absolute;
    inset-inline: 0;
    bottom: -10px;
    height: 2px;
    background: var(--color-primary);
    transform: scaleX(0);
    transition: transform var(--transition);
}

.main-nav__list a:hover::after,
.main-nav__list a:focus-visible::after {
    transform: scaleX(1);
}

main {
    display: block;
}

/* Scarcity Banner */
.hero__scarcity-banner {
    background: linear-gradient(90deg, #d92532 0%, #ff4455 100%);
    padding: 0.85rem 0;
    animation: slideDown 0.5s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.scarcity-banner__content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: #ffffff;
    font-size: 0.95rem;
    text-align: center;
    animation: pulse 2s ease-in-out infinite;
}

.scarcity-banner__icon {
    font-size: 1.2rem;
    animation: bounce 1s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

.scarcity-banner__text strong {
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* Hero */
.hero {
    background: radial-gradient(circle at top left, rgba(217, 37, 50, 0.35), transparent 45%),
        linear-gradient(135deg, #11141d 0%, #1c0a13 60%, #0d0f15 100%);
    color: #ffffff;
    padding: clamp(3.5rem, 6vw, 5rem) 0 clamp(4rem, 7vw, 6rem);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(217, 37, 50, 0.15), transparent 70%);
    bottom: -200px;
    right: -100px;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

.hero__main {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    align-items: start;
    gap: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 2.5rem;
}

.hero__content {
    max-width: 100%;
}

.hero__content h1 {
    margin: 0.8rem 0 0;
    font-size: clamp(2.4rem, 4.5vw, 3.8rem);
    line-height: 1.12;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #ffffff;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero__lead {
    margin: 1.5rem 0 2rem;
    color: rgba(255, 255, 255, 0.85);
    font-size: clamp(1rem, 1.8vw, 1.15rem);
    line-height: 1.7;
    font-weight: 400;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.55rem 1.1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 600;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero__badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.hero__badge-icon {
    width: 16px;
    height: 16px;
    opacity: 0.9;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 999px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.btn__icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.btn__arrow {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.btn--ghost:hover .btn__arrow {
    transform: translateX(4px);
}

.btn__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
}

.btn__text {
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.2;
}

.btn__subtext {
    font-size: 0.8rem;
    font-weight: 500;
    opacity: 0.95;
    line-height: 1.3;
}

.btn--primary {
    background: linear-gradient(135deg, #d92532 0%, #a31821 100%);
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(217, 37, 50, 0.4),
                0 0 0 0 rgba(217, 37, 50, 0.3);
}

.btn--primary::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.btn--primary:hover::before {
    opacity: 1;
}

.btn--primary:hover,
.btn--primary:focus-visible {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 18px 45px rgba(217, 37, 50, 0.5),
                0 0 0 4px rgba(217, 37, 50, 0.15);
}

.btn--primary:hover .btn__icon {
    transform: scale(1.1) rotate(5deg);
}

.btn--secondary {
    background: var(--color-dark);
    color: #ffffff;
}

.btn--secondary:hover,
.btn--secondary:focus-visible {
    background: #2c3140;
}

.btn--ghost {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    color: rgba(255, 255, 255, 0.95);
    border: 1.5px solid rgba(255, 255, 255, 0.3);
}

.btn--ghost:hover,
.btn--ghost:focus-visible {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--color-primary);
    color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(217, 37, 50, 0.3);
}

.btn--small {
    padding: 0.7rem 1.5rem;
    font-size: 0.92rem;
}

/* Hero Stats Grid */
.hero__stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.2rem;
    margin: 0 0 2.5rem;
}

.hero__stat-card {
    display: flex;
    align-items: center;
    gap: 1.1rem;
    padding: 1.2rem 1.5rem;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: visible;
}

.hero__stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #d92532, #ff4455);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero__stat-card:hover::before {
    transform: scaleX(1);
}

.hero__stat-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(217, 37, 50, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.hero__stat-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(217, 37, 50, 0.18);
    border-radius: 14px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.hero__stat-card:hover .hero__stat-icon {
    background: rgba(217, 37, 50, 0.25);
    transform: scale(1.1) rotate(5deg);
}

.hero__stat-icon svg {
    width: 24px;
    height: 24px;
    color: #ff4455;
}

.hero__stat-content {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    flex: 1;
}

.hero__stat-content strong {
    font-size: 1.4rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    letter-spacing: -0.01em;
}

.hero__stat-content span {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    line-height: 1.3;
}

/* Social Proof */
.hero__social-proof {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 0;
    padding: 1.5rem 1.8rem;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(15px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.hero__social-proof-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.8rem;
    padding: 0;
    transition: all 0.3s ease;
}

.hero__social-proof-item:hover {
    transform: translateY(-3px);
}

.hero__social-proof-item:hover .hero__social-proof-icon {
    transform: scale(1.15);
}

.hero__social-proof-icon {
    font-size: 2.5rem;
    filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.3));
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.hero__social-proof-item div {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    line-height: 1.3;
}

.hero__social-proof-item strong {
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: -0.02em;
}

.hero__social-proof-item span {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 500;
}

/* Enhanced CTA Button */
.btn--pulse {
    position: relative;
    padding: 1.15rem 2.2rem;
    align-items: center;
}

.btn--pulse::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transform: translateX(-100%);
    animation: shimmer 3s infinite;
    z-index: 1;
}

.btn--pulse .btn__content,
.btn--pulse .btn__icon {
    position: relative;
    z-index: 2;
}

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

.hero__media {
    display: flex;
    align-items: start;
    justify-content: center;
}

.media-frame {
    width: 100%;
    max-width: 100%;
    border-radius: 20px;
    padding: 1.5rem 1.5rem 1.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 82%);
    border: 1px solid rgba(255, 255, 255, 0.18);
    text-align: left;
    position: relative;
    overflow: hidden;
}

.media-frame::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(circle at top right, rgba(217, 37, 50, 0.35), transparent 55%);
    opacity: 0.85;
    mix-blend-mode: screen;
    pointer-events: none;
}

.media-frame::after {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.45) 0%, rgba(255, 255, 255, 0.05) 70%);
    mix-blend-mode: overlay;
    opacity: 0.4;
    pointer-events: none;
}

.media-frame > * {
    position: relative;
    z-index: 1;
}

.media-frame[data-animate="fade"] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 460ms ease, transform 460ms ease;
}

.media-frame.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.media-frame p {
    margin: 0;
    font-size: 1.15rem;
    font-weight: 600;
}

.media-frame small {
    display: block;
    margin-top: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
}

.media-frame--video {
    display: grid;
    gap: 1.3rem;
    box-shadow: 0 55px 90px rgba(10, 10, 20, 0.46);
}

.media-frame__badge {
    align-self: start;
    display: inline-flex;
    gap: 0.4rem;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    background: rgba(16, 18, 24, 0.65);
    color: #ffffff;
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 700;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.video-embed {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    background: #000;
    aspect-ratio: 16 / 9;
    isolation: isolate;
    cursor: pointer;
}

.video-embed::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(217, 37, 50, 0.35) 0%, rgba(0, 0, 0, 0.15) 65%);
    pointer-events: none;
    opacity: 0.2;
    transition: opacity var(--transition);
}

.video-embed iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
    pointer-events: none;
}

.media-frame--video:hover .video-embed::after,
.media-frame--video:focus-within .video-embed::after {
    opacity: 0;
}

.video-embed__play {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at center, rgba(16, 18, 24, 0.2) 0%, rgba(16, 18, 24, 0.65) 70%);
    border: none;
    cursor: pointer;
    color: #ffffff;
    transition: transform 200ms ease;
    appearance: none;
}

.video-embed__play:hover,
.video-embed__play:focus-visible {
    transform: scale(1.02);
}

.video-embed__pulse {
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(217, 37, 50, 0.55);
    filter: blur(0);
    animation: pulse 2.4s ease-in-out infinite;
}

.video-embed__icon {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 82px;
    height: 82px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff4455 0%, #d92532 100%);
    box-shadow: 0 20px 35px rgba(217, 37, 50, 0.45);
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.video-embed__icon::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.28);
    opacity: 0.8;
}

.media-frame__caption {
    text-align: left;
}

.media-frame__caption p {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-weight: 500;
}

.section-heading--center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.section-heading--center .eyebrow {
    display: inline-block;
    margin-bottom: 0.6rem;
}

.section-heading__lede {
    margin: 1rem auto 0;
    max-width: 40rem;
    color: var(--color-muted);
    font-size: 1.05rem;
}

.photo-showcase {
    position: relative;
    padding: clamp(4.5rem, 6vw, 6.5rem) 0;
    background: linear-gradient(160deg, rgba(16, 18, 24, 0.94) 0%, rgba(16, 18, 24, 0.8) 48%, rgba(16, 18, 24, 0.9) 100%);
    color: #ffffff;
    overflow: hidden;
}

.photo-showcase::before,
.photo-showcase::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(0);
    opacity: 0.38;
    pointer-events: none;
}

.photo-showcase::before {
    width: clamp(320px, 48vw, 520px);
    height: clamp(320px, 48vw, 520px);
    top: -18%;
    right: -12%;
    background: radial-gradient(circle at center, rgba(217, 37, 50, 0.55), transparent 65%);
}

.photo-showcase::after {
    width: clamp(260px, 40vw, 460px);
    height: clamp(260px, 40vw, 460px);
    bottom: -22%;
    left: -18%;
    background: radial-gradient(circle at center, rgba(255, 107, 97, 0.55), transparent 62%);
}

.photo-showcase .wrapper {
    position: relative;
    z-index: 1;
}

.carousel {
    position: relative;
    display: grid;
    gap: 1.6rem;
}

.carousel__viewport {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    box-shadow: 0 45px 80px rgba(10, 12, 18, 0.55);
    background: rgba(8, 9, 14, 0.82);
    isolation: isolate;
    height: clamp(320px, 52vw, 560px);
}

.carousel__track {
    display: flex;
    margin: 0;
    padding: 0;
    height: 100%;
    list-style: none;
    transition: transform 540ms cubic-bezier(0.22, 0.61, 0.36, 1);
}

.carousel__slide {
    position: relative;
    flex: 0 0 100%;
    height: 100%;
    opacity: 0.45;
    transition: opacity 420ms ease;
}

.carousel__slide.is-active {
    opacity: 1;
}

.carousel__figure {
    position: relative;
    margin: 0;
    height: 100%;
}

.carousel__figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel__figure::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7, 9, 12, 0.15) 0%, rgba(7, 9, 12, 0.65) 85%);
    opacity: 0.85;
    transition: opacity var(--transition);
    pointer-events: none;
}

.carousel__slide.is-active .carousel__figure::after {
    opacity: 0.6;
}

.carousel__figure figcaption {
    position: absolute;
    inset: auto 0 0;
    padding: clamp(1.2rem, 3vw, 2rem);
    font-size: clamp(1rem, 2.4vw, 1.25rem);
    font-weight: 600;
    letter-spacing: -0.01em;
    color: #ffffff;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
}

.carousel__control {
    position: absolute;
    top: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: clamp(48px, 5vw, 60px);
    height: clamp(48px, 5vw, 60px);
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(10, 12, 18, 0.58);
    color: #ffffff;
    cursor: pointer;
    transform: translateY(-50%);
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    backdrop-filter: blur(12px);
    z-index: 2;
}

.carousel__control:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.75);
    outline-offset: 3px;
}

.carousel__control:hover,
.carousel__control:focus-visible {
    background: var(--color-primary);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 18px 38px rgba(217, 37, 50, 0.35);
    transform: translateY(-50%) scale(1.05);
}

.carousel__control--prev {
    left: clamp(0.8rem, 4vw, 2.2rem);
}

.carousel__control--next {
    right: clamp(0.8rem, 4vw, 2.2rem);
}

.carousel__icon svg {
    width: 24px;
    height: 24px;
}

.carousel__dots {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    margin-top: 0.6rem;
}

.carousel__dot {
    width: 12px;
    height: 12px;
    border-radius: 999px;
    border: none;
    background: rgba(255, 255, 255, 0.28);
    cursor: pointer;
    transition: transform var(--transition), background var(--transition), width var(--transition);
    padding: 0;
}

.carousel__dot:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.75);
    outline-offset: 3px;
}

.carousel__dot.is-active {
    width: 28px;
    background: #ffffff;
    transform: translateY(-2px);
}

.carousel__progress {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 4px;
    background: rgba(255, 255, 255, 0.18);
    overflow: hidden;
}

.carousel__progress-bar {
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.85) 0%, rgba(217, 37, 50, 0.95) 100%);
    transform-origin: left;
    transform: scaleX(0);
    transition: transform linear;
}

@media (max-width: 980px) {
    .section-heading__lede {
        font-size: 1rem;
    }

    .carousel__figure figcaption {
        font-size: 1.05rem;
    }
}

@media (max-width: 780px) {
    .carousel__viewport {
        border-radius: 24px;
        height: clamp(260px, 65vw, 460px);
    }

    .carousel__control {
        width: 44px;
        height: 44px;
    }

    .carousel__figure figcaption {
        padding: 1rem 1.4rem 1.6rem;
    }
}

@media (max-width: 540px) {
    .section-heading__lede {
        font-size: 0.95rem;
    }

    .carousel__viewport {
        height: clamp(220px, 70vw, 360px);
    }

    .carousel__dots {
        gap: 0.5rem;
    }

    .carousel__dot {
        width: 10px;
        height: 10px;
    }

    .carousel__dot.is-active {
        width: 22px;
    }
}

.photo-showcase :focus-visible {
    outline-color: rgba(255, 255, 255, 0.8);
}

/* Testimonials */
.testimonials {
    background: linear-gradient(180deg, #ffffff 0%, #f5f6f9 100%);
    padding: 6rem 0;
}

.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.testimonial-card {
    background: var(--color-surface);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(16, 18, 24, 0.08);
    border: 1px solid var(--color-border);
    transition: transform var(--transition), box-shadow var(--transition);
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 45px rgba(16, 18, 24, 0.12);
}

.testimonial-card--featured {
    grid-column: span 2;
    background: linear-gradient(135deg, #d92532 0%, #a31821 100%);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.2);
}

.testimonial-card__rating {
    font-size: 1.1rem;
    letter-spacing: 0.1em;
}

.testimonial-card__quote {
    font-size: 1.05rem;
    line-height: 1.65;
    margin: 0;
    font-style: italic;
    font-weight: 500;
}

.testimonial-card--featured .testimonial-card__quote {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
}

.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid var(--color-border);
}

.testimonial-card--featured .testimonial-card__author {
    border-top-color: rgba(255, 255, 255, 0.2);
}

.testimonial-card__avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primary) 0%, #ff4455 100%);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.testimonial-card--featured .testimonial-card__avatar {
    background: rgba(255, 255, 255, 0.25);
    color: #ffffff;
}

.testimonial-card__name {
    display: block;
    font-weight: 700;
    font-size: 1rem;
    color: var(--color-dark);
    font-style: normal;
}

.testimonial-card--featured .testimonial-card__name {
    color: #ffffff;
}

.testimonial-card__location {
    display: block;
    font-size: 0.85rem;
    color: var(--color-muted);
    margin-top: 0.15rem;
}

.testimonial-card--featured .testimonial-card__location {
    color: rgba(255, 255, 255, 0.75);
}

.testimonials__cta {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, rgba(217, 37, 50, 0.08) 0%, rgba(217, 37, 50, 0.02) 100%);
    border-radius: 24px;
    border: 2px solid rgba(217, 37, 50, 0.15);
}

.testimonials__cta-text {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--color-dark);
    margin: 0 0 1.5rem;
}

@media (max-width: 768px) {
    .testimonial-card--featured {
        grid-column: span 1;
    }

    .testimonials__cta-text {
        font-size: 1.2rem;
    }
}

.video-modal {
    position: fixed;
    inset: 0;
    padding: clamp(2rem, 4vw, 3.5rem);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 220ms ease;
    z-index: 200;
}

.video-modal.is-active {
    opacity: 1;
    pointer-events: auto;
}

.video-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10, 12, 18, 0.72);
    backdrop-filter: blur(18px);
}

.video-modal__dialog {
    position: relative;
    width: min(960px, 96vw);
    outline: none;
}

.video-modal__frame {
    position: relative;
    aspect-ratio: 16 / 9;
    border-radius: 26px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 45px 90px rgba(10, 10, 20, 0.6);
}

.video-modal__frame iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.video-modal__close {
    position: absolute;
    top: -2.8rem;
    right: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.18);
    color: #ffffff;
    font-size: 1.8rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
    transition: transform 180ms ease, background 180ms ease;
}

.video-modal__close:hover,
.video-modal__close:focus-visible {
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.28);
}

body.modal-open {
    overflow: hidden;
}

.video-modal__dialog:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.45);
    outline-offset: 6px;
}

/* Garmin Modal */
.garmin-modal {
    position: fixed;
    inset: 0;
    padding: clamp(1.5rem, 3vw, 2.5rem);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 220ms ease;
    z-index: 200;
}

.garmin-modal.is-active {
    opacity: 1;
    pointer-events: auto;
}

.garmin-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10, 12, 18, 0.72);
    backdrop-filter: blur(18px);
}

.garmin-modal__dialog {
    position: relative;
    width: min(1200px, 96vw);
    height: min(800px, 90vh);
    outline: none;
}

.garmin-modal__frame {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 26px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 45px 90px rgba(10, 10, 20, 0.6);
}

.garmin-modal__frame iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.garmin-modal__close {
    position: absolute;
    top: -2.8rem;
    right: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.18);
    color: #ffffff;
    font-size: 1.8rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
    transition: transform 180ms ease, background 180ms ease;
}

.garmin-modal__close:hover,
.garmin-modal__close:focus-visible {
    transform: scale(1.05);
    background: rgba(255, 255, 255, 0.28);
}

.garmin-modal__dialog:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.45);
    outline-offset: 6px;
}

.route__details-btn {
    margin-top: 1rem;
    width: 100%;
}

@keyframes pulse {
    0% {
        transform: scale(0.8);
        opacity: 0.9;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.3;
    }
    100% {
        transform: scale(0.8);
        opacity: 0.9;
    }
}

@media (max-width: 820px) {
    .video-embed__pulse {
        width: 90px;
        height: 90px;
    }

    .video-embed__icon {
        width: 64px;
        height: 64px;
        font-size: 1.5rem;
    }
}

/* Sections */
section {
    padding: 5rem 0;
}

.section-heading {
    max-width: 45rem;
    margin-bottom: 2.5rem;
}

.section-heading h2 {
    margin: 0.3rem 0 0;
    font-size: clamp(2rem, 3vw, 2.8rem);
    line-height: 1.2;
}

.eyebrow {
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--color-primary);
}

.highlight-grid {
    display: grid;
    gap: 2.5rem;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.highlight-grid article {
    background: var(--color-surface);
    border-radius: 20px;
    padding: 2.2rem 2rem;
    box-shadow: 0 20px 40px rgba(16, 18, 24, 0.05);
    border: 1px solid var(--color-border);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    position: relative;
    overflow: hidden;
}

.highlight-grid article::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #d92532 0%, #ff4455 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.highlight-grid article:hover {
    transform: translateY(-6px);
    box-shadow: 0 30px 50px rgba(16, 18, 24, 0.12);
    border-color: rgba(217, 37, 50, 0.2);
}

.highlight-grid article:hover::before {
    transform: scaleX(1);
}

.highlight-grid h3 {
    margin-top: 0;
    font-size: 1.3rem;
    margin-bottom: 0.7rem;
    transition: color var(--transition);
}

.highlight-grid article:hover h3 {
    color: var(--color-primary);
}

.about {
    background: var(--color-surface);
}

.about__layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    align-items: start;
}

.about__details ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 1.5rem;
}

.about__details li {
    padding: 1.2rem 1.4rem;
    background: var(--color-light);
    border-radius: 16px;
    border: 1px solid var(--color-border);
    font-weight: 500;
}

.about__details span {
    display: block;
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--color-primary);
    margin-bottom: 0.4rem;
}

.schedule {
    background: linear-gradient(180deg, #f1f2f8 0%, #ffffff 100%);
}

.schedule__timeline {
    display: grid;
    gap: 1.6rem;
}

.schedule__item {
    display: grid;
    grid-template-columns: 140px minmax(0, 1fr);
    gap: 1.8rem;
    align-items: start;
    background: var(--color-surface);
    border-radius: 20px;
    border: 1px solid var(--color-border);
    box-shadow: 0 18px 35px rgba(16, 18, 24, 0.06);
    padding: 1.8rem 2rem;
}

.schedule__date span {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-muted);
}

.schedule__date strong {
    display: block;
    margin-top: 0.2rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-primary);
}

.schedule__content h3 {
    margin: 0 0 0.8rem;
    font-size: 1.2rem;
}

.schedule__content ul {
    margin: 0;
    padding-left: 1.1rem;
    color: var(--color-muted);
    display: grid;
    gap: 0.5rem;
}

.schedule__content li {
    line-height: 1.55;
}

.pricing {
    background: linear-gradient(180deg, #ffffff 0%, #f2f3f8 100%);
}

.pricing__highlight {
    background: linear-gradient(135deg, #d92532 0%, #a31821 100%);
    color: #ffffff;
    border-radius: 28px;
    padding: 2.5rem;
    margin-bottom: 3rem;
    box-shadow: 0 25px 50px rgba(217, 37, 50, 0.3);
    display: grid;
    gap: 2rem;
    position: relative;
    overflow: hidden;
}

.pricing__highlight::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.15), transparent 60%);
    pointer-events: none;
}

.pricing__highlight > * {
    position: relative;
    z-index: 1;
}

.pricing__highlight-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1.2rem;
    border-radius: 999px;
    width: fit-content;
    font-size: 0.95rem;
}

.pricing__highlight-icon {
    font-size: 1.3rem;
    animation: pulse 2s ease-in-out infinite;
}

.pricing__highlight-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    align-items: center;
}

.pricing__highlight-main {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.pricing__highlight-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
}

.pricing__highlight-price {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    color: #ffffff;
}

.pricing__highlight-regular {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: line-through;
}

.pricing__highlight-info p {
    margin: 0 0 0.75rem;
}

.pricing__highlight-info strong {
    font-size: 1.15rem;
}

.pricing__highlight-benefits {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
}

.btn--large {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
}

.pricing-row--highlight {
    background: rgba(217, 37, 50, 0.05);
    font-weight: 600;
}

.pricing-badge-hot {
    font-size: 1.2rem;
    margin-right: 0.3rem;
    animation: bounce 1s ease-in-out infinite;
}

.savings-badge {
    display: inline-flex;
    padding: 0.35rem 0.9rem;
    background: rgba(16, 148, 54, 0.14);
    color: #0f8a31;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.85rem;
}

.savings-badge--small {
    background: rgba(16, 148, 54, 0.1);
    font-size: 0.8rem;
}

.table-wrapper {
    background: var(--color-surface);
    border-radius: 22px;
    border: 1px solid var(--color-border);
    box-shadow: 0 25px 45px rgba(16, 18, 24, 0.08);
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

thead th {
    text-align: left;
    padding: 1.5rem 1.75rem;
    font-size: 0.85rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--color-muted);
    border-bottom: 1px solid var(--color-border);
}

tbody td,
tbody th {
    padding: 1.4rem 1.75rem;
    border-bottom: 1px solid var(--color-border);
    font-size: 1rem;
}

tbody tr:last-child td,
tbody tr:last-child th {
    border-bottom: none;
}

.badge {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.82rem;
    background: rgba(16, 18, 24, 0.08);
    color: var(--color-dark);
}

.badge--soldout {
    background: rgba(16, 18, 24, 0.12);
    color: var(--color-muted);
}

.badge--active {
    background: rgba(16, 148, 54, 0.14);
    color: #0f8a31;
}

.badge--limited {
    background: rgba(217, 37, 50, 0.18);
    color: var(--color-primary);
}

.pricing__cta {
    margin-top: 2.5rem;
    text-align: center;
}

.note {
    margin-top: 1rem;
    color: var(--color-muted);
    font-size: 0.95rem;
}

.pricing__payments {
    margin-top: 2.5rem;
    background: #ffffff;
    border-radius: 24px;
    padding: 2.5rem clamp(1.5rem, 4vw, 3rem);
    box-shadow: 0 30px 60px rgba(12, 20, 44, 0.08);
    text-align: left;
}

.pricing__payments h3 {
    text-align: center;
    font-size: clamp(1.35rem, 2.5vw, 1.8rem);
    margin-bottom: 0.75rem;
}

.pricing__payments-intro {
    text-align: center;
    color: var(--color-muted);
    max-width: 52ch;
    margin: 0 auto 2rem;
}

.pricing__registration-form {
    display: grid;
    gap: clamp(1.25rem, 3vw, 1.75rem);
    max-width: 880px;
    margin: 0 auto;
}

.pricing__registration-form .btn {
    justify-self: center;
    width: min(100%, 320px);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: clamp(1rem, 2.5vw, 1.5rem);
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.form-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-dark);
}

.required {
    color: var(--color-primary);
}

.pricing__registration-form input,
.pricing__registration-form select,
.pricing__registration-form textarea {
    width: 100%;
    border: 1px solid rgba(16, 18, 24, 0.12);
    border-radius: 14px;
    padding: 0.9rem 1rem;
    font: inherit;
    line-height: 1.4;
    background: linear-gradient(180deg, #f9fafc 0%, #eef1f8 100%);
    color: var(--color-dark);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.pricing__registration-form select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 2.75rem;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='10' viewBox='0 0 16 10'%3E%3Cpath fill='%23595c6a' d='M8 9.5a1 1 0 0 1-.71-.29l-7-7a1 1 0 1 1 1.42-1.42L8 7.09l6.29-6.3a1 1 0 0 1 1.42 1.42l-7 7A1 1 0 0 1 8 9.5Z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.1rem center;
    background-size: 14px;
}

.pricing__registration-form textarea {
    min-height: 140px;
    resize: vertical;
}

.pricing__registration-form input::placeholder,
.pricing__registration-form textarea::placeholder {
    color: rgba(16, 18, 24, 0.45);
}

.pricing__registration-form input:focus-visible,
.pricing__registration-form select:focus-visible,
.pricing__registration-form textarea:focus-visible {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(217, 37, 50, 0.15);
    outline: none;
    background: #ffffff;
}

.pricing__registration-form input:disabled,
.pricing__registration-form select:disabled,
.pricing__registration-form textarea:disabled {
    background: #f3f4f8;
    color: rgba(16, 18, 24, 0.5);
    cursor: not-allowed;
}

.pricing__registration-info {
    display: none;
    padding: 1.1rem 1.4rem;
    border-radius: 16px;
    border: 1px solid rgba(16, 18, 24, 0.12);
    background: linear-gradient(180deg, #f8f9fc 0%, #edf1f8 100%);
    box-shadow: 0 14px 30px rgba(12, 20, 44, 0.08);
}

.pricing__registration-summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.pricing__registration-label {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--color-muted);
    letter-spacing: 0.01em;
    text-transform: uppercase;
}

.pricing__registration-amount {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    font-weight: 700;
    color: var(--color-primary);
}

.form-message {
    display: none;
    padding: 0.95rem 1.1rem;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    text-align: center;
    background: rgba(16, 18, 24, 0.05);
}

[data-registration-button][disabled] {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
    box-shadow: 0 12px 28px rgba(217, 37, 50, 0.25);
}

.btn__loader {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    font-weight: 600;
}

.btn__loader::before {
    content: '';
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.35);
    border-top-color: #ffffff;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.pricing__payments-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: clamp(1.5rem, 3vw, 2.5rem);
}

.pricing__payments-card {
    background: linear-gradient(180deg, #f9fafc 0%, #eef1f8 100%);
    border-radius: 20px;
    padding: clamp(1.5rem, 3vw, 2rem);
    box-shadow: 0 20px 40px rgba(16, 18, 24, 0.06);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pricing__payments-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0;
    color: var(--color-dark);
}

.pricing__payments-card p {
    margin: 0;
    color: #2d3040;
}

.pricing__code-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.pricing__code-input {
    display: flex;
    gap: 0.75rem;
}

.pricing__code-input input {
    flex: 1;
    border: 1px solid rgba(16, 18, 24, 0.12);
    border-radius: 12px;
    padding: 0.9rem 1.1rem;
    font-size: 1rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.pricing__code-input input:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(217, 37, 50, 0.15);
    outline: none;
}

.pricing__code-feedback {
    font-size: 0.88rem;
    color: var(--color-muted);
}

.pricing__code-feedback.is-error {
    color: #d92532;
}

.pricing__code-feedback.is-success {
    color: #15803d;
}

.pricing__payments-actions {
    display: flex;
    justify-content: center;
}

.btn--paypal {
    background: #ffc439;
    color: #1a1a1a;
    border: none;
    min-width: 220px;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 700;
    box-shadow: 0 12px 24px rgba(255, 196, 57, 0.35);
}

.btn--paypal:hover,
.btn--paypal:focus {
    background: #f7b600;
    color: #0f0f0f;
    box-shadow: 0 16px 32px rgba(247, 182, 0, 0.3);
}

.btn[aria-disabled="true"] {
    pointer-events: none;
    opacity: 0.6;
    cursor: not-allowed;
}

.pricing__payments-note {
    font-size: 0.85rem;
    color: var(--color-muted);
}

.pricing__payments-disclaimer {
    margin: 2rem auto 0;
    text-align: center;
    font-size: 0.9rem;
    color: var(--color-muted);
    max-width: 58ch;
}

.package {
    background: var(--color-surface);
}

.package__layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    align-items: start;
}

.package__content ul {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 2rem;
    display: grid;
    gap: 1rem;
}

.package__content li {
    padding-left: 1.5rem;
    position: relative;
}

.package__content li::before {
    content: "▹";
    position: absolute;
    left: 0;
    top: 0.15rem;
    color: var(--color-primary);
    font-weight: 700;
}

.link-arrow {
    display: inline-flex;
    gap: 0.35rem;
    text-decoration: none;
    color: var(--color-primary);
    font-weight: 600;
}

.link-arrow::after {
    content: "→";
    transition: transform var(--transition);
}

.link-arrow:hover::after,
.link-arrow:focus-visible::after {
    transform: translateX(4px);
}

.package__card {
    background: linear-gradient(180deg, #12131a 0%, #1f1f29 100%);
    color: #ffffff;
    border-radius: 26px;
    padding: 2.5rem;
    box-shadow: 0 22px 50px rgba(16, 18, 24, 0.3);
    display: grid;
    gap: 1.4rem;
}

.package__card h3 {
    font-size: 1.6rem;
    margin: 0;
}

.package__price {
    font-size: 2.4rem;
    font-weight: 700;
    margin: 0;
}

.package__price span {
    display: block;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
}

.package__earlybird {
    font-size: 0.95rem;
    margin: -0.3rem 0 1rem;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.1);
    padding: 0.6rem 1rem;
    border-radius: 8px;
    border-left: 3px solid rgba(255, 255, 255, 0.5);
}

.package__earlybird strong {
    color: #ffffff;
}

.package__disclaimer,
.package__note {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.7);
}

.route__layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    align-items: start;
}

.route__list {
    list-style: none;
    padding: 0;
    margin: 2rem 0 2.5rem;
    display: grid;
    gap: 1rem;
}

.route__list li {
    padding-left: 1.8rem;
    position: relative;
}

.route__list li::before {
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-primary);
    left: 0;
    top: 0.55rem;
}

.route__map {
    background: var(--color-surface);
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid var(--color-border);
    box-shadow: 0 20px 38px rgba(16, 18, 24, 0.07);
}

.route__map figcaption {
    padding: 1.2rem 1.5rem;
    font-size: 0.9rem;
    color: var(--color-muted);
    background: #fafbff;
}

.categories {
    background: linear-gradient(180deg, #12151e 0%, #1b1f2b 100%);
    color: #ffffff;
}

.accordion {
    display: grid;
    gap: 1rem;
}

.accordion__item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    overflow: hidden;
}

.accordion__item button {
    width: 100%;
    padding: 1.3rem 1.6rem;
    background: none;
    border: none;
    color: inherit;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion__item button::after {
    content: "▾";
    transition: transform var(--transition);
}

.accordion__item button[aria-expanded="true"]::after {
    transform: rotate(180deg);
}

.accordion__panel {
    padding: 0 1.6rem 1.5rem;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.98rem;
    display: none;
}

.accordion__item.is-open .accordion__panel {
    display: block;
}

.why-join {
    position: relative;
    background: linear-gradient(150deg, rgba(15, 16, 24, 0.98) 0%, rgba(54, 12, 21, 0.95) 55%, rgba(89, 18, 28, 0.92) 100%);
    color: #ffffff;
    overflow: hidden;
}

.why-join::before {
    content: '';
    position: absolute;
    inset: -20% 45% auto -10%;
    height: 120%;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.28), transparent 65%);
    opacity: 0.35;
    pointer-events: none;
    transform: rotate(-8deg);
}

.why-join__layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.why-join__content {
    display: grid;
    gap: 1.5rem;
    max-width: 520px;
}

.why-join__content h2 {
    margin: 0.4rem 0 0;
    color: #ffffff;
}

.why-join__content p {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
}

.why-join__content .btn {
    align-self: start;
}

.why-join .eyebrow {
    color: rgba(255, 255, 255, 0.72);
}

.why-join__card {
    background: rgba(6, 7, 12, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 28px;
    padding: 2.6rem;
    box-shadow: 0 28px 55px rgba(8, 5, 7, 0.45);
    display: grid;
    gap: 1.5rem;
    backdrop-filter: blur(12px);
}

.why-join__label {
    margin: 0;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-size: 0.78rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.7);
}

.why-join__highlights {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 1.1rem;
}

.why-join__highlights li {
    position: relative;
    padding-left: 2rem;
    font-size: 1.08rem;
    line-height: 1.6;
    color: #ffffff;
}

.why-join__highlights li::before {
    content: '';
    position: absolute;
    left: 0.55rem;
    top: 0.55rem;
    width: 0.7rem;
    height: 0.7rem;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.6) 0%, rgba(255, 255, 255, 0.25) 100%);
    box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.12);
    opacity: 0.95;
}

.why-join__note {
    margin: 0;
    font-size: 0.88rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.65);
}

.services {
    background: var(--color-surface);
}

.services__layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    align-items: center;
}

.services__list {
    list-style: none;
    padding: 0;
    margin: 2rem 0 0;
    display: grid;
    gap: 1.3rem;
}

.services__list strong {
    color: var(--color-dark);
}

.services__cta {
    background: linear-gradient(140deg, var(--color-primary) 0%, #331016 100%);
    color: #ffffff;
    border-radius: 26px;
    padding: 2.5rem;
    box-shadow: 0 30px 45px rgba(217, 37, 50, 0.25);
    display: grid;
    gap: 2.25rem;
}

.services__cta-top {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.services__quote {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0 0 1rem;
}

.services__quote--secondary {
    font-size: 1.05rem;
    font-weight: 500;
    line-height: 1.6;
    margin: 1.25rem 0 0;
}

.services__quote--secondary:last-of-type {
    margin-bottom: 1.5rem;
}

.services__quote-author {
    margin: 0;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
}

.cta-final {
    background: linear-gradient(180deg, #f1f2f8 0%, #ffffff 100%);
}

.cta-final__layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    align-items: start;
}

.cta-final__form {
    background: var(--color-surface);
    border-radius: 22px;
    padding: 2.5rem;
    box-shadow: 0 25px 45px rgba(16, 18, 24, 0.08);
    display: grid;
    gap: 1.2rem;
}

.cta-final__form label {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--color-dark);
    display: grid;
    gap: 0.4rem;
}

.cta-final__form input,
.cta-final__form textarea {
    width: 100%;
    border-radius: 12px;
    border: 1px solid var(--color-border);
    padding: 0.75rem 0.9rem;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color var(--transition), box-shadow var(--transition);
    background: #f9fafc;
}

.cta-final__form input:focus-visible,
.cta-final__form textarea:focus-visible {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(217, 37, 50, 0.15);
    outline: none;
}

.cta-final__form textarea {
    resize: vertical;
}

.site-footer {
    position: relative;
    background: linear-gradient(160deg, rgba(19, 22, 33, 0.96) 0%, rgba(11, 13, 19, 0.98) 58%, rgba(6, 7, 12, 0.98) 100%);
    color: rgba(255, 255, 255, 0.78);
    padding: 4rem 0 2.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 -18px 36px rgba(3, 5, 9, 0.65);
    overflow: hidden;
}

.site-footer__layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}

.site-footer__column {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.site-footer__column--brand {
    max-width: 320px;
}

.site-footer__tagline {
    margin: 0;
    color: rgba(255, 255, 255, 0.68);
}

.site-footer__tagline + .site-footer__tagline {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.75);
}

.footer-label {
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.75rem;
    margin-bottom: 0.8rem;
    color: rgba(255, 255, 255, 0.52);
}

.footer-links,
.footer-social {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.footer-links a {
    display: inline-flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.78);
    text-decoration: none;
    transition: color var(--transition);
    font-family: 'Manrope', 'Segoe UI Emoji', 'Segoe UI Symbol', 'Apple Color Emoji', 'Noto Color Emoji', sans-serif;
}

.footer-links a img.emoji,
.footer-links img.emoji,
.site-footer img.emoji {
    display: inline-block !important;
    height: 1.2em !important;
    width: 1.2em !important;
    margin: 0 0.25em 0 0 !important;
    vertical-align: -0.2em !important;
    max-width: 1.2em !important;
    max-height: 1.2em !important;
}

.footer-links a:hover,
.footer-links a:focus-visible {
    color: #ffffff;
}

.footer-social__link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.88);
    text-decoration: none;
    padding: 0.4rem 0.85rem;
    border-radius: 999px;
    background: rgba(9, 11, 16, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 12px 32px rgba(3, 5, 10, 0.45);
    transition: background var(--transition), border-color var(--transition), transform var(--transition), color var(--transition);
}

.footer-social__link:hover,
.footer-social__link:focus-visible {
    background: rgba(217, 37, 50, 0.18);
    border-color: rgba(217, 37, 50, 0.55);
    transform: translateY(-3px);
    color: #ffffff;
}

.footer-social__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.22) 0%, rgba(255, 255, 255, 0.08) 60%, rgba(255, 255, 255, 0.04) 100%);
    color: #ffffff;
    box-shadow: 0 8px 18px rgba(4, 6, 11, 0.55);
}

.footer-social__icon svg {
    width: 16px;
    height: 16px;
    display: block;
}

.footer-social__label {
    font-weight: 600;
    letter-spacing: 0.01em;
}

.site-footer__legal {
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.45);
    margin: 0;
}

.site-footer__legal a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    transition: color var(--transition);
}

.site-footer__legal a:hover {
    color: var(--color-primary);
    text-decoration: underline;
}

/* Sticky CTA Bar */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 110;
    background: linear-gradient(90deg, #d92532 0%, #a31821 100%);
    box-shadow: 0 -8px 24px rgba(217, 37, 50, 0.35);
    transform: translateY(100%);
    transition: transform 0.3s ease-out;
    border-top: 2px solid rgba(255, 255, 255, 0.15);
}

.sticky-cta.is-visible {
    transform: translateY(0);
}

.sticky-cta__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1rem 1.5rem;
    flex-wrap: wrap;
}

.sticky-cta__text {
    display: flex;
    flex-direction: column;
    color: #ffffff;
    line-height: 1.4;
}

.sticky-cta__text strong {
    font-size: 1.05rem;
    font-weight: 700;
}

.sticky-cta__text span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
}

.btn--compact {
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
    white-space: nowrap;
}

@media (max-width: 640px) {
    .sticky-cta__content {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
        padding: 1.2rem 1.5rem;
    }

    .btn--compact {
        width: 100%;
    }

    .pricing__registration-form .btn {
        width: 100%;
    }

    .form-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* Responsiveness */
@media (max-width: 960px) {
    .main-nav__toggle {
        display: flex;
    }

    .main-nav__list {
        position: absolute;
        top: calc(100% + 0.75rem);
        right: 0;
        background: rgba(16, 18, 24, 0.95);
        border-radius: 16px;
        box-shadow: 0 25px 45px rgba(10, 12, 16, 0.35);
        padding: 1.2rem;
        flex-direction: column;
        gap: 1rem;
        min-width: 200px;
        transform: scale(0.95);
        opacity: 0;
        pointer-events: none;
        transition: opacity var(--transition), transform var(--transition);
    }

    .main-nav__list.is-open {
        opacity: 1;
        pointer-events: auto;
        transform: scale(1);
    }
}

@media (max-width: 1024px) {
    .hero__main {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        margin-bottom: 2.5rem;
    }

    .hero__media {
        order: -1;
        justify-content: center;
        max-width: 680px;
        margin: 0 auto;
    }

    .hero__stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.2rem;
    }

    .hero__stat-card {
        flex-direction: column;
        text-align: center;
        padding: 1.3rem 1.1rem;
        gap: 0.8rem;
    }

    .hero__stat-icon {
        width: 42px;
        height: 42px;
    }

    .hero__stat-icon svg {
        width: 20px;
        height: 20px;
    }

    .hero__stat-content strong {
        font-size: 1.3rem;
    }

    .hero__stat-content span {
        font-size: 0.68rem;
    }
}

@media (max-width: 820px) {
    .hero {
        padding: clamp(4rem, 8vw, 6rem) 0 clamp(3rem, 6vw, 5rem);
    }

    .hero__main {
        margin-bottom: 2.5rem;
    }

    .hero__content h1 {
        font-size: clamp(2rem, 5vw, 2.8rem);
    }

    .hero__lead {
        font-size: 1rem;
    }

    .hero__stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 2.5rem;
    }

    .hero__stat-card {
        flex-direction: row;
        text-align: left;
    }

    .hero__social-proof {
        grid-template-columns: 1fr;
        padding: 1.8rem 1.5rem;
        gap: 1.8rem;
    }

    .hero__social-proof-item {
        flex-direction: row;
        text-align: left;
        gap: 1rem;
    }

    .hero__actions {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }

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

    .schedule__item {
        grid-template-columns: 1fr;
    }

    .schedule__date {
        display: flex;
        align-items: baseline;
        gap: 0.6rem;
    }

    .schedule__date strong {
        margin-top: 0;
        font-size: 1.1rem;
    }

    .why-join__layout {
        gap: 2.2rem;
    }

    .why-join__card {
        padding: 2.2rem;
    }
}

@media (max-width: 640px) {
    .wrapper {
        padding: 0 1.1rem;
    }

    section {
        padding: 4rem 0;
    }

    .hero__badge {
        padding: 0.5rem 0.9rem;
        font-size: 0.75rem;
    }

    .hero__badge-icon {
        width: 14px;
        height: 14px;
    }

    .hero__content h1 {
        font-size: clamp(1.75rem, 6vw, 2.4rem);
        margin-top: 0.6rem;
    }

    .hero__lead {
        font-size: 0.95rem;
        margin: 1.2rem 0 2rem;
    }

    .hero__stats-grid {
        margin: 0 0 2rem;
    }

    .hero__stat-card {
        padding: 1.2rem;
    }

    .hero__stat-content strong {
        font-size: 1.15rem;
    }

    .hero__stat-content span {
        font-size: 0.7rem;
    }

    .hero__social-proof {
        padding: 1.2rem;
        margin: 2rem 0 0;
    }

    .hero__social-proof-icon {
        font-size: 2rem;
    }

    .hero__social-proof-item strong {
        font-size: 1.15rem;
    }

    .hero__social-proof-item span {
        font-size: 0.75rem;
    }

    .hero__actions {
        margin: 2.5rem 0 0;
    }

    .btn {
        padding: 0.9rem 1.6rem;
        font-size: 0.95rem;
    }

    .btn--pulse {
        padding: 1rem 1.8rem;
    }

    .btn__icon {
        width: 18px;
        height: 18px;
    }

    .btn__text {
        font-size: 1rem;
    }

    .btn__subtext {
        font-size: 0.75rem;
    }

    .media-frame {
        padding: 2.2rem 1.9rem;
    }

    .video-modal__close {
        top: -2.4rem;
    }

    table {
        min-width: 520px;
    }

    .cta-final__form {
        padding: 2rem;
    }

    .schedule__item {
        padding: 1.6rem 1.5rem;
    }

    .why-join {
        padding: 3.8rem 0;
    }

    .why-join::before {
        inset: -30% 35% auto -25%;
    }

    .why-join__content {
        gap: 1.2rem;
    }

    .why-join__card {
        padding: 1.9rem;
    }

    .why-join__highlights li {
        font-size: 0.98rem;
        padding-left: 1.6rem;
    }

    .why-join__highlights li::before {
        left: 0.3rem;
        top: 0.55rem;
    }

    .why-join__note {
        font-size: 0.8rem;
        letter-spacing: 0.08em;
    }
}

@media (max-width: 480px) {
    .hero__stats-grid {
        gap: 0.7rem;
    }

    .hero__stat-card {
        padding: 0.9rem;
        gap: 0.8rem;
    }

    .hero__stat-icon {
        width: 38px;
        height: 38px;
    }

    .hero__social-proof {
        gap: 1rem;
    }

    .btn__content {
        gap: 0.15rem;
    }

    .why-join__card {
        padding: 1.6rem;
    }

    .why-join__highlights li {
        font-size: 0.95rem;
        padding-left: 1.45rem;
    }

    .why-join__highlights li::before {
        left: 0.2rem;
        top: 0.45rem;
        width: 0.52rem;
        height: 0.52rem;
        box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.12);
    }

    .why-join__note {
        letter-spacing: 0.06em;
    }
}

/* ========================================
   Interactive Route Visualization
   ======================================== */

.route {
    position: relative;
    z-index: 1;
    isolation: isolate;
}

.route__interactive {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
    z-index: 1;
}

.route__map-wrapper {
    position: relative;
    height: 550px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(16, 18, 24, 0.2);
}

.route__map-container {
    width: 100%;
    height: 100%;
    z-index: 1;
    position: relative;
}

#routeMap {
    width: 100%;
    height: 100%;
}

/* Ensure Leaflet controls stay below sticky CTA and overlay */
.route__map-container .leaflet-control-container,
.route__map-container .leaflet-pane,
.route__map-container .leaflet-top,
.route__map-container .leaflet-bottom,
.route__map-container .leaflet-marker-pane,
.route__map-container .leaflet-tile-pane,
.route__map-container .leaflet-overlay-pane,
.route__map-container .leaflet-shadow-pane,
.route__map-container .leaflet-map-pane {
    z-index: auto !important;
}

/* Leaflet controls should be below overlay but visible */
.route__map-container .leaflet-control-zoom,
.route__map-container .leaflet-control-attribution {
    z-index: 50 !important;
}

.route__map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1000;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.route__stats-live {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    pointer-events: auto;
    justify-content: flex-end;
    margin-left: 60px;
}

.route__stat-item {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    padding: 0.75rem 1.25rem;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(16, 18, 24, 0.15);
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    min-width: 100px;
}

.route__stat-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-muted);
}

.route__stat-value {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--color-dark);
    line-height: 1;
}

.route__controls {
    display: flex;
    gap: 0.75rem;
    justify-content: flex-end;
    align-items: flex-end;
    pointer-events: auto;
}

.route__control-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(16, 18, 24, 0.15);
}

.route__control-btn svg {
    width: 20px;
    height: 20px;
    color: var(--color-dark);
    transition: color 0.3s ease;
}

.route__control-btn:hover {
    background: var(--color-primary);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 12px 32px rgba(217, 37, 50, 0.35);
}

.route__control-btn:hover svg {
    color: white;
}

.route__control-btn.active {
    background: var(--color-primary);
}

.route__control-btn.active svg {
    color: white;
}

.route__control-btn:active {
    transform: translateY(0) scale(0.98);
}

.route__elevation-profile {
    position: relative;
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 12px 32px rgba(16, 18, 24, 0.1);
}

#elevationCanvas {
    width: 100%;
    height: 150px;
    cursor: crosshair;
}

.route__elevation-tooltip {
    position: absolute;
    background: rgba(16, 18, 24, 0.95);
    color: white;
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    font-size: 0.85rem;
    pointer-events: none;
    transform: translate(-50%, -100%);
    top: 1.5rem;
    white-space: nowrap;
    box-shadow: 0 8px 20px rgba(16, 18, 24, 0.3);
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.route__elevation-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px 6px 0 6px;
    border-color: rgba(16, 18, 24, 0.95) transparent transparent transparent;
}

/* Route Markers */
.route-marker {
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    transition: transform 0.3s ease;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
}

.route-marker:hover {
    transform: scale(1.2);
}

.route-marker--cyclist {
    font-size: 32px;
    /* Animation removed - it was conflicting with Leaflet's transform positioning */
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-5px) scale(1.1);
    }
}

.route-marker--start,
.route-marker--finish {
    font-size: 24px;
}

/* Mapbox overrides */
.mapboxgl-ctrl-bottom-left,
.mapboxgl-ctrl-bottom-right {
    display: none;
}

.mapboxgl-ctrl-top-right .mapboxgl-ctrl {
    margin: 10px 10px 0 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .route__map-wrapper {
        height: 400px;
    }

    .route__stats-live {
        gap: 0.5rem;
        margin-left: 50px;
    }

    .route__stat-item {
        padding: 0.5rem 0.75rem;
        min-width: 80px;
    }

    .route__stat-label {
        font-size: 0.65rem;
    }

    .route__stat-value {
        font-size: 1rem;
    }

    .route__control-btn {
        width: 42px;
        height: 42px;
    }

    .route__control-btn svg {
        width: 18px;
        height: 18px;
    }

    .route__map-overlay {
        padding: 1rem;
    }

    #elevationCanvas {
        height: 120px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
