/* ==========================================================================
   GYM GROW — Main Stylesheet
   Organized: Reset → Variables → Base → Components → Sections → Modal → Responsive
   ========================================================================== */

/* ── 1. Reset ── */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ── 2. Design Tokens ── */
:root {
    --color-primary: #1a1a2e;
    --color-accent: #e94560;
    --color-accent-hover: #d63a54;
    --color-light: #f5f5f5;
    --color-white: #ffffff;
    --color-text: #333333;
    --color-text-light: #666666;
    --font-main: 'Poppins', Arial, Helvetica, sans-serif;
}

/* ── 3. Base ── */
html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    max-width: 100%;
}

body {
    font-family: var(--font-main);
    color: var(--color-text);
    line-height: 1.6;
    background: var(--color-light);
    overflow-x: hidden;
    max-width: 100vw;
}

a {
    text-decoration: none;
    color: inherit;
}

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

/* ── 4. Buttons (shared) ── */
.btn {
    padding: 0.85rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    display: inline-block;
    text-decoration: none;
}

.btn--primary {
    background: var(--color-accent);
    color: var(--color-white);
}

.btn--primary:hover {
    background: rgba(26, 26, 46, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.08);
}

.btn--large {
    padding: 1.2rem 3rem;
    font-size: 1.35rem;
}

.btn--glow {
    padding: 0.9rem 2.4rem;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, var(--color-accent), #ff6b6b);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(233, 69, 96, 0.3), 0 0 40px rgba(233, 69, 96, 0.1);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn--glow::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    animation: btnShimmer 2.5s ease-in-out infinite;
}

.btn--glow:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(233, 69, 96, 0.45), 0 0 50px rgba(233, 69, 96, 0.2), 0 8px 20px rgba(0, 0, 0, 0.15);
}

@keyframes btnShimmer {
    0% {
        left: -100%;
    }

    60% {
        left: 100%;
    }

    100% {
        left: 100%;
    }
}

/* ── 5. Navigation ── */
.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.9rem 2rem;
    background: rgba(20, 20, 35, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    position: fixed;
    top: 1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    max-width: 1100px;
    z-index: 100;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.25);
}

.nav__logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-white);
}

.nav__logo span {
    color: var(--color-accent);
}

.nav__links {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
}

.nav__links a {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.75);
    transition: color 0.2s;
}

.nav__links a:hover {
    color: var(--color-white);
}

.nav__cta {
    background: var(--color-accent);
    color: var(--color-white) !important;
    padding: 0.6rem 1.4rem;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.2s;
}

.nav__cta:hover {
    background: var(--color-accent-hover);
}

.nav__hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
}

.nav__hamburger span {
    width: 25px;
    height: 3px;
    background: var(--color-white);
    border-radius: 2px;
    transition: 0.3s;
}

/* ── 6. Hero ── */
.hero {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8rem 5% 4rem;
    background: var(--color-primary);
    color: var(--color-white);
    min-height: 85vh;
    overflow: hidden;
}

/* Background tile grid (shared by hero & wyg) */
.hero__tiles {
    position: absolute;
    top: -20%;
    left: -15%;
    width: 140%;
    height: 140%;
    display: flex;
    flex-direction: column;
    gap: 5px;
    opacity: 0.72;
    transform: rotate(-8deg);
}

.hero__brick-row {
    display: flex;
    gap: 5px;
    flex-shrink: 0;
    height: 25%;
}

.hero__brick-row--offset {
    margin-left: -8%;
}

.hero__tile {
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    flex: 1 0 16%;
    min-width: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 12px rgba(233, 69, 96, 0.15), 0 0 30px rgba(233, 69, 96, 0.05), inset 0 0 20px rgba(0, 0, 0, 0.3);
}

/* Tile background images (moved from inline styles) */
.hero__tile--1 {
    background-image: url('/assets/images/1.png');
}

.hero__tile--2 {
    background-image: url('/assets/images/2.png');
}

.hero__tile--3 {
    background-image: url('/assets/images/3.png');
}

.hero__tile--4 {
    background-image: url('/assets/images/4.png');
}

.hero__tile--5 {
    background-image: url('/assets/images/5.jpeg');
}

.hero__tile--6 {
    background-image: url('/assets/images/6.png');
}

.hero__tile--7 {
    background-image: url('/assets/images/7.png');
}

.hero__tile--8 {
    background-image: url('/assets/images/8.png');
}

.hero__tile--9 {
    background-image: url('/assets/images/9.png');
}

.hero__tile--10 {
    background-image: url('/assets/images/10.png');
}

/* Scattered tile offsets (organic look) */
.hero__tile:nth-child(1) {
    transform: translate(4px, -12px);
}

.hero__tile:nth-child(2) {
    transform: translate(-7px, 8px);
}

.hero__tile:nth-child(3) {
    transform: translate(10px, 5px);
}

.hero__tile:nth-child(4) {
    transform: translate(-3px, -9px);
}

.hero__tile:nth-child(5) {
    transform: translate(6px, 14px);
}

.hero__tile:nth-child(6) {
    transform: translate(-11px, -4px);
}

.hero__brick-row:nth-child(2) .hero__tile:nth-child(1) {
    transform: translate(8px, 6px);
}

.hero__brick-row:nth-child(2) .hero__tile:nth-child(2) {
    transform: translate(-5px, -11px);
}

.hero__brick-row:nth-child(2) .hero__tile:nth-child(3) {
    transform: translate(12px, -3px);
}

.hero__brick-row:nth-child(2) .hero__tile:nth-child(4) {
    transform: translate(-9px, 10px);
}

.hero__brick-row:nth-child(2) .hero__tile:nth-child(5) {
    transform: translate(3px, -7px);
}

.hero__brick-row:nth-child(2) .hero__tile:nth-child(6) {
    transform: translate(-6px, 13px);
}

.hero__brick-row:nth-child(3) .hero__tile:nth-child(1) {
    transform: translate(-8px, 11px);
}

.hero__brick-row:nth-child(3) .hero__tile:nth-child(2) {
    transform: translate(5px, -6px);
}

.hero__brick-row:nth-child(3) .hero__tile:nth-child(3) {
    transform: translate(-12px, 3px);
}

.hero__brick-row:nth-child(3) .hero__tile:nth-child(4) {
    transform: translate(7px, -14px);
}

.hero__brick-row:nth-child(3) .hero__tile:nth-child(5) {
    transform: translate(-4px, 9px);
}

.hero__brick-row:nth-child(3) .hero__tile:nth-child(6) {
    transform: translate(11px, -2px);
}

.hero__brick-row:nth-child(4) .hero__tile:nth-child(1) {
    transform: translate(6px, -10px);
}

.hero__brick-row:nth-child(4) .hero__tile:nth-child(2) {
    transform: translate(-10px, 4px);
}

.hero__brick-row:nth-child(4) .hero__tile:nth-child(3) {
    transform: translate(3px, 12px);
}

.hero__brick-row:nth-child(4) .hero__tile:nth-child(4) {
    transform: translate(-7px, -5px);
}

.hero__brick-row:nth-child(4) .hero__tile:nth-child(5) {
    transform: translate(9px, 8px);
}

.hero__brick-row:nth-child(4) .hero__tile:nth-child(6) {
    transform: translate(-2px, -13px);
}

/* Hero overlay & content */
.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at center, rgba(26, 26, 46, 0.15) 0%, rgba(26, 26, 46, 0.75) 65%),
        linear-gradient(to bottom, rgba(26, 26, 46, 0.25) 0%, rgba(26, 26, 46, 0.92) 100%);
    z-index: 1;
}

.hero__content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero__tag {
    display: inline-block;
    background: rgba(233, 69, 96, 0.18);
    color: var(--color-accent);
    padding: 0.45rem 1.1rem;
    border-radius: 20px;
    font-size: 0.88rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
    border: 1px solid rgba(233, 69, 96, 0.25);
}

.hero h1 {
    font-size: clamp(3rem, 8vw, 6rem);
    line-height: 1.05;
    max-width: 800px;
    margin-bottom: 1.25rem;
    font-weight: 900;
    letter-spacing: -0.02em;
}

