/* ============================================
   Dating Skills — stylesheet
   Brand color: #fc4c69
   ============================================ */

:root {
    --primary: #fc4c69;
    --primary-dark: #e63a57;
    --primary-light: #ff6b82;
    --primary-soft: #ffe3e8;
    --primary-tint: #fff5f7;

    --dark: #1f1f2e;
    --text: #2d2d3a;
    --muted: #6b6b7a;
    --light: #f8f8fb;
    --border: #ececf2;
    --white: #ffffff;

    --shadow-sm: 0 2px 8px rgba(31, 31, 46, 0.05);
    --shadow-md: 0 8px 24px rgba(31, 31, 46, 0.08);
    --shadow-lg: 0 20px 60px rgba(252, 76, 105, 0.18);
    --shadow-xl: 0 30px 80px rgba(31, 31, 46, 0.12);

    --radius-sm: 8px;
    --radius: 14px;
    --radius-lg: 22px;
    --radius-xl: 30px;

    --max-width: 1200px;
    --transition: 0.25s ease;
}

/* ====== RESET ====== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    margin: 0;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--primary-dark); }
ul { list-style: none; padding: 0; margin: 0; }

h1, h2, h3, h4 {
    font-family: 'Poppins', 'Inter', sans-serif;
    color: var(--dark);
    line-height: 1.2;
    margin: 0;
    letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 800; }
h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 800; }
h3 { font-size: 1.25rem; font-weight: 700; }
h4 { font-size: 1rem; font-weight: 700; }
p { margin: 0 0 1rem; }

.accent { color: var(--primary); }
.eyebrow {
    display: inline-block;
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 1rem;
}

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

.section-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 56px;
}
.section-sub {
    color: var(--muted);
    font-size: 1.1rem;
    margin-top: 1rem;
}

/* ====== BUTTONS ====== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 1rem;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
    text-align: center;
    line-height: 1.1;
}
.btn-primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 8px 20px rgba(252, 76, 105, 0.3);
}
.btn-primary:hover {
    background: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(252, 76, 105, 0.4);
}
.btn-ghost {
    background: transparent;
    color: var(--dark);
    border: 2px solid var(--border);
}
.btn-ghost:hover {
    border-color: var(--primary);
    color: var(--primary);
}
.btn-white {
    background: var(--white);
    color: var(--primary);
}
.btn-white:hover {
    background: var(--dark);
    color: var(--white);
}
.btn-sm { padding: 10px 20px; font-size: 0.9rem; }
.btn-lg { padding: 16px 34px; font-size: 1.05rem; }

/* ====== HEADER ====== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: saturate(180%) blur(12px);
    -webkit-backdrop-filter: saturate(180%) blur(12px);
    border-bottom: 1px solid transparent;
    transition: border-color var(--transition), box-shadow var(--transition);
}
.site-header.scrolled {
    border-bottom-color: var(--border);
    box-shadow: var(--shadow-sm);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    gap: 24px;
}
.logo { display: flex; align-items: center; }
.logo-img { height: 38px; width: auto; }

.main-nav ul {
    display: flex;
    gap: 32px;
    align-items: center;
}
.main-nav a {
    color: var(--dark);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
}
.main-nav a:hover { color: var(--primary); }

.nav-cta { white-space: nowrap; }

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}
.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--dark);
    transition: transform var(--transition), opacity var(--transition);
}
.menu-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
    display: none;
    background: var(--white);
    border-top: 1px solid var(--border);
    padding: 16px 24px;
}
.mobile-nav.is-open { display: block; }
.mobile-nav ul { display: flex; flex-direction: column; gap: 12px; }
.mobile-nav a {
    color: var(--dark);
    font-weight: 500;
    padding: 10px 0;
    display: block;
}
.mobile-nav .btn { text-align: center; width: 100%; }

/* ====== HERO ====== */
.hero {
    position: relative;
    padding: 80px 0 120px;
    background:
        radial-gradient(ellipse at top right, rgba(252, 76, 105, 0.08), transparent 60%),
        radial-gradient(ellipse at bottom left, rgba(252, 76, 105, 0.06), transparent 60%),
        var(--primary-tint);
    overflow: hidden;
}
.hero-inner {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}
.hero-text { max-width: 580px; }
.hero h1 { margin-bottom: 24px; }
.hero .lead {
    font-size: 1.2rem;
    color: var(--muted);
    margin-bottom: 32px;
    line-height: 1.6;
}
.hero-cta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}
.hero-bullets {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 0.95rem;
}
.hero-bullets li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text);
}
.check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    background: var(--primary-soft);
    color: var(--primary);
    border-radius: 50%;
    font-size: 0.8rem;
    font-weight: 700;
    flex-shrink: 0;
}

