:root {
    /* KOYU TEMA — kırmızı/beyaz/siyah (qrmenum.app esinli, 2026-06-22) */
    --background: #0b0809;
    --surface: #17100f;
    --surface-low: #1e1614;
    --surface-mid: #2a1d1a;
    --surface-high: #382623;
    --text: #f6ece9;
    --text-soft: #c8aaa4;
    --primary: #ff2a26;
    --primary-strong: #ff5a52;
    --secondary: #19b9a8;
    --secondary-soft: #0e3b37;
    --outline: rgba(255, 120, 110, 0.16);
    --outline-soft: rgba(255, 90, 80, 0.26);
    --radius-lg: 24px;
    --radius-md: 17px;
    --radius-sm: 12px;
    --container: 1320px;
    --anchor-offset: 110px;
    --motion-ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

body {
    font-family: "Manrope", "Inter", "Segoe UI", sans-serif;
    color: var(--text);
    font-size: 15.5px;
    line-height: 1.55;
    background:
        radial-gradient(900px 620px at 10% 0%, rgba(255, 42, 38, 0.20), transparent 62%),
        radial-gradient(780px 560px at 100% 2%, rgba(150, 0, 8, 0.26), transparent 62%),
        #0b0809;
    background-repeat: no-repeat;
}

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

.topbar,
.page-shell,
.site-footer,
.legal-bar {
    width: min(var(--container), calc(100% - 48px));
    margin-left: auto;
    margin-right: auto;
}

.topbar {
    position: sticky;
    top: 12px;
    z-index: 60;
    margin-top: 12px;
    border-radius: 999px;
    background: rgba(15, 10, 11, 0.72);
    backdrop-filter: blur(16px);
    box-shadow: 0 16px 34px rgba(26, 28, 28, 0.08);
    border: 1px solid var(--outline-soft);
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
}

.topbar-logo {
    width: 145px;
    flex: 0 0 auto;
    display: block;
}

.topbar-logo img {
    width: 100%;
    height: auto;
    display: block;
}

.topbar-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    flex: 1;
}

.topbar-nav > a:not(.btn) {
    display: inline-flex;
    align-items: center;
    padding: 8px 10px;
    border-radius: 10px;
    font-size: 0.92rem;
    font-weight: 700;
    text-transform: none;
    letter-spacing: 0;
    color: #f5ece9;
    transition: background 0.25s var(--motion-ease), color 0.25s var(--motion-ease), transform 0.2s var(--motion-ease);
}

.topbar-nav > a:not(.btn):hover {
    background: rgba(188, 1, 0, 0.08);
    color: var(--primary);
    transform: translateY(-1px);
}

/* Özellikler açılır menüsü */
.nav-dropdown {
    position: relative;
    display: inline-flex;
}

.nav-dropdown-trigger {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 10px;
    border-radius: 10px;
    font-size: 0.92rem;
    font-weight: 700;
    color: #f5ece9;
    cursor: pointer;
    transition: background 0.25s var(--motion-ease), color 0.25s var(--motion-ease);
}

.nav-dropdown-trigger i {
    font-size: 0.7rem;
    transition: transform 0.2s var(--motion-ease);
}

.nav-dropdown:hover .nav-dropdown-trigger,
.nav-dropdown:focus-within .nav-dropdown-trigger {
    background: rgba(188, 1, 0, 0.08);
    color: var(--primary);
}

.nav-dropdown:hover .nav-dropdown-trigger i,
.nav-dropdown:focus-within .nav-dropdown-trigger i {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    min-width: 210px;
    background: #17100f;
    border-radius: 14px;
    border: 1px solid var(--outline-soft);
    box-shadow: 0 18px 40px rgba(26, 28, 28, 0.16);
    padding: 8px;
    display: none;
    flex-direction: column;
    gap: 2px;
    z-index: 60;
}

/* Hover köprüsü: trigger ile menü arasındaki 6px boşlukta (top: 100%+6px) mouse
   hover'ı KOPMASIN → alt menüye inerken menü kapanmasın. Görsel boşluk korunur;
   sadece şeffaf, tıklanamaz bir hover alanı eklenir (Özellikler + dil dropdown'u). */
.nav-dropdown-menu::before {
    content: "";
    position: absolute;
    top: -10px;
    left: 0;
    right: 0;
    height: 12px;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
    display: flex;
}

.nav-dropdown-menu a {
    padding: 9px 12px;
    border-radius: 9px;
    font-size: 0.9rem;
    font-weight: 700;
    color: #f5ece9;
    white-space: nowrap;
    transition: background 0.2s var(--motion-ease), color 0.2s var(--motion-ease);
}

.nav-dropdown-menu a:hover {
    background: rgba(188, 1, 0, 0.08);
    color: var(--primary);
}

.nav-dropdown-menu a.nav-dropdown-all {
    color: var(--primary);
    border-bottom: 1px solid var(--outline-soft);
    border-radius: 9px 9px 0 0;
    margin-bottom: 4px;
}

.lang-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid var(--outline-soft);
    background: #17100f;
    font-weight: 700;
    color: #c8aaa4;
    white-space: nowrap;
}

.lang-pill img {
    width: 16px;
    height: 12px;
    border-radius: 3px;
}

.lang-pill small {
    font-size: 0.72rem;
    font-weight: 700;
    color: #c8aaa4;
}

.btn {
    border-radius: 12px;
    padding: 11px 18px;
    border: 1px solid transparent;
    font: inherit;
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 0.01em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: transform 0.22s var(--motion-ease), box-shadow 0.22s var(--motion-ease), background 0.22s var(--motion-ease), color 0.22s var(--motion-ease);
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-primary {
    color: #fff;
    /* Düz renk fallback: gradient render edilmese bile (GPU compositing/bfcache
       glitch) buton asla renksiz kalmaz. */
    background-color: var(--primary);
    background-image: linear-gradient(140deg, var(--primary), var(--primary-strong));
    box-shadow: 0 18px 32px rgba(188, 1, 0, 0.22);
}

.topbar-nav .btn-primary,
.topbar-nav .btn-ghost {
    border-radius: 12px;
    padding: 9px 16px;
}

/* Nav "Giriş Yap" — beyaz + ince çerçeveli ikincil (kırmızı "Ücretsiz Dene"nin yanında). */
.topbar-nav .btn-ghost {
    background: #17100f;
    border: 1px solid var(--outline-soft);
    color: var(--text);
}

.topbar-nav .btn-ghost:hover {
    border-color: var(--primary);
    color: var(--primary);
}

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

.btn-ghost {
    color: var(--text);
    background: var(--surface-mid);
    border-color: transparent;
}

.btn-ghost:hover {
    background: var(--surface-high);
}

.menu-toggle {
    display: none;
    border: 0;
    background: transparent;
    margin-left: auto;
    padding: 6px;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2.5px;
    margin: 5px 0;
    border-radius: 2px;
    background: var(--text);
}

.page-shell {
    padding: 38px 0 44px;
}

.redesign-shell {
    display: grid;
    gap: 6px;
}

.redesign-hero {
    padding: 16px 24px 48px;
    background: transparent;
    position: relative;
}

.hero-kpis {
    margin-top: 10px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    font-weight: 700;
    color: #c8aaa4;
}

.kpi-dot {
    width: 12px;
    height: 12px;
    border-radius: 999px;
    background: radial-gradient(circle at 30% 30%, #ffd8d8, #ff2a2a);
    box-shadow: 0 0 0 2px rgba(188, 1, 0, 0.16);
}

.section-head {
    margin-bottom: 10px;
}

.section-head.center {
    text-align: left;
}

.section-head.split {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 12px;
    align-items: start;
}

/* QR Menü ve Stok-Reçete bölümlerinde görsel + içerik dikey ortalı ve eşit
   yükseklikte olsun (entegrasyon bölümündeki küçük banner'dan farklı). */
#qr-menu .section-head.split,
#stok-recete .section-head.split {
    align-items: center;
    gap: 20px;
}

.feature-media {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: inset 0 0 0 1px rgba(188, 1, 0, 0.12), 0 16px 36px rgba(26, 28, 28, 0.08);
}

.feature-media img {
    width: 100%;
    height: 290px;
    object-fit: cover;
    display: block;
}

@media (max-width: 860px) {
    .feature-media img {
        height: 230px;
    }
}

.section-head h2 {
    margin: 0;
}

.section-head h1 {
    margin: 0;
    font-family: "Bebas Neue", "Inter", sans-serif;
    font-size: clamp(2.15rem, 4.6vw, 3.6rem);
    line-height: 0.96;
    letter-spacing: 0.01em;
    font-weight: 400;
}

.section-head p {
    margin: 8px 0 0;
    color: var(--text-soft);
}

.feature-bento {
    margin-top: 10px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.visual-strip {
    margin-top: 10px;
    margin-bottom: 8px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
}

.visual-strip.compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 10px;
}

.visual-strip-item {
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: #17100f;
    box-shadow: inset 0 0 0 1px rgba(188, 1, 0, 0.12);
    transition: transform 0.45s var(--motion-ease), box-shadow 0.45s var(--motion-ease);
    will-change: transform;
}

.visual-strip-item img {
    height: clamp(190px, 18vw, 260px) !important;
    width: 100%;
    height: 108px;
    object-fit: cover;
    display: block;
    transform: translate3d(0, var(--parallax-y, 0px), 0) scale(var(--parallax-scale, 1));
    transition: transform 0.2s linear;
}

.visual-strip-item span {
    display: block;
    padding: 6px 10px;
    font-size: 0.8rem;
    font-weight: 700;
    color: #c8aaa4;
}

.feature-card[id] {
    scroll-margin-top: 84px;
}

.feature-card {
    position: relative;
    border-radius: var(--radius-md);
    background: var(--surface-low);
    background-image: linear-gradient(160deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0));
    padding-top: 24px;
    transition: transform 0.45s var(--motion-ease), box-shadow 0.45s var(--motion-ease);
    will-change: transform;
}

