/* Biriyle — Tanıtım sitesi (localhost kök) */

:root {
    --blue: #2196F3;
    --blue-dark: #1565C0;
    --blue-soft: #e3f2fd;
    --ink: #0f172a;
    --ink-2: #334155;
    --muted: #64748b;
    --line: #e2e8f0;
    --bg: #f8fafc;
    --white: #ffffff;
    --radius: 16px;
    --radius-sm: 10px;
    --shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
    --shadow-lg: 0 20px 50px rgba(15, 23, 42, 0.12);
    --font: 'Plus Jakarta Sans', system-ui, sans-serif;
    --nav-h: 72px;
    --page-max: 1300px;
    --page-gutter: 32px;
    --cta-overlap: 215px;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

[id] {
    scroll-margin-top: calc(var(--nav-h) + 20px);
}

a:focus-visible,
button:focus-visible,
.btn:focus-visible,
input:focus-visible,
select:focus-visible,
.cta-store-btn:focus-visible,
.footer-social__link:focus-visible {
    outline: 2px solid var(--blue);
    outline-offset: 2px;
}

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--ink);
    line-height: 1.6;
    overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
    width: min(var(--page-max), calc(100% - var(--page-gutter) * 2));
    margin-inline: auto;
}

/* ── Hero shell (header + slide tek blok) ── */
.hero-shell {
    position: relative;
    overflow: visible;
    background: var(--bg);
    padding-bottom: 148px;
}

.hero-shell__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

/* ── Nav (hero içinde, sadece çizgi ile ayrım) ── */
.site-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    height: var(--nav-h);
    background: transparent;
    border-bottom: 1px solid var(--line);
    transition: background 0.2s, backdrop-filter 0.2s;
}

.site-nav.is-scrolled {
    background: rgba(248, 250, 252, 0.92);
    backdrop-filter: blur(10px);
}

.site-nav__inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand__icon {
    width: 40px;
    height: 40px;
    border-radius: 11px;
    flex-shrink: 0;
}

.brand__text {
    font-size: 1.375rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1;
    color: var(--ink);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;
}

.nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: var(--ink-2);
    transition: color 0.15s;
}

.nav-links a.is-active {
    color: var(--blue);
    font-weight: 600;
}

.nav-links a:hover { color: var(--blue); }

.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 20px;
    min-height: 40px;
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid transparent;
    box-sizing: border-box;
    cursor: pointer;
    transition: transform 0.15s, box-shadow 0.15s, background 0.15s, border-color 0.15s;
}

.btn:active { transform: scale(0.98); }

.btn-ghost {
    background: transparent;
    color: var(--ink-2);
}

.btn-ghost:hover { color: var(--blue); }

.btn-primary {
    background: var(--blue);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(33, 150, 243, 0.35);
}

.btn-primary:hover {
    background: var(--blue-dark);
    box-shadow: 0 6px 20px rgba(33, 150, 243, 0.4);
}

.btn-outline {
    background: var(--white);
    color: var(--ink);
    border: 1px solid var(--line);
}

.btn-outline:hover {
    border-color: var(--blue);
    color: var(--blue);
}

.btn-lg {
    padding: 15px 28px;
    font-size: 15px;
    border-radius: 12px;
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: var(--white);
    font-size: 22px;
    color: var(--ink);
    cursor: pointer;
}

/* ── Hero slide ── */
.hero {
    position: relative;
    z-index: 1;
    padding: 40px 0 56px;
}

.hero__blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.45;
    animation: blob-drift 18s ease-in-out infinite alternate;
}

.hero__blob--1 {
    width: 520px;
    height: 520px;
    background: #93c5fd;
    top: -140px;
    right: -100px;
}

.hero__blob--2 {
    width: 400px;
    height: 400px;
    background: #bfdbfe;
    bottom: -80px;
    left: -120px;
    animation-delay: -6s;
}

@keyframes blob-drift {
    from { transform: translate(0, 0) scale(1); }
    to   { transform: translate(24px, 16px) scale(1.06); }
}

.hero__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 40px;
    align-items: center;
}

.hero__content {
    animation: hero-fade-up 0.7s ease both;
}

@keyframes hero-fade-up {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 14px 7px 10px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    color: var(--blue-dark);
    margin-bottom: 18px;
    box-shadow: var(--shadow);
}

.hero__badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.25);
    animation: pulse-dot 2s ease infinite;
}

