/* ════════════════════════════════════════════════════════
   Přijímačky bez problémů — Design System v2
   ════════════════════════════════════════════════════════ */

:root {
    /* ── Core palette (keeping the orange!) ── */
    --bg: #f7f3eb;
    --surface: rgba(255, 252, 247, 0.92);
    --surface-strong: #fffdfa;
    --text: #1f2430;
    --muted: #5f6876;
    --line: rgba(31, 36, 48, 0.08);
    --rose: #dc6a4a;
    --rose-deep: #b94730;
    --rose-glow: rgba(220, 106, 74, 0.18);
    --teal: #1f7a7a;
    --teal-soft: rgba(31, 122, 122, 0.10);
    --gold: #f0b04d;
    --ink-soft: #31374a;
    --success: #1e7b67;
    --warning: #c3603f;

    /* ── Shadows ── */
    --shadow: 0 18px 40px rgba(31, 36, 48, 0.08);
    --shadow-strong: 0 26px 56px rgba(31, 36, 48, 0.12);
    --shadow-glow: 0 8px 32px rgba(220, 106, 74, 0.16);

    /* ── Radii ── */
    --radius-xl: 28px;
    --radius-lg: 22px;
    --radius-md: 18px;

    /* ── Transitions ── */
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --ease-smooth: cubic-bezier(0.25, 0.1, 0.25, 1);
    --dur-fast: 0.18s;
    --dur-normal: 0.3s;
    --dur-slow: 0.5s;
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

body {
    margin: 0;
    font-family: "Manrope", "Segoe UI", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at 10% 0%, rgba(220, 106, 74, 0.12), transparent 32rem),
        radial-gradient(circle at 90% 0%, rgba(31, 122, 122, 0.10), transparent 30rem),
        radial-gradient(circle at 50% 100%, rgba(240, 176, 77, 0.06), transparent 40rem),
        linear-gradient(180deg, #f8f4ec 0%, #f4efe6 100%);
    min-height: 100vh;
    line-height: 1.6;
}

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

button,
input,
select,
textarea {
    font: inherit;
}

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

main {
    padding-bottom: 6rem;
}


/* ════════════════════════════════════════════════
   CONTAINER
   ════════════════════════════════════════════════ */

.container {
    width: min(1080px, calc(100% - 3rem));
    margin: 0 auto;
}


/* ════════════════════════════════════════════════
   HEADER & NAVIGATION
   ════════════════════════════════════════════════ */

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    backdrop-filter: blur(18px) saturate(1.4);
    -webkit-backdrop-filter: blur(18px) saturate(1.4);
    background: rgba(248, 244, 236, 0.82);
    border-bottom: 1px solid rgba(31, 36, 48, 0.05);
    transition: box-shadow var(--dur-normal) var(--ease-smooth);
    overflow: visible;
}

.site-header:hover {
    box-shadow: 0 4px 20px rgba(31, 36, 48, 0.06);
}

.nav-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1rem 0;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
    flex-shrink: 0;
    transition: transform var(--dur-fast) var(--ease-spring);
}

.brand:hover {
    transform: scale(1.02);
}

.brand-mark {
    display: block;
    height: 15rem;
    width: auto;
    max-width: 700px;
    flex-shrink: 0;
    object-fit: contain;
    margin: -5.5rem 0 -6.2rem 0;   /* center visible content (41.8%-51.6% band) with nav links */
}

.site-header .brand-mark {
    margin-left: -3.4rem;   /* offset 15 % transparent padding inside the PNG */
}

.brand-copy {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.brand-copy strong {
    font-size: 1rem;
}

.brand-copy small {
    color: var(--muted);
}

.nav-side {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1rem;
    flex: 1;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    flex-wrap: wrap;
}

.main-nav a,
.nav-login,
.nav-ghost-button {
    padding: 0.65rem 0.95rem;
    border-radius: 999px;
    font-weight: 600;
    color: var(--muted);
    transition: all var(--dur-fast) var(--ease-smooth);
    position: relative;
}

.main-nav a:hover,
.nav-login:hover,
.nav-ghost-button:hover {
    background: rgba(255, 255, 255, 0.72);
    color: var(--text);
    transform: translateY(-1px);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-ghost-button {
    border: 0;
    background: transparent;
    cursor: pointer;
}

.nav-cta {
    min-height: 2.8rem;
    padding-inline: 1.15rem;
}

/* ── Hamburger toggle — hidden on desktop ── */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 2.6rem;
    height: 2.6rem;
    padding: 0.4rem;
    border: 1px solid rgba(31, 36, 48, 0.1);
    border-radius: 0.6rem;
    background: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    flex-shrink: 0;
    transition: background var(--dur-fast) var(--ease-smooth);
}

.nav-toggle:hover {
    background: rgba(255, 255, 255, 0.95);
}

.nav-toggle span {
    display: block;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: transform 0.25s var(--ease-spring), opacity 0.2s ease;
}

.nav-toggle.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}


/* ════════════════════════════════════════════════
   HERO SECTION
   ════════════════════════════════════════════════ */

.hero {
    padding: 3rem 0 2.5rem;
}

