/* ============================================================
   BestQRMenu — Premium Landing
   Light theme only. Turquoise + soft mint, amber accent.
   ============================================================ */

:root {
    --primary: #0D9488;
    --primary-500: #14B8A6;
    --primary-700: #0F766E;
    --background: #F2FAFA;
    --content-1: #E8FAF6;
    --foreground: #124B47;
    --warning: #F59E0B;
    --white: #FFFFFF;

    --fg-soft: rgba(18, 75, 71, 0.66);
    --fg-faint: rgba(18, 75, 71, 0.42);
    --line: rgba(13, 148, 136, 0.14);
    --line-strong: rgba(13, 148, 136, 0.26);
    --glass: rgba(255, 255, 255, 0.72);
    --shadow-sm: 0 2px 10px -2px rgba(15, 118, 110, 0.10);
    --shadow-md: 0 14px 36px -14px rgba(15, 118, 110, 0.20);
    --shadow-lg: 0 32px 70px -28px rgba(15, 118, 110, 0.30);
    --radius-sm: 12px;
    --radius-md: 18px;
    --radius-lg: 26px;
    --radius-xl: 36px;

    --font-display: 'Sora', 'Inter', sans-serif;
    --font-body: 'Inter', sans-serif;

    --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
    --section-pad: clamp(72px, 9vw, 130px);
    --container: 1200px;
}

/* ---------- Reset / base ---------- */

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

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

body {
    margin: 0;
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
    color: var(--foreground);
    background: var(--background);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; text-decoration: none; }

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
    color: inherit;
}

h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.14;
    letter-spacing: -0.02em;
    margin: 0;
    color: var(--foreground);
}

p { margin: 0; }

ul { margin: 0; padding: 0; list-style: none; }

::selection { background: rgba(20, 184, 166, 0.25); }

/* ---------- Layout helpers ---------- */

.container {
    width: 100%;
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 40px);
}

.section { padding: var(--section-pad) 0; position: relative; }

[id] { scroll-margin-top: 92px; }

.section-head {
    max-width: 680px;
    margin: 0 auto clamp(40px, 6vw, 72px);
    text-align: center;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 16px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--primary-700);
    background: var(--white);
    border: 1px solid var(--line-strong);
    box-shadow: var(--shadow-sm);
    margin-bottom: 18px;
}

.section-badge svg { width: 15px; height: 15px; color: var(--primary); }

.section-title {
    font-size: clamp(28px, 4.2vw, 46px);
    margin-bottom: 16px;
}

.section-desc {
    font-size: clamp(15px, 1.6vw, 18px);
    color: var(--fg-soft);
}

/* ---------- Reveal animations ---------- */

.reveal {
    opacity: 0;
    transform: translateY(34px);
    transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
    transition-delay: var(--reveal-delay, 0s);
    will-change: opacity, transform;
}

.reveal.in-view {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left { transform: translateX(-44px); }
.reveal-right { transform: translateX(44px); }
.reveal-left.in-view, .reveal-right.in-view { transform: translateX(0); }

/* ---------- Background blobs ---------- */

.bg-blobs {
    position: fixed;
    inset: 0;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.55;
    animation: blobFloat 22s ease-in-out infinite alternate;
}

.blob-1 {
    width: 560px; height: 560px;
    top: -180px; right: -140px;
    background: radial-gradient(circle, rgba(20, 184, 166, 0.30), transparent 70%);
}

.blob-2 {
    width: 480px; height: 480px;
    top: 38%; left: -200px;
    background: radial-gradient(circle, rgba(13, 148, 136, 0.22), transparent 70%);
    animation-delay: -8s;
}

.blob-3 {
    width: 420px; height: 420px;
    bottom: -160px; right: 12%;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.14), transparent 70%);
    animation-delay: -14s;
}

@keyframes blobFloat {
    0%   { transform: translate(0, 0) scale(1); }
    50%  { transform: translate(40px, -34px) scale(1.08); }
    100% { transform: translate(-30px, 26px) scale(0.96); }
}

/* ---------- QR Scroll Guide ---------- */

.qr-guide-wrap {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.qr-guide-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.qr-guide-ghost {
    stroke: rgba(13, 148, 136, 0.07);
    stroke-width: 0.5;
    stroke-dasharray: 1 3;
}

.qr-guide-drawn {
    stroke: url(#qrGuideGrad);
    stroke-width: 0.65;
    stroke-linecap: round;
    stroke-dasharray: 1;
    stroke-dashoffset: 1;
}

.qr-dot {
    position: fixed;
    top: 0;
    left: 0;
    width: 80px;
    height: 80px;
    padding: 7px;
    background: rgba(242, 250, 250, 0.10);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border-radius: 12px;
    border: 1px solid rgba(20, 184, 166, 0.22);
    box-shadow: 0 4px 18px -4px rgba(15, 118, 110, 0.15);
    opacity: 0;
    pointer-events: none;
    will-change: transform, opacity;
    z-index: -1;
    overflow: hidden;
}

.qr-code-svg {
    display: block;
    width: 100%;
    height: 100%;
}

@media (max-width: 768px) {
    .qr-dot          { width: 64px; height: 64px; padding: 5px; }
    .qr-guide-ghost  { stroke: rgba(13, 148, 136, 0.04); }
    .qr-guide-drawn  { stroke-width: 0.45; }
}

@media (prefers-reduced-motion: reduce) {
    .qr-guide-wrap  { transition: none; }
    .qr-guide-drawn { stroke-dashoffset: 0 !important; }
    .qr-dot         { display: none !important; }
}

/* ---------- Buttons ---------- */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 999px;
    font-size: 15.5px;
    font-weight: 600;
    letter-spacing: 0.01em;
    transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out), background 0.35s;
    position: relative;
    white-space: nowrap;
}

.btn svg { width: 18px; height: 18px; }

.btn-primary {
    color: var(--white);
    background: linear-gradient(120deg, var(--primary-500), var(--primary) 55%, var(--primary-700));
    box-shadow: 0 12px 30px -10px rgba(13, 148, 136, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.btn-primary::after {
    content: "";
    position: absolute;
    inset: -3px;
    border-radius: inherit;
    background: linear-gradient(120deg, rgba(20, 184, 166, 0.4), rgba(245, 158, 11, 0.28));
    filter: blur(14px);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s;
}

.btn-primary:hover { transform: translateY(-3px); }
.btn-primary:hover::after { opacity: 1; }

.btn-ghost {
    color: var(--primary-700);
    background: var(--white);
    border: 1px solid var(--line-strong);
    box-shadow: var(--shadow-sm);
}

.btn-ghost:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.btn-sm { padding: 10px 20px; font-size: 14px; }

/* ============================================================
   1. NAVBAR
   ============================================================ */

.site-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    transition: background 0.4s, box-shadow 0.4s, border-color 0.4s, backdrop-filter 0.4s;
    border-bottom: 1px solid transparent;
}

.site-nav.scrolled {
    background: var(--glass);
    -webkit-backdrop-filter: blur(18px) saturate(160%);
    backdrop-filter: blur(18px) saturate(160%);
    border-bottom-color: var(--line);
    box-shadow: 0 8px 30px -16px rgba(15, 118, 110, 0.18);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    height: 76px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    text-decoration: none;
    color: inherit;
}

.brand-mark {
    display: block;
    width: 36px;
    height: 36px;
    object-fit: contain;
    flex-shrink: 0;
}

.brand-name {
    font-family: var(--font-display, 'Sora', sans-serif);
    font-size: 1.25rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text-primary, #0f172a);
}

.brand-logo {
    display: block;
    width: auto;
    max-width: 180px;
    height: auto;
}

@media (min-width: 900px) {
    .brand-logo {
        max-width: 220px;
    }
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-links a {
    padding: 9px 15px;
    border-radius: 999px;
    font-size: 14.5px;
    font-weight: 500;
    color: var(--fg-soft);
    transition: color 0.25s, background 0.25s;
}

.nav-links a:hover {
    color: var(--primary-700);
    background: rgba(13, 148, 136, 0.08);
}

.nav-cta { display: flex; align-items: center; gap: 12px; }

.nav-login {
    font-size: 14.5px;
    font-weight: 600;
    color: var(--primary-700);
    padding: 9px 14px;
    border-radius: 999px;
    transition: background 0.25s;
}

.nav-login:hover { background: rgba(13, 148, 136, 0.08); }

.nav-burger {
    display: none;
    width: 44px; height: 44px;
    border-radius: 12px;
    border: 1px solid var(--line-strong);
    background: var(--white);
    place-items: center;
    color: var(--primary-700);
}

.nav-burger svg { width: 21px; height: 21px; }

.mobile-menu {
    display: none;
    position: fixed;
    top: 76px; left: 0; right: 0;
    z-index: 99;
    padding: 14px 20px 24px;
    background: var(--glass);
    -webkit-backdrop-filter: blur(20px) saturate(160%);
    backdrop-filter: blur(20px) saturate(160%);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s var(--ease-out), transform 0.35s var(--ease-out);
}

.mobile-menu.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.mobile-menu a {
    display: block;
    padding: 13px 10px;
    font-size: 16px;
    font-weight: 600;
    color: var(--foreground);
    border-bottom: 1px solid var(--line);
}

.mobile-menu .btn { width: 100%; margin-top: 16px; }

/* ============================================================
   2. HERO
   ============================================================ */

.hero {
    position: relative;
    padding: calc(76px + clamp(48px, 8vw, 100px)) 0 clamp(64px, 8vw, 110px);
    overflow: hidden;
    background-image: url('/Clients/landing/images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        rgba(242, 250, 250, 0.82) 0%,
        rgba(232, 250, 246, 0.70) 45%,
        rgba(242, 250, 250, 0.40) 100%
    );
    pointer-events: none;
    z-index: 0;
}

.hero > * { position: relative; z-index: 1; }

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    align-items: center;
    gap: clamp(36px, 5vw, 72px);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 8px 18px;
    border-radius: 999px;
    background: var(--white);
    border: 1px solid var(--line-strong);
    box-shadow: var(--shadow-sm);
    font-size: 13.5px;
    font-weight: 600;
    color: var(--primary-700);
    margin-bottom: 26px;
}

.hero-badge svg { width: 15px; height: 15px; color: var(--warning); }

.hero-title {
    font-size: clamp(36px, 5.4vw, 62px);
    margin-bottom: 22px;
}

.hero-title .grad {
    background: linear-gradient(110deg, var(--primary-500) 10%, var(--primary) 45%, var(--warning) 120%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-desc {
    font-size: clamp(15.5px, 1.7vw, 18.5px);
    color: var(--fg-soft);
    max-width: 540px;
    margin-bottom: 36px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: clamp(20px, 3vw, 40px);
    padding-top: 28px;
    border-top: 1px solid var(--line);
}

.stat-num {
    font-family: var(--font-display);
    font-size: clamp(24px, 2.6vw, 32px);
    font-weight: 700;
    color: var(--primary-700);
    line-height: 1.1;
}

.stat-label {
    font-size: 13.5px;
    color: var(--fg-faint);
    font-weight: 500;
}

/* --- Hero video --- */

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    min-height: 540px;
}

/* --- Hero image collage --- */

.hero-img-collage {
    position: relative;
    width: 100%;
    max-width: 540px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr auto;
    gap: 10px;
    z-index: 2;
    animation: collageFloat 7s ease-in-out infinite;
}

@keyframes collageFloat {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-14px); }
}