@keyframes pulse-dot {
    0%, 100% { box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.25); }
    50%      { box-shadow: 0 0 0 7px rgba(34, 197, 94, 0.12); }
}

.hero__badge i { font-size: 14px; color: var(--blue); }

.hero__title {
    font-size: clamp(2.35rem, 5vw, 3.45rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.06;
    margin-bottom: 16px;
}

.hero__title-accent {
    background: linear-gradient(135deg, var(--blue) 0%, #0ea5e9 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero__lead {
    font-size: 1.0625rem;
    color: var(--muted);
    max-width: 500px;
    margin-bottom: 24px;
    line-height: 1.65;
}

.hero__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 80px;
}

.hero__cta .btn {
    min-width: 172px;
    justify-content: center;
}

.hero__stats {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px 20px;
    padding: 16px 18px;
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid var(--line);
    border-radius: 14px;
    margin-bottom: 16px;
    backdrop-filter: blur(8px);
}

.hero__stat {
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero__stat-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--blue-soft);
    color: var(--blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.hero__stat strong {
    display: block;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.hero__stat span {
    font-size: 12px;
    color: var(--muted);
}

.hero__stat-divider {
    width: 1px;
    height: 32px;
    background: var(--line);
}

.hero-social {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-social__avatars {
    display: flex;
}

.hero-social__avatars span {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid var(--white);
    margin-left: -8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    color: var(--ink);
}

.hero-social__avatars span:first-child { margin-left: 0; }

.hero-social p {
    font-size: 13px;
    color: var(--muted);
}

.hero-social strong { color: var(--ink); }

/* Phone mockup → assets/promo/phone.css */

/* ── Sections ── */
.section {
    padding: 80px 0;
}

.section--after-search {
    padding-top: 168px;
}

.section--white { background: var(--white); }

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .hero__blob,
    .hero__content,
    .hero__badge-dot { animation: none !important; }
    .activity__waves span,
    .activity__steam span,
    .activity__compass,
    .activity__bag { animation: none !important; }
}


.section__head {
    text-align: center;
    max-width: 560px;
    margin: 0 auto 48px;
}

.section__label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--blue);
    margin-bottom: 10px;
}

.section__head h2 {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 12px;
}

.section__head p {
    color: var(--muted);
    font-size: 16px;
}

/* Activity grid — CSS illüstrasyon kartları */
.activities {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
}

.activity {
    position: relative;
    display: flex;
    flex-direction: column;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 3 / 4;
    background: #f1f5f9;
    border: 1px solid var(--line);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    --act-accent: #64748b;
    --act-bg: #e2e8f0;
    --act-glow: rgba(100, 116, 139, 0.2);
}

.activity:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
    border-color: rgba(33, 150, 243, 0.25);
}