.hero-simple {
    padding: 3.5rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.hero-bg-wrap {
    position: absolute;
    inset: 0;
    z-index: -1;
    overflow: hidden;
}

.hero-bg-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.12;
    filter: blur(2px) saturate(0.7);
}

.hero-simple-inner {
    max-width: none;
    position: relative;
}

.hero-simple-inner h1 {
    font-family: "Fraunces", Georgia, serif;
    font-size: clamp(2.8rem, 5.5vw, 4.8rem);
    line-height: 1.04;
    letter-spacing: -0.04em;
    margin: 0;
    max-width: 16ch;
    background: linear-gradient(135deg, var(--text) 60%, var(--rose) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-simple-inner p {
    max-width: 34rem;
    font-size: 1.08rem;
    margin: 1.1rem 0 0;
    color: var(--muted);
}

.hero-inline-points {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-top: 1.4rem;
}

.hero-inline-points span {
    padding: 0.55rem 0.85rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(31, 36, 48, 0.06);
    color: var(--ink-soft);
    font-weight: 600;
    transition: all var(--dur-fast) var(--ease-smooth);
}

.hero-inline-points span:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(31, 36, 48, 0.06);
}


/* ════════════════════════════════════════════════
   GRID SYSTEMS
   ════════════════════════════════════════════════ */

.hero-grid,
.section-grid,
.info-grid,
.test-setup-grid,
.result-summary-grid,
.proof-grid,
.pricing-grid,
.auth-layout {
    display: grid;
    gap: 2rem;
}

.hero-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.82fr);
    align-items: start;
}

.hero-copy h1,
.page-heading h1,
.section-heading h2,
.feature-card h2,
.info-card h2,
.score-card h2,
.offer-card h2,
.auth-card h1,
.auth-side h2,
.pricing-card h3 {
    font-family: "Fraunces", Georgia, serif;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin: 0;
}

.hero-copy {
    max-width: 42rem;
}

.hero-copy h1 {
    font-size: clamp(3rem, 5.6vw, 4.8rem);
    max-width: 10ch;
}

.hero-copy p,
.page-heading p,
.feature-card p,
.info-card p,
.mini-copy,
.hero-note,
.hero-microcopy,
.sale-copy span,
.pricing-card p,
.offer-card p,
.auth-card p,
.auth-side p,
.proof-card span,
.compare-row span {
    color: var(--muted);
    line-height: 1.7;
}

.hero-copy p {
    max-width: 38rem;
    font-size: 1.08rem;
    margin: 1.35rem 0 0;
}


/* ════════════════════════════════════════════════
   BADGES & TAG SYSTEM
   ════════════════════════════════════════════════ */

.eyebrow,
.section-tag,
.offer-badge,
.pricing-label {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 0.5rem 0.85rem;
    border-radius: 999px;
    background: var(--teal-soft);
    color: var(--teal);
    font-weight: 700;
    font-size: 0.88rem;
    letter-spacing: 0.01em;
}

.offer-badge,
.pricing-label-hot {
    background: rgba(220, 106, 74, 0.14);
    color: var(--rose-deep);
}

.tag-pill {
    display: inline-flex;
    padding: 0.42rem 0.75rem;
    border-radius: 999px;
    background: rgba(31, 36, 48, 0.06);
    color: var(--text);
    font-size: 0.88rem;
    font-weight: 700;
    transition: background var(--dur-fast) var(--ease-smooth);
}

.tag-pill.muted {
    color: var(--muted);
}

.tag-cloud,
.question-meta {
    display: flex;
    gap: 0.65rem;
    flex-wrap: wrap;
}


/* ════════════════════════════════════════════════
   LISTS
   ════════════════════════════════════════════════ */

.hero-list,
.pricing-list {
    display: grid;
    gap: 0.85rem;
    margin: 1.5rem 0 0;
    padding: 0;
    list-style: none;
}

.hero-list li,
.pricing-list li {
    position: relative;
    padding-left: 1.6rem;
    color: var(--ink-soft);
    line-height: 1.6;
}

.hero-list li::before,
.pricing-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.52rem;
    width: 0.6rem;
    height: 0.6rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--rose), var(--gold));
}


/* ════════════════════════════════════════════════
   BUTTONS
   ════════════════════════════════════════════════ */

.cta-row,
.submit-row {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1.75rem;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3.15rem;
    padding: 0.95rem 1.45rem;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 700;
    cursor: pointer;
    transition:
        transform var(--dur-fast) var(--ease-spring),
        box-shadow var(--dur-normal) var(--ease-smooth),
        background var(--dur-fast) var(--ease-smooth);
}

.button:hover {
    transform: translateY(-2px);
}

.button:active {
    transform: translateY(0) scale(0.98);
}

.button-primary {
    background: linear-gradient(135deg, var(--rose), var(--rose-deep));
    color: #fff;
    box-shadow: 0 8px 24px rgba(220, 106, 74, 0.25);
}

.button-primary:hover {
    box-shadow: 0 14px 36px rgba(220, 106, 74, 0.32);
}

.button-secondary {
    background: rgba(255, 255, 255, 0.94);
    border-color: rgba(31, 36, 48, 0.08);
    box-shadow: 0 4px 12px rgba(31, 36, 48, 0.04);
}

.button-secondary:hover {
    background: #fff;
    box-shadow: 0 8px 24px rgba(31, 36, 48, 0.08);
}