.hero__highlight {
    background: linear-gradient(135deg, var(--color-accent), #ff6b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.15rem;
    max-width: 600px;
    margin-bottom: 2.5rem;
    opacity: 0.85;
}

.hero__buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.hero__subtext {
    font-size: 1rem;
    font-weight: 400;
    opacity: 0.7;
    margin-top: 0.3rem;
    font-style: italic;
}

.hero__micro {
    font-size: 0.75rem;
    font-weight: 300;
    opacity: 0.55;
    margin-top: 0.6rem;
}

/* ── 7. Logo Scroller ── */
.logo-scroller {
    background: #0d0d1a;
    padding: 2rem 0;
    overflow: hidden;
    position: relative;
    z-index: 0;
    border-top: 1px solid rgba(233, 69, 96, 0.10);
    border-bottom: 1px solid rgba(233, 69, 96, 0.06);
}

.logo-scroller__stars {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.logo-star {
    position: absolute;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 0 3px rgba(255, 255, 255, 0.6);
    animation: starTwinkle 2s ease-in-out infinite alternate;
}

.logo-star--bright {
    box-shadow: 0 0 6px rgba(255, 255, 255, 0.7), 0 0 14px rgba(255, 255, 255, 0.3);
    animation-name: starTwinkleBright;
}

@keyframes starTwinkle {
    0% {
        opacity: 0.1;
        transform: scale(1);
    }

    50% {
        opacity: 0.55;
        transform: scale(1.2);
    }

    100% {
        opacity: 0.15;
        transform: scale(0.9);
    }
}

@keyframes starTwinkleBright {
    0% {
        opacity: 0.25;
        transform: scale(1);
        box-shadow: 0 0 4px rgba(255, 255, 255, 0.4);
    }

    50% {
        opacity: 0.9;
        transform: scale(1.4);
        box-shadow: 0 0 8px rgba(255, 255, 255, 0.7), 0 0 18px rgba(255, 255, 255, 0.25);
    }

    100% {
        opacity: 0.2;
        transform: scale(0.85);
        box-shadow: 0 0 3px rgba(255, 255, 255, 0.3);
    }
}

.logo-scroller__title {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
    position: relative;
    z-index: 1;
}

.logo-scroller__track {
    position: relative;
    z-index: 1;
    mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.logo-scroller__slide {
    display: flex;
    gap: clamp(1.25rem, 3vw, 4rem);
    width: max-content;
    animation: scrollLogos 25s linear infinite;
}

.logo-scroller__item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: clamp(95px, 10vw, 170px);
    height: clamp(40px, 4.5vw, 60px);
}

.logo-scroller__item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    filter: grayscale(100%) brightness(0.9);
    opacity: 0.55;
    transition: all 0.4s ease;
}

.logo-scroller__item:hover img {
    filter: grayscale(0%) brightness(1);
    opacity: 0.85;
    border-color: rgba(233, 69, 96, 0.3);
    box-shadow: 0 0 20px rgba(233, 69, 96, 0.15);
}

@keyframes scrollLogos {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ── 8. Results / Testimonials ── */
.results-section {
    background: var(--color-light);
    padding: 3rem 5% calc(3rem + 48px);
    position: relative;
    overflow: hidden;
    margin-bottom: -48px;
    z-index: 2;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 48px), 50% 100%, 0 calc(100% - 48px));
}

.results-section__canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.results-section__heading {
    position: relative;
    z-index: 1;
    text-align: center;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 2rem;
}

/* Video cards */
.results-section__videos {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.85rem;
    max-width: 1060px;
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 1;
}

.results-video {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    transition: opacity 0.3s ease, transform 0.3s ease;
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 14px;
    padding: 0.6rem 0.6rem 0.75rem;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06), 0 1px 3px rgba(0, 0, 0, 0.04), inset 0 1px 0 rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.45);
}

.results-video--dimmed {
    opacity: 0.45;
    transform: scale(0.97);
}

.results-video__embed {
    position: relative;
    width: 100%;
    padding-top: 177.78%;
    /* 9:16 */
    background: #000;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid transparent;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.results-video--active .results-video__embed {
    border-color: var(--color-accent);
}

.results-video--active {
    border-color: var(--color-accent);
    box-shadow: 0 0 16px rgba(233, 69, 96, 0.3), 0 0 40px rgba(233, 69, 96, 0.12), 0 4px 20px rgba(0, 0, 0, 0.1);
}

.results-video__embed video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    object-fit: cover;
    cursor: pointer;
}

.results-video__result {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-accent);
    text-align: center;
    letter-spacing: 0.2px;
    line-height: 1.35;
    padding: 0.1rem 0.15rem 0;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.results-video__name {
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(26, 26, 46, 0.55);
    text-align: center;
    padding-top: 0.15rem;
}

/* Sound button */
.results-video__sound {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(233, 69, 96, 0.75);
    border: 2px solid rgba(255, 255, 255, 0.25);
    color: #fff;
    cursor: pointer;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: all 0.2s ease;
    padding: 0;
    box-shadow: 0 2px 12px rgba(233, 69, 96, 0.35);
}

.results-video__sound svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.results-video__sound:hover {
    background: rgba(233, 69, 96, 0.9);
    border-color: rgba(255, 255, 255, 0.4);
    transform: scale(1.1);
}

.results-video__sound--active {
    background: rgba(233, 69, 96, 0.7);
    border-color: rgba(233, 69, 96, 0.5);
    animation: soundPulse 1.5s ease-in-out infinite;
}

@keyframes soundPulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(233, 69, 96, 0.4);
    }

    50% {
        box-shadow: 0 0 0 6px rgba(233, 69, 96, 0);
    }
}

/* Written testimonial cards */
.results-section__cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.results-card {
    background: var(--color-white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 10px;
    padding: 1rem 1.1rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 0.5rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.results-card:hover {
    border-color: rgba(0, 0, 0, 0.15);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.results-card__quote {
    font-size: 0.85rem;
    font-weight: 400;
    line-height: 1.45;
    color: var(--color-primary);
    font-style: italic;
    margin: 0;
}

.results-card__author {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    margin-top: 0.25rem;
}

.results-card__photo {
    width: 32px;
    height: 32px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(26, 26, 46, 0.10);
    border: 1.5px solid #fff;
    background: #f5f5f5;
    flex-shrink: 0;
}

.results-card__meta {
    display: flex;
    flex-direction: column;
    gap: 0.05rem;
}

.results-card__name {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1.1;
}

.results-card__gym {
    font-size: 0.7rem;
    font-weight: 400;
    color: rgba(26, 26, 46, 0.45);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 1px;
}

.results-section__cta {
    text-align: center;
    margin-top: 2rem;
    position: relative;
    z-index: 1;
}

/* ── 9. How It Works ── */
.hiw {
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, #1a0a2e 0%, #0d0d1a 30%, #0a1628 60%, #1a0a2e 100%);
    padding: 4.5rem 5% 4rem;
    text-align: center;
    overflow: hidden;
    max-width: 96%;
    width: 100%;
    margin: 3rem auto 0;
    border: 1px solid rgba(233, 69, 96, 0.25);
    border-radius: 20px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.35), 0 0 80px rgba(0, 0, 0, 0.2), 0 0 40px rgba(233, 69, 96, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.03);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.hiw--hidden {
    opacity: 0;
    transform: translateY(40px);
}

.hiw--visible {
    opacity: 1;
    transform: translateY(0);
}

.hiw::before,
.hiw::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    z-index: 3;
}

.hiw::before {
    top: 0;
    background: linear-gradient(90deg, transparent 5%, rgba(233, 69, 96, 0.5) 30%, rgba(100, 60, 255, 0.4) 70%, transparent 95%);
}

.hiw::after {
    bottom: 0;
    background: linear-gradient(90deg, transparent 5%, rgba(60, 100, 255, 0.4) 30%, rgba(233, 69, 96, 0.5) 70%, transparent 95%);
}

/* Animated glow orbs */
.hiw__wave {
    position: absolute;
    pointer-events: none;
    border-radius: 50%;
    filter: blur(90px);
}

.hiw__wave--1 {
    width: 550px;
    height: 550px;
    top: -120px;
    left: -100px;
    background: radial-gradient(circle, rgba(233, 69, 96, 0.5) 0%, rgba(200, 50, 120, 0.25) 40%, transparent 70%);
    animation: hiwOrb1 10s ease-in-out infinite alternate;
}

.hiw__wave--2 {
    width: 500px;
    height: 500px;
    bottom: -100px;
    right: -80px;
    background: radial-gradient(circle, rgba(60, 100, 255, 0.45) 0%, rgba(30, 180, 220, 0.2) 40%, transparent 70%);
    animation: hiwOrb2 12s ease-in-out infinite alternate;
}

.hiw__wave--3 {
    width: 400px;
    height: 400px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(160, 60, 220, 0.35) 0%, rgba(120, 40, 200, 0.15) 40%, transparent 70%);
    animation: hiwOrb3 14s ease-in-out infinite alternate;
}

.hiw__wave--4 {
    width: 350px;
    height: 350px;
    top: -40px;
    right: 15%;
    background: radial-gradient(circle, rgba(255, 100, 180, 0.35) 0%, rgba(255, 60, 130, 0.15) 40%, transparent 70%);
    animation: hiwOrb4 11s ease-in-out infinite alternate;
}

@keyframes hiwOrb1 {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 0.8;
    }

    100% {
        transform: translate(80px, 40px) scale(1.2);
        opacity: 0.6;
    }
}