.activity__art {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(160deg, var(--act-bg) 0%, #f8fafc 100%);
    opacity: 1;
    transition: opacity 0.25s ease;
}

.activity:hover .activity__art {
    opacity: 1;
}

.activity__icon {
    position: relative;
    z-index: 2;
    font-size: 2rem;
    color: var(--act-accent);
    transition: transform 0.3s ease;
}

.activity:hover .activity__icon {
    transform: scale(1.12);
}

.activity__label {
    padding: 14px 12px;
    background: var(--white);
    border-top: 1px solid var(--line);
    text-align: center;
}

.activity__label span {
    font-size: 13px;
    font-weight: 700;
    color: var(--ink);
}

/* Konser — dalga + spot */
.activity--konser {
    --act-accent: #7c3aed;
    --act-bg: #ddd6fe;
    --act-glow: rgba(124, 58, 237, 0.35);
}

.activity__glow {
    position: absolute;
    width: 80px;
    height: 80px;
    top: 18%;
    border-radius: 50%;
    background: var(--act-glow);
    filter: blur(20px);
}

.activity__waves {
    position: absolute;
    bottom: 22%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: flex-end;
    gap: 4px;
    height: 36px;
}

.activity__waves span {
    width: 5px;
    border-radius: 3px;
    background: var(--act-accent);
    opacity: 0.5;
    animation: act-wave 1.2s ease-in-out infinite;
}

.activity__waves span:nth-child(1) { height: 14px; animation-delay: 0s; }
.activity__waves span:nth-child(2) { height: 24px; animation-delay: 0.15s; }
.activity__waves span:nth-child(3) { height: 32px; animation-delay: 0.3s; }
.activity__waves span:nth-child(4) { height: 20px; animation-delay: 0.45s; }
.activity__waves span:nth-child(5) { height: 12px; animation-delay: 0.6s; }

@keyframes act-wave {
    0%, 100% { transform: scaleY(0.7); opacity: 0.4; }
    50%      { transform: scaleY(1); opacity: 0.85; }
}

/* Gezi — grid + pusula halkası */
.activity--gezi {
    --act-accent: #0891b2;
    --act-bg: #cffafe;
    --act-glow: rgba(8, 145, 178, 0.3);
}

.activity__grid {
    position: absolute;
    inset: 12%;
    background-image:
        linear-gradient(rgba(100, 116, 139, 0.12) 1px, transparent 1px),
        linear-gradient(90deg, rgba(100, 116, 139, 0.12) 1px, transparent 1px);
    background-size: 14px 14px;
    border-radius: 8px;
}

.activity__compass {
    position: absolute;
    width: 64px;
    height: 64px;
    border: 2px dashed var(--act-accent);
    border-radius: 50%;
    opacity: 0.45;
    animation: act-compass-ring 10s linear infinite;
}

@keyframes act-compass-ring {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

.activity__compass::before {
    content: 'N';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 9px;
    font-weight: 800;
    color: var(--act-accent);
}

/* Alışveriş — çanta şekli */
.activity--alisveris {
    --act-accent: #d97706;
    --act-bg: #fde68a;
    --act-glow: rgba(217, 119, 6, 0.3);
}

.activity__bag {
    position: absolute;
    width: 52px;
    height: 44px;
    bottom: 28%;
    background: var(--act-accent);
    border-radius: 4px 4px 10px 10px;
    opacity: 0.25;
    animation: act-bag-float 2.4s ease-in-out infinite;
}

@keyframes act-bag-float {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-5px); }
}

.activity__bag::before {
    content: '';
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    width: 28px;
    height: 18px;
    border: 3px solid var(--act-accent);
    border-bottom: none;
    border-radius: 14px 14px 0 0;
    opacity: 0.5;
}

/* Spor — pist yayı */
.activity--spor {
    --act-accent: #ea580c;
    --act-bg: #fed7aa;
    --act-glow: rgba(234, 88, 12, 0.3);
}

.activity__track {
    position: absolute;
    width: 90px;
    height: 45px;
    bottom: 24%;
    border: 3px solid var(--act-accent);
    border-top: none;
    border-radius: 0 0 90px 90px;
    opacity: 0.3;
}

.activity__track::after {
    content: '';
    position: absolute;
    inset: 8px 8px -3px;
    border: 2px solid var(--act-accent);
    border-top: none;
    border-radius: 0 0 70px 70px;
    opacity: 0.5;
}

/* Yemek — tabak + buhar */
.activity--yemek {
    --act-accent: #e11d48;
    --act-bg: #fecdd3;
    --act-glow: rgba(225, 29, 72, 0.25);
}

.activity__plate {
    position: absolute;
    width: 56px;
    height: 56px;
    bottom: 26%;
    border-radius: 50%;
    border: 3px solid var(--act-accent);
    opacity: 0.3;
}

.activity__plate::after {
    content: '';
    position: absolute;
    inset: 8px;
    border-radius: 50%;
    background: var(--act-accent);
    opacity: 0.15;
}

.activity__steam {
    position: absolute;
    top: 22%;
    display: flex;
    gap: 6px;
}

.activity__steam span {
    width: 3px;
    height: 18px;
    background: var(--act-accent);
    border-radius: 3px;
    opacity: 0.35;
    animation: act-steam 2s ease-in-out infinite;
}

.activity__steam span:nth-child(2) { animation-delay: 0.4s; height: 24px; }
.activity__steam span:nth-child(3) { animation-delay: 0.8s; }

@keyframes act-steam {
    0%, 100% { transform: translateY(0); opacity: 0.25; }
    50%      { transform: translateY(-6px); opacity: 0.55; }
}

/* Etkinlik — mini takvim */
.activity--etkinlik {
    --act-accent: #2196F3;
    --act-bg: #bfdbfe;
    --act-glow: rgba(33, 150, 243, 0.35);
}

.activity__cal {
    position: absolute;
    bottom: 24%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
    padding: 6px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 8px;
    border: 1px solid rgba(100, 116, 139, 0.15);
}

.activity__cal span {
    width: 14px;
    height: 14px;
    border-radius: 3px;
    background: rgba(100, 116, 139, 0.15);
}

