:root {
    --background: #faf9f9;
    --surface: #ffffff;
    --surface-low: #f4f3f3;
    --surface-mid: #eeeeee;
    --surface-high: #e2e2e2;
    --text: #1a1c1c;
    --text-soft: #603e39;
    --primary: #bc0100;
    --primary-strong: #eb0000;
    --secondary: #006a62;
    --secondary-soft: #70f8e8;
    --outline: rgba(149, 109, 103, 0.22);
    --outline-soft: rgba(235, 187, 180, 0.32);
    --radius-lg: 30px;
    --radius-md: 20px;
    --radius-sm: 14px;
    --container: 1320px;
    --anchor-offset: 120px;
    --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);
    line-height: 1.6;
    background:
        radial-gradient(circle at 8% 0%, rgba(188, 1, 0, 0.07), transparent 40%),
        radial-gradient(circle at 100% 8%, rgba(0, 106, 98, 0.08), transparent 36%),
        var(--background);
}

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: 14px;
    z-index: 60;
    margin-top: 18px;
    border-radius: 999px;
    background: rgba(250, 249, 249, 0.84);
    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: 14px;
    padding: 12px 16px;
}

.topbar-logo {
    width: 165px;
    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: 10px 12px;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: none;
    letter-spacing: 0;
    color: #4b3835;
    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: 10px 12px;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 700;
    color: #4b3835;
    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: #fff;
    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;
}

.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: #4b3835;
    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: #fff;
    font-weight: 700;
    color: #5a4642;
    white-space: nowrap;
}

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

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

.btn {
    border-radius: 14px;
    padding: 12px 18px;
    border: 1px solid transparent;
    font: inherit;
    font-size: 0.95rem;
    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 {
    border-radius: 16px;
    padding: 12px 20px;
}

.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: 46px 0 56px;
}

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

.redesign-hero {
    padding: 28px;
    border-radius: var(--radius-lg);
    background: var(--surface);
    box-shadow: 0 14px 34px rgba(26, 28, 28, 0.06);
}

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

.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: 12px;
}

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

.section-head.split {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 14px;
    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: 28px;
}

.feature-media {
    border-radius: 18px;
    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: 340px;
    object-fit: cover;
    display: block;
}

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

.section-head h2 {
    margin: 0;
}

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

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

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

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

.visual-strip-item {
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    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 {
    width: 100%;
    height: 136px;
    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: 7px 10px;
    font-size: 0.82rem;
    font-weight: 700;
    color: #574340;
}

.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: 26px;
    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: #eef8f6;
}

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

.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: 320px;
}

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

.business-showcase .overlay {
    position: absolute;
    inset: auto 0 0 0;
    padding: 22px;
    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.2rem, 2.2vw, 1.8rem);
}

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

.business-card {
    border-radius: 18px;
    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: 210px;
    object-fit: cover;
    display: block;
}

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

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

.business-card p {
    margin: 6px 0 0;
    color: #6a5350;
    font-size: 0.95rem;
}

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

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

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

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

.integration-top-banner {
    margin-bottom: 14px;
    border-radius: 14px;
    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: 172px;
    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: 14px;
    border-radius: 16px;
    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: 220px;
    object-fit: cover;
    display: block;
}

.integration-group-card {
    border-radius: 16px;
    background: var(--surface-low);
    padding: 14px;
    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.1rem;
}

.integration-group-card p {
    margin: 8px 0 0;
    color: #624d49;
    font-size: 0.95rem;
}

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

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

#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: 12px;
}

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

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

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

.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: 16px;
    margin-bottom: 0;
    color: var(--text-soft);
    font-size: 1.02rem;
    max-width: 63ch;
}

.hero-cta {
    margin-top: 24px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

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

.hero-list li {
    position: relative;
    padding-left: 24px;
    color: #4c3834;
    font-weight: 600;
    font-size: 1.02rem;
}

.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: 28px;
    overflow: hidden;
    box-shadow: 0 24px 44px rgba(26, 18, 16, 0.16);
    background: #fff;
}

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

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

.section {
    margin-top: 38px;
    padding: 28px;
    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: 18px;
    display: grid;
    gap: 14px;
}

.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: 220px;
    object-fit: cover;
    display: block;
}

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

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

.section > p {
    margin: 10px 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: 18px;
    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 8px;
    font-size: 1.15rem;
    line-height: 1.3;
}

.card p {
    margin: 0;
    color: #6d5551;
}

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

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

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

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

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

