/* ═══ FONTS — Google Fonts: Bricolage Grotesque + Cabin ═══ */

/* ═══ CSS VARIABLES ═══ */
:root {
 --purple: #6B21A8;
 --purple-dark: #581C87;
 --purple-medium: #7C3AED;
 --purple-light: #F3E8FF;
 --purple-border: #C4B5FD;
 --purple-faint: #FAF5FF;
 --yellow-hl: #FDE68A;
 --yellow-strong: #FBBF24;
 --cta: #DC3522;
 --cta-hover: #C62E1C;
 --cta-shadow: rgba(220,53,34,0.3);
 --amber: #F59E0B;
 --amber-light: #FEF3C7;
 --gold: #D4A017;
 --gold-light: #FEF9E7;
 --dark: #1A1A1A;
 --body-text: #374151;
 --gray: #6B7280;
 --light-gray: #F9FAFB;
 --white: #FFFFFF;
 --success: #16A34A;
 --font-heading: 'Inter', sans-serif;
 --font-body: 'Cabin', sans-serif;
 --bg-alt: linear-gradient(180deg, #FAFBFF 0%, #F5F0FF 100%);
 --bg-warm: linear-gradient(180deg, #FFFCF7 0%, #FFF5EB 100%);
 --bg-soft: #FAFBFF;
 --radius: 16px;
 --radius-sm: 12px;
 --radius-btn: 50px;
 --shadow: 0 2px 12px rgba(0,0,0,0.06);
 --shadow-hover: 0 8px 30px rgba(0,0,0,0.1);
}

/* ═══ RESET ═══ */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: var(--font-body); font-size: 16px; line-height: 1.7; color: var(--body-text); background: var(--white); min-height: 100vh; -webkit-font-smoothing: antialiased; }
img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* ═══ TYPOGRAPHY ═══ */
strong, b { font-weight: 800; }
h1,h2,h3,h4 { font-family: var(--font-heading); line-height: 1.25; color: var(--dark); letter-spacing: -0.02em; }
h1 { font-size: 34px; font-weight: 800; }
h2 { font-size: 32px; font-weight: 700; line-height: 1.35; }
h3 { font-size: 22px; font-weight: 700; line-height: 1.3; }
.hl { background: var(--yellow-hl); padding: 2px 8px; border-radius: 4px; }
.hl-purple { color: var(--purple); font-style: italic; }
.hl-purple-bg { background: var(--purple-light); padding: 2px 8px; border-radius: 4px; font-style: italic; }

/* ═══ SECTION BASE ═══ */
.section { padding: 72px 24px; }
.section-inner { max-width: 780px; margin: 0 auto; }
.section-wide { max-width: 1100px; margin: 0 auto; }

/* ═══ PRELOADER ═══ */
.preloader {
 position: fixed; top: 0; left: 0; width: 100%; height: 100%;
 background: var(--white); z-index: 99999;
 display: flex; align-items: center; justify-content: center;
 transition: opacity 0.5s ease;
}
.preloader-logo-wrap {
 position: relative; overflow: hidden;
 width: 180px; height: auto;
}
.preloader-logo {
 width: 100%; height: auto; display: block;
 animation: preloaderPulse 1.5s ease-in-out infinite;
}
.preloader-shine {
 position: absolute; top: -100%; left: 0;
 width: 50%; height: 300%;
 background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.6) 50%, transparent 60%);
 animation: preloaderShine 2s ease-in-out infinite;
 pointer-events: none;
 will-change: transform;
}
@keyframes preloaderPulse {
 0%, 100% { transform: scale(1); opacity: 1; }
 50% { transform: scale(1.04); opacity: 0.92; }
}
@keyframes preloaderShine {
 0% { transform: translateX(-160%); }
 100% { transform: translateX(320%); }
}