/* Background hearts */
.hero-bg-hearts {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.heart {
    position: absolute;
    color: var(--primary);
    opacity: 0.15;
    animation: float 8s ease-in-out infinite;
}
.heart.h1 { top: 12%; left: 5%; font-size: 28px; animation-delay: 0s; }
.heart.h2 { top: 30%; left: 42%; font-size: 18px; animation-delay: 1s; }
.heart.h3 { top: 70%; left: 8%; font-size: 24px; animation-delay: 2s; }
.heart.h4 { top: 18%; right: 10%; font-size: 32px; animation-delay: 0.5s; opacity: 0.1; }
.heart.h5 { top: 60%; right: 4%; font-size: 22px; animation-delay: 1.5s; }
.heart.h6 { top: 88%; right: 30%; font-size: 16px; animation-delay: 2.5s; }
.heart.h7 { top: 50%; left: 25%; font-size: 14px; animation-delay: 3s; opacity: 0.12; }
@keyframes float {
    0%, 100% { transform: translateY(0) rotate(-5deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

/* Hero visual / phone mockup */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 540px;
}
.phone-mockup {
    width: 300px;
    height: 600px;
    background: var(--dark);
    border-radius: 44px;
    padding: 12px;
    box-shadow: var(--shadow-xl);
    transform: rotate(-3deg);
    position: relative;
    z-index: 2;
}
.phone-screen {
    width: 100%;
    height: 100%;
    background: var(--white);
    border-radius: 32px;
    overflow: hidden;
    position: relative;
    padding: 30px 18px 18px;
}
.phone-notch {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 22px;
    background: var(--dark);
    border-radius: 0 0 14px 14px;
}
.match-card { text-align: center; }
.match-photo {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    margin: 24px auto 18px;
    background:
        radial-gradient(circle at 50% 35%, #ffd1da, transparent 55%),
        linear-gradient(135deg, var(--primary), var(--primary-light));
    position: relative;
    box-shadow: 0 12px 30px rgba(252, 76, 105, 0.4);
}
.match-photo::before {
    content: '❤';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    color: var(--white);
    font-size: 48px;
}
.match-info h3 {
    color: var(--primary);
    font-size: 1.3rem;
    margin-bottom: 6px;
}
.match-info p {
    font-size: 0.78rem;
    color: var(--muted);
    margin: 0 12px 14px;
    line-height: 1.4;
}
.match-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 0 4px;
}
.bubble {
    padding: 8px 12px;
    border-radius: 14px;
    font-size: 0.75rem;
    line-height: 1.35;
    max-width: 85%;
    text-align: left;
}
.bubble-mine {
    background: var(--primary);
    color: var(--white);
    align-self: flex-end;
    border-bottom-right-radius: 4px;
}
.bubble-theirs {
    background: var(--light);
    color: var(--dark);
    align-self: flex-start;
    border-bottom-left-radius: 4px;
}

.floating-badge {
    position: absolute;
    background: var(--white);
    padding: 14px 18px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    z-index: 3;
}
.floating-badge strong {
    color: var(--primary);
    font-size: 1.3rem;
    font-weight: 800;
    font-family: 'Poppins', sans-serif;
}
.floating-badge span {
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 500;
}
.badge-1 {
    top: 10%;
    left: -10%;
    animation: bounce-soft 3s ease-in-out infinite;
}
.badge-2 {
    bottom: 12%;
    right: -8%;
    animation: bounce-soft 3s ease-in-out infinite 1.5s;
}
@keyframes bounce-soft {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ====== APP LOGOS BAR (rich) ====== */
.apps-bar {
    padding: 56px 0;
    background: var(--white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.apps-label {
    text-align: center;
    color: var(--dark);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 28px;
}
.apps-label strong { color: var(--primary); }
.apps-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    max-width: 760px;
    margin: 0 auto;
}
.app-tile {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 16px 10px;
    border-radius: var(--radius);
    transition: transform var(--transition), background var(--transition);
    text-decoration: none;
    color: var(--dark);
}
.app-tile:hover {
    transform: translateY(-4px);
    background: var(--light);
    color: var(--dark);
}
.app-icon {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--white);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.10);
    transition: transform var(--transition);
}
.app-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.app-tile:hover .app-icon { transform: scale(1.05); }
.app-icon-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark);
}

/* ====== EXAMPLES SECTION (sales proof) ====== */
.examples {
    background: var(--light);
    padding: 100px 0;
}
.examples .section-head { margin-bottom: 56px; }
.examples-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.example-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px 28px 36px;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition), box-shadow var(--transition);
    border: 1px solid var(--border);
}
.example-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.example-card .example-label {
    display: inline-block;
    background: var(--primary-soft);
    color: var(--primary);
    padding: 5px 12px;
    border-radius: 100px;
    font-size: 0.74rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 14px;
}
.example-card h3 {
    font-size: 1.2rem;
    margin-bottom: 16px;
}
.chat-mockup {
    background: var(--light);
    border-radius: var(--radius);
    padding: 18px 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 18px;
    min-height: 220px;
}
.chat-mockup .chat-bubble {
    padding: 10px 14px;
    border-radius: 16px;
    max-width: 82%;
    font-size: 0.88rem;
    line-height: 1.4;
}
.chat-mockup .chat-bubble.theirs {
    background: var(--white);
    border-bottom-left-radius: 4px;
    align-self: flex-start;
    color: var(--dark);
    border: 1px solid var(--border);
}
.chat-mockup .chat-bubble.mine {
    background: var(--primary);
    color: var(--white);
    border-bottom-right-radius: 4px;
    align-self: flex-end;
}
.chat-mockup .chat-bubble.bad {
    background: #fdecec;
    color: #b32a30;
    border: 1px solid #fbcfd0;
    border-bottom-right-radius: 4px;
    align-self: flex-end;
}
.chat-mockup .chat-bubble.note {
    background: transparent;
    color: var(--muted);
    align-self: center;
    font-size: 0.78rem;
    font-style: italic;
    max-width: 100%;
    padding: 4px 0;
}
.example-card .example-takeaway {
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.55;
    margin: 0 0 16px;
}
.example-card .example-cta {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.92rem;
    text-decoration: none;
}
.example-card .example-cta::after { content: ' →'; }
.example-card .example-cta:hover { text-decoration: underline; }

