:root {
    /* === POLONIA LIGHT THEME (zgodny z tokens.css strony glownej; jasny motyw za decyzja Artura 02.09.2026) === */
    --bg-primary: #ffffff;
    --bg-secondary: #f3f3f3;
    --bg-card: #ffffff;
    --bg-card-hover: #fafafa;
    --bg-accent: #f3f3f3;
    --bg-accent-light: #e9e9e9;

    --gold: #e8000d;
    --gold-light: #ff2c38;
    --gold-dark: #bd000b;
    --gold-muted: rgba(232, 0, 13, 0.10);

    --emerald: #0d0d0d;
    --emerald-muted: rgba(0, 0, 0, 0.04);

    --text-primary: #0d0d0d;
    --text-secondary: #404040;
    --text-muted: #707070;
    --text-dim: #9a9a9a;

    --border: rgba(0, 0, 0, 0.08);
    --border-hover: rgba(0, 0, 0, 0.16);
    --border-gold: rgba(232, 0, 13, 0.3);

    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.10);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.12);
    --shadow-gold: 0 4px 20px rgba(232, 0, 13, 0.18);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    color: var(--text-secondary);
    line-height: 1.7;
    background: var(--bg-primary);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 700;
    line-height: 1.15;
    color: var(--text-primary);
}

a {
    color: var(--gold);
    transition: color 0.2s ease;
}

a:hover {
    color: var(--gold-light);
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.header.scrolled {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

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

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

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

.header-right {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.header-spots {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gold-muted);
    color: var(--gold);
    padding: 0.375rem 1rem;
    border-radius: 100px;
    font-size: 0.8125rem;
    font-weight: 600;
    border: 1px solid var(--border-gold);
}

.spots-dot {
    width: 7px;
    height: 7px;
    background: var(--gold);
    border-radius: 50%;
    animation: pulse 3s ease-in-out infinite;
}

.header-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gold);
    color: var(--bg-primary);
    padding: 0.625rem 1.5rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.875rem;
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: 0.02em;
}

.header-cta:hover {
    background: var(--gold-light);
    color: var(--bg-primary);
    transform: translateY(-1px);
    box-shadow: var(--shadow-gold);
}

/* ===== SECTIONS BASE ===== */
section {
    padding: 3.5rem 1.5rem;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
}

.section-label {
    display: inline-block;
    background: var(--gold-muted);
    color: var(--gold);
    padding: 0.375rem 1.25rem;
    border-radius: 100px;
    font-size: 0.8125rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: 1px solid var(--border-gold);
}

.section-title {
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-muted);
    max-width: 700px;
    line-height: 1.8;
}

/* ===== HERO ===== */
.hero {
    min-height: 88vh;
    display: flex;
    align-items: center;
    padding-top: 4rem;
    background: linear-gradient(180deg, var(--bg-primary) 0%, #fafafa 50%, var(--bg-accent) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -15%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(232, 0, 13, 0.06) 0%, transparent 70%);
    animation: float 25s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(232, 0, 13, 0.04) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(20px, -20px) rotate(3deg); }
    66% { transform: translate(-15px, 15px) rotate(-3deg); }
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 780px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gold-muted);
    border: 1px solid var(--border-gold);
    padding: 0.5rem 1.25rem;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 2rem;
    animation: fadeInUp 0.6s ease forwards;
    letter-spacing: 0.02em;
}

.hero-badge-dot {
    width: 7px;
    height: 7px;
    background: var(--gold);
    border-radius: 50%;
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(1.3); }
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 3.75rem);
    color: var(--text-primary);
    margin-bottom: 1.75rem;
    animation: fadeInUp 0.6s ease 0.1s forwards;
    opacity: 0;
    letter-spacing: -0.01em;
}

.hero h1 span {
    color: var(--gold);
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 640px;
    animation: fadeInUp 0.6s ease 0.2s forwards;
    opacity: 0;
    line-height: 1.8;
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.75rem;
    margin-bottom: 3rem;
    animation: fadeInUp 0.6s ease 0.3s forwards;
    opacity: 0;
}

.hero-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.hero-meta-icon {
    width: 22px;
    height: 22px;
    color: var(--gold);
}

.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    animation: fadeInUp 0.6s ease 0.4s forwards;
    opacity: 0;
}

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

/* ===== TRUST BADGES (Hero) ===== */
.hero-trust {
    margin-top: 2.5rem;
    animation: fadeInUp 0.6s ease 0.5s forwards;
    opacity: 0;
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    color: var(--text-dim);
    font-size: 0.8125rem;
    font-weight: 500;
}

.trust-badge svg {
    color: var(--emerald);
}

