/* ═══════════════════════════════════════════════════════
   I WANT TO BE. — Design System
   Premium Mental Coaching for Youth Football
   ═══════════════════════════════════════════════════════ */

/* ─── Design Tokens ─── */
:root {
    --dark: #121212;
    --light: #F4F4F5;
    --volt: #D3FF24;
    --text-on-light: #202020;
    --text-on-dark: #F8F8F8;
    --text-muted-light: rgba(32, 32, 32, 0.6);
    --text-muted-dark: rgba(248, 248, 248, 0.55);
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
    --ease-premium: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--text-on-light);
    background-color: var(--light);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

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

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ─── Buttons ─── */
.btn-volt {
    display: inline-block;
    background-color: var(--volt);
    color: var(--dark);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: transform 0.3s var(--ease-premium), box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-volt::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0);
    transition: background 0.3s ease;
}

.btn-volt:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(211, 255, 36, 0.2);
}

.btn-volt:hover::after {
    background: rgba(255, 255, 255, 0.1);
}

.btn-volt-large {
    font-size: 1.15rem;
    padding: 1.25rem 3.5rem;
}

/* ═══════════════════════════════════════════════════════
   NAVIGATION (Fixed / Glassmorphism)
   ═══════════════════════════════════════════════════════ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(18, 18, 18, 0.8);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    transition: background-color 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 72px;
}

.nav-logo {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.35rem;
    color: var(--text-on-dark);
    letter-spacing: -0.04em;
    white-space: nowrap;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-link {
    color: var(--text-muted-dark);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--volt);
}

.dropdown-indicator {
    font-size: 0.7em;
    margin-left: 2px;
    opacity: 0.6;
}

.btn-nav-cta {
    background-color: var(--volt);
    color: var(--dark);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.6rem 1.4rem;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(211, 255, 36, 0.2);
}

/* ═══════════════════════════════════════════════════════
   SECTION 1: HERO (Light Typography)
   ═══════════════════════════════════════════════════════ */
.hero-light {
    background-color: #FFFFFF;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 72px;
}

.hero-light-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 6rem 0 2rem 0;
}

.hero-light-h1 {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: clamp(3.2rem, 6vw, 6.5rem);
    color: var(--dark);
    text-align: center;
    line-height: 1.05;
    letter-spacing: -0.04em;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.hero-spacer {
    height: 15vh;
    min-height: 80px;
}

.hero-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    width: 100%;
    max-width: 1100px;
    position: relative;
    z-index: 10;
}

.hero-card {
    background-color: var(--dark);
    border-radius: 16px;
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: center;
    min-height: 240px;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s var(--ease-premium), box-shadow 0.4s ease;
}

.hero-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 4px;
    background: var(--volt);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--ease-premium);
}

.hero-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

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

.hero-card-title {
    color: var(--text-on-dark);
    font-size: 1.35rem;
    font-weight: 700;
    line-height: 1.4;
    transition: color 0.3s ease;
    margin-bottom: 2rem;
}

.hero-card:hover .hero-card-title {
    color: var(--volt);
}

.hero-card-icon {
    margin-top: auto;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    color: var(--volt);
    transition: background 0.3s ease, transform 0.3s ease;
}

.hero-card:hover .hero-card-icon {
    background: rgba(211, 255, 36, 0.15);
    transform: translateY(5px);
}

/* ═══════════════════════════════════════════════════════
   SECTION 1: HERO (Dark Mode) - Fallback
   ═══════════════════════════════════════════════════════ */
.hero {
    background-color: var(--dark);
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 72px;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    /* CHANGED: centered layout, removed portrait image */
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
    justify-items: center;
    text-align: center;
    width: 100%;
    padding: 4rem 0;
}

.hero-content {
    display: flex;
    flex-direction: column;
    /* CHANGED: centered elements */
    align-items: center;
}

.hero-h1 {
    font-size: clamp(3.2rem, 5.5vw, 5rem);
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 2rem;
    color: var(--text-on-dark);
}

.hero-static {
    display: block;
}

.hero-dynamic-wrapper {
    display: block;
    overflow: hidden;
    height: 1.15em;
    position: relative;
}

.hero-dynamic {
    display: inline-block;
    color: var(--volt);
    transition: opacity 0.4s ease, transform 0.4s var(--ease-premium);
}

.hero-dynamic.fade-out {
    opacity: 0;
    transform: translateY(-20px);
}

.hero-dynamic.fade-in {
    opacity: 0;
    transform: translateY(20px);
}

.hero-sub {
    font-size: 1.2rem;
    color: var(--text-muted-dark);
    margin-bottom: 2.5rem;
    max-width: 700px;
    line-height: 1.7;
}