/* Ana restoran görseli — sol sütun tamamı */
.hic-main {
    grid-column: 1;
    grid-row: 1;
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.hic-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .6s var(--ease-out);
}

.hic-main:hover img { transform: scale(1.04); }

.hic-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, rgba(13,148,136,0.10) 0%, rgba(18,75,71,0.30) 100%);
    pointer-events: none;
}

/* Sağ sütun — QR menü + yemek */
.hic-side {
    grid-column: 2;
    grid-row: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.hic-side-top,
.hic-side-bottom {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    flex: 1;
}

.hic-side-top img,
.hic-side-bottom img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .6s var(--ease-out);
}

.hic-side-top:hover img,
.hic-side-bottom:hover img { transform: scale(1.05); }

.hic-badge {
    position: absolute;
    bottom: 10px;
    left: 10px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.90);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid var(--line-strong);
    border-radius: 100px;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary-700);
    box-shadow: 0 2px 10px rgba(13,148,136,0.18);
    pointer-events: none;
}

.hic-badge svg { width: 14px; height: 14px; color: var(--primary); }

/* Alt yatay şerit — içecekler */
.hic-bottom {
    grid-column: 1 / -1;
    grid-row: 2;
    position: relative;
    height: 110px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.hic-bottom img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    object-position: center 60%;
    transition: transform .6s var(--ease-out);
}

.hic-bottom:hover img { transform: scale(1.04); }

.hic-overlay-soft {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(18,75,71,0.28) 0%, transparent 60%);
    pointer-events: none;
}

.hic-bottom-label {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    text-shadow: 0 1px 4px rgba(0,0,0,0.35);
    pointer-events: none;
}

.hic-bottom-label svg { width: 15px; height: 15px; }

.phone {
    width: 285px;
    border-radius: 44px;
    padding: 12px;
    background: linear-gradient(160deg, #134e4a, #0f3733);
    box-shadow: var(--shadow-lg), inset 0 1px 1px rgba(255, 255, 255, 0.18);
    position: relative;
    z-index: 2;
}

.phone::before {
    content: "";
    position: absolute;
    top: 12px; left: 50%;
    transform: translateX(-50%);
    width: 110px; height: 26px;
    border-radius: 0 0 16px 16px;
    background: #0f3733;
    z-index: 3;
}

.phone-screen {
    border-radius: 34px;
    overflow: hidden;
    background: var(--background);
    aspect-ratio: 9 / 19;
    position: relative;
}

.hero-phone { animation: phoneFloat 7s ease-in-out infinite; }

@keyframes phoneFloat {
    0%, 100% { transform: translateY(0) rotate(0.4deg); }
    50%      { transform: translateY(-18px) rotate(-0.6deg); }
}

/* --- Mock menu UI inside phone --- */

.mock {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    padding: 42px 16px 16px;
    gap: 12px;
}

.mock-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mock-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
}

.mock-logo i {
    width: 26px; height: 26px;
    border-radius: 8px;
    display: grid;
    place-items: center;
    color: var(--white);
    background: linear-gradient(135deg, var(--primary-500), var(--primary-700));
    font-style: normal;
}

.mock-logo i svg { width: 14px; height: 14px; }

.mock-lang {
    font-size: 10.5px;
    font-weight: 700;
    color: var(--primary-700);
    background: var(--content-1);
    border: 1px solid var(--line);
    padding: 4px 9px;
    border-radius: 999px;
}

.mock-search {
    height: 34px;
    border-radius: 11px;
    background: var(--white);
    border: 1px solid var(--line);
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 11px;
    font-size: 11px;
    color: var(--fg-faint);
}

.mock-search svg { width: 13px; height: 13px; }

.mock-cats {
    display: flex;
    gap: 7px;
    overflow: hidden;
}

.mock-cat {
    flex-shrink: 0;
    padding: 6px 13px;
    border-radius: 999px;
    font-size: 10.5px;
    font-weight: 600;
    color: var(--fg-soft);
    background: var(--white);
    border: 1px solid var(--line);
}

.mock-cat.on {
    color: var(--white);
    background: linear-gradient(120deg, var(--primary-500), var(--primary-700));
    border-color: transparent;
}

.mock-card {
    display: flex;
    gap: 10px;
    padding: 9px;
    border-radius: 14px;
    background: var(--white);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
}

.mock-thumb {
    width: 52px; height: 52px;
    flex-shrink: 0;
    border-radius: 11px;
    display: grid;
    place-items: center;
    color: var(--primary-700);
    background: linear-gradient(135deg, var(--content-1), #d7f5ec);
}

.mock-thumb svg { width: 22px; height: 22px; }

.mock-thumb.amber {
    color: #b45309;
    background: linear-gradient(135deg, #fef3c7, #fde68a);
}

.mock-lines { flex: 1; display: flex; flex-direction: column; justify-content: center; gap: 6px; }

.mock-line { height: 8px; border-radius: 999px; background: rgba(18, 75, 71, 0.12); }
.mock-line.w60 { width: 60%; }
.mock-line.w40 { width: 40%; }
.mock-line.w80 { width: 80%; }

.mock-price {
    align-self: center;
    font-size: 12px;
    font-weight: 700;
    color: var(--primary-700);
}

.mock-banner {
    margin-top: auto;
    border-radius: 14px;
    padding: 12px 14px;
    color: var(--white);
    background: linear-gradient(120deg, var(--primary), var(--primary-700));
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 600;
    box-shadow: var(--shadow-md);
}

.mock-banner svg { width: 18px; height: 18px; color: #fcd34d; flex-shrink: 0; }

/* --- Floating cards around phone --- */

.float-card {
    position: absolute;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 11px 16px;
    border-radius: 14px;
    background: var(--glass);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.85);
    box-shadow: var(--shadow-md);
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-700);
    z-index: 3;
    animation: floatCard 6s ease-in-out infinite;
    will-change: transform;
}

.float-card svg { width: 17px; height: 17px; color: var(--primary); }

.float-card.amber svg { color: var(--warning); }

.fc-1 { top: 7%; left: -4%; animation-delay: -1s; }
.fc-2 { top: 24%; right: -7%; animation-delay: -2.4s; }
.fc-3 { top: 49%; left: -11%; animation-delay: -3.6s; }
.fc-4 { top: 66%; right: -5%; animation-delay: -1.8s; }
.fc-5 { bottom: 9%; left: 1%; animation-delay: -4.6s; }
.fc-6 { bottom: -2%; right: 9%; animation-delay: -3s; }

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-13px); }
}

.hero-glow {
    position: absolute;
    width: 460px; height: 460px;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(20, 184, 166, 0.22), rgba(245, 158, 11, 0.07) 55%, transparent 72%);
    z-index: 1;
    pointer-events: none;
}

/* ============================================================
   3. TRUST STRIP
   ============================================================ */

.trust { padding: clamp(36px, 5vw, 60px) 0; }

.trust-text {
    text-align: center;
    font-size: 14.5px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--fg-faint);
    margin-bottom: 30px;
}

.trust-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
}

.trust-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 24px;
    border-radius: 999px;
    background: var(--white);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
    font-size: 14.5px;
    font-weight: 600;
    color: var(--fg-soft);
    transition: transform 0.35s var(--ease-out), box-shadow 0.35s, color 0.3s, border-color 0.3s;
}

.trust-item svg { width: 18px; height: 18px; color: var(--primary); }

.trust-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    color: var(--primary-700);
    border-color: var(--line-strong);
}

/* ---------- #urun — RESTORAN PANELİ cihaz görselleri ---------- */

#urun .urun-devices {
    display: flex;
    justify-content: center;
    position: relative;
}

#urun .urun-panel-browser {
    width: 100%;
    max-width: 350px;
    border-radius: 18px;
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--line-strong);
    box-shadow: rgba(15, 118, 110, 0.5) 0 44px 80px -34px;
    transition: transform 0.45s var(--ease-out);
    transform-origin: center center;
}

#urun .urun-panel-browser:hover {
    transform: scale(1.045);
}

#urun .urun-panel-browser img {
    width: 100%;
    display: block;
}

#urun .urun-panel-browser-bar {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 11px 14px;
    background: var(--white);
    border-bottom: 1px solid var(--line);
}

#urun .urun-panel-dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    flex-shrink: 0;
}

#urun .urun-panel-dot-red { background: rgb(255, 95, 87); }
#urun .urun-panel-dot-yellow { background: rgb(254, 188, 46); }
#urun .urun-panel-dot-green { background: rgb(40, 200, 64); }

#urun .urun-panel-url {
    margin-left: 14px;
    flex: 1 1 0%;
    height: 22px;
    border-radius: 7px;
    background: var(--content-1);
    display: flex;
    align-items: center;
    padding: 0 12px;
    font-size: 11px;
    color: var(--fg-faint);
    gap: 6px;
    min-width: 0;
}

#urun .urun-panel-url span {
    display: inline-flex;
    color: var(--primary);
}

#urun .urun-panel-url svg {
    width: 12px;
    height: 12px;
}

#urun .urun-panel-phone {
    position: absolute;
    right: -8px;
    bottom: -20px;
    width: 348px;
    border-radius: 14px;
    overflow: hidden;
    background: rgb(11, 36, 34);
    padding: 6px;
    box-shadow: rgba(6, 48, 43, 0.6) 0 28px 50px -24px;
    transition: transform 0.45s var(--ease-out);
    transform-origin: center bottom;
    z-index: 2;
}

#urun .urun-panel-phone:hover {
    transform: scale(1.06);
}

#urun .urun-panel-phone-screen {
    border-radius: 10px;
    overflow: hidden;
    background: var(--white);
}

#urun .urun-panel-phone-screen img {
    width: 100%;
    display: block;
}

/* ============================================================
   4. VISUAL SHOWCASE (marquee gallery)
   ============================================================ */

.showcase { overflow: visible; }

/* Gallery card base */
.gallery-card {
    position: relative;
    width: 320px;
    height: 220px;
    flex-shrink: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.55);
    box-shadow: 0 8px 32px -12px rgba(15, 118, 110, 0.18), 0 2px 8px -2px rgba(0,0,0,0.08);
    display: flex;
    align-items: flex-end;
    transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
    cursor: zoom-in;
}

.gallery-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 24px 56px -16px rgba(15, 118, 110, 0.32), 0 4px 16px -4px rgba(0,0,0,0.12);
}

.gallery-card.tall { width: 210px; height: 300px; }

