/* =====================================================
   SO BRIGHT FILMS — SALES PAGE DESIGN SYSTEM
   Brand: Rich Black / Record Red / Pure White / Accent Grey
   Font: Gotham (Black, Medium, Book) → Montserrat fallback
   Rules: NO box-shadow, NO gradients, border-radius max 8px
   ===================================================== */

/* --- FONTS --- */
@font-face {
    font-family: 'Gotham';
    src: url('GothamPro-Black.woff2') format('woff2');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gotham';
    src: url('GothamPro-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gotham';
    src: url('gothambook-webfont.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* Montserrat fallback from Google Fonts loaded in HTML <head> */

/* --- CSS VARIABLES --- */
:root {
    --rich-black: #0A0203;
    --record-red: #DA291C;
    --pure-white: #FFFFFF;
    --accent-grey: #63666A;
    --font-main: 'Gotham', 'Montserrat', sans-serif;
    --radius: 8px;
    --max-content: 800px;
    --max-reading: 700px;
    --section-padding: 64px;
    --element-gap: 32px;
}

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

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

body {
    background-color: var(--rich-black);
    color: var(--pure-white);
    font-family: var(--font-main);
    font-weight: 400;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

ul,
ol {
    list-style: none;
}

/* --- LAYOUT --- */
.container {
    max-width: var(--max-content);
    margin: 0 auto;
    padding: 0 24px;
}

.container--narrow {
    max-width: var(--max-reading);
}

.section {
    padding: var(--section-padding) 0;
}

.section--separator {
    border-top: 1px solid var(--accent-grey);
}

.section--red-separator {
    border-top: 4px solid var(--record-red);
}

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

.text-right {
    text-align: right;
}

/* --- TYPOGRAPHY --- */
h1,
h2,
h3,
h4 {
    font-weight: 900;
    line-height: 1.2;
    color: var(--pure-white);
}

h1 {
    font-size: clamp(32px, 5vw, 48px);
}

h2 {
    font-size: clamp(24px, 4vw, 36px);
}

h3 {
    font-size: clamp(22px, 3.5vw, 28px);
}

h4 {
    font-size: clamp(18px, 2.5vw, 22px);
}

p {
    margin-bottom: 24px;
}

.text-accent {
    color: var(--record-red);
}

.text-grey {
    color: var(--accent-grey);
}

.text-bold {
    font-weight: 500;
}

.text-black {
    font-weight: 900;
}

.text-italic {
    font-style: italic;
}

.text-inner-voice {
    font-style: italic;
    color: var(--accent-grey);
}

.pre-headline {
    font-size: 16px;
    font-weight: 400;
    font-style: italic;
    color: var(--accent-grey);
    margin-bottom: 32px;
}

.sub-headline {
    font-size: clamp(18px, 3vw, 24px);
    font-weight: 500;
    line-height: 1.5;
    margin-top: 24px;
}

.body-large {
    font-size: 18px;
    line-height: 1.7;
}

.body-small {
    font-size: 16px;
}

.micro-text {
    font-size: 14px;
    color: var(--accent-grey);
    font-weight: 400;
}

/* Red accent words inline */
.red {
    color: var(--record-red);
}

.red-bold {
    color: var(--record-red);
    font-weight: 900;
}

/* --- BUTTONS (CTA) --- */
.cta-btn {
    display: inline-block;
    background-color: var(--record-red);
    color: var(--pure-white);
    font-family: var(--font-main);
    font-weight: 900;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 20px 40px;
    border: 2px solid var(--record-red);
    border-radius: var(--radius);
    max-width: 600px;
    width: 100%;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    text-decoration: none;
    line-height: 1.3;
}

.cta-btn:hover {
    background-color: var(--rich-black);
    color: var(--record-red);
    border-color: var(--record-red);
}

.cta-btn--large {
    font-size: 20px;
    padding: 24px 48px;
    max-width: 650px;
}

.cta-wrapper {
    text-align: center;
    margin: 40px 0;
}

.cta-subtext {
    font-size: 14px;
    font-weight: 400;
    font-style: italic;
    color: var(--accent-grey);
    text-align: center;
    margin-top: 16px;
}

/* --- CARDS --- */
.card {
    border: 1px solid var(--accent-grey);
    border-radius: var(--radius);
    padding: 32px;
    max-width: 750px;
    margin: 0 auto var(--element-gap) auto;
    background: var(--rich-black);
}

.card__title {
    font-size: 22px;
    font-weight: 900;
    color: var(--pure-white);
    margin-bottom: 16px;
}

.card__body {
    font-size: 17px;
    font-weight: 400;
    line-height: 1.6;
}

.card__value {
    font-size: 18px;
    font-weight: 500;
    color: var(--record-red);
    text-align: right;
    margin-top: 20px;
}

/* Card variant: guarantee */
.card--guarantee .card__title {
    font-size: 20px;
    color: var(--record-red);
}

/* Card variant: choice */
.card--muted {
    color: var(--accent-grey);
}

.card--muted .card__body {
    color: var(--accent-grey);
}

.card--highlight {
    border: 2px solid var(--record-red);
}

.card--highlight .card__body {
    font-weight: 500;
}

/* --- LISTS with red dots --- */
.red-dot-list {
    padding-left: 0;
}

.red-dot-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 16px;
    font-size: 17px;
    line-height: 1.6;
}

.red-dot-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    background-color: var(--record-red);
    border-radius: 50%;
}

.red-dot-list--small li::before {
    width: 6px;
    height: 6px;
    top: 11px;
}

/* --- ARROWS --- */
.arrow {
    color: var(--record-red);
    font-weight: 900;
}

/* --- BLOCKQUOTE --- */
blockquote {
    border-left: 4px solid var(--record-red);
    padding-left: 24px;
    font-style: italic;
    color: var(--accent-grey);
    font-size: 18px;
    margin: 32px 0;
    line-height: 1.7;
}

/* --- TABLE --- */
.value-table {
    width: 100%;
    max-width: 700px;
    margin: 32px auto;
    border-collapse: separate;
    border-spacing: 0;
    border: 1px solid var(--accent-grey);
    border-radius: var(--radius);
    overflow: hidden;
}

.value-table thead th {
    background-color: var(--record-red);
    color: var(--pure-white);
    font-weight: 900;
    font-size: 16px;
    padding: 16px;
    text-align: left;
}

.value-table tbody td {
    background-color: var(--rich-black);
    color: var(--pure-white);
    font-size: 16px;
    font-weight: 400;
    padding: 16px;
    border-top: 1px solid var(--accent-grey);
}

.value-table tbody tr:last-child td {
    border-top: 2px solid var(--record-red);
    font-weight: 900;
    font-size: 20px;
    color: var(--record-red);
}

/* --- FAQ ACCORDION --- */
.faq-list {
    max-width: 750px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--accent-grey);
}

.faq-question {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 20px 0;
    cursor: pointer;
    width: 100%;
    background: none;
    border: none;
    color: var(--pure-white);
    font-family: var(--font-main);
    font-weight: 500;
    font-size: 18px;
    text-align: left;
    line-height: 1.5;
    transition: color 0.2s ease;
}

.faq-question:hover {
    color: var(--record-red);
}

.faq-icon {
    color: var(--record-red);
    font-size: 18px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    display: inline-block;
    margin-top: 2px;
}

.faq-item.open .faq-icon {
    transform: rotate(90deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding-left: 30px;
}

.faq-answer-inner {
    padding-bottom: 24px;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.6;
}

.faq-answer-inner p {
    margin-bottom: 16px;
}

/* --- VIDEO EMBED --- */
.video-wrapper {
    max-width: 700px;
    margin: 32px auto;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 16/9;
    background: var(--rich-black);
}

.video-wrapper--portrait {
    aspect-ratio: 9/16;
    max-width: 380px;
}

.video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Fullscreen: keep ratio and center on black background */
.video-wrapper video:fullscreen,
.video-wrapper video:-webkit-full-screen {
    object-fit: contain;
    background: #000;
}

/* --- PRICE DISPLAY --- */
.price-display {
    font-size: clamp(56px, 8vw, 80px);
    font-weight: 900;
    color: var(--pure-white);
    text-align: center;
    padding: 32px 0;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* --- GUARANTEE BOX --- */
.guarantee-box {
    border: 2px solid var(--record-red);
    border-radius: var(--radius);
    padding: 24px 32px;
    max-width: 600px;
    margin: 32px auto;
    text-align: center;
}

.guarantee-box h2 {
    color: var(--record-red);
    font-size: clamp(28px, 5vw, 36px);
}

/* --- PAYMENT TIMELINE --- */
.payment-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 750px;
    margin: 40px auto;
}

.payment-block {
    text-align: center;
    padding: 24px;
}

.payment-block__week {
    font-size: 24px;
    font-weight: 900;
    color: var(--record-red);
    margin-bottom: 8px;
}

.payment-block__amount {
    font-size: 20px;
    font-weight: 900;
    color: var(--pure-white);
    margin-bottom: 8px;
}

.payment-block__desc {
    font-size: 16px;
    font-weight: 400;
    color: var(--pure-white);
    line-height: 1.5;
}

/* --- CHOICES LAYOUT --- */
.choices-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 800px;
    margin: 40px auto;
}

/* --- HEADER --- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: var(--rich-black);
    height: 70px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.site-header.scrolled {
    border-bottom-color: rgba(99, 102, 106, 0.3);
}

.header-inner {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 40px;
    width: auto;
}

.header-cta {
    font-family: var(--font-main);
    font-weight: 500;
    font-size: 14px;
    color: var(--record-red);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: opacity 0.2s ease;
    display: flex;
    align-items: center;
}

.header-cta:hover {
    opacity: 0.8;
}

/* Body offset for fixed header */
body {
    padding-top: 70px;
}

/* --- FOOTER --- */
.site-footer {
    border-top: 1px solid var(--accent-grey);
    padding: 64px 24px 32px;
    text-align: center;
}

.footer-logo {
    margin-bottom: 24px;
    text-align: center;
}

.footer-logo-img {
    height: 48px;
    width: auto;
    margin: 0 auto;
}

.footer-contact {
    font-size: 14px;
    color: var(--accent-grey);
    margin-bottom: 16px;
}

.footer-copyright {
    font-size: 12px;
    color: var(--accent-grey);
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.footer-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: var(--accent-grey);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
    text-decoration: none;
}

.footer-social-link:hover {
    color: var(--record-red);
    background: rgba(218, 41, 28, 0.1);
    border-color: var(--record-red);
}

/* --- PS SECTION --- */
.ps-block {
    max-width: 700px;
    margin: 0 auto 32px auto;
    font-size: 16px;
    line-height: 1.7;
}

.ps-label {
    font-weight: 900;
    color: var(--record-red);
}

.ps-block a {
    color: var(--record-red);
    text-decoration: none;
    transition: text-decoration 0.2s ease;
}

.ps-block a:hover {
    text-decoration: underline;
}

/* --- TENSION PHRASES --- */
.tension {
    margin-bottom: 8px;
}

.breathing {
    margin-bottom: 24px;
}

.spacer-48 {
    height: 48px;
}

.spacer-64 {
    height: 64px;
}

/* --- FADE IN ANIMATION --- */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    :root {
        --section-padding: 48px;
        --element-gap: 24px;
    }

    .payment-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .choices-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .cta-btn {
        font-size: 14px;
        padding: 18px 24px;
    }

    .cta-btn--large {
        font-size: 16px;
        padding: 20px 32px;
    }

    h1 {
        font-size: clamp(28px, 6vw, 36px);
    }

    .price-display {
        font-size: clamp(48px, 12vw, 64px);
    }

    .header-cta {
        font-size: 12px;
    }

    .logo-img {
        height: 32px;
    }

    .footer-logo-img {
        height: 36px;
    }

    .video-wrapper--portrait {
        max-width: 300px;
    }

    .faq-question {
        font-size: 16px;
    }

    .faq-answer-inner {
        font-size: 15px;
    }
}