.activity__cal span.is-on {
    background: var(--act-accent);
    box-shadow: 0 2px 6px var(--act-glow);
}

/* Steps — CSS mini UI illüstrasyonları */
.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: stretch;
}

.step {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.step:hover {
    border-color: rgba(33, 150, 243, 0.35);
    box-shadow: 0 12px 32px rgba(33, 150, 243, 0.1);
    transform: translateY(-3px);
}

.step__visual {
    height: 180px;
    flex-shrink: 0;
    padding: 16px;
    border-radius: 12px;
    background: linear-gradient(145deg, #f8fafc 0%, #eef4ff 100%);
    border: 1px solid rgba(33, 150, 243, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.step__visual .step-ui {
    width: 100%;
}

.step__content {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.step__num {
    width: 32px;
    height: 32px;
    background: var(--blue);
    color: var(--white);
    border-radius: 9px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 14px;
    flex-shrink: 0;
}

.step h3 {
    font-size: 17px;
    font-weight: 700;
    line-height: 1.35;
    min-height: 1.35em;
}

.step p {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.55;
    margin: 0;
}

/* Mini UI — keşfet */
.step-ui {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 11px;
}

.step-ui__bar {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 10px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--muted);
    font-weight: 500;
}

.step-ui__bar i { color: var(--blue); font-size: 12px; }

.step-ui__row {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
}

.step-ui__row.is-highlight {
    border-color: rgba(33, 150, 243, 0.35);
    background: rgba(33, 150, 243, 0.04);
}

.step-ui__dot {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, #93c5fd, #2196F3);
    flex-shrink: 0;
}

.step-ui__dot--muted {
    background: linear-gradient(135deg, #cbd5e1, #94a3b8);
}

.step-ui__text {
    flex: 1;
    min-width: 0;
    line-height: 1.3;
}

.step-ui__text strong {
    display: block;
    font-size: 11px;
    color: var(--ink);
}

.step-ui__text small {
    font-size: 10px;
    color: var(--muted);
}

.step-ui__pill {
    padding: 3px 8px;
    border-radius: 999px;
    background: var(--blue-soft);
    color: var(--blue);
    font-size: 9px;
    font-weight: 700;
    white-space: nowrap;
}

/* Mini UI — rezervasyon */
.step-ui__calendar {
    display: flex;
    gap: 6px;
    justify-content: center;
}

.step-ui__calendar span {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    font-weight: 600;
    color: var(--ink-2);
}

.step-ui__calendar span.is-active {
    background: var(--blue);
    border-color: var(--blue);
    color: #fff;
    box-shadow: 0 4px 10px rgba(33, 150, 243, 0.3);
}

.step-ui__time {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    color: var(--ink-2);
    font-weight: 600;
}

.step-ui__time i { color: var(--blue); }

.step-ui__confirm {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 10px;
    background: #ecfdf5;
    border: 1px solid #bbf7d0;
    border-radius: 8px;
    color: #15803d;
    font-weight: 600;
}

.step-ui__confirm i {
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #22c55e;
    color: #fff;
    border-radius: 50%;
    font-size: 11px;
}

/* Mini UI — buluşma */
.step-ui__map {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    padding: 12px 8px;
}

.step-ui__map-pin {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}

.step-ui__map-pin--a {
    background: var(--blue-soft);
    color: var(--blue);
}

.step-ui__map-pin--b {
    background: #dcfce7;
    color: #16a34a;
}

.step-ui__map-path {
    flex: 1;
    max-width: 80px;
    height: 2px;
    background: repeating-linear-gradient(
        90deg,
        var(--blue) 0,
        var(--blue) 6px,
        transparent 6px,
        transparent 12px
    );
    position: relative;
}

.step-ui__map-path::after {
    content: '';
    position: absolute;
    right: -4px;
    top: 50%;
    transform: translateY(-50%);
    border: 5px solid transparent;
    border-left-color: var(--blue);
}

.step-ui__rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 8px 10px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
}

.step-ui__rating i {
    font-size: 12px;
    color: #eab308;
}

.step-ui__rating span {
    margin-left: 4px;
    font-size: 10px;
    font-weight: 600;
    color: var(--ink-2);
}

.step:hover .step-ui__calendar span.is-active {
    transform: scale(1.08);
    transition: transform 0.2s ease;
}

.step:hover .step-ui__map-path {
    background: repeating-linear-gradient(
        90deg,
        #16a34a 0,
        #16a34a 6px,
        transparent 6px,
        transparent 12px
    );
}

.step:hover .step-ui__map-path::after {
    border-left-color: #16a34a;
}

/* Kimler için — tek blok, yan yana iki sütun */
.audience-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.audience-split__col {
    display: flex;
    flex-direction: column;
    min-width: 0;
    height: 100%;
}

.audience-split__col--guest {
    border-right: 1px solid var(--line);
}

.audience-split__col:hover {
    background: #fafbfc;
}

.audience-split__visual {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 32px 36px;
    height: 252px;
    flex-shrink: 0;
}

.audience-split__col--guest .audience-split__visual {
    background: linear-gradient(180deg, #e3f2fd 0%, #f8fbff 100%);
}

.audience-split__col--host .audience-split__visual {
    background: linear-gradient(180deg, #ede9fe 0%, #f5f3ff 100%);
}

.audience-split__body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 32px 36px 36px;
    border-top: 1px solid var(--line);
}

.audience-split__tag {
    display: inline-flex;
    align-self: flex-start;
    align-items: center;
    height: 26px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    padding: 0 10px;
    border-radius: 999px;
    margin-bottom: 12px;
    flex-shrink: 0;
}

.audience-split__tag--guest {
    background: var(--blue-soft);
    color: var(--blue-dark);
}

.audience-split__tag--host {
    background: #ede9fe;
    color: #6d28d9;
}

.audience-split__col--guest .audience-split__body h3 {
    margin-top: 38px;
}

.audience-split__body h3 {
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.25;
    height: calc(1.35rem * 1.25);
    margin-bottom: 8px;
    flex-shrink: 0;
}

.audience-split__body > p {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.6;
    height: calc(14px * 1.6 * 3);
    margin-bottom: 16px;
    flex-shrink: 0;
}

.audience-split__feats {
    display: flex;
    flex-direction: column;
    gap: 10px;
    height: calc(36px * 3 + 10px * 2);
    flex-shrink: 0;
}

.audience-split__feats span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    height: 36px;
    font-size: 13px;
    font-weight: 500;
    color: var(--ink-2);
    line-height: 1.35;
}

.audience-split__feats i {
    width: 26px;
    height: 26px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
}

.audience-split__col--guest .audience-split__feats i {
    background: var(--blue-soft);
    color: var(--blue);
}

.audience-split__col--host .audience-split__feats i {
    background: #ede9fe;
    color: #7c3aed;
}

.audience-split__body .btn {
    width: 100%;
    justify-content: center;
    min-height: 48px;
    margin-top: 32px;
    flex-shrink: 0;
}

/* Mini UI — misafir / host */
.audience-ui {
    width: 100%;
    min-height: 176px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    font-size: 11px;
}

.audience-ui__search,
.audience-ui__card,
.audience-ui__slot,
.audience-ui__earn {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 10px;
}

.audience-ui__search {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    color: var(--muted);
    font-weight: 500;
}

.audience-ui__search i {
    color: var(--blue);
    font-size: 13px;
}

.audience-ui__card {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    border-color: rgba(33, 150, 243, 0.25);
    box-shadow: 0 4px 14px rgba(33, 150, 243, 0.08);
}

.audience-ui__avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #93c5fd, #2196F3);
    flex-shrink: 0;
}

.audience-ui__meta {
    flex: 1;
    min-width: 0;
    line-height: 1.35;
}

.audience-ui__meta strong {
    display: block;
    font-size: 12px;
    color: var(--ink);
}

.audience-ui__meta small {
    font-size: 10px;
    color: var(--muted);
}

.audience-ui__price {
    font-size: 11px;
    font-weight: 700;
    color: var(--blue);
    white-space: nowrap;
}

.audience-ui__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.audience-ui__chips span {
    padding: 4px 10px;
    border-radius: 999px;
    background: var(--white);
    border: 1px solid var(--line);
    font-size: 10px;
    font-weight: 600;
    color: var(--ink-2);
}

.audience-ui__cal {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 6px;
    padding: 10px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 10px;
}

.audience-ui__cal span {
    text-align: center;
    padding: 8px 0;
    border-radius: 8px;
    font-size: 10px;
    font-weight: 600;
    color: var(--muted);
    background: #f8fafc;
}

.audience-ui__cal span.is-on {
    background: #7c3aed;
    color: var(--white);
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.35);
}

.audience-ui__slot {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    color: var(--ink-2);
    font-weight: 500;
}

.audience-ui__slot i {
    color: #7c3aed;
}

.audience-ui__earn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 14px;
    border-color: rgba(124, 58, 237, 0.2);
    background: linear-gradient(135deg, #faf5ff 0%, #ffffff 100%);
}

.audience-ui__earn small {
    display: block;
    font-size: 10px;
    color: var(--muted);
    margin-bottom: 2px;
}

.audience-ui__earn strong {
    font-size: 18px;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--ink);
}

.audience-ui__earn-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px 10px;
    border-radius: 999px;
    background: #dcfce7;
    color: #15803d;
    font-size: 11px;
    font-weight: 700;
    white-space: nowrap;
}