@keyframes hiwOrb2 {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 0.7;
    }

    100% {
        transform: translate(-70px, -30px) scale(1.15);
        opacity: 0.55;
    }
}

@keyframes hiwOrb3 {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.6;
    }

    100% {
        transform: translate(-40%, -55%) scale(1.25);
        opacity: 0.45;
    }
}

@keyframes hiwOrb4 {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 0.65;
    }

    100% {
        transform: translate(-40px, 50px) scale(1.1);
        opacity: 0.5;
    }
}

.hiw__heading {
    position: relative;
    z-index: 2;
    font-size: 2.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.4rem;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.9), 0 0 6px rgba(0, 0, 0, 0.7), 0 0 40px rgba(0, 0, 0, 0.4);
    letter-spacing: -0.02em;
}

.hiw__sub {
    position: relative;
    z-index: 2;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    margin-bottom: 2.5rem;
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.8), 0 0 30px rgba(0, 0, 0, 0.4);
}

.hiw__track {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.hiw__line {
    display: none;
}

.hiw__num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--color-accent);
    color: #fff;
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    box-shadow: 0 0 14px rgba(233, 69, 96, 0.3);
    transition: transform 0.4s, box-shadow 0.4s;
    position: relative;
    z-index: 2;
}

.hiw__num::after {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px solid var(--color-accent);
    opacity: 0;
}

.hiw__step {
    position: relative;
    z-index: 2;
    flex: 1;
    padding: 2rem 1.5rem 1.8rem;
    transition: opacity 0.5s ease, transform 0.5s ease, border-color 0.5s ease, box-shadow 0.5s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.hiw__step:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.hiw__step--active {
    border-color: rgba(233, 69, 96, 0.3);
    background: linear-gradient(145deg, rgba(233, 69, 96, 0.1) 0%, rgba(233, 69, 96, 0.03) 100%);
    box-shadow: 0 8px 32px rgba(233, 69, 96, 0.15), 0 8px 32px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(233, 69, 96, 0.1);
}

.hiw__step:not(.hiw__step--active) .hiw__num {
    background: #a83450;
    box-shadow: 0 0 12px rgba(233, 69, 96, 0.2);
    color: rgba(255, 255, 255, 0.85);
}

.hiw__step--active .hiw__num {
    transform: scale(1.15);
    box-shadow: 0 0 24px rgba(233, 69, 96, 0.7), 0 0 48px rgba(233, 69, 96, 0.3);
}

.hiw__step--active .hiw__num::after {
    animation: ringPulse 1.5s ease-out infinite;
}

@keyframes ringPulse {
    0% {
        opacity: 0.6;
        transform: scale(1);
    }

    100% {
        opacity: 0;
        transform: scale(1.7);
    }
}

.hiw__step h3 {
    font-size: 1.05rem;
    color: #ffffff;
    margin-bottom: 0.35rem;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.7);
}

.hiw__step--active h3 {
    color: var(--color-accent);
}

.hiw__step p {
    font-size: 0.88rem;
    color: #ffffff;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.7);
}

/* ── 10. What You Get (WYG) ── */
.wyg {
    position: relative;
    background: var(--color-primary);
    padding: 0;
    padding-top: 50px;
    text-align: center;
    overflow: hidden;
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wyg__tiles {
    position: absolute;
    top: -15%;
    left: -10%;
    width: 130%;
    height: 130%;
    display: flex;
    flex-direction: column;
    gap: 5px;
    opacity: 0.5;
    transform: rotate(6deg);
    animation: wygFloat 22s ease-in-out infinite alternate;
}

@keyframes wygFloat {
    0% {
        transform: rotate(6deg) translate(0, 0);
        opacity: 0.5;
    }

    50% {
        transform: rotate(5deg) translate(-12px, 8px);
        opacity: 0.55;
    }

    100% {
        transform: rotate(7deg) translate(8px, -6px);
        opacity: 0.48;
    }
}

.wyg__overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at center, rgba(26, 26, 46, 0.2) 0%, rgba(26, 26, 46, 0.8) 65%),
        linear-gradient(to bottom, rgba(26, 26, 46, 0.3) 0%, rgba(26, 26, 46, 0.93) 100%);
    z-index: 1;
}

.wyg__content {
    position: relative;
    z-index: 2;
    padding: 3.5rem 5% 3rem;
    width: 100%;
}

.wyg__heading {
    position: relative;
    z-index: 10;
    font-size: 2rem;
    color: #fff;
    margin-bottom: 0.3rem;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.9), 0 0 6px rgba(0, 0, 0, 0.7);
}

.wyg__sub {
    position: relative;
    z-index: 10;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin-bottom: 2.5rem;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.7);
}

.wyg__support {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.85rem;
    margin-top: 1.2rem;
}

.wyg__cta {
    text-align: center;
    margin-top: 1.5rem;
}

/* ── 11. Funnel ── */
.funnel {
    position: relative;
    max-width: 1650px;
    margin: 0 auto;
    padding: 0 0 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.funnel__shape {
    position: absolute;
    top: -15%;
    left: 50%;
    transform: translateX(-50%);
    width: 280%;
    height: 130%;
    z-index: 0;
    pointer-events: none;
    filter: drop-shadow(0 16px 40px rgba(233, 69, 96, 0.12)) drop-shadow(0 30px 60px rgba(0, 0, 0, 0.18));
}

/* Funnel falling figures */
.funnel__drop {
    animation: funnelFall 4s ease-in infinite;
    opacity: 0;
}

.funnel__drop--1 {
    animation-delay: 0s;
    animation-name: funnelFall1;
}

.funnel__drop--2 {
    animation-delay: 0.8s;
    animation-name: funnelFall2;
}

.funnel__drop--3 {
    animation-delay: 1.6s;
    animation-name: funnelFall3;
}

.funnel__drop--4 {
    animation-delay: 2.4s;
    animation-name: funnelFall4;
}

.funnel__drop--5 {
    animation-delay: 3.2s;
    animation-name: funnelFall5;
}

.funnel__drop--6 {
    animation-delay: 1.2s;
    animation-name: funnelFall6;
}

.funnel__drop--7 {
    animation-delay: 2.0s;
    animation-name: funnelFall7;
}

.funnel__drop--8 {
    animation-delay: 2.8s;
    animation-name: funnelFall8;
}

@keyframes funnelFall1 {
    0% {
        transform: translate(220px, -10px);
        opacity: 0;
    }

    5% {
        opacity: 0.8;
    }

    25% {
        transform: translate(260px, 140px);
        opacity: 0.7;
    }

    50% {
        transform: translate(280px, 300px);
        opacity: 0.6;
    }

    75% {
        transform: translate(290px, 440px);
        opacity: 0.4;
    }

    100% {
        transform: translate(295px, 590px);
        opacity: 0;
    }
}

@keyframes funnelFall2 {
    0% {
        transform: translate(370px, -10px);
        opacity: 0;
    }

    5% {
        opacity: 0.7;
    }

    25% {
        transform: translate(340px, 140px);
        opacity: 0.6;
    }

    50% {
        transform: translate(315px, 300px);
        opacity: 0.5;
    }

    75% {
        transform: translate(305px, 440px);
        opacity: 0.35;
    }

    100% {
        transform: translate(300px, 590px);
        opacity: 0;
    }
}

@keyframes funnelFall3 {
    0% {
        transform: translate(300px, -10px);
        opacity: 0;
    }

    5% {
        opacity: 0.6;
    }

    25% {
        transform: translate(300px, 140px);
        opacity: 0.55;
    }

    50% {
        transform: translate(300px, 300px);
        opacity: 0.45;
    }

    75% {
        transform: translate(300px, 440px);
        opacity: 0.3;
    }

    100% {
        transform: translate(300px, 590px);
        opacity: 0;
    }
}

@keyframes funnelFall4 {
    0% {
        transform: translate(160px, -10px);
        opacity: 0;
    }

    5% {
        opacity: 0.7;
    }

    25% {
        transform: translate(240px, 140px);
        opacity: 0.6;
    }

    50% {
        transform: translate(275px, 300px);
        opacity: 0.5;
    }

    75% {
        transform: translate(290px, 440px);
        opacity: 0.35;
    }

    100% {
        transform: translate(298px, 590px);
        opacity: 0;
    }
}

@keyframes funnelFall5 {
    0% {
        transform: translate(420px, -10px);
        opacity: 0;
    }

    5% {
        opacity: 0.55;
    }

    25% {
        transform: translate(355px, 140px);
        opacity: 0.5;
    }

    50% {
        transform: translate(320px, 300px);
        opacity: 0.4;
    }

    75% {
        transform: translate(308px, 440px);
        opacity: 0.3;
    }

    100% {
        transform: translate(302px, 590px);
        opacity: 0;
    }
}

@keyframes funnelFall6 {
    0% {
        transform: translate(250px, -10px);
        opacity: 0;
    }

    5% {
        opacity: 0.75;
    }

    25% {
        transform: translate(275px, 140px);
        opacity: 0.65;
    }

    50% {
        transform: translate(290px, 300px);
        opacity: 0.55;
    }

    75% {
        transform: translate(296px, 440px);
        opacity: 0.35;
    }

    100% {
        transform: translate(299px, 590px);
        opacity: 0;
    }
}

@keyframes funnelFall7 {
    0% {
        transform: translate(390px, -10px);
        opacity: 0;
    }

    5% {
        opacity: 0.7;
    }

    25% {
        transform: translate(350px, 140px);
        opacity: 0.6;
    }

    50% {
        transform: translate(320px, 300px);
        opacity: 0.5;
    }

    75% {
        transform: translate(307px, 440px);
        opacity: 0.3;
    }

    100% {
        transform: translate(301px, 590px);
        opacity: 0;
    }
}

@keyframes funnelFall8 {
    0% {
        transform: translate(180px, -10px);
        opacity: 0;
    }

    5% {
        opacity: 0.65;
    }

    25% {
        transform: translate(250px, 140px);
        opacity: 0.55;
    }

    50% {
        transform: translate(280px, 300px);
        opacity: 0.45;
    }

    75% {
        transform: translate(295px, 440px);
        opacity: 0.3;
    }

    100% {
        transform: translate(300px, 590px);
        opacity: 0;
    }
}

/* Dollar signs */
.funnel__cashpile {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    gap: 0.3rem;
    margin-top: 0.2rem;
    min-height: 30px;
}

.funnel__cashstack {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2ecc71;
    opacity: 0;
    animation: dollarPop 3s ease-in-out infinite;
    text-shadow: 0 0 8px rgba(46, 204, 113, 0.5);
}

.funnel__cashstack--1 {
    animation-delay: 0s;
}

.funnel__cashstack--2 {
    animation-delay: 0.5s;
}

.funnel__cashstack--3 {
    animation-delay: 1s;
}

.funnel__cashstack--4 {
    animation-delay: 1.5s;
}

.funnel__cashstack--5 {
    animation-delay: 2s;
}

.funnel__cashstack--6 {
    animation-delay: 2.5s;
}

.funnel__cashstack--7 {
    animation-delay: 0.3s;
}

.funnel__cashstack--8 {
    animation-delay: 1.8s;
}

@keyframes dollarPop {
    0% {
        opacity: 0;
        transform: translateY(0) scale(0.7);
    }

    15% {
        opacity: 1;
        transform: translateY(-4px) scale(1.1);
    }

    50% {
        opacity: 0.85;
        transform: translateY(-12px) scale(1);
    }

    85% {
        opacity: 0.4;
        transform: translateY(-20px) scale(0.9);
    }

    100% {
        opacity: 0;
        transform: translateY(-26px) scale(0.8);
    }
}

/* Funnel tiers & cards */
.funnel__tier {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    padding: 1.2rem 0;
}

.funnel__tier--1 {
    width: 100%;
}

.funnel__tier--2 {
    width: 72%;
    margin-top: 3.65rem;
}

.funnel__tier--3 {
    width: 50%;
    margin-top: 3.9rem;
}

.funnel__label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: rgba(255, 255, 255, 0.55);
    white-space: nowrap;
}

