/* ============== AYD Tanıtım — Site Theme ============== */

:root {
    --purple: #5b2deb;
    --purple-deep: #4a1fce;
    --purple-dark: #2c0f7a;
    --mint: #6fe7b4;
    --mint-dark: #3dc995;
    --ink: #1c1240;
    --ink-soft: #4a4067;
    --muted: #7b7593;
    --bg: #f6f4ff;
    --bg-soft: #ffffff;
    --line: #e6e1f5;
    --danger: #e54a4a;
    --success: #2e9f6e;
    --shadow-sm: 0 4px 14px rgba(43, 15, 122, 0.06);
    --shadow-md: 0 16px 40px rgba(43, 15, 122, 0.12);
    --radius: 18px;
    --radius-sm: 10px;
}

* { box-sizing: border-box; }

html, body {
    margin: 0;
    padding: 0;
    font-family: 'Plus Jakarta Sans', system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
    color: var(--ink);
    background: var(--bg);
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
}

body.public-body { background: var(--bg); }

img { max-width: 100%; display: block; }

a { color: var(--purple); text-decoration: none; transition: color .15s ease; }
a:hover { color: var(--purple-deep); }

h1, h2, h3, h4 { color: var(--ink); margin: 0 0 .6em; font-weight: 700; line-height: 1.2; }
h1 { font-size: clamp(2.1rem, 4.4vw, 3.4rem); font-weight: 800; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 700; letter-spacing: -0.01em; }
h3 { font-size: 1.2rem; }

p { margin: 0 0 1em; color: var(--ink-soft); }