/* Trust — sade ikon bandı */
.trust-band {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.trust-band__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 36px 24px;
    position: relative;
    transition: background 0.2s ease;
}

.trust-band__item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: var(--line);
}

.trust-band__item:hover {
    background: #fafbfc;
}

.trust-band__icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 18px;
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.trust-band__item:hover .trust-band__icon {
    transform: scale(1.06);
}

.trust-band__icon--blue {
    background: #e3f2fd;
    color: #1976d2;
}

.trust-band__icon--cyan {
    background: #e0f7fa;
    color: #00838f;
}

.trust-band__icon--amber {
    background: #fff8e1;
    color: #f9a825;
}

.trust-band__icon--green {
    background: #e8f5e9;
    color: #2e7d32;
}

.trust-band__item h4 {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.35;
    min-height: 2.7em;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}

.trust-band__item p {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.55;
    margin: 0;
    max-width: 220px;
}

/* CTA banner */
#guven {
    background: var(--white);
    padding-bottom: calc(var(--cta-overlap) + 32px);
}

.cta-bridge {
    position: relative;
    z-index: 1;
    margin-top: calc(var(--cta-overlap) * -1);
    padding-bottom: 56px;
}

.cta-bridge::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(
        to bottom,
        var(--white) 0,
        var(--white) var(--cta-overlap),
        #0f172a var(--cta-overlap),
        #0f172a 100%
    );
}

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