.funnel__cards {
    display: flex;
    gap: 0.6rem;
    flex: 1;
    justify-content: center;
}

.funnel__card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 12px;
    padding: 1rem 1.1rem;
    text-align: center;
    backdrop-filter: blur(10px);
    flex: 1;
    min-width: 160px;
    max-width: 210px;
    transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2), 0 2px 6px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.funnel__card:hover {
    border-color: rgba(255, 255, 255, 0.35);
    box-shadow: 0 8px 28px rgba(255, 255, 255, 0.08), 0 4px 12px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.funnel__card--wide {
    max-width: 320px;
}

.funnel__card--accent {
    background: #162b1f;
    border-color: #22c55e;
    box-shadow: 0 8px 30px rgba(34, 197, 94, 0.15), 0 12px 40px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    backdrop-filter: none;
    max-width: 260px;
}

.funnel__card-icon {
    font-size: 1rem;
    margin-right: 0.3rem;
    vertical-align: middle;
}

.funnel__card h4 {
    font-size: 0.82rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.25rem;
    white-space: nowrap;
}

.funnel__card p {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.4;
}

/* ── 12. Section Divider ── */
.section-divider {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-50%);
    z-index: 10;
    pointer-events: none;
}

.section-divider__line {
    flex: 1;
    height: 1px;
}

.section-divider__line--left {
    background: linear-gradient(90deg, transparent 0%, rgba(233, 69, 96, 0.15) 10%, rgba(233, 69, 96, 0.5) 50%, rgba(233, 69, 96, 0.6) 100%);
}

.section-divider__line--right {
    background: linear-gradient(90deg, rgba(233, 69, 96, 0.6) 0%, rgba(233, 69, 96, 0.5) 50%, rgba(233, 69, 96, 0.15) 90%, transparent 100%);
}

.section-divider__arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 12px;
    flex-shrink: 0;
}

.section-divider__chevron {
    width: 28px;
    height: 16px;
    color: rgba(233, 69, 96, 0.2);
    animation: dividerChevron 2s ease-in-out infinite;
}

.section-divider__chevron--1 {
    animation-delay: 0s;
}

.section-divider__chevron--2 {
    animation-delay: 0.15s;
}

.section-divider__chevron--3 {
    animation-delay: 0.3s;
}

@keyframes dividerChevron {
    0% {
        color: rgba(233, 69, 96, 0.15);
        transform: translateY(-2px);
    }

    30% {
        color: rgba(233, 69, 96, 0.9);
        transform: translateY(0);
        filter: drop-shadow(0 0 6px rgba(233, 69, 96, 0.5));
    }

    60% {
        color: rgba(160, 60, 220, 0.6);
        transform: translateY(2px);
        filter: drop-shadow(0 0 4px rgba(160, 60, 220, 0.3));
    }

    100% {
        color: rgba(233, 69, 96, 0.15);
        transform: translateY(-2px);
        filter: none;
    }
}

/* ── 13. Final CTA ── */
.final-cta {
    position: relative;
    text-align: center;
    padding: 6rem 5%;
    padding-top: 5rem;
    background: linear-gradient(165deg, #2a0a1e 0%, #1a0a2e 25%, #0d0d1a 50%, #0a1628 75%, #1a0a2e 100%);
    color: var(--color-white);
    overflow: visible;
}

.final-cta__glow {
    position: absolute;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(233, 69, 96, 0.18) 0%, rgba(160, 60, 220, 0.08) 40%, transparent 70%);
    pointer-events: none;
    z-index: 0;
    animation: ctaGlowPulse 6s ease-in-out infinite alternate;
}

@keyframes ctaGlowPulse {
    0% {
        opacity: 0.7;
        transform: translateX(-50%) scale(1);
    }

    100% {
        opacity: 1;
        transform: translateX(-50%) scale(1.1);
    }
}

.final-cta__inner {
    position: relative;
    z-index: 1;
    max-width: 680px;
    margin: 0 auto;
}

.final-cta__badge {
    display: inline-block;
    padding: 0.4rem 1.2rem;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--color-accent);
    border: 1px solid rgba(233, 69, 96, 0.35);
    border-radius: 50px;
    background: rgba(233, 69, 96, 0.08);
    margin-bottom: 1.8rem;
    animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(233, 69, 96, 0.2);
    }

    50% {
        box-shadow: 0 0 20px 4px rgba(233, 69, 96, 0.15);
    }
}

.final-cta__heading {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1.2rem;
}

.final-cta__highlight {
    color: var(--color-accent);
}

.final-cta__sub {
    font-size: 1.1rem;
    opacity: 0.8;
    max-width: 520px;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
}

.final-cta__proof {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.final-cta__stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.final-cta__stat-num {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-accent);
    line-height: 1;
}

.final-cta__stat-label {
    font-size: 0.8rem;
    opacity: 0.65;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 0.3rem;
}

.final-cta__stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.12);
}

.final-cta__btn {
    font-size: 1.15rem;
    padding: 1rem 2.8rem;
}

.final-cta__micro {
    margin-top: 1rem;
    font-size: 0.8rem;
    opacity: 0.5;
}

/* ── 14. Footer ── */
.footer {
    background: var(--color-primary);
    color: rgba(255, 255, 255, 0.7);
    padding: 3rem 5% 1.5rem;
}