.feature-card::before {
    content: "";
    position: absolute;
    left: 18px;
    top: 12px;
    width: 44px;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--primary), var(--primary-strong));
}

.feature-card.secondary {
    background: #14241b;
}

.feature-card.accent {
    background: #241413;
}

.feature-icon {
    display: none;
}

.business-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: flex-start;
}

.business-showcase {
    margin-top: 12px;
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    min-height: 280px;
}

.business-showcase img {
    width: 100%;
    height: 100%;
    min-height: 280px;
    object-fit: cover;
    display: block;
}

.business-showcase .overlay {
    position: absolute;
    inset: auto 0 0 0;
    padding: 16px;
    background: linear-gradient(to top, rgba(16, 12, 11, 0.66), rgba(16, 12, 11, 0));
    color: #fff;
}

.business-showcase .overlay h3 {
    margin: 0;
    max-width: 28ch;
    font-size: clamp(1.1rem, 1.9vw, 1.45rem);
}

.business-mosaic {
    margin-top: 10px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.business-card {
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--surface-low);
    box-shadow: inset 0 0 0 1px rgba(188, 1, 0, 0.1);
}

.business-card img {
    width: 100%;
    height: 185px;
    object-fit: cover;
    display: block;
}

.business-card .content {
    padding: 10px 12px 12px;
}

.business-card h3 {
    margin: 0;
    font-size: 1.02rem;
}

.business-card p {
    margin: 5px 0 0;
    color: #c8aaa4;
    font-size: 0.9rem;
}

.check-list {
    margin: 8px 0 0;
    padding-left: 22px;
    display: grid;
    gap: 4px;
}

.logo-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
}

.logo-grid div {
    border-radius: var(--radius-sm);
    background: var(--surface-low);
    padding: 9px 12px;
    font-weight: 800;
    color: #c8aaa4;
    text-align: center;
}

.integration-groups {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.integration-top-banner {
    margin-bottom: 10px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: var(--surface-low);
    box-shadow: inset 0 0 0 1px rgba(188, 1, 0, 0.12);
    transition: transform 0.45s var(--motion-ease), box-shadow 0.45s var(--motion-ease);
    will-change: transform;
}

.integration-top-banner img {
    width: 100%;
    height: 132px;
    object-fit: cover;
    display: block;
    transform: translate3d(0, var(--parallax-y, 0px), 0) scale(var(--parallax-scale, 1));
    transition: transform 0.2s linear;
}

.integration-hero-image {
    margin-bottom: 10px;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--surface-low);
    box-shadow: inset 0 0 0 1px rgba(188, 1, 0, 0.12);
}

.integration-hero-image img {
    width: 100%;
    height: 170px;
    object-fit: cover;
    display: block;
}

.integration-group-card {
    border-radius: var(--radius-md);
    background: var(--surface-low);
    padding: 12px;
    box-shadow: inset 0 0 0 1px rgba(188, 1, 0, 0.12);
    transition: transform 0.45s var(--motion-ease), box-shadow 0.45s var(--motion-ease);
    will-change: transform;
}

.integration-group-card h3 {
    margin: 0;
    font-size: 1.02rem;
}

.integration-group-card p {
    margin: 6px 0 0;
    color: #c8aaa4;
    font-size: 0.9rem;
}