.button-large {
    min-height: 3.4rem;
    padding-inline: 1.8rem;
}


/* ════════════════════════════════════════════════
   GLASS CARD
   ════════════════════════════════════════════════ */

.glass-card {
    background: var(--surface);
    border: 1px solid rgba(31, 36, 48, 0.05);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
    padding: 2rem;
    backdrop-filter: blur(12px) saturate(1.2);
    -webkit-backdrop-filter: blur(12px) saturate(1.2);
    transition:
        transform var(--dur-normal) var(--ease-spring),
        box-shadow var(--dur-normal) var(--ease-smooth);
}

.glass-card:hover {
    box-shadow: var(--shadow-strong);
}


/* ════════════════════════════════════════════════
   SCROLL REVEAL ANIMATION
   ════════════════════════════════════════════════ */

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.6s var(--ease-smooth), transform 0.6s var(--ease-spring);
}

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


/* ════════════════════════════════════════════════
   SALE STRIP
   ════════════════════════════════════════════════ */

.sale-strip {
    padding-top: 1rem;
}

.sale-strip-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.25rem;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(220, 106, 74, 0.12), rgba(240, 176, 77, 0.1));
    border: 1px solid rgba(220, 106, 74, 0.16);
}

.sale-copy {
    display: grid;
    gap: 0.2rem;
}

.sale-copy span {
    color: var(--muted);
}


/* ════════════════════════════════════════════════
   COUNTDOWN
   ════════════════════════════════════════════════ */

.countdown-row {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.countdown-box {
    min-width: 4.4rem;
    padding: 0.75rem 0.8rem;
    border-radius: 1rem;
    text-align: center;
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(31, 36, 48, 0.06);
    transition: transform var(--dur-fast) var(--ease-spring);
}

.countdown-box:hover {
    transform: scale(1.04);
}

.countdown-box strong {
    display: block;
    font-size: 1.3rem;
    line-height: 1;
    font-variant-numeric: tabular-nums;
}

.countdown-box span {
    display: block;
    margin-top: 0.25rem;
    color: var(--muted);
    font-size: 0.78rem;
}

.sale-button {
    flex-shrink: 0;
}


/* ════════════════════════════════════════════════
   HOME BLOCKS
   ════════════════════════════════════════════════ */

.hero-microcopy {
    margin-top: 1rem;
}

.home-block {
    margin-top: 2.75rem;
}


/* ── Proof/Stats Grid ── */
.proof-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.proof-grid-tight {
    gap: 1.25rem;
}

.proof-card {
    display: grid;
    gap: 0.6rem;
    text-align: left;
    transition: transform var(--dur-normal) var(--ease-spring);
}

.proof-card:hover {
    transform: translateY(-4px);
}

.proof-card strong {
    font-size: 1.75rem;
    background: linear-gradient(135deg, var(--rose), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}


/* ── Section Heading ── */
.section-heading {
    margin-bottom: 1.4rem;
    max-width: 46rem;
}

.section-heading-compact {
    margin-bottom: 1.1rem;
    max-width: 40rem;
}

.section-heading h2 {
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
}


/* ── Section Grids ── */
.section-grid,
.info-grid,
.result-summary-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.test-setup-grid {
    grid-template-columns: minmax(280px, 1fr) minmax(0, 1.2fr);
}

.marketing-cards .feature-card,
.info-card,
.pricing-card {
    min-height: 100%;
}

.section-grid-compact {
    gap: 1.25rem;
}

.section-grid-compact .feature-card h2 {
    font-size: 2rem;
}

.section-grid-compact .feature-card p {
    max-width: 28ch;
}

/* Feature card hover */
.feature-card {
    transition: transform var(--dur-normal) var(--ease-spring), box-shadow var(--dur-normal) var(--ease-smooth);
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-strong);
}


/* ════════════════════════════════════════════════
   SUBJECT CARDS
   ════════════════════════════════════════════════ */

.subject-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
}

.subject-card {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    transition: transform var(--dur-normal) var(--ease-spring);
}

.subject-card:hover {
    transform: translateY(-4px);
}

.subject-card-icon {
    font-size: 2.4rem;
    line-height: 1;
    flex-shrink: 0;
    width: 3.6rem;
    height: 3.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(220, 106, 74, 0.10), rgba(240, 176, 77, 0.10));
    border-radius: 1rem;
}

.subject-card-body h3 {
    font-family: "Fraunces", Georgia, serif;
    font-size: 1.4rem;
    margin: 0 0 0.25rem;
    letter-spacing: -0.02em;
}

.subject-card-body p {
    color: var(--muted);
    margin: 0;
    line-height: 1.6;
}


/* ════════════════════════════════════════════════
   HOW IT WORKS — STEPS
   ════════════════════════════════════════════════ */

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}

.step-card {
    display: grid;
    gap: 0.6rem;
    text-align: center;
    transition: transform var(--dur-normal) var(--ease-spring);
}

.step-card:hover {
    transform: translateY(-6px);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    margin: 0 auto;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--rose), var(--gold));
    color: #fff;
    font-weight: 800;
    font-size: 1.15rem;
    box-shadow: 0 6px 20px rgba(220, 106, 74, 0.25);
}