/* Image fill */
.gc-bg {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    color: rgba(15, 118, 110, 0.5);
    border-radius: inherit;
    overflow: hidden;
}

.gc-bg svg { width: 52px; height: 52px; }

.gc-bg img,
.gc-photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s var(--ease-out);
}

.gallery-card:hover .gc-bg img { transform: scale(1.08); }

.gallery-card.has-photo .gc-bg {
    inset: 0;
    display: block;
    border-radius: inherit;
    overflow: hidden;
}

.gallery-card.has-photo .gc-bg svg { display: none; }

/* Card color backgrounds */
.gc-1 { background: linear-gradient(140deg, #d7f5ec, #aae8d8); }
.gc-2 { background: linear-gradient(140deg, #fdf0d5, #fbe1a8); }
.gc-3 { background: linear-gradient(140deg, #ccf3ea, #8fdcc9); }
.gc-4 { background: linear-gradient(140deg, #e2f8f2, #b9ecdd); }
.gc-5 { background: linear-gradient(140deg, #d2f1ed, #9adfd2); }
.gc-6 { background: linear-gradient(140deg, #fdeede, #fbd9ab); }
.gc-7 { background: linear-gradient(140deg, #def7ef, #abe7d4); }

/* Hover overlay — slides up from bottom */
.gc-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0;
    pointer-events: none;
}

.gc-overlay::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(6, 35, 30, 0.82) 0%,
        rgba(6, 35, 30, 0.4) 45%,
        transparent 100%
    );
    opacity: 0;
    transition: opacity 0.38s var(--ease-out);
}

.gallery-card:hover .gc-overlay::before { opacity: 1; }

.gc-overlay-badge {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    align-self: flex-start;
    margin: 0 14px 8px;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--white);
    background: rgba(13, 148, 136, 0.75);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.18);
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s var(--ease-out) 0.05s, transform 0.35s var(--ease-out) 0.05s;
}

.gc-overlay-badge svg { width: 11px; height: 11px; }

.gc-overlay-title {
    position: relative;
    z-index: 1;
    margin: 0 14px 16px;
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    line-height: 1.3;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s var(--ease-out) 0.1s, transform 0.35s var(--ease-out) 0.1s;
}

.gallery-card:hover .gc-overlay-badge,
.gallery-card:hover .gc-overlay-title {
    opacity: 1;
    transform: translateY(0);
}

/* Video tag */
.gc-tag {
    position: absolute;
    top: 14px; left: 14px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 999px;
    color: var(--primary-700);
    background: rgba(255, 255, 255, 0.90);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(13, 148, 136, 0.18);
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.gc-tag svg { width: 11px; height: 11px; }

/* Play button */
.gc-play {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 56px; height: 56px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--primary-700);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 8px 24px rgba(0,0,0,0.18);
    z-index: 3;
    transition: transform 0.3s var(--ease-out), background 0.2s;
}

.gallery-card:hover .gc-play {
    transform: scale(1.12);
    background: #fff;
}

.gc-play svg { width: 22px; height: 22px; margin-left: 3px; }

/* Galeri lightbox */

body.gallery-lightbox-open {
    overflow: hidden;
}

.gallery-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(16px, 4vw, 40px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.28s var(--ease-out), visibility 0.28s var(--ease-out);
}

.gallery-lightbox.is-open {
    opacity: 1;
    visibility: visible;
}

.gallery-lightbox[hidden] {
    display: none !important;
}

.gallery-lightbox.is-open[hidden] {
    display: flex !important;
}

.gallery-lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10, 35, 33, 0.82);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    cursor: zoom-out;
}

.gallery-lightbox-dialog {
    position: relative;
    z-index: 1;
    width: min(96vw, 1100px);
    max-height: 92vh;
    display: flex;
    flex-direction: column;
    transform: scale(0.94) translateY(12px);
    transition: transform 0.32s var(--ease-out);
}

.gallery-lightbox.is-open .gallery-lightbox-dialog {
    transform: scale(1) translateY(0);
}

.gallery-lightbox-close {
    position: absolute;
    top: -12px;
    right: -12px;
    z-index: 2;
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--primary-700);
    background: var(--white);
    box-shadow: var(--shadow-md);
    cursor: pointer;
    transition: transform 0.2s var(--ease-out), background 0.2s var(--ease-out);
}

.gallery-lightbox-close:hover {
    transform: scale(1.06);
    background: #f0fdf9;
}

.gallery-lightbox-close svg {
    width: 20px;
    height: 20px;
}

.gallery-lightbox-nav {
    position: absolute;
    top: 50%;
    z-index: 2;
    width: 46px;
    height: 46px;
    margin-top: -23px;
    border: none;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--primary-700);
    background: var(--white);
    box-shadow: var(--shadow-md);
    cursor: pointer;
    transition: transform 0.2s var(--ease-out), background 0.2s var(--ease-out), opacity 0.2s var(--ease-out);
}

.gallery-lightbox-nav:hover {
    transform: scale(1.06);
    background: #f0fdf9;
}

.gallery-lightbox-nav svg {
    width: 22px;
    height: 22px;
}

.gallery-lightbox-nav:disabled {
    opacity: 0.35;
    cursor: default;
    pointer-events: none;
}
.gallery-lightbox-prev { left: -58px; }
.gallery-lightbox-next { right: -58px; }

.gallery-lightbox-figure {
    margin: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow-lg);
}

.gallery-lightbox-figure img {
    display: block;
    width: 100%;
    max-height: calc(92vh - 64px);
    object-fit: contain;
    background: #0f2e2b;
}

.gallery-lightbox-figure figcaption {
    padding: 14px 18px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-700);
    text-align: center;
    background: var(--white);
    border-top: 1px solid rgba(15, 118, 110, 0.1);
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.gallery-lightbox-counter {
    font-size: 12px;
    font-weight: 500;
    color: rgba(15, 118, 110, 0.65);
}

@media (max-width: 768px) {
    .gallery-lightbox-prev { left: 8px; }
    .gallery-lightbox-next { right: 8px; }
    .gallery-lightbox-nav {
        width: 40px;
        height: 40px;
        margin-top: -20px;
        background: rgba(255, 255, 255, 0.94);
    }
}

/* ============================================================
   4b. ACCORDION GALLERY
   ============================================================ */

.acc-gallery {
    display: flex;
    align-items: stretch;
    gap: 10px;
    height: 420px;
    width: 100%;
}

/* Items start equal. Only flex-grow and box-shadow animate — no transforms. */
.acc-item {
    flex: 1 1 0;
    min-width: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    cursor: default;
    background-color: #0b2420;
    transition: flex-grow 480ms cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow  480ms cubic-bezier(0.4, 0, 0.2, 1);
}

.acc-item:hover {
    flex-grow: 4;
    box-shadow: 0 28px 64px -14px rgba(4, 18, 16, 0.55);
    z-index: 1;
}

/*
  KEY FIX — height-anchored image, zero rescaling on width change:
  • height: 100%  → always locked to container height (never changes)
  • width: auto   → natural aspect ratio, computed once from height
  • left: 50% + translateX(-50%) → keeps center visible as container expands
  • max-width: none → prevents browser from clamping width
  Result: container expanding just REVEALS more image left/right. No zoom.
*/
.acc-item img {
    display: block;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    pointer-events: none;
    filter: brightness(0.88) saturate(0.85);
    transition: filter 480ms cubic-bezier(0.4, 0, 0.2, 1),
                transform 480ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* Non-hovered items dim slightly so the active item pops */
.acc-gallery:hover .acc-item:not(:hover) img {
    filter: brightness(0.65) saturate(0.70);
}

/* Active item: full vibrancy + zoom */
.acc-item:hover img {
    filter: brightness(1.0) saturate(1.05);
    transform: scale(1.07);
}

/* Gradient overlay — fades in when item expands */
.acc-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(4, 18, 16, 0.92) 0%,
        rgba(4, 18, 16, 0.28) 55%,
        transparent 100%
    );
    opacity: 0;
    transition: opacity 380ms cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px 18px 22px;
    gap: 6px;
    pointer-events: none;
}

.acc-item:hover .acc-overlay {
    opacity: 1;
}

/* Badge slides up from below — translateY only, never scale */
.acc-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    align-self: flex-start;
    padding: 4px 11px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
    color: var(--white);
    background: rgba(13, 148, 136, 0.80);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.20);
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 300ms cubic-bezier(0.4, 0, 0.2, 1) 80ms,
                transform 320ms cubic-bezier(0.4, 0, 0.2, 1) 80ms;
    white-space: nowrap;
}

.acc-badge svg { width: 11px; height: 11px; }

/* Title slides up from below on a slight stagger delay */
.acc-title {
    color: var(--white);
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.3;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 300ms cubic-bezier(0.4, 0, 0.2, 1) 150ms,
                transform 320ms cubic-bezier(0.4, 0, 0.2, 1) 150ms;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.acc-item:hover .acc-badge,
.acc-item:hover .acc-title {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    .acc-gallery {
        height: 260px;
        gap: 7px;
    }

    .acc-item:hover {
        flex: 3 1 0;
    }

    .acc-title { font-size: 12px; }
    .acc-badge { font-size: 10px; padding: 3px 9px; }
}

@media (max-width: 480px) {
    .acc-gallery {
        height: 200px;
        gap: 5px;
    }

    .acc-item { border-radius: var(--radius-md); }
    .acc-overlay { padding: 12px 10px 14px; gap: 4px; }
}

/* ============================================================
   4c. ACCORDION LIGHTBOX
   ============================================================ */

.acc-lb {
    position: fixed;
    inset: 0;
    z-index: 9900;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    box-sizing: border-box;
    opacity: 0;
    transition: opacity 0.38s ease;
}

.acc-lb[hidden] { display: none !important; }

.acc-lb.acc-lb-open { opacity: 1; }

.acc-lb-bd {
    position: absolute;
    inset: 0;
    background: rgba(4, 18, 16, 0.92);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    cursor: zoom-out;
}

.acc-lb-dlg {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    max-width: min(94vw, 1060px);
    width: 100%;
    transform: scale(0.82) translateY(36px);
    opacity: 0;
    transition: transform 0.50s cubic-bezier(0.22, 1, 0.36, 1),
                opacity 0.34s ease;
    transform-origin: var(--lb-ox, 50%) var(--lb-oy, 50%);
}

.acc-lb.acc-lb-open .acc-lb-dlg {
    transform: scale(1) translateY(0);
    opacity: 1;
}

.acc-lb-iw {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 48px 96px -24px rgba(0, 0, 0, 0.72),
                0 0 0 1px rgba(255, 255, 255, 0.07);
    line-height: 0;
    max-width: 100%;
    max-height: 76vh;
    display: flex;
}

.acc-lb-iw img {
    display: block;
    max-width: min(94vw, 1060px);
    max-height: 76vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: inherit;
}

.acc-lb-iw.lb-out-l img { animation: lbOutL 0.18s ease forwards; }
.acc-lb-iw.lb-in-r  img { animation: lbInR  0.30s cubic-bezier(0.22, 1, 0.36, 1) forwards; }
.acc-lb-iw.lb-out-r img { animation: lbOutR 0.18s ease forwards; }
.acc-lb-iw.lb-in-l  img { animation: lbInL  0.30s cubic-bezier(0.22, 1, 0.36, 1) forwards; }

@keyframes lbOutL { to   { opacity: 0; transform: translateX(-30px); } }
@keyframes lbOutR { to   { opacity: 0; transform: translateX(30px);  } }
@keyframes lbInR  { from { opacity: 0; transform: translateX(30px);  } to { opacity: 1; transform: translateX(0); } }
@keyframes lbInL  { from { opacity: 0; transform: translateX(-30px); } to { opacity: 1; transform: translateX(0); } }

.acc-lb-x {
    position: absolute;
    top: -15px;
    right: -15px;
    z-index: 2;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: var(--white);
    color: var(--primary-700);
    display: grid;
    place-items: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.28);
    cursor: pointer;
    transition: transform 0.24s var(--ease-out), background 0.2s;
    outline: none;
}

.acc-lb-x:hover {
    transform: scale(1.1) rotate(90deg);
    background: #ecfdf5;
}

.acc-lb-x svg { width: 18px; height: 18px; }

.acc-lb-nav {
    position: absolute;
    top: 50%;
    z-index: 2;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-700);
    display: grid;
    place-items: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.28);
    cursor: pointer;
    transition: transform 0.22s ease, background 0.2s, opacity 0.2s;
    outline: none;
}