.container { width: 100%; max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.container.narrow { max-width: 880px; }
.center { text-align: center; }
.muted { color: var(--muted); }

/* ============== Buttons ============== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .4em;
    padding: 12px 22px;
    border-radius: 999px;
    font-weight: 600;
    font-size: .95rem;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all .2s ease;
    text-decoration: none;
    line-height: 1;
}
.btn-primary {
    background: var(--purple);
    color: #fff;
    box-shadow: 0 8px 24px rgba(91, 45, 235, .25);
}
.btn-primary:hover {
    background: var(--purple-deep);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 12px 32px rgba(91, 45, 235, .35);
}
.btn-outline {
    background: transparent;
    border-color: var(--purple);
    color: var(--purple);
}
.btn-outline:hover {
    background: var(--purple);
    color: #fff;
}
.btn-ghost {
    background: transparent;
    color: var(--ink);
    border-color: transparent;
}
.btn-ghost:hover { background: rgba(91, 45, 235, .08); color: var(--purple); }
.btn-lg { padding: 16px 32px; font-size: 1rem; }
.btn-sm { padding: 8px 14px; font-size: .85rem; }
.btn-block { width: 100%; }

/* ============== Header ============== */
.site-header {
    position: sticky; top: 0; z-index: 50;
    background: rgba(255,255,255,.92);
    backdrop-filter: saturate(180%) blur(14px);
    border-bottom: 1px solid var(--line);
}
.nav-wrap {
    display: flex; align-items: center; justify-content: space-between;
    padding-top: 14px; padding-bottom: 14px;
}
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 800; }
.brand-mark {
    background: linear-gradient(135deg, var(--purple), var(--purple-deep));
    color: #fff;
    padding: 6px 10px;
    border-radius: 10px;
    font-size: .85rem;
    letter-spacing: .12em;
}
.brand-mark.admin { background: linear-gradient(135deg, #1c1240, #4a1fce); }
.brand-name { color: var(--ink); font-size: 1.05rem; }
.brand.light .brand-name { color: #fff; }

.main-nav { display: flex; gap: 28px; }
.main-nav a {
    color: var(--ink-soft);
    font-weight: 500;
    font-size: .95rem;
}
.main-nav a:hover { color: var(--purple); }
.nav-cta { padding: 10px 20px; font-size: .9rem; }

@media (max-width: 760px) {
    .main-nav { display: none; }
    .nav-cta { padding: 8px 14px; font-size: .85rem; }
}

/* ============== Hero ============== */
.hero {
    padding: 70px 0 90px;
    background:
        radial-gradient(900px 600px at 90% -10%, rgba(111, 231, 180, .35), transparent 60%),
        radial-gradient(700px 500px at -10% 0%, rgba(91, 45, 235, .12), transparent 60%),
        linear-gradient(180deg, #f6f4ff 0%, #ffffff 100%);
}
.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
}
.eyebrow {
    display: inline-block;
    background: rgba(91, 45, 235, .1);
    color: var(--purple);
    font-weight: 600;
    font-size: .82rem;
    text-transform: uppercase;
    letter-spacing: .12em;
    padding: 6px 14px;
    border-radius: 999px;
    margin-bottom: 18px;
}
.hero-copy h1 { margin-bottom: .4em; }
.hero-copy .hl { color: var(--purple); }
.hero-copy .hl-2 { color: var(--mint-dark); }
.hero-copy .lead {
    font-size: 1.1rem;
    color: var(--ink-soft);
    max-width: 540px;
    margin-bottom: 30px;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-stats {
    display: flex; gap: 38px; flex-wrap: wrap;
    border-top: 1px solid var(--line);
    padding-top: 24px;
}
.hero-stats > div { display: flex; flex-direction: column; }
.hero-stats strong { color: var(--ink); font-size: 1.4rem; font-weight: 800; }
.hero-stats span { color: var(--muted); font-size: .85rem; }

.hero-visual { position: relative; min-height: 480px; }
.card-stack {
    position: relative;
    height: 100%;
}
.hero-card {
    position: absolute;
    width: 200px;
    height: 260px;
    border-radius: 22px;
    box-shadow: var(--shadow-md);
    background: linear-gradient(135deg, #fff, #f3eeff);
    display: flex;
    align-items: flex-end;
    padding: 18px;
    overflow: hidden;
    transition: transform .4s ease;
}
.hero-card::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(91,45,235,.15), rgba(111,231,180,.25));
}
.hero-card .chip {
    position: relative;
    background: #fff;
    color: var(--ink);
    font-weight: 600;
    font-size: .82rem;
    padding: 7px 14px;
    border-radius: 999px;
    box-shadow: var(--shadow-sm);
}
.c1 { top: 0;   left: 10%;  transform: rotate(-6deg); }
.c2 { top: 20px; right: 0;  transform: rotate(5deg); }
.c3 { bottom: 30px; left: 0; transform: rotate(-4deg); }
.c4 { bottom: 0;  right: 10%; transform: rotate(7deg); }
.hero-card:hover { transform: rotate(0) translateY(-6px); z-index: 5; }

@media (max-width: 900px) {
    .hero { padding: 50px 0 70px; }
    .hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .hero-visual { min-height: 380px; }
}

/* ============== Section heads ============== */
.section-head { max-width: 720px; margin: 0 auto 50px; text-align: center; }
.section-head.center { text-align: center; }
.section-head p { color: var(--muted); font-size: 1.05rem; }

/* ============== Benefits ============== */
.benefits { padding: 80px 0; }
.benefit-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.benefit {
    padding: 32px;
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--line);
}
.benefit .bi {
    width: 56px; height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--purple), var(--mint));
    margin-bottom: 18px;
    display: flex; align-items: center; justify-content: center;
}
.benefit .bi.heart::after { content: '❤'; font-size: 26px; color: #fff; }
.benefit .bi.clap::after { content: '🎬'; font-size: 26px; }
.benefit .bi.chart::after { content: '📈'; font-size: 26px; }
.benefit p { margin: 0; }

@media (max-width: 780px) {
    .benefit-grid { grid-template-columns: 1fr; }
    .benefits { padding: 60px 0; }
}

/* ============== Packages ============== */
.packages { padding: 80px 0; background: linear-gradient(180deg, #fff, #f6f4ff); }
.pkg-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
}
.pkg-card {
    position: relative;
    padding: 32px;
    background: #fff;
    border-radius: 22px;
    border: 2px solid var(--line);
    display: flex; flex-direction: column;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.pkg-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.pkg-card.recommended {
    border-color: var(--purple);
    box-shadow: 0 20px 50px rgba(91, 45, 235, .15);
    transform: scale(1.03);
}
.badge-recommended {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--purple), var(--purple-deep));
    color: #fff;
    font-size: .8rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 999px;
    letter-spacing: .04em;
}
.pkg-range {
    color: var(--purple);
    font-weight: 600;
    margin: 4px 0 16px;
}
.pkg-price { display: flex; align-items: baseline; gap: 6px; margin-bottom: 18px; }
.pkg-price .amount { font-size: 2.4rem; font-weight: 800; color: var(--ink); }
.pkg-price .unit { color: var(--muted); font-size: .9rem; }
.pkg-desc { color: var(--ink-soft); margin-bottom: 22px; min-height: 48px; }
.pkg-features {
    list-style: none; padding: 0; margin: 0 0 26px;
    flex: 1;
    display: flex; flex-direction: column; gap: 10px;
}
.pkg-features li {
    padding-left: 28px;
    position: relative;
    color: var(--ink-soft);
    font-size: .95rem;
}
.pkg-features li::before {
    content: '';
    width: 18px; height: 18px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--mint), var(--mint-dark));
    position: absolute; left: 0; top: 4px;
    background-image: linear-gradient(135deg, var(--mint), var(--mint-dark));
}
.pkg-features li::after {
    content: '✓';
    position: absolute; left: 4px; top: 1px;
    color: #fff; font-size: .8rem; font-weight: 700;
}
.pkg-features.compact li { font-size: .85rem; }