@media (max-width: 375px) {
    .container {
        padding: 0 16px;
    }

    .card {
        padding: 24px;
    }

    .cta-btn {
        font-size: 13px;
        padding: 16px 20px;
    }

    .guarantee-box {
        padding: 20px;
    }
}

/* --- RESERVATION SYSTEM --- */
.booking-container {
    padding-top: 40px;
    padding-bottom: 80px;
}

/* Stepper */
.stepper {
    display: flex;
    justify-content: center;
    gap: 0;
    padding: 32px 24px;
    max-width: 700px;
    margin: 0 auto;
}

.step {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--accent-grey);
    position: relative;
    font-weight: 500;
}

.step:not(:last-child)::after {
    content: '';
    width: 40px;
    height: 1px;
    background: var(--accent-grey);
    margin: 0 16px;
    opacity: 0.3;
}

.step.active:not(:last-child)::after {
    background: var(--record-red);
    opacity: 1;
}

.step-number {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid var(--accent-grey);
    color: var(--accent-grey);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 14px;
    transition: all 0.3s ease;
}

.step.active .step-number {
    background: var(--record-red);
    border-color: var(--record-red);
    color: var(--pure-white);
}

.step.done .step-number {
    background: var(--pure-white);
    border-color: var(--pure-white);
    color: var(--rich-black);
}