.acc-lb-nav:disabled { opacity: 0.30; pointer-events: none; }
.acc-lb-nav:hover    { background: #ecfdf5; }
.acc-lb-nav svg      { width: 22px; height: 22px; }

.acc-lb-p       { left: -62px;  transform: translateY(-50%); }
.acc-lb-p:hover { transform: translateY(-50%) translateX(-4px); }
.acc-lb-n       { right: -62px; transform: translateY(-50%); }
.acc-lb-n:hover { transform: translateY(-50%) translateX(4px); }

.acc-lb-cap {
    display: flex;
    align-items: center;
    gap: 10px;
}

#accLbCapBadge {
    display: inline-flex;
    align-items: center;
    padding: 4px 13px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.03em;
    color: var(--white);
    background: rgba(13, 148, 136, 0.82);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
}

#accLbCapTitle {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.72);
}

.acc-lb-dots {
    display: flex;
    gap: 7px;
    justify-content: center;
    margin-top: -4px;
}

.acc-lb-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.28);
    cursor: pointer;
    padding: 0;
    transition: background 0.25s, transform 0.25s;
}

.acc-lb-dot.active { background: var(--primary-500); transform: scale(1.35); }
.acc-lb-dot:hover  { background: rgba(255, 255, 255, 0.60); }

@media (max-width: 768px) {
    .acc-lb-p { left: 10px; }
    .acc-lb-n { right: 10px; }
    .acc-lb-nav { width: 38px; height: 38px; }
    .acc-lb-x { top: -10px; right: -8px; }
    .acc-lb-iw { border-radius: 14px; max-height: 68vh; }
    .acc-lb-iw img { max-height: 68vh; }
    .acc-lb { padding: 16px; }
}

/* ============================================================
   5. PROBLEM / SOLUTION
   ============================================================ */

.compare-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(20px, 3vw, 32px);
    align-items: stretch;
}

.compare-col {
    border-radius: var(--radius-xl);
    padding: clamp(26px, 3.4vw, 44px);
    border: 1px solid var(--line);
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.compare-col.solution {
    background: linear-gradient(160deg, var(--content-1), #dcf6ee);
    border-color: var(--line-strong);
    box-shadow: var(--shadow-md);
}

.compare-head {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 26px;
}

.compare-icon {
    width: 46px; height: 46px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
}

.compare-col.problem .compare-icon {
    color: #b45309;
    background: #fef3c7;
}

.compare-col.solution .compare-icon {
    color: var(--white);
    background: linear-gradient(135deg, var(--primary-500), var(--primary-700));
    box-shadow: 0 8px 18px -8px rgba(13, 148, 136, 0.6);
}

.compare-icon svg { width: 22px; height: 22px; }

.compare-head h3 { font-size: clamp(19px, 2vw, 23px); }

.compare-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 13px 0;
    font-size: 15px;
    color: var(--fg-soft);
    border-bottom: 1px solid var(--line);
}

.compare-list li:last-child { border-bottom: none; }

.compare-list li svg {
    width: 19px; height: 19px;
    flex-shrink: 0;
    margin-top: 2px;
}

.compare-col.problem .compare-list li svg { color: rgba(180, 83, 9, 0.7); }
.compare-col.solution .compare-list li svg { color: var(--primary); }
.compare-col.solution .compare-list li { color: var(--foreground); font-weight: 500; }

/* ============================================================
   6. FEATURES
   ============================================================ */

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.feature-tile {
    padding: 30px 28px;
    border-radius: var(--radius-lg);
    background: var(--white);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
    transition: transform 0.45s var(--ease-out), box-shadow 0.45s, border-color 0.35s;
}

.feature-tile:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow-md);
    border-color: var(--line-strong);
}

.feature-icon {
    width: 50px; height: 50px;
    border-radius: 15px;
    display: grid;
    place-items: center;
    color: var(--primary-700);
    background: linear-gradient(135deg, var(--content-1), #d2f3e8);
    border: 1px solid var(--line);
    margin-bottom: 19px;
    transition: transform 0.45s var(--ease-out);
}

.feature-tile:hover .feature-icon { transform: scale(1.08) rotate(-4deg); }

.feature-icon svg { width: 23px; height: 23px; }

.feature-tile h3 { font-size: 17.5px; margin-bottom: 9px; }

.feature-tile p { font-size: 14.5px; color: var(--fg-soft); }

/* ============================================================
   7. STICKY PRODUCT EXPERIENCE
   ============================================================ */

.journey-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(40px, 6vw, 90px);
    align-items: start;
}

.journey-steps { display: flex; flex-direction: column; }

.journey-step {
    padding: clamp(36px, 6vh, 64px) 0;
    opacity: 0.3;
    transition: opacity 0.5s;
}

.journey-step.active { opacity: 1; }

.step-no {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--primary);
    margin-bottom: 14px;
}

.step-no::before {
    content: "";
    width: 34px; height: 2px;
    border-radius: 2px;
    background: linear-gradient(to right, var(--primary-500), var(--warning));
}

.journey-step h3 { font-size: clamp(21px, 2.4vw, 28px); margin-bottom: 12px; }

.journey-step p { font-size: 15.5px; color: var(--fg-soft); max-width: 420px; }

.journey-sticky {
    position: sticky;
    top: 110px;
    display: flex;
    justify-content: center;
    padding: 20px 0 40px;
}

.journey-phone-wrap { position: relative; }

.journey-phone-wrap .hero-glow { width: 380px; height: 380px; }

.journey-screen {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: translateY(22px) scale(0.98);
    transition: opacity 0.55s var(--ease-out), transform 0.55s var(--ease-out);
    pointer-events: none;
}