.hero-buttons {
    /* CHANGED: ensure buttons are centered */
    display: flex; 
    gap: 1rem; 
    margin-bottom: 1rem; 
    flex-wrap: wrap; 
    align-items: center;
    justify-content: center;
}

.hero-visual {
    display: flex;
    justify-content: flex-end;
}

.hero-portrait {
    width: 100%;
    max-width: 440px;
    aspect-ratio: 1/1;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.04);
}

/* ═══════════════════════════════════════════════════════
   SECTION 2: MENTAL WHEEL (Light Mode)
   ═══════════════════════════════════════════════════════ */
.section-wheel {
    background-color: var(--light);
    padding: 8rem 0;
}

.wheel-title {
    text-align: center;
    font-size: clamp(2.4rem, 4vw, 3.2rem);
    margin-bottom: 1rem;
    color: var(--text-on-light);
}

.wheel-sub {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-muted-light);
    max-width: 600px;
    margin: 0 auto 4rem auto;
}

.wheel-container {
    position: relative;
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
}

.donut-svg {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.08));
}

.donut-segment {
    cursor: pointer;
    transition: fill 0.3s ease-in-out, filter 0.3s ease;
    transform-origin: 200px 200px;
}

.donut-segment:hover {
    fill: var(--volt) !important;
    filter: drop-shadow(0 0 12px rgba(211, 255, 36, 0.3));
}

.donut-hole {
    pointer-events: none;
}

.donut-center-text {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 16px;
    letter-spacing: 0.08em;
    pointer-events: none;
}