.footer__inner {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.footer__brand {
    max-width: 300px;
}

.footer__brand h3 {
    color: var(--color-white);
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
}

.footer__brand h3 span {
    color: var(--color-accent);
}

.footer__links ul {
    list-style: none;
}

.footer__links li {
    margin-bottom: 0.4rem;
}

.footer__links a:hover {
    color: var(--color-white);
}

.footer__bottom {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.85rem;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

/* ── 15. Booking Widget (Modal) ── */
.modal {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal--active {
    visibility: visible;
    opacity: 1;
}

.modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.modal__content--booking {
    position: relative;
    background: var(--color-white);
    border-radius: 18px;
    padding: 2rem 2rem 1.75rem;
    max-width: 780px;
    width: 94%;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.4);
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.modal--active .modal__content--booking {
    transform: translateY(0);
}

.modal__close {
    position: absolute;
    top: 0.75rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--color-text-light);
    line-height: 1;
    transition: color 0.2s;
    z-index: 5;
}

.modal__close:hover {
    color: var(--color-accent);
}

/* Progress bar */
.bw-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    margin-bottom: 1.5rem;
}

.bw-progress__step {
    display: flex;
    align-items: center;
    gap: 0.45rem;
}

.bw-progress__dot {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    background: #e0e0e0;
    color: var(--color-text-light);
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.bw-progress__label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-text-light);
    transition: color 0.3s;
}

.bw-progress__step--active .bw-progress__dot {
    background: var(--color-accent);
    color: #fff;
    box-shadow: 0 0 12px rgba(233, 69, 96, 0.35);
}

.bw-progress__step--active .bw-progress__label {
    color: var(--color-primary);
}

.bw-progress__step--done .bw-progress__dot {
    background: var(--color-accent);
    color: #fff;
}

.bw-progress__line {
    width: 60px;
    height: 2px;
    background: #e0e0e0;
    margin: 0 0.75rem;
    border-radius: 2px;
}

/* Body layout */
.bw-body {
    display: flex;
    gap: 1.75rem;
    min-height: 380px;
}

/* Form side */
.bw-form-side {
    flex: 1;
    min-width: 0;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.bw-form-side--done {
    display: none;
}

/* Time-slots panel promoted to left side after form submit */
.bw-times-left {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.bw-times-left__heading {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--color-text);
    margin: 0 0 0.15rem;
    line-height: 1.2;
}

.bw-times-left__accent {
    color: var(--color-accent);
}

.bw-times-left__date {
    font-size: 0.82rem;
    color: var(--color-text-light);
    margin: 0 0 0.75rem;
    line-height: 1.4;
}

.bw-times-left__edit {
    background: none;
    border: none;
    color: var(--color-text-light);
    font-family: var(--font-main);
    font-size: 0.78rem;
    cursor: pointer;
    padding: 0;
    margin-top: auto;
    padding-top: 1rem;
    text-align: left;
    transition: color 0.2s;
}

.bw-times-left__edit:hover {
    color: var(--color-accent);
}

/* Contact details summary card */
.bw-summary {
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    padding: 0.1rem 0;
    margin-bottom: 0.75rem;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.bw-summary__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0.9rem;
}

.bw-summary__row+.bw-summary__row {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.bw-summary__label {
    font-size: 0.78rem;
    color: var(--color-text-light);
    font-weight: 500;
}

.bw-summary__value {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--color-text);
    text-align: right;
}

.bw-times-left .bw-times {
    margin-top: 0;
    border-top: none;
    padding-top: 0;
}

.bw-times-left .bw-times__grid {
    grid-template-columns: repeat(3, 1fr);
    max-height: 240px;
}

.bw-heading {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 0.2rem;
    line-height: 1.2;
}

.bw-sub {
    font-size: 0.8rem;
    color: var(--color-text-light);
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.bw-form {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.bw-form__row {
    display: flex;
    gap: 0.45rem;
}

.bw-form__row .bw-form__field {
    flex: 1;
}

.bw-form__field {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.bw-form__label {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--color-text);
}

.bw-form__input {
    padding: 0.45rem 0.65rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: var(--font-main);
    font-size: 0.82rem;
    transition: border-color 0.2s, box-shadow 0.2s;
    color: var(--color-text);
}

.bw-form__input:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(233, 69, 96, 0.1);
}

.bw-consent {
    font-size: 0.68rem;
    color: var(--color-text-light);
    line-height: 1.4;
}

.bw-consent a {
    color: var(--color-accent);
    text-decoration: underline;
}

.bw-form__submit {
    margin-top: 0.15rem;
    width: 100%;
    font-size: 0.85rem;
    padding: 0.55rem 1rem;
}

/* Calendar side */
.bw-calendar-side {
    flex: 1;
    min-width: 0;
    position: relative;
    display: flex;
    flex-direction: column;
}

.bw-calendar__blur-overlay {
    position: absolute;
    inset: 0;
    z-index: 3;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(1.5px);
    -webkit-backdrop-filter: blur(1.5px);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.bw-calendar__blur-overlay--hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.bw-calendar__lock {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-primary);
    background: var(--color-white);
    padding: 0.6rem 1.25rem;
    border-radius: 10px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

/* Calendar header */
.bw-calendar__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.6rem;
}

.bw-calendar__month {
    font-size: 1rem;
    font-weight: 700;
    color: var(--color-primary);
}

.bw-calendar__nav {
    background: none;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    color: var(--color-text);
    transition: border-color 0.2s, color 0.2s;
}

.bw-calendar__nav:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
}

/* Week day headers */
.bw-calendar__weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    margin-bottom: 0.3rem;
}

.bw-calendar__weekdays span {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--color-text-light);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 0.3rem 0;
}

/* Day grid */
.bw-calendar__grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
}

.bw-calendar__day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 500;
    border: 2px solid var(--color-accent);
    border-radius: 8px;
    background: none;
    cursor: pointer;
    color: var(--color-text);
    transition: background 0.15s, color 0.15s, box-shadow 0.15s;
    font-family: var(--font-main);
}

.bw-calendar__day:hover:not(.bw-calendar__day--disabled):not(.bw-calendar__day--empty) {
    background: rgba(233, 69, 96, 0.12);
}

.bw-calendar__day--disabled {
    color: #ccc;
    cursor: default;
    border-color: transparent;
}

.bw-calendar__day--empty {
    cursor: default;
    border-color: transparent;
}

.bw-calendar__day--selected {
    background: var(--color-accent) !important;
    color: #fff !important;
    font-weight: 700;
    border-color: var(--color-accent) !important;
    box-shadow: 0 2px 10px rgba(233, 69, 96, 0.35);
}

/* Time slots */
.bw-times {
    margin-top: 0.75rem;
    border-top: 1px solid #eee;
    padding-top: 0.75rem;
}

.bw-times__label {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.bw-times__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    max-height: 160px;
    overflow-y: auto;
}

.bw-times__slot {
    padding: 0.45rem 0.3rem;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    background: none;
    font-family: var(--font-main);
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--color-text);
    cursor: pointer;
    transition: all 0.15s;
}

.bw-times__slot:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
}

.bw-times__slot--selected {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: #fff;
    font-weight: 600;
}

.bw-times__slot--disabled {
    opacity: 0.35;
    text-decoration: line-through;
    cursor: not-allowed;
    pointer-events: none;
}

.bw-confirm {
    margin-top: 0.75rem;
    width: 100%;
    font-size: 0.85rem;
    padding: 0.55rem 1rem;
}

/* Confirmation panel */
.bw-confirmed {
    text-align: center;
    padding: 2.5rem 1rem;
}

.bw-confirmed__icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-accent), #ff6b6b);
    color: #fff;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    box-shadow: 0 6px 24px rgba(233, 69, 96, 0.3);
}

.bw-confirmed .bw-heading {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
}

.bw-confirmed .bw-sub {
    margin-bottom: 0.75rem;
    font-size: 1rem;
    color: var(--color-text);
}

/* ── 16. Page-level (legal & 404) ── */
.page-hero {
    text-align: center;
    padding: 7rem 5% 3rem;
    background: linear-gradient(135deg, var(--color-primary) 0%, #16213e 100%);
    color: var(--color-white);
}

.page-hero h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 0.75rem;
}

.page-hero p {
    font-size: 1.1rem;
    opacity: 0.85;
    max-width: 600px;
    margin: 0 auto;
}

.page-hero--small {
    padding: 3.5rem 5% 2rem;
}

.section {
    padding: 5rem 5%;
}

.legal-content {
    max-width: 750px;
    margin: 0 auto;
}

