﻿:root {
    --blue: #2E86C1;
    --blue-dark: #1a5f8f;
    --blue-mid: #3a9ad9;
    --blue-light: #e8f4fd;
    --blue-soft: #d0eaf8;
    --gold: #F4B400;
    --gold-dark: #d49a00;
    --gold-light: #fff9e0;
    --green: #4CAF50;
    --red: #E53935;
    --purple: #7E57C2;
    --teal: #00897B;
    --orange: #F57C00;
    --orange-light: #fff3e0;
    --text: #344054;
    --text-soft: #667085;
    --heading: #0d2137;
    --bg-soft: #f5faff;
    --bg-warm: #fdfaf3;
    --border: rgba(46,134,193,0.14);
    --shadow-sm: 0 2px 12px rgba(46,134,193,0.10);
    --shadow-md: 0 8px 32px rgba(46,134,193,0.13);
    --shadow-lg: 0 20px 60px rgba(13,33,55,0.12);
    --shadow-xl: 0 32px 80px rgba(13,33,55,0.16);
    --radius-xs: 10px;
    --radius-sm: 16px;
    --radius-md: 22px;
    --radius-lg: 30px;
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Nunito', sans-serif;
    color: var(--text);
    background: #fff;
    line-height: 1.75;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

/* ── TOPBAR ── */
.topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 10px 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255,255,255,0.88);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(46,134,193,0.10);
    box-shadow: 0 2px 20px rgba(13,33,55,0.06);
    transition: all .3s ease;
}

    .topbar.scrolled {
        padding: 8px 16px;
        background: rgba(255,255,255,0.96);
    }

.topbar-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Sora', sans-serif;
    font-weight: 800;
    font-size: 18px;
    color: var(--blue);
}

    .topbar-logo .logo-icon {
        width: 36px;
        height: 36px;
        background: var(--blue);
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        font-size: 16px;
        flex-shrink: 0;
    }

.topbar-back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--blue-light);
    color: var(--blue);
    padding: 8px 14px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 13px;
    transition: all .22s ease;
    white-space: nowrap;
}

    .topbar-back:hover {
        background: var(--blue);
        color: #fff;
        transform: translateX(-2px);
    }

/* ── HERO ── */
.hero {
    position: relative;
    min-height: auto;
    display: flex;
    align-items: center;
    padding: 80px 0 40px;
    overflow: hidden;
    background: linear-gradient(145deg, #0d2137 0%, #1a4d7a 50%, #2E86C1 100%);
}

.hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
    align-items: center;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(244,180,0,0.18);
    border: 1px solid rgba(244,180,0,0.35);
    color: var(--gold);
    padding: 7px 14px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.hero-title {
    font-family: 'Sora', sans-serif;
    color: #fff;
    font-size: clamp(22px, 4vw, 42px);
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 10px;
}

    .hero-title em {
        font-style: normal;
        color: var(--gold);
    }

.hero-desc {
    color: rgba(255,255,255,0.82);
    font-size: 15px;
    max-width: 520px;
    line-height: 1.7;
}

.hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gold);
    color: #0d2137;
    padding: 11px 20px;
    border-radius: 999px;
    font-weight: 800;
    font-size: 14px;
    transition: all .25s ease;
    box-shadow: 0 6px 20px rgba(244,180,0,0.35);
}

    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 28px rgba(244,180,0,0.45);
    }

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 2px solid rgba(255,255,255,0.4);
    color: #fff;
    padding: 10px 18px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 14px;
    transition: all .25s ease;
}

    .btn-outline:hover {
        background: rgba(255,255,255,0.12);
        border-color: rgba(255,255,255,0.7);
        transform: translateY(-2px);
    }

.hero-quote-card {
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.20);
    border-left: 4px solid var(--gold);
    border-radius: var(--radius-md);
    padding: 26px 24px 22px;
    position: relative;
}

.hero-quote-icon {
    color: var(--gold);
    font-size: 22px;
    margin-bottom: 12px;
    display: block;
    opacity: 0.8;
}

.hero-quote-card p {
    color: rgba(255,255,255,0.92);
    font-size: 15px;
    font-style: italic;
    line-height: 1.75;
    margin-bottom: 16px;
}

.hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 430px;
    gap: 32px;
    align-items: center;
}

.hero-content {
    max-width: 760px;
}

.hero-side {
    display: grid;
    grid-template-columns: 170px 1fr;
    gap: 16px;
    align-items: center;
    justify-content: end;
}

.hero-book-card {
    background: rgba(255,255,255,0.14);
    border: 1px solid rgba(255,255,255,0.20);
    border-radius: 20px;
    padding: 12px;
    box-shadow: 0 14px 34px rgba(0,0,0,0.18);
    backdrop-filter: blur(10px);
}

.hero-book-cover {
    display: block;
    width: 100%;
    aspect-ratio: 3 / 4.2;
    border-radius: 14px;
    overflow: hidden;
    background: rgba(255,255,255,0.16);
    border: 1px solid rgba(255,255,255,0.18);
    margin-bottom: 12px;
}

    .hero-book-cover img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.hero-book-cover-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    color: rgba(255,255,255,0.88);
    font-weight: 700;
    font-size: 13px;
    line-height: 1.5;
    padding: 12px;
}