.journey-screen.active {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* QR scan screen */
.mock-qr {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.mock-qr-box {
    width: 130px; height: 130px;
    border-radius: 18px;
    display: grid;
    place-items: center;
    color: var(--primary-700);
    background: var(--white);
    border: 2px dashed var(--line-strong);
    position: relative;
    overflow: hidden;
}

.mock-qr-box svg { width: 72px; height: 72px; }

.mock-qr-box::after {
    content: "";
    position: absolute;
    left: 8px; right: 8px;
    height: 3px;
    border-radius: 3px;
    background: linear-gradient(to right, transparent, var(--primary-500), transparent);
    animation: qrScan 2.4s ease-in-out infinite;
}

@keyframes qrScan {
    0%, 100% { top: 12%; }
    50%      { top: 84%; }
}

.mock-qr-text { font-size: 12px; font-weight: 600; color: var(--fg-soft); text-align: center; }

.mock-detail-img {
    height: 130px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    color: var(--primary-700);
    background: linear-gradient(135deg, var(--content-1), #cdf2e6);
}

.mock-detail-img svg { width: 44px; height: 44px; }

.mock-title-line { height: 12px; width: 65%; border-radius: 999px; background: rgba(18, 75, 71, 0.2); }

.mock-badge-row { display: flex; gap: 6px; }

.mock-chip {
    font-size: 9.5px;
    font-weight: 700;
    padding: 4px 9px;
    border-radius: 999px;
    color: var(--primary-700);
    background: var(--content-1);
    border: 1px solid var(--line);
}

.mock-chip.amber { color: #b45309; background: #fef3c7; border-color: #fde68a; }

.mock-btn {
    margin-top: auto;
    height: 40px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    font-size: 12px;
    font-weight: 700;
    color: var(--white);
    background: linear-gradient(120deg, var(--primary-500), var(--primary-700));
    box-shadow: var(--shadow-sm);
}

.mock-grid2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9px;
}

.mock-cat-tile {
    border-radius: 13px;
    padding: 13px 11px;
    background: var(--white);
    border: 1px solid var(--line);
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 10.5px;
    font-weight: 600;
    color: var(--fg-soft);
}

.mock-cat-tile svg { width: 19px; height: 19px; color: var(--primary); }

.mock-admin-row {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 10px;
    border-radius: 12px;
    background: var(--white);
    border: 1px solid var(--line);
    font-size: 10.5px;
    font-weight: 600;
    color: var(--fg-soft);
}

.mock-admin-row svg { width: 15px; height: 15px; color: var(--primary); flex-shrink: 0; }

.mock-admin-row .ok { margin-left: auto; color: var(--primary); }

.mock-toggle {
    margin-left: auto;
    width: 30px; height: 17px;
    border-radius: 999px;
    background: var(--primary-500);
    position: relative;
    flex-shrink: 0;
}

.mock-toggle::after {
    content: "";
    position: absolute;
    top: 2px; right: 2px;
    width: 13px; height: 13px;
    border-radius: 50%;
    background: var(--white);
}

/* ============================================================
   8. PRICING  (admin CKEditor içeriği — .pricing-card sözleşmesi)
   ============================================================ */

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    align-items: stretch;
}

.pricing-card-host {
    display: flex;
    flex-direction: column;
}

.pricing-card {
    position: relative;
    display: flex;
    flex-direction: column;
    flex: 1;
    border-radius: var(--radius-xl);
    padding: clamp(28px, 3vw, 40px) clamp(24px, 2.6vw, 34px);
    background: var(--white);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
    transition: transform 0.45s var(--ease-out), box-shadow 0.45s;
}

.pricing-card:hover {
    transform: translateY(-9px);
    box-shadow: var(--shadow-lg);
}

.pricing-card-host:has(.pricing-card.popular) {
    z-index: 1;
}

.pricing-card.popular {
    background:
        linear-gradient(var(--white), var(--white)) padding-box,
        linear-gradient(150deg, var(--primary-500), var(--primary-700) 60%, var(--warning)) border-box;
    border: 2px solid transparent;
    box-shadow: var(--shadow-lg);
}

.pricing-card .popular-badge {
    position: absolute;
    top: -16px; left: 50%;
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 20px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    color: var(--white);
    background: linear-gradient(110deg, var(--warning), #f97316);
    box-shadow: 0 10px 24px -8px rgba(245, 158, 11, 0.55);
    white-space: nowrap;
}

.pricing-card .popular-badge svg { width: 14px; height: 14px; }

.pricing-card .pricing-header {
    padding-bottom: 22px;
    margin-bottom: 22px;
    border-bottom: 1px solid var(--line);
}

.pricing-card .pricing-header h3,
.pricing-card .pricing-plan-name {
    font-family: var(--font-display);
    font-size: 21px;
    font-weight: 700;
    color: var(--foreground);
    margin: 0 0 8px;
}

.pricing-card .pricing-header p,
.pricing-card .pricing-description {
    font-size: 14px;
    color: var(--fg-soft);
    margin: 0;
}

.pricing-card .pricing-price {
    display: flex;
    align-items: baseline;
    gap: 3px;
    margin-bottom: 26px;
}

.pricing-card .pricing-price .currency {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-700);
}

.pricing-card .pricing-price .amount {
    font-family: var(--font-display);
    font-size: 46px;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1;
    background: linear-gradient(120deg, var(--primary-500), var(--primary-700));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pricing-card .pricing-price .amount.custom { font-size: 32px; }

.pricing-card .pricing-price .period {
    font-size: 15px;
    font-weight: 500;
    color: var(--fg-faint);
    margin-left: 4px;
}

.pricing-card .pricing-features,
.pricing-card ul {
    margin: 0 0 30px;
    padding: 0;
    list-style: none;
    flex: 1;
}

.pricing-card .pricing-features li,
.pricing-card ul li {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    padding: 7px 0;
    font-size: 14.5px;
    color: var(--fg-soft);
}

.pricing-card .pricing-features li svg,
.pricing-card ul li svg {
    width: 18px; height: 18px;
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--primary);
}

.pricing-card .pricing-features li.disabled,
.pricing-card ul li.disabled { opacity: 0.42; }

.pricing-card .pricing-features li.disabled svg { color: var(--fg-faint); }

.pricing-card .pricing-button,
.pricing-card button {
    width: 100%;
    padding: 14px 24px;
    border-radius: 14px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    color: var(--primary-700);
    background: var(--content-1);
    border: 1px solid var(--line-strong);
    transition: transform 0.35s var(--ease-out), box-shadow 0.35s, background 0.35s, color 0.35s;
    cursor: pointer;
}

.pricing-card .pricing-button:hover,
.pricing-card button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.pricing-card.popular .pricing-button,
.pricing-card.popular .pricing-button-popular,
.pricing-card.popular button {
    color: var(--white);
    background: linear-gradient(120deg, var(--primary-500), var(--primary-700));
    border: none;
    box-shadow: 0 12px 28px -10px rgba(13, 148, 136, 0.6);
}

/* ── Kart altı seç butonu ── */
.pricing-card-actions {
    padding: 14px 0 4px;
}

.pricing-card-actions .btn,
.pricing-card-actions button {
    width: 100%;
    padding: 14px 24px;
    border-radius: 14px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    color: var(--primary-700);
    background: var(--content-1);
    border: 1px solid var(--line-strong);
    transition: transform 0.35s var(--ease-out), box-shadow 0.35s, background 0.35s, color 0.35s;
    cursor: pointer;
}

.pricing-card-actions .btn:hover,
.pricing-card-actions button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.pricing-card-host:has(.pricing-card.popular) .pricing-card-actions .btn,
.pricing-card-host:has(.pricing-card.popular) .pricing-card-actions button {
    color: var(--white);
    background: linear-gradient(120deg, var(--primary-500), var(--primary-700));
    border: none;
    box-shadow: 0 12px 28px -10px rgba(13, 148, 136, 0.6);
}

/* ── Kampanya: eski fiyat + indirim rozeti (admin CKEditor içeriğinde kullanılır) ── */

.pricing-card .discount-ribbon {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 7px 14px;
    font-size: 12.5px;
    font-weight: 800;
    letter-spacing: .01em;
    color: #fff;
    background: linear-gradient(120deg, #ef4444, #f97316);
    border-radius: 999px;
    box-shadow: 0 10px 22px -8px rgba(239, 68, 68, 0.55);
    white-space: nowrap;
    animation: campaign-banner-pulse 1.8s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
    .pricing-card .discount-ribbon { animation: none !important; }
}

.pricing-card .discount-ribbon svg { width: 13px; height: 13px; }

.pricing-price:has(.price-old) {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
}

.pricing-card .price-old {
    display: inline-flex;
    align-items: baseline;
    gap: 7px;
}

.pricing-card .price-old-label {
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--fg-faint);
}

.pricing-card .price-old-amount {
    position: relative;
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    letter-spacing: .01em;
    color: rgba(190, 40, 40, 0.68);
}

.pricing-card .price-old-amount::after {
    content: "";
    position: absolute;
    left: -4%;
    right: -4%;
    top: 54%;
    height: 2px;
    border-radius: 2px;
    background: linear-gradient(90deg, transparent, #ef4444 12%, #ef4444 88%, transparent);
    transform: rotate(-4deg);
}

.pricing-price:has(.price-old) .currency {
    font-size: 32px;
    font-weight: 800;
    letter-spacing: -0.02em;
    background: linear-gradient(120deg, var(--primary-500), var(--primary-700));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pricing-card .campaign-deadline {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    margin: 6px 0 22px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    color: #b45309;
    background: rgba(245, 158, 11, 0.12);
    border: 1px solid rgba(245, 158, 11, 0.30);
}

.pricing-card .campaign-deadline svg { width: 13px; height: 13px; }

/* ── Kampanya banner (fiyat kartlarının üstü) ── */

.campaign-banner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 40px;
    padding: clamp(26px, 4vw, 40px) clamp(28px, 4vw, 48px);
    border-radius: var(--radius-xl);
    background: linear-gradient(130deg, #3f0d0d 0%, #dc2626 55%, #7c1d1d 100%);
    overflow: hidden;
    box-shadow: 0 24px 60px -20px rgba(220, 38, 38, 0.55);
    animation: campaign-banner-ring 2.6s ease-in-out infinite;
}

.campaign-banner__glow {
    pointer-events: none;
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 80% at 15% 40%, rgba(249, 115, 22, 0.30) 0%, transparent 70%),
        radial-gradient(ellipse 30% 60% at 90% 80%, rgba(253, 224, 71, 0.16) 0%, transparent 60%);
}

.campaign-banner__shine {
    pointer-events: none;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 28%;
    background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.20), transparent);
    transform: translateX(-160%) skewX(-12deg);
    animation: campaign-banner-shine 3.6s ease-in-out infinite;
}

.campaign-banner__left {
    position: relative;
    flex: 1;
    min-width: 0;
}

.campaign-banner__tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: #fff;
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.32);
    margin-bottom: 14px;
    animation: campaign-banner-pulse 1.8s ease-in-out infinite;
}

.campaign-banner__tag svg { width: 13px; height: 13px; }

.campaign-banner__title {
    font-family: var(--font-display);
    font-size: clamp(20px, 2.6vw, 28px);
    font-weight: 800;
    color: #fff;
    margin: 0 0 10px;
    line-height: 1.25;
}

.campaign-banner__title strong {
    color: #fde68a;
}

.campaign-banner__desc {
    font-size: 14.5px;
    color: rgba(255, 255, 255, 0.80);
    margin: 0;
    max-width: 480px;
}

.campaign-banner__right {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
    padding: 10px 26px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.campaign-banner__days {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 52px);
    font-weight: 900;
    letter-spacing: -.04em;
    line-height: 1;
    color: transparent;
    background: linear-gradient(120deg, #fde68a, #fff 60%, #fbbf24);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.campaign-banner__days-label {
    font-size: 11.5px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.72);
    margin: 0;
    letter-spacing: .06em;
    text-transform: uppercase;
    white-space: nowrap;
}

@keyframes campaign-banner-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.06); }
}

@keyframes campaign-banner-shine {
    0%  { transform: translateX(-160%) skewX(-12deg); }
    35% { transform: translateX(420%) skewX(-12deg); }
    100% { transform: translateX(420%) skewX(-12deg); }
}

@keyframes campaign-banner-ring {
    0%, 100% { box-shadow: 0 24px 60px -20px rgba(220, 38, 38, 0.55); }
    50% { box-shadow: 0 24px 70px -12px rgba(220, 38, 38, 0.78); }
}

@media (prefers-reduced-motion: reduce) {
    .campaign-banner,
    .campaign-banner__tag,
    .campaign-banner__shine {
        animation: none !important;
    }
}

/* ── Deneme banner ── */

.trial-banner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 40px;
    padding: clamp(28px, 4vw, 44px) clamp(28px, 4vw, 52px);
    border-radius: var(--radius-xl);
    background: linear-gradient(130deg, #0c1f1e 0%, #0F766E 55%, #134e4a 100%);
    overflow: hidden;
    box-shadow: 0 24px 60px -20px rgba(13, 148, 136, 0.55);
}

.trial-banner__glow {
    pointer-events: none;
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 80% at 80% 50%, rgba(20,184,166,.22) 0%, transparent 70%),
        radial-gradient(ellipse 30% 60% at 10% 20%, rgba(245,158,11,.12) 0%, transparent 60%);
}

.trial-banner__left {
    position: relative;
    flex: 1;
    min-width: 0;
}

.trial-banner__tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: #fde68a;
    background: rgba(245, 158, 11, 0.18);
    border: 1px solid rgba(245, 158, 11, 0.32);
    margin-bottom: 14px;
}

.trial-banner__tag svg { width: 13px; height: 13px; }

.trial-banner__title {
    font-family: var(--font-display);
    font-size: clamp(20px, 2.6vw, 28px);
    font-weight: 800;
    color: #fff;
    margin: 0 0 10px;
    line-height: 1.2;
}

.trial-banner__desc {
    font-size: 15px;
    color: rgba(255,255,255,.72);
    margin: 0 0 20px;
    max-width: 420px;
}

.trial-banner__checks {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 24px;
}

.trial-banner__checks li {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 14px;
    color: rgba(255,255,255,.85);
}

.trial-banner__checks li svg {
    width: 16px; height: 16px;
    color: #34d399;
    flex-shrink: 0;
}