.step-card h3 {
    font-family: "Fraunces", Georgia, serif;
    font-size: 1.25rem;
    margin: 0;
    letter-spacing: -0.02em;
}

.step-card p {
    color: var(--muted);
    margin: 0;
    line-height: 1.6;
    max-width: 26ch;
    margin-inline: auto;
}


/* ════════════════════════════════════════════════
   PRICING
   ════════════════════════════════════════════════ */

.pricing-section {
    scroll-margin-top: 7rem;
}

.pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.pricing-card {
    display: grid;
    gap: 1rem;
}

.pricing-card-featured {
    position: relative;
    border-color: rgba(220, 106, 74, 0.18);
    box-shadow: var(--shadow-strong);
    background: linear-gradient(160deg, var(--surface) 0%, rgba(255, 248, 244, 0.96) 100%);
}

.pricing-card-featured::before {
    content: "";
    position: absolute;
    top: -1px;
    left: 2rem;
    right: 2rem;
    height: 3px;
    border-radius: 0 0 3px 3px;
    background: linear-gradient(90deg, var(--rose), var(--gold));
}

.pricing-price {
    font-size: clamp(2rem, 4vw, 2.9rem);
    font-weight: 800;
    line-height: 1;
}

.pricing-timer {
    display: grid;
    gap: 0.8rem;
    padding: 1rem 1.05rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(31, 36, 48, 0.05);
}

.pricing-timer > strong {
    font-size: 1rem;
}

.countdown-row-compact {
    gap: 0.45rem;
}

.countdown-row-compact .countdown-box {
    min-width: 4rem;
    padding: 0.65rem 0.55rem;
}

.countdown-row-compact .countdown-box strong {
    font-size: 1.1rem;
}

.countdown-row-compact .countdown-box span {
    font-size: 0.74rem;
}

.pricing-note {
    margin: 0;
}


/* ════════════════════════════════════════════════
   OFFER CARD
   ════════════════════════════════════════════════ */

.offer-card {
    position: relative;
    overflow: hidden;
    display: grid;
    gap: 1rem;
    box-shadow: var(--shadow-strong);
}

.offer-card::after {
    content: "";
    position: absolute;
    inset: auto -4rem -5rem auto;
    width: 12rem;
    height: 12rem;
    border-radius: 999px;
    background: radial-gradient(circle, var(--rose-glow), transparent 70%);
    pointer-events: none;
}

.price-row {
    display: flex;
    align-items: baseline;
    gap: 0.8rem;
}

.price-row strong {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1;
}

.price-row span,
.pricing-price small {
    color: var(--muted);
    text-decoration: line-through;
}

.price-row.compact strong {
    font-size: 2rem;
}

.offer-points {
    display: grid;
    gap: 0.8rem;
}

.offer-point {
    padding: 1rem 1.1rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.74);
    border: 1px solid rgba(31, 36, 48, 0.05);
}

.offer-point strong,
.proof-card strong,
.hero-stat strong,
.timer-value,
.score-percentage {
    font-size: clamp(1.8rem, 4vw, 3rem);
    line-height: 1;
    font-weight: 800;
}

.offer-point strong {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}

.offer-point span {
    color: var(--muted);
    line-height: 1.6;
}


/* ════════════════════════════════════════════════
   COMPARE TABLE
   ════════════════════════════════════════════════ */

.compare-table {
    padding: 0;
    overflow: hidden;
}

.compare-row {
    display: grid;
    grid-template-columns: 2fr 0.8fr 0.8fr;
    gap: 1rem;
    padding: 1rem 1.4rem;
    border-top: 1px solid var(--line);
    align-items: center;
}

.compare-row:first-child {
    border-top: 0;
}

.compare-head {
    background: rgba(31, 122, 122, 0.08);
}

.compare-head span {
    color: var(--ink-soft);
    font-weight: 800;
}


/* ── Free question progress card ── */
/* Promo code redeem row */
.promo-redeem-wrap {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    padding: 1.5rem 0 0.5rem;
}

.promo-redeem-label {
    color: var(--muted);
    font-weight: 600;
    margin: 0;
}

.promo-redeem-form {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.promo-input {
    width: 16rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
}

@media (max-width: 480px) {
    .promo-input { width: 100%; }
    .promo-redeem-form { width: 100%; }
    .promo-redeem-wrap { flex-direction: column; align-items: stretch; }
}


/* Solo premium card on upsell page */
.pricing-grid-solo {
    grid-template-columns: minmax(0, 480px);
    justify-content: center;
}


/* ── Free question progress card ── */
.free-progress-card {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.free-progress-label {
    font-size: 1.1rem;
    margin: 0;
}

.free-progress-bar {
    height: 8px;
    background: var(--line);
    border-radius: 999px;
    overflow: hidden;
}

.free-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--rose), var(--gold));
    border-radius: 999px;
    transition: width 0.4s var(--ease-smooth);
    min-width: 4px;
}


/* ════════════════════════════════════════════════
   PAGE SHELL
   ════════════════════════════════════════════════ */

.page-shell {
    padding-top: 3rem;
}

.page-heading {
    margin-bottom: 2rem;
    max-width: 42rem;
}