.legal-content h2 {
    font-size: 1.3rem;
    color: var(--color-primary);
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content p {
    color: var(--color-text-light);
    line-height: 1.8;
    margin-bottom: 0.75rem;
}

.legal-content ul {
    color: var(--color-text-light);
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    line-height: 1.8;
}

.error-page {
    text-align: center;
    padding: 6rem 5%;
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.error-page h1 {
    font-size: 6rem;
    color: var(--color-accent);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.error-page h2 {
    font-size: 1.75rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.error-page p {
    color: var(--color-text-light);
    max-width: 450px;
    font-size: 1.05rem;
}

.error-page__buttons {
    margin-top: 2rem;
}

/* ── 17. Responsive ── */

/* Desktop: HIW connecting line */
@media (min-width: 701px) {
    .hiw__line {
        display: block;
        position: absolute;
        top: 24px;
        left: 50%;
        transform: translateX(-50%);
        width: 60%;
        height: 2px;
        background: linear-gradient(90deg, transparent, var(--color-accent), rgba(100, 60, 255, 0.6), transparent);
        opacity: 0.4;
        z-index: 0;
    }
}

/* Tablet */
@media (max-width: 900px) {
    .results-section__videos {
        grid-template-columns: repeat(2, 1fr);
        max-width: 92%;
        gap: 0.75rem;
    }

    .results-video__result {
        font-size: 0.78rem;
        line-height: 1.3;
    }

    .results-video__name {
        font-size: 0.65rem;
    }

    .results-section__cards {
        grid-template-columns: 1fr;
        max-width: 400px;
        gap: 0.6rem;
    }

    .results-card {
        padding: 0.8rem 1rem;
    }

    .results-card__quote {
        font-size: 0.78rem;
        line-height: 1.45;
    }

    .results-card__photo {
        width: 34px;
        height: 34px;
    }

    .results-card__name {
        font-size: 0.8rem;
    }

    .results-card__gym {
        font-size: 0.65rem;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .nav {
        width: 94%;
        max-width: calc(100vw - 1rem);
        padding: 0.7rem 1rem;
        border-radius: 12px;
    }

    .nav__logo {
        font-size: 1.35rem;
    }

    .nav__hamburger {
        display: none !important;
    }

    .nav__links {
        display: flex !important;
        position: static;
        flex-direction: row;
        background: none;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        border: none;
        padding: 0;
        box-shadow: none;
    }

    .nav__cta {
        font-size: 0.9rem;
        padding: 0.55rem 1.2rem;
        white-space: nowrap;
    }

    .hero {
        padding: 6.5rem 5% 3rem;
        min-height: auto;
    }

    .btn--large {
        padding: 0.8rem 1.8rem;
        font-size: 1rem;
        white-space: nowrap;
    }

    .logo-scroller {
        padding: 1.25rem 0;
    }

    .logo-scroller__title {
        font-size: 0.7rem;
        letter-spacing: 3px;
        margin-bottom: 0.75rem;
    }

    .logo-scroller__slide {
        gap: 1rem;
    }

    .logo-scroller__item {
        width: 90px;
        height: 38px;
    }

    .results-section {
        clip-path: polygon(0 0, 100% 0, 100% calc(100% - 28px), 50% 100%, 0 calc(100% - 28px));
        margin-bottom: -28px;
        padding-bottom: calc(3rem + 28px);
    }

    .wyg {
        padding-top: 30px;
    }

    .funnel__card {
        max-width: 220px;
        padding: 0.5rem 0.6rem;
    }

    .funnel__card h4 {
        font-size: 0.85rem;
    }

    .funnel__card p {
        font-size: 0.78rem;
    }

    /* Booking widget mobile */
    .modal__content--booking {
        max-width: 96%;
        padding: 1.25rem 1rem 1rem;
        max-height: 92vh;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .bw-body {
        flex-direction: column;
        gap: 1rem;
        min-height: auto;
    }

    .bw-times-left .bw-times__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bw-progress__label {
        font-size: 0.7rem;
    }

    .bw-progress__dot {
        width: 24px;
        height: 24px;
        font-size: 0.7rem;
    }

    .bw-progress__line {
        width: 40px;
    }

    .bw-heading {
        font-size: 1.15rem;
    }

    .bw-form__row {
        flex-direction: row;
        gap: 0.5rem;
    }

    .bw-form__row .bw-form__field {
        flex: 1;
        min-width: 0;
    }

    .bw-times__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Small mobile – funnel & HIW */
@media (max-width: 700px) {
    .wyg__content {
        padding: 2rem 5% 5rem;
    }

    .wyg__heading {
        font-size: 1.5rem;
    }

    .wyg__support {
        font-size: 0.8rem;
        transform: translateY(50px);
    }

    .wyg__cta {
        transform: translateY(50px);
    }

    .funnel {
        max-width: 100%;
        padding: 0;
    }

    .funnel__shape {
        width: 500%;
        height: 150%;
        top: -20%;
    }

    .funnel__tier--1 {
        width: 100%;
    }

    .funnel__tier--2 {
        width: 68%;
        margin-top: calc(2.2rem + 10px);
    }

    .funnel__tier--3 {
        width: 52%;
        margin-top: 2rem;
        transform: translateY(35px);
    }

    .funnel__cashpile {
        transform: translateY(35px);
        margin-top: 1rem;
    }

    .funnel__cards {
        flex-direction: column;
        align-items: center;
    }

    .funnel__tier--1 .funnel__cards {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.2rem;
    }

    .funnel__tier--1 .funnel__card {
        max-width: 48%;
        min-width: 0;
        flex: 0 1 auto;
        padding: 0.25rem 0.5rem;
        border-radius: 6px;
    }

    .funnel__tier--1 .funnel__card:last-child {
        flex-basis: auto;
        max-width: 52%;
    }

    .funnel__tier--1 .funnel__card h4 {
        font-size: 14px;
        white-space: nowrap;
        line-height: 1.2;
    }

    .funnel__tier--1 .funnel__card .funnel__card-icon {
        font-size: 0.65rem;
        margin-right: 0.1rem;
    }

    .funnel__tier--1 .funnel__card p {
        font-size: 12px;
        line-height: 1.3;
        margin-top: 0.1rem;
    }

    .funnel__card {
        max-width: 180px;
        width: 100%;
        padding: 0.35rem 0.4rem;
        border-radius: 8px;
    }

    .funnel__card h4 {
        font-size: 0.75rem;
        white-space: normal;
        word-break: break-word;
    }

    .funnel__card p {
        font-size: 11px;
        color: rgba(255, 255, 255, 0.75);
    }

    /* Shorten mobile card descriptions */
    .funnel__card--paid p,
    .funnel__card--organic p,
    .funnel__card--website p,
    .funnel__tier--1 .funnel__card--paid p,
    .funnel__tier--1 .funnel__card--organic p,
    .funnel__tier--1 .funnel__card--website p {
        font-size: 0 !important;
        color: transparent !important;
    }

    .funnel__card--paid p::after {
        content: 'Highly effective ads';
        font-size: 12px;
        color: rgba(255, 255, 255, 0.75);
    }

    .funnel__card--organic p::after {
        content: 'Get leads for free';
        font-size: 12px;
        color: rgba(255, 255, 255, 0.75);
    }

    .funnel__card--website p::after {
        content: 'Supercharge your lead flow';
        font-size: 12px;
        color: rgba(255, 255, 255, 0.75);
    }

    .funnel__card--wide {
        max-width: 180px;
    }

    .funnel__card--accent {
        max-width: 160px;
    }

    .funnel__card--wide p {
        font-size: 11px;
        line-height: 1.35;
    }

    .funnel__card-icon {
        font-size: 0.85rem;
        margin-right: 0.15rem;
    }

    .funnel__label {
        font-size: 0.65rem;
        letter-spacing: 0.1em;
        color: rgba(255, 255, 255, 0.75);
    }

    .funnel__tier {
        gap: 0.2rem;
        padding: 0.6rem 0;
        flex-direction: column;
    }

    /* HIW mobile */
    .hiw {
        padding: 2.5rem 5% 2rem;
        max-width: 100%;
        border-radius: 14px;
    }

    .hiw__heading {
        font-size: 1.5rem;
    }

    .hiw__track {
        flex-direction: column;
        gap: 1.25rem;
        align-items: center;
    }

    .hiw__step {
        flex-direction: row;
        align-items: center;
        text-align: left;
        gap: 1rem;
        max-width: 340px;
        width: 100%;
        padding: 1rem 1.2rem;
    }

    .hiw__num {
        flex-shrink: 0;
        width: 40px;
        height: 40px;
        font-size: 1rem;
        margin-bottom: 0;
    }

    .hiw__step h3 {
        font-size: 0.95rem;
        margin-bottom: 0.15rem;
        text-align: left;
    }

    .hiw__step p {
        font-size: 0.82rem;
        text-align: left;
    }
}

/* Extra small */
@media (max-width: 480px) {
    .results-section__videos {
        max-width: 96%;
        gap: 0.5rem;
    }

    .results-section__cards {
        max-width: 320px;
        gap: 0.5rem;
    }

    .results-card {
        padding: 0.65rem 0.75rem;
        border-radius: 8px;
    }

    .results-card__quote {
        font-size: 0.72rem;
        line-height: 1.4;
    }

    .results-card__author {
        gap: 0.4rem;
    }

    .results-card__photo {
        width: 30px;
        height: 30px;
    }

    .results-card__name {
        font-size: 0.75rem;
    }

    .results-card__gym {
        font-size: 0.6rem;
    }

    .final-cta {
        padding: 4rem 5%;
    }

    .final-cta__heading {
        font-size: 2rem;
    }

    .final-cta__sub {
        font-size: 0.95rem;
    }

    .final-cta__proof {
        gap: 1.2rem;
    }

    .final-cta__stat-num {
        font-size: 1.6rem;
    }

    .final-cta__btn {
        font-size: 1rem;
        padding: 0.9rem 2rem;
        width: 100%;
        max-width: 340px;
    }
}

/* ============================================================
   18. BOOKING CONFIRMATION PAGE
   ============================================================ */
.bc-page {
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 9.5rem 1.5rem 3rem;
    background: linear-gradient(135deg, #1a0a2e 0%, #0d0d1a 30%, #0a1628 60%, #1a0a2e 100%);
    position: relative;
    overflow: hidden;
}

/* Stars container */
.bc-stars {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

/* Asteroids canvas */
.bc-asteroids {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

/* Floating gradient orbs */
.bc-orbs {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.bc-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.35;
    animation: bc-orb-float 18s ease-in-out infinite;
}

.bc-orb--1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(233, 69, 96, 0.5) 0%, transparent 70%);
    top: -5%;
    right: -8%;
    animation-delay: 0s;
    animation-duration: 20s;
}

.bc-orb--2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.45) 0%, transparent 70%);
    top: 40%;
    left: -10%;
    animation-delay: -6s;
    animation-duration: 24s;
}

.bc-orb--3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.4) 0%, transparent 70%);
    bottom: 5%;
    right: 10%;
    animation-delay: -12s;
    animation-duration: 22s;
}

@keyframes bc-orb-float {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    25% {
        transform: translate(30px, -40px) scale(1.08);
    }

    50% {
        transform: translate(-20px, 20px) scale(0.95);
    }

    75% {
        transform: translate(15px, 35px) scale(1.05);
    }
}

/* Subtle grid overlay */
.bc-grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 70% 50% at 50% 50%, black 20%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse 70% 50% at 50% 50%, black 20%, transparent 80%);
}