.step.active {
    color: var(--pure-white);
}

/* Calendar */
.calendar-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.nav-btn {
    background: transparent;
    border: 1px solid var(--accent-grey);
    color: var(--pure-white);
    padding: 8px 16px;
    cursor: pointer;
    border-radius: var(--radius);
    font-family: var(--font-main);
    font-weight: 500;
    font-size: 14px;
    transition: all 0.2s ease;
}

.nav-btn:hover {
    border-color: var(--record-red);
    color: var(--record-red);
}

.nav-btn:disabled {
    opacity: 0.2;
    cursor: not-allowed;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
}

.calendar-day-name {
    text-align: center;
    font-weight: 900;
    font-size: 12px;
    color: var(--accent-grey);
    padding: 8px;
    text-transform: uppercase;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: 500;
    border: 1px solid rgba(99, 102, 106, 0.2);
}

.calendar-day:hover:not(.disabled):not(.empty) {
    background: rgba(218, 41, 28, 0.1);
    border-color: var(--record-red);
}

.calendar-day.disabled {
    color: var(--accent-grey);
    opacity: 0.3;
    cursor: not-allowed;
    border: none;
}

.calendar-day.selected {
    background: var(--record-red);
    color: var(--pure-white);
    border-color: var(--record-red);
}

.calendar-day.today {
    border-color: var(--record-red);
    border-style: dashed;
}