.integration-tags {
    margin-top: 8px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.integration-tags span,
.integration-tags a {
    border-radius: 999px;
    background: #17100f;
    border: 1px solid rgba(188, 1, 0, 0.16);
    padding: 7px 12px;
    font-weight: 700;
    color: #c8aaa4;
    font-size: 0.88rem;
}

.integration-tags a {
    text-decoration: none;
    transition: border-color 0.2s var(--motion-ease), color 0.2s var(--motion-ease), background 0.2s var(--motion-ease);
}

.integration-tags a:hover {
    border-color: rgba(188, 1, 0, 0.45);
    color: var(--brand, #bc0100);
    background: #1e1614;
}

.integration-image-placeholder {
    margin-bottom: 10px;
    border-radius: var(--radius-md);
    aspect-ratio: 16 / 9;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-align: center;
    padding: 16px;
    color: #c8aaa4;
    background: linear-gradient(135deg, #1e1614 0%, #241413 100%);
    border: 2px dashed rgba(188, 1, 0, 0.28);
}

.integration-image-placeholder i {
    font-size: 2.2rem;
    color: rgba(188, 1, 0, 0.5);
}

.integration-image-placeholder span {
    font-weight: 700;
    font-size: 0.95rem;
}

.integration-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: var(--radius-md);
    display: block;
    margin-bottom: 10px;
}

#ozellikler .visual-strip-item:hover,
#ozellikler .feature-card:hover,
#entegrasyonlar .integration-group-card:hover,
#entegrasyonlar .integration-top-banner:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 30px rgba(26, 28, 28, 0.09);
}

.report-teasers {
    margin-top: 10px;
}

.hero {
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    align-items: center;
    gap: 28px;
    margin-bottom: 10px;
}

.eyebrow {
    margin: 0 0 8px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font: 700 0.74rem/1 "Work Sans", sans-serif;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #c8aaa4;
}

.hero h1 {
    margin: 0;
    font-family: "Bebas Neue", "Inter", sans-serif;
    font-size: clamp(2.3rem, 5.6vw, 4.4rem);
    font-weight: 400;
    letter-spacing: 0.01em;
    line-height: 0.96;
}

.hero h1 span {
    background: linear-gradient(120deg, var(--primary), var(--primary-strong));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero p {
    margin-top: 12px;
    margin-bottom: 0;
    color: var(--text-soft);
    font-size: 0.96rem;
    max-width: 63ch;
}

.hero-cta {
    margin-top: 18px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.hero-list {
    margin: 14px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 8px;
}

.hero-list li {
    position: relative;
    padding-left: 22px;
    color: #f5ece9;
    font-weight: 600;
    font-size: 0.96rem;
}

.hero-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 9px;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: radial-gradient(circle at 32% 32%, #ffd8da, #ff2b35);
    box-shadow: 0 0 0 6px rgba(255, 81, 88, 0.16);
}

.hero-visual {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 24px 44px rgba(26, 18, 16, 0.16);
    background: #17100f;
}

.hero-visual img {
    width: 100%;
    height: clamp(300px, 34vw, 440px);
    object-fit: cover;
    display: block;
}

.story-lite {
    margin-top: 24px;
}

.section {
    margin-top: 30px;
    padding: 24px;
    border-radius: var(--radius-lg);
    background: var(--surface);
    box-shadow: 0 14px 34px rgba(26, 28, 28, 0.06);
    position: relative;
    overflow: hidden;
}

.section::before {
    content: "";
    position: absolute;
    width: 280px;
    height: 280px;
    right: -90px;
    top: -100px;
    border-radius: 50%;
    background: radial-gradient(circle at 40% 40%, rgba(255, 32, 40, 0.08), rgba(255, 32, 40, 0));
    pointer-events: none;
}

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

.story-lite-grid,
.card-grid,
.price-grid,
.contact-grid {
    margin-top: 12px;
    display: grid;
    gap: 12px;
}

.story-lite-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.story-lite-card {
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--surface-low);
}

.story-lite-card img {
    width: 100%;
    height: 185px;
    object-fit: cover;
    display: block;
}

.story-lite-card span {
    display: block;
    padding: 9px 12px;
    font-weight: 800;
    color: #f5ece9;
}

.section h2 {
    margin: 0;
    font-family: "Bebas Neue", "Inter", sans-serif;
    font-size: clamp(1.95rem, 4vw, 3.3rem);
    line-height: 0.96;
    letter-spacing: 0.01em;
    font-weight: 400;
}

.section > p {
    margin: 8px 0 0;
    color: var(--text-soft);
}

.card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
    border-radius: var(--radius-md);
    background: var(--surface-low);
    padding: 16px;
    transition: transform 0.28s var(--motion-ease), box-shadow 0.28s var(--motion-ease), background 0.24s var(--motion-ease);
}

.card:hover {
    transform: translateY(-4px);
    background: var(--surface-mid);
    box-shadow: 0 18px 30px rgba(26, 28, 28, 0.07);
}

.card h3 {
    margin: 0 0 6px;
    font-size: 1.05rem;
    line-height: 1.3;
}

.card p {
    margin: 0;
    color: #c8aaa4;
}

.partner-strip {
    margin-top: 10px;
    display: grid;
    gap: 8px;
}

.pill {
    border-radius: 999px;
    background: #17100f;
    padding: 9px 14px;
    font-weight: 700;
    color: #c8aaa4;
    text-align: center;
    box-shadow: inset 0 0 0 1px rgba(188, 1, 0, 0.14);
}

.showcase {
    margin-top: 12px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.showcase img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: var(--radius-md);
    display: block;
}

.report-gallery {
    margin-top: 16px;
    position: relative;
    overflow: hidden;
    padding: 0 48px;
}

.gallery-track {
    display: flex;
    gap: 14px;
    transform: translate3d(0, 0, 0);
    transition: transform 0.45s var(--motion-ease);
}

.gallery-item {
    flex: 0 0 calc((100% - 16px) / 2);
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: #17100f;
    border: 1px solid rgba(26, 28, 28, 0.12);
    box-shadow: 0 20px 46px rgba(26, 28, 28, 0.16);
}

/* Tarayıcı/laptop ekranı görünümü: üstte iri pencere çubuğu + trafik ışıkları */
.gallery-item::before {
    content: "";
    display: block;
    height: 42px;
    background:
        radial-gradient(circle 6px at 24px 21px, #ff5f57 99%, transparent 100%),
        radial-gradient(circle 6px at 48px 21px, #febc2e 99%, transparent 100%),
        radial-gradient(circle 6px at 72px 21px, #28c840 99%, transparent 100%),
        linear-gradient(#f7f1f0, #eee3e2);
    border-bottom: 1px solid rgba(26, 28, 28, 0.09);
}

.gallery-item img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    display: block;
}

.gallery-item span {
    display: block;
    padding: 14px 16px;
    font-weight: 800;
    font-size: 1.05rem;
    letter-spacing: 0.2px;
    color: var(--primary);
    background: linear-gradient(180deg, rgba(188, 1, 0, 0.05), rgba(188, 1, 0, 0.11));
    border-top: 2px solid var(--primary);
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 999px;
    border: 1.5px solid rgba(255, 69, 79, 0.35);
    background: #17100f;
    color: var(--primary);
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 8px 20px rgba(188, 1, 0, 0.12);
    display: grid;
    place-items: center;
    pointer-events: auto;
}

.gallery-nav.prev {
    left: 6px;
}

.gallery-nav.next {
    right: 6px;
}

.gallery-nav span {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.price-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.price-card {
    border-radius: var(--radius-lg);
    background: var(--surface-low);
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-height: 100%;
}

.price-card .label {
    font-family: "Work Sans", sans-serif;
    font-size: 0.8rem;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    font-weight: 700;
    color: #c8aaa4;
}

.price-card .fee {
    margin-top: 3px;
    font-size: clamp(1.45rem, 2.8vw, 1.9rem);
    font-weight: 900;
    letter-spacing: -0.02em;
}

.price-note {
    margin: 2px 0 0;
    font-size: 0.84rem;
    color: #c8aaa4;
    font-weight: 700;
}

.price-card ul {
    margin: 8px 0 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 8px;
}

.price-card .btn {
    margin-top: auto;
}

.price-card li {
    position: relative;
    padding-left: 20px;
    color: #c8aaa4;
}

.price-card li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: -1px;
    color: var(--secondary);
    font-size: 1rem;
}

.cta-box {
    margin-top: 12px;
    border-radius: var(--radius-lg);
    background: #1e1614;
    border: 1px solid rgba(255, 120, 126, 0.38);
    padding: 22px;
}

.cta-box strong {
    font-size: clamp(1.35rem, 2.8vw, 1.65rem);
    line-height: 1.15;
    font-weight: 900;
    color: #f5ece9;
}

.cta-box p {
    margin-top: 8px;
    margin-bottom: 0;
    color: #c8aaa4;
    font-size: 0.98rem;
}

.trial-error {
    margin-top: 12px;
    margin-bottom: 0;
    color: #b61a21;
    font-weight: 700;
}

.trial-success {
    margin-top: 12px;
    margin-bottom: 0;
    color: #137e49;
    font-weight: 700;
}

.trial-form {
    margin-top: 12px;
}

.trial-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.trial-grid label {
    display: grid;
    gap: 6px;
    font-size: 0.94rem;
    font-weight: 800;
    color: #f5ece9;
}

.trial-grid input,
.trial-grid select {
    width: 100%;
    border: 0;
    border-radius: var(--radius-md);
    background: #17100f;
    padding: 12px 14px;
    font: inherit;
    font-size: 0.96rem;
    color: #f5ece9;
    box-shadow: inset 0 0 0 1px var(--outline-soft);
    transition: box-shadow 0.2s var(--motion-ease), background 0.2s var(--motion-ease);
}

.trial-grid input:focus,
.trial-grid select:focus {
    outline: 0;
    box-shadow: inset 0 0 0 2px rgba(255, 39, 52, 0.7);
    background: #17100f;
}

.trial-grid input.is-invalid {
    box-shadow: inset 0 0 0 2px rgba(186, 26, 26, 0.6);
}

.field-hint {
    color: #c8aaa4;
    font: 600 0.82rem/1.4 "Work Sans", sans-serif;
}

.contact-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.contact-item {
    border-radius: var(--radius-md);
    background: var(--surface-low);
    padding: 12px;
}

.contact-item strong {
    display: block;
    margin-bottom: 4px;
}

.site-footer {
    margin-top: 20px;
    margin-bottom: 14px;
    background: var(--surface);
    border-radius: var(--radius-lg);
    padding: 20px;
    display: flex;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
    align-items: flex-start;
    box-shadow: 0 12px 24px rgba(26, 28, 28, 0.06);
}

.site-footer img {
    width: 135px;
    display: block;
}

.site-footer p {
    margin: 8px 0 0;
    color: #c8aaa4;
    max-width: 560px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(200px, 1fr));
    column-gap: 28px;
    row-gap: 8px;
    align-content: start;
}

.footer-links-col {
    display: grid;
    gap: 10px;
    align-content: start;
}

.footer-links a {
    display: inline-flex;
    width: fit-content;
    color: var(--primary);
    font-weight: 800;
    line-height: 1.32;
    position: relative;
    z-index: 1;
    cursor: pointer;
    transition: color 0.2s var(--motion-ease), transform 0.2s var(--motion-ease);
}

.footer-links a:hover {
    color: #930000;
    transform: translateX(2px);
}

.legal-bar {
    margin-top: -2px;
    /* Alt boşluk büyütüldü: hem sayfa dibinde nefes payı, hem de sağ-altta sabit
       duran "Hızlı Sohbet" butonu (.quick-chat, bottom:18px) legal-bar'ın
       altında kalsın, son link (Hakkımızda) ile çakışmasın. */
    margin-bottom: 84px;
    display: flex;
    gap: 8px;
    /* nowrap + yatay scroll yerine wrap: dar ekranda linkler alt satıra geçer,
       son link kesilmez. */
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    padding: 9px;
    background: rgba(15, 10, 11, 0.7);
    box-shadow: inset 0 0 0 1px var(--outline-soft);
    overflow: visible;
    white-space: normal;
}

.legal-bar a {
    border-radius: 999px;
    background: #17100f;
    padding: 8px 12px;
    font: 700 0.82rem/1 "Work Sans", sans-serif;
    color: #c8aaa4;
    box-shadow: inset 0 0 0 1px var(--outline-soft);
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
}

.quick-chat {
    position: fixed;
    right: 22px;
    bottom: 18px;
    z-index: 90;
    display: grid;
    gap: 12px;
    justify-items: end;
    /* Panel kapalıyken visibility:hidden ile layout'ta yer kaplıyor; konteynerin bu
       görünmez alanı altındaki butonların (örn. "Özelleştir") tıklanmasını ENGELLEMESİN.
       Yalnızca gerçek etkileşimli öğeler (buton + açık panel) pointer-events: auto alır. */
    pointer-events: none;
}

.customizer-modal {
    position: fixed;
    inset: 0;
    z-index: 120;
    display: none;
}

.customizer-modal.open {
    display: block;
}

.customizer-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(25, 14, 12, 0.46);
}

.customizer-panel {
    position: relative;
    width: min(680px, calc(100% - 24px));
    max-height: calc(100vh - 40px);
    overflow: auto;
    margin: 20px auto;
    border-radius: 24px;
    background: #17100f;
    padding: 22px;
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.28);
}

.customizer-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    border: 0;
    background: #1e1614;
    color: #f5ece9;
    cursor: pointer;
    font-size: 1.45rem;
    font-weight: 800;
    line-height: 1;
    display: grid;
    place-items: center;
    box-shadow: inset 0 0 0 1px rgba(140, 96, 90, 0.18);
}

.customizer-panel h3 {
    margin: 0;
    font-size: 1.45rem;
}

.customizer-panel p {
    margin: 6px 0 0;
    color: #c8aaa4;
}

.customizer-list {
    margin-top: 14px;
    display: grid;
    gap: 8px;
}

.customizer-list label {
    border-radius: 12px;
    background: #1e1614;
    padding: 10px 12px;
    display: grid;
    grid-template-columns: 22px minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    box-shadow: inset 0 0 0 1px rgba(188, 1, 0, 0.14);
}

.customizer-item-text {
    min-width: 0;
    font-weight: 500;
}

.customizer-item-text small {
    display: inline;
    margin-left: 4px;
    color: #c8aaa4;
    font-size: 0.76rem;
    font-weight: 700;
}

.customizer-list label strong {
    white-space: nowrap;
    text-align: right;
}

.customizer-list input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #df0000;
}