.cta-banner {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    padding: 72px 56px;
    text-align: center;
    color: var(--white);
    background:
        radial-gradient(ellipse 80% 60% at 85% 15%, rgba(33, 150, 243, 0.22) 0%, transparent 55%),
        radial-gradient(ellipse 50% 40% at 10% 90%, rgba(99, 102, 241, 0.12) 0%, transparent 50%),
        linear-gradient(145deg, #070d18 0%, #0f172a 42%, #111827 100%);
    border: 1px solid rgba(255, 255, 255, 0.09);
    box-shadow:
        0 4px 0 rgba(255, 255, 255, 0.04) inset,
        0 28px 64px rgba(15, 23, 42, 0.28);
}

.cta-banner__glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.cta-banner__glow--1 {
    width: 420px;
    height: 420px;
    background: var(--blue);
    opacity: 0.32;
    filter: blur(90px);
    top: -160px;
    right: -80px;
}

.cta-banner__glow--2 {
    width: 280px;
    height: 280px;
    background: #6366f1;
    opacity: 0.16;
    filter: blur(70px);
    bottom: -120px;
    left: -60px;
}

.cta-banner__glow--3 {
    width: 180px;
    height: 180px;
    background: #38bdf8;
    opacity: 0.14;
    filter: blur(50px);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.cta-banner__inner {
    position: relative;
    z-index: 1;
    max-width: 680px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cta-banner__label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 28px;
    padding: 0 14px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #93c5fd;
    background: rgba(33, 150, 243, 0.12);
    border: 1px solid rgba(147, 197, 253, 0.2);
    border-radius: 999px;
    margin-bottom: 20px;
}

.cta-banner h2 {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -0.035em;
    line-height: 1.15;
    margin-bottom: 16px;
    white-space: nowrap;
}

.cta-banner p {
    font-size: 16px;
    color: #94a3b8;
    line-height: 1.65;
    margin-bottom: 36px;
    max-width: 560px;
}

.cta-banner__actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.cta-banner__stores {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.cta-store-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 168px;
    padding: 12px 18px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.06);
    color: #f8fafc;
    transition: border-color 0.15s, background 0.15s, transform 0.15s, box-shadow 0.15s;
}

.cta-store-btn:hover {
    border-color: rgba(33, 150, 243, 0.45);
    background: rgba(33, 150, 243, 0.12);
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(33, 150, 243, 0.2);
}

.cta-store-btn i {
    font-size: 22px;
    color: #f8fafc;
}

.cta-store-btn span {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    text-align: left;
}

.cta-store-btn small {
    font-size: 10px;
    color: #94a3b8;
    font-weight: 500;
}

.cta-store-btn strong {
    font-size: 13px;
    font-weight: 700;
    color: #ffffff;
}

.cta-banner__btn {
    min-width: 188px;
}

.btn-cta-secondary {
    background: rgba(255, 255, 255, 0.06);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(8px);
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.28);
    color: var(--white);
    transform: translateY(-1px);
}