.slots-count {
    font-size: 10px;
    color: var(--record-red);
    margin-top: 2px;
}

.calendar-day.selected .slots-count {
    color: var(--pure-white);
}

/* Optimistic loading state — day waiting for API data */
.calendar-day.loading-day {
    cursor: default;
    opacity: 0.5;
}

@keyframes dayPulse {

    0%,
    100% {
        opacity: 0.3;
    }

    50% {
        opacity: 0.6;
    }
}

.calendar-day.loading-day .slots-count {
    animation: dayPulse 1.5s ease-in-out infinite;
}

/* Slots */
.step-panel {
    display: none;
}

.step-panel.active {
    display: block;
}

.slots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 12px;
}

.slot-btn {
    padding: 16px;
    border: 1px solid var(--accent-grey);
    border-radius: var(--radius);
    background: transparent;
    color: var(--pure-white);
    cursor: pointer;
    text-align: center;
    transition: all 0.2s ease;
    font-family: var(--font-main);
}

.slot-btn:hover {
    border-color: var(--record-red);
    color: var(--record-red);
}

.slot-btn.selected {
    background: var(--record-red);
    border-color: var(--record-red);
    color: var(--pure-white);
}

.slot-time {
    font-weight: 900;
    font-size: 18px;
}

.slot-duration {
    font-size: 12px;
    opacity: 0.6;
}