.customizer-total {
    margin-top: 12px;
    border-radius: 14px;
    background: #241413;
    box-shadow: inset 0 0 0 1px rgba(223, 0, 0, 0.2);
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.customizer-total strong {
    color: #b80000;
    font-size: 1.25rem;
}

.customizer-note {
    margin: 10px 2px 0;
    font-size: 0.82rem;
    line-height: 1.4;
    color: #a9afba;
}

.quick-chat-btn {
    border: 0;
    border-radius: 999px;
    background: linear-gradient(135deg, #1ea960, #15914f);
    color: #fff;
    padding: 14px 22px;
    font: 800 1.03rem/1 "Inter", sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    box-shadow: 0 16px 28px rgba(19, 122, 66, 0.24);
    /* Konteyner pointer-events:none; etkileşimli öğeler tekrar açılır. */
    pointer-events: auto;
}

.quick-chat-panel {
    width: min(440px, calc(100vw - 34px));
    border-radius: 24px;
    background: #17100f;
    padding: 20px;
    box-shadow: 0 22px 50px rgba(36, 20, 17, 0.22);
    display: grid;
    gap: 12px;
    position: relative;
    transform: translateY(8px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}

.quick-chat.open .quick-chat-panel {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.quick-chat-panel h3 {
    margin: 0;
    font-size: 2rem;
    line-height: 1;
    letter-spacing: -0.02em;
    font-weight: 900;
}

.quick-chat-panel p {
    margin: 0;
    color: #c8aaa4;
    font-weight: 600;
}

.quick-chat-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
    border-radius: 999px;
    border: 0;
    background: #1e1614;
    color: #c8aaa4;
    cursor: pointer;
}

.quick-chat-link {
    border-radius: 16px;
    padding: 13px 14px;
    font-size: 1.1rem;
    font-weight: 800;
}

.quick-chat-link.whatsapp {
    background: #14241b;
    color: #157c43;
}

.quick-chat-link.mail {
    background: #14182a;
    color: #2b5ba6;
}

.quick-chat-link.phone {
    background: #241413;
    color: #be1f28;
}

.faq-grid {
    margin-top: 12px;
    display: grid;
    gap: 8px;
}

.faq-grid details {
    border-radius: var(--radius-md);
    background: var(--surface-low);
    overflow: hidden;
}

.faq-grid summary {
    list-style: none;
    cursor: pointer;
    padding: 12px 14px;
    font-weight: 800;
    position: relative;
}

.faq-grid summary::-webkit-details-marker {
    display: none;
}

.faq-grid summary::after {
    content: "+";
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 22px;
    height: 22px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: #17100f;
    color: var(--primary);
    font-weight: 800;
}

.faq-grid details[open] summary::after {
    content: "-";
}

.faq-grid details p {
    margin: 0;
    padding: 0 14px 12px;
    color: #c8aaa4;
}

.legal-content h3 {
    margin: 20px 0 8px;
    font-size: 1.06rem;
}

.legal-content p {
    color: #c8aaa4;
}

.legal-content ul {
    margin: 8px 0 0;
    padding-left: 20px;
    color: #c8aaa4;
}

.legal-content li {
    margin-bottom: 6px;
}

.legal-contact {
    margin-top: 16px;
    border-radius: 14px;
    padding: 12px;
    background: var(--surface-low);
    display: grid;
    gap: 4px;
}

[data-reveal] {
    opacity: 0;
    transform: translate3d(0, 34px, 0) scale(0.985);
    filter: blur(8px);
    transition: opacity 0.8s var(--motion-ease), transform 0.9s var(--motion-ease), filter 0.7s var(--motion-ease);
    transition-delay: var(--reveal-delay, 0ms);
}

[data-reveal="left"] { transform: translate3d(-50px, 0, 0) scale(0.985); }
[data-reveal="right"] { transform: translate3d(50px, 0, 0) scale(0.985); }
[data-reveal="up"] { transform: translate3d(0, 42px, 0) scale(0.97); }
[data-reveal="zoom"] { transform: translate3d(0, 16px, 0) scale(0.88); }

[data-reveal].is-inview {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
}

@media (max-width: 1100px) {
    .card-grid,
    .price-grid,
    .contact-grid,
    .story-lite-grid,
    .visual-strip,
    .feature-bento,
    .business-mosaic,
    .showcase,
    .trial-grid {
        grid-template-columns: 1fr 1fr;
    }

    .section-head.split {
        grid-template-columns: 1fr;
    }

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

    .topbar-nav > a:not(.btn) {
        font-size: 0.78rem;
        padding: 8px 9px;
    }
}

@media (max-width: 860px) {
    .topbar,
    .page-shell,
    .site-footer,
    .legal-bar {
        width: min(var(--container), calc(100% - 24px));
    }

    .topbar {
        border-radius: var(--radius-lg);
    }

    .menu-toggle {
        display: block;
    }

    .topbar-nav {
        position: absolute;
        left: 0;
        right: 0;
        top: calc(100% + 8px);
        margin: 0 auto;
        width: min(95vw, 520px);
        background: #17100f;
        border-radius: 18px;
        padding: 12px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        box-shadow: 0 16px 30px rgba(26, 28, 28, 0.12);
        /* Drawer içeriği (üst linkler + ~60 alt link) viewport'tan uzun olabilir;
           kaydırılabilir yap (eskiden taşan maddeler erişilemiyordu). dvh yeni
           tarayıcılarda iOS adres-çubuğu zıplamasını önler, vh fallback. */
        max-height: calc(100vh - 90px);
        max-height: calc(100dvh - 90px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior: contain;
    }

    .topbar-nav.open {
        display: flex;
    }

    .topbar-nav > a:not(.btn) {
        font-size: 0.86rem;
        text-transform: none;
    }

    .lang-pill {
        justify-content: center;
    }

    /* Mobil menüde açılır menü statik liste olur (hover yok) */
    .nav-dropdown {
        display: block;
        width: 100%;
    }

    .nav-dropdown-trigger {
        font-size: 0.86rem;
        width: 100%;
        justify-content: space-between;
    }

    /* Mobilde chevron GÖRÜNÜR olsun → kullanıcı alt menüsü olduğunu anlasın (eskiden gizliydi).
       .expanded iken 180° döner (açık/kapalı göstergesi). */
    .nav-dropdown-trigger i {
        display: inline-block;
        transition: transform 0.2s ease;
    }

    .nav-dropdown.expanded .nav-dropdown-trigger i {
        transform: rotate(180deg);
    }

    .nav-dropdown-menu {
        position: static;
        display: none;
        box-shadow: none;
        border: 0;
        padding: 2px 0 6px 14px;
        min-width: 0;
    }

    /* Mobilde alt menü görünürlüğü SADECE accordion (.expanded) ile yönetilir.
       Hover/focus-within dokunmatikte güvenilmez ve "kapat"ı engelliyordu
       (tetikleyici hâlâ focuslu kalınca menü açık takılıyordu). Bu override
       global :hover/:focus-within kuralını (specificity eşit, kaynakta sonra)
       mobilde iptal eder; görünürlüğü JS'in eklediği .expanded belirler. */
    .nav-dropdown:hover .nav-dropdown-menu,
    .nav-dropdown:focus-within .nav-dropdown-menu {
        display: none;
    }

    .nav-dropdown.expanded .nav-dropdown-menu {
        display: flex;
    }

    .nav-dropdown.expanded .nav-dropdown-trigger {
        color: var(--brand, #d62828);
    }

    .nav-dropdown-menu a {
        font-size: 0.84rem;
    }

    .section {
        padding: 14px;
        margin-top: 18px;
        border-radius: var(--radius-lg);
    }

    .card-grid,
    .price-grid,
    .contact-grid,
    .story-lite-grid,
    .visual-strip,
    .visual-strip.compact,
    .feature-bento,
    .business-mosaic,
    .showcase,
    .trial-grid {
        grid-template-columns: 1fr;
    }

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

    .showcase img,
    .story-lite-card img {
        height: 180px;
    }

    .hero h1 {
        font-size: clamp(1.8rem, 7.5vw, 2.6rem);
    }

    .hero p,
    .hero-list li {
        font-size: 0.98rem;
    }

    .report-gallery {
        padding: 0 38px;
    }

    .gallery-item {
        flex: 0 0 84%;
    }

    .gallery-nav {
        width: 40px;
        height: 40px;
    }

    .quick-chat {
        right: 10px;
        bottom: 10px;
    }

    .quick-chat-btn {
        padding: 12px 16px;
        font-size: 0.92rem;
    }

    .quick-chat-panel {
        width: min(420px, calc(100vw - 18px));
        padding: 16px;
    }

    .footer-links {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        column-gap: 20px;
    }
}

@media (max-width: 640px) {
    .footer-links {
        grid-template-columns: 1fr;
        column-gap: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    [data-reveal] {
        opacity: 1 !important;
        transform: none !important;
        filter: none !important;
        transition: none !important;
    }

    .gallery-track,
    .card,
    .btn,
    .hero-visual {
        transition: none !important;
    }
}

/* Tüm cihazlarda çalışır — cihaz mockup'ları */
.device-showcase {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 28px;
    flex-wrap: wrap;
    margin-top: 18px;
}

.device {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.device-label {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text-soft);
}

.device .screen {
    overflow: hidden;
    background: #000;
}

.device .screen img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

.device-monitor {
    width: min(440px, 82vw);
}

.device-monitor .screen {
    border: 12px solid #14151a;
    border-radius: 16px;
}

.device-monitor .screen img { aspect-ratio: 1600 / 910; }

.device-monitor .stand {
    width: 70px;
    height: 22px;
    background: #14151a;
    margin: 0 auto;
}

.device-monitor .base {
    width: 150px;
    height: 9px;
    background: #14151a;
    margin: 0 auto;
    border-radius: 6px;
}

.device-tablet {
    width: min(330px, 72vw);
}

.device-tablet .screen {
    border: 12px solid #14151a;
    border-radius: 20px;
}

.device-tablet .screen img { aspect-ratio: 1400 / 991; }

.device-phone {
    width: min(132px, 42vw);
}

.device-phone .screen {
    border: 9px solid #14151a;
    border-radius: 24px;
}

.device-phone .screen img { aspect-ratio: 853 / 1600; }

/* Faaliyet alanları */
.sectors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 12px;
}

.sector-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 12px;
    background: var(--surface-low);
    border-radius: var(--radius-md);
    text-align: center;
    transition: transform 0.2s var(--motion-ease), box-shadow 0.2s var(--motion-ease);
}

.sector-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 28px rgba(26, 28, 28, 0.08);
}

.sector-card i {
    font-size: 32px;
    color: var(--primary);
}

.sector-card span {
    font-weight: 700;
    color: var(--text);
}

@media (max-width: 980px) {
    .sectors-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 560px) {
    .sectors-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Destek kurulum adımları + konu kartları */
.support-steps {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 12px;
}

.support-steps .card h3 {
    margin-bottom: 8px;
}

/* Destek index — kategori başına SOL görsel+başlık, SAĞ kartlar */
.support-group {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 22px;
    align-items: start;
    margin-top: 28px;
}

.support-cat-aside {
    position: sticky;
    top: 84px;
}

.support-cat-banner {
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: inset 0 0 0 1px rgba(188, 1, 0, 0.1), 0 14px 30px rgba(26, 28, 28, 0.08);
    margin-bottom: 12px;
}

.support-cat-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.support-cat-aside p {
    margin: 6px 0 0;
    color: var(--text-soft);
    font-size: 0.92rem;
    line-height: 1.5;
}

.support-category {
    font-family: "Inter", "Manrope", sans-serif !important;
    font-size: 1.15rem !important;
    font-weight: 800 !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    color: var(--text);
    margin: 0;
}

.support-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

@media (max-width: 860px) {
    .support-group {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .support-cat-aside {
        position: static;
    }

    .support-cat-banner {
        aspect-ratio: 16 / 7;
        margin-bottom: 10px;
    }

    .support-cards {
        grid-template-columns: 1fr;
    }
}

.support-card {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    transition: transform 0.2s var(--motion-ease), box-shadow 0.2s var(--motion-ease);
}

.support-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 30px rgba(26, 28, 28, 0.1);
}

.support-card > div {
    flex: 1;
    min-width: 0;
}

.support-card h3 {
    color: var(--primary);
    margin: 0 0 4px;
}

.support-card p {
    margin: 0;
}

.support-icon {
    flex: 0 0 auto;
    width: 42px;
    height: 42px;
    border-radius: var(--radius-sm);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(188, 1, 0, 0.08);
    color: var(--primary);
    font-size: 18px;
}

.support-arrow {
    flex: 0 0 auto;
    color: var(--primary);
    font-weight: 800;
    font-size: 1.1rem;
    opacity: 0.45;
    transition: transform 0.2s var(--motion-ease), opacity 0.2s var(--motion-ease);
}

.support-card:hover .support-arrow {
    opacity: 1;
    transform: translateX(3px);
}

/* QR Menü canlı demo — telefon mockup + iframe */
.demo-stage {
    display: flex;
    gap: 32px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 18px;
}

.phone-mock {
    position: relative;
    width: 340px;
    max-width: 88vw;
    aspect-ratio: 9 / 19.5;
    background: #0d0d0f;
    border-radius: 46px;
    padding: 14px;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.28), inset 0 0 0 2px rgba(255, 255, 255, 0.06);
    flex: 0 0 auto;
}

.phone-notch {
    position: absolute;
    top: 14px;
    left: 50%;
    transform: translateX(-50%);
    width: 140px;
    height: 26px;
    background: #0d0d0f;
    border-radius: 0 0 18px 18px;
    z-index: 2;
}

.phone-mock iframe {
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 34px;
    background: transparent;
    display: block;
    position: relative;
    z-index: 1;
}

/* iframe yüklenene kadar gösterilen yükleme ekranı */
.phone-loader {
    position: absolute;
    inset: 14px;
    border-radius: 34px;
    background: #17100f;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    z-index: 0;
    color: #c8aaa4;
    transition: opacity 0.45s var(--motion-ease);
}

.phone-loader i {
    font-size: 46px;
    color: var(--primary);
    opacity: 0.9;
}

.phone-loader-text {
    font-weight: 700;
    font-size: 0.95rem;
}

.phone-loader-spin {
    width: 26px;
    height: 26px;
    border: 3px solid rgba(188, 1, 0, 0.18);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: phone-spin 0.8s linear infinite;
}

@keyframes phone-spin {
    to {
        transform: rotate(360deg);
    }
}

.phone-mock.is-loaded .phone-loader {
    opacity: 0;
    pointer-events: none;
}

.demo-points {
    max-width: 440px;
    flex: 1 1 320px;
}

.demo-points h2 {
    margin-bottom: 14px;
}

.demo-note {
    margin-top: 14px;
    font-size: 0.9rem;
    color: #c8aaa4;
}

@media (max-width: 720px) {
    .demo-stage {
        gap: 28px;
    }

    .phone-mock {
        width: 300px;
    }
}

/* ===== CANLI DEMO — 3 telefon + QR (hareketli) ===== */
.demo-trio {
    display: flex;
    flex-wrap: wrap;
    gap: 36px 28px;
    justify-content: center;
    align-items: flex-start;
    margin-top: 28px;
}
.demo-card {
    flex: 0 1 350px;
    max-width: 366px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}
.demo-card .phone-mock {
    width: 290px;
    max-width: 100%;
    margin: 0;
}

/* QR + tarama-çizgisi animasyonu */
.demo-qr-wrap { display: flex; flex-direction: column; align-items: center; gap: 9px; }
.demo-qr {
    position: relative;
    width: 120px;
    height: 120px;
    padding: 11px;
    background: #17100f;
    border-radius: 16px;
    box-shadow: 0 12px 28px rgba(26, 18, 16, 0.16), inset 0 0 0 1px rgba(26, 18, 16, 0.06);
    overflow: hidden;
}
.demo-qr img { width: 100%; height: 100%; display: block; }
.demo-qr-scan {
    position: absolute;
    left: 9px;
    right: 9px;
    top: 11px;
    height: 16px;
    border-radius: 6px;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(188, 1, 0, 0) 0%, rgba(188, 1, 0, 0.5) 55%, rgba(188, 1, 0, 0) 100%);
    box-shadow: 0 0 14px 3px rgba(188, 1, 0, 0.4);
    animation: qr-scan 2.6s var(--motion-ease) infinite;
}
@keyframes qr-scan {
    0% { top: 11px; opacity: 0; }
    14% { opacity: 1; }
    50% { top: calc(100% - 27px); opacity: 1; }
    86% { opacity: 1; }
    100% { top: 11px; opacity: 0; }
}
.demo-qr-label {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--text-soft);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.demo-qr-label i { color: var(--primary); }

/* yüzen + glow telefon (etkileşimde durur ki kullanılabilsin) */
.phone-live {
    animation: phone-float 6.5s var(--motion-ease) infinite;
    will-change: transform;
}
.demo-card:nth-child(2) .phone-live { animation-delay: -2.1s; }
.demo-card:nth-child(3) .phone-live { animation-delay: -4.3s; }
.phone-live::before {
    content: "";
    position: absolute;
    inset: -14% -20%;
    z-index: -1;
    background: radial-gradient(58% 48% at 50% 42%, rgba(188, 1, 0, 0.30), rgba(188, 1, 0, 0) 70%);
    filter: blur(26px);
    animation: halo-pulse 6.5s var(--motion-ease) infinite;
}
@keyframes phone-float {
    0%, 100% { transform: translateY(0) rotate(-0.5deg); }
    50% { transform: translateY(-13px) rotate(0.5deg); }
}
@keyframes halo-pulse {
    0%, 100% { opacity: 0.5; transform: scale(0.96); }
    50% { opacity: 0.9; transform: scale(1.05); }
}
.demo-card:hover .phone-live,
.demo-card:focus-within .phone-live {
    animation: none;
    transform: translateY(-6px);
}
.demo-open {
    font-size: 0.85rem;
    padding: 0.5rem 1.05rem;
}

/* alt bilgi şeridi */
.demo-foot {
    margin-top: 34px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}
.demo-chips {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}
.demo-chips li {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-soft);
    background: var(--surface-low);
    border-radius: 999px;
    padding: 0.42rem 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 7px;
}
.demo-chips li::before { content: "\2713"; color: var(--primary); font-weight: 800; }

/* HERO görseli — canlı (float + cam parıltısı; qrmenum.app esinli özgün) */
.hero-visual {
    position: relative;
    animation: hero-float 7s var(--motion-ease) infinite;
    will-change: transform;
}
.hero-visual::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(115deg, transparent 38%, rgba(255, 255, 255, 0.30) 48%, rgba(255, 255, 255, 0.04) 56%, transparent 66%);
    background-size: 220% 220%;
    animation: hero-glare 7.5s var(--motion-ease) infinite;
}
@keyframes hero-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-11px); }
}
@keyframes hero-glare {
    0%, 100% { background-position: 120% 0%; }
    50% { background-position: -20% 100%; }
}