/* Footer */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.site-footer {
    padding: 48px 0 28px;
    background: #0f172a;
    color: #e2e8f0;
}

.site-footer .brand__text {
    color: #ffffff;
}

.footer-main {
    --footer-brand-width: 300px;
    --footer-subscribe-width: 400px;
    display: grid;
    grid-template-columns: minmax(0, var(--footer-brand-width)) minmax(0, 1fr) minmax(0, var(--footer-subscribe-width));
    gap: 48px 40px;
    align-items: start;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
    width: 100%;
    max-width: var(--footer-brand-width);
    display: flex;
    flex-direction: column;
    gap: 0;
}

.footer-brand .brand {
    margin-bottom: 18px;
}

.footer-brand .brand__icon {
    box-shadow: 0 4px 14px rgba(33, 150, 243, 0.25);
}

.footer-brand__text {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 22px;
    padding-bottom: 22px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand__text p {
    font-size: 14px;
    color: #94a3b8;
    line-height: 1.75;
    margin: 0;
}

.footer-brand__tagline {
    color: #e2e8f0 !important;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.footer-brand__actions {
    display: flex;
    flex-direction: column;
    gap: 14px;
    width: 100%;
}

.footer-social {
    display: flex;
    gap: 8px;
    width: 100%;
}

.footer-social__link {
    width: 40px;
    height: 40px;
    border-radius: 11px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.05);
    color: #cbd5e1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    transition: color 0.15s, border-color 0.15s, background 0.15s, transform 0.15s;
}

.footer-social__link:hover {
    color: #ffffff;
    border-color: rgba(33, 150, 243, 0.5);
    background: rgba(33, 150, 243, 0.14);
    transform: translateY(-1px);
}

.footer-nav {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px 20px;
}

.footer-col h5,
.footer-subscribe h5 {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 14px;
    line-height: 1.4;
    color: #ffffff;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col a {
    display: block;
    font-size: 14px;
    line-height: 1.7;
    color: #94a3b8;
    transition: color 0.15s;
}

.footer-col a:hover {
    color: #ffffff;
}

.footer-subscribe {
    width: 100%;
    max-width: var(--footer-subscribe-width, 320px);
}

.footer-subscribe__form {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
}

.footer-subscribe__form input[type="email"] {
    width: 100%;
    height: 44px;
    padding: 0 14px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 14px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.06);
    transition: border-color 0.15s, background 0.15s;
}

.footer-subscribe__form input[type="email"]::placeholder {
    color: #64748b;
}

.footer-subscribe__form input[type="email"]:focus {
    outline: none;
    border-color: rgba(33, 150, 243, 0.5);
    background: rgba(255, 255, 255, 0.08);
}

.footer-subscribe__form .btn {
    width: 100%;
    min-height: 44px;
    justify-content: center;
}

.footer-subscribe__accept {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 2px;
    cursor: pointer;
    font-size: 13px;
    line-height: 1.4;
    color: #94a3b8;
}

.footer-subscribe__accept input[type="checkbox"] {
    width: 16px;
    height: 16px;
    margin: 0;
    flex-shrink: 0;
    accent-color: var(--blue);
    cursor: pointer;
}

.footer-subscribe__accept span {
    white-space: nowrap;
}

.footer-subscribe__accept a {
    color: #cbd5e1;
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color 0.15s;
}

.footer-subscribe__accept a:hover {
    color: #ffffff;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    padding-top: 24px;
    font-size: 13px;
    color: #64748b;
}

