/*
 * QRTable - Main Stylesheet
 * Developed by InsightTech Bilişim Sanayi ve Ticaret A.Ş.
 */

/* ========== Font Awesome font-display override ========== */
/* CDN'den gelen FA CSS'te font-display tanımlı değil — FOIT önlemek için swap */
@font-face {
  font-family: "Font Awesome 6 Free";
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/webfonts/fa-solid-900.woff2") format("woff2");
}
@font-face {
  font-family: "Font Awesome 6 Brands";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/webfonts/fa-brands-400.woff2") format("woff2");
}

/* ========== Variables ========== */
:root {
    --qrt-primary: #E63946;
    --qrt-secondary: #1D3557;
    --qrt-accent: #F1FAEE;
    --qrt-light: #A8DADC;
    --qrt-dark: #457B9D;
}

/* ========== CLS Prevention: Inter fallback font metrics ========== */
/* Fallback font that matches Inter's metrics to prevent layout shift on swap */
@font-face {
  font-family: "Inter Fallback";
  src: local("Arial");
  size-adjust: 107%;
  ascent-override: 90%;
  descent-override: 22%;
  line-gap-override: 0%;
}

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

/* ========== Base ========== */
html,
body {
    font-family: 'Inter', 'Inter Fallback', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #333;
    overflow-x: hidden; /* Prevent horizontal scroll on mobile */
    width: 100%;
    position: relative;
}

/* ========== Corp Bar ========== */
.corp-bar {
    background: var(--qrt-secondary);
    height: 36px;
    font-size: .74rem;
    color: rgba(255,255,255,.65);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1040;
}
.corp-bar a {
    color: rgba(255,255,255,.9);
    text-decoration: none;
    font-weight: 600;
}
.corp-bar a:hover { color: #fff; }

/* Corp-bar ticker */
.corp-ticker {
    overflow: hidden;
    white-space: nowrap;
    flex: 1;
    min-width: 0;
    text-align: center;
    mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
}
.corp-ticker-track {
    display: inline-block;
    animation: corpTicker 20s linear infinite;
}
.corp-ticker-track:hover { animation-play-state: paused; }
.corp-ticker-item {
    display: inline-block;
    padding: 0 28px;
    color: rgba(255,255,255,.85);
    font-size: .71rem;
    font-weight: 500;
}
.corp-ticker-badge {
    display: inline-block;
    background: rgba(255,255,255,.13);
    border-radius: 4px;
    padding: 1px 6px;
    margin-right: 5px;
    font-weight: 700;
    font-size: .68rem;
    letter-spacing: .03em;
    color: #fff;
}
@keyframes corpTicker {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ========== Brand Marquee Strip ========== */
.brand-marquee-strip {
    background: #f8fafc;
    padding: 24px 0;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
    overflow: hidden;
}
.brand-marquee-label {
    text-align: center;
    font-size: .71rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: #94a3b8;
    margin-bottom: 14px;
}
.brand-marquee-track-wrap {
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}
.brand-marquee-track {
    display: inline-flex;
    gap: 0;
    white-space: nowrap;
    animation: brandScroll 28s linear infinite;
}
.brand-marquee-track:hover { animation-play-state: paused; }
.brand-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0 32px;
    font-size: .85rem;
    font-weight: 700;
    color: #64748b;
    letter-spacing: -.01em;
}
.brand-item i {
    color: var(--qrt-primary);
    font-size: .82rem;
    opacity: .75;
}
@keyframes brandScroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}


/* ========== Landing Page ========== */

/* Navbar */
.landing-page #mainNav {
    background: transparent;
    transition: all 0.3s ease;
    padding: 15px 0;
}

.landing-page #mainNav.scrolled {
    background: var(--qrt-secondary) !important;
    padding: 8px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

/* Alt sayfalar (terms, privacy, faq, about vb.) — hero yok, navbar baştan koyu */
.landing-subpage #mainNav {
    background: var(--qrt-secondary) !important;
    padding: 10px 0;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
    transition: padding 0.3s ease, box-shadow 0.3s ease;
}
.landing-subpage #mainNav.scrolled {
    padding: 8px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.18);
}

#mainNav .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.85) !important;
    font-weight: 500;
    font-size: 0.88rem;
    transition: all 0.25s ease;
    padding: 0.5rem 1.1rem !important;
}

#mainNav .navbar-nav .nav-link:hover {
    color: #fff !important;
}

/* Hero */
.hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--qrt-secondary) 0%, #0d1f3c 100%);
    padding-top: 100px;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: var(--qrt-primary);
    border-radius: 50%;
    opacity: 0.1;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: var(--qrt-light);
    border-radius: 50%;
    opacity: 0.08;
}

.text-gradient {
    background: linear-gradient(135deg, var(--qrt-primary), #ff6b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Phone Mockup */
.phone-mockup {
    width: 280px;
    margin: 0 auto;
    background: linear-gradient(160deg, #1e2035 0%, #12131f 100%);
    border-radius: 44px;
    padding: 14px 12px 10px;
    box-shadow: 0 30px 70px rgba(0,0,0,.4), inset 0 1px 0 rgba(255,255,255,.08);
    position: relative;
    border: 1px solid rgba(255,255,255,.07);
}

/* Dynamic island (üst bezel) */
.phone-top-island {
    width: 90px;
    height: 26px;
    background: #0a0a12;
    border-radius: 0 0 20px 20px;
    margin: -14px auto 6px;
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}
.phone-top-island::before {
    content: '';
    width: 10px;
    height: 10px;
    background: #1a1a2e;
    border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,.12);
}
.phone-top-island::after {
    content: '';
    width: 46px;
    height: 10px;
    background: #0d0d1a;
    border-radius: 6px;
    border: 1.5px solid rgba(255,255,255,.08);
}

.phone-screen {
    background: white;
    border-radius: 28px;
    min-height: 400px;
    overflow: hidden;
    position: relative;
}

/* Status bar */
.phone-status-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 14px 3px;
    background: #1D3557;
    font-size: .58rem;
    font-weight: 700;
    color: rgba(255,255,255,.85);
    letter-spacing: .02em;
}
.phone-status-bar i { font-size: .52rem; }

/* Home indicator */
.phone-home-indicator {
    height: 4px;
    background: rgba(0,0,0,.15);
    border-radius: 3px;
    width: 80px;
    margin: 8px auto 6px;
}

.menu-preview-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    border-bottom: 1px solid #f0f0f0;
    font-size: 0.9em;
    color: #333;
}

.menu-preview-item:last-child {
    border-bottom: none;
}

/* Features */
.feature-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 12px;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
}

.feature-icon {
    width: 70px;
    height: 70px;
    font-size: 1.5rem;
}

/* Steps */
.step-number {
    width: 60px;
    height: 60px;
    background: var(--qrt-primary);
    color: white;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.pricing-featured {
    border: 2px solid var(--qrt-primary) !important;
    position: relative;
}

/* ========== Menu Page (QR) ========== */
.menu-page {
    background: #f8f9fa;
}

.menu-header {
    position: sticky;
    top: 0;
    z-index: 100;
}

.menu-item-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border-radius: 12px;
}

.menu-item-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08) !important;
}

/* ========== Admin Panel ========== */
.admin-panel {
    background: #f4f6f9;
    min-height: 100vh;
}

.admin-panel .card {
    border-radius: 12px;
}

/* ========== Forms ========== */
.form-control,
.form-select {
    border-radius: 8px;
    padding: 10px 14px;
    border: 1px solid #dee2e6;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--qrt-primary);
    box-shadow: 0 0 0 0.2rem rgba(230, 57, 70, 0.15);
}

/* ========== Buttons ========== */
.btn-primary {
    background: var(--qrt-primary);
    border-color: var(--qrt-primary);
}

.btn-primary:hover {
    background: #cf2f3d;
    border-color: #cf2f3d;
}

.btn-outline-primary {
    color: var(--qrt-primary);
    border-color: var(--qrt-primary);
}

.btn-outline-primary:hover {
    background: var(--qrt-primary);
    border-color: var(--qrt-primary);
}

/* ========== Responsive ========== */
@media (max-width: 768px) {
    .hero-section {
        padding-top: 80px;
        text-align: center;
    }

    .hero-section .d-flex.gap-3 {
        justify-content: center;
    }

    .hero-section .d-flex.gap-4 {
        justify-content: center;
    }

    .phone-mockup {
        width: 240px;
    }

    .phone-screen {
        min-height: 320px;
    }
}

/* ========== Trust Strip ========== */
.trust-strip {
    background: #f8f9fa;
    border-top: 1px solid #e9ecef;
    border-bottom: 1px solid #e9ecef;
    padding: 20px 0;
}

.trust-strip-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: #adb5bd;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;
}

.trust-logos {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
    align-items: center;
}

.trust-logo-item {
    font-size: 0.82rem;
    font-weight: 700;
    color: #adb5bd;
    letter-spacing: 0.03em;
    white-space: nowrap;
}