.page-heading h1 {
    font-size: clamp(2rem, 4vw, 3.4rem);
}


/* ════════════════════════════════════════════════
   ACCESS BANNER
   ════════════════════════════════════════════════ */

.access-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.access-banner.premium {
    border-color: rgba(31, 122, 122, 0.16);
    background: linear-gradient(135deg, var(--surface) 0%, rgba(237, 248, 247, 0.4) 100%);
}


/* ════════════════════════════════════════════════
   PRACTICE LAYOUT
   ════════════════════════════════════════════════ */

.practice-layout {
    display: grid;
    grid-template-columns: minmax(260px, 320px) minmax(0, 1fr);
    gap: 2rem;
    align-items: start;
}

.filter-card {
    position: sticky;
    top: 6rem;
}


/* ════════════════════════════════════════════════
   FORM CONTROLS
   ════════════════════════════════════════════════ */

.stack-lg,
.stack-md {
    display: grid;
}

.stack-lg {
    gap: 1.5rem;
}

.stack-md {
    gap: 1.1rem;
}

.form-label {
    display: block;
    margin-bottom: 0.45rem;
    font-weight: 700;
}

.form-control {
    width: 100%;
    min-height: 3.15rem;
    padding: 0.95rem 1rem;
    border-radius: 1rem;
    border: 1px solid rgba(31, 36, 48, 0.1);
    background: rgba(255, 255, 255, 0.96);
    color: var(--text);
    transition:
        border-color var(--dur-normal) var(--ease-smooth),
        box-shadow var(--dur-normal) var(--ease-smooth),
        outline var(--dur-fast) var(--ease-smooth);
}

.form-control:focus {
    outline: 3px solid rgba(220, 106, 74, 0.15);
    border-color: rgba(220, 106, 74, 0.45);
    box-shadow: 0 0 0 4px rgba(220, 106, 74, 0.08);
}


/* ════════════════════════════════════════════════
   QUESTION & FEEDBACK CARDS
   ════════════════════════════════════════════════ */

.question-card,
.empty-state,
.feedback-card {
    padding: 1.85rem;
}

.question-card h2,
.feedback-card h3,
.timer-card strong {
    margin: 0 0 0.35rem;
}

.question-prompt,
.question-instructions {
    font-size: 1.02rem;
    line-height: 1.75;
}

.question-instructions {
    color: var(--muted);
}

/* ── Diagram container (replacing inline styles) ── */
.diagram-wrap {
    max-width: 600px;
    border: 1px solid rgba(31, 36, 48, 0.10);
    padding: 1rem;
    margin: 0.75rem 0;
    background: #fff;
    border-radius: var(--radius-md);
}

.diagram-caption {
    font-style: italic;
    color: var(--muted);
    font-size: 0.9em;
    margin-top: 0.35rem;
}


/* ════════════════════════════════════════════════
   ANSWER OPTIONS
   ════════════════════════════════════════════════ */

.answer-list {
    display: grid;
    gap: 0.9rem;
}

.answer-option {
    display: flex;
    gap: 0.8rem;
    align-items: flex-start;
    padding: 1.1rem 1.2rem;
    border-radius: 1.1rem;
    background: rgba(255, 255, 255, 0.84);
    border: 1px solid rgba(31, 36, 48, 0.06);
    cursor: pointer;
    transition:
        border-color var(--dur-fast) var(--ease-smooth),
        background var(--dur-fast) var(--ease-smooth),
        transform var(--dur-fast) var(--ease-spring),
        box-shadow var(--dur-fast) var(--ease-smooth);
}

.answer-option:hover {
    border-color: rgba(31, 36, 48, 0.13);
    background: rgba(255, 255, 255, 1);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(31, 36, 48, 0.06);
}

.answer-option:has(input:checked) {
    border-color: rgba(31, 122, 122, 0.35);
    background: rgba(237, 248, 247, 0.78);
    box-shadow: 0 0 0 3px rgba(31, 122, 122, 0.08);
}

.answer-option input {
    margin-top: 0.28rem;
}

.answer-option input[type="radio"],
.answer-option input[type="checkbox"] {
    accent-color: var(--teal);
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    cursor: pointer;
}


/* ════════════════════════════════════════════════
   FEEDBACK ANIMATION
   ════════════════════════════════════════════════ */

@keyframes fadeSlideIn {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

.feedback-animate {
    animation: fadeSlideIn 0.4s var(--ease-spring);
}

.feedback-card.success {
    border-color: rgba(31, 122, 122, 0.22);
    background: linear-gradient(160deg, rgba(237, 248, 247, 0.95), rgba(237, 248, 247, 0.7));
}

.feedback-card.warning {
    border-color: rgba(220, 106, 74, 0.24);
    background: linear-gradient(160deg, rgba(255, 245, 241, 0.97), rgba(255, 245, 241, 0.8));
}


/* ════════════════════════════════════════════════
   TIMER CARD
   ════════════════════════════════════════════════ */

.timer-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.2rem;
    margin-bottom: 1.5rem;
}

.timer-label {
    font-weight: 700;
}


/* ════════════════════════════════════════════════
   MESSAGES
   ════════════════════════════════════════════════ */

.messages {
    margin-top: 1rem;
}

