/* ============================================================================
   Hattat YMM — tanıtım sitesi
   ----------------------------------------------------------------------------
   YmmCore uygulamasının "Zümrüt" tasarım dili (koyu köknar + zümrüt yeşili +
   Public Sans) burada da geçerli: ziyaretçi siteden uygulamaya geçtiğinde aynı
   ürünü görmeli.

   Bu dosya BAĞIMSIZ — YmmCore/wwwroot/css altındaki hiçbir şeye dokunmaz,
   hiçbir şeyi import etmez. Farklı alan adında, ayrı yayınlanır.
   ============================================================================ */

/* Yazi tipi bildirimleri BURADAN @import EDILMIYOR — HTML'de ayri bir <link>
 * olarak, bu dosyadan ONCE geliyor.
 *
 * Sebep: @import zincirleme (seri) indirme yaratir. Tarayici once site.css'i
 * indirip AYRISTIRMAK zorunda, ancak o zaman fonts.css'i gorup istiyor, ancak
 * o indikten sonra .woff2'ye sira geliyor — ucu ust uste, art arda. <link> ile
 * ikisi PARALEL iner. Tanitim sayfasinda ilk boyama suresi dogrudan donusum
 * demek oldugu icin bu fark onemli. */

/* ---------- 1. Token'lar --------------------------------------------------- */
:root {
    /* Zümrüt paleti — uygulamayla birebir aynı */
    --rail:          #0E2A20;
    --rail-2:        #16382A;
    --rail-line:     #1D4033;
    --rail-ink:      #D6E4DC;   /* koyu zemin üstünde 11.7:1 */
    --rail-ink-2:    #B9CFC5;   /* 9.3:1 — koyu zeminde uzun paragraflar için */
    --rail-ink-soft: #7FA394;   /* 5.5:1 — yalnızca kısa, ikincil etiketler */

    --accent:        #0B6E4F;   /* beyaz üstünde 6.25:1 — AA+ */
    --accent-hover:  #095C42;
    --accent-bright: #4ECB8F;   /* koyu zemin üstünde 7.5:1 */
    --accent-wash:   #EAF4EF;
    --accent-line:   #C7E2D5;

    --brand-red:     #E51B20;   /* logodan; YALNIZ logoda kullanılır */

    --bg:          #FFFFFF;
    --bg-soft:     #F4F7F5;
    --surface:     #FFFFFF;
    --ink:         #111A16;
    --ink-soft:    #4A5A53;
    --ink-faint:   #7C8C84;
    --line:        #E1E8E4;
    --line-strong: #CBD6D0;

    --warn:   #B26A00;
    --danger: #B42318;

    --font-ui:   'Public Sans', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
    --font-mono: 'IBM Plex Mono', ui-monospace, 'SF Mono', Menlo, Consolas, monospace;

    --wrap: 1160px;
    --r-s: 6px;
    --r-m: 10px;
    --r-l: 16px;

    --shadow-1: 0 1px 2px rgba(14, 42, 32, .06), 0 1px 1px rgba(14, 42, 32, .04);
    --shadow-2: 0 6px 24px rgba(14, 42, 32, .09), 0 1px 3px rgba(14, 42, 32, .06);
    --shadow-3: 0 24px 64px rgba(6, 22, 16, .16), 0 2px 8px rgba(6, 22, 16, .08);
}