.footer-bottom__links {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-bottom__links a {
    color: #94a3b8;
    transition: color 0.15s;
}

.footer-bottom__links a:hover {
    color: #ffffff;
}

.footer-dev {
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size: 12px;
    color: #64748b;
}

.footer-dev a {
    color: #94a3b8;
    transition: color 0.15s;
}

.footer-dev a:hover {
    color: #ffffff;
}

.promo-toast {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(12px);
    z-index: 9999;
    padding: 12px 18px;
    border-radius: 999px;
    background: #0f172a;
    color: #f8fafc;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.28);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.promo-toast.is-visible {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* Mobile nav */
@media (max-width: 960px) {
    .hero__grid { grid-template-columns: 1fr; }
    .hero__visual { min-height: 460px; margin-top: 12px; }
    .hero-float--1 { right: auto; left: calc(50% - var(--phone-half) - 90px); }
    .hero-float--2 { right: 0; left: auto; }
    .hero-badge--stat { right: 0; left: auto; }
    .activities { grid-template-columns: repeat(3, 1fr); }
    .steps { grid-template-columns: 1fr; }
    .audience-split { grid-template-columns: 1fr; }
    .audience-split__col--guest { border-right: none; border-bottom: 1px solid var(--line); }
    .audience-split__visual { height: auto; min-height: 220px; padding: 28px 24px; }
    .audience-split__body { padding: 28px 24px 32px; }
    .audience-split__body > p { height: auto; min-height: calc(14px * 1.6 * 2); }
    .audience-split__feats { height: auto; }
    .audience-split__feats span { height: auto; min-height: 32px; }
    .audience-split__body .btn { margin-top: 24px; }
    .trust-band { grid-template-columns: repeat(2, 1fr); }
    .trust-band__item:nth-child(2)::after { display: none; }
    .trust-band__item:nth-child(odd):not(:last-child)::after {
        content: '';
        display: block;
        position: absolute;
        right: 0;
        top: 20%;
        height: 60%;
        width: 1px;
        background: var(--line);
    }
    .trust-band__item:nth-child(-n+2) {
        border-bottom: 1px solid var(--line);
    }
    .footer-main { grid-template-columns: 1fr 1fr; }
    .footer-subscribe { grid-column: 1 / -1; }
    .footer-nav { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    body.nav-open { overflow: hidden; }

    body.nav-open::before {
        content: '';
        position: fixed;
        inset: 0;
        top: var(--nav-h);
        background: rgba(15, 23, 42, 0.45);
        z-index: 15;
    }

    .nav-links,
    .nav-actions { display: none; }

    .nav-toggle { display: flex; align-items: center; justify-content: center; }

    .site-nav.is-open { z-index: 20; }

    .site-nav.is-open .nav-links,
    .site-nav.is-open .nav-actions {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg);
        border-bottom: 1px solid var(--line);
        padding: 20px 24px 24px;
        box-shadow: var(--shadow-lg);
    }

    .site-nav.is-open .nav-links { align-items: flex-start; gap: 16px; }
    .site-nav.is-open .nav-actions { width: 100%; gap: 10px; }
    .site-nav.is-open .nav-actions .btn { width: 100%; }

    .footer-subscribe__accept span { white-space: normal; }

    .hero { padding: 28px 0 24px; }
    .hero__stat-divider { display: none; }
    .hero__stats { gap: 12px; }
    .hero-float { max-width: 200px; padding: 10px 12px; }
    .hero-phone { --float-half: 100px; }
    .hero-phone__shift { --float-half: 100px; }
    .hero-float--1 { top: 0; left: calc(50% - var(--phone-half) - var(--float-half)); }
    .hero-float--2 { bottom: 8%; right: 0; left: auto; }
    .hero-badge--stat { right: 0; left: auto; }
    .hero-orbit { display: none; }
    .activities { grid-template-columns: repeat(2, 1fr); }
    .trust-band { grid-template-columns: 1fr; }
    .trust-band__item::after { display: none !important; }
    .trust-band__item:not(:last-child) {
        border-bottom: 1px solid var(--line);
    }
    .footer-main { grid-template-columns: 1fr; gap: 36px; }
    .footer-nav { grid-template-columns: 1fr 1fr; gap: 28px 20px; }
    .footer-bottom { flex-direction: column; align-items: flex-start; }
    .footer-subscribe { max-width: none; }
    .cta-banner { padding: 52px 28px; border-radius: 22px; }
    .cta-banner h2 { font-size: clamp(1.5rem, 6vw, 1.85rem); white-space: normal; }
    .cta-banner__stores { width: 100%; max-width: 360px; }
    .cta-store-btn { flex: 1; min-width: 0; }
    .cta-banner__actions { width: 100%; max-width: 360px; }
    .cta-banner__btn { width: 100%; min-width: 0; }
}