.trial-banner__right {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.trial-banner__badge {
    font-family: var(--font-display);
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 900;
    letter-spacing: -.04em;
    line-height: 1;
    color: transparent;
    background: linear-gradient(120deg, #f59e0b, #fde68a 60%, #f97316);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.trial-banner__free {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,.6);
    margin: 0;
    letter-spacing: .03em;
    text-transform: uppercase;
}

.trial-banner__btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 14px 32px;
    border-radius: 14px;
    font-size: 15px;
    font-weight: 700;
    color: var(--foreground);
    background: linear-gradient(120deg, #f59e0b, #fbbf24);
    border: none;
    box-shadow: 0 14px 32px -10px rgba(245,158,11,.60);
    text-decoration: none;
    transition: transform .35s var(--ease-out), box-shadow .35s;
    white-space: nowrap;
}

.trial-banner__btn svg { width: 17px; height: 17px; }

.trial-banner__btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px -12px rgba(245,158,11,.70);
    color: var(--foreground);
    text-decoration: none;
}

.trial-banner__note {
    font-size: 12px;
    color: rgba(255,255,255,.45);
    margin: 0;
}

@media (max-width: 700px) {
    .trial-banner {
        flex-direction: column;
        text-align: center;
    }
    .trial-banner__checks {
        justify-content: center;
    }
    .trial-banner__right {
        width: 100%;
    }
    .campaign-banner {
        flex-direction: column;
        text-align: center;
    }
    .campaign-banner__desc {
        max-width: none;
    }
    .campaign-banner__right {
        width: 100%;
    }
}

/* ============================================================
   9. VISUAL MATERIALS CHECKLIST
   ============================================================ */

.materials {
    border-radius: var(--radius-xl);
    background: linear-gradient(160deg, var(--content-1), #ddf6ee);
    border: 1px solid var(--line-strong);
    padding: clamp(32px, 5vw, 64px);
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.materials::before {
    content: "";
    position: absolute;
    top: -130px; right: -130px;
    width: 340px; height: 340px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(20, 184, 166, 0.18), transparent 70%);
    pointer-events: none;
}

.materials-note {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    max-width: 760px;
    margin: 0 auto clamp(30px, 4vw, 48px);
    padding: 18px 22px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid var(--line);
    font-size: 14.5px;
    color: var(--fg-soft);
}

.materials-note svg {
    width: 21px; height: 21px;
    flex-shrink: 0;
    color: var(--warning);
    margin-top: 2px;
}

.materials-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    position: relative;
}

.material-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 18px;
    border-radius: var(--radius-md);
    background: var(--white);
    border: 1px solid var(--line);
    font-size: 14px;
    font-weight: 600;
    color: var(--foreground);
    box-shadow: var(--shadow-sm);
    transition: transform 0.4s var(--ease-out), box-shadow 0.4s;
}

.material-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.material-card .mat-check {
    width: 30px; height: 30px;
    flex-shrink: 0;
    border-radius: 9px;
    display: grid;
    place-items: center;
    color: var(--white);
    background: linear-gradient(135deg, var(--primary-500), var(--primary-700));
}

.material-card .mat-check svg { width: 15px; height: 15px; }

/* ============================================================
   10. AI PROMPT SERVICE
   ============================================================ */

.prompts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.prompt-card {
    display: flex;
    flex-direction: column;
    gap: 13px;
    padding: 28px 26px;
    border-radius: var(--radius-lg);
    background: var(--white);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
    transition: transform 0.45s var(--ease-out), box-shadow 0.45s, border-color 0.35s;
}

.prompt-card:hover {
    transform: translateY(-7px);
    box-shadow: var(--shadow-md);
    border-color: var(--line-strong);
}

.prompt-icon {
    width: 48px; height: 48px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    color: #b45309;
    background: linear-gradient(135deg, #fef3c7, #fde9b8);
    border: 1px solid #fde68a;
}

.prompt-icon svg { width: 22px; height: 22px; }

.prompt-card h3 { font-size: 17px; }

.prompt-card p { font-size: 14px; color: var(--fg-soft); flex: 1; }

.prompt-btn {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 19px;
    border-radius: 999px;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--primary-700);
    background: var(--content-1);
    border: 1px solid var(--line-strong);
    transition: background 0.3s, color 0.3s, transform 0.3s var(--ease-out);
}

.prompt-btn svg { width: 15px; height: 15px; }

.prompt-btn:hover {
    color: var(--white);
    background: var(--primary);
    transform: translateY(-2px);
}

/* ============================================================
   11. BENEFITS / STATS
   ============================================================ */

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
}

.benefit-card {
    padding: 28px 22px;
    border-radius: var(--radius-lg);
    text-align: center;
    background: var(--white);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
    transition: transform 0.45s var(--ease-out), box-shadow 0.45s;
}

.benefit-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.benefit-icon {
    width: 46px; height: 46px;
    margin: 0 auto 15px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    color: var(--primary-700);
    background: linear-gradient(135deg, var(--content-1), #d2f3e8);
    border: 1px solid var(--line);
}

.benefit-icon svg { width: 21px; height: 21px; }

.benefit-num {
    font-family: var(--font-display);
    font-size: clamp(26px, 2.8vw, 34px);
    font-weight: 800;
    color: var(--primary-700);
    line-height: 1.1;
    margin-bottom: 7px;
}

.benefit-card p { font-size: 13.5px; font-weight: 500; color: var(--fg-soft); }

.benefits-foot {
    margin-top: 22px;
    text-align: center;
    font-size: 12.5px;
    color: var(--fg-faint);
}

/* ============================================================
   12. FAQ
   ============================================================ */

.faq-wrap { max-width: 760px; margin: 0 auto; }

.faq-item {
    border-radius: var(--radius-md);
    background: var(--white);
    border: 1px solid var(--line);
    margin-bottom: 13px;
    overflow: hidden;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.faq-item.open {
    border-color: var(--line-strong);
    box-shadow: var(--shadow-sm);
}

.faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    text-align: left;
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 600;
    color: var(--foreground);
}

.faq-q svg {
    width: 19px; height: 19px;
    flex-shrink: 0;
    color: var(--primary);
    transition: transform 0.4s var(--ease-out);
}

.faq-item.open .faq-q svg { transform: rotate(180deg); }

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s var(--ease-out);
}

.faq-a p {
    padding: 0 24px 22px;
    font-size: 14.5px;
    color: var(--fg-soft);
}

/* ============================================================
   13. FINAL CTA
   ============================================================ */

.cta-final {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    padding: clamp(48px, 7vw, 90px) clamp(24px, 5vw, 70px);
    text-align: center;
    color: var(--white);
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-700) 60%, #0c5b54 100%);
    box-shadow: var(--shadow-lg);
}

.cta-final::before,
.cta-final::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.cta-final::before {
    width: 420px; height: 420px;
    top: -200px; left: -120px;
    background: radial-gradient(circle, rgba(20, 184, 166, 0.5), transparent 70%);
    animation: blobFloat 18s ease-in-out infinite alternate;
}

.cta-final::after {
    width: 360px; height: 360px;
    bottom: -180px; right: -90px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.28), transparent 70%);
    animation: blobFloat 22s ease-in-out infinite alternate-reverse;
}

.cta-final h2 {
    font-size: clamp(28px, 4vw, 44px);
    color: var(--white);
    max-width: 700px;
    margin: 0 auto 18px;
    position: relative;
    z-index: 1;
}

.cta-final p {
    font-size: clamp(15px, 1.7vw, 17.5px);
    color: rgba(255, 255, 255, 0.82);
    max-width: 560px;
    margin: 0 auto 36px;
    position: relative;
    z-index: 1;
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
    position: relative;
    z-index: 1;
}

.cta-final .btn-primary {
    background: var(--white);
    color: var(--primary-700);
    box-shadow: 0 14px 36px -12px rgba(0, 0, 0, 0.35);
}

.cta-final .btn-ghost {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.35);
    color: var(--white);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
}

.cta-float {
    position: absolute;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 13px;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--white);
    background: rgba(255, 255, 255, 0.13);
    border: 1px solid rgba(255, 255, 255, 0.25);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    animation: floatCard 6.4s ease-in-out infinite;
}

.cta-float svg { width: 15px; height: 15px; color: #fcd34d; }

.ctaf-1 { top: 18%; left: 6%; animation-delay: -2s; }
.ctaf-2 { top: 26%; right: 7%; animation-delay: -4s; }
.ctaf-3 { bottom: 16%; left: 11%; animation-delay: -1s; }
.ctaf-4 { bottom: 22%; right: 12%; animation-delay: -3.4s; }

/* ============================================================
   14. FOOTER
   ============================================================ */

.site-footer {
    margin-top: var(--section-pad);
    border-top: 1px solid var(--line);
    background: var(--white);
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: clamp(28px, 4vw, 56px);
    padding: clamp(44px, 6vw, 70px) 0 clamp(32px, 4vw, 48px);
}

.footer-brand p {
    margin-top: 16px;
    font-size: 14px;
    color: var(--fg-soft);
    max-width: 300px;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 22px;
}

.footer-social a {
    width: 38px; height: 38px;
    border-radius: 11px;
    display: grid;
    place-items: center;
    color: var(--primary-700);
    background: var(--content-1);
    border: 1px solid var(--line);
    transition: transform 0.3s var(--ease-out), background 0.3s, color 0.3s;
}

.footer-social a:hover {
    transform: translateY(-3px);
    color: var(--white);
    background: var(--primary);
}

.footer-social svg { width: 17px; height: 17px; }

.footer-col h4 {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--fg-faint);
    margin-bottom: 18px;
}

.footer-col li { margin-bottom: 11px; }

.footer-col a {
    font-size: 14.5px;
    color: var(--fg-soft);
    transition: color 0.25s;
}

.footer-col a:hover { color: var(--primary-700); }

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14.5px;
    color: var(--fg-soft);
}

.footer-contact svg { width: 16px; height: 16px; color: var(--primary); flex-shrink: 0; }

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 22px 0;
    border-top: 1px solid var(--line);
    font-size: 13px;
    color: var(--fg-faint);
}

.footer-badges { display: flex; flex-wrap: wrap; gap: 16px; }

.footer-badges span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
}

.footer-badges svg { width: 14px; height: 14px; color: var(--primary); }

/* ---------- Footer payment & legal strip ---------- */