.gallery-track {
    display: flex;
    gap: 16px;
    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-md);
    overflow: hidden;
    background: var(--surface-low);
}

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

.gallery-item span {
    display: block;
    padding: 10px 12px;
    font-weight: 800;
    color: #44322f;
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border-radius: 999px;
    border: 1.5px solid rgba(255, 69, 79, 0.35);
    background: #fff;
    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: 24px;
    background: var(--surface-low);
    padding: 22px;
    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: #7a5f5a;
}

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

.price-note {
    margin: 2px 0 0;
    font-size: 0.84rem;
    color: #6c5350;
    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: #634b47;
}

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

.cta-box {
    margin-top: 16px;
    border-radius: 24px;
    background: #f8f3f4;
    border: 1px solid rgba(255, 120, 126, 0.38);
    padding: 24px;
}

.cta-box strong {
    font-size: clamp(1.65rem, 3.6vw, 2rem);
    line-height: 1.1;
    font-weight: 900;
    color: #241515;
}

.cta-box p {
    margin-top: 8px;
    margin-bottom: 0;
    color: #5f4742;
    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: 18px;
}

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

.trial-grid label {
    display: grid;
    gap: 8px;
    font-size: 1rem;
    font-weight: 800;
    color: #4f3a36;
}

.trial-grid input,
.trial-grid select {
    width: 100%;
    border: 0;
    border-radius: 16px;
    background: #fff;
    padding: 15px 16px;
    font: inherit;
    font-size: 1rem;
    color: #2a1a17;
    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: #fff;
}

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

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

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

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

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

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

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

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

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(220px, 1fr));
    column-gap: 34px;
    row-gap: 10px;
    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: 14px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.8);
    box-shadow: inset 0 0 0 1px var(--outline-soft);
    overflow: visible;
    white-space: normal;
}

.legal-bar a {
    border-radius: 999px;
    background: #fff;
    padding: 8px 12px;
    font: 700 0.82rem/1 "Work Sans", sans-serif;
    color: #6d544f;
    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: 20px;
    background: #fff;
    padding: 18px;
    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: #efe7e5;
    color: #3f2d2a;
    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: #6b524d;
}

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

.customizer-list label {
    border-radius: 12px;
    background: #f7f4f4;
    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: #7a615c;
    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: #fff2f2;
    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: #6b7280;
}

.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: #fff;
    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: #6b4e49;
    font-weight: 600;
}

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

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

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

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

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

.faq-grid {
    margin-top: 16px;
    display: grid;
    gap: 10px;
}

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

.faq-grid summary {
    list-style: none;
    cursor: pointer;
    padding: 14px 16px;
    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: #fff;
    color: var(--primary);
    font-weight: 800;
}

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

.faq-grid details p {
    margin: 0;
    padding: 0 16px 14px;
    color: #644c48;
}

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

.legal-content p {
    color: #694e49;
}

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

.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: 20px;
    }

    .menu-toggle {
        display: block;
    }

    .topbar-nav {
        position: absolute;
        left: 0;
        right: 0;
        top: calc(100% + 8px);
        margin: 0 auto;
        width: min(95vw, 520px);
        background: #fff;
        border-radius: 18px;
        padding: 12px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        box-shadow: 0 16px 30px rgba(26, 28, 28, 0.12);
    }

    .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;
    }

    .nav-dropdown-trigger i {
        display: none;
    }

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

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

    .section {
        padding: 18px;
        margin-top: 24px;
        border-radius: 22px;
    }

    .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: 220px;
    }

    .hero h1 {
        font-size: clamp(2rem, 8.5vw, 3.1rem);
    }

    .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: 36px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.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: 100%;
    object-fit: cover;
    display: block;
}

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

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

.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 {
    aspect-ratio: 4 / 3;
    border: 12px solid #14151a;
    border-radius: 20px;
}

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

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

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

.sector-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 26px 14px;
    background: var(--surface-low);
    border-radius: 18px;
    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: 12px;
    margin-top: 12px;
}

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

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

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

.support-cat-banner {
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 18px;
    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: 14px;
}

.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.3rem !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: 14px;
}

@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: 48px;
    height: 48px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(188, 1, 0, 0.08);
    color: var(--primary);
    font-size: 20px;
}

.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: 44px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 28px;
}

.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: #fff;
    display: block;
}

/* iframe yüklenene kadar gösterilen yükleme ekranı */
.phone-loader {
    position: absolute;
    inset: 14px;
    border-radius: 34px;
    background: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    z-index: 1;
    color: #6d544f;
    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: #6d544f;
}

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

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