.bc-container {
    max-width: 900px;
    width: 100%;
    text-align: center;
    position: relative;
    z-index: 1;
}

/* Side-by-side cards on desktop */
.bc-cards-row {
    display: flex;
    gap: 1.2rem;
    align-items: flex-start;
}

.bc-cards-row .bc-card {
    min-width: 0;
    max-width: none;
    margin: 0;
}

.bc-cards-row .bc-card--invite {
    flex: 1.4;
}

.bc-cards-row .bc-card--compact {
    flex: 0 0 auto;
    width: 300px;
}

.bc-card--invite {
    max-width: none;
    margin: 0;
}

.bc-card--compact {
    max-width: none;
    margin: 0;
}

/* ── Floating progress bar ── */
.bc-bar {
    position: fixed;
    top: 1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    max-width: 1100px;
    z-index: 1000;
    background: rgba(8, 8, 18, 0.92);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    padding: 0.7rem 2rem 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(233, 69, 96, 0.15), 0 0 0 1px rgba(233, 69, 96, 0.08);
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.bc-bar__inner {
    flex: 1;
    min-width: 0;
}

.bc-bar__logo {
    font-size: 1.2rem;
    font-weight: 800;
    color: #fff;
    text-decoration: none;
    flex-shrink: 0;
    line-height: 1;
}

.bc-bar__logo span {
    color: var(--color-accent);
}

.bc-bar__label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0.4rem;
    text-align: left;
    letter-spacing: 0.12em;
    font-weight: 600;
    text-transform: uppercase;
}

.bc-bar__label strong {
    color: #fff;
    font-weight: 800;
}

.bc-bar__track {
    width: 100%;
    height: 26px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.4);
}

.bc-bar__fill {
    width: 90%;
    height: 100%;
    background:
        repeating-linear-gradient(45deg,
            rgba(255, 255, 255, 0.15) 0px,
            rgba(255, 255, 255, 0.15) 10px,
            transparent 10px,
            transparent 20px),
        linear-gradient(90deg, #c0243a, var(--color-accent), #ff5272);
    background-size: 28.28px 28.28px, 100% 100%;
    border-radius: 20px;
    animation: bc-fill-in 1.4s cubic-bezier(0.22, 1, 0.36, 1) forwards,
        bc-stripes 0.8s linear 1.4s infinite;
    position: relative;
    box-shadow: 0 0 14px rgba(233, 69, 96, 0.4);
    overflow: hidden;
}

/* Flowing light streak across the fill */
.bc-bar__fill::before {
    content: '';
    position: absolute;
    top: 0;
    left: -60%;
    width: 40%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: bc-flow 2.8s ease-in-out 1.6s infinite;
    border-radius: 20px;
}

/* Glowing dot at the end of the fill */
.bc-bar__fill::after {
    content: '';
    position: absolute;
    right: 2px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.6), 0 0 14px rgba(233, 69, 96, 0.5);
    animation: bc-pulse 2s ease-in-out 1.6s infinite;
}

@keyframes bc-fill-in {
    from {
        width: 0%;
    }

    to {
        width: 90%;
    }
}

@keyframes bc-flow {
    0% {
        left: -60%;
        opacity: 0;
    }

    20% {
        opacity: 1;
    }

    100% {
        left: 120%;
        opacity: 0;
    }
}

@keyframes bc-pulse {

    0%,
    100% {
        opacity: 1;
        transform: translateY(-50%) scale(1);
    }

    50% {
        opacity: 0.7;
        transform: translateY(-50%) scale(1.5);
    }
}

@keyframes bc-stripes {
    from {
        background-position: 0 0, 0 0;
    }

    to {
        background-position: 28.28px 0, 0 0;
    }
}

/* Arrow hint */
.bc-arrow-hint {
    display: inline-block;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--color-accent);
    margin-left: 0.3rem;
    vertical-align: middle;
    animation: bc-arrow-pulse 1.4s ease-in-out infinite;
    filter: drop-shadow(0 0 6px rgba(233, 69, 96, 0.7));
    white-space: nowrap;
    line-height: 1;
}

@keyframes bc-arrow-pulse {

    0%,
    100% {
        opacity: 1;
        transform: translateY(0);
    }

    50% {
        opacity: 0.5;
        transform: translateY(-3px);
    }
}

/* Heading */
.bc-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.6rem;
    line-height: 1.2;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.9), 0 0 6px rgba(0, 0, 0, 0.7);
    letter-spacing: -0.02em;
}

.bc-subtitle {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
    margin-bottom: 2rem;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.8);
}

/* Meeting card */
.bc-card {
    background: #fff;
    border-radius: 14px;
    padding: 1.8rem 1.6rem;
    text-align: left;
    position: relative;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

/* Compact confirmed card */
.bc-card--compact {
    padding: 0.9rem 1.2rem;
}

.bc-card--compact .bc-card__with {
    font-size: 0.72rem;
    margin-top: 0.3rem;
    margin-bottom: 0.15rem;
}

.bc-card--compact .bc-card__host {
    gap: 0.4rem;
    margin-bottom: 0.5rem;
}

.bc-card--compact .bc-card__avatar-img {
    width: 30px;
    height: 30px;
}

.bc-card--compact .bc-card__name {
    font-size: 0.85rem;
}

.bc-card--compact .bc-card__detail {
    gap: 0.5rem;
    margin-bottom: 0.35rem;
}

.bc-card--compact .bc-card__icon {
    width: 16px;
    height: 16px;
    margin-top: 0.1rem;
}

.bc-card--compact .bc-card__detail-label {
    font-size: 0.6rem;
    margin-bottom: 0;
}

.bc-card--compact .bc-card__detail-value {
    font-size: 0.75rem;
}

.bc-card--compact .bc-card__divider {
    margin: 0.5rem 0;
}

.bc-card--compact .bc-card__add-label {
    font-size: 0.68rem;
    margin-bottom: 0.4rem;
}

.bc-card--compact .bc-card__calendars {
    gap: 0.4rem;
}

.bc-card--compact .bc-card__cal-btn {
    padding: 0.35rem 0.8rem;
    font-size: 0.72rem;
}

/* Invite instruction card — wider */
.bc-card--invite {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.bc-card__badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #22c55e;
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 0.25rem 1rem;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.bc-card__with {
    font-size: 0.82rem;
    color: #888;
    margin-top: 0.6rem;
    margin-bottom: 0.3rem;
}

.bc-card__host {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    margin-bottom: 1.4rem;
}

.bc-card__avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--color-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
}

.bc-card__avatar-img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--color-accent);
}

.bc-card__name {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-primary);
}

.bc-card__detail {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.bc-card__icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    color: var(--color-accent);
    margin-top: 0.15rem;
    object-fit: contain;
}

.bc-card__detail-label {
    font-size: 0.72rem;
    font-weight: 600;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 0.1rem;
}