@media (max-width: 980px) {
    .apps-grid { grid-template-columns: repeat(5, 1fr); gap: 8px; }
    .app-icon { width: 56px; height: 56px; border-radius: 14px; font-size: 1.4rem; }
    .examples-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
    .apps-grid { grid-template-columns: repeat(5, 1fr); }
    .app-icon { width: 48px; height: 48px; border-radius: 12px; font-size: 1.15rem; }
    .app-icon-label { font-size: 0.72rem; }
    .app-tile { padding: 10px 4px; gap: 6px; }
    .examples { padding: 64px 0; }
}

/* ====== SECTIONS ====== */
section { padding: 100px 0; }

/* ====== PROBLEMS ====== */
.problems { background: var(--white); }
.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.problem-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.problem-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-soft);
}
.problem-icon {
    font-size: 2.4rem;
    margin-bottom: 18px;
}
.problem-card h3 { margin-bottom: 12px; }
.problem-card p {
    color: var(--muted);
    font-size: 0.96rem;
    margin-bottom: 18px;
}
.problem-tag {
    display: inline-block;
    background: var(--primary-soft);
    color: var(--primary);
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 0.78rem;
    font-weight: 600;
}

/* ====== JOURNEY ====== */
.journey { background: var(--light); }
.journey-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.journey-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    position: relative;
    transition: transform var(--transition), box-shadow var(--transition);
    border: 1px solid var(--border);
}
.journey-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.journey-card-wide { grid-column: span 2; }
.journey-num {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: 0.1em;
    margin-bottom: 12px;
}
.journey-card h3 { margin-bottom: 12px; font-size: 1.4rem; }
.journey-card > p {
    color: var(--muted);
    margin-bottom: 20px;
}
.journey-points {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 24px;
}
.journey-card-wide .journey-points {
    grid-template-columns: repeat(4, 1fr);
}
.journey-points li {
    position: relative;
    padding-left: 22px;
    font-size: 0.92rem;
    color: var(--text);
    line-height: 1.5;
}
.journey-points li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 12px;
    height: 12px;
    background: var(--primary-soft);
    border: 2px solid var(--primary);
    border-radius: 50%;
}

/* ====== COURSES ====== */
.courses { background: var(--white); }
.course-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 64px;
}
.course-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    display: flex;
    flex-direction: column;
}
.course-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-soft);
}
.course-card-featured {
    background: linear-gradient(160deg, var(--primary), var(--primary-dark));
    color: var(--white);
    border: none;
    box-shadow: var(--shadow-lg);
    transform: scale(1.04);
}
.course-card-featured:hover { transform: scale(1.04) translateY(-6px); }
.course-card-featured h3,
.course-card-featured .course-desc { color: var(--white); }
.course-card-featured .course-features li { color: rgba(255, 255, 255, 0.92); }
.course-card-featured .course-features li::before {
    background: rgba(255, 255, 255, 0.3);
    color: var(--white);
}
.course-card-featured .course-soon {
    background: rgba(255, 255, 255, 0.18);
    color: var(--white);
}

