/* ==========================================================================
   Denk Risk — tasarım sistemi
   ========================================================================== */

:root {
    /* Marka — logo lacivertinden türetilmiştir */
    --navy-950: #070E1E;
    --navy-900: #0B1730;
    --navy-800: #0F2043;
    --navy-700: #16305F;
    --navy-600: #1E4180;
    --navy-500: #2A55A0;
    --navy-100: #E7ECF6;
    --navy-50:  #F1F4FB;

    --accent:      #1E63C8;
    --accent-dark: #164FA4;
    --accent-soft: #E8F0FD;

    --gold:      #C8A24A;
    --gold-soft: #FBF5E7;

    --success:      #12805A;
    --success-soft: #E4F5EE;
    --danger:       #C0342F;
    --danger-soft:  #FBECEB;
    --warning:      #B57314;
    --warning-soft: #FDF3E3;

    /* Yüzey ve metin */
    --bg:        #F4F6FA;
    --card:      #FFFFFF;
    --card-alt:  #FAFBFD;
    --border:    #E2E7F0;
    --border-strong: #CBD4E4;

    --text:       #101828;
    --text-body:  #475467;
    --text-muted: #8A94A6;

    /* Ölçüler */
    --radius:    14px;
    --radius-sm: 10px;
    --radius-lg: 20px;
    --shadow-sm: 0 1px 2px rgba(15, 32, 67, .05);
    --shadow:    0 4px 16px rgba(15, 32, 67, .07);
    --shadow-lg: 0 12px 40px rgba(15, 32, 67, .12);

    --container: 1200px;
    --header-h:  76px;

    --font: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* ------------------------------------------------------------------ Temel */

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

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); }

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

h1, h2, h3, h4, h5 {
    margin: 0 0 .5em;
    color: var(--text);
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -.01em;
}

h1 { font-size: 32px; }
h2 { font-size: 26px; }
h3 { font-size: 20px; }
h4 { font-size: 17px; }

p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

a { color: var(--accent); text-decoration: none; transition: color .15s ease; }
a:hover { color: var(--accent-dark); }

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

/* İkonlar varsayılan olarak kendi boyutunu taşır; bağlam kuralları bunu ezer. */
svg.icon { width: 18px; height: 18px; flex: 0 0 auto; }
.btn svg.icon { width: 17px; height: 17px; }

ul, ol { margin: 0 0 1em; padding-left: 1.25em; }
li { margin-bottom: .35em; }

hr { border: 0; border-top: 1px solid var(--border); margin: 32px 0; }

::selection { background: var(--navy-100); color: var(--navy-800); }

/* ----------------------------------------------------------------- Düzen */

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

.container--narrow { max-width: 820px; }