.bc-card__detail-value {
    font-size: 0.9rem;
    color: var(--color-primary);
    font-weight: 500;
    line-height: 1.4;
}

.bc-card__divider {
    border: none;
    border-top: 1px solid #eee;
    margin: 1.2rem 0;
}

.bc-card__add-label {
    font-size: 0.78rem;
    font-weight: 600;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 0.8rem;
    text-align: center;
}

.bc-card__calendars {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
}

.bc-card__cal-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.55rem 1.1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 0.82rem;
    font-weight: 600;
    color: #333;
    text-decoration: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    font-family: var(--font-main);
    line-height: 1;
}

.bc-card__cal-btn img {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    object-fit: contain;
    display: block;
}

.bc-card__cal-btn span {
    line-height: 1;
}

.bc-card__cal-btn:hover {
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(233, 69, 96, 0.1);
}

/* Section cards (merged step + content) */
.bc-section {
    text-align: left;
    margin-top: 1.5rem;
    padding: 1.4rem 1.6rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.08);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.bc-section:nth-of-type(1) {
    border-color: rgba(233, 69, 96, 0.25);
    background: linear-gradient(145deg, rgba(233, 69, 96, 0.1) 0%, rgba(233, 69, 96, 0.03) 100%);
    box-shadow: 0 8px 32px rgba(233, 69, 96, 0.08), 0 8px 32px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(233, 69, 96, 0.1);
}

.bc-section:nth-of-type(2) {
    border-color: rgba(233, 69, 96, 0.2);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
}

.bc-section:nth-of-type(3) {
    border-color: rgba(233, 69, 96, 0.2);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
}

.bc-section .bc-cards-row {
    margin: 0;
}

.bc-section .bc-info__text {
    margin: 0;
}

.bc-section .bc-info__list {
    margin: 0;
}

/* Do / Don't diagram */
.bc-dodont {
    display: flex;
    gap: 0.8rem;
}

.bc-dodont__col {
    flex: 1;
    border-radius: 10px;
    padding: 0.8rem 1rem;
}

.bc-dodont__col--do {
    background: linear-gradient(145deg, rgba(76, 175, 80, 0.12) 0%, rgba(76, 175, 80, 0.04) 100%);
    border: 1px solid rgba(76, 175, 80, 0.3);
    border-radius: 14px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(76, 175, 80, 0.1);
}

.bc-dodont__col--dont {
    background: linear-gradient(145deg, rgba(229, 57, 53, 0.12) 0%, rgba(229, 57, 53, 0.04) 100%);
    border: 1px solid rgba(229, 57, 53, 0.3);
    border-radius: 14px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(229, 57, 53, 0.1);
}

.bc-dodont__header {
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    margin-bottom: 0.7rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.bc-dodont__header--do {
    color: #4caf50;
}

.bc-dodont__header--dont {
    color: #e53935;
}

.bc-dodont__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
}

.bc-dodont__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.35rem;
}

.bc-dodont__svg {
    width: 32px;
    height: 32px;
    opacity: 0.8;
}

.bc-dodont__col--do .bc-dodont__svg {
    color: #4caf50;
}

.bc-dodont__col--dont .bc-dodont__svg {
    color: #e53935;
}

.bc-dodont__label {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.3;
}

.bc-dodont__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.bc-dodont__list li {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    padding-left: 0;
    display: flex;
    align-items: center;
    gap: 0.45rem;
}

.bc-dodont__icon {
    font-size: 1rem;
    flex-shrink: 0;
    width: 1.2rem;
    text-align: center;
}

/* Timeline layout for step 3 */
.bc-timeline {
    display: flex;
    gap: 0;
    position: relative;
}

.bc-timeline__step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
}

.bc-timeline__step::after {
    content: '';
    position: absolute;
    top: 18px;
    left: 50%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, rgba(233, 69, 96, 0.4), rgba(233, 69, 96, 0.15));
    z-index: 0;
}

.bc-timeline__step:last-child::after {
    display: none;
}

.bc-timeline__dot {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #1a0a2e;
    border: 2px solid rgba(233, 69, 96, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
    z-index: 1;
    margin-bottom: 0.6rem;
    box-shadow: 0 0 12px rgba(233, 69, 96, 0.15);
}

.bc-timeline__content {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.bc-timeline__min {
    font-size: 0.72rem;
    font-weight: 800;
    color: var(--color-accent);
    letter-spacing: 0.04em;
    background: rgba(233, 69, 96, 0.15);
    padding: 0.15rem 0.5rem;
    border-radius: 999px;
    display: inline-block;
}

.bc-timeline__title {
    font-size: 0.82rem;
    font-weight: 600;
    color: #fff;
}

.bc-timeline__desc {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.4;
    max-width: 130px;
    margin: 0 auto;
}

.bc-timeline__note {
    font-size: 0.78rem;
    color: #1a1a2e;
    line-height: 1.5;
    margin-top: 1.2rem;
    padding: 0.8rem 1.1rem;
    background: rgba(255, 255, 255, 0.88);
    border-left: 3px solid var(--color-accent);
    border-radius: 0 12px 12px 0;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
    font-weight: 500;
}

/* Step labels */
.bc-step-label {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.95rem;
    font-weight: 700;
    color: #fff;
    margin-top: 0;
    margin-bottom: 0.8rem;
    text-align: left;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.7);
}

.bc-step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--color-accent);
    color: #fff;
    font-size: 0.82rem;
    font-weight: 800;
    flex-shrink: 0;
    box-shadow: 0 0 14px rgba(233, 69, 96, 0.3);
    position: relative;
}

.bc-step-num::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid var(--color-accent);
    opacity: 0.3;
}

/* Info sections */
.bc-info {
    text-align: left;
    margin-top: 2rem;
    padding: 1.2rem 1.4rem;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.bc-info__heading {
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.6rem;
}

.bc-info__text {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
}

.bc-info__list {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0 0;
}

.bc-info__list li {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    padding-left: 1.4rem;
    position: relative;
}

.bc-info__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55rem;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-accent);
}

/* Footer note */
.bc-footer-note {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.55);
    margin-top: 1.8rem;
    line-height: 1.6;
}

/* Mobile */
@media (max-width: 600px) {
    .bc-page {
        padding-top: 7.5rem;
    }

    .bc-bar {
        width: 92%;
        padding: 0.55rem 1rem 0.6rem;
        top: 0.6rem;
        gap: 0.8rem;
    }

    .bc-bar__logo {
        font-size: 0.9rem;
    }

    .bc-bar__label {
        font-size: 0.8rem;
    }

    .bc-arrow-hint {
        font-size: 1.3rem;
    }

    .bc-bar__track {
        height: 18px;
    }

    .bc-bar__fill::after {
        width: 12px;
        height: 12px;
    }

    .bc-title {
        font-size: 1.35rem;
    }

    .bc-card {
        padding: 1.4rem 1.2rem;
    }

    .bc-card__calendars {
        flex-direction: row;
        justify-content: center;
        gap: 0.5rem;
    }

    .bc-card__cal-btn {
        width: auto;
        padding: 0.4rem 0.7rem;
        font-size: 0.72rem;
    }

    .bc-progress__line {
        width: 30px;
    }

    .bc-cards-row {
        flex-direction: column;
        align-items: center;
    }

    .bc-cards-row .bc-card--compact {
        width: 100%;
        max-width: 340px;
    }

    /* Do/Don't side by side on mobile */
    .bc-dodont {
        flex-direction: row;
        gap: 0.5rem;
    }

    .bc-dodont__col {
        padding: 0.5rem 0.6rem;
    }

    .bc-dodont__header {
        font-size: 0.7rem;
        margin-bottom: 0.4rem;
        padding-bottom: 0.3rem;
    }

    .bc-dodont__grid {
        gap: 0.4rem;
    }

    .bc-dodont__svg {
        width: 22px;
        height: 22px;
    }

    .bc-dodont__label {
        font-size: 0.62rem;
    }

    /* Timeline vertical with connecting line */
    .bc-timeline {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        position: relative;
        padding-left: 0;
    }

    .bc-timeline::before {
        content: '';
        position: absolute;
        left: 18px;
        top: 19px;
        bottom: 19px;
        width: 2px;
        background: linear-gradient(180deg, rgba(233, 69, 96, 0.4), rgba(233, 69, 96, 0.15));
        z-index: 0;
    }

    .bc-timeline__step {
        flex-direction: row;
        text-align: left;
        gap: 0.8rem;
        padding: 0.6rem 0;
        position: relative;
    }

    .bc-timeline__step::after {
        display: none;
    }

    .bc-timeline__dot {
        flex-shrink: 0;
        margin-bottom: 0;
    }

    .bc-timeline__content {
        align-items: flex-start;
    }

    .bc-timeline__desc {
        margin: 0;
        max-width: none;
    }
}