.hero-book-actions {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.hero-book-action {
    width: 100%;
    height: 46px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #fff;
    transition: all .22s ease;
    border: 1px solid rgba(255,255,255,0.18);
}

    .hero-book-action:hover {
        transform: translateY(-2px);
    }

    .hero-book-action.video {
        background: linear-gradient(145deg, #7c4dff, #5e35b1);
    }

    .hero-book-action.pdf {
        background: linear-gradient(145deg, #ef5350, #c62828);
    }

    .hero-book-action.audio {
        background: linear-gradient(145deg, #26a69a, #00796b);
    }

.hero-quote-card {
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.20);
    border-left: 4px solid var(--gold);
    border-radius: var(--radius-md);
    padding: 22px 20px 18px;
    position: relative;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

    .hero-quote-card p {
        color: rgba(255,255,255,0.92);
        font-size: 14px;
        font-style: italic;
        line-height: 1.7;
        margin-bottom: 14px;
    }

.hero-quote-author {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    align-self: flex-start;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(229, 57, 53, 0.20);
    border: 1px solid rgba(229, 57, 53, 0.35);
    color: rgba(255,255,255,0.92);
    font-size: 11px;
    font-weight: 700;
    line-height: 1.4;
}

.hero-book-note {
    margin-top: 12px;
    color: rgba(255,255,255,0.78);
    font-size: 12px;
    line-height: 1.5;
}

.quote-char {
    position: absolute;
    bottom: -18px;
    object-fit: contain;
    pointer-events: none;
    filter: drop-shadow(0 4px 14px rgba(0,0,0,0.40));
    z-index: 10;
}

.quote-char-left {
    left: -14px;
    width: 78px;
    height: 75px;
}

.quote-char-right {
    right: -30px;
    width: 95px;
    height: 71px;
    transform: scaleX(-1);
}

.hero-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
}



    .hero-particles span:nth-child(1) {
        width: 60px;
        height: 60px;
        top: 20%;
        left: 8%;
        animation-delay: 0s;
    }

    .hero-particles span:nth-child(2) {
        width: 35px;
        height: 35px;
        top: 65%;
        left: 3%;
        animation-delay: 2s;
    }

    .hero-particles span:nth-child(3) {
        width: 90px;
        height: 90px;
        top: 10%;
        right: 6%;
        animation-delay: 1s;
    }

    .hero-particles span:nth-child(4) {
        width: 28px;
        height: 28px;
        top: 70%;
        right: 15%;
        animation-delay: 3s;
    }

    .hero-particles span:nth-child(5) {
        width: 50px;
        height: 50px;
        top: 45%;
        left: 45%;
        animation-delay: 1.5s;
    }

@@keyframes float {
    0%, 100% {
        transform: translateY(0) scale(1);
        opacity: 0.5;
    }

    50% {
        transform: translateY(-16px) scale(1.04);
        opacity: 0.9;
    }
}

/* ── STICKY NAV ── */
.sticky-nav {
    position: sticky;
    top: 60px;
    z-index: 800;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(16px);
    border-bottom: 2px solid var(--blue-light);
    box-shadow: 0 4px 20px rgba(46,134,193,0.08);
}

.sticky-nav-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    overflow-x: auto;
    padding: 0 20px;
    scrollbar-width: none;
}

    .sticky-nav-inner::-webkit-scrollbar {
        display: none;
    }

.nav-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 18px;
    color: var(--text-soft);
    font-weight: 800;
    font-size: 16px;
    white-space: nowrap;
    border-bottom: 3px solid transparent;
    transition: all .22s ease;
    flex-shrink: 0;
}

@@media (max-width: 768px) {
    .nav-link {
        padding: 12px 10px;
        font-size: 13px;
        gap: 6px;
    }

        .nav-link .nav-icon {
            width: 28px;
            height: 28px;
            font-size: 12px;
        }
}

.nav-link:hover, .nav-link.active {
    color: var(--nl-color);
    border-bottom-color: var(--nl-color);
}

.nav-link .nav-icon {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    background: var(--nl-bg);
    color: var(--nl-color);
    transition: all .22s ease;
    flex-shrink: 0;
}

.nav-link:hover .nav-icon, .nav-link.active .nav-icon {
    background: var(--nl-color);
    color: #fff;
}

.nav-link[data-section="giris"] {
    --nl-color: var(--blue);
    --nl-bg: var(--blue-light);
}

.nav-link[data-section="erken-teshis"] {
    --nl-color: #4A90E2;
    --nl-bg: #e8f2fd;
}

.nav-link[data-section="isitme-cihazi"] {
    --nl-color: #E94E77;
    --nl-bg: #fdedf1;
}

.nav-link[data-section="biyonik-kulak"] {
    --nl-color: #d4890a;
    --nl-bg: #fff4e0;
}

.nav-link[data-section="evde-egitim"] {
    --nl-color: #7E57C2;
    --nl-bg: #f0ebfb;
}

.nav-link[data-section="raporlar"] {
    --nl-color: #3d9940;
    --nl-bg: #edf7ed;
}

.nav-link[data-section="dokuman-alani"] {
    --nl-color: var(--teal);
    --nl-bg: #e0f4f1;
}

/* Hide nav text on very small screens, show only icons */
.nav-link-text {
    display: inline;
    font-size: 16px;
    font-weight: 800;
}

/* ── SECTION HEADS ── */
.section-head {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 40px;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 999px;
    background: var(--blue-light);
    color: var(--blue);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .07em;
    margin-bottom: 14px;
}

.section-title {
    font-family: 'Sora', sans-serif;
    font-size: clamp(22px, 3.5vw, 38px);
    font-weight: 800;
    color: var(--heading);
    line-height: 1.2;
    margin-bottom: 12px;
}

.section-desc {
    font-size: 15px;
    color: var(--text-soft);
    line-height: 1.8;
}

/* ── CARDS SECTION ── */
.cards-section {
    padding: 56px 0 52px;
    background: #e8f1fb;
}

.six-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.eyvah-card {
    border-radius: 22px;
    padding: 26px 22px 20px;
    cursor: pointer;
    transition: transform .32s ease, box-shadow .32s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 260px;
    background: var(--card-grad);
    box-shadow: 0 10px 36px var(--card-shadow);
    text-decoration: none;
}

    .eyvah-card::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 2px;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.65), transparent);
        z-index: 1;
    }

    .eyvah-card > * {
        position: relative;
        z-index: 2;
    }

    .eyvah-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 24px 56px var(--card-shadow-hover);
    }