.section { padding: 56px 0; }
.section--tight { padding: 36px 0; }
.section--dark { background: var(--navy-900); color: #C8D2E4; }
.section--dark h2, .section--dark h3 { color: #fff; }
.section--alt { background: #fff; }

.section-head { margin-bottom: 28px; }
.section-head p { color: var(--text-body); margin: 0; max-width: 720px; }
.section-head--center { text-align: center; }
.section-head--center p { margin-inline: auto; }

.grid { display: grid; gap: 20px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* Geniş içerik + yan sütun. minmax(0,…) sütunun içeriğe göre şişip
   taşmasını engeller; dar ekranda alt alta iner. */
.grid--sidebar {
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
    gap: 32px;
    align-items: start;
}

.stack > * + * { margin-top: 16px; }
.muted { color: var(--text-muted); }
.small { font-size: 14px; }
.center { text-align: center; }
.nowrap { white-space: nowrap; }

/* --------------------------------------------------------------- Butonlar */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 24px;
    border: 1px solid transparent;
    border-radius: var(--radius-sm);
    font: inherit;
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
    text-align: center;
    cursor: pointer;
    transition: background .15s ease, border-color .15s ease, color .15s ease, transform .1s ease;
}

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

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

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

.btn--outline { background: #fff; border-color: var(--border-strong); color: var(--navy-800); }
.btn--outline:hover { border-color: var(--navy-800); color: var(--navy-800); background: var(--navy-50); }

.btn--ghost { background: transparent; color: var(--navy-800); padding-inline: 12px; }
.btn--ghost:hover { background: var(--navy-50); }

.btn--light { background: rgba(255, 255, 255, .1); color: #fff; border-color: rgba(255, 255, 255, .26); }
.btn--light:hover { background: rgba(255, 255, 255, .18); color: #fff; border-color: rgba(255, 255, 255, .45); }

/* Koyu zemin üzerinde birincil eylem */
.btn--white { background: #fff; color: var(--navy-800); }
.btn--white:hover { background: var(--navy-50); color: var(--navy-800); }

.btn--danger { background: var(--danger); color: #fff; }
.btn--danger:hover { background: #a02b26; color: #fff; }

.btn--block { width: 100%; }
.btn--lg { padding: 16px 30px; font-size: 16px; }
.btn--sm { padding: 9px 16px; font-size: 14px; }

/* --------------------------------------------------------------- Rozetler */

.badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: .01em;
}

.badge--gold    { background: var(--gold-soft); color: #8A6A1E; }
.badge--navy    { background: var(--navy-100); color: var(--navy-800); }
.badge--accent  { background: var(--accent-soft); color: var(--accent-dark); }
.badge--success { background: var(--success-soft); color: var(--success); }
.badge--danger  { background: var(--danger-soft); color: var(--danger); }
.badge--warning { background: var(--warning-soft); color: var(--warning); }
.badge--muted   { background: #EEF1F6; color: var(--text-muted); }

/* ----------------------------------------------------------------- Kartlar */

.card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow-sm);
}

.card--flat { box-shadow: none; }
.card--pad-lg { padding: 32px; }

/* ------------------------------------------------------------------ Header */

.header {
    position: sticky;
    top: 0;
    z-index: 60;
    background: #fff;
    border-bottom: 1px solid var(--border);
}

.header__bar {
    display: flex;
    align-items: center;
    gap: 28px;
    height: var(--header-h);
}

.logo { display: flex; align-items: center; gap: 11px; flex-shrink: 0; }
.logo__mark { width: 40px; height: 40px; border-radius: 9px; flex-shrink: 0; }
.logo__text { display: flex; flex-direction: column; line-height: 1.05; }
.logo__name {
    font-size: 19px;
    font-weight: 700;
    letter-spacing: .16em;
    color: var(--navy-800);
}
.logo__name span { font-weight: 400; }
.logo__tag {
    font-size: 8.5px;
    font-weight: 500;
    letter-spacing: .17em;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-top: 3px;
}

.nav { display: flex; align-items: center; gap: 4px; margin-left: auto; }

.nav__link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 9px 13px;
    border-radius: 8px;
    color: var(--text);
    font-size: 15px;
    font-weight: 500;
    white-space: nowrap;
}
.nav__link:hover { background: var(--navy-50); color: var(--navy-800); }
.nav__link.is-active { color: var(--navy-800); background: var(--navy-50); }
.nav__link svg { width: 14px; height: 14px; opacity: .5; }

.header__phone {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    line-height: 1.2;
    padding-left: 18px;
    border-left: 1px solid var(--border);
}
.header__phone small { font-size: 11.5px; color: var(--text-muted); }
.header__phone strong { font-size: 16px; color: var(--navy-800); font-weight: 700; }

/* Mega menü */
.has-mega { position: relative; }

.mega {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%) translateY(-6px);
    width: min(940px, calc(100vw - 40px));
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 24px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px 24px;
    opacity: 0;
    visibility: hidden;
    transition: opacity .16s ease, transform .16s ease, visibility .16s;
}

.has-mega:hover .mega,
.has-mega:focus-within .mega {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.mega__col-title {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .09em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin: 6px 0 8px;
    padding-left: 10px;
}

.mega__link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    border-radius: 8px;
    color: var(--text);
    font-size: 14.5px;
}
.mega__link:hover { background: var(--navy-50); color: var(--navy-800); }
.mega__link .icon { width: 18px; height: 18px; color: var(--navy-600); flex-shrink: 0; }

.mega__footer {
    grid-column: 1 / -1;
    margin-top: 8px;
    padding-top: 14px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

/* Mobil menü */
.burger {
    display: none;
    background: none;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 9px;
    cursor: pointer;
    margin-left: auto;
}
.burger svg { width: 20px; height: 20px; display: block; color: var(--navy-800); }

.mobile-nav {
    display: none;
    border-top: 1px solid var(--border);
    background: #fff;
    max-height: calc(100vh - var(--header-h));
    overflow-y: auto;
    padding: 12px 0 24px;
}
.mobile-nav.is-open { display: block; }
.mobile-nav__group { padding: 10px 0; border-bottom: 1px solid var(--border); }
.mobile-nav__group:last-child { border-bottom: 0; }
.mobile-nav__title {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .09em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 4px;
}
.mobile-nav a {
    display: block;
    padding: 9px 0;
    color: var(--text);
    font-size: 15px;
}

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

.hero {
    position: relative;
    overflow: hidden;
    color: #fff;
    /* Alt boşluk, teklif bandının taşması için pay bırakır */
    padding: 62px 0 92px;
    background:
        radial-gradient(760px 420px at 78% 8%, rgba(30, 99, 200, .32), transparent 68%),
        linear-gradient(158deg, var(--navy-800) 0%, var(--navy-900) 58%, var(--navy-950) 100%);
}

/* Zeminde markanın kendisi: büyük ve çok soluk DR işareti.
   Önceki çapraz çizgi dokusunun yerini aldı — desen yerine kabartma etkisi. */
.hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -170px;
    width: 620px;
    height: 620px;
    transform: translateY(-50%);
    background: url('../img/logo-white.png') no-repeat center / contain;
    opacity: .07;
    pointer-events: none;
}

/* Alt kenarda altın hairline */
.hero::after {
    content: '';
    position: absolute;
    inset: auto 0 0 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(200, 162, 74, .55) 30%, rgba(200, 162, 74, .55) 70%, transparent);
}

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

.hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 412px;
    /* Satır boşluğu 0: rakam şeridinin mesafesini yalnızca kendi margin'i belirlesin */
    column-gap: 60px;
    row-gap: 0;
    /* Dikey ortalama: metin kolonu ile form kartı eşit üst/alt boşlukla dengelenir */
    align-items: center;
}

.hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 13px 6px 9px;
    border: 1px solid rgba(200, 162, 74, .38);
    border-radius: 999px;
    background: rgba(200, 162, 74, .09);
    color: var(--gold);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 22px;
    white-space: nowrap;
}
.hero__eyebrow svg.icon { width: 15px; height: 15px; }

.hero h1 {
    color: #fff;
    font-size: 44px;
    line-height: 1.12;
    letter-spacing: -.015em;
    margin-bottom: 20px;
    max-width: 15ch;
}

/* Başlık altındaki altın imza çizgisi */
.hero h1::after {
    content: '';
    display: block;
    width: 62px;
    height: 3px;
    margin-top: 20px;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--gold), rgba(200, 162, 74, 0));
}

.hero__sub {
    font-size: 17px;
    line-height: 1.65;
    color: #AFBDD4;
    max-width: 52ch;
    margin-bottom: 26px;
}

.hero__bullets { list-style: none; padding: 0; margin: 0 0 30px; display: grid; gap: 12px; }
.hero__bullets li {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    color: #CBD6E7;
    font-size: 14.5px;
    line-height: 1.55;
    margin: 0;
}
.hero__bullets svg { width: 18px; height: 18px; color: var(--gold); flex: 0 0 auto; margin-top: 2px; }

.hero__actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* Hero altındaki tam genişlik rakam şeridi */
.hero__stats {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: 44px;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, .13);
}
.hero__stat { padding-left: 22px; border-left: 1px solid rgba(255, 255, 255, .1); }
.hero__stat:first-child { padding-left: 0; border-left: 0; }
.hero__stat strong {
    display: block;
    font-size: 30px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -.02em;
    line-height: 1.1;
}
.hero__stat span {
    display: block;
    margin-top: 5px;
    font-size: 12px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #7E8FAC;
}