.message {
    padding: 0.95rem 1.1rem;
    border-radius: 1rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.message.info {
    background: rgba(31, 122, 122, 0.12);
    color: var(--teal);
}

.message.error,
.message.warning {
    background: rgba(220, 106, 74, 0.12);
    color: var(--rose-deep);
}

.message.success {
    background: rgba(31, 122, 122, 0.12);
    color: var(--success);
}

.field-error {
    margin-top: 0.45rem;
    color: var(--rose-deep);
    font-size: 0.92rem;
}


/* ════════════════════════════════════════════════
   SCORE CARD
   ════════════════════════════════════════════════ */

.score-card {
    display: grid;
    gap: 0.35rem;
}

.score-percentage {
    font-variant-numeric: tabular-nums;
}

/* Color-coded score */
.score-excellent { color: var(--success); }
.score-good { color: var(--teal); }
.score-average { color: var(--gold); }
.score-poor { color: var(--rose-deep); }


/* ════════════════════════════════════════════════
   AUTH LAYOUT
   ════════════════════════════════════════════════ */

.auth-layout {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
    align-items: start;
}

.auth-card,
.auth-side {
    display: grid;
    gap: 1rem;
}

.auth-side {
    position: relative;
    overflow: hidden;
}

.auth-side-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    margin-bottom: 0.5rem;
    opacity: 0.85;
}

.auth-countdown {
    margin-top: 0.5rem;
}

.text-link {
    color: var(--rose-deep);
    font-weight: 700;
    transition: color var(--dur-fast) var(--ease-smooth);
}

.text-link:hover {
    color: var(--rose);
}


/* ════════════════════════════════════════════════
   PRACTICE TEST — TEST NAVIGATOR
   ════════════════════════════════════════════════ */

.test-shell {
    max-width: 800px;
    margin: 0 auto;
}

/* Sticky top bar */
.test-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.5rem;
    position: sticky;
    top: 5rem;
    z-index: 15;
    margin-bottom: 1rem;
}

.test-topbar-left {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.test-section-label {
    font-family: "Fraunces", Georgia, serif;
    font-size: 1.15rem;
    font-weight: 700;
}

.test-topbar-right {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.test-topbar .timer-value {
    font-size: 1.4rem;
    font-weight: 800;
    font-variant-numeric: tabular-nums;
    transition: color 0.3s ease;
}

.timer-urgent {
    color: var(--rose-deep) !important;
    animation: pulse 1s ease infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}


/* Question number grid */
.question-grid-wrap {
    padding: 1rem 1.25rem;
    margin-bottom: 1.5rem;
}

.grid-section-tabs {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.85rem;
}

.grid-tab {
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
    border: 1px solid rgba(31, 36, 48, 0.08);
    background: transparent;
    font-weight: 700;
    font-size: 0.85rem;
    color: var(--muted);
    cursor: default;
    transition: all var(--dur-fast) var(--ease-smooth);
}

.grid-tab.active {
    background: var(--teal);
    color: #fff;
    border-color: var(--teal);
}

.grid-tab.done {
    background: rgba(31, 122, 122, 0.12);
    color: var(--teal);
    border-color: rgba(31, 122, 122, 0.18);
}

.question-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.question-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.4rem;
    height: 2.4rem;
    border-radius: 0.65rem;
    border: 2px solid rgba(31, 36, 48, 0.1);
    background: rgba(255, 255, 255, 0.8);
    font-weight: 700;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all var(--dur-fast) var(--ease-spring);
    color: var(--text);
}

.question-pill:hover {
    border-color: var(--teal);
    transform: translateY(-2px);
}

.question-pill.active {
    border-color: var(--teal);
    background: var(--teal);
    color: #fff;
    box-shadow: 0 4px 12px rgba(31, 122, 122, 0.25);
}

.question-pill.answered {
    border-color: rgba(31, 122, 122, 0.25);
    background: rgba(237, 248, 247, 0.9);
    color: var(--teal);
}

.question-pill.active.answered {
    background: var(--teal);
    color: #fff;
}


/* Test question card */
.test-question-card {
    animation: fadeSlideIn 0.25s var(--ease-spring);
}

.test-question-card h2 {
    font-family: "Fraunces", Georgia, serif;
    font-size: 1.25rem;
    margin: 0.3rem 0 0;
}


/* Prev / Next buttons */
.test-nav-buttons {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 1.5rem;
    padding-top: 1.25rem;
    border-top: 1px solid var(--line);
}


/* Section pause screen */
.section-pause {
    text-align: center;
    padding: 3rem 2rem;
    animation: fadeSlideIn 0.35s var(--ease-spring);
}

.section-pause-icon {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

.section-pause h2 {
    font-family: "Fraunces", Georgia, serif;
    font-size: 1.8rem;
    margin: 0 0 0.5rem;
}

.section-pause-desc {
    color: var(--muted);
    margin: 0 0 1.5rem;
    max-width: 30rem;
    margin-inline: auto;
}


/* ════════════════════════════════════════════════
   TEST SETUP — STRUCTURE STEPPER
   ════════════════════════════════════════════════ */

.test-structure-steps {
    display: grid;
    gap: 0.75rem;
    margin-top: 1rem;
}

.test-step {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.1rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.74);
    border: 1px solid rgba(31, 36, 48, 0.05);
    transition: transform var(--dur-fast) var(--ease-spring);
}

.test-step:hover {
    transform: translateX(4px);
}

.test-step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.6rem;
    height: 2.6rem;
    border-radius: 0.8rem;
    background: linear-gradient(135deg, var(--rose), var(--gold));
    color: #fff;
    font-weight: 800;
    font-size: 1.1rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(220, 106, 74, 0.2);
}