/* Wheel Labels */
.wheel-labels {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.wheel-label {
    position: absolute;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--text-on-light);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.wheel-label.active {
    color: var(--volt);
}

.label-tr {
    top: 8%;
    right: -28%;
    text-align: left;
}

.label-br {
    bottom: 8%;
    right: -28%;
    text-align: left;
}

.label-bl {
    bottom: 8%;
    left: -28%;
    text-align: right;
}

.label-tl {
    top: 8%;
    left: -28%;
    text-align: right;
}

/* ═══════════════════════════════════════════════════════
   SECTION 3: DIE STORY (Dark Mode)
   ═══════════════════════════════════════════════════════ */
.section-story {
    background-color: var(--dark);
    padding: 8rem 0;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.story-h2 {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    color: var(--text-on-dark);
    margin-bottom: 2rem;
}

.story-p {
    font-size: 1.1rem;
    color: var(--text-muted-dark);
    margin-bottom: 1.5rem;
}

.story-credentials {
    list-style: none;
    margin-top: 2rem;
}

.story-credentials li {
    color: var(--text-on-dark);
    font-weight: 500;
    font-size: 1.05rem;
    margin-bottom: 0.8rem;
}

.story-images {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.story-img {
    width: 100%;
    border-radius: 12px;
    object-fit: cover;
    object-position: top;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.story-img-main {
    max-height: 350px;
}

.story-img-secondary {
    max-height: 280px;
}

/* ═══════════════════════════════════════════════════════
   SECTION 4: BOOKING FORM (Dark Mode)
   ═══════════════════════════════════════════════════════ */
.section-booking {
    background-color: var(--dark);
    padding: 8rem 0;
}

.booking-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.booking-h2 {
    font-size: clamp(2.2rem, 4vw, 3rem);
    color: var(--text-on-dark);
    margin-bottom: 1.5rem;
    line-height: 1.15;
}

.booking-p {
    font-size: 1.1rem;
    color: var(--text-muted-dark);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.booking-benefits {
    list-style: none;
}

.booking-benefits li {
    color: var(--text-on-dark);
    font-weight: 500;
    font-size: 1.05rem;
    margin-bottom: 0.8rem;
}

.booking-form-card {
    background-color: var(--light);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.booking-form input,
.booking-form textarea {
    width: 100%;
    padding: 1.1rem 1.25rem;
    background-color: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-on-light);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.booking-form input:focus,
.booking-form textarea:focus {
    outline: none;
    border-color: var(--text-on-light);
    box-shadow: 0 0 0 1px var(--text-on-light);
}

.booking-form textarea {
    resize: vertical;
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

/* ═══════════════════════════════════════════════════════
   FOOTER (Dark Mode)
   ═══════════════════════════════════════════════════════ */
.footer {
    background-color: var(--dark);
    padding: 4rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-inner {
    text-align: center;
}

.footer-logo {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.2rem;
    color: var(--text-on-dark);
    letter-spacing: -0.04em;
    margin-bottom: 1.5rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-links a {
    color: var(--text-muted-dark);
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--volt);
}

.footer-copy {
    color: var(--text-muted-dark);
    font-size: 0.8rem;
    opacity: 0.6;
}

/* ═══════════════════════════════════════════════════════
   MODALS / OVERLAYS (Deep Layers)
   ═══════════════════════════════════════════════════════ */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    inset: 0;
    background-color: rgba(18, 18, 18, 0.55);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.modal.show {
    display: flex;
    opacity: 1;
}

.modal-content {
    background-color: var(--light);
    color: var(--text-on-light);
    width: 92%;
    max-width: 620px;
    max-height: 85vh;
    overflow-y: auto;
    padding: 3.5rem;
    border-radius: 16px;
    position: relative;
    transform: scale(0.92) translateY(24px);
    transition: transform 0.4s var(--ease-premium);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
}

.modal.show .modal-content {
    transform: scale(1) translateY(0);
}

.modal-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: none;
    border: none;
    color: var(--text-muted-light);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease, transform 0.3s ease, background-color 0.3s ease;
}

.modal-close:hover {
    color: var(--text-on-light);
    transform: rotate(90deg);
    background-color: rgba(0, 0, 0, 0.05);
}

.modal-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-muted-light);
    margin-bottom: 0.75rem;
}

.modal-h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    padding-right: 2rem;
    color: var(--text-on-light);
}

.modal-body p {
    color: var(--text-muted-light);
    font-size: 1.05rem;
    margin-bottom: 1.25rem;
    line-height: 1.7;
}

.modal-body h4 {
    font-size: 1.15rem;
    color: var(--text-on-light);
    margin-top: 2rem;
    margin-bottom: 0.5rem;
}

/* ═══════════════════════════════════════════════════════
   SECTION: TRUST CARDS
   ═══════════════════════════════════════════════════════ */
.section-trust {
    background-color: var(--dark);
    padding: 2rem 0 6rem 0;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.trust-card {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 12px;
}

.trust-tag {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--volt);
    margin-bottom: 1rem;
}

.trust-text {
    font-size: 1rem;
    color: var(--text-muted-dark);
    line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════
   SECTION: PROCESS
   ═══════════════════════════════════════════════════════ */
.section-process {
    background-color: var(--light);
    padding: 6rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.process-title {
    text-align: center;
    font-size: clamp(2rem, 3vw, 2.8rem);
    color: var(--text-on-light);
    margin-bottom: 4rem;
}

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

.process-step {
    text-align: center;
}

.process-number {
    width: 60px;
    height: 60px;
    background-color: var(--dark);
    color: var(--volt);
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem auto;
}

.process-step h3 {
    font-size: 1.3rem;
    color: var(--text-on-light);
    margin-bottom: 1rem;
}

.process-step p {
    font-size: 1rem;
    color: var(--text-muted-light);
    line-height: 1.6;
}

/* Buttons Extension */
.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--text-on-dark);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    border-color: var(--volt);
    color: var(--volt);
}

/* ═══════════════════════════════════════════════════════
   SCROLL REVEAL ANIMATIONS
   ═══════════════════════════════════════════════════════ */
.reveal {
    opacity: 0;
    transform: translateY(-40px);
    transition: opacity 1.8s var(--ease-premium), transform 1.8s var(--ease-premium);
    will-change: opacity, transform;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay {
    opacity: 0;
    transform: translateY(-40px);
    transition: opacity 1.8s var(--ease-premium), transform 1.8s var(--ease-premium);
    transition-delay: 0.3s;
    will-change: opacity, transform;
}

.reveal-delay.active {
    opacity: 1;
    transform: translateY(0);
}

/* ═══════════════════════════════════════════════════════
   TIMELINE COMPONENT (Dark Mode)
   ═══════════════════════════════════════════════════════ */
.timeline-container {
    padding-top: 2rem;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 1rem 0;
}

.timeline-item {
    position: relative;
    padding-left: 60px;
    padding-bottom: 3.5rem;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

/* Connecting line drawn by each item except the last one */
.timeline-item:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 32px; /* Start below the dot */
    bottom: 0;
    left: 15px; /* Center alignment for 16px dot */
    width: 2px;
}

/* Solid line for past and current */
.timeline-item.status-past:not(:last-child)::after,
.timeline-item.status-current:not(:last-child)::after {
    background-color: rgba(255, 255, 255, 0.2);
}

/* Dashed line for future */
.timeline-item.status-future:not(:last-child)::after {
    background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.15) 50%, transparent 50%);
    background-size: 2px 10px;
    background-repeat: repeat-y;
}

/* The Dot */
.timeline-dot {
    position: absolute;
    top: 4px;
    left: 8px; /* 16px center -> 16 - 8 = 8px */
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: var(--dark);
    border: 2px solid rgba(255, 255, 255, 0.3);
    z-index: 2;
    transition: all 0.3s ease;
}

/* Current Dot Highlight */
.timeline-item.status-current .timeline-dot {
    border-color: var(--volt);
    box-shadow: 0 0 12px rgba(211, 255, 36, 0.3);
    background-color: var(--volt);
}
.timeline-item.status-current .timeline-dot::after {
    content: '';
    position: absolute;
    inset: -6px;
    border: 1px solid var(--volt);
    border-radius: 50%;
    opacity: 0.4;
}

/* Future Dot */
.timeline-item.status-future .timeline-dot {
    border: 2px solid rgba(255, 255, 255, 0.15);
    background-color: transparent;
}

/* Parallel Item Dot */
.timeline-item.timeline-item-parallel .timeline-dot {
    width: 12px;
    height: 12px;
    left: 10px; /* 16px center -> 16 - 6 = 10px */
    top: 6px;
}

/* Content */
.timeline-content {
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    padding: 2rem;
    transition: transform 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
}

.timeline-item:hover .timeline-content {
    border-color: rgba(255, 255, 255, 0.08);
    background-color: rgba(255, 255, 255, 0.03);
}

.timeline-item.status-current .timeline-content {
    border-color: rgba(211, 255, 36, 0.15);
    background-color: rgba(211, 255, 36, 0.02);
}

/* Tags */
.timeline-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
    margin-bottom: 1rem;
}

.tag-past {
    background-color: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.7);
}

.tag-current {
    background-color: rgba(211, 255, 36, 0.15);
    color: var(--volt);
}

.tag-future {
    background-color: transparent;
    color: rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.timeline-title {
    font-size: 1.25rem;
    color: var(--text-on-dark);
    margin-bottom: 0.8rem;
    font-family: var(--font-heading);
}

.timeline-text {
    font-size: 1.05rem;
    color: var(--text-muted-dark);
    line-height: 1.6;
}

.timeline-note {
    margin-top: 1.25rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    background-color: rgba(0, 0, 0, 0.2);
    padding: 1rem;
    border-radius: 8px;
    border-left: 2px solid rgba(255, 255, 255, 0.1);
    line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .label-tr, .label-br {
        right: -20%;
    }
    .label-bl, .label-tl {
        left: -20%;
    }
}

@media (max-width: 900px) {
    .trust-grid, .process-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .hero-light-h1 {
        font-size: clamp(2.5rem, 8vw, 4rem);
    }

    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-content {
        align-items: center;
    }

    .hero-sub {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-visual {
        justify-content: center;
        order: -1;
    }

    .hero-portrait {
        max-width: 320px;
    }

    .story-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .story-credentials {
        display: inline-block;
        text-align: left;
    }

    /* Wheel labels collapse into grid below chart */
    .wheel-container {
        max-width: 300px;
    }

    .wheel-labels {
        position: relative;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
        margin-top: 2rem;
        pointer-events: auto;
    }

    .wheel-label {
        position: static;
        text-align: center;
        padding: 0.75rem;
        background: rgba(0, 0, 0, 0.03);
        border-radius: 8px;
        cursor: pointer;
        pointer-events: auto;
    }

    .wheel-label br {
        display: none;
    }

    .modal-content {
        padding: 2.5rem 1.5rem;
    }

    .booking-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .booking-benefits {
        display: inline-block;
        text-align: left;
    }

    .booking-form-card {
        padding: 2rem;
    }
}

@media (max-width: 600px) {
    .nav-links {
        display: none;
    }
    
    .hide-mobile {
        display: none;
    }

    .hero-h1 {
        font-size: 2.6rem;
    }

    .hero-light-h1 {
        font-size: clamp(1.8rem, 7vw, 2.3rem);
        padding: 0 1.5rem;
        line-height: 1.15;
    }

    .wheel-title, .story-h2, .booking-h2 {
        font-size: 2rem;
    }

    .btn-volt-large {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    /* Mobile Overrides for Global Inline Styles */
    [style*="padding: 10rem"],
    [style*="padding: 8rem"],
    [style*="padding: 6rem"],
    [style*="padding: 5rem"] {
        padding-top: 4rem !important;
        padding-bottom: 4rem !important;
    }

    /* Fix two-column forms and pricing cards overflowing on mobile */
    [style*="grid-template-columns: 1fr 1fr"],
    [style*="grid-template-columns: repeat(auto-fit, minmax(300px"] {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }
    
    /* Hero Cards (die drei Kästen) */
    .hero-card {
        min-height: 140px;
        padding: 1.5rem;
    }
    .hero-card-title {
        font-size: 1.15rem;
        margin-bottom: 1rem;
    }
    .hero-card-icon {
        width: 36px;
        height: 36px;
    }

    /* Navigation Bar (CTA Button) */
    .nav-container {
        padding: 0 1rem;
    }
    .btn-nav-cta {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }

    /* Form Container Padding */
    .booking-form-card,
    div[style*="padding: 3rem"] {
        padding: 1.5rem !important;
    }
    
    /* Ensure the main container doesn't overflow */
    .container {
        padding: 0 1.5rem;
    }
}