/* ---------- 2. Taban ------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 84px; }
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

body {
    margin: 0;
    font-family: var(--font-ui);
    font-size: 16px;
    line-height: 1.6;
    color: var(--ink);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

img, svg { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); text-decoration-thickness: 1px; text-underline-offset: 2px; }
a:hover { color: var(--accent-hover); }

:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 3px; }

/* Klavyeyle gezen için içeriğe atlama — ekran okuyucu ve Tab kullanıcısı */
.skip {
    position: absolute; left: -9999px; top: 0; z-index: 100;
    padding: 10px 16px; background: var(--accent); color: #fff;
    border-radius: 0 0 var(--r-s) 0; font-weight: 600;
}
.skip:focus { left: 0; color: #fff; }

.num { font-family: var(--font-mono); font-variant-numeric: tabular-nums; }

/* Ekranda görünmez, ekran okuyucuya okunur. Tablo caption'ı gibi yalnızca
   erişilebilirlik için var olan metinlerde kullanılır. */
.visually-hidden {
    position: absolute !important;
    width: 1px; height: 1px;
    margin: -1px; padding: 0; overflow: hidden;
    clip: rect(0 0 0 0); clip-path: inset(50%);
    white-space: nowrap; border: 0;
}

/* Bot tuzağı — insana görünmez, doldurulursa istek reddedilir. */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* ---------- 3. Yerleşim ---------------------------------------------------- */
.wrap { width: min(100% - 40px, var(--wrap)); margin-inline: auto; }
@media (max-width: 640px) { .wrap { width: calc(100% - 32px); } }

section { padding: 84px 0; }
section.tight { padding: 60px 0; }
@media (max-width: 760px) {
    section { padding: 54px 0; }
    section.tight { padding: 44px 0; }
    .sec-head { margin-bottom: 30px; }
}
.band { background: var(--bg-soft); }
.band-dark { background: var(--rail); color: var(--rail-ink); }

.eyebrow {
    font-size: 12px; font-weight: 700; letter-spacing: .12em;
    text-transform: uppercase; color: var(--accent);
    margin: 0 0 12px;
}
.band-dark .eyebrow { color: var(--accent-bright); }

h1, h2, h3 { margin: 0; letter-spacing: -.02em; line-height: 1.15; font-weight: 700; }
h1 { font-size: clamp(34px, 5vw, 56px); }
h2 { font-size: clamp(27px, 3.4vw, 38px); }
h3 { font-size: 18px; letter-spacing: -.01em; line-height: 1.3; }

.lead { font-size: clamp(16px, 1.4vw, 18.5px); line-height: 1.62; color: var(--ink-soft); margin: 16px 0 0; }
/* Koyu zeminde gövde metni --rail-ink-soft'ta (5.5:1) teknik olarak AA geçiyor
   ama uzun paragrafta gözle soluk okunuyor. Paragraflar için 9.3:1'lik ton. */
.band-dark .lead, .hero .lead { color: var(--rail-ink-2); }

.sec-head { max-width: 720px; margin-bottom: 44px; }
.sec-head.center { margin-inline: auto; text-align: center; }

/* ---------- 4. Düğmeler ---------------------------------------------------- */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 9px;
    min-height: 46px; padding: 0 22px;
    border: 1px solid transparent; border-radius: var(--r-s);
    font: inherit; font-size: 15px; font-weight: 600;
    text-decoration: none; cursor: pointer; white-space: nowrap;
    transition: background .15s, border-color .15s, color .15s, transform .15s;
}
.btn:active { transform: translateY(1px); }
.btn svg { width: 18px; height: 18px; flex: none; }

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

.btn-outline { background: transparent; border-color: var(--line-strong); color: var(--ink); }
.btn-outline:hover { background: var(--bg-soft); border-color: var(--ink-faint); color: var(--ink); }