.test-step strong {
    display: block;
    margin-bottom: 0.15rem;
}


/* ════════════════════════════════════════════════
   RESULTS — SECTION HEADERS
   ════════════════════════════════════════════════ */

.result-section-block {
    margin-top: 2.5rem;
}

.result-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    margin-bottom: 1.25rem;
    border-left: 4px solid var(--teal);
}

.result-section-header h2 {
    font-family: "Fraunces", Georgia, serif;
    font-size: 1.4rem;
    margin: 0;
}

.result-section-score {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.result-section-score strong {
    font-size: 1.1rem;
}


/* ════════════════════════════════════════════════
   COOKIE BANNER
   ════════════════════════════════════════════════ */

.cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    color: #fff;
    padding: 1.25rem 1.5rem;
    z-index: 9999;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    animation: slideUp 0.4s var(--ease-spring);
}

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

.cookie-banner p {
    margin: 0;
    flex: 1 1 300px;
    font-size: 0.9rem;
    line-height: 1.6;
}

.cookie-banner a {
    color: var(--rose);
    font-weight: 600;
}

.cookie-buttons {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.cookie-btn-reject {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ccc;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    cursor: pointer;
    font-size: 0.85rem;
    transition: all var(--dur-fast) var(--ease-smooth);
}

.cookie-btn-reject:hover {
    border-color: rgba(255, 255, 255, 0.4);
    color: #fff;
}

.cookie-btn-accept {
    background: linear-gradient(135deg, var(--rose), var(--rose-deep));
    border: none;
    color: #fff;
    padding: 0.5rem 1.25rem;
    border-radius: 999px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all var(--dur-fast) var(--ease-spring);
    box-shadow: 0 4px 12px rgba(220, 106, 74, 0.3);
}

.cookie-btn-accept:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(220, 106, 74, 0.4);
}


/* ════════════════════════════════════════════════
   SITE FOOTER
   ════════════════════════════════════════════════ */