.hero__breadcrumb { margin-bottom: 20px; font-size: 13px; color: #7E8FAC; }
.hero__breadcrumb a { color: #AFBDD4; }
.hero__breadcrumb a:hover { color: #fff; }
.hero__breadcrumb span { margin: 0 8px; opacity: .45; }

/* Ürün sayfası için sıkı hero varyantı */
.hero--product { padding: 40px 0 90px; }
.hero--product .hero__grid { gap: 52px; align-items: center; }
.hero--product h1 { font-size: 36px; max-width: 18ch; }

.hero__medallion {
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    border-radius: 15px;
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .14);
    color: var(--gold);
    margin-bottom: 18px;
}
.hero__medallion svg.icon { width: 27px; height: 27px; }

/* Hero'nun sağ kolonu */
.hero__visual { display: flex; justify-content: center; }

/* Ürün hero'sundaki sade amblem */
.illus--emblem { width: 100%; max-width: 320px; }

/* Ana sayfada hero'nun sağına oturan teklif kartı */
.hero__form {
    width: 100%;
    background: var(--card);
    border-radius: var(--radius-lg);
    padding: 26px;
    /* Koyu zeminde kartın yüzmesi için hero'nun kendi gölgesinden daha derin */
    box-shadow: 0 24px 60px rgba(7, 14, 30, .45);
}

.hero__form-head { margin-bottom: 18px; }

.hero__form-badge {
    display: inline-block;
    margin-bottom: 9px;
    padding: 4px 10px;
    border-radius: 999px;
    background: var(--success-soft);
    color: var(--success);
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: .04em;
}

.hero__form-title {
    display: block;
    color: var(--text);
    font-size: 20px;
    font-weight: 600;
    letter-spacing: -.02em;
    line-height: 1.3;
}

.hero__form-sub {
    display: block;
    margin-top: 5px;
    color: var(--text-muted);
    font-size: 13.5px;
    line-height: 1.5;
}

.hero__form .field { margin-bottom: 13px; }
.hero__form .btn { margin-top: 4px; }

.hero__form-note {
    display: flex;
    align-items: flex-start;
    gap: 7px;
    margin: 16px 0 0;
    padding-top: 15px;
    border-top: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 12px;
    line-height: 1.45;
}
.hero__form-note svg.icon { width: 14px; height: 14px; flex: 0 0 auto; margin-top: 2px; }

/* ------------------------------------------------ Yatay teklif bandı */

.quote-band { position: relative; z-index: 5; margin-top: -52px; }

.quote-band__card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: 0 18px 44px rgba(11, 23, 48, .16);
    padding: 22px 26px;
    display: grid;
    grid-template-columns: 278px minmax(0, 1fr);
    gap: 26px;
    align-items: end;
}

.quote-band__intro { display: flex; gap: 13px; align-items: center; padding-bottom: 4px; }
.quote-band__icon {
    width: 44px;
    height: 44px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: var(--navy-800);
    color: var(--gold);
}
.quote-band__icon svg.icon { width: 22px; height: 22px; }
.quote-band__title { display: block; color: var(--text); font-size: 16px; line-height: 1.3; }
.quote-band__sub { display: block; font-size: 13px; color: var(--text-muted); margin-top: 3px; }

.quote-band__form {
    display: grid;
    grid-template-columns: 1.15fr 1fr 1fr auto;
    gap: 14px;
    align-items: end;
}
.quote-band__form--short { grid-template-columns: 1fr 1fr auto; }
.quote-band__form .field { margin: 0; }
.quote-band__form .btn { height: 46px; white-space: nowrap; }

.quote-band__note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 14px 0 0;
    font-size: 12.5px;
    color: var(--text-muted);
}
.quote-band__note svg.icon { width: 15px; height: 15px; color: var(--success); }