@media (max-width: 900px) {
    .pkg-grid { grid-template-columns: 1fr; }
    .pkg-card.recommended { transform: none; }
    .packages { padding: 60px 0; }
}

/* ============== Process ============== */
.process { padding: 80px 0; }
.step-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.step {
    padding: 30px 24px;
    border-radius: 22px;
    text-align: center;
    color: #fff;
}
.step.purple { background: linear-gradient(135deg, var(--purple), var(--purple-deep)); }
.step.mint   { background: linear-gradient(135deg, var(--mint), var(--mint-dark)); color: var(--ink); }
.step h3 { color: inherit; margin: 12px 0 8px; }
.step p { color: inherit; opacity: .85; font-size: .92rem; }
.step-icon {
    width: 56px; height: 56px;
    border-radius: 16px;
    background: rgba(255,255,255,.25);
    margin: 0 auto;
    display: flex; align-items: center; justify-content: center;
    font-size: 26px;
}
.step.mint .step-icon { background: rgba(28, 18, 64, .12); }
.process-cta { text-align: center; margin-top: 50px; }

@media (max-width: 900px) {
    .step-grid { grid-template-columns: 1fr 1fr; }
    .process { padding: 60px 0; }
}
@media (max-width: 520px) {
    .step-grid { grid-template-columns: 1fr; }
}