.site-footer {
    margin-top: 4rem;
    border-top: 1px solid rgba(31, 36, 48, 0.06);
    background: linear-gradient(180deg, rgba(255, 252, 247, 0.6) 0%, rgba(248, 244, 236, 0.8) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.footer-inner {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 2.5rem;
    padding: 3.5rem 0 2.5rem;
}

.footer-brand .brand {
    margin-bottom: 1rem;
}

.footer-tagline {
    color: var(--muted);
    line-height: 1.7;
    max-width: 28rem;
    margin: 0;
}

.footer-nav {
    display: grid;
    gap: 0.6rem;
}

.footer-nav strong {
    font-size: 0.92rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--ink-soft);
    margin-bottom: 0.3rem;
}

.footer-nav a {
    color: var(--muted);
    font-weight: 500;
    padding: 0.2rem 0;
    transition: color var(--dur-fast) var(--ease-smooth), transform var(--dur-fast) var(--ease-spring);
    display: inline-block;
}

.footer-nav a:hover {
    color: var(--rose);
    transform: translateX(3px);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(31, 36, 48, 0.06);
}

.footer-bottom span {
    color: var(--muted);
    font-size: 0.88rem;
}


/* ════════════════════════════════════════════════
   LEGAL PAGES
   ════════════════════════════════════════════════ */

.legal-content {
    max-width: 720px;
}

.legal-content h2 {
    font-family: "Fraunces", Georgia, serif;
    font-size: 1.4rem;
    margin: 2rem 0 0.75rem;
}

.legal-content h3 {
    font-size: 1.1rem;
    margin: 1.5rem 0 0.5rem;
}

.legal-content p,
.legal-content li {
    color: var(--muted);
    line-height: 1.8;
}

.legal-content ul {
    padding-left: 1.5rem;
}


/* ════════════════════════════════════════════════
   RESPONSIVE — TABLET (≤1040px)
   ════════════════════════════════════════════════ */

@media (max-width: 1040px) {
    .sale-strip-inner,
    .access-banner {
        flex-direction: column;
        align-items: stretch;
    }

    .sale-button {
        width: 100%;
    }

    /* Scale down logo so it fits alongside the hamburger button */
    .brand-mark {
        height: 10rem;
        max-width: 500px;
        margin: -3.7rem 0 -4.1rem 0;
    }

    .site-header .brand-mark {
        margin-left: -2.3rem;
    }

    /* Top row: logo left, hamburger right, vertically centred */
    .nav-row {
        flex-wrap: wrap;
        align-items: center;
        padding: 0.6rem 0;
    }

    /* Hamburger appears — bigger touch target */
    .nav-toggle {
        display: flex;
        width: 3rem;
        height: 3rem;
        padding: 0.55rem;
        border-radius: 0.75rem;
        background: rgba(255, 255, 255, 0.85);
        border: 1.5px solid rgba(31, 36, 48, 0.12);
        box-shadow: 0 2px 8px rgba(31, 36, 48, 0.07);
    }

    .nav-toggle span {
        width: 100%;
    }

    /* Nav drawer — full-width panel below the header row */
    .nav-side {
        display: none;
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        padding: 0.5rem 0 0.75rem;
        margin-top: 0.4rem;
        border-top: 1px solid var(--line);
        gap: 0.2rem;
    }

    .nav-side.open {
        display: flex;
        animation: fadeSlideIn 0.25s var(--ease-spring);
    }

    .main-nav {
        flex-direction: column;
        gap: 0.15rem;
    }

    .main-nav a,
    .nav-login,
    .nav-ghost-button {
        padding: 0.9rem 1rem;
        border-radius: 0.75rem;
        width: 100%;
        text-align: left;
        font-size: 1rem;
        color: var(--text);
    }

    .main-nav a:hover,
    .nav-login:hover {
        background: rgba(255, 255, 255, 0.72);
    }

    .nav-actions {
        flex-direction: column;
        gap: 0.5rem;
        padding-top: 0.75rem;
        border-top: 1px solid var(--line);
        margin-top: 0.35rem;
    }

    .nav-actions form,
    .nav-actions a,
    .nav-actions button {
        width: 100%;
    }

    .nav-cta {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .nav-ghost-button {
        text-align: left;
        font-size: 1rem;
    }
}


/* ════════════════════════════════════════════════
   RESPONSIVE — MEDIUM (≤960px)
   ════════════════════════════════════════════════ */

@media (max-width: 960px) {
    .hero-grid,
    .practice-layout,
    .test-setup-grid,
    .result-summary-grid,
    .section-grid,
    .info-grid,
    .proof-grid,
    .pricing-grid,
    .auth-layout {
        grid-template-columns: 1fr;
    }

    .hero {
        padding-top: 2.5rem;
    }

    .hero-simple {
        padding-top: 2.5rem;
    }

    .home-block {
        margin-top: 2rem;
    }

    .filter-card {
        position: static;
    }

    .timer-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

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


/* ════════════════════════════════════════════════
   RESPONSIVE — MOBILE (≤720px)
   ════════════════════════════════════════════════ */

@media (max-width: 720px) {
    .container {
        width: min(100% - 2rem, 1080px);
    }

    .brand-mark {
        height: 7.5rem;
        max-width: min(320px, calc(100vw - 5rem));
        margin: -2.75rem 0 -3.1rem 0;
    }

    .site-header .brand-mark {
        margin-left: -1.7rem;
    }

    .glass-card,
    .question-card,
    .feedback-card {
        border-radius: 24px;
        padding: 1.35rem;
    }

    .hero {
        padding-top: 1.5rem;
    }

    .hero-simple {
        padding-top: 1.5rem;
    }

    .hero-copy h1 {
        max-width: none;
        font-size: clamp(2.4rem, 11vw, 3.5rem);
    }

    .hero-simple-inner h1 {
        max-width: none;
        font-size: clamp(2.2rem, 10vw, 3.5rem);
    }

    .hero-inline-points span {
        width: 100%;
    }

    .button,
    .button-large,
    .nav-cta {
        width: 100%;
    }

    .cta-row,
    .submit-row,
    .nav-actions {
        flex-direction: column;
    }

    .sale-strip-inner {
        border-radius: 1.5rem;
    }

    .compare-row {
        grid-template-columns: 1.3fr 0.7fr 0.7fr;
        font-size: 0.92rem;
        padding: 0.95rem 1rem;
    }

    /* Test navigator mobile */
    .test-topbar {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
        top: 4.5rem;
    }

    .question-pill {
        width: 2.1rem;
        height: 2.1rem;
        font-size: 0.78rem;
    }

    .test-nav-buttons {
        flex-direction: column;
    }

    .test-nav-buttons .button {
        width: 100%;
    }

    .section-pause {
        padding: 2rem 1.25rem;
    }

    .result-section-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .auth-side-image {
        height: 140px;
    }
}


/* ════════════════════════════════════════════════
   RESPONSIVE — SMALL PHONES (≤400px)
   ════════════════════════════════════════════════ */

@media (max-width: 400px) {
    .brand-mark {
        height: 6rem;
        max-width: min(250px, calc(100vw - 5rem));
        margin: -2.2rem 0 -2.5rem 0;
    }

    .site-header .brand-mark {
        margin-left: -1.4rem;
    }

    .compare-row {
        grid-template-columns: 1.6fr 0.6fr 0.6fr;
        font-size: 0.82rem;
        padding: 0.8rem 0.6rem;
        gap: 0.5rem;
    }

    .hero-copy h1,
    .hero-simple-inner h1 {
        font-size: clamp(2rem, 10vw, 2.8rem);
    }
}


/* ════════════════════════════════════════════════
   PRINT STYLES
   ════════════════════════════════════════════════ */

@media print {
    .site-header,
    .site-footer,
    .cookie-banner,
    .nav-toggle {
        display: none !important;
    }

    body {
        background: #fff;
    }

    .glass-card {
        box-shadow: none;
        border: 1px solid #ddd;
        backdrop-filter: none;
    }
}