.band-dark .btn-outline,
.hero .btn-outline { border-color: rgba(255, 255, 255, .28); color: #fff; }
.band-dark .btn-outline:hover,
.hero .btn-outline:hover { background: rgba(255, 255, 255, .1); color: #fff; }

.btn-wa { background: #25D366; color: #06240F; }
.btn-wa:hover { background: #1FBA59; color: #06240F; }

.btn-lg { min-height: 52px; padding: 0 28px; font-size: 16px; }

/* ---------- 5. Üst bar ----------------------------------------------------- */
.site-head {
    position: sticky; top: 0; z-index: 50;
    background: rgba(14, 42, 32, .92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--rail-line);
}
/* Mobil menü panelinin konumlanabilmesi için (position:absolute dayanağı). */
.head-in { position: relative; }
.head-in { display: flex; align-items: center; gap: 26px; height: 68px; }
.head-logo { flex: none; }
.head-logo img { height: 38px; width: auto; }

.head-nav { display: flex; gap: 4px; margin-left: auto; }
.head-nav a {
    padding: 8px 12px; border-radius: var(--r-s);
    color: var(--rail-ink); text-decoration: none;
    font-size: 14.5px; font-weight: 500;
}
.head-nav a:hover { background: var(--rail-2); color: #fff; }

.head-act { display: flex; align-items: center; gap: 10px; flex: none; }
.head-act .btn { min-height: 38px; padding: 0 16px; font-size: 14px; }

/* "Giriş yap" koyu barda okunur olmalı: saydam kenarlıklı hâli çok soluk
   kalıyordu. Dolgu + belirgin kenarlık, ama yine de yeşil birincil CTA ile
   yarışmayacak kadar sakin. */
.site-head .btn-outline {
    background: rgba(255, 255, 255, .14);
    border-color: rgba(255, 255, 255, .5);
    color: #fff;
    font-weight: 600;
}
.site-head .btn-outline:hover {
    background: rgba(255, 255, 255, .26);
    border-color: #fff;
    color: #fff;
}

/* ---------- Mobil menü ----------
   940 px altında yatay menü sığmıyor. Eskiden sadece gizleniyordu — yani
   telefonda sayfada gezinmenin hiçbir yolu kalmıyordu. Artık açılır panel. */
.nav-toggle {
    display: none;
    width: 40px; height: 40px; flex: none;
    align-items: center; justify-content: center;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, .28);
    border-radius: var(--r-s);
    color: #fff; cursor: pointer;
}
.nav-toggle svg { width: 20px; height: 20px; }
.nav-toggle .ic-close { display: none; }
.nav-toggle[aria-expanded="true"] .ic-open { display: none; }
.nav-toggle[aria-expanded="true"] .ic-close { display: block; }

@media (max-width: 940px) {
    .head-nav {
        position: absolute; left: 0; right: 0; top: 100%;
        flex-direction: column; gap: 2px;
        padding: 10px 20px 18px;
        background: var(--rail);
        border-bottom: 1px solid var(--rail-line);
        box-shadow: 0 18px 40px rgba(0, 0, 0, .35);
    }
    .head-nav[hidden] { display: none; }
    .head-nav a { padding: 13px 12px; font-size: 16px; border-radius: var(--r-s); }
    .nav-toggle { display: inline-flex; }

    /* KRITIK: menu burada position:absolute oluyor, yani AKIŞTAN ÇIKIYOR.
       Sağa iten margin-left:auto onunla birlikte etkisiz kalıyordu ve
       .head-act ortada asılı duruyordu — ölçüldü: 360 px'te ☰ düğmesinin
       sağında 108 px boş alan vardı, üst bar sola yığılmış görünüyordu.
       Boşluğu şimdi .head-act devralıyor. */
    .head-act { gap: 8px; margin-left: auto; }

    .head-in { gap: 10px; }

    /* Dokunma hedefi: 40/38 px idi, parmak için küçük (Apple asgarisi 44).
       Yükseklik 44'e çıktı; genişlik yatay dolguyla zaten yeterli. */
    .nav-toggle { width: 44px; height: 44px; }
    .head-act .btn { min-height: 44px; }

    /* Marka mobilde daha küçük çizilmemeli — üst barın tek kimlik taşıyıcısı o. */
    .head-logo img { height: 36px; }
}

/* Çok dar ekran (küçük telefonlar).
   CTA etiketi ÖNCE "Demo"ya kısaltılıyordu; ölçünce gereksiz olduğu görüldü:
   360 px'te bile logo + "Demo isteyin" + ☰ toplamından sonra 136 px boşluk
   kalıyor. Etiket tam kalıyor, yalnızca yatay dolgu ve logo biraz küçülüyor. */
@media (max-width: 400px) {
    .head-act .btn-primary { padding: 0 14px; }
    .head-logo img { height: 32px; }
    .head-in { gap: 8px; }
}
@media (min-width: 941px) {
    /* Masaüstünde menü her zaman görünür — JS hidden bıraksa bile. */
    .head-nav[hidden] { display: flex; }
}
@media (max-width: 700px) {
    .head-act .btn-outline { display: none; }   /* Giriş yap panele taşınır */
    .head-logo img { height: 32px; }
}
/* Panelin içindeki "Giriş yap" — yalnızca dar ekranda görünür. */
.nav-login { display: none; }
@media (max-width: 700px) {
    .nav-login {
        display: flex; margin-top: 10px;
        border-top: 1px solid var(--rail-line); padding-top: 14px;
    }
    .nav-login .btn { width: 100%; }
}

/* ---------- 6. Hero -------------------------------------------------------- */
.hero {
    position: relative;
    background: var(--rail);
    color: var(--rail-ink);
    padding: 84px 0 96px;
    overflow: hidden;
}
/* Doku: muhasebe defteri ızgarası. Gradyan değil — konuya ait bir doku. */
.hero::after {
    content: ""; position: absolute; inset: 0; pointer-events: none;
    background-image:
        linear-gradient(var(--rail-line) 1px, transparent 1px),
        linear-gradient(90deg, var(--rail-line) 1px, transparent 1px);
    background-size: 38px 38px;
    opacity: .8;
    mask-image: radial-gradient(ellipse 78% 74% at 28% 42%, #000 22%, transparent 82%);
}
.hero > * { position: relative; z-index: 1; }

.hero-grid {
    display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.02fr);
    gap: 56px; align-items: center;
}
@media (max-width: 1040px) { .hero-grid { grid-template-columns: minmax(0, 1fr); gap: 44px; } }

.hero h1 { color: #fff; }
.hero h1 .hl { color: var(--accent-bright); }
.hero .lead { max-width: 540px; }

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

.hero-trust {
    display: flex; flex-wrap: wrap; gap: 10px 26px;
    margin: 34px 0 0; padding: 22px 0 0;
    border-top: 1px solid var(--rail-line);
    list-style: none;
}
.hero-trust li { display: flex; align-items: center; gap: 8px; font-size: 13.5px; color: var(--rail-ink-2); }
.hero-trust svg { width: 16px; height: 16px; color: var(--accent-bright); flex: none; }
/* Dar ekranda yan yana sığmıyor, satır sonunda kırpılıyorlardı — alt alta. */
@media (max-width: 760px) {
    .hero-trust { flex-direction: column; gap: 9px; }
    .hero { padding: 54px 0 64px; }
    .hero-cta .btn { flex: 1 1 auto; }
}

/* ---------- 7. Ürün çerçevesi (hero görseli) ------------------------------- */
.shot {
    background: var(--surface);
    border-radius: var(--r-l);
    box-shadow: var(--shadow-3);
    overflow: hidden;
    font-size: 13px; color: var(--ink);
}
.shot-bar {
    display: flex; align-items: center; gap: 8px;
    padding: 11px 14px;
    background: var(--bg-soft); border-bottom: 1px solid var(--line);
}
.shot-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--line-strong); flex: none; }
.shot-url {
    margin-left: 8px; padding: 3px 12px;
    background: var(--surface); border: 1px solid var(--line); border-radius: 999px;
    font-size: 11.5px; color: var(--ink-faint);
    font-family: var(--font-mono);
}
.shot-ctx {
    display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
    padding: 12px 16px;
    border-bottom: 1px solid var(--line); border-left: 3px solid var(--accent);
}
.shot-ctx b { font-size: 14px; font-weight: 600; }
.shot-ctx .meta { font-size: 12px; color: var(--ink-soft); }
.shot-ctx .fact { margin-left: auto; text-align: right; }
.shot-ctx .fact .k { display: block; font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-faint); }
.shot-ctx .fact .v { display: block; font-family: var(--font-mono); font-variant-numeric: tabular-nums; font-size: 14px; font-weight: 500; }

/* Dar ekranda tablo kendi içinde kaysın — sayfayı yatay olarak İTMESİN.
   min-width:0 olmadan tablo çerçeveyi dışarı doğru genişletir ve bütün
   sayfada yatay kaydırma çubuğu belirir. */
.shot { min-width: 0; }
.shot-tablewrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.shot table { width: 100%; min-width: 440px; border-collapse: collapse; }
@media (max-width: 460px) {
    .shot-ctx { gap: 8px; }
    .shot-ctx .fact { margin-left: 0; text-align: left; }
    .shot td, .shot th { padding-left: 10px; padding-right: 10px; }
}
.shot th {
    padding: 9px 14px; text-align: left; white-space: nowrap;
    font-size: 10.5px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
    color: var(--ink-soft); background: #FAFCFB;
    border-bottom: 1px solid var(--line-strong);
}
.shot td {
    padding: 9px 14px; border-bottom: 1px solid var(--line);
    white-space: nowrap; font-size: 12.5px;
}
.shot th.r, .shot td.r { text-align: right; }
.shot td.amount, .shot th.amount { background: rgba(234, 244, 239, .6); font-weight: 500; }
.shot tfoot td { border-top: 3px double var(--line-strong); border-bottom: 0; font-weight: 700; background: #FAFCFB; }
.shot tfoot td.amount { background: var(--accent-wash); color: var(--accent); }

.pill {
    display: inline-flex; align-items: center; gap: 5px;
    padding: 2px 9px 2px 7px; border-radius: 999px;
    font-size: 11px; font-weight: 600; border: 1px solid transparent;
}
.pill::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.pill.ok   { color: var(--accent); background: var(--accent-wash); border-color: var(--accent-line); }
.pill.warn { color: var(--warn);   background: #FDF4E4; border-color: #F0DDBB; }

/* Mutabakat rozeti — ürünün asıl marifeti: fatura KDV'si ile beyan farkı */
.shot-recon {
    display: flex; align-items: center; gap: 12px;
    padding: 12px 16px; background: var(--accent-wash);
    border-top: 1px solid var(--accent-line);
}
.shot-recon .ic {
    width: 26px; height: 26px; flex: none; border-radius: 50%;
    background: var(--accent); color: #fff; display: grid; place-items: center;
}
.shot-recon .ic svg { width: 15px; height: 15px; }
.shot-recon .tx { font-size: 12.5px; line-height: 1.4; }
.shot-recon .tx b { display: block; color: var(--accent); }

/* ---------- 8. Kartlar ----------------------------------------------------- */
.grid { display: grid; gap: 20px; }
.g2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.g3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.g4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
@media (max-width: 1000px) { .g4 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 880px)  { .g3 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 620px)  { .g2, .g3, .g4 { grid-template-columns: minmax(0, 1fr); } }

.card {
    padding: 26px;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--r-m);
    box-shadow: var(--shadow-1);
}
.card h3 { margin-bottom: 8px; }
.card p { margin: 0; font-size: 14.5px; line-height: 1.6; color: var(--ink-soft); }
.card-ic {
    width: 40px; height: 40px; margin-bottom: 16px;
    display: grid; place-items: center;
    border-radius: var(--r-s);
    background: var(--accent-wash); color: var(--accent);
}
.card-ic svg { width: 20px; height: 20px; }

/* Sorun kartları — uyarı tonunda */
.card.pain .card-ic { background: #FDF4E4; color: var(--warn); }

/* Çapraz satış kartları — kartın tamamı tıklanabilir bağlantı. */
.card.xs {
    display: flex; flex-direction: column;
    text-decoration: none; color: inherit;
    transition: border-color .15s, box-shadow .15s, transform .15s;
}
.card.xs:hover {
    border-color: var(--accent-line);
    box-shadow: var(--shadow-2);
    transform: translateY(-2px);
    color: inherit;
}
.card.xs h3 { color: var(--ink); }
.card.xs p { flex: 1; }
.xs-go {
    display: inline-flex; align-items: center; gap: 7px;
    margin-top: 16px;
    font-size: 14px; font-weight: 600; color: var(--accent);
}
.xs-go svg { width: 16px; height: 16px; transition: transform .15s; }
.card.xs:hover .xs-go svg { transform: translateX(3px); }

/* Adım kartları */
.step { position: relative; padding-top: 6px; }
.step-n {
    font-family: var(--font-mono);
    font-size: 12px; font-weight: 500; letter-spacing: .1em;
    color: var(--accent); margin-bottom: 10px;
}
.step h3 { margin-bottom: 7px; }
.step p { margin: 0; font-size: 14.5px; color: var(--ink-soft); }

/* ---------- 9. Karşılaştırma tablosu --------------------------------------- */
.cmp-scroll { overflow-x: auto; border-radius: var(--r-m); border: 1px solid var(--line); background: var(--surface); box-shadow: var(--shadow-1); }
table.cmp { width: 100%; min-width: 700px; border-collapse: collapse; }
table.cmp th, table.cmp td { padding: 15px 20px; text-align: left; vertical-align: top; border-bottom: 1px solid var(--line); }
table.cmp thead th {
    font-size: 12px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
    color: var(--ink-soft); background: var(--bg-soft);
    border-bottom: 1px solid var(--line-strong);
}
table.cmp thead th.us { color: var(--accent); background: var(--accent-wash); }
table.cmp td.us { background: rgba(234, 244, 239, .5); font-weight: 500; }
table.cmp tbody th { font-weight: 600; font-size: 14.5px; width: 25%; }
table.cmp td { font-size: 14.5px; color: var(--ink-soft); }
table.cmp td.us { color: var(--ink); }
table.cmp tbody tr:last-child th, table.cmp tbody tr:last-child td { border-bottom: 0; }
.cmp-mark { display: inline-flex; align-items: center; gap: 7px; }
.cmp-mark svg { width: 16px; height: 16px; flex: none; }
.cmp-yes svg { color: var(--accent); }
.cmp-no  svg { color: var(--ink-faint); }
.cmp-note { margin: 14px 0 0; font-size: 13px; color: var(--ink-faint); }

/* ---------- 10. Fiyat ------------------------------------------------------ */
.price-card {
    max-width: 560px; margin-inline: auto;
    background: var(--surface);
    border: 2px solid var(--accent);
    border-radius: var(--r-l);
    box-shadow: var(--shadow-2);
    overflow: hidden;
}
.price-top { padding: 34px 34px 28px; text-align: center; border-bottom: 1px solid var(--line); }
.price-tag {
    display: inline-block; margin-bottom: 14px; padding: 4px 12px;
    background: var(--accent-wash); border: 1px solid var(--accent-line); border-radius: 999px;
    font-size: 12px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--accent);
}
.price-amt {
    display: flex; align-items: baseline; justify-content: center; gap: 8px;
    font-family: var(--font-mono); font-variant-numeric: tabular-nums;
}
.price-amt .v { font-size: clamp(40px, 6vw, 54px); font-weight: 500; letter-spacing: -.03em; line-height: 1; }
.price-amt .p { font-size: 17px; color: var(--ink-soft); font-family: var(--font-ui); }
.price-sub { margin: 12px 0 0; font-size: 14px; color: var(--ink-soft); }
.price-list { margin: 0; padding: 26px 34px; list-style: none; display: grid; gap: 11px; }
.price-list li { display: flex; gap: 11px; font-size: 15px; }
.price-list svg { width: 18px; height: 18px; flex: none; margin-top: 3px; color: var(--accent); }
.price-foot { padding: 0 34px 32px; display: grid; gap: 10px; }
.price-foot .btn { width: 100%; }

/* ---------- 11. SSS -------------------------------------------------------- */
.faq { max-width: 800px; margin-inline: auto; }
.faq details {
    border: 1px solid var(--line); border-radius: var(--r-m);
    background: var(--surface); margin-bottom: 10px;
}
.faq details[open] { border-color: var(--accent-line); box-shadow: var(--shadow-1); }
.faq summary {
    display: flex; align-items: center; gap: 14px;
    padding: 18px 22px; cursor: pointer; list-style: none;
    font-size: 16.5px; font-weight: 600;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
    content: ""; flex: none; margin-left: auto;
    width: 11px; height: 11px;
    border-right: 2px solid var(--ink-faint); border-bottom: 2px solid var(--ink-faint);
    transform: rotate(45deg) translate(-2px, -2px);
    transition: transform .18s ease;
}
.faq details[open] summary::after { transform: rotate(-135deg) translate(-2px, -2px); }
.faq .ans { padding: 0 22px 20px; margin: 0; font-size: 15px; line-height: 1.65; color: var(--ink-soft); }
.faq .ans + .ans { padding-top: 0; }

/* ---------- 12. İletişim --------------------------------------------------- */
.contact-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr); gap: 48px; align-items: start; }
@media (max-width: 940px) { .contact-grid { grid-template-columns: minmax(0, 1fr); gap: 36px; } }

.contact-ways { list-style: none; margin: 28px 0 0; padding: 0; display: grid; gap: 14px; }
.contact-ways li { display: flex; gap: 13px; align-items: flex-start; }
.contact-ways svg { width: 20px; height: 20px; flex: none; margin-top: 3px; color: var(--accent-bright); }
.contact-ways .k { display: block; font-size: 12px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: var(--rail-ink-soft); }
.contact-ways a, .contact-ways span.v { color: #fff; text-decoration: none; font-size: 15.5px; font-weight: 500; }
.contact-ways a:hover { color: var(--accent-bright); }

.form-card { background: var(--surface); border-radius: var(--r-l); padding: 30px; box-shadow: var(--shadow-3); color: var(--ink); }
.form-card h3 { margin-bottom: 6px; }
.form-card > p { margin: 0 0 22px; font-size: 14px; color: var(--ink-soft); }
.fld { display: flex; flex-direction: column; gap: 6px; margin-bottom: 15px; }
.fld label { font-size: 13.5px; font-weight: 600; }
.fld label .req { color: var(--danger); }
.fld input, .fld select, .fld textarea {
    width: 100%; min-height: 44px; padding: 10px 13px;
    background: var(--surface);
    border: 1px solid var(--line-strong); border-radius: var(--r-s);
    font: inherit; font-size: 15px; color: var(--ink);
    transition: border-color .15s, box-shadow .15s;
}
.fld textarea { min-height: 92px; resize: vertical; }
.fld input:hover, .fld select:hover, .fld textarea:hover { border-color: var(--ink-faint); }
.fld input:focus, .fld select:focus, .fld textarea:focus {
    outline: none; border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(11, 110, 79, .16);
}
.fld .err { font-size: 12.5px; color: var(--danger); display: none; }
.fld.invalid input, .fld.invalid select { border-color: var(--danger); }
.fld.invalid .err { display: block; }
.fld-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 15px; }
@media (max-width: 520px) { .fld-row { grid-template-columns: minmax(0, 1fr); } }

.consent { display: flex; gap: 10px; align-items: flex-start; margin: 4px 0 18px; font-size: 13px; color: var(--ink-soft); line-height: 1.5; }
.consent input { width: 17px; height: 17px; margin-top: 2px; flex: none; accent-color: var(--accent); min-height: 0; }

.form-msg { display: none; padding: 14px 16px; border-radius: var(--r-s); font-size: 14.5px; margin-top: 14px; }
.form-msg.ok   { display: block; background: var(--accent-wash); border: 1px solid var(--accent-line); color: var(--accent); }
.form-msg.bad  { display: block; background: #FDF1F0; border: 1px solid #F5D2CE; color: var(--danger); }

/* ---------- 13. Alt bilgi -------------------------------------------------- */
.site-foot { background: #0A1F17; color: var(--rail-ink-soft); padding: 60px 0 28px; font-size: 14.5px; }
.foot-grid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 40px; }
@media (max-width: 900px) { .foot-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 32px; } }
@media (max-width: 560px) { .foot-grid { grid-template-columns: minmax(0, 1fr); } }
.foot-brand img { height: 46px; width: auto; margin-bottom: 16px; }
.foot-brand p { margin: 0; font-size: 14px; line-height: 1.65; max-width: 330px; color: var(--rail-ink-2); }
.site-foot h4 { margin: 0 0 14px; font-size: 12.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: #fff; }
.site-foot ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 9px; }
.site-foot a { color: var(--rail-ink-soft); text-decoration: none; }
.site-foot a:hover { color: var(--accent-bright); }
.foot-bot {
    margin-top: 44px; padding-top: 22px;
    border-top: 1px solid var(--rail-line);
    display: flex; flex-wrap: wrap; gap: 10px 24px; align-items: center;
    font-size: 13px;
}
.foot-bot .sep { margin-left: auto; }

/* Sabit WhatsApp düğmesi */
.wa-float {
    position: fixed; right: 20px; bottom: 20px; z-index: 60;
    display: inline-flex; align-items: center; gap: 10px;
    padding: 13px 18px; border-radius: 999px;
    background: #25D366; color: #06240F;
    font-weight: 700; font-size: 14.5px; text-decoration: none;
    box-shadow: 0 8px 28px rgba(0, 0, 0, .22);
}
.wa-float:hover { background: #1FBA59; color: #06240F; }
.wa-float svg { width: 21px; height: 21px; }
@media (max-width: 640px) { .wa-float span { display: none; } .wa-float { padding: 15px; } }

/* Form kartı beyaz; oraya ileride ikincil bir düğme eklenirse koyu üst bardaki
   kuralı almamalı (site-head .btn-outline yarı saydam beyaz veriyor — beyaz
   zeminde görünmez olurdu). */
.form-card .btn-outline { background: var(--surface); border-color: var(--line-strong); color: var(--ink); }
.form-card .btn-outline:hover { background: var(--bg-soft); border-color: var(--ink-faint); color: var(--ink); }