.footer-payment {
    border-top: 1px solid var(--line);
    padding: 20px 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

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

.footer-legal-links a {
    font-size: 13px;
    color: var(--fg-soft);
    text-decoration: none;
    transition: color 0.25s;
    cursor: pointer;
}

.footer-legal-links a:hover { color: var(--primary-700); }

.footer-legal-sep {
    display: inline-block;
    width: 1px;
    height: 12px;
    background: var(--line-strong);
    vertical-align: middle;
}

.footer-iyzico-band {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-iyzico-band img {
    height: 28px;
    width: auto;
    display: block;
}

/* ---------- Policy / Legal Modal ---------- */

.policy-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(18, 75, 71, 0.45);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 99990;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.policy-modal-overlay.is-open {
    display: flex;
}

.policy-modal-dialog {
    background: #fff;
    border-radius: 22px;
    width: 100%;
    max-width: 720px;
    max-height: 88vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 32px 80px rgba(0,0,0,0.22);
    animation: policyModalIn 0.32s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes policyModalIn {
    from { opacity: 0; transform: translateY(28px) scale(0.96); }
    to   { opacity: 1; transform: none; }
}

.policy-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.35rem 1.75rem;
    border-bottom: 1px solid #e5e7eb;
    flex-shrink: 0;
}

.policy-modal-header-inner {
    display: flex;
    align-items: center;
    gap: 14px;
}

.policy-modal-icon {
    width: 42px;
    height: 42px;
    border-radius: 13px;
    background: var(--content-1);
    border: 1px solid var(--line);
    display: grid;
    place-items: center;
    color: var(--primary);
    flex-shrink: 0;
}

.policy-modal-icon svg { width: 20px; height: 20px; }

.policy-modal-title {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 700;
    color: #111827;
}

.policy-modal-subtitle {
    margin: 3px 0 0;
    font-size: 12.5px;
    color: var(--fg-faint);
}

.policy-modal-close-x {
    width: 36px;
    height: 36px;
    background: #f3f4f6;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    display: grid;
    place-items: center;
    color: #6b7280;
    font-size: 1.1rem;
    line-height: 1;
    transition: background 0.2s, color 0.2s;
    flex-shrink: 0;
}

.policy-modal-close-x:hover {
    background: #fecaca;
    color: #dc2626;
}

.policy-modal-body {
    overflow-y: auto;
    padding: 1.75rem;
    flex: 1;
    font-size: 14.5px;
    line-height: 1.78;
    color: #374151;
}

.policy-modal-body h1,
.policy-modal-body h2,
.policy-modal-body h3 {
    color: #111827;
    font-family: var(--font-display);
    margin-top: 1.6em;
    margin-bottom: 0.45em;
}

.policy-modal-body h2 {
    font-size: 1rem;
    font-weight: 700;
    padding-bottom: 6px;
    border-bottom: 1px solid #f3f4f6;
}

.policy-modal-body h3 {
    font-size: 0.9rem;
    font-weight: 700;
    color: #374151;
}

.policy-modal-body p { margin: 0 0 0.9em; }

.policy-modal-body ul {
    padding-left: 1.4rem;
    margin: 0 0 1em;
}

.policy-modal-body ul li { margin-bottom: 6px; }

.policy-modal-body a {
    color: var(--primary);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.policy-modal-body a:hover { color: var(--primary-700); }

.policy-effective {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    color: var(--fg-faint);
    background: var(--content-1);
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 5px 12px;
    margin-bottom: 1.25em;
}

.policy-highlight {
    background: #fefce8;
    border-left: 3px solid #f59e0b;
    border-radius: 0 8px 8px 0;
    padding: 10px 14px;
    margin: 1em 0;
    font-size: 13.5px;
    color: #78350f;
}

.policy-modal-footer {
    padding: 1rem 1.75rem;
    border-top: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-shrink: 0;
}

.policy-modal-date {
    font-size: 12px;
    color: var(--fg-faint);
}

.policy-modal-btn-close {
    background: var(--primary);
    color: #fff;
    border: none;
    padding: 0.6rem 1.75rem;
    border-radius: 12px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
}

.policy-modal-btn-close:hover {
    background: var(--primary-700);
    transform: translateY(-1px);
}

@media (max-width: 640px) {
    .footer-payment { flex-direction: column; align-items: flex-start; gap: 14px; }
    .policy-modal-dialog { border-radius: 16px; max-height: 94vh; }
    .policy-modal-header { padding: 1.1rem 1.25rem; }
    .policy-modal-body { padding: 1.25rem; }
    .policy-modal-footer { padding: 0.85rem 1.25rem; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1080px) {
    .features-grid, .prompts-grid { grid-template-columns: repeat(2, 1fr); }
    .materials-grid { grid-template-columns: repeat(3, 1fr); }
    .benefits-grid { grid-template-columns: repeat(3, 1fr); }
    .pricing-cards { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
    .pricing-card-host:has(.pricing-card.popular) { order: -1; }
    .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 920px) {
    .nav-links, .nav-cta .btn, .nav-login { display: none; }
    .nav-burger { display: grid; }
    .mobile-menu { display: block; }

    .hero-grid { grid-template-columns: 1fr; }
    .hero-visual { min-height: auto; margin-top: 24px; }
    .hero-img-collage { max-width: 100%; }
    .fc-3 { left: -2%; }
    .fc-2, .fc-4 { right: -2%; }

    .compare-grid { grid-template-columns: 1fr; }

    .journey-grid { grid-template-columns: 1fr; }
    .journey-sticky { position: relative; top: 0; order: -1; }
    .journey-screen { position: absolute; }
    .journey-step { padding: 26px 0; opacity: 1; }
}

@media (max-width: 640px) {
    .features-grid, .prompts-grid { grid-template-columns: 1fr; }
    .materials-grid { grid-template-columns: repeat(2, 1fr); }
    .benefits-grid { grid-template-columns: repeat(2, 1fr); }

    .hero-actions .btn { width: 100%; }
    .hero-stats { gap: 18px 28px; }

    .phone { width: 245px; }
    .float-card { font-size: 11.5px; padding: 9px 13px; }
    .fc-1 { left: -2%; }
    .fc-5 { left: 0; }

    .gallery-card { width: 240px; height: 170px; }
    .gallery-card.tall { width: 160px; height: 230px; }
    .showcase-fade-left, .showcase-fade-right { width: 60px; }

    .cta-float { display: none; }
    .cta-actions .btn { width: 100%; }

    .footer-top { grid-template-columns: 1fr; }
}

@media (max-width: 420px) {
    .materials-grid, .benefits-grid { grid-template-columns: 1fr; }
}

/* ---------- Reduced motion ---------- */

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }

    .blob, .hero-phone, .float-card, .cta-float,
    .marquee, .cta-final::before, .cta-final::after,
    .mock-qr-box::after {
        animation: none !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
        filter: none;
        transition: none;
    }

    * { transition-duration: 0.01ms !important; }
}

/* ============================================================
   PREMIUM ANIMATION LAYER — 21st.dev inspired
   All additions are purely additive; existing layout untouched.
   ============================================================ */

/* — Blur-in reveal (layered on top of existing opacity + translateY) — */

.reveal {
    filter: blur(4px);
    transition: opacity 0.9s var(--ease-out) var(--reveal-delay, 0s),
                transform 0.9s var(--ease-out) var(--reveal-delay, 0s),
                filter  0.9s var(--ease-out) var(--reveal-delay, 0s);
}

.reveal.in-view {
    filter: blur(0px);
}

.reveal-left  { filter: blur(4px); }
.reveal-right { filter: blur(4px); }

/* — Hero entrance stagger — */

@keyframes heroFadeUp {
    from { opacity: 0; transform: translateY(30px); filter: blur(7px); }
    to   { opacity: 1; transform: translateY(0);    filter: blur(0px); }
}

.hero-badge   { animation: heroFadeUp 0.85s var(--ease-out) 0.10s both; }
.hero-title   { animation: heroFadeUp 0.90s var(--ease-out) 0.26s both; }
.hero-desc    { animation: heroFadeUp 0.90s var(--ease-out) 0.42s both; }
.hero-actions { animation: heroFadeUp 0.90s var(--ease-out) 0.56s both; }
.hero-stats   { animation: heroFadeUp 0.90s var(--ease-out) 0.70s both; }
.hero-visual  { animation: heroFadeUp 1.00s var(--ease-out) 0.32s both; }

/* — Shimmer sweep keyframe — */

@keyframes shimmerSlide {
    0%   { background-position: -200% center; }
    100% { background-position:  200% center; }
}

/* — Section badge shimmer — */

.section-badge {
    position: relative;
    overflow: hidden;
}

.section-badge::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(100deg,
        transparent 28%,
        rgba(255,255,255,0.60) 50%,
        transparent 72%
    );
    background-size: 200% 100%;
    animation: shimmerSlide 3.4s ease 0.6s infinite;
    pointer-events: none;
}

/* — Hero badge shimmer — */

.hero-badge {
    position: relative;
    overflow: hidden;
}

.hero-badge::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(100deg,
        transparent 28%,
        rgba(255,255,255,0.55) 50%,
        transparent 72%
    );
    background-size: 200% 100%;
    animation: shimmerSlide 2.8s ease 1.2s infinite;
    pointer-events: none;
}

/* — Popular pricing card animated gradient border — */

@keyframes borderFlow {
    0%   { background-position: 0%   50%; }
    100% { background-position: 200% 50%; }
}

.pricing-card.popular {
    background:
        linear-gradient(var(--white), var(--white)) padding-box,
        linear-gradient(
            90deg,
            var(--primary-500),
            var(--warning) 40%,
            var(--primary-700) 70%,
            var(--primary-500)
        ) border-box;
    background-size: auto, 300% 100%;
    border: 2px solid transparent;
    animation: borderFlow 3.6s linear infinite;
}

/* — Button primary shimmer sweep on hover — */

.btn-primary {
    overflow: hidden;
}

.btn-primary::before {
    content: "";
    position: absolute;
    top: 0;
    left: -80%;
    width: 55%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.30),
        transparent
    );
    transform: skewX(-18deg);
    transition: left 0.65s var(--ease-out);
    pointer-events: none;
}

.btn-primary:hover::before {
    left: 130%;
}

/* — Mouse-spotlight on cards (JS sets --mouse-x / --mouse-y) — */

.feature-tile {
    background-color: var(--white);
    background-image: radial-gradient(
        circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
        rgba(13, 148, 136, 0.07) 0%,
        transparent 62%
    );
}

.benefit-card {
    background-color: var(--white);
    background-image: radial-gradient(
        circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
        rgba(13, 148, 136, 0.07) 0%,
        transparent 65%
    );
}

.prompt-card {
    background-color: var(--white);
    background-image: radial-gradient(
        circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
        rgba(245, 158, 11, 0.07) 0%,
        transparent 65%
    );
}

/* — Icon glow pulse on card hover — */

@keyframes iconGlow {
    0%, 100% { box-shadow: 0 0 0 0   rgba(13, 148, 136, 0.00); }
    50%       { box-shadow: 0 0 0 7px rgba(13, 148, 136, 0.20); }
}