/* ============== FAQ ============== */
.faq { padding: 80px 0; background: #fff; }
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-list details {
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 18px 22px;
    background: var(--bg);
    transition: border-color .2s ease, background .2s ease;
}
.faq-list details[open] { border-color: var(--purple); background: #fff; box-shadow: var(--shadow-sm); }
.faq-list summary {
    cursor: pointer;
    font-weight: 600;
    color: var(--ink);
    list-style: none;
    display: flex; justify-content: space-between; align-items: center;
}
.faq-list summary::after {
    content: '+';
    font-size: 1.4rem;
    color: var(--purple);
    margin-left: 12px;
    transition: transform .2s ease;
}
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list p { margin-top: 14px; margin-bottom: 0; color: var(--ink-soft); }

/* ============== CTA Band ============== */
.cta-band {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--purple), var(--purple-dark));
    color: #fff;
}
.cta-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}
.cta-band h2 { color: #fff; margin-bottom: 8px; }
.cta-band p { color: rgba(255,255,255,.85); margin: 0; }
.cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.cta-band .btn-ghost { color: #fff; border-color: rgba(255,255,255,.4); }
.cta-band .btn-ghost:hover { background: rgba(255,255,255,.12); color: #fff; }

/* ============== Footer ============== */
.site-footer {
    background: #0f0828;
    color: #d9d2f0;
    padding: 60px 0 24px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-text { color: #b0a8cf; margin-top: 14px; }
.footer-grid h4 { color: #fff; font-size: 1rem; margin-bottom: 14px; }
.footer-list { list-style: none; padding: 0; margin: 0; }
.footer-list li { margin-bottom: 10px; }
.footer-list a { color: #c2bbe0; }
.footer-list a:hover { color: var(--mint); }
.footer-bottom { padding-top: 24px; color: #8d85af; font-size: .88rem; }

@media (max-width: 760px) {
    .footer-grid { grid-template-columns: 1fr; }
}

/* ============== Forms ============== */
.field { display: flex; flex-direction: column; margin-bottom: 18px; }
.field.grow { flex: 1; }
.field label { font-weight: 600; font-size: .92rem; margin-bottom: 6px; color: var(--ink); }
.field input,
.field select,
.field textarea {
    border: 1.5px solid var(--line);
    border-radius: 12px;
    padding: 12px 14px;
    font: inherit;
    color: var(--ink);
    background: #fff;
    transition: border-color .15s, box-shadow .15s;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
    outline: none;
    border-color: var(--purple);
    box-shadow: 0 0 0 4px rgba(91, 45, 235, .12);
}
.field textarea { resize: vertical; min-height: 90px; }
.field .error { color: var(--danger); font-size: .85rem; margin-top: 6px; min-height: 1em; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 640px) { .form-row { grid-template-columns: 1fr; } }

.alert { padding: 14px 18px; border-radius: 12px; margin-bottom: 18px; }
.alert-error { background: #fdecec; color: #a92020; border-left: 4px solid var(--danger); }
.alert-success { background: #e7f7ef; color: #196b48; border-left: 4px solid var(--success); }
.alert ul { margin: 0; padding-left: 18px; }

.checkbox {
    display: flex; align-items: flex-start; gap: 10px;
    cursor: pointer;
    font-size: .95rem;
    color: var(--ink-soft);
}
.checkbox input[type="checkbox"] {
    margin-top: 3px;
    width: 18px; height: 18px;
    accent-color: var(--purple);
}

/* ============== Contact ============== */
.content-page { padding: 70px 0 90px; background: #fff; }
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 30px;
    margin-top: 30px;
}
.contact-card,
.form-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 30px;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
}
.contact-info { list-style: none; padding: 0; margin: 18px 0 0; }
.contact-info li { display: flex; flex-direction: column; gap: 4px; margin-bottom: 14px; }
.contact-info span { color: var(--muted); font-size: .85rem; }
.contact-info a { color: var(--ink); font-weight: 600; }
.contact-info a:hover { color: var(--purple); }

@media (max-width: 800px) { .contact-grid { grid-template-columns: 1fr; } }

/* ============== Wizard ============== */
.wizard-page { padding: 60px 0 90px; }
.wizard-progress {
    display: flex; justify-content: center; gap: 14px;
    margin: 0 auto 40px; flex-wrap: wrap;
}
.wp-step {
    display: flex; align-items: center; gap: 10px;
    background: #fff; border: 1.5px solid var(--line);
    padding: 10px 18px; border-radius: 999px;
    color: var(--muted); font-weight: 600; font-size: .9rem;
    transition: all .25s ease;
}
.wp-step span {
    width: 26px; height: 26px;
    border-radius: 50%;
    background: var(--line); color: var(--ink-soft);
    display: flex; align-items: center; justify-content: center;
    font-size: .85rem;
}
.wp-step.active { background: var(--purple); color: #fff; border-color: var(--purple); }
.wp-step.active span { background: #fff; color: var(--purple); }
.wp-step.done { background: var(--mint); border-color: var(--mint-dark); color: var(--ink); }

.wizard {
    background: #fff;
    border-radius: 22px;
    padding: 40px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--line);
}
.wizard h2 { margin-bottom: 20px; }
.wizard-nav {
    display: flex; justify-content: space-between;
    margin-top: 30px; padding-top: 24px;
    border-top: 1px solid var(--line);
}

.pkg-pick-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 20px;
}
.pkg-pick {
    position: relative;
    padding: 22px;
    border: 2px solid var(--line);
    border-radius: 18px;
    cursor: pointer;
    transition: all .2s ease;
    background: #fff;
}
.pkg-pick:hover { border-color: var(--purple); }
.pkg-pick.selected {
    border-color: var(--purple);
    background: linear-gradient(180deg, #fff 60%, rgba(91, 45, 235, .06));
    box-shadow: 0 12px 30px rgba(91, 45, 235, .15);
}
.pkg-pick.selected::after {
    content: '✓';
    position: absolute;
    top: 14px; right: 14px;
    width: 26px; height: 26px;
    border-radius: 50%;
    background: var(--purple);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700;
}

@media (max-width: 800px) {
    .pkg-pick-grid { grid-template-columns: 1fr; }
    .wizard { padding: 24px; }
}

.qty-selector {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--line);
}
.qty-control {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 1.5px solid var(--line);
    border-radius: 999px;
    padding: 4px;
    background: #fff;
    width: fit-content;
}
.qty-btn {
    width: 38px; height: 38px;
    border: none;
    background: var(--bg);
    border-radius: 50%;
    font-size: 1.2rem; font-weight: 700;
    color: var(--purple);
    cursor: pointer;
}
.qty-btn:hover { background: var(--purple); color: #fff; }
.qty-control input {
    width: 80px;
    text-align: center;
    border: none !important;
    font-size: 1.1rem;
    font-weight: 700;
    background: transparent !important;
    box-shadow: none !important;
}
.qty-summary {
    background: var(--bg);
    border-radius: 14px;
    padding: 18px;
}
.summary-row {
    display: flex; justify-content: space-between;
    padding: 8px 0;
    color: var(--ink-soft);
    font-size: .95rem;
}
.summary-row.total {
    border-top: 1px solid var(--line);
    margin-top: 6px; padding-top: 14px;
    font-size: 1.05rem;
}
.summary-row.total strong { color: var(--purple); font-size: 1.15rem; }

@media (max-width: 640px) { .qty-selector { grid-template-columns: 1fr; } }

.final-summary {
    background: var(--bg);
    border-radius: 14px;
    padding: 22px;
    margin: 20px 0;
}
.final-summary h3 { margin-bottom: 10px; color: var(--purple); }
.terms { margin-top: 20px; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }

/* ============== Hero Banner (Image-based) ============== */
.hero-banner {
    position: relative;
    width: 100%;
    background: #0f0828;
}
.banner-slider {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 6;
    min-height: 320px;
    max-height: 640px;
    overflow: hidden;
}
.banner-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity .6s ease, visibility .6s ease;
    text-decoration: none;
    color: inherit;
}
.banner-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}
.banner-slide::before {
    content: '';
    position: absolute; inset: 0;
    pointer-events: none;
    transition: background .3s ease;
}
.banner-slide.overlay-none::before  { background: transparent; }
.banner-slide.overlay-light::before { background: linear-gradient(90deg, rgba(255,255,255,.55), rgba(255,255,255,.2) 60%, transparent); }
.banner-slide.overlay-dark::before  { background: linear-gradient(90deg, rgba(15, 8, 40, .65), rgba(15, 8, 40, .3) 60%, transparent); }

.banner-text-wrap {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
}
.banner-text-wrap.left   { justify-content: flex-start; text-align: left;  }
.banner-text-wrap.center { justify-content: center;     text-align: center;}
.banner-text-wrap.right  { justify-content: flex-end;   text-align: right; }
.banner-text {
    max-width: 600px;
    animation: bannerSlideIn .6s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}
.banner-text-wrap.center .banner-text { align-items: center; }
.banner-text-wrap.right  .banner-text { align-items: flex-end; }
.banner-cta { order: 99; margin-top: 12px; }
@keyframes bannerSlideIn {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}
.banner-text h1 {
    font-size: clamp(2rem, 4.5vw, 3.6rem);
    line-height: 1.15;
    margin: 0 0 16px;
    font-weight: 800;
    letter-spacing: -0.02em;
}
.banner-text p {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    margin: 0 0 26px;
    line-height: 1.5;
    max-width: 540px;
}
.banner-text.center p { margin-left: auto; margin-right: auto; }
.banner-text.right  p { margin-left: auto; }
.banner-text .btn { margin-top: 4px; }

.banner-text.light { color: #fff; }
.banner-text.light h1 { color: #fff; text-shadow: 0 2px 16px rgba(0,0,0,.3); }
.banner-text.light p { color: rgba(255,255,255,.95); }

.banner-text.dark { color: var(--ink); }
.banner-text.dark h1 { color: var(--ink); }
.banner-text.dark p { color: var(--ink-soft); }

a.banner-slide { cursor: pointer; }
a.banner-slide:hover { color: inherit; }

.banner-controls {
    position: absolute;
    bottom: 24px;
    left: 0; right: 0;
    z-index: 5;
    display: flex; justify-content: center; align-items: center;
    gap: 20px;
}
.banner-nav {
    width: 44px; height: 44px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,.9);
    color: var(--ink);
    font-size: 1.6rem;
    cursor: pointer;
    transition: all .2s ease;
    line-height: 1;
    box-shadow: 0 4px 14px rgba(0,0,0,.15);
}
.banner-nav:hover { background: #fff; transform: scale(1.08); }
.banner-dots {
    display: flex; gap: 8px;
    background: rgba(255,255,255,.2);
    backdrop-filter: blur(6px);
    padding: 8px 14px;
    border-radius: 999px;
}
.banner-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,.5);
    cursor: pointer;
    padding: 0;
    transition: all .2s;
}
.banner-dot.active { background: #fff; transform: scale(1.3); }
.banner-dot:hover:not(.active) { background: rgba(255,255,255,.8); }

@media (max-width: 720px) {
    .banner-slider { aspect-ratio: 4 / 5; min-height: 480px; }
    .banner-text-wrap { padding: 0 20px; }
    .banner-text-wrap.left,
    .banner-text-wrap.right { justify-content: center; text-align: center; }
    .banner-text p { margin-left: auto; margin-right: auto; }
}

.hero-stats-band {
    background: linear-gradient(180deg, #0f0828 0%, #1c1240 100%);
    padding: 28px 0;
}
.hero-stats-band .hero-stats {
    border-top: none;
    padding-top: 0;
    justify-content: space-around;
    gap: 20px;
}
.hero-stats-band .hero-stats strong { color: #fff; font-size: 1.6rem; }
.hero-stats-band .hero-stats span { color: #b0a8cf; }

.hero-empty {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--purple), var(--purple-dark));
    color: #fff;
    text-align: center;
}
.hero-empty h1 { color: #fff; }
.hero-empty p { color: rgba(255,255,255,.9); margin-bottom: 30px; }

/* ============== Modal ============== */
.modal {
    position: fixed; inset: 0;
    z-index: 1000;
    display: flex; align-items: center; justify-content: center;
    padding: 20px;
}
.modal[hidden] { display: none; }
.modal-backdrop {
    position: absolute; inset: 0;
    background: rgba(15, 8, 40, 0.6);
    backdrop-filter: blur(4px);
    animation: backdropIn .2s ease;
}
@keyframes backdropIn { from { opacity: 0; } to { opacity: 1; } }
.modal-dialog {
    position: relative;
    background: #fff;
    border-radius: 22px;
    width: 100%;
    max-width: 720px;
    max-height: 90vh;
    display: flex; flex-direction: column;
    box-shadow: 0 30px 80px rgba(15, 8, 40, .4);
    animation: dialogIn .25s ease;
    overflow: hidden;
}
@keyframes dialogIn {
    from { opacity: 0; transform: translateY(20px) scale(.96); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}
.modal-head {
    padding: 22px 28px;
    border-bottom: 1px solid var(--line);
    display: flex; justify-content: space-between; align-items: center;
}
.modal-head h3 { margin: 0; color: var(--ink); font-size: 1.15rem; }
.modal-close {
    background: var(--bg);
    border: none;
    width: 36px; height: 36px;
    border-radius: 50%;
    font-size: 1.4rem;
    cursor: pointer;
    color: var(--ink-soft);
    line-height: 1;
}
.modal-close:hover { background: var(--purple); color: #fff; }
.modal-body {
    padding: 24px 28px;
    overflow-y: auto;
    flex: 1;
    line-height: 1.65;
}
.modal-body h2, .modal-body h3 { color: var(--purple); margin-top: 1.2em; }
.modal-body h2:first-child, .modal-body h3:first-child { margin-top: 0; }
.modal-body ul, .modal-body ol { padding-left: 22px; }
.modal-body li { margin-bottom: 6px; }
.modal-loading { color: var(--muted); text-align: center; padding: 40px; }
.modal-foot {
    padding: 18px 28px;
    border-top: 1px solid var(--line);
    display: flex; justify-content: flex-end; gap: 10px;
    background: var(--bg);
}

.privacy-content h1 { color: var(--purple); }
.privacy-content h2, .privacy-content h3 { color: var(--purple); margin-top: 1.4em; }

/* ============== Success page ============== */
.success-page { padding: 100px 0; background: linear-gradient(180deg, #fff, #f6f4ff); min-height: 60vh; }
.success-icon {
    width: 84px; height: 84px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, var(--mint), var(--mint-dark));
    color: #fff;
    font-size: 2.2rem; font-weight: 700;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 16px 30px rgba(61, 201, 149, .35);
}
.success-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 30px;
    margin: 30px auto;
    max-width: 480px;
    box-shadow: var(--shadow-md);
}
.success-cta { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