/* ═══ GRADIENT FLOW WRAPPERS ═══ */
.narrative-flow {
 background: linear-gradient(180deg, #FFFCF7 0%, #FFF0DE 40%, #FFF5EB 100%);
}
.narrative-flow .narrative-video-part,
.narrative-flow .narrative-text-part {
 background: transparent !important;
}
.purple-flow {
 background: linear-gradient(180deg, #FAF5FF 0%, #F3E8FF 45%, #E9D5FF 100%);
}
.purple-flow .purple-video-part,
.purple-flow .purple-text-part {
 background: transparent !important;
}
.purple-video-part { padding: 72px 24px; }

/* ═══ WIDTH UTILITIES ═══ */
.w-heading { max-width: 800px; margin-left: auto; margin-right: auto; }
.w-video { max-width: 600px; margin-left: auto; margin-right: auto; }
.w-text { max-width: 520px; margin-left: auto; margin-right: auto; }

/* ═══ NAVBAR ═══ */
.navbar {
 position: sticky; top: 0; z-index: 1000;
 background: rgba(255,255,255,0.92);
 -webkit-backdrop-filter: blur(16px) saturate(1.8);
 backdrop-filter: blur(16px) saturate(1.8);
 border-bottom: 1px solid rgba(107, 33, 168, 0.08);
 padding: 0 20px;
 box-shadow: 0 1px 8px rgba(107, 33, 168, 0.04);
 transition: transform 0.35s cubic-bezier(.4,0,.2,1), box-shadow 0.35s ease, background 0.35s ease;
}
.navbar.nav-hidden {
 transform: translateY(-100%);
 box-shadow: none;
}
.navbar.nav-scrolled {
 background: rgba(255, 255, 255, 0.85);
 box-shadow: 0 4px 24px rgba(107, 33, 168, 0.08);
}
.navbar-inner {
 max-width: 1200px; margin: 0 auto;
 display: flex; align-items: center; justify-content: space-between;
 height: 64px;
}
.navbar-logo { display: flex; align-items: center; text-decoration: none; }
.navbar-logo img { height: 38px; width: auto; }
.navbar-links { display: flex; gap: 10px; align-items: center; white-space: nowrap; }
.navbar-links a {
 font-family: 'Inter', sans-serif; font-size: 12.5px; font-weight: 500;
 color: var(--body-text); text-decoration: none; transition: color 0.2s;
 position: relative; white-space: nowrap;
}
.navbar-links a:hover { color: var(--dark); }
.navbar-links a::after {
 content: ''; position: absolute; bottom: -4px; left: 0;
 width: 0; height: 2px; background: var(--purple);
 transition: width 0.3s ease;
}
.navbar-links a:hover::after { width: 100%; }
.navbar-cta {
 font-family: 'Inter', sans-serif; font-weight: 700; font-size: 13px;
 color: var(--white) !important; background: var(--cta);
 padding: 10px 28px; border-radius: 50px; letter-spacing: 0.02em;
 text-decoration: none !important; transition: all 0.3s cubic-bezier(.4,0,.2,1);
 box-shadow: 0 3px 12px rgba(220, 53, 34, 0.2);
}
.navbar-cta:hover {
 background: var(--cta-hover) !important; color: var(--white) !important;
 transform: translateY(-2px) scale(1.03);
 box-shadow: 0 6px 20px rgba(220, 53, 34, 0.35);
}
.navbar-cta::after { display: none !important; }

.navbar-hamburger {
 display: none; background: none; border: none; cursor: pointer;
 padding: 8px; flex-direction: column; gap: 5px;
}
.navbar-hamburger span {
 display: block; width: 24px; height: 2px; background: var(--dark);
 border-radius: 2px; transition: all 0.3s ease;
}
/* Mobile overlay + menu */
.nav-mobile-overlay {
 display: none; position: fixed; top: 60px; left: 0; right: 0; bottom: 0;
 background: rgba(26, 16, 40, 0.5); z-index: 999;
}
.nav-mobile-menu {
 display: none; position: fixed; top: 60px; left: 0; right: 0;
 background: var(--white); padding: 24px 20px;
 box-shadow: 0 8px 24px rgba(107, 33, 168, 0.12);
 z-index: 1000; flex-direction: column; gap: 0;
 border-bottom: 2px solid var(--purple-light);
}
.nav-mobile-menu a {
 font-family: 'Inter', sans-serif; font-size: 16px; font-weight: 500;
 color: var(--body-text); text-decoration: none;
 padding: 14px 0; border-bottom: 1px solid var(--purple-faint);
 display: block; transition: color 0.2s;
}
.nav-mobile-menu > a:last-of-type { border-bottom: none; }
.nav-mobile-menu a:hover { color: var(--dark); }

.nav-mobile-menu .nav-cta-mobile {
 display: inline-block; font-weight: 700;
 color: var(--white); background: var(--cta);
 padding: 14px 28px; border-radius: 10px;
 text-align: center; margin-top: 16px; border-bottom: none;
}
.nav-mobile-menu .nav-cta-mobile:hover { background: var(--cta-hover); color: var(--white); }

/* ═══ HERO — White BG, Two Columns ═══ */
.hero-section {
 background: var(--white); padding: 60px 24px 0; position: relative; overflow: hidden;
}
.hero-inner {
 max-width: 1200px; margin: 0 auto;
 display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start;
}
.hero-eyebrow-wrap { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.hero-eyebrow {
 font-family: var(--font-body); font-weight: 600; font-size: 16px;
 color: var(--cta); margin-bottom: 16px; display: inline-block;
}
.hero-eyebrow .hl {
 background: linear-gradient(135deg, #FDE68A 0%, #FBBF24 100%);
 padding: 2px 8px; border-radius: 6px; color: var(--dark);
}
.hero-eyebrow .hl-purple {
 background: linear-gradient(135deg, var(--purple-medium), var(--purple));
 -webkit-background-clip: text; -webkit-text-fill-color: transparent;
 background-clip: text; font-style: italic;
}
.hero-section h1 { color: var(--dark); margin: 0 0 20px; font-size: 30px; line-height: 1.3; }
.fialovy-highlight {
 background: linear-gradient(135deg, var(--purple-medium), var(--purple));
 -webkit-background-clip: text; -webkit-text-fill-color: transparent;
 background-clip: text;
 padding: 0 3px;
 -webkit-box-decoration-break: clone;
 box-decoration-break: clone;
}
.zluty-highlight {
 background: linear-gradient(135deg, #FDE68A 0%, #FBBF24 100%);
 padding: 2px 10px; border-radius: 6px;
 -webkit-text-fill-color: var(--dark);
 -webkit-box-decoration-break: clone;
 box-decoration-break: clone;
}
.hero-body {
 font-family: var(--font-body); font-size: 16px; color: var(--body-text); line-height: 1.7; margin-bottom: 28px;
}
.hero-body strong { color: var(--dark); font-weight: 800; }
.hero-body em { font-style: italic; }
.hero-body u { text-decoration: underline; }
.hero-book-wrap { position: relative; text-align: center; align-self: stretch; display: flex; align-items: stretch; justify-content: center; margin-top: -20px; min-height: 480px; }
.hero-book {
 width: 100%; max-width: 560px; height: auto; border-radius: 4px; object-fit: contain; object-position: center right;
 aspect-ratio: 1 / 1;
}

/* ═══ CTA BUTTONS ═══ */
.btn-cta {
 display: inline-block; font-family: 'Inter', sans-serif; font-size: 20px; font-weight: 700;
 line-height: 18px; letter-spacing: normal;
 color: var(--white); background: var(--cta); border: 3px solid var(--dark); border-radius: 14px;
 padding: 20px 36px; cursor: pointer; transition: all 0.3s ease;
 box-shadow: 0 4px 0 rgba(0,0,0,0.2), 0 6px 20px var(--cta-shadow); text-align: center;
 text-decoration: none; position: relative; overflow: hidden;
}
.btn-cta::before {
 content: ''; position: absolute; top: 0; left: -100%; width: 60%; height: 100%;
 background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
 transition: left 0.5s ease;
}
.btn-cta:hover::before { left: 120%; }
.btn-cta:hover { background: var(--cta-hover); box-shadow: 0 2px 0 rgba(0,0,0,0.2), 0 4px 15px var(--cta-shadow); transform: translateY(2px); }

/* ═══ PAYMENT ICONS ═══ */
.payment-row { display: flex; gap: 6px; align-items: center; justify-content: center; margin-top: 12px; flex-wrap: wrap; width: fit-content; margin-left: auto; margin-right: auto; }
.payment-row.left { justify-content: flex-start; margin-left: 0; }
.pay-icon {
 height: 28px; width: auto; transition: transform 0.3s ease;
 opacity: 1; filter: none; background: none;
}
.pay-icon:hover {
 transform: translateY(-2px);
}

/* ═══ TRUST BAR ═══ */
.trust-bar { padding: 24px 24px; background: transparent; }
.trust-bar-inner {
 max-width: 1200px; margin: 0 auto;
 background: linear-gradient(135deg, #FBBF24, #F59E0B);
 border-radius: var(--radius); padding: 18px 32px;
 display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; align-items: center;
}
.trust-item { font-family: var(--font-body); font-weight: 700; font-size: 15px; color: var(--dark); display: flex; align-items: center; gap: 8px; white-space: nowrap; }

/* ═══ SITUATIONS CAROUSEL ═══ */
.situations-section { background: linear-gradient(180deg, var(--white) 0%, #FFF8F0 55%, #FFECD2 100%); }
.situations-section h2 { text-align: center; margin-bottom: 40px; font-size: 32px; }
.situations-section h2 .jou {
 background: linear-gradient(135deg, var(--purple-medium), var(--purple));
 color: var(--white); padding: 6px 20px; border-radius: 10px; font-style: italic;
 box-shadow: 0 4px 16px rgba(124, 58, 237, 0.25);
}
.carousel-wrap { position: relative; max-width: 1200px; margin: 0 auto; }
.carousel-track {
 display: flex; gap: 20px; overflow-x: auto; scroll-snap-type: x mandatory;
 padding: 8px 4px 24px; -webkit-overflow-scrolling: touch; scrollbar-width: none;
 scroll-behavior: smooth;
}
.carousel-track::-webkit-scrollbar { display: none; }
.situation-card {
 flex: 0 0 calc(25% - 15px); scroll-snap-align: start;
 background: var(--white); border-radius: 20px; padding: 32px 28px;
 border: 1px solid rgba(196, 181, 253, 0.3);
 box-shadow: 0 2px 12px rgba(107, 33, 168, 0.06);
 transition: transform 0.3s, box-shadow 0.3s;
 min-width: 260px; position: relative; overflow: hidden;
}
.situation-card::before {
 content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
 background: linear-gradient(90deg, var(--purple-medium), var(--purple));
 opacity: 0; transition: opacity 0.3s;
}
.situation-card:hover {
 transform: translateY(-6px);
 box-shadow: 0 12px 32px rgba(107, 33, 168, 0.12);
 border-color: var(--purple-border);
}
.situation-card:hover::before { opacity: 1; }
.situation-icon {
 font-size: 44px; margin-bottom: 18px; display: flex;
 align-items: center; justify-content: center;
 width: 64px; height: 64px; border-radius: 16px;
 background: var(--purple-faint);
}
.situation-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 10px; color: var(--dark); line-height: 1.4; }
.situation-card p { font-size: 14px; color: var(--gray); line-height: 1.7; margin: 0; }
.carousel-progress { height: 3px; background: rgba(196, 181, 253, 0.3); border-radius: 4px; margin: 24px auto 0; max-width: 500px; }
.carousel-progress-bar { height: 100%; background: linear-gradient(90deg, var(--purple-medium), var(--purple)); border-radius: 4px; width: 50%; transition: width 0.3s; }
.carousel-arrows { display: flex; gap: 14px; justify-content: center; margin-top: 24px; }
.carousel-arrow {
 width: 44px; height: 44px; border-radius: 12px;
 background: var(--white); color: var(--purple); border: 1.5px solid var(--purple-border);
 font-size: 20px; cursor: pointer;
 display: flex; align-items: center; justify-content: center;
 transition: all 0.25s ease; box-shadow: 0 2px 8px rgba(107, 33, 168, 0.08);
}
.carousel-arrow:hover {
 background: var(--purple); color: var(--white); border-color: var(--purple);
 box-shadow: 0 4px 16px rgba(107, 33, 168, 0.2); transform: translateY(-2px);
}

/* ═══ REASONS SECTION ═══ */
.reasons-section { background: linear-gradient(180deg, #FAFBFF 0%, #F5F0FF 100%); }
.reasons-intro {
 font-size: 32px; color: var(--dark); max-width: 800px; margin: 0 auto 40px;
 text-align: center; line-height: 1.35; font-weight: 700; letter-spacing: -0.02em;
}
.reasons-intro em { font-style: italic; }
.reasons-intro strong { color: var(--dark); }
.reasons-video { max-width: 600px; margin: 0 auto 48px; border-radius: 16px; overflow: hidden; box-shadow: 0 8px 32px rgba(0,0,0,0.12); }
.benefits-list { display: flex; flex-direction: column; gap: 20px; max-width: 520px; margin: 0 auto; }
.benefit-item {
 display: flex; align-items: flex-start; gap: 16px; padding: 20px;
 background: var(--white); border-radius: 16px;
 border: 2px solid #f0e6f5;
 box-shadow: 0 4px 12px rgba(123, 31, 162, 0.08);
 transition: all 0.3s ease;
}
.benefit-item:hover {
 border-color: var(--purple);
 box-shadow: 0 8px 24px rgba(123, 31, 162, 0.15);
 transform: translateX(8px);
}
.benefit-icon {
 flex-shrink: 0; width: 56px; height: 56px;
 display: flex; align-items: center; justify-content: center;
 background: linear-gradient(135deg, #f3e5f5 0%, #e1bee7 100%);
 border-radius: 50%; font-size: 28px;
 transition: all 0.4s ease;
 box-shadow: 0 4px 12px rgba(123, 31, 162, 0.2);
}
.benefit-item:hover .benefit-icon {
 transform: scale(1.15) rotate(10deg);
 background: linear-gradient(135deg, #e1bee7 0%, #ce93d8 100%);
 box-shadow: 0 6px 20px rgba(123, 31, 162, 0.35);
}
.benefit-item p {
 margin: 0; font-family: var(--font-body);
 font-size: 16px; line-height: 1.7; color: var(--dark);
}
.benefit-item strong { color: #1a1a1a; }
.benefit-item u { text-decoration-color: var(--purple); text-underline-offset: 3px; }
.benefit-item em { color: var(--purple); font-style: italic; }

/* ═══ CTA SECTION (centered) ═══ */
.cta-section { background: transparent; padding: 40px 24px; text-align: center; }

/* ═══ STORY SECTION — Two Column ═══ */
.story-section { background: var(--white); }
.story-inner { max-width: 1060px; margin: 0 auto; }
.story-heading {
 font-family: 'Inter', sans-serif; font-size: 32px; font-weight: 700;
 line-height: 1.4; color: var(--dark); text-align: center; margin-bottom: 48px;
}
.story-heading .hl {
 background: linear-gradient(135deg, #FDE68A 0%, #FBBF24 100%);
 padding: 2px 10px; border-radius: 6px;
}
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.story-images { display: flex; flex-direction: column; gap: 24px; padding-top: 16px; }
.story-images img { width: 100%; border-radius: var(--radius); box-shadow: none; }
.story-images .benefits-container { margin-top: 8px; }
.story-text {
 background: var(--white); border: 2px solid rgba(196,181,253,0.35);
 border-radius: var(--radius); padding: 40px;
 box-shadow: 0 4px 24px rgba(107,33,168,0.08), 0 1px 3px rgba(0,0,0,0.04);
 position: relative; overflow: hidden;
}
.story-text::before {
 content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
 background: linear-gradient(90deg, var(--purple-medium), var(--purple), var(--amber));
}
.story-divider {
 height: 2px; margin: 24px 0;
 background: linear-gradient(90deg, var(--purple-light), rgba(196,181,253,0.5), var(--purple-light));
 border-radius: 2px;
}
.story-text-h3 {
 font-family: 'Inter', sans-serif; font-size: 26px; font-weight: 800;
 line-height: 1.3; color: var(--dark); padding: 0;
 background: none;
 border-left: none; border-radius: 0;
 margin: 0 0 16px; letter-spacing: -0.02em;
}
.story-text-h3 em { font-style: italic; }
.story-text-h3 u { text-decoration-color: var(--purple); text-underline-offset: 3px; }
.beznytext-accent {
 font-weight: 700 !important; color: var(--dark) !important; font-size: 17px !important;
 margin-bottom: 8px !important;
}
.beznytext-closing {
 font-size: 17px !important; font-weight: 500; text-align: center;
 padding: 16px 20px; background: var(--purple-faint);
 border-radius: 12px; margin-top: 8px;
}
.story-text .cta-section { padding: 32px 0 0; }
.story-text .guarantee-banner { margin: 32px 0 0; }
.highlight-h3 {
 background: linear-gradient(135deg, var(--purple-medium), var(--purple));
 -webkit-background-clip: text; -webkit-text-fill-color: transparent;
 background-clip: text; font-style: italic;
}
.story-inner h3 {
 font-family: 'Inter', sans-serif; font-size: 28px; font-weight: 700;
 line-height: 1.3; color: var(--dark); margin: 0 0 24px;
}
.beznytext {
 font-family: var(--font-body); font-size: 16px; line-height: 1.7;
 color: var(--body-text); margin-bottom: 16px;
}
.beznytext strong { color: var(--dark); font-weight: 800; }
.beznytext em { font-style: italic; }
.beznytext u { text-decoration: underline; text-decoration-color: var(--purple); text-underline-offset: 3px; text-decoration-thickness: 2px; }
.beznytext-list {
 font-family: var(--font-body); font-size: 16px; line-height: 1.7;
 color: var(--body-text); margin: 16px 0 20px; padding-left: 0; list-style: none;
}
.beznytext-list li {
 padding-left: 24px; position: relative; margin-bottom: 6px;
}
.beznytext-list li::before {
 content: '→'; position: absolute; left: 0; color: var(--purple); font-weight: 700; font-size: 18px;
}
.beznytext-list li strong { color: var(--dark); }
.H4nadpis {
 font-family: 'Inter', sans-serif; font-size: 22px; font-weight: 700;
 color: var(--dark); margin: 32px 0 20px;
}
.price-highlight-box {
 background: linear-gradient(135deg, #f3e5f5 0%, #e1bee7 100%);
 padding: 20px; border-radius: 12px; margin-top: 20px;
}
.price-highlight-box strong { color: var(--dark); }

/* ═══ BENEFIT CARDS — Colored ═══ */
.benefits-container { display: flex; flex-direction: column; gap: 12px; margin: 32px 0; }
.benefit-card {
 display: flex; gap: 16px; align-items: center;
 padding: 18px 24px; border-radius: var(--radius-sm); color: var(--white); font-weight: 600;
}
.benefit-card .benefit-icon { font-size: 28px; flex-shrink: 0; width: auto; height: auto; background: none; border-radius: 0; box-shadow: none; }
.benefit-card .benefit-text { font-size: 15px; line-height: 1.5; margin: 0; }
.benefit-card-purple { background: var(--purple); }
.benefit-card-teal { background: var(--amber); }
.benefit-card-coral { background: var(--success); }
.benefit-card-yellow { background: var(--cta); }
.benefit-card-green { background: #2563EB; }
.benefit-card-blue { background: var(--purple-dark); }
.benefit-card-lavender { background: #16A34A; }

/* ═══ GUARANTEE BANNER — Gold Dashed ═══ */
.guarantee-banner {
 position: relative; display: flex; align-items: center; gap: 24px;
 padding: 28px 32px;
 background: linear-gradient(135deg, #FFFBEB 0%, #FEF3C7 50%, #FDE68A 100%);
 border: 2.5px dashed #D97706; border-radius: 18px;
 margin: 32px 0;
 box-shadow: 0 8px 16px -4px rgba(217,119,6,0.15), 0 4px 8px -2px rgba(245,158,11,0.1),
  inset 0 2px 0 0 rgba(255,255,255,0.5);
 transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
 overflow: hidden;
}
.guarantee-banner::before {
 content: ''; position: absolute; top: 0; left: 0; right: 0; height: 5px;
 background: linear-gradient(90deg, #F59E0B 0%, #D97706 50%, #B45309 100%);
 border-radius: 18px 18px 0 0;
}
.guarantee-banner:hover {
 transform: translateY(-3px);
 box-shadow: 0 12px 24px -6px rgba(217,119,6,0.2), 0 8px 12px -4px rgba(245,158,11,0.15);
 border-color: #B45309;
}
.guarantee-banner .guarantee-icon {
 flex-shrink: 0; width: 110px; height: 110px;
 display: flex; align-items: center; justify-content: center;
}
.guarantee-banner .guarantee-icon img {
 width: 100%; height: 100%; object-fit: contain;
 filter: drop-shadow(0 4px 8px rgba(217,119,6,0.2));
}
.guarantee-banner .guarantee-content { flex: 1; min-width: 0; }
.guarantee-title {
 font-family: 'Inter', sans-serif; font-size: 15px; font-weight: 900;
 background: linear-gradient(135deg, #92400E 0%, #B45309 50%, #D97706 100%);
 -webkit-background-clip: text; -webkit-text-fill-color: transparent;
 background-clip: text; margin: 0 0 6px; line-height: 1.3;
}
.guarantee-text {
 font-family: 'Inter', sans-serif; font-size: 15px; font-weight: 500;
 color: #78350F; margin: 0; line-height: 1.6;
}
.guarantee-text strong {
 font-weight: 800; color: #92400E;
 background: linear-gradient(135deg, rgba(251,191,36,0.2) 0%, rgba(245,158,11,0.3) 100%);
 padding: 2px 6px; border-radius: 4px;
}

/* ═══ BOOK PREVIEW CAROUSEL ═══ */
.book-preview-section { background: var(--white); }
.book-preview-section h2 { text-align: center; margin-bottom: 40px; font-size: 30px; font-weight: 800; line-height: 1.3; font-family: var(--font-heading); color: var(--dark); max-width: 800px; margin-left: auto; margin-right: auto; }
.pages-carousel {
 display: flex; gap: 16px; overflow-x: auto; scroll-snap-type: x mandatory;
 padding: 0 24px 16px; -webkit-overflow-scrolling: touch; scrollbar-width: none;
 max-width: 1100px; margin: 0 auto;
}
.pages-carousel::-webkit-scrollbar { display: none; }
.pages-slide {
 flex: 0 0 calc(33.333% - 12px); scroll-snap-align: start;
 border-radius: var(--radius-sm); overflow: hidden; cursor: pointer; transition: transform 0.3s;
 box-shadow: var(--shadow);
}
.pages-slide:hover { transform: scale(1.03); }
.pages-slide img { width: 100%; height: auto; }
.carousel-dots { display: flex; gap: 8px; justify-content: center; margin-top: 24px; }
.carousel-dot {
 width: 12px; height: 12px; border-radius: 50%; background: #D1D5DB; border: none;
 cursor: pointer; transition: 0.3s;
}
.carousel-dot.active { background: var(--dark); width: 24px; border-radius: 12px; }

/* ═══ NARRATIVE / LONG STORY ═══ */
.narrative-section { background: linear-gradient(180deg, #FFFCF7 0%, #FFF5EB 100%); }
.narrative-section .section-inner { max-width: 700px; }
.narrative-section p { font-size: 16px; line-height: 1.7; margin-bottom: 20px; }
.narrative-section strong { color: var(--dark); }
.narrative-section em { font-style: italic; }
.narrative-section u { text-decoration: underline; }
.narrative-section .lead { font-size: 20px; font-weight: 500; text-align: center; }
.narrative-section img { border-radius: var(--radius-sm); margin: 24px auto; display: block; max-width: 560px; }

/* ═══ URGENCY TEXT BOX ═══ */
.urgency-text-box {
 background: var(--yellow-hl); border-radius: var(--radius); padding: 32px;
 max-width: 700px; margin: 0 auto;
}
.urgency-text-box p { font-family: var(--font-body); font-size: 16px; line-height: 1.7; margin-bottom: 16px; }
.urgency-text-box p:last-child { margin-bottom: 0; }
.urgency-text-box strong { color: var(--dark); }
.urgency-text-box u { text-decoration: underline; }

/* ═══ STORIES LIST (inline arrow items) ═══ */
.stories-list { font-family: var(--font-body); font-size: 16px; line-height: 1.7; color: var(--dark); margin: 24px 0; }
.story-item { display: flex; gap: 12px; margin-bottom: 16px; align-items: flex-start; }
.story-item .arrow { font-size: 18px; font-weight: 700; color: var(--purple); flex-shrink: 0; margin-top: 2px; }
.story-item p { margin: 0; font-family: var(--font-body); font-size: 16px; line-height: 1.7; color: var(--dark); }
.story-item p strong { color: var(--dark); }
.story-item p u { text-decoration-color: var(--purple); text-underline-offset: 3px; }


/* ═══ SOCIAL PROOF HEADING ═══ */
.social-heading {
 text-align: center; font-size: 32px;
 font-family: var(--font-heading); font-weight: 700; margin-bottom: 32px; line-height: 1.35; letter-spacing: -0.02em;
}

/* ═══ PROBLEM SOLUTIONS ═══ */
.problem-solutions { display: flex; flex-direction: column; gap: 24px; margin: 32px 0; }
.problem-solution {
 display: flex; gap: 14px; align-items: flex-start;
 font-size: 16px; line-height: 1.7;
}
.problem-solution .arrow { color: var(--purple); font-weight: 700; flex-shrink: 0; font-size: 18px; }
.problem-solution strong { color: var(--dark); }
.problem-solution em { color: var(--purple); font-style: italic; }
.problem-solution u { text-decoration: underline; }

/* ═══ STAT BANNER ═══ */
.stat-banner {
 background: linear-gradient(180deg, #FAFBFF 0%, #F5F0FF 100%); padding: 72px 24px; text-align: center;
}
.stat-banner h2 { font-family: var(--font-heading); font-size: 34px; font-weight: 800; line-height: 1.25; margin-bottom: 8px; letter-spacing: -0.02em; }

/* ═══ HIGHLIGHT HEADING ═══ */
.highlight-heading .highlight {
 background: linear-gradient(135deg, #E8EAF6 0%, #C5CAE9 100%);
 padding: 2px 6px; border-radius: 4px; font-weight: 900;
 color: var(--purple-dark); font-style: italic;
}

/* ═══ BEZNY TEXT ═══ */
.bezny-text { font-family: var(--font-body); font-size: 16px; font-weight: 400; line-height: 1.7; color: var(--dark); }
.bezny-text p { font-family: var(--font-body); font-size: 16px; font-weight: 400; line-height: 1.7; color: var(--dark); margin-bottom: 20px; }
.bezny-text strong { color: var(--dark); font-weight: 800; }
.bezny-text em { color: var(--purple); font-style: italic; }
.bezny-text u { text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 3px; }
.bezny-text ul { margin: 0 0 16px; padding-left: 0; list-style: none; }
.bezny-text li { margin-bottom: 12px; padding-left: 28px; position: relative; font-family: var(--font-body); font-size: 16px; line-height: 1.7; color: var(--dark); }
.bezny-text li::before { content: '→'; position: absolute; left: 0; color: var(--purple); font-weight: 700; font-size: 18px; }

/* ═══ SITUATIONS LIST ═══ */
.situations-list { font-family: var(--font-body); font-size: 16px; line-height: 1.7; color: var(--dark); margin: 16px 0; }
.situation-item { display: flex; gap: 12px; margin-bottom: 8px; align-items: flex-start; }
.situation-item .arrow { font-size: 18px; font-weight: 700; color: var(--purple); flex-shrink: 0; margin-top: 2px; }
.situation-item p { margin: 0; font-family: var(--font-body); font-size: 16px; line-height: 1.7; color: var(--dark); }

/* ═══ METHODS LIST ═══ */
.methods-list { font-family: var(--font-body); font-size: 16px; line-height: 1.7; color: var(--dark); margin: 0 0 16px; }
.method-item { display: flex; gap: 12px; margin-bottom: 8px; align-items: flex-start; }
.method-item .arrow { font-size: 18px; font-weight: 700; color: var(--purple); flex-shrink: 0; margin-top: 2px; }
.method-item p { margin: 0; font-family: var(--font-body); font-size: 16px; line-height: 1.7; color: var(--dark); }

/* ═══ QUALIFICATIONS & SOLUTIONS LISTS ═══ */
.qualifications-list, .solutions-list { font-family: var(--font-body); font-size: 16px; line-height: 1.7; color: var(--dark); margin: 16px 0; padding-left: 0; text-align: left; }
.list-item { display: flex; gap: 6px; margin-bottom: 0; align-items: flex-start; padding: 1px 0; }
.list-item .arrow { font-size: 18px; font-weight: 700; color: var(--purple); flex-shrink: 0; margin-top: 2px; }
.list-item p { margin: 0; font-family: var(--font-body); font-size: 16px; line-height: 1.7; color: var(--dark); text-align: left; }

/* ═══ REVIEWS SLIDER ═══ */
.reviews-slider-wrap {
 position: relative; max-width: 1100px; margin: 0 auto; overflow: hidden;
}
.reviews-slider-track {
 display: flex; gap: 24px;
 animation: reviewSlide 25s linear infinite; width: max-content;
}
.reviews-slider-track:hover { animation-play-state: paused; }
@keyframes reviewSlide {
 0% { transform: translateX(0); }
 100% { transform: translateX(-50%); }
}
.review-photo-card {
 flex-shrink: 0; width: 220px; height: 280px; border-radius: 20px;
 overflow: hidden; position: relative;
 box-shadow: 0 8px 32px rgba(74,20,140,0.1);
 transition: all 0.4s cubic-bezier(.4,0,.2,1);
 border: 3px solid transparent;
 background-image: linear-gradient(var(--white), var(--white)), linear-gradient(135deg, var(--purple-medium), var(--purple));
 background-origin: border-box; background-clip: content-box, border-box;
}
.review-photo-card:hover {
 transform: translateY(-8px) scale(1.03);
 box-shadow: 0 20px 48px rgba(74,20,140,0.18);
}
.review-photo-card img {
 width: 100%; height: 100%; object-fit: cover; display: block; aspect-ratio: 220/280;
}
.photo-overlay {
 position: absolute; bottom: 0; left: 0; right: 0; padding: 16px;
 background: linear-gradient(transparent, rgba(45,27,61,0.8)); color: white;
}
.photo-name { font-family: var(--font-heading); font-size: 14px; font-weight: 700; margin: 0; }
.photo-stars { font-size: 12px; letter-spacing: 1px; }
.reviews-rating-bar {
 text-align: center; margin-top: 40px; font-family: var(--font-heading); color: var(--body-text);
}
.rating-big { font-size: 48px; font-weight: 800; color: var(--purple); }
.rating-stars { display: block; font-size: 24px; margin: 8px 0; }
.rating-count { font-size: 15px; color: var(--gray); }

/* ═══ AUTEUR PHOTO SINGLE ═══ */
.auteur-photo-single { max-width: 600px; margin: 0 auto 40px; }
.auteur-photo-single img { width: 100%; border-radius: var(--radius-sm); box-shadow: none; }

/* ═══ REVIEWS (OLD — kept for backwards compat) ═══ */
.reviews-section { background: linear-gradient(180deg, #FFFCF7 0%, #FFF5EB 100%); }
.reviews-heading { text-align: center; margin-bottom: 48px; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1100px; margin: 0 auto; }
.review-card {
 background: var(--white); border-radius: var(--radius); padding: 28px;
 border: 2px solid var(--purple-border); display: flex; flex-direction: column;
}
.review-photo { width: 80px; height: 80px; border-radius: 50%; object-fit: cover; margin-bottom: 12px; }
.review-stars { color: var(--yellow-strong); font-size: 20px; margin-bottom: 8px; }
.review-author { font-weight: 700; font-size: 16px; color: var(--dark); margin-bottom: 12px; }
.review-text { font-size: 15px; color: var(--body-text); line-height: 1.7; flex: 1; }
.review-text strong { color: var(--dark); }
.review-text em { color: var(--purple); }
.review-text u { text-decoration: underline; }

/* ═══ AUTEUR SECTION ═══ */
.auteur-section { background: var(--white); }
.auteur-heading { text-align: center; margin-bottom: 32px; font-size: 32px; }
.auteur-heading .hl-purple-bg { font-weight: 700; }
.auteur-photos {
 display: flex; gap: 0; justify-content: center; margin: 0 auto 40px; max-width: 520px;
 position: relative;
}
.auteur-photo-wrap {
 width: 240px; border: 6px solid var(--white); border-radius: 4px;
 box-shadow: 0 4px 20px rgba(0,0,0,0.15); transform: rotate(-3deg);
 overflow: hidden; background: var(--white);
}
.auteur-photo-wrap:last-child { transform: rotate(3deg); margin-left: -40px; }
.auteur-photo-wrap img { width: 100%; height: auto; }
.auteur-section p { font-size: 16px; line-height: 1.7; margin-bottom: 20px; max-width: 520px; margin-left: auto; margin-right: auto; }
.auteur-section strong { color: var(--dark); }
.auteur-section em { font-style: italic; }
.auteur-section u { text-decoration: underline; }
.auteur-credentials { max-width: 700px; margin: 32px auto; }
.auteur-credentials li {
 display: flex; gap: 14px; align-items: flex-start; font-size: 16px; line-height: 1.7; margin-bottom: 12px;
}
.auteur-credentials .arrow { color: var(--purple); flex-shrink: 0; }
.auteur-four-pillars { max-width: 700px; margin: 24px auto; }
.auteur-four-pillars li {
 display: flex; gap: 14px; align-items: flex-start; font-size: 16px; line-height: 1.7; margin-bottom: 10px;
}
.auteur-four-pillars .arrow { color: var(--purple); flex-shrink: 0; }

/* ═══ SECOND CHANCE SECTION ═══ */
.second-chance-section { background: linear-gradient(180deg, #FAFBFF 0%, #F5F0FF 100%); }
.second-chance-grid {
 max-width: 1100px; margin: 0 auto;
 display: grid; grid-template-columns: 1fr 1.04fr; gap: 40px; align-items: start;
}
.second-chance-book { max-width: 500px; }
.second-chance-book img { width: 100%; border-radius: var(--radius-sm); }
.second-chance-card {
 border: 2px solid var(--purple-border); border-radius: var(--radius); padding: 36px;
}
.second-chance-card h2 { margin-bottom: 20px; font-size: 28px; }
.second-chance-card p { font-size: 16px; line-height: 1.8; margin-bottom: 16px; }
.second-chance-card strong { color: var(--dark); }
.second-chance-card em { font-style: italic; }
.second-chance-card u { text-decoration: underline; }
.second-chance-card ul { margin: 16px 0; }
.second-chance-card ul li { font-size: 16px; line-height: 1.7; padding-left: 28px; position: relative; margin-bottom: 8px; }
.second-chance-card ul li::before { content: '→'; position: absolute; left: 0; color: var(--purple); font-weight: 700; }

/* ═══ SHIPPING BOX (Blue) ═══ */
.shipping-box {
 display: flex; gap: 20px; align-items: center;
 background: #E0F2FE; border: 2px dashed #3B82F6;
 border-radius: var(--radius); padding: 24px 28px;
 max-width: 640px; margin: 24px auto 0;
}
.shipping-icon { font-size: 48px; flex-shrink: 0; }
.shipping-title { font-size: 18px; font-weight: 700; margin-bottom: 4px; font-family: var(--font-heading); color: var(--dark); }
.shipping-box p { font-size: 15px; color: var(--body-text); margin: 0; }
.shipping-box .hl { background: var(--purple-light); font-weight: 700; }

/* ═══ BONUSES ═══ */
.bonuses-section { background: var(--purple-light); padding: 80px 24px; }
.bonuses-heading { text-align: center; margin-bottom: 48px; }
.bonuses-heading .hl { background: var(--yellow-hl); }
.bonus-card {
 display: grid; grid-template-columns: 240px 1fr; gap: 28px; align-items: start;
 background: var(--white); border-radius: var(--radius); padding: 36px;
 border: 2px dashed var(--gold); margin-bottom: 24px;
 box-shadow: var(--shadow);
 max-width: 950px; margin-left: auto; margin-right: auto;
}
.bonus-card img { width: 100%; height: auto; border-radius: var(--radius-sm); }
.bonus-card h3 { margin-bottom: 12px; font-size: 22px; }
.bonus-card h3 .hl { background: var(--yellow-hl); }
.bonus-card p { font-size: 16px; color: var(--body-text); line-height: 1.7; margin-bottom: 16px; }
.bonus-checklist { display: flex; flex-direction: column; gap: 12px; }
.bonus-check-item {
 background: var(--purple-faint); border-radius: var(--radius-sm); padding: 14px 18px;
 display: flex; gap: 10px; align-items: flex-start; font-size: 15px; line-height: 1.6;
}
.bonus-check-item .check { flex-shrink: 0; }

/* ═══ WAAROM (Why Different) ═══ */
.waarom-section { background: linear-gradient(180deg, #FAFBFF 0%, #F5F0FF 100%); }
.waarom-heading { text-align: center; margin-bottom: 20px; }
.waarom-subtext { text-align: center; max-width: 700px; margin: 0 auto 40px; font-family: var(--font-body); font-size: 16px; line-height: 1.7; }
.waarom-items { display: flex; flex-direction: column; gap: 24px; max-width: 700px; margin: 0 auto; }
.waarom-item {
 display: flex; gap: 14px; align-items: flex-start;
 font-size: 16px; line-height: 1.7;
}
.waarom-item .arrow { color: var(--purple); font-weight: 700; flex-shrink: 0; font-size: 18px; }
.waarom-item strong { color: var(--dark); }


/* ═══ FINAL OFFER ═══ */
.final-offer-section { background: linear-gradient(180deg, var(--bg-alt) 0%, #F3E8FF 100%); text-align: center; }
.final-offer-img { width: 100%; max-width: 500px; height: auto; margin: 0 auto 32px; border-radius: var(--radius); }
.final-offer-section p { font-size: 16px; line-height: 1.7; max-width: 520px; margin: 0 auto 20px; }
.final-offer-section strong { color: var(--dark); }
.final-offer-section u { text-decoration: underline; }

/* ═══ FAQ ═══ */
.faq-section { background: linear-gradient(180deg, #FFFFFF 0%, #FFF8F0 40%, #FFECD2 100%); }
.faq-heading { text-align: center; margin-bottom: 40px; }
.faq-heading .hl-purple-bg { font-weight: 700; }
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item {
 border: 1px solid var(--purple-border); border-radius: var(--radius-sm);
 margin-bottom: 12px; background: var(--white); overflow: hidden;
}
.faq-question {
 font-family: var(--font-heading); font-size: 17px; font-weight: 600;
 color: var(--dark); cursor: pointer; padding: 20px 24px;
 display: flex; justify-content: space-between; align-items: center;
 background: none; border: none; width: 100%; text-align: left;
}
.faq-question::after { content: '+'; font-size: 24px; color: var(--purple); transition: transform 0.3s; flex-shrink: 0; margin-left: 16px; font-weight: 700; }
.faq-item.open .faq-question::after { transform: rotate(45deg); }
.faq-answer {
 font-size: 16px; color: var(--body-text); line-height: 1.7;
 max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.4s ease;
 padding: 0 24px;
}
.faq-item.open .faq-answer { max-height: 500px; padding: 0 24px 20px; }

/* ═══ FOOTER ═══ */
.site-footer { background: var(--white); border-top: 2px solid var(--cta); padding: 48px 24px 24px; }
.footer-inner { max-width: 1100px; margin: 0 auto; display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 32px; }
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-logo { height: 50px; width: auto; }
.footer-links { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }
.footer-links a { font-size: 14px; color: var(--purple); font-weight: 600; transition: color 0.2s; }
.footer-links a:hover { color: var(--purple-dark); text-decoration: underline; }
.footer-payments { display: flex; gap: 6px; align-items: center; flex-wrap: wrap; }
.footer-payment-badge {
 display: flex; align-items: center; gap: 6px;
 background: var(--light-gray); border: 1px solid #E5E7EB; border-radius: 8px;
 padding: 6px 12px; font-size: 13px; color: var(--gray);
}
.footer-bottom {
 max-width: 1100px; margin: 32px auto 0; padding-top: 24px;
 border-top: 1px solid #E5E7EB;
 display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
 font-size: 13px; color: var(--gray);
}

/* ═══ FLOATING BOOK ANIMATION ═══ */
@keyframes bookFloat {
 0%, 100% { transform: translateY(0); }
 50% { transform: translateY(-10px); }
}

/* ═══ ANIMATIONS ═══ */
.anim { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.anim.vis { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: 0.1s; } .d2 { transition-delay: 0.2s; } .d3 { transition-delay: 0.3s; } .d4 { transition-delay: 0.4s; }

/* ═══ HOVER ANIMATIONS ═══ */
.btn-cta { transition: all 0.3s cubic-bezier(.4,0,.2,1); }
.btn-cta:hover { transform: translateY(2px) scale(1.02); }
.btn-cta:active { transform: translateY(4px) scale(0.98); }

.faq-item { transition: border-color 0.3s ease, box-shadow 0.3s ease; }
.faq-item:hover { border-color: var(--purple-medium); box-shadow: 0 4px 16px rgba(124, 58, 237, 0.1); }

.bonus-card { transition: transform 0.35s ease, box-shadow 0.35s ease; }
.bonus-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(107, 33, 168, 0.12); }

.waarom-item { transition: transform 0.3s ease; }
.waarom-item:hover { transform: translateX(6px); }

.story-item { transition: transform 0.3s ease; }
.story-item:hover { transform: translateX(6px); }


.problem-solution { transition: transform 0.3s ease; }
.problem-solution:hover { transform: translateX(6px); }

.bezny-text li { transition: transform 0.3s ease; }
.bezny-text li:hover { transform: translateX(6px); }

.differences-list .list-item { transition: transform 0.3s ease; }
.differences-list .list-item:hover { transform: translateX(6px); }

.trust-item { transition: transform 0.3s ease; }
.trust-item:hover { transform: scale(1.05); }

.pay-icon { transition: transform 0.3s ease; }
.pay-icon:hover { transform: translateY(-3px) scale(1.1); }

.guarantee-banner { cursor: default; }

.navbar-logo img { transition: transform 0.3s ease; }
.navbar-logo:hover img { transform: scale(1.05); }

.footer-links a { transition: color 0.2s ease, transform 0.2s ease; display: inline-block; }
.footer-links a:hover { transform: translateY(-1px); }

.cta-banner { transition: transform 0.3s ease, box-shadow 0.3s ease; }
.cta-banner:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(0,0,0,0.12); }

.benefit-card { transition: transform 0.3s ease, box-shadow 0.3s ease; }
.benefit-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.1); }

.benefit-item { transition: transform 0.3s ease; }
.benefit-item:hover { transform: translateX(4px); }

.situation-card { transition: transform 0.3s ease, box-shadow 0.3s ease; }
.situation-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.12); }

.review-photo-card { transition: transform 0.4s ease; }
.review-photo-card:hover { transform: scale(1.04); }

.guarantee-banner { transition: transform 0.3s ease, box-shadow 0.3s ease; }
.guarantee-banner:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.1); }

.hero-book-wrap img { transition: transform 0.5s ease; }
.hero-book-wrap:hover img { transform: scale(1.03); }

.second-chance-book img { transition: transform 0.4s ease; }
.second-chance-book:hover img { transform: scale(1.04) rotate(-1deg); }

.final-offer-img { transition: transform 0.4s ease; }
.final-offer-img:hover { transform: scale(1.03); }

.bonus-card img { transition: transform 0.4s ease; }
.bonus-card:hover img { transform: scale(1.06) rotate(-2deg); }

.shipping-box { transition: transform 0.3s ease, box-shadow 0.3s ease; }
.shipping-box:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.08); }

.situation-item { transition: transform 0.2s ease; }
.situation-item:hover { transform: translateX(4px); }

.method-item { transition: transform 0.2s ease; }
.method-item:hover { transform: translateX(4px); }

/* ═══ LIGHTBOX ═══ */
.lightbox-overlay {
 position: fixed; top: 0; left: 0; width: 100%; height: 100%;
 background: rgba(0,0,0,0.9); z-index: 10000; display: none;
 align-items: center; justify-content: center; cursor: zoom-out;
}
.lightbox-overlay.active { display: flex; }
.lightbox-overlay img { max-width: 90%; max-height: 90vh; border-radius: 8px; }

/* ═══ RESPONSIVE ═══ */
@media (max-width: 1024px) {
 .reviews-grid { grid-template-columns: repeat(2, 1fr); }
 /* Navbar: hide desktop links, show hamburger on tablets */
 .navbar-links { display: none; }
 .navbar-hamburger { display: flex; }
 .nav-mobile-menu.open { display: flex; }
 .nav-mobile-overlay.open { display: block; }
}

@media (max-width: 768px) {
 /* Base */
 .section { padding: 48px 20px; }
 h2 { font-size: 26px; }
 h3 { font-size: 20px; }

 /* Hero mobile — order: h1 → book → body → CTA → icons */
 .hero-section { padding: 32px 16px 0; }
 .hero-section h1 { font-size: 24px; line-height: 1.35; padding: 0 8px; }
 .hero-inner { display: flex !important; flex-direction: column; align-items: center; text-align: center; gap: 0; }
 .hero-text { display: contents !important; }
 .hero-text h1 { order: 1; margin-bottom: 16px; width: 100%; }
 .hero-book-wrap { order: 2; margin-top: 0; margin-bottom: 20px; min-height: auto; }
 .hero-body { order: 3; margin-bottom: 20px; width: 100%; }
 .btn-cta#heroCta { order: 4; }
 .hero-text > .payment-row { order: 5; margin-top: 10px; }
 .hero-book { max-width: 380px; margin: 0 auto; animation: bookFloat 3s ease-in-out infinite; }
 .payment-row.left { justify-content: center; margin-left: auto; margin-right: auto; }
 .hero-body { font-size: 15px; line-height: 1.65; text-align: left; }

 /* Navbar mobile */
 .navbar-links { display: none; }
 .navbar-hamburger { display: flex; }
 .nav-mobile-menu.open { display: flex; }
 .nav-mobile-overlay.open { display: block; }
 .navbar-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
 .navbar-hamburger.open span:nth-child(2) { opacity: 0; }
 .navbar-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

 /* Carousel */
 .situation-card { flex: 0 0 calc(80% - 10px); }
 .situations-section h2 { font-size: 24px; }

 /* Trust */
 .trust-bar-inner { flex-direction: column; gap: 10px; text-align: center; }

 /* Reasons */
 .reasons-intro { font-size: 24px; }

 /* Story */
 .story-grid { grid-template-columns: 1fr; }
 .story-heading { font-size: 24px !important; }
 .story-images { max-width: 400px; margin: 0 auto; }
 .story-text { padding: 24px; }
 .story-text .guarantee-banner { flex-direction: column; text-align: center; }

 /* Second chance */
 .second-chance-grid { grid-template-columns: 1fr; }
 .second-chance-book { max-width: 280px; margin: 0 auto; }

 /* Bonuses */
 .bonus-card { grid-template-columns: 1fr; text-align: center; }
 .bonus-card img { max-width: 200px; margin: 0 auto; }

 /* Guarantee & shipping */
 .guarantee-box { flex-direction: column; text-align: center; }
 .guarantee-banner { flex-direction: column; text-align: center; padding: 24px 20px; }
 .guarantee-banner .guarantee-icon { width: 80px; height: 80px; }
 .shipping-box { flex-direction: column; text-align: center; }

 /* Reviews */
 .reviews-grid { grid-template-columns: 1fr; }
 .review-photo-card { width: 180px; height: 230px; }
 .reviews-slider-track { gap: 16px; }

 /* Book preview heading — match hero h1 sizing */
 .book-preview-section h2 { font-size: 24px; line-height: 1.35; }

 /* Author */
 .auteur-photos { flex-direction: column; align-items: center; }
 .auteur-photo-wrap { transform: none !important; margin-left: 0 !important; }
 .auteur-photo-single { max-width: 100%; }
 .auteur-photo-single img { box-shadow: none; border-radius: 0; background: var(--white); }

 /* CTA banners */
 .cta-banner { flex-direction: column; text-align: center; padding: 24px 20px; gap: 16px; }
 .cta-icon { font-size: 44px; }
 .cta-question { font-size: 20px; }
 .cta-subtext { font-size: 15px; }

 /* Social */
 .social-heading { font-size: 24px; }

 /* Footer */
 .footer-inner { flex-direction: column; align-items: center; text-align: center; }
 .footer-links { justify-content: center; }
 .footer-payments { justify-content: center; }
 .footer-bottom { flex-direction: column; align-items: center; text-align: center; }

 /* Book preview */
 .pages-slide { flex: 0 0 calc(50% - 8px); }

 /* Body text mobile — 16px is optimal mobile reading size, 1.7 line-height */
 .bezny-text, .bezny-text p { font-size: 16px; line-height: 1.7; }
 .beznytext { font-size: 16px; line-height: 1.7; }
 .narrative-section p { font-size: 16px; line-height: 1.7; }
 .auteur-section p { font-size: 16px; line-height: 1.7; }
 .second-chance-card p { font-size: 16px; line-height: 1.7; }
 .waarom-subtext { font-size: 16px; }

 /* Disable hover animations on touch */
 .waarom-item:hover, .story-item:hover,
 .problem-solution:hover, .bezny-text li:hover,
 .differences-list .list-item:hover { transform: none; }
}

/* ═══ H2 WITH HIGHLIGHT ═══ */
h2.h2, .h2 {
 font-family: var(--font-heading);
 font-size: 32px;
 line-height: 1.4;
 font-weight: 700;
 color: var(--dark);
 text-align: center;
 margin: 0 0 24px;
}
.h2 .highlight, h2.h2 .highlight, h2 .highlight {
 background: linear-gradient(135deg, #E8EAF6 0%, #C5CAE9 100%);
 padding: 2px 6px;
 border-radius: 4px;
 font-weight: 900;
 color: #4A148C;
 font-style: italic;
}

/* ═══ DIFFERENCES LIST ═══ */
.differences-list { margin-top: 20px; }
.differences-list .list-item { display: flex; gap: 12px; margin-bottom: 20px; align-items: flex-start; }
.differences-list .arrow { font-size: 18px; font-weight: 700; color: #4A148C; flex-shrink: 0; margin-top: 2px; }
.differences-list .list-item p { margin: 0; font-family: var(--font-body); font-size: 16px; line-height: 1.7; color: var(--dark); }

/* ═══ CTA BANNERS ═══ */
.cta-banner {
 display: flex;
 align-items: center;
 gap: 24px;
 padding: 32px 36px;
 margin-bottom: 20px;
 border-radius: 16px;
 border: 3px solid #000;
 transition: transform 0.3s ease, box-shadow 0.3s ease;
 position: relative;
}
.cta-banner:hover {
 transform: translateX(8px);
 box-shadow: -8px 8px 0px #000;
}
.cta-banner::before {
 content: '';
 position: absolute;
 left: 0; top: 0; bottom: 0;
 width: 6px;
 border-radius: 16px 0 0 16px;
}
.cta-banner-dark { background: #1a1a1a; }
.cta-banner-dark::before { background: #ffd97d; }
.cta-banner-red { background: #2d0a0a; }
.cta-banner-red::before { background: #ff4444; }
.cta-banner-purple { background: #2a1a3d; }
.cta-banner-purple::before { background: #9b7fd8; }
.cta-icon { font-size: 56px; flex-shrink: 0; }
.cta-question {
 font-family: var(--font-heading);
 font-size: 24px;
 font-weight: 800;
 line-height: 1.3;
 margin: 0 0 8px;
 color: #FFF;
}
.cta-subtext {
 font-family: var(--font-heading);
 font-size: 16px;
 font-weight: 400;
 line-height: 1.6;
 margin: 0;
 color: #FFF;
}

@media (max-width: 480px) {
 .section { padding: 36px 16px; }
 h2 { font-size: 22px; }
 h3 { font-size: 18px; }

 /* Hero small */
 .hero-section { padding: 20px 16px 0; }
 .hero-section h1 { font-size: 21px; line-height: 1.4; }
 .hero-book { max-width: 300px; }
 .hero-body { font-size: 14.5px; line-height: 1.6; margin-bottom: 20px; }
 .book-preview-section h2 { font-size: 21px; line-height: 1.4; }

 /* CTA */
 .btn-cta { font-size: 16px; padding: 16px 24px; width: 100%; }

 /* Cards */
 .pages-slide { flex: 0 0 calc(80% - 8px); }
 .situation-card { flex: 0 0 calc(90% - 10px); }
 .carousel-arrow { width: 40px; height: 40px; font-size: 16px; }

 /* Text sizing */
 .bezny-text, .bezny-text p { font-size: 15.5px; line-height: 1.65; }
 .beznytext { font-size: 15.5px; line-height: 1.65; }
 .situation-item p, .method-item p, .list-item p { font-size: 15.5px; line-height: 1.65; }
 .differences-list .list-item p { font-size: 15.5px; line-height: 1.65; }
 .narrative-section p { font-size: 15.5px; line-height: 1.65; }
 .second-chance-card p { font-size: 15.5px; line-height: 1.65; }
 .auteur-section p { font-size: 15.5px; line-height: 1.65; }

 /* Headings */
 .highlight-heading .highlight { padding: 1px 4px; }
 h2.h2, .h2 { font-size: 22px; line-height: 1.35; }
 .h2 .highlight, h2.h2 .highlight, h2 .highlight { padding: 1px 4px; }
 .reasons-intro { font-size: 20px; }
 .social-heading { font-size: 20px; }
 .situations-section h2 { font-size: 20px; }

 /* CTA banners */
 .cta-question { font-size: 18px; }
 .cta-subtext { font-size: 14px; line-height: 1.5; }
 .cta-icon { font-size: 40px; }
 .cta-banner { padding: 20px 16px; gap: 12px; }

 /* Widths full on small */
 .w-heading { max-width: 100%; }
 .w-video { max-width: 100%; }
 .w-text { max-width: 100%; }

 /* Guarantee smaller */
 .guarantee-banner { padding: 20px 16px; gap: 16px; }
 .guarantee-banner .guarantee-icon { width: 64px; height: 64px; }
 .guarantee-title { font-size: 15px; }
 .guarantee-text { font-size: 14px; }

 /* Bonus card */
 .bonus-card { padding: 24px; }
 .bonus-card h3 { font-size: 20px; }
 .bonus-card p { font-size: 14.5px; }

 /* FAQ */
 .faq-question { font-size: 15px; padding: 16px 20px; }
 .faq-answer { font-size: 14.5px; }

 /* Shipping */
 .shipping-box { padding: 20px; }
 .shipping-box h4 { font-size: 16px; }
 .shipping-box p { font-size: 14px; }

 /* Second chance */
 .second-chance-card { padding: 24px; }
 .second-chance-card h2 { font-size: 22px; }
 .second-chance-book { max-width: 240px; }

 /* Footer */
 .footer-links a { font-size: 13px; }
}