/* Booking Form */
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-weight: 500;
    font-size: 14px;
    color: var(--accent-grey);
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--accent-grey);
    border-radius: var(--radius);
    padding: 12px 16px;
    color: var(--pure-white);
    font-family: var(--font-main);
    font-size: 16px;
    outline: none;
}

.form-group select option {
    background: #1a1a1a;
    color: var(--pure-white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--record-red);
}

/* Summary Box */
.summary-card {
    border: 1px solid var(--record-red);
    border-radius: var(--radius);
    padding: 24px;
    margin-bottom: 32px;
}

.summary-item {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px;
}

.summary-item:last-child {
    margin-bottom: 0;
}

.summary-label {
    font-size: 12px;
    color: var(--accent-grey);
    text-transform: uppercase;
}

.summary-value {
    font-weight: 900;
    font-size: 16px;
}

/* Loading */
.loading-inline {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    gap: 12px;
    color: var(--accent-grey);
}

.spinner-small {
    width: 20px;
    height: 20px;
    border: 2px solid var(--accent-grey);
    border-top-color: var(--record-red);
    border-radius: 50%;
    animation: spinRed 0.8s linear infinite;
}

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

@media (max-width: 640px) {
    .form-grid {
        grid-template-columns: 1fr;
    }

    .stepper {
        padding: 24px 16px;
    }

    .step span:not(.step-number) {
        display: none;
    }

    .step:not(:last-child)::after {
        width: 20px;
    }

    /* Calendar: reduce gap and size on mobile */
    .calendar-grid {
        gap: 4px;
    }

    .calendar-day-name {
        font-size: 10px;
        padding: 4px 2px;
    }

    .calendar-day {
        font-size: 13px;
        min-height: 40px;
    }
}

/* ================================================
   INLINE SVG ICONS — So Bright Brand System
   ================================================ */

/* Default: medium inline icon aligned with text */
.inline-icon {
    display: inline-block;
    width: 1.2em;
    height: 1.2em;
    vertical-align: middle;
    margin-right: 6px;
    flex-shrink: 0;
    /* Keep pixel-perfect on all screens */
    shape-rendering: geometricPrecision;
}

/* Small variant — for subtexts, footers */
.inline-icon--sm {
    width: 1em;
    height: 1em;
    margin-right: 4px;
}