/* ===== BUTTONS ===== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gold);
    color: var(--bg-primary);
    padding: 1.125rem 2.25rem;
    border-radius: 10px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 1.0625rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-gold);
    border: none;
    cursor: pointer;
    letter-spacing: 0.02em;
}

.btn-primary:hover {
    background: var(--gold-light);
    color: var(--bg-primary);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(232, 0, 13, 0.25);
}

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

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: var(--text-secondary);
    padding: 1.125rem 2.25rem;
    border-radius: 10px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: 1.0625rem;
    text-decoration: none;
    border: 1px solid var(--border-hover);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}

/* ===== SOCIAL PROOF ===== */
.social-proof {
    background: var(--bg-secondary);
    padding: 3.5rem 1.5rem;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.social-proof .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 4rem;
}

.stat-item {
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
}

.stat-item.visible {
    animation: fadeInUp 0.5s ease forwards;
}

.stat-number {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.stat-label {
    color: var(--text-dim);
    font-size: 0.9375rem;
    margin-top: 0.5rem;
}

/* ===== ABOUT FESTIVAL ===== */
.about-festival {
    background: var(--bg-primary);
}

.festival-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.festival-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.festival-card:hover {
    border-color: var(--border-gold);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.festival-icon {
    width: 48px;
    height: 48px;
    background: var(--gold-muted);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.festival-icon svg {
    width: 24px;
    height: 24px;
    color: var(--gold);
}

.festival-card h3 {
    font-size: 1.125rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
}

.festival-card p {
    color: var(--text-muted);
    font-size: 0.9375rem;
}

/* ===== TOURNAMENT LIST ===== */
.tournament-list {
    margin-top: 4rem;
}

.tournament-list > h3 {
    font-size: 1.375rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.tournament-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1rem;
}

.tournament-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    text-decoration: none;
    transition: all 0.2s ease;
    display: block;
}

.tournament-card:hover {
    border-color: var(--border-gold);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.tournament-card.special {
    border-color: var(--border-gold);
    background: rgba(232, 0, 13, 0.05);
}

.tournament-card.special:hover {
    border-color: var(--gold);
}

.tournament-card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.tournament-name {
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--text-primary);
}

.tournament-card.special .tournament-name {
    color: var(--gold);
}

.tournament-badge {
    background: var(--emerald-muted);
    color: var(--emerald);
    padding: 0.25rem 0.625rem;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 600;
}

.tournament-link-icon {
    color: var(--text-dim);
    flex-shrink: 0;
    margin-left: auto;
}

.tournament-card:hover .tournament-link-icon {
    color: var(--gold);
}

.tournament-card-details {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tournament-tag {
    background: rgba(0, 0, 0, 0.05);
    color: var(--text-muted);
    padding: 0.25rem 0.625rem;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 500;
}

.tournament-card.special .tournament-tag {
    background: var(--gold-muted);
    color: var(--gold);
}

.tournament-note {
    margin-top: 1.5rem;
    font-size: 0.9375rem;
    color: var(--text-dim);
}

.tournament-note a {
    color: var(--gold);
    font-weight: 600;
    text-decoration: none;
}

.tournament-note a:hover {
    text-decoration: underline;
}

/* ===== 10-DAY OVERVIEW ===== */
.overview-table {
    margin-bottom: 4rem;
}

.overview-table > h3 {
    font-size: 1.375rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 0.75rem;
}

.overview-day {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.overview-day.special {
    border-color: var(--border-gold);
    background: rgba(232, 0, 13, 0.05);
}

.overview-date {
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 0.875rem;
    color: var(--emerald);
}

.overview-day.special .overview-date {
    color: var(--gold);
}

.overview-label {
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-primary);
}

.overview-detail {
    font-size: 0.8125rem;
    color: var(--text-dim);
}

/* ===== DAILY SCHEDULES ===== */
.daily-schedules > h3 {
    font-size: 1.375rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.schedule-alt {
    display: block;
    font-size: 0.8125rem;
    color: var(--text-dim);
    font-style: italic;
    margin-top: 0.25rem;
}

.schedule-meals-note {
    display: block;
    font-size: 0.8125rem;
    color: var(--gold);
    font-weight: 600;
    margin-top: 0.25rem;
}

/* ===== NOT A CAMP ===== */
.not-camp {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
}

.not-camp .section-label {
    background: var(--gold-muted);
    color: var(--gold);
    border-color: var(--border-gold);
}

.not-camp .section-title {
    color: var(--text-primary);
}

.not-camp-text p {
    font-size: 1.125rem;
    color: var(--text-muted);
    max-width: 700px;
    margin-top: 0.5rem;
    line-height: 1.8;
}

.not-camp-text p strong {
    color: var(--text-primary);
}

.not-camp-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

@media (max-width: 768px) {
    .not-camp-comparison {
        grid-template-columns: 1fr;
    }
}

.not-camp-col {
    padding: 2rem;
    border-radius: 16px;
}

.not-camp-col.bad {
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid var(--border);
}

.not-camp-col.good {
    background: rgba(232, 0, 13, 0.05);
    border: 1px solid var(--border-gold);
}

.not-camp-col h4 {
    font-size: 1.125rem;
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border);
    font-family: 'DM Sans', sans-serif;
}

.not-camp-col.bad h4 {
    color: var(--text-dim);
}

.not-camp-col.good h4 {
    color: var(--gold);
}

.not-camp-col ul {
    list-style: none;
}

.not-camp-col ul li {
    padding: 0.5rem 0;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.9375rem;
}

.not-camp-col.bad ul li {
    color: var(--text-dim);
}

.not-camp-col.good ul li {
    color: var(--text-secondary);
}

.not-camp-col.bad ul li::before {
    content: '—';
    color: var(--text-dim);
    flex-shrink: 0;
}

.not-camp-col.good ul li::before {
    content: '✓';
    color: var(--gold);
    font-weight: 700;
    flex-shrink: 0;
}

/* ===== WHY US / BENEFITS ===== */
.why-us {
    background: var(--bg-primary);
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.benefit-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    border-color: var(--border-hover);
    box-shadow: var(--shadow-lg);
}

.benefit-card.benefit-highlight {
    border-color: var(--border-gold);
    background: rgba(232, 0, 13, 0.04);
    grid-column: 1 / -1;
}

.benefit-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.benefit-icon svg {
    width: 28px;
    height: 28px;
}

.benefit-icon.safety { background: var(--gold-muted); color: var(--gold); }
.benefit-icon.chess { background: var(--gold-muted); color: var(--gold); }
.benefit-icon.fun { background: rgba(109, 40, 217, 0.10); color: #6d28d9; }
.benefit-icon.team { background: rgba(29, 78, 216, 0.10); color: #1d4ed8; }

.benefit-content h3 {
    font-size: 1.25rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
}

.benefit-list {
    list-style: none;
}

.benefit-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: var(--text-secondary);
}

.benefit-list li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    margin-top: 0.55rem;
    flex-shrink: 0;
}

.benefit-highlight .benefit-content {
    display: flex;
    flex-direction: column;
}

@media (min-width: 768px) {
    .benefit-highlight {
        display: flex;
        gap: 2rem;
        align-items: flex-start;
    }
    .benefit-highlight .benefit-icon {
        flex-shrink: 0;
    }
}

/* ===== PROGRAM / SCHEDULE ===== */
.program {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
}

.schedule-table {
    background: var(--bg-card);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin-top: 3rem;
    border: 1px solid var(--border);
}

.schedule-row {
    display: grid;
    grid-template-columns: 160px 1fr;
    border-bottom: 1px solid var(--border);
}

.schedule-row:last-child {
    border-bottom: none;
}

.schedule-row.schedule-header {
    background: rgba(232, 0, 13, 0.12);
    color: var(--text-primary);
    border-bottom: 1px solid var(--border-gold);
}

.schedule-row.highlight {
    background: rgba(0, 0, 0, 0.03);
}

.schedule-time, .schedule-activity {
    padding: 1.25rem 1.5rem;
}

.schedule-time {
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    background: rgba(0, 0, 0, 0.02);
    color: var(--text-muted);
}

.schedule-row.schedule-header .schedule-time,
.schedule-row.schedule-header .schedule-activity {
    background: transparent;
    font-weight: 600;
    color: var(--text-primary);
}

.schedule-row.highlight .schedule-time {
    background: rgba(0, 0, 0, 0.05);
    color: var(--emerald);
}

.schedule-activity {
    color: var(--text-secondary);
}

.schedule-row.meals-highlight {
    background: rgba(232, 0, 13, 0.04);
    border-left: 3px solid var(--gold);
}

.schedule-row.meals-highlight .schedule-time {
    background: rgba(232, 0, 13, 0.08);
    color: var(--gold);
    font-weight: 700;
}

.schedule-row.meals-highlight .schedule-activity {
    color: var(--gold);
    font-weight: 500;
}

.schedule-notice {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background: rgba(232, 0, 13, 0.06);
    border: 1px solid var(--border-gold);
    padding: 1.5rem;
    border-radius: 12px;
    margin-top: 2rem;
}

.notice-icon {
    width: 24px;
    height: 24px;
    color: var(--gold);
    flex-shrink: 0;
}

.schedule-notice p {
    color: var(--text-secondary);
}

.schedule-notice strong {
    display: block;
    margin-bottom: 0.25rem;
    color: var(--gold);
}

/* ===== INCLUDED SECTION ===== */
.included {
    background: var(--bg-primary);
}

.included-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.included-column {
    background: var(--bg-card);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid var(--border);
}

.included-column.transport {
    border-color: rgba(0, 0, 0, 0.2);
}

.included-column.chess {
    border-color: var(--border-gold);
}

.included-column.safety {
    border-color: rgba(0, 0, 0, 0.15);
}

.included-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
}

.included-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.transport .included-icon { background: var(--emerald-muted); color: var(--gold); }
.chess .included-icon { background: var(--gold-muted); color: var(--gold); }
.safety .included-icon { background: rgba(29, 78, 216, 0.10); color: #1d4ed8; }

.included-icon svg {
    width: 28px;
    height: 28px;
}

.included-header h3 {
    font-size: 1.25rem;
    color: var(--text-primary);
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
}

.included-list {
    list-style: none;
}

.included-list li {
    display: flex;
    gap: 1rem;
    padding: 0.875rem 0;
    align-items: flex-start;
}

.included-check {
    width: 22px;
    height: 22px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 0.125rem;
    background: var(--gold-muted);
    color: var(--gold);
}

.included-check svg {
    width: 14px;
    height: 14px;
}

.included-list span {
    color: var(--text-secondary);
}

.not-included {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(232, 0, 13, 0.04);
    border-radius: 16px;
    border: 1px solid var(--border-gold);
}

.not-included h3 {
    font-size: 1.125rem;
    color: var(--gold);
    margin-bottom: 1rem;
    font-family: 'DM Sans', sans-serif;
}

.not-included-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.not-included-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--bg-card);
    color: var(--text-secondary);
    padding: 0.75rem 1.25rem;
    border-radius: 100px;
    font-weight: 500;
    border: 1px solid var(--border);
}

.not-included-tag svg {
    width: 16px;
    height: 16px;
    color: var(--gold);
}

/* ===== PRICING ===== */
.pricing {
    background: linear-gradient(180deg, var(--bg-accent) 0%, var(--bg-primary) 100%);
    text-align: center;
    border-top: 1px solid var(--border);
}

.pricing .section-label,
.pricing .section-title {
    color: var(--text-primary);
}

.pricing-two-cols {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.pricing-box {
    background: var(--bg-card);
    border-radius: 24px;
    padding: 2.5rem;
    color: var(--text-secondary);
    box-shadow: var(--shadow-xl);
    position: relative;
    border: 1px solid var(--border);
}

.pricing-box-featured {
    border-color: var(--gold);
    box-shadow: 0 0 0 1px var(--gold), var(--shadow-xl);
}

.pricing-badge {
    display: inline-block;
    background: var(--gold);
    color: var(--bg-primary);
    font-size: 0.8125rem;
    font-weight: 700;
    padding: 0.375rem 1rem;
    border-radius: 100px;
    margin-bottom: 1.5rem;
}

.pricing-badge-alt {
    background: rgba(0, 0, 0, 0.1);
    color: var(--text-secondary);
}

.pricing-common {
    max-width: 800px;
    margin: 2rem auto 0;
    text-align: center;
}

.pricing-amount {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}

.pricing-currency {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
}

.pricing-number {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 4rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.pricing-period {
    font-size: 1.125rem;
    color: var(--text-dim);
    font-weight: 500;
}

.pricing-desc {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.pricing-breakdown {
    background: rgba(0, 0, 0, 0.03);
    border-radius: 12px;
    padding: 1.25rem;
    margin-bottom: 1.5rem;
    text-align: left;
    border: 1px solid var(--border);
}

.pricing-breakdown-item {
    padding: 0.375rem 0;
    font-size: 0.8125rem;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border);
    padding-left: 1.25rem;
    position: relative;
}

.pricing-breakdown-item::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--emerald);
    font-weight: 700;
}

.pricing-breakdown-item:last-child {
    border-bottom: none;
}

/* Pricing Trust Badges */
.pricing-trust {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.pricing-trust span {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.75rem;
    color: var(--text-dim);
}

.pricing-trust svg {
    color: var(--emerald);
}

.pricing-spots {
    margin-top: 1.5rem;
    color: var(--gold);
    font-weight: 600;
}

/* ===== FINAL CTA ===== */
.final-cta {
    background: var(--bg-secondary);
    text-align: center;
    padding: 4rem 1.5rem;
    border-top: 1px solid var(--border);
}

.final-cta h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: 1rem;
}

.final-cta-text {
    max-width: 600px;
    margin: 0 auto 2.5rem;
    color: var(--text-muted);
    font-size: 1.125rem;
    line-height: 1.8;
}

.final-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin: 2.5rem 0;
}