/* -------------------------------------------------- Hero teklif kutusu */

.quote-box {
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: 0 24px 60px rgba(4, 12, 28, .38);
    color: var(--text-body);
    overflow: hidden;
}

.quote-box__head {
    background: linear-gradient(135deg, var(--navy-800), var(--navy-700));
    padding: 18px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.quote-box__head-icon {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    background: rgba(255, 255, 255, .12);
    color: var(--gold);
}
.quote-box__head-icon svg.icon { width: 19px; height: 19px; }
.quote-box__title { font-size: 16.5px; margin: 0; color: #fff; line-height: 1.25; }
.quote-box__sub { font-size: 12.5px; color: #A9B9D2; margin: 2px 0 0; }

.quote-box__body { padding: 22px 24px 24px; }

.quote-box__foot {
    margin-top: 16px;
    padding-top: 15px;
    border-top: 1px solid var(--border);
    font-size: 12px;
    line-height: 1.5;
    color: var(--text-muted);
    display: flex;
    align-items: flex-start;
    gap: 8px;
}
.quote-box__foot svg { width: 14px; height: 14px; flex: 0 0 auto; margin-top: 2px; color: var(--success); }

/* -------------------------------------------- Açık sayfa başlığı (iç sayfalar) */

.page-head {
    background: #fff;
    border-bottom: 1px solid var(--border);
    padding: 34px 0 32px;
    position: relative;
}
.page-head::before {
    content: '';
    position: absolute;
    inset: 0 0 auto 0;
    height: 3px;
    background: linear-gradient(90deg, var(--navy-800) 0%, var(--accent) 45%, var(--gold) 100%);
}

.page-head__crumb { font-size: 13px; color: var(--text-muted); margin-bottom: 14px; }
.page-head__crumb a { color: var(--text-body); }
.page-head__crumb span { margin: 0 8px; opacity: .5; }

.page-head__label {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 10px;
}

.page-head h1 { font-size: 34px; letter-spacing: -.022em; margin-bottom: 12px; max-width: 20ch; }
.page-head__lead { font-size: 16.5px; color: var(--text-body); max-width: 62ch; margin: 0; }
.page-head__grid { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 32px; align-items: end; }

/* Bölüm üstü küçük etiket — sayfalar boyunca tekrarlayan marka motifi */
.section-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .13em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 12px;
}
.section-label::before {
    content: '';
    width: 22px;
    height: 2px;
    border-radius: 1px;
    background: var(--gold);
}
.section--dark .section-label { color: var(--gold); }

/* ------------------------------------------------------------------ Formlar */

.field { margin-bottom: 15px; }
.field:last-child { margin-bottom: 0; }

.label {
    display: block;
    margin-bottom: 6px;
    font-size: 13.5px;
    font-weight: 600;
    color: var(--text);
}
.label .req { color: var(--danger); margin-left: 2px; }

.input, .select, .textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-sm);
    background: #fff;
    font: inherit;
    font-size: 15px;
    color: var(--text);
    transition: border-color .15s ease, box-shadow .15s ease;
}

.input::placeholder, .textarea::placeholder { color: #A9B2C2; }

.input:focus, .select:focus, .textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(30, 99, 200, .13);
}

.select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23667' stroke-width='2.2' stroke-linecap='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 13px center;
    background-size: 17px;
    padding-right: 40px;
}

.textarea { min-height: 120px; resize: vertical; }

.field__help { font-size: 12.5px; color: var(--text-muted); margin-top: 5px; }
.field__error { font-size: 12.5px; color: var(--danger); margin-top: 5px; }
.field.has-error .input, .field.has-error .select, .field.has-error .textarea { border-color: var(--danger); }

.check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13.5px;
    line-height: 1.55;
    cursor: pointer;
}
.check input { margin-top: 3px; width: 16px; height: 16px; accent-color: var(--navy-800); flex-shrink: 0; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }

/* Bildirimler */
.alert {
    padding: 14px 18px;
    border-radius: var(--radius-sm);
    border: 1px solid;
    margin-bottom: 20px;
    font-size: 14.5px;
}
.alert--success { background: var(--success-soft); border-color: #B7E0CE; color: #0B5B40; }
.alert--error   { background: var(--danger-soft);  border-color: #F0C4C2; color: #8A2621; }
.alert--info    { background: var(--accent-soft);  border-color: #C4DAF8; color: var(--accent-dark); }
.alert--warning { background: var(--warning-soft); border-color: #EFD5A9; color: #8A5810; }

/* ----------------------------------------------------------- Ürün ızgarası */

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(178px, 1fr));
    gap: 14px;
}

.product-tile {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 20px 18px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    color: var(--text);
    transition: border-color .16s ease, box-shadow .16s ease, transform .16s ease;
}
.product-tile:hover {
    border-color: var(--navy-600);
    box-shadow: var(--shadow);
    transform: translateY(-2px);
    color: var(--navy-800);
}

.product-tile__icon {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 11px;
    background: var(--navy-50);
    color: var(--navy-700);
}
.product-tile__icon svg { width: 23px; height: 23px; }
.product-tile:hover .product-tile__icon { background: var(--navy-800); color: #fff; }

.product-tile__name { font-weight: 600; font-size: 15px; line-height: 1.35; }
.product-tile__badge { position: absolute; top: 12px; right: 12px; }

/* --------------------------------------------------------- Değer önerileri */

.value-card { display: flex; flex-direction: column; gap: 12px; }
.value-card__icon {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: var(--navy-800);
    color: #fff;
}
.value-card__icon svg { width: 23px; height: 23px; }
.value-card h3 { margin: 0; font-size: 18px; }
.value-card p { font-size: 14.5px; margin: 0; }

/* ------------------------------------------------------------ Adım kartları */

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; counter-reset: step; }

.step {
    position: relative;
    padding: 26px 24px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
}
.step__num {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--navy-800);
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 14px;
}
.step h3 { font-size: 17px; margin-bottom: 6px; }
.step p { font-size: 14.5px; margin: 0; }

/* ------------------------------------------------------- Fiyat tablo bloğu */

.tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 20px; }

.tab {
    flex: 1 1 200px;
    padding: 15px 18px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font: inherit;
    font-size: 14.5px;
    font-weight: 600;
    line-height: 1.35;
    color: var(--text-body);
    text-align: left;
    white-space: pre-line;
    cursor: pointer;
    transition: all .15s ease;
}
.tab:hover { border-color: var(--navy-600); color: var(--navy-800); }
.tab.is-active {
    background: var(--navy-800);
    border-color: var(--navy-800);
    color: #fff;
}

.tab-panel { display: none; }
.tab-panel.is-active { display: block; }

/* Ürün kategorisi sekmeleri — içeriğe göre daralan, ikonlu pill biçimi */

.tabs--pill { gap: 10px; margin-bottom: 22px; }

.tab--pill {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 11px 15px;
    border-radius: 999px;
    text-align: center;
    white-space: nowrap;
}
.tab--pill svg { width: 18px; height: 18px; flex-shrink: 0; }

.tab__count {
    display: inline-grid;
    place-items: center;
    min-width: 21px;
    height: 21px;
    padding: 0 6px;
    border-radius: 999px;
    background: var(--navy-50);
    color: var(--navy-700);
    font-size: 12px;
    font-weight: 700;
}
.tab--pill.is-active .tab__count { background: rgba(255, 255, 255, .18); color: #fff; }

/* Dar ekranda kısa etiket ("Araç"), geniş ekranda tam ("Araç Sigortaları") */
.tab__short { display: none; }

.table-wrap {
    overflow-x: auto;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: #fff;
    -webkit-overflow-scrolling: touch;
}

.data-table { width: 100%; border-collapse: collapse; font-size: 14.5px; min-width: 560px; }

.data-table thead th {
    background: var(--navy-800);
    color: #fff;
    font-weight: 600;
    font-size: 13.5px;
    text-align: left;
    padding: 13px 16px;
    white-space: nowrap;
    border-right: 1px solid rgba(255, 255, 255, .1);
}
.data-table thead th:last-child { border-right: 0; }

.data-table tbody td {
    padding: 12px 16px;
    border-bottom: 1px solid var(--border);
    border-right: 1px solid var(--border);
    color: var(--text-body);
}
.data-table tbody td:first-child { font-weight: 600; color: var(--text); }
.data-table tbody td:last-child { border-right: 0; }
.data-table tbody tr:last-child td { border-bottom: 0; }
.data-table tbody tr:nth-child(even) { background: var(--card-alt); }
.data-table tbody tr:hover { background: var(--navy-50); }

.table-note {
    margin-top: 14px;
    padding: 14px 16px;
    background: var(--navy-50);
    border-left: 3px solid var(--navy-600);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-size: 13px;
    color: var(--text-body);
}

.table-title { font-size: 17px; margin-bottom: 14px; }

/* ------------------------------------------------------------- Akordiyon */

.accordion { border: 1px solid var(--border); border-radius: var(--radius); background: #fff; overflow: hidden; }

.accordion__item { border-bottom: 1px solid var(--border); }
.accordion__item:last-child { border-bottom: 0; }

.accordion__head {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 22px;
    background: none;
    border: 0;
    font: inherit;
    font-size: 16px;
    font-weight: 600;
    color: var(--text);
    text-align: left;
    cursor: pointer;
    transition: background .15s ease;
}
.accordion__head:hover { background: var(--navy-50); }

.accordion__icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    color: var(--navy-600);
    transition: transform .2s ease;
}
.accordion__item.is-open .accordion__icon { transform: rotate(180deg); }

.accordion__body {
    display: none;
    padding: 0 22px 20px;
    font-size: 15px;
    color: var(--text-body);
}
.accordion__item.is-open .accordion__body { display: block; }

/* --------------------------------------------------------- Teminat kartları */

.coverage-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 16px; }