/* Confirmation checkmark in reservation.html */
.confirm-icon-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.confirm-icon {
    width: 72px;
    height: 72px;
    animation: confirmAppear 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes confirmAppear {
    from {
        opacity: 0;
        transform: scale(0.5);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Hover: icons inside CTAs inherit parent color on hover */
.cta-btn:hover .inline-icon path,
.cta-btn:hover .inline-icon polyline,
.cta-btn:hover .inline-icon line,
.cta-btn:hover .inline-icon rect,
.cta-btn:hover .inline-icon circle,
.cta-btn:hover .inline-icon polygon {
    stroke: var(--record-red);
}

/* ================================================
   RESPONSIVE — Extended Breakpoints
   ================================================ */

/* Touch target minimum — all interactive elements */
button,
a,
.cta-btn,
.nav-btn,
.slot-btn,
.faq-question,
.calendar-day {
    min-height: 44px;
}

/* --- TABLET: 768px–1023px --- */
@media (min-width: 769px) and (max-width: 1023px) {
    :root {
        --section-padding: 56px;
    }

    .container {
        padding: 0 32px;
    }

    .card {
        padding: 28px;
    }

    .cta-btn--large {
        font-size: 18px;
    }
}

/* --- SMALL MOBILE: < 480px --- */
@media (max-width: 480px) {
    :root {
        --section-padding: 40px;
    }

    /* Value table: stack to single column on tiny screens */
    .value-table thead,
    .value-table tbody,
    .value-table th,
    .value-table td,
    .value-table tr {
        display: block;
        width: 100%;
    }

    .value-table thead tr {
        position: absolute;
        top: -9999px;
        left: -9999px;
    }

    .value-table tbody tr {
        border: 1px solid var(--accent-grey);
        border-radius: var(--radius);
        margin-bottom: 12px;
        padding: 12px;
    }

    .value-table tbody td {
        border: none;
        padding: 6px 8px;
        font-size: 15px;
        text-align: left;
    }

    .value-table tbody td:first-child {
        font-weight: 900;
        font-size: 14px;
        color: var(--accent-grey);
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .value-table tbody td:last-child {
        font-size: 20px;
        font-weight: 900;
        color: var(--record-red);
        padding-top: 4px;
    }

    .value-table tbody tr:last-child td {
        border-top: none;
    }

    /* Payment grid: force 1 column with smaller text */
    .payment-block__week {
        font-size: 20px;
    }

    .payment-block__amount {
        font-size: 18px;
    }

    /* Card padding fluide */
    .card {
        padding: 20px 16px;
    }

    /* Body text smaller */
    .body-large {
        font-size: 16px;
    }

    /* blockquote padding */
    blockquote {
        padding-left: 16px;
        font-size: 16px;
    }

    /* CTA subtext wrap — allow icons on new line */
    .cta-subtext {
        display: flex;
        align-items: flex-start;
        gap: 6px;
        text-align: left;
        justify-content: flex-start;
    }

    .cta-subtext .inline-icon--sm {
        margin-top: 2px;
        flex-shrink: 0;
    }

    /* Portrait video */
    .video-wrapper--portrait {
        max-width: 260px;
    }

    /* Header: smaller logo and CTA text wrap prevention */
    .header-cta {
        font-size: 11px;
        letter-spacing: 0;
        white-space: nowrap;
    }

    /* Card title with icon: allow wrap cleanly */
    .card__title {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        flex-wrap: nowrap;
    }

    .card__title .inline-icon {
        margin-top: 3px;
        flex-shrink: 0;
    }

    /* Guarantee box on smallest screens */
    .guarantee-box h2 {
        font-size: 22px;
    }

    /* Hide spacers slightly on mobile */
    .spacer-48 {
        height: 32px;
    }
}

/* --- EXTRA SMALL: < 360px --- */
@media (max-width: 360px) {
    .container {
        padding: 0 12px;
    }

    .card {
        padding: 16px 12px;
    }

    h1 {
        font-size: 26px;
    }

    .cta-btn {
        font-size: 12px;
        padding: 14px 16px;
    }

    .cta-btn--large {
        font-size: 13px;
        padding: 16px 20px;
    }

    .logo-img {
        height: 28px;
    }
}

/* --- LARGE SCREENS: > 1200px --- */
@media (min-width: 1200px) {
    :root {
        --section-padding: 80px;
        --max-content: 860px;
        --max-reading: 740px;
    }

    .body-large {
        font-size: 19px;
    }
}

/* Accessibility: respect prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* High contrast mode support */
@media (prefers-contrast: more) {
    .card {
        border-color: var(--pure-white);
    }

    .faq-item {
        border-bottom-color: var(--pure-white);
    }

    .faq-question {
        color: var(--pure-white);
    }
}