.course-badge {
    display: inline-block;
    background: var(--primary-soft);
    color: var(--primary);
    padding: 5px 12px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    align-self: flex-start;
    margin-bottom: 18px;
}
.course-badge-hot {
    background: rgba(255, 255, 255, 0.22);
    color: var(--white);
}
.course-card h3 { margin-bottom: 10px; font-size: 1.35rem; }
.course-desc {
    color: var(--muted);
    margin-bottom: 22px;
    font-size: 0.95rem;
    flex-grow: 0;
}
.course-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
    flex-grow: 1;
}
.course-features li {
    position: relative;
    padding-left: 28px;
    font-size: 0.92rem;
}
.course-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    background: var(--primary-soft);
    color: var(--primary);
    border-radius: 50%;
    font-size: 0.7rem;
    font-weight: 700;
}
.course-soon {
    display: inline-block;
    align-self: flex-start;
    background: var(--light);
    color: var(--muted);
    padding: 10px 18px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Waitlist */
.waitlist-cta {
    background: var(--primary-tint);
    border-radius: var(--radius-xl);
    padding: 56px 40px;
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
}
.waitlist-cta h3 {
    font-size: 1.7rem;
    margin-bottom: 8px;
}
.waitlist-cta p {
    color: var(--muted);
    margin-bottom: 28px;
}
.waitlist-form {
    display: flex;
    gap: 10px;
    max-width: 480px;
    margin: 0 auto;
    flex-wrap: wrap;
}
.waitlist-form input {
    flex: 1;
    min-width: 220px;
    padding: 14px 22px;
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 1rem;
    font-family: inherit;
    background: var(--white);
    transition: border-color var(--transition);
}
.waitlist-form input:focus {
    outline: none;
    border-color: var(--primary);
}
.waitlist-note {
    margin-top: 16px;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.95rem;
    min-height: 1.5em;
}

/* ====== HOW IT WORKS ====== */
.how-it-works { background: var(--light); }
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.step {
    background: var(--white);
    padding: 32px 28px;
    border-radius: var(--radius-lg);
    text-align: center;
    border: 1px solid var(--border);
    transition: transform var(--transition);
}
.step:hover { transform: translateY(-4px); }
.step-num {
    width: 48px;
    height: 48px;
    margin: 0 auto 18px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 1.2rem;
    box-shadow: 0 8px 20px rgba(252, 76, 105, 0.3);
}
.step h3 { margin-bottom: 8px; font-size: 1.1rem; }
.step p {
    color: var(--muted);
    font-size: 0.92rem;
    margin: 0;
}

/* ====== ABOUT ====== */
.about { background: var(--white); }
.about-inner {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 80px;
    align-items: center;
}
.about-text p {
    color: var(--muted);
    margin-bottom: 16px;
    font-size: 1.02rem;
}
.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 32px;
    padding-top: 28px;
    border-top: 1px solid var(--border);
}
.stat strong {
    display: block;
    color: var(--primary);
    font-family: 'Poppins', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1;
}
.stat span {
    color: var(--muted);
    font-size: 0.88rem;
}
.about-visual {
    position: relative;
    min-height: 440px;
}
.quote-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 28px 28px;
    box-shadow: var(--shadow-md);
    position: relative;
    max-width: 360px;
}
.quote-card-2 {
    margin-top: 24px;
    margin-left: auto;
    background: var(--primary-tint);
    border-color: var(--primary-soft);
}
.quote-mark {
    position: absolute;
    top: -10px;
    left: 24px;
    width: 36px;
    height: 36px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    line-height: 1;
    padding-top: 6px;
}
.quote-card p {
    color: var(--text);
    font-style: italic;
    margin-bottom: 20px;
    margin-top: 12px;
}
.quote-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    flex-shrink: 0;
}
.avatar-2 { background: linear-gradient(135deg, #6c5ce7, #a29bfe); }
.quote-author strong {
    display: block;
    color: var(--dark);
    font-size: 0.95rem;
}
.quote-author span {
    color: var(--muted);
    font-size: 0.82rem;
}

/* ====== FAQ ====== */
.faq { background: var(--light); }
.faq-list {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.faq-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: border-color var(--transition), box-shadow var(--transition);
}
.faq-item[open] {
    border-color: var(--primary-soft);
    box-shadow: var(--shadow-sm);
}
.faq-item summary {
    list-style: none;
    padding: 22px 28px;
    font-weight: 600;
    color: var(--dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    font-size: 1.02rem;
    transition: color var(--transition);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '+';
    color: var(--primary);
    font-size: 1.6rem;
    font-weight: 400;
    transition: transform var(--transition);
    flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item summary:hover { color: var(--primary); }
.faq-item p {
    padding: 0 28px 24px;
    color: var(--muted);
    margin: 0;
    line-height: 1.7;
}

/* ====== FINAL CTA ====== */
.final-cta {
    background: var(--white);
    padding: 80px 0 120px;
}
.cta-card {
    background:
        radial-gradient(ellipse at top left, rgba(255, 255, 255, 0.15), transparent 50%),
        linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    border-radius: var(--radius-xl);
    padding: 80px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-card::before,
.cta-card::after {
    content: '♥';
    position: absolute;
    color: rgba(255, 255, 255, 0.12);
    font-size: 200px;
    line-height: 1;
}
.cta-card::before { top: -30px; left: -20px; }
.cta-card::after { bottom: -60px; right: -20px; font-size: 240px; }

.cta-card h2 {
    color: var(--white);
    font-size: clamp(1.8rem, 4vw, 2.4rem);
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}
.cta-card h2 .accent { color: var(--white); text-decoration: underline; text-decoration-thickness: 4px; text-underline-offset: 6px; }
.cta-card p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.1rem;
    margin-bottom: 32px;
    position: relative;
    z-index: 1;
}
.waitlist-form-cta {
    position: relative;
    z-index: 1;
    margin: 0 auto;
}
.waitlist-form-cta input { border-color: transparent; }

/* ====== FOOTER ====== */
.site-footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 64px 0 24px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}
.footer-logo {
    height: 36px;
    width: auto;
    margin-bottom: 18px;
}
.footer-brand p {
    color: rgba(255, 255, 255, 0.65);
    margin: 0;
    max-width: 280px;
}
.footer-col h4 {
    color: var(--white);
    margin-bottom: 18px;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.95rem;
}
.footer-col a:hover { color: var(--primary-light); }

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 0.88rem;
}
.footer-bottom p { margin: 0; color: rgba(255, 255, 255, 0.5); }
.legal-links {
    display: flex;
    gap: 24px;
}
.legal-links a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.88rem;
}
.legal-links a:hover { color: var(--white); }

/* ====== RESPONSIVE ====== */
@media (max-width: 980px) {
    section { padding: 72px 0; }

    .main-nav, .nav-cta { display: none; }
    .menu-toggle { display: flex; }

    .hero { padding: 60px 0 80px; }
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .hero-visual { min-height: 480px; }
    .phone-mockup { transform: rotate(0); }

    .problem-grid,
    .journey-grid,
    .course-grid,
    .steps-grid {
        grid-template-columns: 1fr;
    }
    .journey-card-wide { grid-column: span 1; }
    .journey-card-wide .journey-points,
    .journey-points {
        grid-template-columns: 1fr;
    }

    .course-card-featured { transform: scale(1); }
    .course-card-featured:hover { transform: translateY(-6px); }

    .about-inner {
        grid-template-columns: 1fr;
        gap: 56px;
    }
    .about-stats { grid-template-columns: repeat(3, 1fr); }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
    .footer-brand { grid-column: span 2; }

    .cta-card { padding: 56px 28px; }
    .waitlist-cta { padding: 40px 24px; }
}

@media (max-width: 560px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.6rem; }
    .hero .lead { font-size: 1.05rem; }
    .hero-cta { flex-direction: column; align-items: stretch; }
    .hero-cta .btn { width: 100%; }

    .phone-mockup { width: 260px; height: 520px; }
    .badge-1 { left: 0; top: 5%; }
    .badge-2 { right: 0; bottom: 8%; }

    .apps-list { gap: 28px; }
    .app-name { font-size: 1.1rem; }

    .about-stats { grid-template-columns: 1fr; gap: 16px; }
    .stat strong { font-size: 1.8rem; }

    .footer-grid {
        grid-template-columns: 1fr;
    }
    .footer-brand { grid-column: span 1; }
    .footer-bottom { flex-direction: column; text-align: center; }

    .waitlist-form { flex-direction: column; }
    .waitlist-form .btn { width: 100%; }
}