.benefit-card:hover .benefit-icon,
.feature-tile:hover .feature-icon {
    animation: iconGlow 1.55s ease infinite;
    background: linear-gradient(135deg, var(--primary-500), #a7f3d0);
    color: var(--white);
    border-color: transparent;
}

/* — Prompt icon bounce + color shift — */

.prompt-icon {
    transition: transform 0.45s var(--ease-out), background 0.42s, color 0.42s;
}

.prompt-card:hover .prompt-icon {
    transform: scale(1.14) rotate(-8deg);
    background: linear-gradient(135deg, #fde68a, #fbbf24);
    color: #92400e;
    border-color: #fbbf24;
}

/* — Journey step left accent bar — */

.journey-step {
    padding-left: 22px;
    border-left: 3px solid rgba(13, 148, 136, 0);
    transition: opacity 0.5s var(--ease-out), border-color 0.5s var(--ease-out);
}

.journey-step.active {
    border-left-color: var(--primary-500);
}

/* — FAQ answer content fade-in — */

.faq-a p {
    opacity: 0;
    transform: translateY(-7px);
    transition: opacity 0.4s var(--ease-out) 0.08s,
                transform 0.4s var(--ease-out) 0.08s;
}

.faq-item.open .faq-a p {
    opacity: 1;
    transform: translateY(0);
}

/* — Compare column hover lift — */

.compare-col {
    transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}

.compare-col.problem:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.compare-col.solution:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

/* — Material card inset accent on hover — */

.material-card:hover {
    box-shadow: inset 3px 0 0 var(--primary-500), var(--shadow-md);
}

/* — CTA headline gold shimmer — */

@keyframes ctaTextShimmer {
    0%, 100% { background-position:   0% 50%; }
    50%       { background-position: 100% 50%; }
}

.cta-final h2 {
    background: linear-gradient(
        90deg,
        #fff 0%, #fff 22%,
        #fde68a 50%,
        #fff 78%, #fff 100%
    );
    background-size: 250% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: ctaTextShimmer 5.5s ease infinite;
}

/* — Stagger reveals (items without inline delay) — */

.trust-item:nth-child(1) { --reveal-delay: 0.04s; }
.trust-item:nth-child(2) { --reveal-delay: 0.09s; }
.trust-item:nth-child(3) { --reveal-delay: 0.14s; }
.trust-item:nth-child(4) { --reveal-delay: 0.19s; }
.trust-item:nth-child(5) { --reveal-delay: 0.24s; }
.trust-item:nth-child(6) { --reveal-delay: 0.29s; }
.trust-item:nth-child(7) { --reveal-delay: 0.34s; }
.trust-item:nth-child(8) { --reveal-delay: 0.39s; }

.faq-item:nth-child(1)  { --reveal-delay: 0.04s; }
.faq-item:nth-child(2)  { --reveal-delay: 0.10s; }
.faq-item:nth-child(3)  { --reveal-delay: 0.16s; }
.faq-item:nth-child(4)  { --reveal-delay: 0.22s; }
.faq-item:nth-child(5)  { --reveal-delay: 0.28s; }
.faq-item:nth-child(6)  { --reveal-delay: 0.34s; }
.faq-item:nth-child(7)  { --reveal-delay: 0.40s; }
.faq-item:nth-child(8)  { --reveal-delay: 0.46s; }
.faq-item:nth-child(9)  { --reveal-delay: 0.52s; }
.faq-item:nth-child(10) { --reveal-delay: 0.58s; }

/* — Floating card entrance glow — */

.float-card {
    box-shadow: var(--shadow-md), 0 0 0 0 rgba(13, 148, 136, 0);
    transition: box-shadow 0.4s var(--ease-out), transform 0.4s var(--ease-out);
}

.float-card:hover {
    box-shadow: var(--shadow-lg), 0 0 20px 3px rgba(13, 148, 136, 0.15);
}

/* — Pricing card scale + glow on hover (non-popular) — */

.pricing-card:not(.popular):hover {
    border-color: var(--line-strong);
}

/* — Blob: slightly more vivid — */

.blob { opacity: 0.70; }

/* — Reduced motion overrides for new additions — */

@media (prefers-reduced-motion: reduce) {
    .hero-badge, .hero-title, .hero-desc,
    .hero-actions, .hero-stats, .hero-visual {
        animation: none !important;
        opacity: 1 !important;
        filter: none !important;
        transform: none !important;
    }
    .section-badge::after, .hero-badge::after { display: none !important; }
    .btn-primary::before { display: none !important; }
    .pricing-card.popular { animation: none !important; }
    .cta-final h2 {
        animation: none !important;
        -webkit-text-fill-color: var(--white);
        background: none;
    }
    .faq-a p {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
    .reveal { filter: blur(0px) !important; }
    .benefit-card:hover .benefit-icon,
    .feature-tile:hover .feature-icon { animation: none !important; }
    .journey-step { transition: opacity 0.3s !important; }
    .compare-col { transition: none !important; }
    .float-card { transition: none !important; }
    .acc-item { transition: none !important; }
    .acc-item img { transition: none !important; filter: none !important; }
    .acc-gallery:hover .acc-item:not(:hover) img { filter: none !important; }
    .acc-overlay { opacity: 1 !important; }
    .acc-badge, .acc-title { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ============================================================
   MOBİL RESPONSIVE EKLEMELERİ
   ============================================================ */

/* ── 1080px: Section head tam genişlik ── */
@media (max-width: 1080px) {
    .section-head { max-width: 100%; }
}

/* ── 920px: Tablet / büyük mobil ── */
@media (max-width: 920px) {

    /* Hero: yüzen bilgi kutuları gizle */
    [data-float] { display: none !important; }

    /* Hero iç görsel konteyner: inline min-height kaldır */
    [data-hero-visual] {
        min-height: 500px !important;
        perspective: 800px !important;
    }

    /* Hero telefon: hafif 3D → düz */
    #heroPhone {
        transform: rotateY(-4deg) rotateX(2deg) !important;
        transition: none !important;
    }

    /* Hero copy: mobilde ortala */
    .hero-copy { text-align: center; }
    .hero-badge { justify-content: center; }
    .hero-desc  { margin-left: auto; margin-right: auto; }
    .hero-actions { justify-content: center; }
    .hero-stats { justify-content: center; }

    /* #urun — iki kolonlu grid → tek kolon */
    .urun-grid-1,
    .urun-grid-2 {
        grid-template-columns: 1fr !important;
        gap: 36px !important;
    }

    .urun-grid-1 { margin-bottom: 48px !important; }

    /* #urun admin panel: telefon overlay kaldır */
    #urun .urun-panel-phone  { display: none !important; }
    #urun .urun-panel-browser { max-width: 100% !important; }

    /* Journey steps: tümü görünür */
    .journey-step { opacity: 1; }

    /* CTA floatlar gizle */
    .cta-float { display: none; }
}

/* ── 768px: Orta mobil ── */
@media (max-width: 768px) {

    /* Pricing: çok geniş max-width kaldır */
    .pricing-cards { max-width: 100%; }

    /* Trial banner düzeni */
    .trial-banner {
        padding: clamp(22px, 5vw, 36px) !important;
    }

    /* Section head başlıkları küçült */
    .section-title { font-size: clamp(24px, 5.5vw, 38px); }
}

/* ── 640px: Küçük mobil ── */
@media (max-width: 640px) {

    /* Hero telefon: küçült */
    [data-hero-visual] {
        min-height: 380px !important;
        overflow: hidden;
    }

    [data-dc-tpl="72"] {
        transform: scale(0.80) !important;
        transform-origin: top center !important;
    }

    #heroPhone { transform: none !important; }

    /* Hero istatistik: tek satır sarmalama */
    .hero-stats {
        border-top: none;
        padding-top: 16px;
        justify-content: space-around;
    }

    .stat-item { text-align: center; }

    /* #urun müşteri menüsü telefon kartı küçült */
    .scp6 {
        width: 196px !important;
        height: 402px !important;
    }

    /* Trust items: daha kompakt */
    .trust-item {
        padding: 10px 16px;
        font-size: 13.5px;
    }

    /* Compare grid: padding azalt */
    .compare-col { padding: 22px 20px; }

    /* FAQ soru font */
    .faq-q { padding: 16px 18px; font-size: 15px; }
    .faq-a p { padding: 0 18px 18px; }

    /* Footer payment: dikey */
    .footer-iyzico-band img { max-width: 180px; }

    /* Materials: note kompakt */
    .materials-note { flex-direction: column; gap: 10px; }
}

/* ── 480px: Çok küçük ekran ── */
@media (max-width: 480px) {

    /* Navbar yükseklik */
    .nav-inner   { height: 64px; }
    .mobile-menu { top: 64px; }

    /* Hero */
    [data-hero-visual] { min-height: 320px !important; }
    [data-dc-tpl="72"] { transform: scale(0.68) !important; }

    .hero-title { font-size: clamp(28px, 8vw, 38px); }

    /* İstatistikler: 3'lü yatay sıra */
    .hero-stats { gap: 12px 18px; }
    .stat-num   { font-size: 22px; }

    /* Bölüm başlığı */
    .section-title { font-size: clamp(22px, 6.5vw, 32px); }
    .section-badge { font-size: 12px; padding: 6px 13px; }

    /* Trial banner */
    .trial-banner           { padding: 20px !important; gap: 20px !important; }
    .trial-banner__badge    { font-size: 40px; }
    .trial-banner__btn      { padding: 12px 24px; font-size: 14px; }

    /* Pricing card padding */
    .pricing-card { padding: 22px 18px !important; }
    .pricing-card .pricing-price .amount { font-size: 38px; }
    .pricing-card .discount-ribbon { top: 14px; right: 14px; font-size: 11px; padding: 6px 12px; }
    .pricing-card .price-old-amount { font-size: 14px; }
    .pricing-price:has(.price-old) .currency { font-size: 28px; }
    .campaign-banner { padding: 20px !important; gap: 20px !important; }
    .campaign-banner__title { font-size: 20px; }
    .campaign-banner__desc { font-size: 13.5px; }
    .campaign-banner__days { font-size: 40px; }

    /* Feature / prompt tile padding */
    .feature-tile  { padding: 22px 20px; }
    .prompt-card   { padding: 22px 18px; }
    .benefit-card  { padding: 20px 14px; }

    /* CTA final */
    .cta-final { padding-left: 20px !important; padding-right: 20px !important; }

    /* Accordion gallery: tek satır kaydırma */
    .acc-gallery {
        flex-direction: column;
        height: auto;
        gap: 8px;
    }

    .acc-item {
        flex: none !important;
        height: 180px;
        border-radius: var(--radius-md);
    }

    .acc-item:hover { flex: none !important; }

    .acc-overlay { opacity: 1; }
    .acc-badge, .acc-title { opacity: 1; transform: none; }

    /* Footer brand */
    .footer-brand p { max-width: 100%; }

    /* Materials grid */
    .materials-grid { grid-template-columns: 1fr 1fr; }
}

/* ── 360px: En küçük telefon ── */
@media (max-width: 360px) {
    [data-dc-tpl="72"] { transform: scale(0.60) !important; }
    [data-hero-visual]  { min-height: 290px !important; }

    .hero-actions .btn  { font-size: 14px; padding: 13px 20px; }

    .materials-grid { grid-template-columns: 1fr; }

    .trust-item { padding: 8px 12px; font-size: 12.5px; }
}