.coverage {
    display: flex;
    gap: 14px;
    padding: 20px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
}
.coverage__tick {
    width: 26px;
    height: 26px;
    flex-shrink: 0;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--success-soft);
    color: var(--success);
}
.coverage__tick svg { width: 15px; height: 15px; }
/* Kart başlığı, bulunduğu bölümün hiyerarşisine göre h3 ya da h4 olabilir. */
.coverage h3, .coverage h4 { margin: 0 0 5px; font-size: 15.5px; }
.coverage p { margin: 0; font-size: 14px; }

/* ------------------------------------------------------------ İllüstrasyon */

.illus { display: block; width: 100%; height: auto; }

.illus-plate {
    background: linear-gradient(160deg, #fff, var(--navy-50));
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 18px;
    box-shadow: var(--shadow-sm);
}

/* Görsel + metin ikili bölümü */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 52px;
    align-items: center;
}
.split--media-right .split__media { order: 2; }
.split__media { max-width: 460px; width: 100%; }

/* Ürün listesinde kategori başlığı yanındaki küçük görsel */
.cat-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 190px;
    gap: 28px;
    align-items: center;
    margin-bottom: 18px;
}
.cat-row .illus-plate { padding: 10px; }

/* ---------------------------------------------------------------- Şirketler */

.company-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 12px;
}

.company-chip {
    display: grid;
    place-items: center;
    text-align: center;
    padding: 16px 12px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 13.5px;
    font-weight: 600;
    color: var(--navy-800);
    min-height: 72px;
    transition: border-color .16s ease, box-shadow .16s ease;
}
.company-chip:hover { border-color: var(--border-strong); box-shadow: var(--shadow-sm); }

.company-chip img {
    max-width: 100%;
    max-height: 40px;
    width: auto;
    object-fit: contain;
}

/* ---------------------------------------------------------------- Yorumlar */

.testimonial { display: flex; flex-direction: column; gap: 14px; height: 100%; }
.testimonial__stars { display: flex; gap: 2px; color: var(--gold); }
.testimonial__stars svg { width: 16px; height: 16px; }
.testimonial p { font-size: 14.5px; margin: 0; flex: 1; }
.testimonial__author { display: flex; align-items: center; gap: 10px; }
.testimonial__avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--navy-100);
    color: var(--navy-800);
    display: grid;
    place-items: center;
    font-weight: 700;
    font-size: 14px;
}
.testimonial__name { font-weight: 600; color: var(--text); font-size: 14.5px; line-height: 1.2; }
.testimonial__city { font-size: 12.5px; color: var(--text-muted); }

/* -------------------------------------------------------------- Blog kartı */

.post-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    height: 100%;
    overflow: hidden;
    /* Kart bir bağlantı; içindeki gövde metni link rengini devralmasın */
    color: var(--text-body);
    transition: border-color .16s ease, box-shadow .16s ease;
}
.post-card:hover { border-color: var(--navy-600); box-shadow: var(--shadow); color: var(--text-body); }
.post-card:hover h3 { color: var(--navy-800); }
.post-card:hover .post-card__cover::after { transform: translateX(4px); }

.post-card__cover {
    position: relative;
    height: 92px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--navy-800), var(--navy-600));
    color: rgba(255, 255, 255, .92);
    overflow: hidden;
}
.post-card__cover::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(-45deg, rgba(255, 255, 255, .06) 0 1px, transparent 1px 8px);
}
.post-card__cover svg.icon { width: 34px; height: 34px; position: relative; }

.post-card__body { display: flex; flex-direction: column; gap: 10px; padding: 20px 22px 22px; flex: 1; }
.post-card h3 { font-size: 16.5px; margin: 0; color: var(--text); transition: color .16s ease; }
.post-card p { font-size: 14px; margin: 0; flex: 1; color: var(--text-body); }
.post-card__meta { display: flex; align-items: center; gap: 8px; font-size: 12.5px; color: var(--text-muted); }

.post-body { font-size: 16.5px; line-height: 1.75; }
.post-body p { margin-bottom: 1.15em; }

/* --------------------------------------------------------------- Prose/CTA */

.prose h3 { margin-top: 28px; font-size: 19px; }
.prose h3:first-child { margin-top: 0; }
.prose p { font-size: 15.5px; line-height: 1.72; }