/* ============================================
   ARTICLE / KNOWLEDGE-BASE PAGES
   ============================================ */

.article-hero {
    background: linear-gradient(180deg, var(--primary-tint) 0%, var(--white) 100%);
    padding: 60px 0 40px;
    border-bottom: 1px solid var(--border);
}
.article-hero .container { max-width: 820px; }

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 0.88rem;
    margin-bottom: 24px;
    color: var(--muted);
}
.breadcrumb a {
    color: var(--muted);
    transition: color var(--transition);
}
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb .sep { color: var(--muted); opacity: 0.5; }
.breadcrumb .current { color: var(--dark); font-weight: 500; }

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
    margin-top: 18px;
    color: var(--muted);
    font-size: 0.9rem;
}
.article-meta .tag {
    background: var(--primary-soft);
    color: var(--primary);
    padding: 4px 12px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.article-meta .read-time::before { content: '· '; color: var(--muted); margin-right: 4px; }

.article-hero h1 {
    font-size: clamp(2rem, 4.4vw, 3rem);
    margin-bottom: 18px;
}
.article-lead {
    font-size: 1.18rem;
    line-height: 1.6;
    color: var(--text);
}

.article-layout {
    padding: 56px 0 80px;
    background: var(--white);
}
.article-layout .container {
    max-width: 820px;
}

.article-body {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--text);
}
.article-body h2 {
    font-size: 1.7rem;
    margin: 56px 0 18px;
    scroll-margin-top: 100px;
}
.article-body h2:first-child { margin-top: 0; }
.article-body h3 {
    font-size: 1.25rem;
    margin: 36px 0 12px;
    color: var(--dark);
}
.article-body p { margin: 0 0 18px; }
.article-body p:last-child { margin-bottom: 0; }
.article-body ul,
.article-body ol {
    padding-left: 1.4em;
    margin: 0 0 20px;
}
.article-body ul li,
.article-body ol li {
    margin-bottom: 8px;
    padding-left: 4px;
}
.article-body ul li::marker { color: var(--primary); }
.article-body ol li::marker { color: var(--primary); font-weight: 700; }
.article-body strong { color: var(--dark); }
.article-body a { font-weight: 500; }
.article-body a:hover { text-decoration: underline; }

.article-body blockquote {
    border-left: 4px solid var(--primary);
    background: var(--primary-tint);
    padding: 22px 28px;
    margin: 28px 0;
    border-radius: 0 var(--radius) var(--radius) 0;
    color: var(--dark);
    font-size: 1.05rem;
}
.article-body blockquote p { margin: 0; }
.article-body blockquote p + p { margin-top: 12px; }

.article-body .callout {
    background: var(--light);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px 28px;
    margin: 28px 0;
}
.article-body .callout-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
    font-size: 1.05rem;
}
.article-body .callout-title::before {
    content: '★';
    color: var(--primary);
    font-size: 1.2rem;
}
.article-body .callout p:last-child { margin-bottom: 0; }

.article-body .example-box {
    background: var(--primary-tint);
    border-radius: var(--radius);
    padding: 22px 26px;
    margin: 22px 0;
    border-left: 4px solid var(--primary);
}
.article-body .example-box .label {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 3px 10px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 10px;
}
.article-body .example-box em {
    font-style: normal;
    color: var(--dark);
    font-weight: 500;
}

.do-dont {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin: 28px 0;
}
.do-dont > div {
    border-radius: var(--radius);
    padding: 22px 24px;
    border: 1px solid var(--border);
}
.do-dont .do-box {
    background: #f1faf3;
    border-color: #c8e8d0;
}
.do-dont .dont-box {
    background: #fff5f5;
    border-color: #fbcfd0;
}
.do-dont h4 {
    margin: 0 0 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1rem;
}
.do-dont .do-box h4 { color: #1b7a3a; }
.do-dont .dont-box h4 { color: #b32a30; }
.do-dont ul {
    margin: 0;
    padding-left: 1.2em;
    font-size: 0.96rem;
}
.do-dont ul li { margin-bottom: 6px; }

.related-articles {
    background: var(--light);
    padding: 80px 0;
}
.related-articles .container { max-width: var(--max-width); }
.related-articles h2 {
    text-align: center;
    margin-bottom: 48px;
}
.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.related-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px 26px;
    display: flex;
    flex-direction: column;
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
    color: var(--text);
    text-decoration: none;
}
.related-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-soft);
    color: var(--text);
}
.related-card .tag {
    display: inline-block;
    background: var(--primary-soft);
    color: var(--primary);
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 0.74rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    align-self: flex-start;
    margin-bottom: 14px;
}
.related-card h3 {
    margin: 0 0 10px;
    font-size: 1.15rem;
    color: var(--dark);
}
.related-card p {
    color: var(--muted);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.55;
}
.related-card .read-more {
    margin-top: 16px;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.92rem;
}