@media (max-width: 720px) {
    .demo-trio { gap: 32px; }
    .demo-card .phone-mock { width: 280px; }
}
@media (prefers-reduced-motion: reduce) {
    .phone-live,
    .phone-live::before,
    .demo-qr-scan,
    .hero-visual,
    .hero-visual::after {
        animation: none !important;
    }
    .phone-live,
    .hero-visual { transform: none; }
    .demo-qr-scan,
    .hero-visual::after { opacity: 0; }
}

/* ===== SEO Faz 5 — BLOG ===== */
.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: #c8aaa4;
    margin-bottom: 8px;
}
.breadcrumb a { color: #ff1d25; text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }

.hero-blog { align-items: flex-start; }
.hero-blog h1 { max-width: 16ch; }

.blog-grid,
.blog-cat-grid { gap: 22px; }

.blog-card { padding: 0; overflow: hidden; }
.blog-card-link {
    display: block;
    color: inherit;
    text-decoration: none;
    height: 100%;
}
.blog-card-link img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: contain;
    background: #1e1614;
    padding: 18px;
    border-bottom: 1px solid #2a1d1a;
}
.blog-card h3 { margin: 14px 18px 6px; font-size: 1.05rem; }
.blog-card p { margin: 0 18px 18px; color: #c8aaa4; font-size: 0.92rem; }
.blog-card-cat {
    display: inline-block;
    margin: 14px 18px 0;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #ff1d25;
}

.blog-cat-card { display: flex; align-items: center; justify-content: center; text-align: center; min-height: 96px; }
.blog-cat-card h3 { margin: 0; font-size: 1rem; }

/* makale gövdesi */
.post-article { max-width: 820px; margin: 0 auto; }
.post-header h1 { margin: 6px 0 8px; }
.post-meta { color: #c8aaa4; font-size: 0.85rem; }
.post-hero img {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: contain;
    background: #1e1614;
    border-radius: 18px;
    padding: 24px;
    margin: 18px 0 8px;
}
.post-body { font-size: 1.02rem; line-height: 1.75; color: #f5ece9; }
.post-body h2 { margin: 32px 0 12px; font-size: 1.5rem; }
.post-body h3 { margin: 22px 0 8px; font-size: 1.18rem; }
.post-body p { margin: 0 0 16px; }
.post-body ul,
.post-body ol { margin: 0 0 18px 1.2em; }
.post-body li { margin-bottom: 8px; }
.post-body a { color: #ff1d25; }

.table-wrap { overflow-x: auto; margin: 0 0 20px; }
.blog-table { width: 100%; border-collapse: collapse; font-size: 0.95rem; }
.blog-table th,
.blog-table td { padding: 10px 12px; border: 1px solid #2a1d1a; text-align: left; }
.blog-table th { background: #1e1614; font-weight: 700; }
.blog-quote { margin: 1.5rem 0; padding: 0.85rem 1.25rem; border-left: 4px solid var(--brand, #bc0100); background: rgba(188,1,0,0.06); border-radius: 0 10px 10px 0; font-style: italic; font-size: 1.05rem; line-height: 1.6; }
.blog-quote footer { margin-top: 0.6rem; font-style: normal; font-weight: 700; font-size: 0.9rem; opacity: 0.72; }

.post-cta {
    margin: 36px 0;
    padding: 28px;
    border-radius: 18px;
    background: #1e1614;
    border: 1px solid #2a1d1a;
    text-align: center;
}
.post-cta h2 { margin: 0 0 6px; }
.post-cta .hero-cta { justify-content: center; margin-top: 16px; }
.post-related h2 { margin-bottom: 16px; }


/* ============ KVKK ÇEREZ ONAY BANNER'I (analytics.js açar/kapar) ============ */
.rox-cookie-banner {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 9999;
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    background: #17100f;
    color: #f5ece9;
    border: 1px solid rgba(26, 28, 28, 0.12);
    border-radius: 16px;
    box-shadow: 0 16px 40px rgba(26, 28, 28, 0.18);
    padding: 14px 18px;
}
.rox-cookie-banner[hidden] { display: none; }
.rox-cookie-text {
    margin: 0;
    flex: 1 1 280px;
    font-size: 0.9rem;
    line-height: 1.45;
}
.rox-cookie-text a { color: #d62828; text-decoration: underline; }
.rox-cookie-actions {
    display: flex;
    gap: 10px;
    flex: 0 0 auto;
}
.rox-cookie-btn {
    border: 0;
    border-radius: 10px;
    padding: 10px 18px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
}
.rox-cookie-reject {
    background: transparent;
    color: #f5ece9;
    border: 1px solid rgba(26, 28, 28, 0.25);
}
.rox-cookie-accept {
    background: #d62828;
    color: #fff;
}
.rox-cookie-accept:hover { background: #b91f1f; }
@media (max-width: 560px) {
    .rox-cookie-banner { flex-direction: column; align-items: stretch; text-align: center; }
    .rox-cookie-text { flex: 0 0 auto; }
    .rox-cookie-actions { justify-content: center; }
    .rox-cookie-btn { flex: 1; }
}

/* ===== ROXQR marka kelime-işareti (logo) ===== */
.brand-wordmark {
    font-family: "Inter", "Manrope", sans-serif;
    font-weight: 900;
    font-size: 1.5rem;
    letter-spacing: -0.03em;
    color: var(--text);
    line-height: 1;
    display: inline-flex;
    align-items: center;
}
.brand-wordmark span { color: var(--primary); }
.topbar-logo.brand-wordmark { width: auto; padding: 0 6px; flex: 0 0 auto; }
.footer-wordmark { font-size: 1.7rem; margin-bottom: 10px; display: inline-flex; }

/* ===== ROXQR ana sayfa: ek bölümler (RoxPos tasarım diline uyumlu) ===== */
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--surface); border: 1px solid var(--outline);
    border-radius: 999px; padding: 7px 14px; font-weight: 700; font-size: 0.86rem; color: var(--text-soft);
}
.hero-badge i { color: var(--primary); }

.trust-strip {
    display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 30px;
    padding: 18px 0; margin-top: 8px;
}
.trust-strip .trust-item { display: inline-flex; align-items: center; gap: 9px; font-weight: 700; color: var(--text-soft); }
.trust-strip .trust-item i { color: var(--secondary); font-size: 1.15rem; }

.qr-feature-grid {
    display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px;
}
@media (max-width: 1080px) { .qr-feature-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 760px) { .qr-feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 460px) { .qr-feature-grid { grid-template-columns: 1fr; } }
.qr-feature {
    background: var(--surface); border: 1px solid var(--outline);
    border-radius: var(--radius-md); padding: 16px 16px 18px;
    display: grid; gap: 8px; align-content: start;
    transition: transform .2s var(--motion-ease), box-shadow .2s var(--motion-ease), border-color .2s var(--motion-ease);
}
.qr-feature:hover { transform: translateY(-3px); box-shadow: 0 18px 34px rgba(26,28,28,.08); border-color: var(--outline-soft); }
.qr-feature i { color: var(--primary); font-size: 1.4rem; }
.qr-feature h3 { margin: 2px 0 0; font-size: 1.02rem; }
.qr-feature p { margin: 0; color: var(--text-soft); font-size: 0.92rem; }

.steps-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 14px; counter-reset: step; }
@media (max-width: 900px) { .steps-grid { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (max-width: 480px) { .steps-grid { grid-template-columns: 1fr; } }
.step-card { background: var(--surface); border: 1px solid var(--outline); border-radius: var(--radius-md); padding: 18px; display: grid; gap: 8px; }
.step-card .step-num {
    width: 38px; height: 38px; border-radius: 999px; background: var(--primary); color: #fff;
    display: inline-flex; align-items: center; justify-content: center; font-weight: 900; font-size: 1.05rem;
}
.step-card h3 { margin: 0; font-size: 1rem; }
.step-card p { margin: 0; color: var(--text-soft); font-size: .9rem; }

/* (eski demo-grid/demo-card/demo-phone/demo-meta CSS kaldırıldı — telefon arkası beyaz kart buradan geliyordu; güncel demo .demo-trio + .phone-mock kullanıyor) */

.compliance-box {
    background: linear-gradient(135deg, rgba(0,106,98,.06), rgba(188,1,0,.05));
    border: 1px solid var(--outline); border-radius: var(--radius-lg); padding: 26px;
}
.compliance-list { display: flex; flex-wrap: wrap; gap: 10px; margin: 16px 0; }
.compliance-list span {
    display: inline-flex; align-items: center; gap: 8px; background: var(--surface);
    border: 1px solid var(--outline); border-radius: 999px; padding: 7px 14px; font-weight: 700; font-size: .88rem;
}
.compliance-list span i { color: var(--secondary); }
.compliance-note {
    background: rgba(255,193,7,.12); border: 1px solid rgba(212,160,23,.4); border-radius: var(--radius-sm);
    padding: 13px 16px; font-size: .9rem; color: #7a5b00; display: flex; gap: 10px; align-items: flex-start;
}
.compliance-note i { margin-top: 2px; }
.compliance-news {
    display: flex; flex-wrap: wrap; align-items: center; gap: 10px 14px;
    background: var(--surface); border: 1px solid var(--outline);
    border-left: 4px solid var(--secondary); border-radius: var(--radius-sm);
    padding: 13px 16px; margin-bottom: 18px; font-size: .92rem; line-height: 1.5;
}
.compliance-news-badge {
    flex: none; background: var(--secondary); color: #fff; font-weight: 800;
    font-size: .72rem; letter-spacing: .06em; border-radius: 999px; padding: 4px 10px;
}
.compliance-news > span:nth-child(2) { flex: 1 1 260px; min-width: 220px; }
.compliance-news a { flex: none; font-weight: 800; color: var(--secondary); white-space: nowrap; }

.landing-hero { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 30px; align-items: center; }
@media (max-width: 880px) { .landing-hero { grid-template-columns: 1fr; } }
.landing-hero img { width: 100%; border-radius: var(--radius-lg); border: 1px solid var(--outline); }
.check-list { list-style: none; padding: 0; margin: 16px 0; display: grid; gap: 10px; }
.check-list li { display: flex; gap: 10px; align-items: flex-start; }
.check-list li::before { content: "\f00c"; font-family: "Font Awesome 6 Free"; font-weight: 900; color: var(--secondary); margin-top: 2px; }

/* ===== KOYU TEMA cila — kart belirginliği + glow (qrmenum hissi · kırmızı/beyaz/siyah) ===== */
.feature-bento,
.card,
.feature-card,
.business-card,
.story-lite-card,
.price-card,
.integration-group-card,
.faq-grid details,
.cta-box,
.customizer-panel,
.nav-dropdown-menu,
.quick-chat-panel,
.post-cta {
    border: 1px solid var(--outline);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
}
.topbar { box-shadow: 0 12px 44px rgba(0, 0, 0, 0.5); }
.hero-visual { box-shadow: 0 34px 80px rgba(0, 0, 0, 0.55), 0 0 0 1px var(--outline); }
.demo-qr { box-shadow: 0 12px 28px rgba(0, 0, 0, 0.5), inset 0 0 0 1px var(--outline); }
.btn-primary { box-shadow: 0 10px 28px rgba(255, 42, 38, 0.42); }

/* ===== HERO — canlı animasyonlu telefon (video-gibi · qrmenum esinli özgün) ===== */
.hero-visual {
    background: transparent !important;
    border: 0 !important;
    overflow: visible !important;
    box-shadow: none !important;
    animation: none !important;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1500px;
    padding: 8px 0;
}
.hero-visual::after { display: none !important; }

.hero-phone {
    position: relative;
    width: 300px;
    max-width: 84vw;
    transform-style: preserve-3d;
    animation: hero-phone-float 7.5s var(--motion-ease) infinite;
}
@keyframes hero-phone-float {
    0%, 100% { transform: translateY(0) rotateY(-15deg) rotateX(5deg) rotateZ(-1deg); }
    50%      { transform: translateY(-15px) rotateY(-10deg) rotateX(3deg) rotateZ(0deg); }
}
.hero-phone-halo {
    position: absolute;
    inset: -16% -24%;
    z-index: -1;
    background: radial-gradient(56% 50% at 56% 42%, rgba(255, 42, 38, 0.42), rgba(255, 42, 38, 0) 70%);
    filter: blur(34px);
    animation: hero-phone-halo 7.5s var(--motion-ease) infinite;
}
@keyframes hero-phone-halo {
    0%, 100% { opacity: .5; transform: scale(.94); }
    50%      { opacity: 1; transform: scale(1.07); }
}
.hero-phone-frame {
    position: relative;
    aspect-ratio: 300 / 620;
    background: #0c0c0f;
    border-radius: 46px;
    padding: 13px;
    box-shadow: 0 44px 95px rgba(0, 0, 0, 0.62), inset 0 0 0 2px rgba(255, 255, 255, 0.07), 0 0 0 1px rgba(255, 90, 80, 0.20);
}
.hero-phone-notch {
    position: absolute;
    top: 13px; left: 50%; transform: translateX(-50%);
    width: 108px; height: 23px;
    background: #0c0c0f; border-radius: 0 0 16px 16px; z-index: 4;
}
.hero-phone-screen {
    position: relative;
    height: 100%;
    border-radius: 33px;
    overflow: hidden;
    background: #fbf8f6;
    color: #241515;
}
.hero-phone-scroll {
    display: flex;
    flex-direction: column;
    animation: hpm-scroll 16s ease-in-out infinite;
    will-change: transform;
}
@keyframes hpm-scroll {
    0%, 8%    { transform: translateY(0); }
    48%, 56%  { transform: translateY(-300px); }
    94%, 100% { transform: translateY(0); }
}
.hpm-cover { position: relative; height: 152px; flex: 0 0 auto; }
.hpm-cover-img { position: absolute; inset: 0; background: url('/images/qr-menu.webp') center/cover; }
.hpm-cover::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.04), rgba(0,0,0,.58)); }
.hpm-cover-bar { position: absolute; left: 13px; right: 13px; bottom: 11px; display: flex; align-items: center; gap: 9px; z-index: 2; }
.hpm-logo {
    width: 34px; height: 34px; border-radius: 10px; flex: 0 0 auto;
    background: linear-gradient(135deg, #ff2a26, #ff5a52); color: #fff;
    font-weight: 800; font-size: 17px; display: flex; align-items: center; justify-content: center;
    box-shadow: 0 6px 16px rgba(255, 42, 38, 0.5);
}
.hpm-name { display: flex; flex-direction: column; color: #fff; font-weight: 800; font-size: 14.5px; line-height: 1.15; }
.hpm-name small { font-weight: 600; font-size: 10px; opacity: .9; }
.hpm-chips { display: flex; gap: 7px; padding: 11px 12px; overflow: hidden; flex: 0 0 auto; }
.hpm-chips span { font-size: 11px; font-weight: 700; color: #6d544f; background: #f1ebe9; border-radius: 999px; padding: 5px 11px; white-space: nowrap; }
.hpm-chips span.on { background: #ff2a26; color: #fff; }
.hpm-item { display: flex; align-items: center; gap: 10px; padding: 8px 12px; border-top: 1px solid #f0eae8; flex: 0 0 auto; }
.hpm-thumb { width: 42px; height: 42px; border-radius: 11px; flex: 0 0 auto; display: flex; align-items: center; justify-content: center; font-size: 21px; background: #f4eeec; }
.hpm-thumb.g1 { background: linear-gradient(135deg, #ffe2c2, #ffb27a); }
.hpm-thumb.g2 { background: linear-gradient(135deg, #d8f3d8, #9fe0a0); }
.hpm-thumb.g3 { background: linear-gradient(135deg, #fde7cf, #f2c79a); }
.hpm-thumb.g4 { background: linear-gradient(135deg, #ffd9d9, #ff9b9b); }
.hpm-thumb.g5 { background: linear-gradient(135deg, #ffe0cc, #ffae87); }
.hpm-thumb.g6 { background: linear-gradient(135deg, #e8ddd2, #c9a98a); }
.hpm-thumb.g7 { background: linear-gradient(135deg, #ffd2dc, #ff9bb0); }
.hpm-thumb.g8 { background: linear-gradient(135deg, #fff0bf, #ffe07a); }
.hpm-info { flex: 1 1 auto; min-width: 0; display: flex; flex-direction: column; gap: 2px; }
.hpm-info b { font-size: 12.5px; font-weight: 800; color: #241515; display: flex; align-items: center; gap: 6px; }
.hpm-info small { font-size: 10.5px; color: #6d544f; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.hpm-badge { font-size: 8.5px; font-weight: 800; font-style: normal; background: #ff2a26; color: #fff; border-radius: 6px; padding: 2px 5px; }
.hpm-badge.veg { background: #2faa5e; }
.hpm-badge.chef { background: #b8860b; }
.hpm-price { font-size: 13px; font-weight: 800; color: #ff2a26; flex: 0 0 auto; }
.hero-phone-glare {
    position: absolute; inset: 0; z-index: 5; pointer-events: none; border-radius: 33px;
    background: linear-gradient(125deg, transparent 35%, rgba(255,255,255,.42) 47%, rgba(255,255,255,.06) 55%, transparent 68%);
    background-size: 250% 250%;
    animation: hero-phone-glare 6.5s var(--motion-ease) infinite;
}
@keyframes hero-phone-glare {
    0%, 100% { background-position: 120% 0; }
    50%      { background-position: -20% 100%; }
}
.hero-phone-nav {
    position: absolute; left: 0; right: 0; bottom: 0; z-index: 6;
    display: flex; align-items: center; justify-content: space-between;
    padding: 11px 24px; font-size: 16px; color: #6d544f;
    background: linear-gradient(180deg, rgba(251,248,246,0), #fbf8f6 45%);
}
.hpm-cart { color: #ff2a26; }
@media (max-width: 720px) { .hero-phone { width: 256px; } }
@media (prefers-reduced-motion: reduce) {
    .hero-phone, .hero-phone-halo, .hero-phone-scroll, .hero-phone-glare { animation: none !important; }
    .hero-phone { transform: rotateY(-12deg) rotateX(4deg); }
}

/* ===== düzeltmeler: orphan grid + başlık çizgisi + hero video ===== */
/* başlık üstü kırmızı çizgi kaldırıldı (kullanıcı: hoş değil) */
.feature-card::before { display: none !important; }
/* diyet rozetleri 4 kart → 2x2 (tek kalan Helal düzeltildi) */
#diyet-rozetleri .feature-bento { grid-template-columns: repeat(2, minmax(0, 1fr)); }
@media (max-width: 720px) {
    #diyet-rozetleri .feature-bento { grid-template-columns: 1fr; }
}
/* hero telefonuna gerçek video konursa (wwwroot/videos/hero-menu.mp4) */
.hero-phone-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 33px;
}

/* feature kartları: HEPSİ TEK RENK (yeşil/kırmızı varyant kaldırıldı) + beyaz sheen yok */
.feature-card,
.feature-card.secondary,
.feature-card.accent {
    background: var(--surface-low);
    background-image: none;
    padding-top: 18px;
}
/* başlık başına küçük kırmızı nokta (çizgi yerine) */
.feature-card h3::before {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    margin-right: 9px;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 9px rgba(255, 42, 38, 0.65);
    vertical-align: middle;
    transform: translateY(-2px);
}

/* ===== ÖRNEKLER galerisi (showcase) — masonry, otomatik klasörden ===== */
.showcase-grid {
    columns: 3 320px;
    column-gap: 18px;
    margin-top: 24px;
}
.showcase-item {
    break-inside: avoid;
    margin: 0 0 18px;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--outline);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.45);
    background: var(--surface-low);
    transition: transform 0.4s var(--motion-ease), box-shadow 0.4s var(--motion-ease);
}
/* NOT: columns(masonry) + transform Chrome/Safari'de öğeyi kayboruyor → transform YOK, sadece gölge/kenarlık */
.showcase-item:hover {
    box-shadow: 0 26px 60px rgba(0, 0, 0, 0.55), 0 0 0 2px var(--outline-soft);
}
.showcase-item img {
    width: 100%;
    height: auto;
    display: block;
}
.showcase-item figcaption {
    padding: 12px 16px;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text);
}
@media (max-width: 640px) {
    .showcase-grid { columns: 1; }
}

/* ===== AÇIK BÖLÜM — koyu temayı kırmak için alternasyon (qrmenum gibi) ===== */
/* "Açık" bölüm = KOYU kanvasta BÜYÜK BEYAZ kart (sevilen görünüm). İç içerik beyaz kartın üstünde. */
.section {
    --surface: #ffffff;
    --surface-low: #f5f3f2;
    --surface-mid: #eceae9;
    --surface-high: #e2e0df;
    --text: #1a1c1c;
    --text-soft: #5b4540;
    --outline: rgba(26, 18, 16, 0.10);
    --outline-soft: rgba(209, 21, 16, 0.22);
    --primary: #d11510;
    background: #f6f4f3;
    border-radius: var(--radius-lg);
    color: #2a1a17;
}
.section::before { display: none; }
.section h1,
.section h2,
.section h3,
.section h4,
.section strong,
.section b {
    color: #1a1c1c !important;
}
.section p,
.section li,
.section small,
.section figcaption {
    color: #5b4540 !important;
}
.section .eyebrow { color: #c01511 !important; }
.section .sector-card span { color: #1a1c1c !important; }
.section .sector-card i { color: var(--primary); }
/* sektör kartlarına diğer kutularla AYNI görünüm: ince çerçeve + hafif beyaz degrade (gölge YOK) */
.section .sector-card {
    border: 1px solid var(--outline) !important;
    background-image: linear-gradient(160deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0)) !important;
}
/* arkadaki gri drop-shadow'lar KALDIRILDI (kullanıcı: gereksiz). Beyaz kutular + ince çerçeve kalır, gölge gitmez. */
.section,
.section .feature-card,
.section .card,
.section .sector-card,
.section .story-lite-card,
.section .price-card,
.section .business-card,
.section .integration-group-card,
.section .faq-grid details,
.section .showcase-item,
.section .cta-box {
    box-shadow: none !important;
}
/* kartları saran KÖŞELİ ORTA çerçeve (.feature-bento grid sarmalayıcısı) kaldırıldı — en dış bölüm + tek tek kartlar kalır */
.feature-bento {
    border: none !important;
    box-shadow: none !important;
    background: transparent !important;
}

/* tekrarlayan küçük kırmızı köşe parıltısı KALDIRILDI (monotonluk + qrmenum gibi sade) */
.section::before { display: none !important; }

/* DEMO: telefon çerçevesi (görünür) + üstte küçük QR rozeti + canlı menü (prod'da yüklenir, lokalde beyaz ekran) */
#demo .demo-qr { width: 116px; height: 116px; border-radius: 16px; }
#demo .demo-card { gap: 14px; }
#demo .demo-qr-label { font-size: 0.85rem; }
#demo .phone-mock { width: 350px; max-width: 100%; overflow: hidden; }
/* ekran BEYAZ → lokalde boş kalsa da çerçeve + beyaz menü ekranı görünür (koyu void yok) */
#demo .phone-mock iframe { background: transparent; }
#demo .phone-loader { background: #ffffff; color: #6d544f; }
#demo .phone-loader i { color: var(--primary); font-size: 38px; }
/* beyaz demo kartında telefon arkası kırmızı halo gereksiz → kaldır, sade gölge kalsın */
#demo .phone-live::before { display: none; }
#demo .phone-mock { box-shadow: 0 18px 40px rgba(26, 18, 16, 0.18); }

/* CTA kutusu bilerek KOYU (vurgu) → açık yazı; beyaz-kart kuralından muaf */
.section .cta-box {
    background: #1e1614 !important;
    border: 1px solid rgba(255, 120, 126, 0.35) !important;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45) !important;
    color: #f5ece9;
}
.section .cta-box h2,
.section .cta-box strong { color: #f5ece9 !important; }
.section .cta-box p { color: #d8c3bf !important; }
.section .demo-qr { background: #ffffff !important; }
.section .faq-grid summary::after { background: #ece8e6; color: #1a1c1c; }
/* DEMO bölümü AÇIK zemin (koyu telefon çerçeveleri görünsün); diğer bölümler koyu kanvas */
#demo.section { background: #f6f4f3; border-radius: var(--radius-lg); }
#demo .section-head h2 { color: #1a1c1c !important; }
#demo .section-head p { color: #5b4540 !important; }

/* ===== TÜM SAYFALAR AÇIK TEMA: blog/post bileşenleri koyu-tema sabit renkleriyle gelir → beyaz kartta açığa çek ===== */
.section .blog-card { background: var(--surface); border: 1px solid var(--outline); border-radius: var(--radius-lg); overflow: hidden; }
.section .blog-card-link img { background: var(--surface-low); border-bottom-color: var(--outline); }
.section .blog-card p { color: var(--text-soft) !important; }
.section .post-meta { color: var(--text-soft) !important; }
.section .post-body { color: var(--text); }
.section .post-body a { color: var(--primary); }
.section .blog-table th { background: var(--surface-mid); color: var(--text); }
.section .blog-table td { border-color: var(--outline); }

/* ===== Ana sayfa fiyat rozetleri: hero (koyu) kırmızı pill + Fiyatlar teaser (açık) büyük rakam ===== */
/* Hero fiyat MÜHÜR/ROZET: telefon ile metin arasında, yukarıda, tek başına yüzer (sunburst halka + kesik-çizgi iç mühür). */
.hero-price {
    position: absolute;
    top: 14px;
    left: 57%;
    transform: translateX(-50%) rotate(-8deg);
    z-index: 6;
    width: 158px;
    height: 158px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    text-align: center;
    text-decoration: none;
    line-height: 1.1;
    color: #fff;
    border-radius: 50%;
    background: repeating-conic-gradient(from 0deg, #e21b16 0deg 9deg, #b30f0b 9deg 18deg);
    box-shadow: 0 18px 42px rgba(188, 1, 0, 0.5);
    animation: hero-price-float 3.6s ease-in-out infinite;
}
.hero-price:hover { animation-play-state: paused; }
@keyframes hero-price-float {
    0%, 100% { transform: translateX(-50%) translateY(0) rotate(-8deg); }
    50%      { transform: translateX(-50%) translateY(-13px) rotate(-3deg); }
}
@keyframes hero-price-bob {
    0%, 100% { transform: translateY(0) rotate(-5deg); }
    50%      { transform: translateY(-9px) rotate(-2deg); }
}
@media (prefers-reduced-motion: reduce) {
    .hero-price { animation: none; }
}
.hero-price::before {
    content: "";
    position: absolute;
    inset: 13px;
    border-radius: 50%;
    background: var(--primary);
    border: 2px dashed rgba(255, 255, 255, 0.65);
}
.hero-price-amt { position: relative; z-index: 1; font-size: 1.5rem; font-weight: 900; letter-spacing: -0.02em; }
.hero-price-period { position: relative; z-index: 1; font-size: 1.02rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; margin-top: 2px; }
.hero-price-tax { position: relative; z-index: 1; font-size: 0.62rem; font-weight: 700; opacity: 0.82; margin-top: 1px; }
@media (max-width: 900px) {
    .hero-price { position: static; transform: rotate(-5deg); margin: 20px auto 0; animation: hero-price-bob 3.6s ease-in-out infinite; }
}

/* Footer: RoxPos tanıtımı + marka linkleri + adres (footer KOYU kalır) */
.footer-roxpos { color: #c8aaa4; font-size: 0.9rem; line-height: 1.6; margin-top: 10px; max-width: 480px; }
.footer-brands { display: flex; flex-wrap: wrap; gap: 8px 16px; margin-top: 12px; }
.footer-brands a { color: var(--primary); font-weight: 700; text-decoration: none; }
.footer-brands a:hover { text-decoration: underline; }
.footer-address { font-style: normal; color: #c8aaa4; font-size: 0.85rem; line-height: 1.55; margin-top: 14px; max-width: 360px; }
.footer-address strong { display: block; color: #f5ece9; font-weight: 800; margin-bottom: 2px; }
.teaser-price { margin-top: 14px; }
.teaser-price-amt { font-size: 2.4rem; font-weight: 900; color: var(--primary); letter-spacing: -0.02em; }
.teaser-price-note { font-size: 1rem; font-weight: 700; color: var(--text-soft); margin-left: 6px; }