.cta-band {
    background: linear-gradient(135deg, var(--navy-800), var(--navy-600));
    border-radius: var(--radius-lg);
    padding: 40px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    flex-wrap: wrap;
}
.cta-band h2 { color: #fff; margin-bottom: 6px; }
.cta-band p { color: #C4D0E4; margin: 0; }

/* ------------------------------------------------------------------- Adımlar */

.stepper { display: flex; align-items: center; gap: 4px; margin-bottom: 32px; flex-wrap: wrap; }

.stepper__item { display: flex; align-items: center; gap: 9px; padding: 0 6px; }
.stepper__dot {
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #fff;
    border: 1.5px solid var(--border-strong);
    color: var(--text-muted);
    font-size: 13.5px;
    font-weight: 700;
    flex-shrink: 0;
}
.stepper__dot svg.icon { width: 15px; height: 15px; }
.stepper__label { font-size: 13.5px; color: var(--text-muted); font-weight: 500; }
.stepper__line { flex: 1; min-width: 16px; height: 1.5px; background: var(--border-strong); }

.stepper__item.is-active .stepper__dot { background: var(--navy-800); border-color: var(--navy-800); color: #fff; }
.stepper__item.is-active .stepper__label { color: var(--navy-800); font-weight: 600; }
.stepper__item.is-done .stepper__dot { background: var(--success); border-color: var(--success); color: #fff; }
.stepper__item.is-done .stepper__label { color: var(--text); }

/* Ürün seçim kartları (teklif adım 1) */
.pick-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 12px; }

.pick {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 16px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text);
    font-weight: 500;
    font-size: 14.5px;
    transition: all .15s ease;
}
.pick:hover { border-color: var(--navy-800); background: var(--navy-50); color: var(--navy-800); }
.pick .icon { width: 20px; height: 20px; color: var(--navy-600); flex-shrink: 0; }

/* Özet listesi */
.summary-list { display: grid; gap: 0; }
.summary-list__row {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 16px;
    padding: 11px 0;
    border-bottom: 1px solid var(--border);
    font-size: 14.5px;
}
.summary-list__row:last-child { border-bottom: 0; }
.summary-list__row dt { color: var(--text-muted); margin: 0; }
.summary-list__row dd { margin: 0; color: var(--text); font-weight: 500; }

/* Başarı ekranı */
.success-panel { text-align: center; padding: 48px 32px; }
.success-panel__icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 24px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--success-soft);
    color: var(--success);
}
.success-panel__icon svg { width: 36px; height: 36px; }
.ref-code {
    display: inline-block;
    margin: 8px 0 24px;
    padding: 12px 26px;
    background: var(--navy-50);
    border: 1px dashed var(--navy-600);
    border-radius: var(--radius-sm);
    font-size: 22px;
    font-weight: 700;
    letter-spacing: .08em;
    color: var(--navy-800);
}

/* -------------------------------------------------------------------- Footer */