.article-cta {
    background:
        radial-gradient(ellipse at top left, rgba(255, 255, 255, 0.15), transparent 50%),
        linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    border-radius: var(--radius-xl);
    padding: 48px 40px;
    text-align: center;
    margin: 56px 0 0;
    position: relative;
    overflow: hidden;
}
.article-cta h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 10px;
}
.article-cta p {
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 24px;
}

/* Kennisbank index */
.kennisbank-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}
.phase-block {
    margin-bottom: 64px;
}
.phase-block:last-child { margin-bottom: 0; }
.phase-block-header {
    margin-bottom: 28px;
    padding-bottom: 18px;
    border-bottom: 2px solid var(--primary-soft);
}
.phase-block-header .phase-num {
    color: var(--primary);
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    letter-spacing: 0.1em;
    font-size: 0.88rem;
    text-transform: uppercase;
    margin-bottom: 8px;
}
.phase-block-header h2 {
    font-size: 1.7rem;
    margin: 0 0 10px;
}
.phase-block-header p {
    color: var(--muted);
    margin: 0;
    max-width: 640px;
}
.phase-block-header .pillar-link {
    display: inline-block;
    margin-top: 14px;
    color: var(--primary);
    font-weight: 600;
    font-size: 0.95rem;
}
.phase-block-header .pillar-link::after { content: ' →'; }

@media (max-width: 980px) {
    .related-grid,
    .kennisbank-grid { grid-template-columns: repeat(2, 1fr); }
    .do-dont { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
    .related-grid,
    .kennisbank-grid { grid-template-columns: 1fr; }
    .article-hero { padding: 40px 0 30px; }
    .article-body h2 { font-size: 1.4rem; margin-top: 40px; }
    .article-body { font-size: 1rem; }
    .article-cta { padding: 36px 24px; }
}

/* ============================================
   COURSE SALES PAGES
   ============================================ */

.course-hero {
    background:
        radial-gradient(ellipse at top right, rgba(252, 76, 105, 0.10), transparent 60%),
        var(--primary-tint);
    padding: 80px 0 60px;
    position: relative;
}
.course-hero-inner {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
}
.course-hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    margin: 18px 0 20px;
}
.course-hero .pain-quote {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 22px 26px;
    border-left: 4px solid var(--primary);
    box-shadow: var(--shadow-sm);
    font-style: italic;
    color: var(--dark);
    margin: 24px 0;
    font-size: 1.05rem;
}
.course-hero .pain-quote::before {
    content: '"';
    display: inline-block;
    color: var(--primary);
    font-size: 2.2rem;
    line-height: 0;
    vertical-align: -0.3em;
    margin-right: 4px;
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
}
.course-tag {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
.course-meta-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 24px 0 32px;
}
.course-meta-list span {
    background: var(--white);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 0.88rem;
    color: var(--dark);
    border: 1px solid var(--border);
}
.course-meta-list span::before {
    content: '✓ ';
    color: var(--primary);
    font-weight: 700;
}

.course-price-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 32px 30px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    position: relative;
}
.course-price-card .price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 6px;
}
.course-price-card .price strong {
    color: var(--primary);
    font-family: 'Poppins', sans-serif;
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1;
}
.course-price-card .price-suffix {
    color: var(--muted);
    font-size: 0.95rem;
}
.course-price-card .price-note {
    color: var(--muted);
    font-size: 0.9rem;
    margin-bottom: 24px;
}
.course-price-card .buy-btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 18px 24px;
    background: var(--primary);
    color: var(--white);
    border-radius: 100px;
    font-weight: 700;
    font-size: 1.05rem;
    box-shadow: 0 10px 24px rgba(252, 76, 105, 0.3);
    transition: transform var(--transition), background var(--transition);
    margin-bottom: 12px;
}
.course-price-card .buy-btn:hover {
    background: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
}
.course-price-card .preview-link {
    display: block;
    text-align: center;
    color: var(--muted);
    font-size: 0.92rem;
    margin: 8px 0 22px;
}
.course-price-card .preview-link:hover { color: var(--primary); }
.course-price-card .includes {
    border-top: 1px solid var(--border);
    padding-top: 18px;
    font-size: 0.92rem;
}
.course-price-card .includes h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--muted);
    margin-bottom: 14px;
}
.course-price-card .includes ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.course-price-card .includes li {
    position: relative;
    padding-left: 22px;
}
.course-price-card .includes li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
}

.section-deep {
    padding: 80px 0;
    background: var(--white);
}
.section-deep.alt {
    background: var(--light);
}
.section-deep .container {
    max-width: 920px;
}

.pain-section h2 {
    margin-bottom: 16px;
}
.pain-section .lead {
    font-size: 1.1rem;
    color: var(--muted);
    max-width: 700px;
    margin-bottom: 32px;
}
.pain-section .pain-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 24px;
}
.pain-section .pain-item {
    background: var(--white);
    padding: 22px 24px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    border-left: 4px solid var(--primary);
}
.pain-section .pain-item h4 {
    margin: 0 0 8px;
    color: var(--dark);
    font-size: 1.05rem;
}
.pain-section .pain-item p {
    margin: 0;
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.55;
}