.final-step {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.final-step-number {
    width: 36px;
    height: 36px;
    background: var(--gold);
    color: var(--bg-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
}

.final-step span:not(.final-step-number) {
    color: var(--text-secondary);
    font-weight: 500;
}

.final-trust {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
    color: var(--text-dim);
    font-size: 0.8125rem;
}

.final-trust span {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
}

.final-trust span::before {
    content: '✓';
    color: var(--emerald);
    font-weight: 700;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    background: var(--bg-primary);
    padding: 3.5rem 1.5rem;
    border-top: 1px solid var(--border);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    border-color: var(--border-gold);
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.testimonial-quote {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 44px;
    height: 44px;
    background: var(--gold-muted);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-weight: 700;
    font-size: 1rem;
    border: 1px solid var(--border-gold);
}

.author-info span {
    display: block;
}

.author-name {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.9375rem;
}

.author-role {
    font-size: 0.8125rem;
    color: var(--text-dim);
}

/* ===== URGENCY ===== */
.urgency {
    background: var(--bg-primary);
    text-align: center;
    border-top: 1px solid var(--border);
}

.urgency h2 {
    color: var(--text-primary);
}

.urgency-loss {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 1rem;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 2.5rem 0;
}

.countdown-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 1.5rem;
    border-radius: 12px;
    min-width: 80px;
}

.countdown-number {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.countdown-label {
    font-size: 0.875rem;
    color: var(--text-dim);
    margin-top: 0.5rem;
}

.urgency-note {
    color: var(--text-dim);
    margin-bottom: 2rem;
}

/* ===== FAQ ===== */
.faq {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
}

.faq-list {
    max-width: 800px;
    margin: 3rem auto 0;
}

.faq-item {
    background: var(--bg-card);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--border-hover);
}

.faq-item.active {
    border-color: var(--gold);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: 'DM Sans', sans-serif;
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--text-primary);
}

.faq-icon {
    width: 24px;
    height: 24px;
    color: var(--gold);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

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

.faq-answer-inner {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ===== CONTACT ===== */
.contact {
    background: var(--bg-primary);
    border-top: 1px solid var(--border);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.contact-card {
    background: var(--bg-card);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    border: 1px solid var(--border);
}

.contact-card-highlight {
    background: rgba(232, 0, 13, 0.08);
    border-color: var(--border-gold);
}

.contact-card-highlight h3,
.contact-card-highlight p {
    color: var(--text-primary);
}

.contact-card-highlight .contact-link {
    color: var(--gold);
    font-size: 1.25rem;
}

.contact-card-highlight .contact-icon {
    background: rgba(0, 0, 0, 0.1);
}

.contact-card-highlight .contact-icon svg {
    color: var(--gold);
}

.contact-icon {
    width: 56px;
    height: 56px;
    background: var(--gold-muted);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.contact-icon svg {
    width: 28px;
    height: 28px;
    color: var(--gold);
}

.contact-card h3 {
    font-size: 1.125rem;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    font-family: 'DM Sans', sans-serif;
}

.contact-link {
    color: var(--gold);
    font-weight: 600;
    text-decoration: none;
    font-size: 1.125rem;
    display: block;
    margin-bottom: 0.25rem;
}

.contact-link:hover {
    text-decoration: underline;
    color: var(--gold-light);
}

.contact-card p {
    color: var(--text-dim);
    font-size: 0.9375rem;
}

.contact-bank {
    font-size: 0.875rem !important;
    margin-bottom: 0.125rem !important;
}

.contact-bank-number {
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    color: var(--text-primary) !important;
    font-size: 0.9375rem !important;
    margin-top: 0.5rem !important;
    letter-spacing: 0.5px;
}

.contact-cta {
    text-align: center;
    margin-top: 3rem;
    padding: 3rem;
    background: var(--bg-card);
    border-radius: 20px;
    border: 1px solid var(--border-gold);
}

.contact-cta p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== ABOUT ===== */
.about {
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .about-content {
        grid-template-columns: 1fr 1fr;
    }
}

.about-text h3 {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.about-text p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.about-stat {
    background: var(--bg-card);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid var(--border);
}

.about-stat-number {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
}

.about-stat-label {
    font-size: 0.875rem;
    color: var(--text-dim);
    margin-top: 0.25rem;
}

.about-highlight {
    background: rgba(232, 0, 13, 0.06);
    color: var(--text-primary);
    padding: 2.5rem;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 1px solid var(--border-gold);
}

.about-highlight p {
    font-size: 1.25rem;
    font-style: italic;
    opacity: 0.95;
    color: var(--text-secondary);
}

.about-address {
    text-align: center;
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--bg-card);
    border-radius: 12px;
    border: 1px solid var(--border);
}

.about-address p {
    color: var(--text-muted);
}

/* ===== PS SECTION ===== */
.ps-section {
    background: var(--bg-primary);
    padding: 3rem 1.5rem;
    border-top: 1px solid var(--border);
}

.ps-content {
    max-width: 700px;
    margin: 0 auto;
}

.ps-item {
    margin-bottom: 1.5rem;
}

.ps-item strong {
    color: var(--gold);
}

.ps-item p {
    color: var(--text-muted);
}

.ps-item a {
    color: var(--gold);
    font-weight: 600;
    text-decoration: none;
}

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

/* ===== FOOTER ===== */
.footer {
    background: var(--bg-secondary);
    padding: 3rem 1.5rem;
    border-top: 1px solid var(--border);
}

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

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 0.9375rem;
    transition: color 0.2s ease;
}

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

.footer-copy {
    width: 100%;
    text-align: center;
    color: var(--text-dim);
    font-size: 0.875rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

/* ===== SCROLL ANIMATIONS ===== */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== GALLERY ===== */
.gallery {
    background: var(--bg-secondary) !important;
    border-top: 1px solid var(--border);
}

.gallery .section-label,
.gallery .section-title {
    color: var(--text-primary);
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-secondary);
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.12);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-top: 1px solid var(--border-gold);
}

.cookie-banner.visible {
    transform: translateY(0);
}

.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.5rem;
}

.cookie-banner-text {
    flex: 1;
    min-width: 280px;
}

.cookie-banner-text h3 {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.cookie-banner-text p {
    font-size: 0.9375rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.cookie-policy-link {
    font-size: 0.875rem;
    color: var(--gold);
    text-decoration: underline;
}

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

.cookie-btn {
    padding: 0.875rem 1.5rem;
    border-radius: 8px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9375rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 1px solid transparent;
    min-width: 160px;
    text-align: center;
}

.cookie-btn-primary {
    background: var(--gold);
    color: var(--bg-primary);
    border-color: var(--gold);
}

.cookie-btn-primary:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
}

.cookie-btn-secondary {
    background: transparent;
    color: var(--text-secondary);
    border-color: var(--border-hover);
}

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

/* ===== COOKIE SETTINGS PANEL ===== */
.cookie-settings-panel {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.cookie-settings-panel.visible {
    opacity: 1;
    visibility: visible;
}

.cookie-settings-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.cookie-settings-content {
    position: relative;
    background: var(--bg-secondary);
    border-radius: 16px;
    max-width: 560px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border);
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.cookie-settings-panel.visible .cookie-settings-content {
    transform: translateY(0);
}

.cookie-settings-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    background: var(--bg-secondary);
    border-radius: 16px 16px 0 0;
}

.cookie-settings-header h3 {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
}

.cookie-settings-close {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-dim);
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.cookie-settings-close:hover {
    background: rgba(0, 0, 0, 0.05);
    color: var(--text-primary);
}

.cookie-settings-body {
    padding: 1.5rem;
}

.cookie-settings-intro {
    font-size: 0.9375rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.cookie-category {
    background: var(--bg-card);
    border-radius: 12px;
    padding: 1.25rem;
    margin-bottom: 1rem;
    border: 1px solid var(--border);
}

.cookie-category:last-child {
    margin-bottom: 0;
}

.cookie-category-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
}

.cookie-category-info h4 {
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.cookie-category-info p {
    font-size: 0.875rem;
    color: var(--text-muted);
}

.cookie-toggle {
    position: relative;
    display: inline-block;
    width: 52px;
    height: 28px;
    flex-shrink: 0;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--text-dim);
    transition: 0.3s;
    border-radius: 28px;
}

.cookie-toggle-slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 3px;
    bottom: 3px;
    background: white;
    transition: 0.3s;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.cookie-toggle input:checked + .cookie-toggle-slider {
    background: var(--gold);
}

.cookie-toggle input:checked + .cookie-toggle-slider:before {
    transform: translateX(24px);
}

.cookie-toggle.disabled .cookie-toggle-slider {
    background: var(--gold-dark);
    cursor: not-allowed;
    opacity: 0.7;
}

.cookie-settings-footer {
    display: flex;
    gap: 0.75rem;
    padding: 1.5rem;
    border-top: 1px solid var(--border);
    background: var(--bg-card);
}

.cookie-settings-footer .cookie-btn {
    flex: 1;
}

.cookie-settings-contact {
    padding: 1rem 1.5rem;
    background: var(--bg-primary);
    border-radius: 0 0 16px 16px;
}

.cookie-settings-contact p {
    font-size: 0.8125rem;
    color: var(--text-dim);
    margin-bottom: 0.25rem;
}

.cookie-settings-contact p:last-child {
    margin-bottom: 0;
}

.cookie-settings-contact a {
    color: var(--gold);
}

/* ===== HERO IMAGE PLACEHOLDER ===== */
.placeholder-box {
    background: rgba(232, 0, 13, 0.08);
    border: 1px solid rgba(232, 0, 13, 0.2);
    border-radius: 1rem;
    padding: 3rem 2rem;
    text-align: center;
    color: var(--text-muted);
    margin: -2rem auto 0;
    max-width: 1000px;
    position: relative;
    z-index: 1;
}

.placeholder-box p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin: 0;
}

/* ===== GALLERY ===== */
.gallery {
    padding: 3rem 1.5rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.gallery-placeholder {
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border);
    border-radius: 0.75rem;
    padding: 3rem 1.5rem;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}


/* galeria zdjec, dodane 21.08.2026 */
.gallery-item {
    margin: 0;
    border-radius: 0.75rem;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.04);
    border: 1px solid var(--border);
}

.gallery-item img {
    display: block;
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.gallery-item figcaption {
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    color: var(--text-muted);
}

/* ===== TRAINERS PLACEHOLDER ===== */
.trainers-placeholder {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.trainer-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(232, 0, 13, 0.08);
    border: 1px solid rgba(232, 0, 13, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    color: var(--gold);
    text-align: center;
    padding: 0.25rem;
    line-height: 1.2;
}

/* ===== PRICING REASON ===== */
.pricing-reason {
    background: rgba(232, 0, 13, 0.04);
    border: 1px solid rgba(232, 0, 13, 0.2);
    border-radius: 1rem;
    padding: 2rem;
    margin: 2rem auto 0;
    max-width: 680px;
    text-align: left;
}

.pricing-reason-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--gold);
    font-family: 'DM Sans', sans-serif;
}

.pricing-reason-grid {
    display: grid;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.pricing-reason-item {
    display: flex;
    justify-content: space-between;
    padding: 0.4rem 0;
    border-bottom: 1px solid var(--border);
}

.pricing-reason-item-last {
    border-bottom: none;
}

.pricing-reason-check {
    color: var(--emerald);
    flex-shrink: 0;
}

.pricing-reason-note {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.pricing-reason-note strong {
    color: var(--gold);
}

/* ===== RISK REVERSAL ===== */
.risk-reversal {
    padding: 3rem 1.5rem;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
}

.risk-reversal-inner {
    max-width: 720px;
    text-align: center;
}

.risk-reversal-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(232, 0, 13, 0.1);
    border: 1px solid rgba(232, 0, 13, 0.2);
    margin-bottom: 1rem;
}

.risk-reversal-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.risk-reversal-desc {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}

.risk-reversal-desc strong {
    color: var(--text-primary);
}

.risk-reversal-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
    font-size: 0.95rem;
    color: var(--emerald);
}

.risk-reversal-badges span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

/* ===== RESPONSIVE ===== */

/* --- Tablet / Small Desktop --- */
@media (max-width: 768px) {
    section {
        padding: 2.5rem 1rem;
    }

    .header-inner {
        padding: 0.5rem 1rem;
    }

    .header-spots {
        display: none;
    }

    .header-cta {
        padding: 0.5rem 1rem;
        font-size: 0.8125rem;
    }

    /* Hero */
    .hero {
        min-height: auto;
        padding-top: 6rem;
        padding-bottom: 3rem;
    }

    .hero-description {
        font-size: 1.05rem;
    }

    .hero-meta {
        gap: 1rem;
    }

    .hero-cta-group {
        flex-direction: column;
    }

    .hero-cta-group .btn-primary,
    .hero-cta-group .btn-secondary {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .trust-badges {
        gap: 0.75rem;
    }

    /* Social Proof */
    .social-proof .container {
        gap: 2rem;
    }

    .stat-number {
        font-size: 2.25rem;
    }

    /* Grids — force single column */
    .testimonials-grid,
    .festival-highlights,
    .tournament-cards,
    .included-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    /* Pricing — stack */
    .pricing-two-cols {
        grid-template-columns: 1fr;
        max-width: 480px;
    }

    .pricing-number {
        font-size: 3rem;
    }

    .pricing-box {
        padding: 2rem 1.5rem;
    }

    /* Schedule */
    .schedule-row {
        grid-template-columns: 120px 1fr;
    }

    /* Overview grid */
    .overview-grid {
        grid-template-columns: 1fr;
    }

    /* Countdown */
    .countdown {
        gap: 0.75rem;
    }

    .countdown-item {
        padding: 1rem;
        min-width: 60px;
    }

    .countdown-number {
        font-size: 1.75rem;
    }

    /* Urgency */
    .urgency-loss {
        font-size: 1.125rem;
    }

    /* Final CTA */
    .final-steps {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .final-cta .btn-primary {
        width: 100%;
        justify-content: center;
    }

    /* Footer */
    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }

    /* Contact CTA */
    .contact-cta {
        padding: 2rem 1.5rem;
    }

    .contact-cta p {
        font-size: 1.1rem;
    }

    /* PS Section */
    .ps-section {
        padding: 2rem 1rem;
    }

    /* About */
    .about-stats {
        gap: 1rem;
    }

    .about-stat-number {
        font-size: 1.75rem;
    }

    /* Buttons — all CTA buttons full-width on mobile */
    .urgency .btn-primary,
    .contact-cta .btn-primary {
        width: 100%;
        justify-content: center;
    }

    /* Gallery */
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }

    /* Risk Reversal */
    .risk-reversal-badges {
        gap: 1rem;
    }

    .risk-reversal-desc {
        font-size: 0.95rem;
    }

    /* Placeholder box */
    .placeholder-box {
        padding: 2rem 1.5rem;
        margin: -1rem auto 0;
    }

    .placeholder-box p {
        font-size: 0.95rem;
    }

    /* Pricing reason */
    .pricing-reason {
        padding: 1.5rem;
    }

    .pricing-reason-grid {
        font-size: 0.875rem;
    }
}

/* --- Small Phones (iPhone SE, Galaxy S) --- */
@media (max-width: 480px) {
    section {
        padding: 2rem 0.75rem;
    }

    .header-cta {
        padding: 0.4rem 0.75rem;
        font-size: 0.75rem;
        gap: 0.25rem;
    }

    .logo-img {
        height: 34px;
    }

    /* Hero */
    .hero h1 {
        font-size: 1.75rem;
    }

    .hero-description {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 0.375rem 1rem;
    }

    .hero-meta {
        gap: 0.75rem;
    }

    .hero-meta-item {
        font-size: 0.8125rem;
    }

    /* Buttons */
    .btn-primary {
        padding: 1rem 1.5rem;
        font-size: 0.9375rem;
    }

    .btn-secondary {
        padding: 0.875rem 1.5rem;
        font-size: 0.9375rem;
    }

    /* Social Proof */
    .social-proof {
        padding: 2.5rem 1rem;
    }

    .social-proof .container {
        gap: 1.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.8125rem;
    }

    /* Testimonials */
    .testimonial-card {
        padding: 1.5rem;
    }

    .testimonial-quote {
        font-size: 0.9375rem;
    }

    /* Festival & Tournament */
    .festival-card {
        padding: 1.5rem;
    }

    .tournament-card {
        padding: 1rem 1.25rem;
    }

    /* Not-a-Camp */
    .not-camp-col {
        padding: 1.5rem;
    }

    /* Benefits */
    .benefit-card {
        padding: 1.5rem;
    }

    /* Schedule */
    .schedule-time, .schedule-activity {
        padding: 1rem;
    }

    .schedule-notice {
        flex-direction: column;
        gap: 0.75rem;
        padding: 1.25rem;
    }

    /* Included */
    .included-column {
        padding: 1.5rem;
    }

    /* Pricing */
    .pricing-number {
        font-size: 2.5rem;
    }

    .pricing-currency {
        font-size: 1.25rem;
    }

    /* Pricing reason box — override inline styles */
    .pricing-reason {
        padding: 1.5rem !important;
    }

    /* Not-included tags */
    .not-included-items {
        flex-direction: column;
        align-items: center;
    }

    /* Countdown — 2x2 grid */
    .countdown {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
        max-width: 240px;
        margin-left: auto;
        margin-right: auto;
    }

    .countdown-item {
        padding: 0.75rem;
        min-width: auto;
    }

    .countdown-number {
        font-size: 1.5rem;
    }

    .countdown-label {
        font-size: 0.75rem;
    }

    /* Risk reversal — override inline styles */
    .final-cta {
        padding: 2.5rem 1rem;
    }

    /* Section titles */
    .section-title {
        font-size: 1.5rem;
    }

    /* FAQ */
    .faq-question {
        padding: 1.25rem;
        font-size: 0.9375rem;
        gap: 0.75rem;
    }

    .faq-answer-inner {
        padding: 0 1.25rem 1.25rem;
        font-size: 0.9375rem;
    }

    /* Contact */
    .contact-card {
        padding: 1.5rem;
    }

    .contact-bank-number {
        font-size: 0.8125rem !important;
        word-break: break-all;
    }

    /* About */
    .about-highlight {
        padding: 1.5rem;
    }

    .about-highlight p {
        font-size: 1.05rem;
    }

    /* Gallery — single column on small phones */
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-placeholder {
        padding: 2rem 1rem;
    }

    .gallery {
        padding: 2rem 0.75rem;
    }

    /* Risk reversal */
    .risk-reversal {
        padding: 2rem 0.75rem;
    }

    .risk-reversal-title {
        font-size: 1.25rem;
    }

    .risk-reversal-badges {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
        font-size: 0.875rem;
    }

    /* Placeholder box */
    .placeholder-box {
        padding: 1.5rem 1rem;
    }

    .placeholder-box p {
        font-size: 0.875rem;
    }

    /* Trainer avatars */
    .trainer-avatar {
        width: 64px;
        height: 64px;
        font-size: 0.55rem;
    }

    /* Pricing reason */
    .pricing-reason {
        padding: 1.25rem;
    }

    .pricing-reason-grid {
        font-size: 0.8125rem;
    }

    .pricing-reason-item {
        flex-direction: column;
        gap: 0.125rem;
    }

    .pricing-reason-note {
        font-size: 0.8125rem;
    }
}

@media (max-width: 640px) {
    .cookie-banner-content {
        flex-direction: column;
        align-items: stretch;
        padding: 1.25rem;
    }

    .cookie-banner-buttons {
        flex-direction: column;
    }

    .cookie-btn {
        width: 100%;
        min-width: auto;
    }

    .cookie-settings-content {
        width: 95%;
        max-height: 85vh;
    }

    .cookie-settings-footer {
        flex-direction: column;
    }

    .schedule-row {
        grid-template-columns: 1fr;
    }

    .schedule-time {
        font-size: 0.875rem;
        padding: 0.75rem 1.5rem 0;
        background: transparent !important;
    }

    .schedule-activity {
        padding: 0.25rem 1.5rem 0.75rem;
    }
}