.footer { background: var(--navy-900); color: #93A3BE; padding: 52px 0 0; margin-top: 64px; }
.footer a { color: #B9C6DC; font-size: 14px; }
.footer a:hover { color: #fff; }

.footer__top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 36px;
    padding-bottom: 40px;
}

.footer__brand .logo__name { color: #fff; }
.footer__brand .logo__tag { color: #7A8AA6; }
.footer__about { font-size: 14px; margin: 18px 0; max-width: 320px; line-height: 1.65; }

.footer__title {
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .07em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.footer__list { list-style: none; padding: 0; margin: 0; }
.footer__list li { margin-bottom: 9px; }

.footer__contact { display: flex; gap: 10px; font-size: 14px; margin-bottom: 12px; align-items: flex-start; }
.footer__contact svg { width: 17px; height: 17px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, .1);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    font-size: 13px;
}
.footer__legal { display: flex; gap: 18px; flex-wrap: wrap; }

.footer__disclaimer {
    border-top: 1px solid rgba(255, 255, 255, .1);
    padding: 18px 0 24px;
    font-size: 12px;
    line-height: 1.6;
    color: #6E7E99;
}

/* WhatsApp yüzen düğme */
.wa-float {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 50;
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    box-shadow: 0 6px 20px rgba(37, 211, 102, .4);
    transition: transform .15s ease;
}
.wa-float:hover { transform: scale(1.06); color: #fff; }
.wa-float svg { width: 28px; height: 28px; }

/* ----------------------------------------------------------------- Duyarlı */

@media (max-width: 1080px) {
    .hero__grid { grid-template-columns: 1fr; row-gap: 40px; }
    .quote-box { max-width: 480px; }
    .hero__stats { margin-top: 40px; }
    .illus--emblem { max-width: 260px; margin: 0 auto; }
    .hero__form { max-width: 480px; margin: 0 auto; }
    /* Tek kolonda logo kabartması formun arkasına denk geliyor; küçültülür. */
    .hero::before { width: 380px; height: 380px; left: -150px; opacity: .05; }
    .footer__top { grid-template-columns: 1fr 1fr; }
    .page-head__grid { grid-template-columns: 1fr; align-items: start; gap: 20px; }
    .quote-band__card { grid-template-columns: 1fr; gap: 20px; align-items: start; }
    .quote-band__intro { padding-bottom: 0; }
}

@media (max-width: 820px) {
    .quote-band__form,
    .quote-band__form--short { grid-template-columns: 1fr 1fr; }
    .quote-band__form .btn { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
    .nav, .header__phone { display: none; }
    .burger { display: block; }
    .grid-3, .grid-4, .steps { grid-template-columns: repeat(2, 1fr); }
    .split { grid-template-columns: 1fr; gap: 32px; }
    .split--media-right .split__media { order: 0; }
    .split__media { max-width: 420px; margin: 0 auto; }
    .cat-row { grid-template-columns: 1fr; gap: 16px; }
    .cat-row .illus-plate { display: none; }
    .hero h1, .hero--product h1 { font-size: 33px; max-width: none; }
    .page-head h1 { font-size: 28px; max-width: none; }
    h1 { font-size: 27px; }
    h2 { font-size: 22px; }
}

@media (max-width: 640px) {
    .hero::before { display: none; }
    .hero__form { padding: 20px; }
    .section { padding: 40px 0; }
    .grid-2, .grid-3, .grid-4, .steps, .form-row { grid-template-columns: 1fr; }
    .quote-band__form, .quote-band__form--short { grid-template-columns: 1fr; }
    .quote-band__card { padding: 20px; }
    .quote-band { margin-top: -40px; }
    .hero { padding: 40px 0 76px; }
    .hero--product { padding: 30px 0 76px; }
    .hero h1, .hero--product h1 { font-size: 27px; }
    .hero h1::after { margin-top: 16px; }
    .hero__sub { font-size: 15.5px; }
    .hero__stats { grid-template-columns: repeat(2, 1fr); gap: 22px 0; margin-top: 34px; }
    .hero__stat { padding-left: 18px; }
    .hero__stat:nth-child(odd) { padding-left: 0; border-left: 0; }
    .hero__stat strong { font-size: 24px; }
    .page-head { padding: 26px 0 24px; }
    .page-head h1 { font-size: 25px; }
    .page-head__lead { font-size: 15.5px; }
    .footer__top { grid-template-columns: 1fr; gap: 28px; }
    .cta-band { padding: 28px; }
    .summary-list__row { grid-template-columns: 1fr; gap: 2px; }
    .tab { flex: 1 1 100%; }
    /* Kategori pill'leri tam genişliğe yayılmasın; yan yana kaydırılsın */
    .tabs--pill {
        flex-wrap: nowrap;
        overflow-x: auto;
        scrollbar-width: none;
        margin: 0 -16px 18px;
        padding: 0 16px;
    }
    .tabs--pill::-webkit-scrollbar { display: none; }
    .tab--pill { flex: 0 0 auto; gap: 7px; padding: 10px 12px; font-size: 14px; }
    .tab--pill svg { width: 17px; height: 17px; }
    .card { padding: 20px; }
    .quote-box__body { padding: 20px; }
    .product-grid { grid-template-columns: repeat(2, 1fr); }
    .ref-code { font-size: 18px; }
    /* Teklif düğmesi mobil menüde zaten var; başlıkta yer kaplamasın */
    .nav-cta { display: none; }

    /* Yan sütunlu bölümler alt alta insin */
    .grid--sidebar { grid-template-columns: 1fr; gap: 24px; }

    /* iOS Safari, yazısı 16px'in altında olan bir alana odaklanınca sayfayı
       kendiliğinden büyütür ve bir daha küçültmez. Tüm metin alanları 16px. */
    .input, .select, .textarea,
    input[type="text"], input[type="email"], input[type="tel"],
    input[type="password"], input[type="number"], input[type="search"],
    input[type="date"], input[type="url"], select, textarea {
        font-size: 16px;
    }

    /* Sekme etiketleri kısalsın ki birden fazlası ekrana sığsın */
    .tab__full { display: none; }
    .tab__short { display: inline; }

    /* Parmakla basılabilir hedefler: liste bağlantıları çok sıkışıktı */
    .footer__list li { margin-bottom: 2px; }
    .footer__list a { display: block; padding: 8px 0; }
    .footer__legal a { padding: 6px 0; }
    .mobile-nav__group a { padding: 11px 0; }
}

/* -------------------------------------------------------------------- Yazdır */

@media print {
    .header, .footer, .wa-float, .btn { display: none !important; }
    body { background: #fff; }
}

/* ------------------------------------------------ Hızlı teklif sayfası */

/* Ürün seçimi kart olarak: dokunmatik ekranda açılır listeden hızlı ve az hatalı. */
.pick { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.pick__item { position: relative; cursor: pointer; }

/* Radyo düğmesi görsel olarak gizlenir ama klavye ve ekran okuyucu için durur. */
.pick__item input {
    position: absolute;
    width: 1px; height: 1px;
    opacity: 0;
    pointer-events: none;
}

.pick__box {
    display: block;
    padding: 14px 16px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    background: var(--card);
    transition: border-color .15s, background .15s;
}

.pick__box strong { display: block; font-size: 15px; color: var(--text); }
.pick__hint { display: block; margin-top: 3px; font-size: 12.5px; color: var(--text-muted); }

.pick__item input:checked + .pick__box {
    border-color: var(--accent);
    background: var(--accent-soft);
}

/* Klavyeyle gezinirken seçili kart görünmeli. */
.pick__item input:focus-visible + .pick__box {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
}

.quick-note {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    margin-top: 18px;
    padding: 13px 15px;
    border-radius: var(--radius);
    background: var(--success-soft);
    color: var(--success);
    font-size: 13.5px;
    line-height: 1.5;
}

.quick-note svg.icon { width: 17px; height: 17px; flex: 0 0 auto; margin-top: 1px; }

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