.modules-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 30px;
}
.module-item {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px 28px;
    display: flex;
    gap: 22px;
    align-items: flex-start;
    transition: border-color var(--transition), box-shadow var(--transition);
}
.module-item:hover {
    border-color: var(--primary-soft);
    box-shadow: var(--shadow-sm);
}
.module-num {
    background: var(--primary-soft);
    color: var(--primary);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    flex-shrink: 0;
}
.module-item .module-content h3 {
    margin: 0 0 6px;
    font-size: 1.15rem;
}
.module-item .module-content p {
    margin: 0;
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.6;
}
.module-item .module-content .module-lessons {
    margin-top: 10px;
    font-size: 0.85rem;
    color: var(--muted);
    font-weight: 500;
}
.module-item .module-content .module-lessons::before { content: '· '; }

.guarantee {
    background: var(--light);
    border-radius: var(--radius-lg);
    padding: 32px 36px;
    display: flex;
    gap: 24px;
    align-items: center;
    margin-top: 40px;
}
.guarantee-icon {
    background: var(--primary-soft);
    color: var(--primary);
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    flex-shrink: 0;
}
.guarantee h3 {
    margin: 0 0 6px;
    font-size: 1.15rem;
}
.guarantee p {
    margin: 0;
    color: var(--muted);
    font-size: 0.95rem;
}

.bundle-card {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    border-radius: var(--radius-xl);
    padding: 48px 44px;
    text-align: center;
    margin-top: 40px;
    position: relative;
    overflow: hidden;
}
.bundle-card::before {
    content: '★';
    position: absolute;
    top: -30px; right: -10px;
    font-size: 160px;
    color: rgba(255, 255, 255, 0.10);
    line-height: 1;
}
.bundle-card h2 {
    color: var(--white);
    margin-bottom: 12px;
}
.bundle-card > p {
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 24px;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
}
.bundle-card .price {
    display: inline-flex;
    align-items: baseline;
    gap: 14px;
    margin: 16px 0 24px;
}
.bundle-card .price strong {
    font-family: 'Poppins', sans-serif;
    font-size: 3.4rem;
    font-weight: 800;
    line-height: 1;
}
.bundle-card .price .old {
    text-decoration: line-through;
    opacity: 0.65;
    font-size: 1.2rem;
}
.bundle-card .price .save {
    background: rgba(255, 255, 255, 0.22);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 700;
    align-self: center;
}

/* ============================================
   LEREN: COURSE CONTENT PAGES
   ============================================ */

.course-content-hero {
    background: var(--dark);
    color: var(--white);
    padding: 50px 0 40px;
}
.course-content-hero .breadcrumb a { color: rgba(255, 255, 255, 0.6); }
.course-content-hero .breadcrumb a:hover { color: var(--primary-light); }
.course-content-hero .breadcrumb .current { color: var(--white); }
.course-content-hero .breadcrumb .sep { color: rgba(255, 255, 255, 0.4); }
.course-content-hero h1 {
    color: var(--white);
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    margin: 12px 0 16px;
}
.course-content-hero p {
    color: rgba(255, 255, 255, 0.85);
    max-width: 720px;
    margin: 0;
}
.course-content-hero .course-stats {
    display: flex;
    gap: 24px;
    margin-top: 20px;
    flex-wrap: wrap;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.92rem;
}
.course-content-hero .course-stats span::before {
    content: '· ';
    color: var(--primary-light);
    font-weight: 700;
}
.course-content-hero .course-stats span:first-child::before { content: ''; }