/* ========== Features Section ========== */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

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

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

.feature-card-v2 {
    background: #fff;
    border-radius: 12px;
    padding: 24px 20px;
    border: 1px solid #f0f0f0;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.feature-card-v2:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,.08);
    border-color: transparent;
}

.feature-icon-v2 {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin-bottom: 14px;
    flex-shrink: 0;
}

.feature-card-v2 h3 {
    font-size: 0.92rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 6px;
}

.feature-card-v2 p {
    font-size: 0.8rem;
    color: #8892a4;
    line-height: 1.5;
    margin: 0;
}

/* ========== Steps ========== */
.steps-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
}

.steps-row::before {
    content: '';
    position: absolute;
    top: 30px;
    left: calc(16.66% + 20px);
    right: calc(16.66% + 20px);
    height: 2px;
    background: linear-gradient(to right, var(--qrt-primary), transparent);
    opacity: 0.25;
}

@media (max-width: 768px) {
    .steps-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .steps-row::before { display: none; }
}

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

.step-badge {
    display: inline-flex;
    width: 56px;
    height: 56px;
    background: var(--qrt-primary);
    color: #fff;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 16px;
    box-shadow: 0 6px 20px rgba(230, 57, 70, 0.3);
}

/* ========== Landing Pricing Card (subscribe page stiliyle aynı) ========== */
.lp-plan-card {
    max-width: 560px;
    margin: 0 auto;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid var(--qrt-primary);
    box-shadow: 0 24px 64px rgba(0,0,0,.14);
}

.lp-plan-head {
    background: linear-gradient(135deg, var(--qrt-secondary) 0%, #0d1f3c 100%);
    padding: 28px 36px 24px;
    text-align: center;
    color: #fff;
}

.lp-plan-badge {
    display: inline-block;
    background: var(--qrt-primary);
    color: #fff;
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 8px;
}

.lp-plan-name {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.lp-period-toggle {
    display: flex;
    background: #1a3050;
    border-radius: 12px;
    padding: 4px;
    gap: 4px;
    margin-bottom: 16px;
}

.lp-period-btn {
    flex: 1;
    text-align: center;
    padding: 9px 16px;
    border-radius: 10px;
    border: none;
    background: transparent;
    color: rgba(255,255,255,.55);
    font-size: .82rem;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    transition: all .2s;
    line-height: 1.2;
}

.lp-period-btn.active {
    background: var(--qrt-primary);
    color: #fff;
}

.lp-save-badge {
    display: block;
    font-size: .62rem;
    color: #fbbf24;
    font-weight: 600;
    margin-top: 2px;
}

.lp-period-btn.active .lp-save-badge { color: #fef3c7; }

.lp-plan-price {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -2px;
}

.lp-plan-price sup {
    font-size: 1.5rem;
    vertical-align: super;
    letter-spacing: 0;
    font-weight: 700;
}

.lp-plan-period {
    color: rgba(255,255,255,.6);
    font-size: .92rem;
    margin-top: 4px;
}

.lp-plan-body {
    padding: 24px 36px 28px;
}

.lp-plan-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 7px 20px;
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.lp-plan-features li {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: .825rem;
    color: #334155;
    font-weight: 500;
}

.lp-plan-features li i {
    color: #22c55e;
    font-size: .72rem;
    flex-shrink: 0;
}

.lp-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 14px;
    background: var(--qrt-primary);
    color: #fff;
    border-radius: 12px;
    font-size: .95rem;
    font-weight: 800;
    text-decoration: none;
    transition: opacity .18s, box-shadow .18s;
    box-shadow: 0 6px 20px rgba(192,57,43,.3);
    margin-bottom: 0;
}

.lp-cta-btn:hover {
    opacity: .9;
    color: #fff;
    box-shadow: 0 8px 24px rgba(192,57,43,.4);
}

.lp-plan-perks {
    display: flex;
    justify-content: center;
    gap: 6px;
    padding-top: 14px;
    margin-top: 12px;
    border-top: 1px solid #f0f0f0;
    flex-wrap: wrap;
}

.lp-plan-perk {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .75rem;
    font-weight: 600;
    color: #475569;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 5px 12px;
}

.lp-plan-perk i {
    font-size: .72rem;
    color: var(--qrt-primary);
}

@media (max-width: 576px) {
    .lp-plan-features { grid-template-columns: 1fr; }
    .lp-plan-head, .lp-plan-body { padding-left: 22px; padding-right: 22px; }
}

/* ========== Pricing Cards ========== */

/* Temel kart */
.pricing-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,.07);
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    transition: transform .2s, box-shadow .2s;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,.12);
}

/* Öne çıkan kart (Standart) — border + güçlü shadow, translateY yok */
.pricing-card--featured {
    border-color: var(--qrt-primary);
    box-shadow: 0 8px 40px rgba(230,57,70,.2);
}

.pricing-card--featured:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 56px rgba(230,57,70,.28);
}

/* ── Kart Head ── */
.pricing-card__head {
    padding: 24px 28px 20px;
}