.card-blue {
    --card-grad: linear-gradient(145deg,#1255a0,#2E86C1,#52aadf);
    --card-shadow: rgba(18,85,160,.40);
    --card-shadow-hover: rgba(18,85,160,.58);
}

.card-gold {
    --card-grad: linear-gradient(145deg,#b36b00,#E68900,#F5A623);
    --card-shadow: rgba(179,107,0,.40);
    --card-shadow-hover: rgba(179,107,0,.58);
}

.card-red {
    --card-grad: linear-gradient(145deg,#8B0036,#C2185B,#E94E77);
    --card-shadow: rgba(139,0,54,.40);
    --card-shadow-hover: rgba(139,0,54,.58);
}

.card-green {
    --card-grad: linear-gradient(145deg,#1a5c1e,#2e7d32,#4CAF50);
    --card-shadow: rgba(26,92,30,.40);
    --card-shadow-hover: rgba(26,92,30,.58);
}

.card-purple {
    --card-grad: linear-gradient(145deg,#3a1a82,#5E35B1,#7E57C2);
    --card-shadow: rgba(58,26,130,.40);
    --card-shadow-hover: rgba(58,26,130,.58);
}

.card-teal {
    --card-grad: linear-gradient(145deg,#004d42,#00796B,#00897B);
    --card-shadow: rgba(0,77,66,.40);
    --card-shadow-hover: rgba(0,77,66,.58);
}

.eyvah-card .card-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

.eyvah-card .card-icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: rgba(255,255,255,0.22);
    border: 1.5px solid rgba(255,255,255,0.50);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

    .eyvah-card .card-icon-wrap svg {
        filter: drop-shadow(0 1px 5px rgba(0,0,0,0.18));
        width: 30px;
        height: 30px;
    }

.eyvah-card .card-num-title {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.eyvah-card .card-num {
    font-size: 10px;
    font-weight: 800;
    color: rgba(255,255,255,0.75);
    letter-spacing: .10em;
    text-transform: uppercase;
}

.eyvah-card h4 {
    font-family: 'Sora', sans-serif;
    font-size: 17px;
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    text-shadow: 0 1px 8px rgba(0,0,0,0.20);
}

.eyvah-card .card-list {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

    .eyvah-card .card-list li {
        font-size: 13px;
        color: rgba(255,255,255,0.95);
        line-height: 1.45;
        padding-left: 16px;
        position: relative;
        font-weight: 600;
    }

        .eyvah-card .card-list li::before {
            content: "•";
            position: absolute;
            left: 0;
            top: 0;
            color: rgba(255,255,255,0.80);
            font-size: 15px;
            line-height: 1.4;
        }

.eyvah-card .card-footer {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-top: 8px;
    border-top: 1px solid rgba(255,255,255,0.22);
    margin-top: auto;
}

.eyvah-card .card-arrow-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.22);
    border: 1.5px solid rgba(255,255,255,0.50);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    transition: all .22s ease;
}

.eyvah-card:hover .card-arrow-btn {
    background: rgba(255,255,255,0.40);
    transform: translateX(4px);
}

/* ── STATS STRIP ── */
.stats-strip {
    background: linear-gradient(135deg, #0d2137, #1a4d7a);
    padding: 40px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
}

.stat-item {
    text-align: center;
    padding: 16px 12px;
    border-right: 1px solid rgba(255,255,255,0.08);
}

    .stat-item:last-child {
        border-right: none;
    }

.stat-num {
    font-family: 'Sora', sans-serif;
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 800;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 6px;
}

.stat-label {
    font-size: 12px;
    color: rgba(255,255,255,0.7);
    font-weight: 600;
}

/* ── STORY SECTIONS ── */
.story-section {
    padding: 64px 0;
    scroll-margin-top: 122px;
}

    .story-section.bg-soft {
        background: var(--bg-soft);
    }

    .story-section.bg-white {
        background: #fff;
    }

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

    .story-grid.reverse {
        direction: rtl;
    }

        .story-grid.reverse > * {
            direction: ltr;
        }

.story-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .07em;
    margin-bottom: 18px;
}

.badge-topic-blue {
    background: var(--blue-light);
    color: var(--blue);
}

.badge-topic-red {
    background: #fdedf1;
    color: #E94E77;
}

.badge-topic-gold {
    background: var(--gold-light);
    color: var(--gold-dark);
}

.badge-topic-green {
    background: #edf7ed;
    color: #3d9940;
}

.badge-topic-purple {
    background: #f0ebfb;
    color: var(--purple);
}

.badge-topic-teal {
    background: #e0f4f1;
    color: var(--teal);
}

.story-title {
    font-family: 'Sora', sans-serif;
    font-size: clamp(20px, 2.8vw, 32px);
    font-weight: 800;
    color: var(--heading);
    line-height: 1.2;
    margin-bottom: 18px;
}

.story-body {
    font-size: 15px;
    line-height: 1.85;
    color: var(--text);
    margin-bottom: 14px;
}

.callout-box {
    background: var(--orange-light);
    border: 1.5px solid #ffe0b2;
    border-left: 4px solid var(--orange);
    border-radius: var(--radius-sm);
    padding: 16px 18px;
    margin-top: 18px;
    font-size: 14px;
    font-weight: 700;
    color: #7a3f00;
    line-height: 1.65;
}

    .callout-box .cb-icon {
        font-size: 20px;
        margin-bottom: 8px;
        display: block;
    }

.placeholder-visual {
    border-radius: var(--radius-lg);
    min-height: 380px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 28px;
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
}

    .placeholder-visual.blue-grad {
        background: linear-gradient(145deg, #1a4d7a, var(--blue));
    }

    .placeholder-visual.gold-grad {
        background: linear-gradient(145deg, #9a6e00, var(--gold));
    }

    .placeholder-visual.red-grad {
        background: linear-gradient(145deg, #c2185b, #E94E77);
    }

    .placeholder-visual.green-grad {
        background: linear-gradient(145deg, #2e7d32, var(--green));
    }

    .placeholder-visual.purple-grad {
        background: linear-gradient(145deg, #4527a0, var(--purple));
    }

    .placeholder-visual.teal-grad {
        background: linear-gradient(145deg, #00574b, #00897B);
    }

    .placeholder-visual::before {
        content: "";
        position: absolute;
        top: -80px;
        right: -80px;
        width: 280px;
        height: 280px;
        border-radius: 50%;
        background: rgba(255,255,255,0.12);
    }

    .placeholder-visual::after {
        content: "";
        position: absolute;
        bottom: -60px;
        left: -60px;
        width: 200px;
        height: 200px;
        border-radius: 50%;
        background: rgba(255,255,255,0.07);
    }

    .placeholder-visual .pv-upload-zone {
        position: relative;
        z-index: 2;
        text-align: center;
        padding: 32px 24px;
        background: rgba(255,255,255,0.14);
        border: 2px dashed rgba(255,255,255,0.5);
        border-radius: var(--radius-md);
        color: #fff;
        width: 100%;
    }

        .placeholder-visual .pv-upload-zone .pv-icon {
            font-size: 44px;
            margin-bottom: 14px;
            opacity: 0.9;
        }

        .placeholder-visual .pv-upload-zone h4 {
            font-family: 'Sora', sans-serif;
            font-size: 17px;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .placeholder-visual .pv-upload-zone p {
            font-size: 13px;
            opacity: 0.75;
        }

/* ── SLIDES BLOCK ── */
.slides-block {
    margin-top: 48px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.slides-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    color: #fff;
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 13px;
    flex-wrap: wrap;
    gap: 8px;
}

.slides-header-left {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

    .slides-header-left i {
        font-size: 14px;
        opacity: 0.85;
    }

.slides-count {
    font-size: 11px;
    font-weight: 600;
    opacity: 0.75;
}

.slides-nav-btns {
    display: flex;
    gap: 6px;
}

.slides-nav-btn {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff;
    font-size: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s;
}

    .slides-nav-btn:hover {
        background: rgba(255,255,255,0.4);
    }

.slides-viewport {
    padding: 20px;
    min-height: 200px;
    border-top: 1px solid rgba(255,255,255,0.12);
}

.slides-track {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 4px;
}

    .slides-track::-webkit-scrollbar {
        display: none;
    }

.slide-card {
    flex: 0 0 calc(25% - 11px);
    min-width: 190px;
    background: rgba(255,255,255,0.22);
    border: 1px solid rgba(255,255,255,0.30);
    border-radius: var(--radius-sm);
    padding: 18px 16px;
    scroll-snap-align: start;
    transition: background .2s, transform .2s;
    cursor: default;
}

    .slide-card:hover {
        background: rgba(255,255,255,0.36);
        transform: translateY(-3px);
    }

.slide-card-num {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(255,255,255,0.30);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    font-family: 'Sora', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.slide-card h5 {
    font-family: 'Sora', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
    line-height: 1.3;
}

.slide-card p {
    font-size: 11.5px;
    color: rgba(255,255,255,0.85);
    line-height: 1.6;
}

.slide-card-img {
    margin-top: 12px;
    border-radius: 8px;
    height: 60px;
    background: rgba(255,255,255,0.14);
    border: 1.5px dashed rgba(255,255,255,0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: rgba(255,255,255,0.65);
    font-weight: 600;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: background .2s, border-color .2s;
}

    .slide-card-img:hover {
        background: rgba(255,255,255,0.24);
        border-color: rgba(255,255,255,0.6);
    }

    .slide-card-img img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 6px;
    }

    .slide-card-img .img-overlay {
        position: absolute;
        inset: 0;
        background: rgba(0,0,0,0.38);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: opacity .2s;
        border-radius: 6px;
    }

    .slide-card-img:hover .img-overlay {
        opacity: 1;
    }

    .slide-card-img .img-overlay i {
        color: #fff;
        font-size: 20px;
    }

    .slide-card-img .ph-lbl {
        display: flex;
        align-items: center;
        gap: 5px;
    }

/* ── SLIDES COLOR THEMES ── */
.slides-block.sb-blue .slides-header {
    background: #2176ae;
}

.slides-block.sb-blue .slides-viewport {
    background: linear-gradient(180deg,#5aabdc 0%,#82c5f0 100%);
}

.slides-block.sb-red .slides-header {
    background: #c2185b;
}

.slides-block.sb-red .slides-viewport {
    background: linear-gradient(180deg,#e91e63 0%,#f06292 100%);
}

.slides-block.sb-gold .slides-header {
    background: #b8860b;
}

.slides-block.sb-gold .slides-viewport {
    background: linear-gradient(180deg,#f5b800 0%,#ffd54f 100%);
}

.slides-block.sb-green .slides-header {
    background: #2e7d32;
}

.slides-block.sb-green .slides-viewport {
    background: linear-gradient(180deg,#43a047 0%,#81c784 100%);
}

.slides-block.sb-purple .slides-header {
    background: #4527a0;
}

.slides-block.sb-purple .slides-viewport {
    background: linear-gradient(180deg,#673ab7 0%,#9c7fe8 100%);
}

.slides-block.sb-teal .slides-header {
    background: #00574b;
}

.slides-block.sb-teal .slides-viewport {
    background: linear-gradient(180deg,#00897b 0%,#4db6ac 100%);
}

/* ── MEDIA STRIP ── */
.media-strip {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
}

.media-strip-label {
    width: 100%;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--text-soft);
}

.media-pills-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    width: 100%;
}

.media-pill {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
    width: 100%;
    padding: 12px 14px;
    border-radius: 24px;
    font-size: 13px;
    font-weight: 700;
    border: 1.5px dashed;
    cursor: pointer;
    transition: all .22s ease;
    white-space: normal;
}

    .media-pill:hover {
        transform: translateY(-2px);
    }

    .media-pill .mp-icon {
        width: 30px;
        height: 30px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 13px;
        flex-shrink: 0;
    }

    .media-pill .mp-text {
        min-width: 0;
        display: flex;
        flex-direction: column;
        line-height: 1.25;
    }

        .media-pill .mp-text strong {
            display: block;
            font-size: 13px;
            font-weight: 800;
            white-space: normal;
            overflow-wrap: anywhere;
            word-break: break-word;
        }

        .media-pill .mp-text span {
            display: block;
            font-size: 11px;
            font-weight: 600;
            opacity: 0.75;
            white-space: normal;
            overflow-wrap: anywhere;
            word-break: break-word;
        }

.mp-pdf {
    background: #fff5f5;
    border-color: #ffcdd2;
    color: #c62828;
}

    .mp-pdf .mp-icon {
        background: #ffcdd2;
        color: #c62828;
    }

    .mp-pdf:hover {
        background: #ffebee;
        border-color: #E53935;
    }

.mp-video {
    background: #f3f0ff;
    border-color: #d1c4e9;
    color: #4527a0;
}

    .mp-video .mp-icon {
        background: #d1c4e9;
        color: #4527a0;
    }

    .mp-video:hover {
        background: #ede7f6;
        border-color: #7E57C2;
    }

.mp-audio {
    background: #e8f5e9;
    border-color: #c8e6c9;
    color: #2e7d32;
}

    .mp-audio .mp-icon {
        background: #c8e6c9;
        color: #2e7d32;
    }

    .mp-audio:hover {
        background: #dcedc8;
        border-color: #4CAF50;
    }

@@media (max-width: 768px) {
    .media-pills-row {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8px;
    }

    .media-pill {
        padding: 10px 10px;
        gap: 8px;
        border-radius: 20px;
    }

        .media-pill .mp-icon {
            width: 24px;
            height: 24px;
            font-size: 11px;
        }

        .media-pill .mp-text strong {
            font-size: 11px;
        }

        .media-pill .mp-text span {
            font-size: 10px;
        }
}

/* ── GALLERY ── */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.gallery-item {
    border-radius: var(--radius-sm);
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--blue-light);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px dashed rgba(46,134,193,0.25);
    color: var(--blue);
    font-size: 26px;
    cursor: pointer;
    transition: transform .25s ease;
}

    .gallery-item:hover {
        transform: scale(0.98);
    }

/* ── CTA ── */
.cta-section {
    padding: 72px 0;
    background: linear-gradient(145deg, #0d2137, var(--blue));
    text-align: center;
}

.cta-inner {
    max-width: 800px;
    margin: 0 auto;
}

    .cta-inner h2 {
        font-family: 'Sora', sans-serif;
        font-size: clamp(22px, 4vw, 44px);
        font-weight: 800;
        color: #fff;
        margin-bottom: 16px;
        line-height: 1.2;
    }

    .cta-inner p {
        font-size: 16px;
        color: rgba(255,255,255,0.82);
        margin-bottom: 30px;
    }

.cta-btns {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.btn-gold {
    background: var(--gold);
    color: #0d2137;
    padding: 13px 26px;
    border-radius: 999px;
    font-weight: 800;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all .25s ease;
    box-shadow: 0 8px 24px rgba(244,180,0,0.4);
}

    .btn-gold:hover {
        transform: translateY(-2px);
        box-shadow: 0 14px 32px rgba(244,180,0,0.5);
    }

.btn-white-outline {
    border: 2px solid rgba(255,255,255,0.45);
    color: #fff;
    padding: 12px 22px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all .25s ease;
}

    .btn-white-outline:hover {
        background: rgba(255,255,255,0.12);
        border-color: rgba(255,255,255,0.75);
        transform: translateY(-2px);
    }

/* ── LIGHTBOX ── */
.lb {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0,0,0,0.88);
    align-items: center;
    justify-content: center;
    padding: 20px;
}

    .lb.open {
        display: flex;
    }

.lb-inner {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    text-align: center;
}

    .lb-inner img {
        max-width: 90vw;
        max-height: 82vh;
        border-radius: 12px;
        box-shadow: 0 24px 80px rgba(0,0,0,0.6);
        display: block;
    }

.lb-close {
    position: absolute;
    top: -14px;
    right: -14px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #fff;
    color: #222;
    font-size: 15px;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0,0,0,0.3);
    transition: transform .2s;
}

    .lb-close:hover {
        transform: scale(1.1);
    }

.lb-caption {
    margin-top: 10px;
    color: rgba(255,255,255,0.75);
    font-size: 13px;
    font-weight: 600;
}

/* ── FLOATING MAIL ── */
.mail-float {
    position: fixed;
    bottom: 24px;
    right: 20px;
    z-index: 900;
}

.mail-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--blue);
    color: #fff;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 28px rgba(46,134,193,0.45);
    cursor: pointer;
    transition: all .25s ease;
    animation: pulse-mail 2.5s ease-in-out infinite;
}

    .mail-btn:hover {
        transform: scale(1.1);
    }

@@keyframes pulse-mail {
    0%, 100% {
        box-shadow: 0 8px 28px rgba(46,134,193,0.45);
    }

    50% {
        box-shadow: 0 8px 40px rgba(46,134,193,0.65), 0 0 0 8px rgba(46,134,193,0.15);
    }
}

/* ── FOOTER ── */
.footer-mini {
    padding: 20px;
    text-align: center;
    font-size: 13px;
    color: var(--text-soft);
    background: #fff;
    border-top: 1px solid var(--border);
}

.footer-mini {
    border-top: 1px solid rgba(0,0,0,0.06);
    background: #fff;
    padding: 18px 10px;
    font-size: 13px;
}

.footer-mini-inner {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-mini-left {
    color: #667085;
}

.footer-mini-right {
    color: #344054;
}

    .footer-mini-right strong {
        font-weight: 700;
    }

    .footer-mini-right a {
        color: inherit;
        text-decoration: none;
    }

        .footer-mini-right a:hover {
            opacity: .75;
        }

/* ── REVEAL ANIMATION ── */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .6s ease, transform .6s ease;
}

    .reveal.up {
        opacity: 1;
        transform: translateY(0);
    }

/* ════════════════════════════════════════
                   RESPONSIVE BREAKPOINTS
                ════════════════════════════════════════ */
@@media (max-width: 1024px) {
    .hero {
        padding: 76px 0 34px;
    }

    .hero-inner {
        grid-template-columns: 1fr;
        gap: 22px;
        align-items: start;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-desc {
        max-width: 100%;
    }

    .hero-side {
        grid-template-columns: 170px 1fr;
        gap: 14px;
        align-items: stretch;
        width: 100%;
    }

    .hero-book-card {
        max-width: 170px;
        width: 100%;
    }

    .hero-quote-card {
        min-height: auto;
        height: 100%;
    }
}

@@media (max-width: 768px) {
    .hero {
        padding: 72px 0 30px;
    }

    .hero-title {
        font-size: clamp(20px, 5.5vw, 30px);
        line-height: 1.12;
    }

    .hero-desc {
        font-size: 14px;
        line-height: 1.65;
    }

    .hero-btns {
        gap: 8px;
    }

    .hero-side {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .hero-book-card {
        max-width: 220px;
        margin: 0 auto;
    }

    .hero-quote-card {
        padding: 16px 15px;
    }
}

@@media (max-width: 480px) {
    .hero {
        padding: 68px 0 26px;
    }

    .hero-title {
        font-size: clamp(19px, 6vw, 25px);
    }

    .hero-desc {
        font-size: 13px;
        line-height: 1.6;
    }

    .hero-btns {
        flex-direction: column;
        gap: 8px;
    }

    .btn-primary,
    .btn-outline {
        width: 100%;
        justify-content: center;
    }

    .hero-book-card {
        max-width: 200px;
        padding: 10px;
    }

    .hero-book-action {
        height: 40px;
        font-size: 15px;
        border-radius: 11px;
    }

    .hero-book-note {
        font-size: 11px;
        text-align: center;
    }

    .hero-quote-card {
        padding: 14px 13px;
    }

        .hero-quote-card p {
            font-size: 12.5px;
            line-height: 1.55;
        }
}


/* ── Phablet: 768px ── */
@@media (max-width: 768px) {
    .container {
        padding: 0 14px;
    }
    /* Hero */
    .hero {
        padding: 72px 0 32px;
    }

    .hero-title {
        font-size: clamp(20px, 5.5vw, 30px);
    }

    .hero-desc {
        font-size: 14px;
    }

    .hero-btns {
        gap: 8px;
    }

    .btn-primary, .btn-outline {
        padding: 10px 16px;
        font-size: 13px;
    }
    /* Topbar */
    .topbar {
        padding: 10px 14px;
    }

    .topbar-logo {
        font-size: 16px;
    }

        .topbar-logo .logo-icon {
            width: 32px;
            height: 32px;
            font-size: 14px;
        }

    .topbar-back {
        padding: 7px 12px;
        font-size: 12px;
    }

    .topbar-back-text {
        display: none;
    }
    /* Nav */
    .sticky-nav {
        top: 52px;
    }

    .nav-link {
        padding: 12px 8px;
        font-size: 12px;
        gap: 5px;
    }

    .nav-link-text {
        display: none;
    }
    /* Cards */
    .six-cards-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .eyvah-card {
        min-height: auto;
        padding: 22px 18px 18px;
        border-radius: 18px;
    }

        .eyvah-card h4 {
            font-size: 16px;
        }

        .eyvah-card .card-list li {
            font-size: 13px;
        }

        .eyvah-card .card-icon-wrap {
            width: 48px;
            height: 48px;
            border-radius: 13px;
        }

            .eyvah-card .card-icon-wrap svg {
                width: 26px;
                height: 26px;
            }
    /* Stats */
    .stats-strip {
        padding: 32px 0;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0;
    }

    .stat-item {
        padding: 14px 10px;
        border-right: 1px solid rgba(255,255,255,0.08);
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }

        .stat-item:nth-child(2n) {
            border-right: none;
        }

        .stat-item:nth-child(3), .stat-item:nth-child(4) {
            border-bottom: none;
        }
    /* Story sections */
    .story-section {
        padding: 48px 0;
    }

    .story-title {
        font-size: clamp(18px, 4.5vw, 26px);
        margin-bottom: 14px;
    }

    .story-body {
        font-size: 14px;
    }
    /* Placeholder visual — stack below text on mobile */
    .placeholder-visual {
        min-height: 240px;
        border-radius: 20px;
    }

        .placeholder-visual .pv-upload-zone {
            padding: 24px 18px;
        }

            .placeholder-visual .pv-upload-zone .pv-icon {
                font-size: 36px;
            }

            .placeholder-visual .pv-upload-zone h4 {
                font-size: 15px;
            }
    /* Slides */
    .slides-block {
        margin-top: 32px;
        border-radius: 18px;
    }

    .slides-header {
        padding: 12px 16px;
        font-size: 12px;
    }

    .slides-viewport {
        padding: 16px;
    }

    .slide-card {
        flex: 0 0 76vw;
        min-width: 0;
        padding: 16px 14px;
        border-radius: 14px;
    }

        .slide-card h5 {
            font-size: 13px;
        }

        .slide-card p {
            font-size: 11px;
        }
    /* Media pills */
    .media-pill {
        padding: 9px 12px;
        font-size: 12px;
        gap: 8px;
    }

        .media-pill .mp-icon {
            width: 28px;
            height: 28px;
            font-size: 12px;
        }
    /* Gallery */
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    /* CTA */
    .cta-section {
        padding: 52px 0;
    }

    .cta-btns {
        flex-direction: column;
        align-items: center;
    }

    .btn-gold, .btn-white-outline {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    /* Section head */
    .section-head {
        margin-bottom: 28px;
    }
    /* Callout */
    .callout-box {
        font-size: 13px;
        padding: 14px 16px;
    }
}

/* ── Mobile: 480px ── */
@@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }

    .hero {
        padding: 68px 0 28px;
    }

    .hero-title {
        font-size: clamp(19px, 6vw, 26px);
    }

    .hero-eyebrow {
        font-size: 10px;
        padding: 6px 12px;
    }

    .hero-desc {
        font-size: 13.5px;
        line-height: 1.65;
    }

    .hero-btns {
        flex-direction: column;
        gap: 8px;
    }

    .btn-primary, .btn-outline {
        width: 100%;
        justify-content: center;
    }


    .topbar-back span:not(.fas) {
        display: none;
    }

    .topbar-back {
        padding: 8px 12px;
    }

    .nav-link {
        padding: 12px 6px;
    }

        .nav-link .nav-icon {
            width: 30px;
            height: 30px;
            border-radius: 8px;
            font-size: 12px;
        }

    .six-cards-grid {
        gap: 12px;
    }

    .eyvah-card {
        border-radius: 16px;
        padding: 18px 16px 15px;
    }

        .eyvah-card .card-list {
            gap: 6px;
        }

    .stat-num {
        font-size: 28px;
    }

    .stat-label {
        font-size: 11px;
    }
    /* Story */
    .story-section {
        padding: 40px 0;
    }

    .section-title {
        font-size: 22px;
    }

    .section-desc {
        font-size: 14px;
    }

    .story-badge {
        font-size: 11px;
        padding: 7px 12px;
    }
    /* Placeholder visual */
    .placeholder-visual {
        min-height: 200px;
        border-radius: 16px;
    }
    /* Slides — full width card */
    .slide-card {
        flex: 0 0 84vw;
    }
    /* Gallery — single col */
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .gallery-item {
        aspect-ratio: 16/9;
        font-size: 22px;
    }
    /* CTA */
    .cta-section {
        padding: 44px 0;
    }

    .cta-inner h2 {
        font-size: 22px;
    }

    .cta-inner p {
        font-size: 14px;
    }
    /* Footer */
    .footer-mini {
        font-size: 12px;
    }
    /* Float mail — smaller */
    .mail-btn {
        width: 46px;
        height: 46px;
        font-size: 18px;
    }
}

/* ── Very small: 360px ── */
@@media (max-width: 360px) {
    .hero-title {
        font-size: 18px;
    }

    .eyvah-card h4 {
        font-size: 15px;
    }

    .nav-link .nav-icon {
        width: 28px;
        height: 28px;
    }

    .slide-card {
        flex: 0 0 90vw;
    }
}

.story-text-panel,
.story-text-panel * {
    min-width: 0;
}

.story-body,
.callout-box,
.section-desc,
.hero-desc,
.cta-inner p,
.slide-card p,
.slide-card h5 {
    word-break: break-word;
    overflow-wrap: anywhere;
}

.story-text-panel {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.callout-box {
    width: 100%;
    max-width: 100%;
}

@@media (max-width: 768px) {
    .story-grid,
    .story-grid.reverse {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px;
        direction: ltr;
    }

    .story-text-panel {
        order: 1;
    }

    .placeholder-visual {
        order: 2;
        min-height: 220px;
    }

    .slides-block {
        order: 3;
    }

    .story-body {
        font-size: 14px;
        line-height: 1.75;
        margin-bottom: 12px;
    }

    .callout-box {
        font-size: 13px;
        line-height: 1.65;
        padding: 14px;
    }
}

.story-grid.text-long {
    grid-template-columns: 1fr;
    gap: 24px;
}

    .story-grid.text-long .story-text-panel {
        order: 1;
    }

    .story-grid.text-long .placeholder-visual {
        order: 2;
        max-width: 720px;
        width: 100%;
    }

.story-grid.reverse.text-long {
    direction: ltr;
}

@@media (max-width: 768px) {
    .story-grid,
    .story-grid.reverse,
    .story-grid.text-long,
    .story-grid.reverse.text-long {
        grid-template-columns: 1fr;
        gap: 20px;
        direction: ltr;
    }

        .story-grid .story-text-panel,
        .story-grid .placeholder-visual,
        .story-grid.text-long .story-text-panel,
        .story-grid.text-long .placeholder-visual {
            order: initial;
        }

        .story-grid .placeholder-visual,
        .story-grid.text-long .placeholder-visual {
            max-width: 100%;
        }
}