.progress-bar {
    background: rgba(255, 255, 255, 0.12);
    border-radius: 100px;
    height: 8px;
    margin-top: 28px;
    overflow: hidden;
}
.progress-bar .fill {
    height: 100%;
    background: var(--primary);
    border-radius: 100px;
    width: 0%;
    transition: width 0.5s ease;
}
.progress-label {
    margin-top: 10px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

.course-toc {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    padding: 16px 0;
    position: sticky;
    top: 80px;
    z-index: 50;
}
.course-toc-list {
    display: flex;
    gap: 6px;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: thin;
}
.course-toc-list a {
    padding: 8px 16px;
    border-radius: 100px;
    background: var(--light);
    color: var(--text);
    font-size: 0.85rem;
    white-space: nowrap;
    border: 1px solid transparent;
    font-weight: 500;
    transition: all var(--transition);
}
.course-toc-list a:hover {
    border-color: var(--primary-soft);
    color: var(--primary);
}
.course-toc-list a.active {
    background: var(--primary);
    color: var(--white);
}
.course-toc-list a.completed::before {
    content: '✓ ';
    opacity: 0.9;
}

.module-section {
    padding: 70px 0;
    border-bottom: 1px solid var(--border);
    scroll-margin-top: 150px;
}
.module-section:last-child { border-bottom: none; }
.module-section .container { max-width: 820px; }
.module-section .module-label {
    display: inline-block;
    background: var(--primary-soft);
    color: var(--primary);
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 14px;
}
.module-section h2 {
    margin-bottom: 12px;
}
.module-section .module-lead {
    color: var(--muted);
    font-size: 1.08rem;
    margin-bottom: 36px;
}
.lesson {
    margin-bottom: 36px;
}
.lesson:last-child { margin-bottom: 0; }
.lesson h3 {
    color: var(--dark);
    margin: 0 0 14px;
    font-size: 1.3rem;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--primary-soft);
}
.lesson .lesson-body {
    font-size: 1.04rem;
    line-height: 1.75;
    color: var(--text);
}
.lesson .lesson-body p { margin: 0 0 14px; }
.lesson .lesson-body ul, .lesson .lesson-body ol {
    padding-left: 1.4em;
    margin: 0 0 14px;
}
.lesson .lesson-body li { margin-bottom: 6px; }
.lesson .lesson-body ul li::marker,
.lesson .lesson-body ol li::marker { color: var(--primary); }
.lesson .lesson-body strong { color: var(--dark); }
.lesson .script {
    background: var(--primary-tint);
    border-radius: var(--radius);
    padding: 18px 22px;
    margin: 16px 0;
    border-left: 4px solid var(--primary);
    font-style: italic;
    color: var(--dark);
}
.lesson .script::before {
    content: 'Script';
    display: block;
    font-style: normal;
    font-weight: 700;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--primary);
    margin-bottom: 6px;
}
.lesson .action-step {
    background: var(--light);
    border-radius: var(--radius);
    padding: 18px 22px;
    margin: 18px 0;
    border: 1px solid var(--border);
}
.lesson .action-step::before {
    content: '→ Doe dit';
    display: block;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 6px;
    font-size: 0.92rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* Quizzes */
.quiz-block {
    background: var(--light);
    border-radius: var(--radius-lg);
    padding: 32px 30px;
    margin-top: 40px;
    border: 1px solid var(--border);
}
.quiz-block h3 {
    margin: 0 0 6px;
    font-size: 1.25rem;
    color: var(--dark);
}
.quiz-block .quiz-intro {
    color: var(--muted);
    margin-bottom: 22px;
    font-size: 0.96rem;
}
.quiz-question {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 22px 24px;
    margin-bottom: 14px;
    transition: border-color var(--transition);
}
.quiz-question .q-text {
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 16px;
}
.quiz-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.quiz-option {
    background: var(--light);
    border: 2px solid transparent;
    border-radius: var(--radius);
    padding: 14px 18px;
    cursor: pointer;
    transition: all var(--transition);
    font-size: 0.96rem;
    color: var(--text);
    text-align: left;
    line-height: 1.45;
}
.quiz-option:hover {
    border-color: var(--primary-soft);
    background: var(--primary-tint);
}
.quiz-option.selected {
    border-color: var(--primary);
    background: var(--primary-tint);
}
.quiz-option.correct {
    border-color: #57b66d;
    background: #ecf9ee;
    color: #1b7a3a;
    cursor: default;
}
.quiz-option.incorrect {
    border-color: #e57072;
    background: #fdecec;
    color: #b32a30;
    cursor: default;
}
.quiz-question.answered .quiz-option { cursor: default; pointer-events: none; }
.quiz-explain {
    margin-top: 14px;
    padding: 12px 16px;
    border-radius: var(--radius);
    font-size: 0.92rem;
    line-height: 1.55;
    background: var(--white);
    border-left: 3px solid var(--primary);
    display: none;
}
.quiz-question.answered .quiz-explain { display: block; }

.quiz-submit {
    margin-top: 16px;
    text-align: right;
}

.quiz-result {
    display: none;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px;
    margin-top: 20px;
    text-align: center;
    border: 2px solid var(--primary-soft);
}
.quiz-result.show { display: block; }
.quiz-result .score-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--primary-tint);
    border: 6px solid var(--primary);
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 2rem;
    color: var(--primary);
}
.quiz-result h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
}
.quiz-result p {
    color: var(--muted);
    margin: 0 0 16px;
}

/* Certificate (final) */
.certificate {
    background:
        radial-gradient(ellipse at top right, rgba(252, 76, 105, 0.10), transparent 50%),
        linear-gradient(135deg, var(--primary-tint), var(--white));
    border-radius: var(--radius-xl);
    padding: 56px 44px;
    text-align: center;
    border: 2px solid var(--primary);
    margin: 24px auto;
    max-width: 720px;
}
.certificate .seal {
    font-size: 64px;
    line-height: 1;
    margin-bottom: 12px;
}
.certificate h2 {
    color: var(--primary);
    font-size: 2rem;
    margin-bottom: 8px;
}
.certificate p.cert-sub {
    color: var(--muted);
    margin-bottom: 20px;
}
.certificate .cert-score {
    font-family: 'Poppins', sans-serif;
    font-size: 4rem;
    font-weight: 800;
    color: var(--dark);
    margin: 14px 0;
    line-height: 1;
}
.certificate .cert-message {
    font-size: 1.05rem;
    color: var(--text);
    max-width: 480px;
    margin: 0 auto 24px;
}

@media (max-width: 980px) {
    .course-hero-inner { grid-template-columns: 1fr; gap: 40px; }
    .pain-section .pain-grid { grid-template-columns: 1fr; }
    .course-toc { top: 76px; }
}
@media (max-width: 560px) {
    .module-item { flex-direction: column; gap: 12px; }
    .bundle-card { padding: 36px 24px; }
    .guarantee { flex-direction: column; text-align: center; }
    .quiz-block { padding: 24px 20px; }
    .certificate { padding: 40px 24px; }
    .certificate .cert-score { font-size: 3rem; }
}