.pricing-card--standard .pricing-card__head,
.pricing-card--featured .pricing-card__head {
    background: linear-gradient(135deg, var(--qrt-secondary) 0%, #0d1f3c 100%);
}

.pricing-card--demo .pricing-card__head {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.pricing-card--enterprise .pricing-card__head {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

/* Badge */
.pricing-card__badge {
    display: inline-block;
    font-size: .72rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 10px;
    letter-spacing: .3px;
}

.pricing-card--standard .pricing-card__badge,
.pricing-card--featured .pricing-card__badge {
    background: var(--qrt-primary);
    color: #fff;
}

.pricing-card--demo .pricing-card__badge {
    background: #16a34a;
    color: #fff;
}

.pricing-card--enterprise .pricing-card__badge {
    background: #334155;
    color: #fff;
}

/* Plan adı */
.pricing-card__name {
    font-size: 1.05rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.pricing-card--standard .pricing-card__name,
.pricing-card--featured .pricing-card__name {
    color: rgba(255,255,255,.85);
}

.pricing-card--demo .pricing-card__name {
    color: #15803d;
}

.pricing-card--enterprise .pricing-card__name {
    color: #1e293b;
}

/* Period toggle (sadece standart kart) */
.pricing-card .lp-period-toggle { margin-bottom: 12px; }

/* Fiyat */
.pricing-card__price {
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 4px;
}

.pricing-card--standard .pricing-card__price,
.pricing-card--featured .pricing-card__price {
    color: #fff;
}

.pricing-card--demo .pricing-card__price {
    color: #16a34a;
}

.pricing-card--enterprise .pricing-card__price {
    color: #1e293b;
    font-size: 1.6rem;
    padding-top: 8px;
}

.pricing-card__price sup {
    font-size: 1.4rem;
    vertical-align: super;
    font-weight: 700;
}

/* Dönem / alt yazı */
.pricing-card__period {
    font-size: .88rem;
}

.pricing-card--standard .pricing-card__period,
.pricing-card--featured .pricing-card__period {
    color: rgba(255,255,255,.6);
}

.pricing-card--demo .pricing-card__period {
    color: #15803d;
    font-weight: 600;
}

.pricing-card--enterprise .pricing-card__period {
    color: #64748b;
}

/* ── Kart Body ── */
.pricing-card__body {
    padding: 20px 28px 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.pricing-card__features {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
    display: flex;
    flex-direction: column;
    align-content: start;
    gap: 4px;
    flex: 1;
}

.pricing-card__features--2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-content: start;
    gap: 4px 10px;
}

.pricing-card__features li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: .85rem;
    color: #374151;
    line-height: 1.4;
}

.pricing-card__features li i {
    font-size: .75rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.pricing-card__features li i.fa-check-circle { color: #22c55e; }
.pricing-card__features li i.fa-clock       { color: #f59e0b; }
.pricing-card__features li i.fa-times-circle { color: #94a3b8; }

/* CTA buton */
.pricing-card__cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 13px 20px;
    border-radius: 12px;
    font-size: .92rem;
    font-weight: 700;
    text-decoration: none;
    transition: opacity .2s, box-shadow .2s, transform .15s;
    border: none;
    cursor: pointer;
}

.pricing-card__cta:hover {
    opacity: .9;
    transform: translateY(-1px);
}

.pricing-card--standard .pricing-card__cta,
.pricing-card--featured .pricing-card__cta {
    background: var(--qrt-primary);
    color: #fff;
    box-shadow: 0 4px 16px rgba(230,57,70,.3);
}

.pricing-card--standard .pricing-card__cta:hover,
.pricing-card--featured .pricing-card__cta:hover {
    color: #fff;
    box-shadow: 0 8px 24px rgba(230,57,70,.4);
}

.pricing-card--demo .pricing-card__cta {
    background: #16a34a;
    color: #fff;
    box-shadow: 0 4px 16px rgba(22,163,74,.25);
}

.pricing-card--demo .pricing-card__cta:hover {
    color: #fff;
    box-shadow: 0 8px 24px rgba(22,163,74,.35);
}

.pricing-card--enterprise .pricing-card__cta {
    background: #1e293b;
    color: #fff;
    box-shadow: 0 4px 16px rgba(30,41,59,.2);
}

.pricing-card--enterprise .pricing-card__cta:hover {
    color: #fff;
    box-shadow: 0 8px 24px rgba(30,41,59,.3);
}

/* Alt not */
.pricing-card__note {
    text-align: center;
    font-size: .75rem;
    color: #94a3b8;
    margin-top: 12px;
    line-height: 1.4;
}

/* Perks (standart kart) */
.pricing-card__perks {
    display: flex;
    justify-content: center;
    gap: 6px;
    padding-top: 12px;
    margin-top: 10px;
    border-top: 1px solid #f0f0f0;
    flex-wrap: wrap;
}

.pricing-card__perk {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: .72rem;
    font-weight: 600;
    color: #64748b;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 4px 10px;
}

.pricing-card__perk i {
    font-size: .68rem;
    color: var(--qrt-primary);
}

@media (max-width: 768px) {
    .pricing-card__features--2col {
        grid-template-columns: 1fr;
    }
}

/* ========== FAQ ========== */
.faq-section .accordion-button {
    font-weight: 600;
    font-size: 0.9rem;
    color: #1a1a2e;
    background: #fff;
}

.faq-section .accordion-button:not(.collapsed) {
    color: var(--qrt-primary);
    background: #fff5f5;
    box-shadow: none;
}

.faq-section .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23E63946'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.faq-section .accordion-item {
    border: 1px solid #f0f0f0;
    border-radius: 12px !important;
    margin-bottom: 10px;
    overflow: hidden;
}

.faq-section .accordion-body {
    font-size: 0.85rem;
    color: #64748b;
    line-height: 1.65;
}

/* ========== CTA Banner ========== */
.cta-banner {
    background: linear-gradient(135deg, var(--qrt-secondary) 0%, #0d1f3c 100%);
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -60%;
    right: -10%;
    width: 480px;
    height: 480px;
    background: var(--qrt-primary);
    border-radius: 50%;
    opacity: 0.08;
}

.cta-banner::after {
    content: '';
    position: absolute;
    bottom: -70%;
    left: -5%;
    width: 320px;
    height: 320px;
    background: var(--qrt-light);
    border-radius: 50%;
    opacity: 0.07;
}

/* ========== Contact Cards ========== */
.contact-card {
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 14px;
    padding: 24px 20px;
    text-align: center;
    color: #fff;
    transition: background 0.2s;
}

.contact-card:hover {
    background: rgba(255,255,255,.12);
}

.contact-card i {
    font-size: 1.6rem;
    margin-bottom: 10px;
    display: block;
    opacity: 0.85;
}

.contact-card h6 {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: rgba(255,255,255,.5);
    margin-bottom: 6px;
}

.contact-card a, .contact-card p {
    font-size: 0.85rem;
    color: rgba(255,255,255,.85);
    text-decoration: none;
    margin: 0;
    line-height: 1.45;
}

/* ========== Footer ========== */
.site-footer {
    background: #0a0f1e;
    color: rgba(255,255,255,.75);
}

.footer-company-link {
    display: inline-flex;
    align-items: center;
    font-size: .78rem;
    font-weight: 700;
    color: rgba(255,255,255,.65);
    text-decoration: none;
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 20px;
    padding: 5px 12px;
    margin-top: 10px;
    transition: all .18s;
}
.footer-company-link:hover {
    color: #fff;
    border-color: rgba(255,255,255,.4);
    background: rgba(255,255,255,.07);
}

/* Google Play badge — landing footer */
.footer-gplay-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 10px;
    padding: 8px 14px;
    text-decoration: none;
    color: #fff;
    transition: background .18s, border-color .18s;
}
.footer-gplay-btn:hover {
    background: rgba(255,255,255,.13);
    border-color: rgba(255,255,255,.3);
    color: #fff;
}
.footer-gplay-icon {
    font-size: 1.5rem;
    color: #a8e6b5;
    flex-shrink: 0;
}
.footer-appstore-btn .footer-gplay-icon {
    color: #ffffff;
}
.footer-gplay-text {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
}
.footer-gplay-text small {
    font-size: .68rem;
    font-weight: 500;
    color: rgba(255,255,255,.55);
    letter-spacing: .02em;
}
.footer-gplay-text strong {
    font-size: .82rem;
    font-weight: 800;
    color: #fff;
}

.site-footer .footer-brand {
    font-size: 1.1rem;
    font-weight: 800;
    color: #fff;
}

.site-footer a {
    color: rgba(255,255,255,.70);
    text-decoration: none;
    font-size: 0.82rem;
    transition: color 0.15s;
}

.site-footer a:hover {
    color: rgba(255,255,255,.8);
}

/* ========== Navbar CTA ========== */
.nav-cta-start {
    background: var(--qrt-primary);
    border-color: var(--qrt-primary);
    color: #fff !important;
    border-radius: 8px !important;
    padding: 7px 18px !important;
    font-weight: 600;
    font-size: 0.82rem;
}

.nav-cta-start:hover {
    background: #cf2f3d !important;
    border-color: #cf2f3d !important;
}

.nav-link--demo {
    color: #fff !important;
    font-weight: 700 !important;
    background: transparent !important;
    border-radius: 0;
    transition: all 0.3s ease;
}
.nav-link--demo:hover {
    color: var(--qrt-primary) !important;
}

/* ========== Navbar Brand ========== */
.brand-icon {
    width: 32px;
    height: 32px;
    background: var(--qrt-primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.9rem;
}

.brand-text {
    font-size: 1.15rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.02em;
}

/* ========== Hero Enhancements ========== */
.hero-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.hero-orb-1 {
    width: 600px;
    height: 600px;
    background: var(--qrt-primary);
    opacity: 0.07;
    top: -15%;
    right: -12%;
    animation: orbFloat 8s ease-in-out infinite;
}

.hero-orb-2 {
    width: 350px;
    height: 350px;
    background: var(--qrt-light);
    opacity: 0.06;
    bottom: -20%;
    left: -8%;
    animation: orbFloat 10s ease-in-out infinite reverse;
}

.hero-orb-3 {
    width: 200px;
    height: 200px;
    background: #fff;
    opacity: 0.03;
    top: 40%;
    left: 30%;
    animation: orbFloat 12s ease-in-out infinite;
}

@keyframes orbFloat {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-30px) scale(1.05); }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(230,57,70,.15);
    border: 1px solid rgba(230,57,70,.25);
    color: #ff8a92;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 30px;
    letter-spacing: 0.02em;
}

.hero-badge-dot {
    width: 7px;
    height: 7px;
    background: #E63946;
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-subtitle {
    font-size: 1.05rem;
    line-height: 1.75;
    color: rgba(255,255,255,.6);
}

.hero-btn-primary {
    border-radius: 12px !important;
    font-weight: 700;
    padding: 14px 28px !important;
    box-shadow: 0 8px 24px rgba(230,57,70,.35);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(230,57,70,.45) !important;
}

.hero-btn-secondary {
    border-radius: 12px !important;
    font-weight: 600;
    padding: 14px 24px !important;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.hero-stat-value {
    font-size: 1.8rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
    letter-spacing: -0.03em;
}

.hero-stat-value::after {
    content: attr(data-suffix);
}

.hero-stat-label {
    font-size: 0.72rem;
    color: rgba(255,255,255,.5);
    margin-top: 3px;
    font-weight: 500;
}

.hero-stat-divider {
    width: 1px;
    height: 36px;
    background: rgba(255,255,255,.12);
}

/* Phone mockup enhancements */
.hero-mockup-wrapper {
    position: relative;
    display: inline-block;
}

.phone-glow {
    position: absolute;
    width: 240px;
    height: 240px;
    background: var(--qrt-primary);
    border-radius: 50%;
    opacity: 0.15;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(40px);
    pointer-events: none;
}

.phone-notification {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: #fff;
    border-radius: 12px;
    padding: 10px 16px;
    font-size: 0.75rem;
    font-weight: 600;
    color: #333;
    box-shadow: 0 8px 24px rgba(0,0,0,.15);
    white-space: nowrap;
    animation: notifBounce 3s ease-in-out infinite;
}

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

.phone-scan-badge {
    position: absolute;
    top: 24px;
    left: -28px;
    background: #fff;
    border-radius: 12px;
    padding: 9px 14px;
    font-size: 0.73rem;
    font-weight: 700;
    color: #16a34a;
    box-shadow: 0 8px 24px rgba(0,0,0,.15);
    white-space: nowrap;
    animation: scanPulse 3s ease-in-out infinite;
    border-left: 3px solid #16a34a;
}

@keyframes scanPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.04); }
}

/* Scroll indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    opacity: 0.4;
}

.scroll-dot {
    width: 6px;
    height: 6px;
    background: #fff;
    border-radius: 50%;
    animation: scrollBounce 1.5s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); opacity: 0.4; }
    50% { transform: translateY(10px); opacity: 1; }
}

/* ========== Trust Strip — Marquee ========== */
.trust-strip {
    background: #fff;
    border-top: 1px solid #f0f2f5;
    border-bottom: 1px solid #f0f2f5;
    padding: 18px 0;
    overflow: hidden;
}

.trust-strip-inner {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 0 24px;
}

.trust-strip-label {
    font-size: 0.7rem;
    font-weight: 700;
    color: #c0c9d5;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    white-space: nowrap;
    flex-shrink: 0;
}

.trust-marquee-wrapper {
    overflow: hidden;
    flex: 1;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.trust-marquee-track {
    display: flex;
    gap: 48px;
    width: max-content;
    animation: marqueeScroll 28s linear infinite;
}

.trust-logo-item {
    font-size: 0.82rem;
    font-weight: 700;
    color: #b8c2cc;
    white-space: nowrap;
    transition: color 0.2s;
}

.trust-logo-item:hover {
    color: #64748b;
}

@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ========== Section Helpers ========== */
.section-light {
    background: #f8f9fb;
}

.section-badge {
    display: inline-block;
    background: #fff0f1;
    color: var(--qrt-primary);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 12px;
}

.section-title {
    font-size: 2rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 0.95rem;
    color: #64748b;
    max-width: 480px;
    margin: 0 auto;
    line-height: 1.65;
}

/* ========== Steps Enhanced ========== */
.steps-row {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 0;
    align-items: start;
    position: relative;
}

@media (max-width: 768px) {
    .steps-row {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .step-connector { display: none; }
}

.step-item {
    text-align: center;
    padding: 0 16px;
}

.step-badge-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.step-badge {
    display: inline-flex;
    width: 56px;
    height: 56px;
    background: var(--qrt-primary);
    color: #fff;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 900;
    box-shadow: 0 8px 24px rgba(230, 57, 70, 0.3);
}

.step-icon-bg {
    position: absolute;
    bottom: -4px;
    right: -8px;
    width: 26px;
    height: 26px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    color: var(--qrt-secondary);
    box-shadow: 0 2px 8px rgba(0,0,0,.1);
}

.step-connector {
    display: flex;
    align-items: flex-start;
    padding-top: 24px;
    justify-content: center;
    width: 60px;
}

.connector-line {
    display: none;
}

.connector-arrow {
    color: #d1d9e6;
    font-size: 1rem;
}

.step-detail-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    margin-top: 12px;
}

.step-detail {
    font-size: 0.78rem;
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 6px;
}

.step-detail i {
    color: #22c55e;
    font-size: 0.65rem;
}

/* ========== Mobile App Section ========== */
.mobile-app-section {
    background: linear-gradient(160deg, #f8faff 0%, #f0f6ff 100%);
    position: relative;
    overflow: hidden;
}

.mobile-app-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: var(--qrt-primary);
    border-radius: 50%;
    opacity: 0.04;
}

/* Admin phone mockup */
.admin-phone-wrapper {
    position: relative;
    display: inline-block;
}

.admin-phone-mockup {
    width: 260px;
    margin: 0 auto;
    background: #1a1a2e;
    border-radius: 38px;
    padding: 10px;
    box-shadow: 0 30px 80px rgba(29,53,87,.25);
    position: relative;
}

.admin-phone-mockup::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 22px;
    background: #1a1a2e;
    border-radius: 0 0 14px 14px;
    z-index: 10;
}

.admin-phone-screen {
    background: #f4f6f9;
    border-radius: 28px;
    overflow: hidden;
    min-height: 480px;
}

.ap-statusbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 16px 8px;
    background: var(--qrt-secondary);
    color: #fff;
    font-size: 0.6rem;
    font-weight: 600;
}

.ap-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px 12px;
    background: var(--qrt-secondary);
}

.ap-header-left {
    display: flex;
    align-items: center;
    gap: 8px;
}

.ap-avatar {
    width: 32px;
    height: 32px;
    background: var(--qrt-primary);
    border-radius: 8px;
    color: #fff;
    font-size: 0.8rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ap-title {
    color: #fff;
    font-size: 0.75rem;
    font-weight: 800;
    line-height: 1;
}

.ap-subtitle {
    color: rgba(255,255,255,.5);
    font-size: 0.58rem;
    margin-top: 2px;
}

.ap-notif-badge {
    position: relative;
    color: rgba(255,255,255,.7);
    font-size: 0.85rem;
}

.ap-badge {
    position: absolute;
    top: -5px;
    right: -6px;
    background: var(--qrt-primary);
    color: #fff;
    font-size: 0.45rem;
    font-weight: 900;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ap-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    padding: 10px 12px;
    background: #fff;
}

.ap-stat-box {
    border-radius: 8px;
    padding: 8px 6px;
    text-align: center;
}

.ap-stat-red { background: #fff0f1; }
.ap-stat-blue { background: #eff6ff; }
.ap-stat-green { background: #f0fdf4; }

.ap-stat-num {
    font-size: 0.82rem;
    font-weight: 900;
    color: #0f172a;
    line-height: 1;
}

.ap-stat-lbl {
    font-size: 0.5rem;
    color: #94a3b8;
    margin-top: 2px;
    font-weight: 600;
}

.ap-section-title {
    font-size: 0.65rem;
    font-weight: 800;
    color: #0f172a;
    padding: 8px 12px 4px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.ap-order-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 7px 12px;
    background: #fff;
    margin-bottom: 2px;
}

.ap-order-pending {
    background: #fff8f0;
}

.ap-order-info {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.ap-order-table {
    font-size: 0.68rem;
    font-weight: 800;
    color: #0f172a;
}

.ap-order-items {
    font-size: 0.55rem;
    color: #94a3b8;
}

.ap-order-badge {
    font-size: 0.5rem;
    font-weight: 800;
    padding: 3px 7px;
    border-radius: 6px;
}

.ap-badge-pending { background: #fef3c7; color: #92400e; }
.ap-badge-prep { background: #ede9fe; color: #5b21b6; }
.ap-badge-ready { background: #dcfce7; color: #14532d; }

.ap-waiter-alert {
    margin: 6px 10px;
    background: #fff0f1;
    border: 1px solid rgba(230,57,70,.2);
    border-radius: 8px;
    padding: 7px 10px;
    font-size: 0.6rem;
    font-weight: 700;
    color: var(--qrt-primary);
}

.ap-bottom-nav {
    display: flex;
    background: #fff;
    border-top: 1px solid #f0f0f0;
    margin-top: 6px;
}

.ap-nav-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    padding: 8px 0;
    font-size: 0.5rem;
    color: #94a3b8;
    font-weight: 600;
}

.ap-nav-item i {
    font-size: 0.8rem;
}

.ap-nav-active {
    color: var(--qrt-primary);
}

/* App store float badge */
.app-store-float {
    position: absolute;
    top: -12px;
    right: -28px;
    background: #0f172a;
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 8px 14px;
    border-radius: 30px;
    box-shadow: 0 4px 16px rgba(0,0,0,.2);
    white-space: nowrap;
}

/* Mobile feature list */
.mobile-feature-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mobile-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 16px;
    background: #fff;
    border-radius: 12px;
    border: 1px solid #f0f0f0;
    transition: transform 0.2s, box-shadow 0.2s;
}

.mobile-feature-item:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 16px rgba(0,0,0,.06);
}

.mobile-feature-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.mobile-feature-title {
    font-size: 0.88rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 3px;
}

.mobile-feature-desc {
    font-size: 0.78rem;
    color: #64748b;
    line-height: 1.5;
}

/* Store Badges */
.store-badges {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.store-badge-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: 12px;
    cursor: not-allowed;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.store-badge-apple {
    background: #0f172a;
    color: #fff;
}

.store-badge-google {
    background: #0f172a;
    color: #fff;
}

.store-badge-sub {
    font-size: 0.62rem;
    font-weight: 600;
    opacity: 0.6;
    line-height: 1;
}

.store-badge-name {
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.2;
}

/* ========== Dashboard Demo Section ========== */
.dashboard-demo-section {
    overflow: hidden;
}

.browser-mockup {
    border-radius: 16px;
    box-shadow: 0 30px 80px rgba(0,0,0,.14);
    overflow: hidden;
    border: 1px solid #e2e8f0;
    max-width: 960px;
    margin: 0 auto;
}

.browser-chrome {
    background: #f1f3f6;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid #e2e8f0;
}

.browser-dots {
    display: flex;
    gap: 6px;
    flex-shrink: 0;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot-red { background: #ff5f57; }
.dot-yellow { background: #febc2e; }
.dot-green { background: #28c840; }

.browser-url-bar {
    flex: 1;
    background: #fff;
    border-radius: 6px;
    padding: 5px 14px;
    font-size: 0.75rem;
    color: #64748b;
    display: flex;
    align-items: center;
    border: 1px solid #e2e8f0;
}

/* Simulated admin panel inside browser */
.browser-content {
    display: flex;
    height: 380px;
    background: #f4f6f9;
    overflow: hidden;
}

.sim-sidebar {
    width: 160px;
    background: var(--qrt-secondary);
    flex-shrink: 0;
    padding: 20px 0;
}

.sim-brand {
    color: #fff;
    font-size: 0.78rem;
    font-weight: 900;
    padding: 0 16px 20px;
    border-bottom: 1px solid rgba(255,255,255,.08);
    margin-bottom: 10px;
}

.sim-nav-item {
    padding: 9px 16px;
    font-size: 0.72rem;
    color: rgba(255,255,255,.55);
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    cursor: default;
    position: relative;
}

.sim-nav-item i {
    font-size: 0.7rem;
    width: 14px;
    text-align: center;
}

.sim-nav-active {
    background: rgba(230,57,70,.15);
    color: #fff;
    border-left: 3px solid var(--qrt-primary);
}

.sim-nav-badge {
    justify-content: space-between;
}

.sim-badge {
    background: var(--qrt-primary);
    color: #fff;
    font-size: 0.55rem;
    font-weight: 800;
    padding: 2px 5px;
    border-radius: 8px;
}

.sim-main {
    flex: 1;
    padding: 0;
    overflow: hidden;
}

.sim-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    background: #fff;
    border-bottom: 1px solid #f0f0f0;
}

.sim-page-title {
    font-size: 0.88rem;
    font-weight: 800;
    color: #0f172a;
}

.sim-topbar-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sim-notif-btn {
    position: relative;
    color: #64748b;
    font-size: 0.85rem;
}

.sim-notif-dot {
    position: absolute;
    top: -2px;
    right: -2px;
    width: 7px;
    height: 7px;
    background: var(--qrt-primary);
    border-radius: 50%;
    border: 1.5px solid #fff;
}

.sim-avatar {
    width: 28px;
    height: 28px;
    background: var(--qrt-secondary);
    border-radius: 50%;
    color: #fff;
    font-size: 0.55rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sim-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    padding: 14px 20px;
}

.sim-stat-card {
    background: #fff;
    border-radius: 10px;
    padding: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid #f0f0f0;
}

.sim-stat-icon {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    flex-shrink: 0;
}

.sim-stat-val {
    font-size: 0.78rem;
    font-weight: 900;
    color: #0f172a;
    line-height: 1;
}

.sim-stat-lbl {
    font-size: 0.58rem;
    color: #94a3b8;
    margin-top: 2px;
}

.sim-section-title {
    font-size: 0.72rem;
    font-weight: 800;
    color: #0f172a;
    padding: 0 20px 8px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.sim-orders {
    margin: 0 20px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #f0f0f0;
}

.sim-order-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    background: #fff;
    border-bottom: 1px solid #f8f9fa;
    font-size: 0.7rem;
}

.sim-order-row:last-child {
    border-bottom: none;
}

.sim-table-badge {
    background: var(--qrt-secondary);
    color: #fff;
    font-size: 0.58rem;
    font-weight: 800;
    padding: 3px 7px;
    border-radius: 6px;
    flex-shrink: 0;
}

.sim-order-items {
    flex: 1;
    color: #64748b;
    font-size: 0.68rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sim-order-price {
    color: #0f172a;
    font-weight: 700;
    font-size: 0.72rem;
    flex-shrink: 0;
}

.sim-status {
    font-size: 0.58rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 6px;
    flex-shrink: 0;
}

.sim-status-pending { background: #fef3c7; color: #92400e; }
.sim-status-prep { background: #ede9fe; color: #5b21b6; }
.sim-status-ready { background: #dcfce7; color: #14532d; }

/* Demo badges */
.demo-badge-card {
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 10px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.82rem;
    font-weight: 600;
    color: #334155;
    transition: box-shadow 0.2s;
}

.demo-badge-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,.07);
}


/* ========== Contact Cards Light ========== */
.contact-card-light {
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 16px;
    padding: 28px 24px;
    text-align: center;
    transition: transform 0.25s, box-shadow 0.25s;
    height: 100%;
}

.contact-card-light:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,.08);
}

.contact-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin: 0 auto 14px;
}

.contact-card-light h3 {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #94a3b8;
    margin-bottom: 4px;
}

.contact-card-light p {
    font-size: 0.8rem;
    color: #94a3b8;
    margin-bottom: 6px;
}

.contact-card-light a, .contact-card-light span {
    font-size: 0.88rem;
    font-weight: 600;
    color: #334155;
    text-decoration: none;
}

.contact-card-light a:hover {
    color: var(--qrt-primary);
}

/* ========== Footer Enhanced ========== */
.site-footer {
    background: #0a0f1e;
    color: rgba(255,255,255,.55);
}

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

.footer-logo-icon {
    width: 34px;
    height: 34px;
    background: var(--qrt-primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.9rem;
}

.footer-brand {
    font-size: 1.2rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: -0.02em;
}

.footer-desc {
    font-size: 0.8rem;
    line-height: 1.65;
    color: rgba(255,255,255,.35);
    margin: 0;
}

.footer-desc a {
    color: rgba(255,255,255,.5);
    text-decoration: none;
    transition: color 0.15s;
}

.footer-desc a:hover {
    color: rgba(255,255,255,.8);
}

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

.footer-social-btn {
    width: 34px;
    height: 34px;
    background: rgba(255,255,255,.07);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,.45);
    font-size: 0.85rem;
    text-decoration: none;
    transition: background 0.15s, color 0.15s;
}

.footer-social-btn:hover {
    background: var(--qrt-primary);
    color: #fff;
}

.footer-col-title {
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,.45);
    margin-bottom: 14px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-links a {
    color: rgba(255,255,255,.35);
    text-decoration: none;
    font-size: 0.82rem;
    transition: color 0.15s;
}

.footer-links a:hover {
    color: rgba(255,255,255,.8);
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 0.82rem;
}

.footer-contact-item i {
    color: rgba(255,255,255,.25);
    width: 16px;
    text-align: center;
    font-size: 0.78rem;
}

.footer-contact-item a, .footer-contact-item span {
    color: rgba(255,255,255,.4);
    text-decoration: none;
    transition: color 0.15s;
}

.footer-contact-item a:hover {
    color: rgba(255,255,255,.75);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.06);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 0.75rem;
    color: rgba(255,255,255,.2);
}

/* ========== CTA Banner Enhanced ========== */
.cta-orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.cta-orb-1 {
    width: 500px;
    height: 500px;
    background: var(--qrt-primary);
    opacity: 0.07;
    top: -50%;
    right: -8%;
}

.cta-orb-2 {
    width: 300px;
    height: 300px;
    background: var(--qrt-light);
    opacity: 0.06;
    bottom: -60%;
    left: -4%;
}

.cta-icon-wrap {
    width: 60px;
    height: 60px;
    background: rgba(230,57,70,.15);
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--qrt-primary);
}

/* ========== Responsive Additions ========== */
@media (max-width: 991px) {
    .browser-content { height: 300px; }
    .sim-stats { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .section-title { font-size: 1.65rem; }
    .hero-stats { justify-content: center; }
    .store-badges { justify-content: center; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .browser-content { display: none; }
    .browser-mockup { display: none; }
    .trust-strip-inner { flex-direction: column; gap: 10px; }
    .hero-btn-primary, .hero-btn-secondary { width: 100%; text-align: center; justify-content: center; }
}

@media (max-width: 576px) {
    .admin-phone-mockup { width: 230px; }
    .hero-stat-value { font-size: 1.5rem; }
    .app-store-float { display: none; }
}

/* ═══════════════════════════════════════════
   LIVE DEMO SECTION
═══════════════════════════════════════════ */
.live-demo-section {
    background: #f8f9fb;
    position: relative;
    overflow: hidden;
}
.live-demo-section::before {
    content: '';
    position: absolute;
    top: -120px;
    left: -120px;
    width: 380px;
    height: 380px;
    background: var(--qrt-primary);
    border-radius: 50%;
    opacity: .04;
    pointer-events: none;
}

/* ── Phone wrapper ── */
.demo-phone-wrapper {
    display: inline-block;
    position: relative;
    filter: drop-shadow(0 40px 80px rgba(0,0,0,.38))
            drop-shadow(0 8px 20px rgba(0,0,0,.18));
}

/* ── Ana telefon gövdesi ── */
.demo-phone-frame {
    width: 360px;
    background: linear-gradient(160deg, #1e2035 0%, #12131f 100%);
    border-radius: 56px;
    border: 1.5px solid #2a2b40;
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.10),   /* üst parlaklık */
        inset 0 -1px 0 rgba(0,0,0,.4),          /* alt gölge */
        0 0 0 1px #0a0b16;                      /* dış kontur */
    position: relative;
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    padding: 0 10px;
}

/* ── Üst bezel — Dynamic Island ── */
.demo-phone-top-bar {
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.demo-phone-island {
    width: 118px;
    height: 32px;
    background: #08090f;
    border-radius: 20px;
    box-shadow: inset 0 1px 3px rgba(0,0,0,.8);
}

/* ── Ekran alanı — iframe burada yaşar ── */
.demo-phone-screen {
    height: 640px;
    border-radius: 6px;
    overflow: hidden;
    background: #000;
    position: relative;
    flex-shrink: 0;
}
.demo-phone-screen iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
    background: #fff;
}

/* ── Alt bezel — home indicator ── */
.demo-phone-bottom-bar {
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.demo-phone-home-indicator {
    width: 100px;
    height: 4px;
    background: rgba(255,255,255,.28);
    border-radius: 2px;
}

/* ── Placeholder (demo restoran yoksa) ── */
.demo-phone-placeholder-screen {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f4f6f9;
}
.demo-placeholder-inner {
    text-align: center;
    padding: 32px 20px;
}

/* Feature listesi */
.demo-feature-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* ── Tab switcher ── */
.demo-tab-switcher {
    display: flex;
    gap: 8px;
    justify-content: center;
}
.demo-tab {
    padding: 9px 20px;
    border-radius: 24px;
    border: 1.5px solid #e0e4ea;
    background: #fff;
    font-size: .82rem;
    font-weight: 600;
    color: #555;
    cursor: pointer;
    transition: all .18s;
    font-family: inherit;
}
.demo-tab:hover {
    border-color: var(--qrt-primary);
    color: var(--qrt-primary);
}
.demo-tab.active {
    background: var(--qrt-primary);
    color: #fff;
    border-color: var(--qrt-primary);
    box-shadow: 0 4px 14px rgba(192,57,43,.25);
}

/* ── Responsive ── */
@media (max-width: 576px) {
    .demo-tab { padding: 7px 14px; font-size: .76rem; }
    .demo-phone-frame {
        width: 300px;
        border-radius: 48px;
        padding: 0 8px;
    }
    .demo-phone-top-bar { height: 50px; }
    .demo-phone-island  { width: 100px; height: 28px; }
    .demo-phone-screen  { height: 540px; }
    .demo-phone-bottom-bar { height: 32px; }
}

/* ══════════════════════════════════════════════════════════════════
   AFİŞ & FLYER MODÜLÜ — Landing page poster editör mockup
   ══════════════════════════════════════════════════════════════════ */

/* Browser frame wrapper */
.poster-mock-wrap {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 20px 60px rgba(0,0,0,.14), 0 4px 16px rgba(0,0,0,.08);
    overflow: hidden;
    border: 1px solid #e5e7eb;
}

/* Browser top bar */
.poster-mock-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 14px;
    background: #f3f4f6;
    border-bottom: 1px solid #e5e7eb;
}
.poster-mock-dots {
    display: flex;
    gap: 5px;
    flex-shrink: 0;
}
.poster-mock-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: block;
}
.poster-mock-url {
    flex: 1;
    font-size: .67rem;
    color: #9ca3af;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    padding: 3px 10px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.poster-mock-preview-btn {
    font-size: .67rem;
    font-weight: 600;
    color: #6366f1;
    background: #eef2ff;
    border-radius: 5px;
    padding: 3px 9px;
    flex-shrink: 0;
    white-space: nowrap;
}

/* Editör gövdesi: sol kontroller + sağ önizleme */
.poster-mock-body {
    display: flex;
    height: 400px;
}

/* Sol kontrol paneli */
.poster-mock-controls {
    width: 140px;
    flex-shrink: 0;
    background: #f8fafc;
    border-right: 1px solid #e9eef4;
    padding: 12px 10px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}
.poster-mock-section-label {
    font-size: .58rem;
    font-weight: 700;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: 4px;
}
.poster-mock-input {
    background: #fff;
    border: 1.5px solid #e2e8f0;
    border-radius: 5px;
    padding: 4px 7px;
    font-size: .65rem;
    color: #374151;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.poster-mock-colors {
    display: flex;
    gap: 5px;
}
.poster-mock-color-swatch {
    width: 22px;
    height: 22px;
    border-radius: 5px;
    box-shadow: inset 0 0 0 1px rgba(0,0,0,.1);
    cursor: pointer;
}
.poster-mock-chips {
    display: flex;
    gap: 3px;
    flex-wrap: wrap;
}
.poster-mock-chip {
    font-size: .57rem;
    font-weight: 600;
    padding: 2px 7px;
    border-radius: 10px;
    border: 1.5px solid #e2e8f0;
    color: #94a3b8;
    background: #fff;
}
.poster-mock-chip.active {
    border-color: #6366f1;
    background: #eef2ff;
    color: #4f46e5;
}
.poster-mock-btn-save {
    background: #6366f1;
    color: #fff;
    border-radius: 6px;
    padding: 5px 8px;
    font-size: .65rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 5px;
}
.poster-mock-dl-row {
    display: flex;
    gap: 4px;
}
.poster-mock-btn-pdf {
    flex: 1;
    background: #fef2f2;
    color: #ef4444;
    border: 1.5px solid #fca5a5;
    border-radius: 5px;
    padding: 4px 5px;
    font-size: .6rem;
    font-weight: 600;
    text-align: center;
}
.poster-mock-btn-png {
    flex: 1;
    background: #f0fdf4;
    color: #059669;
    border: 1.5px solid #6ee7b7;
    border-radius: 5px;
    padding: 4px 5px;
    font-size: .6rem;
    font-weight: 600;
    text-align: center;
}

/* Sağ önizleme alanı */
.poster-mock-preview-area {
    flex: 1;
    background: #dde1e7;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 14px;
    gap: 10px;
    overflow: hidden;
}

/* Poster kağıdı — Modern Dark şablonu simülasyonu */
.poster-mock-paper {
    position: relative;
    background: #1e2d3d;
    border-radius: 4px;
    box-shadow: 0 6px 24px rgba(0,0,0,.3);
    overflow: hidden;
    width: 160px;
    height: 226px;   /* A4 oranı */
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    padding: 12px 10px 10px;
    color: #fff;
}
.poster-mock-bg {
    position: absolute;
    inset: 0;
    background: #1e2d3d;
    z-index: 0;
}
.poster-mock-diagonal {
    position: absolute;
    top: 0;
    right: -30px;
    width: 80px;
    height: 100%;
    background: rgba(255,255,255,.06);
    transform: skewX(-12deg);
}
.poster-mock-logo-ph {
    position: relative;
    z-index: 1;
    width: 28px;
    height: 28px;
    background: rgba(255,255,255,.15);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .7rem;
    color: rgba(255,255,255,.7);
    margin-bottom: 8px;
}
.poster-mock-title-block {
    position: relative;
    z-index: 1;
    flex: 1;
}
.poster-mock-name {
    font-size: .68rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: .01em;
    margin-bottom: 3px;
}
.poster-mock-slogan {
    font-size: .54rem;
    color: rgba(255,255,255,.7);
    margin-bottom: 6px;
}
.poster-mock-promo {
    display: inline-block;
    background: #E63946;
    color: #fff;
    font-size: .5rem;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 3px;
}
.poster-mock-footer {
    position: relative;
    z-index: 1;
    display: flex;
    gap: 8px;
    align-items: flex-end;
    padding-top: 8px;
    border-top: 1px solid rgba(255,255,255,.1);
}

/* Mini QR kodu */
.poster-mock-qr {
    flex-shrink: 0;
    text-align: center;
}
.poster-mock-qr-inner {
    background: #fff;
    border-radius: 3px;
    padding: 3px;
    display: inline-block;
}
.qr-row {
    display: flex;
    gap: 1px;
    margin-bottom: 1px;
}
.qr-row span {
    width: 5px;
    height: 5px;
    background: #1e2d3d;
    border-radius: .5px;
    display: block;
    flex-shrink: 0;
}
.qr-row span.w {
    background: #fff;
}
.poster-mock-qr-label {
    font-size: .45rem;
    color: rgba(255,255,255,.6);
    margin-top: 2px;
}
.poster-mock-contact {
    flex: 1;
    font-size: .48rem;
    color: rgba(255,255,255,.65);
    line-height: 1.7;
}
.poster-mock-contact i {
    font-size: .42rem;
    margin-right: 2px;
}

/* Şablon seçici alt şerit */
.poster-mock-tpl-row {
    display: flex;
    gap: 5px;
    flex-shrink: 0;
}
.poster-mock-tpl {
    width: 28px;
    height: 40px;
    border-radius: 4px;
    cursor: pointer;
    opacity: .6;
    transition: opacity .15s, transform .15s;
    box-shadow: 0 1px 4px rgba(0,0,0,.15);
}
.poster-mock-tpl.active {
    opacity: 1;
    transform: translateY(-2px);
    box-shadow: 0 3px 8px rgba(0,0,0,.25);
}

/* ── Responsive ── */
@media (max-width: 991px) {
    .poster-mock-body  { height: 360px; }
    .poster-mock-paper { width: 140px; height: 198px; }
}

@media (max-width: 767px) {
    .poster-mock-body { height: 320px; }
    .poster-mock-controls { width: 120px; }
    .poster-mock-paper { width: 120px; height: 170px; }
    .poster-mock-name  { font-size: .6rem; }
    .poster-mock-slogan { font-size: .48rem; }
}

@media (max-width: 480px) {
    .poster-mock-controls { display: none; }
    .poster-mock-paper { width: 140px; height: 198px; }
}

/* ── pmp-* inner poster elements (used inside .poster-mock-paper) ── */
.pmp-logo {
    width: 26px;
    height: 26px;
    background: rgba(255,255,255,.15);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .65rem;
    color: rgba(255,255,255,.75);
    margin-bottom: 7px;
    flex-shrink: 0;
}
.pmp-title {
    font-size: .68rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: .01em;
    line-height: 1.2;
    margin-bottom: 3px;
}
.pmp-slogan {
    font-size: .52rem;
    color: rgba(255,255,255,.65);
    margin-bottom: 6px;
}
.pmp-promo {
    display: inline-block;
    background: #E63946;
    color: #fff;
    font-size: .48rem;
    font-weight: 700;
    padding: 2px 5px;
    border-radius: 3px;
    line-height: 1.4;
}
.pmp-footer {
    display: flex;
    gap: 7px;
    align-items: flex-end;
    padding-top: 7px;
    border-top: 1px solid rgba(255,255,255,.12);
    flex-shrink: 0;
}
.pmp-qr {
    flex-shrink: 0;
    text-align: center;
}
.pmp-qr-grid {
    background: #fff;
    border-radius: 3px;
    padding: 3px;
    display: inline-block;
}
.pqr-r {
    display: flex;
    gap: 1px;
    margin-bottom: 1px;
}
.pqr-r s {
    width: 4px;
    height: 4px;
    background: #1e2d3d;
    border-radius: .5px;
    display: block;
    flex-shrink: 0;
    text-decoration: none;
}
.pqr-r s.w {
    background: #fff;
}
.pmp-qr-label {
    font-size: .42rem;
    color: rgba(255,255,255,.55);
    margin-top: 2px;
}
.pmp-contact {
    flex: 1;
    font-size: .46rem;
    color: rgba(255,255,255,.6);
    line-height: 1.8;
    overflow: hidden;
}
.pmp-contact i {
    font-size: .4rem;
    margin-right: 2px;
}





/* ── Şablon önizleme kartları (.tpl-prev-*) ── */
.tpl-prev-row {
    display: flex;
    gap: 10px;
    margin-top: 14px;
    justify-content: center;
}
.tpl-prev {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    margin: 0;
    cursor: pointer;
}
.tpl-prev figcaption {
    font-size: .62rem;
    font-weight: 600;
    color: #94a3b8;
    letter-spacing: .01em;
    transition: color .15s;
}
.tpl-prev--active figcaption,
.tpl-prev:hover figcaption { color: #1D3557; }

.tpl-prev-paper {
    width: 90px;
    height: 127px;
    border-radius: 5px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    padding: 9px 8px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,.1);
    position: relative;
    transition: transform .2s, box-shadow .2s;
    outline: 2px solid transparent;
    outline-offset: 2px;
}
.tpl-prev--active .tpl-prev-paper {
    outline-color: #E63946;
    box-shadow: 0 4px 16px rgba(230,57,70,.25);
    transform: translateY(-3px);
}
.tpl-prev:not(.tpl-prev--active):hover .tpl-prev-paper {
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(0,0,0,.15);
}

/* İç bileşenler */
.tpl-prev-geo {
    position: absolute;
    top: -12px; right: -12px;
    width: 40px; height: 40px;
    background: rgba(255,255,255,.06);
    border-radius: 50%;
}
.tpl-prev-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 7px;
    flex-shrink: 0;
}
.tpl-prev-logo {
    width: 16px; height: 16px;
    background: rgba(255,255,255,.2);
    border-radius: 3px;
}
.tpl-prev-logo--dk    { background: rgba(0,0,0,.1); }
.tpl-prev-logo--round { background: transparent; border: 1.5px solid #c0633a; border-radius: 50%; }
.tpl-prev-tag {
    width: 18px; height: 6px;
    border-radius: 2px;
}
.tpl-prev-tag--ol {
    background: transparent;
    border: 1px solid;
}
.tpl-prev-lines {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex-shrink: 0;
}
.tpl-prev-ln {
    height: 4px;
    border-radius: 2px;
}
.tpl-prev-ln--badge { height: 6px; border-radius: 2px; }
.tpl-prev-ln--hr    { height: 1px; width: 100% !important; }
.tpl-prev-ln--orn   { height: 4px; width: 40% !important; background: rgba(192,99,58,.35); }
.tpl-prev-accent {
    height: 3px;
    margin: -9px -8px 8px;
    flex-shrink: 0;
}
.tpl-prev-stripe {
    position: absolute;
    left: 0; top: 0;
    width: 6px; height: 100%;
    border-radius: 5px 0 0 5px;
}
.tpl-prev-diag {
    height: 9px;
    background: #fff;
    clip-path: polygon(0 55%, 100% 0, 100% 100%, 0 100%);
    margin: auto -8px 0;
    flex-shrink: 0;
}
.tpl-prev-foot {
    display: flex;
    gap: 5px;
    align-items: center;
    padding: 5px 8px 6px;
    margin: 0 -8px;
    border-top: 1px solid rgba(255,255,255,.1);
    flex-shrink: 0;
    background: transparent;
}
.tpl-prev-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
    flex: 1;
}
.tpl-prev-qr {
    width: 18px; height: 18px;
    border-radius: 2px;
    flex-shrink: 0;
    background: repeating-conic-gradient(rgba(255,255,255,.9) 0% 25%, transparent 0% 50%) 0 0 / 3px 3px;
}
.tpl-prev-qr--dk { background: repeating-conic-gradient(#1e2d3d 0% 25%, transparent 0% 50%) 0 0 / 3px 3px; }
.tpl-prev-qr--w  { background: repeating-conic-gradient(#3b1f0e 0% 25%, transparent 0% 50%) 0 0 / 3px 3px; }

/* Responsive */
@media (max-width: 991px) {
    .tpl-prev-paper { width: 80px; height: 113px; }
    .tpl-prev-row { gap: 8px; }
}
@media (max-width: 767px) {
    .tpl-prev-paper { width: 68px; height: 96px; padding: 7px 6px 0; }
    .tpl-prev-row { gap: 6px; }
    .tpl-prev figcaption { font-size: .55rem; }
}

/* ── Editör kontrol detayları (.pmc-*) ── */
.pmc-logo-upload {
    display: flex;
    align-items: center;
    gap: 5px;
    border: 1.5px dashed #cbd5e1;
    border-radius: 5px;
    padding: 5px 8px;
    font-size: .58rem;
    color: #94a3b8;
    background: #fff;
    cursor: pointer;
}
.pmc-color-row {
    display: flex;
    gap: 6px;
}
.pmc-color-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
}
.pmc-hex {
    font-size: .48rem;
    color: #94a3b8;
    font-family: monospace;
    letter-spacing: -.01em;
}
.pmc-select {
    display: flex;
    align-items: center;
    gap: 5px;
    background: #fff;
    border: 1.5px solid #e2e8f0;
    border-radius: 5px;
    padding: 4px 7px;
    font-size: .62rem;
    color: #374151;
}

/* ========== Features Section V2 ========== */
.section-badge {
    display: inline-block;
    background: rgba(230,57,70,0.1);
    color: var(--qrt-primary);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--qrt-secondary);
    margin-bottom: 1.25rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 3rem;
}

.feature-card-v2 {
    background: #fff;
    border: 1px solid #f1f5f9;
    padding: 32px;
    border-radius: 20px;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.feature-card-v2:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
    border-color: rgba(230,57,70,0.1);
}

.feature-icon-v2 {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.feature-card-v2 h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--qrt-secondary);
    margin-bottom: 12px;
}

.feature-card-v2 p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .section-title { font-size: 1.75rem; }
    .feature-grid { grid-template-columns: 1fr; gap: 16px; }
    .feature-card-v2 { padding: 24px; }
}

/* =========================================
   Floating Contact Buttons (landing pages)
   ========================================= */
.fc-group { display: none; }

body.landing-page .fc-group,
body.landing-subpage .fc-group {
    position: fixed;
    left: 20px;
    bottom: 24px;
    z-index: 1050;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
}

.fc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 42px;
    min-width: 140px;
    padding: 0 16px 0 12px;
    border-radius: 100px;
    text-decoration: none;
    font-size: .8rem;
    font-weight: 700;
    color: #fff;
    box-shadow: 0 8px 24px rgba(0,0,0,.16);
    transition: transform .2s, box-shadow .2s, background .15s;
    white-space: nowrap;
    font-family: inherit;
    cursor: pointer;
    user-select: none;
}

.fc-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(0,0,0,.22);
    color: #fff;
}

.fc-btn--wa    { background: #25D366; }
.fc-btn--wa:hover { background: #1fba5a; }

.fc-btn--phone { background: #3b82f6; }
.fc-btn--phone:hover { background: #2563eb; }

/* İkon — SVG ve FA aynı görsel boyutta */
.fc-btn .fc-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    min-width: 20px;
    flex-shrink: 0;
    font-size: 1rem;
    line-height: 1;
}

.fc-btn .fc-label {
    font-size: .84rem;
    font-weight: 700;
    line-height: 1;
}

@media (max-width: 768px) {
    body.landing-page .fc-group,
    body.landing-subpage .fc-group { bottom: 20px; gap: 12px; }
    body.landing-subpage main { padding-bottom: 90px; }
    .fc-btn {
        width: 50px;
        height: 50px;
        min-width: 50px;
        padding: 0;
        justify-content: center;
        border-radius: 50%;
        box-shadow: 0 6px 18px rgba(0,0,0,.15);
    }
    .fc-btn .fc-label { display: none; }
    .fc-btn .fc-icon  { width: 22px; height: 22px; font-size: 1.1rem; }
}


/* ==================================================
   Offer Pricing Strip
================================================== */
.offer-strip-section {
    padding: 26px 0 0;
    background: linear-gradient(180deg, transparent 0%, #f8fafc 100%);
}

.offer-strip {
    border-radius: 18px;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    color: #fff;
    padding: 26px;
    display: flex;
    gap: 20px;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.24);
}

.offer-strip-badge {
    display: inline-block;
    background: rgba(230, 57, 70, 0.22);
    color: #ff9aa3;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 999px;
    padding: 4px 11px;
    font-size: 0.72rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.offer-strip-content h3 {
    font-size: 1.28rem;
    margin: 0 0 8px;
}

.offer-strip-content p {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.7;
}

.offer-strip-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 260px;
}

.offer-strip-actions .btn {
    white-space: nowrap;
}

@media (max-width: 992px) {
    .offer-strip {
        flex-direction: column;
        align-items: flex-start;
    }

    .offer-strip-actions {
        width: 100%;
        min-width: 0;
    }

    .offer-strip-actions .btn {
        width: 100%;
    }
}

/* ==================================================
   Blog Pages
================================================== */
.blog-hero {
    padding: 140px 0 68px;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #fff;
}

.blog-hero--detail {
    padding-bottom: 56px;
}

.blog-hero-inner {
    max-width: 900px;
    margin: 0 auto;
}

.blog-hero-inner--center {
    text-align: center;
}

.blog-hero-inner--left {
    text-align: left;
    margin: 0;
}

.blog-page-badge {
    display: inline-block;
    background: rgba(230, 57, 70, 0.2);
    color: #ffd1d6;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: 999px;
    padding: 6px 14px;
}

.blog-page-title {
    color: #fff;
    font-size: 2.25rem;
    line-height: 1.2;
    margin: 0 0 12px;
    letter-spacing: -0.02em;
}

.blog-page-subtitle {
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.02rem;
    line-height: 1.75;
    max-width: 760px;
    margin: 0 auto;
}

.blog-hero-subtitle {
    max-width: 760px;
}

.blog-hero-inner--left .blog-page-subtitle {
    margin-left: 0;
}

.blog-breadcrumbs {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.75);
}

.blog-breadcrumbs a {
    color: rgba(255, 255, 255, 0.88);
    text-decoration: none;
}

.blog-meta-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 10px 18px;
    font-size: 0.86rem;
    color: rgba(255, 255, 255, 0.85);
}

.blog-keyword {
    display: inline-block;
    border-radius: 999px;
    padding: 4px 12px;
    font-size: 0.75rem;
    background: #e8f1ff;
    color: #1d4ed8;
    font-weight: 700;
}

.blog-hero-ctas {
    margin-top: 20px;
    display: flex;
    justify-content: flex-start;
    gap: 12px;
    flex-wrap: wrap;
}

.blog-share-row {
    margin-top: 18px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.blog-share-row--article-end {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid #e2e8f0;
}

.blog-share-label {
    font-size: 0.8rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
}

.blog-share-row--article-end .blog-share-label {
    color: #334155;
}

.blog-share-btn {
    border: 1px solid rgba(255, 255, 255, 0.28);
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 999px;
    padding: 7px 12px;
    font-size: 0.78rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    line-height: 1;
    transition: all 0.2s ease;
    font-family: inherit;
    cursor: pointer;
}

.blog-share-btn:hover {
    background: rgba(255, 255, 255, 0.16);
    color: #fff;
}

.blog-share-row--article-end .blog-share-btn {
    border-color: #cbd5e1;
    color: #0f172a;
    background: #f8fafc;
}

.blog-share-row--article-end .blog-share-btn:hover {
    border-color: #94a3b8;
    background: #eef2f7;
    color: #0f172a;
}

.blog-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 26px;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
}

.blog-list-grid > [class*='col-'] {
    display: flex;
}

.blog-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 14px;
    margin-bottom: 10px;
    font-size: 0.8rem;
    color: #64748b;
.blog-card-title {
    font-size: 1.28rem;
    line-height: 1.35;
    margin-bottom: 12px;
    min-height: 3.45em;
}

.blog-card-title a {
    text-decoration: none;
    color: #0f172a;
}

.blog-card p {
    color: #475569;
    line-height: 1.72;
    margin-bottom: 18px;
    flex: 1;
}

.blog-card-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: auto;
}

.blog-empty-state {
    border: 1px dashed #cbd5e1;
    border-radius: 14px;
    background: #fff;
    padding: 24px;
    text-align: center;
    color: #64748b;
}

.blog-featured-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    padding: 30px;
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.07);
}

.blog-featured-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
    margin-bottom: 12px;
    font-size: 0.82rem;
    color: #64748b;
}

.blog-featured-card h3 {
    font-size: 1.45rem;
    color: #0f172a;
    margin-bottom: 10px;
}

.blog-featured-card p {
    margin-bottom: 18px;
    color: #475569;
    line-height: 1.7;
}

.blog-featured-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.blog-article {
    max-width: 860px;
    margin: 0 auto;
    color: #1f2937;
}

.blog-article p,
.blog-article li {
    font-size: 1rem;
    line-height: 1.85;
}

.blog-article .lead {
    font-size: 1.08rem;
    color: #334155;
}

.blog-article h2 {
    font-size: 1.45rem;
    margin-top: 38px;
    margin-bottom: 12px;
    color: #0f172a;
    line-height: 1.35;
}

.blog-article ul,
.blog-article ol {
    padding-left: 1.3rem;
    margin-bottom: 0;
}

.blog-timeline {
    display: grid;
    gap: 12px;
    margin-top: 4px;
}

.blog-timeline-item {
    display: grid;
    grid-template-columns: 190px 1fr;
    gap: 14px;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 14px;
    background: #f8fafc;
}

.blog-timeline-date {
    font-weight: 700;
    color: #1e40af;
}

.blog-inline-cta {
    margin-top: 28px;
    margin-bottom: 28px;
    background: #0f172a;
    color: #fff;
    border-radius: 14px;
    padding: 22px;
}

.blog-inline-cta h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.blog-inline-cta p {
    color: rgba(255, 255, 255, 0.78);
}

.blog-inline-cta--soft {
    background: #f1f5f9;
    color: #0f172a;
    border: 1px solid #dbe4ef;
}

.blog-inline-cta--soft p {
    color: #475569;
}

.blog-inline-cta--final {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
}

.blog-legal-note {
    margin-top: 20px;
    padding: 14px;
    border-radius: 10px;
    background: #fff7ed;
    border: 1px solid #fed7aa;
    color: #9a3412;
}

.blog-detail-pricing {
    border-top: 1px solid #e2e8f0;
}

.blog-section-head {
    max-width: 760px;
    margin: 0 auto;
}

.blog-detail-pricing .blog-page-title {
    color: #0f172a;
    margin-bottom: 10px;
}

.blog-detail-pricing .blog-page-subtitle {
    color: #475569;
}

.blog-period-toggle {
    margin-bottom: 12px;
}

.blog-period-toggle .blog-period-btn {
    min-width: 120px;
}

@media (max-width: 991px) {
    .blog-hero {
        padding-top: 120px;
    }

    .blog-page-title {
        font-size: 2rem;
    }

    .blog-timeline-item {
        grid-template-columns: 1fr;
        gap: 8px;
    }
}

@media (max-width: 768px) {
    .blog-card,
    .blog-featured-card {
        padding: 20px;
    }

    .blog-page-title {
        font-size: 1.8rem;
    }

    .blog-page-subtitle {
        font-size: 0.95rem;
    }

    .blog-share-row {
        gap: 8px;
    }

    .blog-share-btn {
        font-size: 0.74rem;
    }

    .blog-card-title {
        min-height: 0;
        font-size: 1.16rem;
    }

    .blog-article h2 {
        font-size: 1.28rem;
    }

    .blog-inline-cta {
        padding: 18px;
    }
}
