/* =====================================================================
   SITE 2026 — genel site kabuğu (st-*)
   Header / hero / bölümler / filtreler / footer.
   fleet-2026.css (araç kartları) ile aynı tasarım dilini paylaşır.
   Bağımsız isim alanı: eski .hr-* ve tema kuralları bu tasarıma karışmaz.
   NOT: header.php içinde tema inline <style>'ından SONRA yüklenir.
   ===================================================================== */

:root {
    --st-ink: #0b0d11;
    --st-ink-2: #4b5361;
    --st-ink-3: #838b99;
    --st-line: #e6e8ee;
    --st-line-2: #f0f2f6;
    --st-surface: #ffffff;
    --st-canvas: #f5f6f8;
    --st-tint: #f7f8fa;
    --st-accent: var(--theme-primary, #d6001c);
    --st-accent-soft: color-mix(in srgb, var(--st-accent) 10%, #fff);
    --st-wa: #25d366;
    --st-r-sm: 10px;
    --st-r: 14px;
    --st-r-lg: 20px;
    --st-shell: 1260px;
    --st-head-h: 70px;
}

/* Tema inline stilinin pembe gradyanını sıfırla — sayfa tuvali nötr olsun */

body {
    background: var(--st-surface) !important;
    color: var(--st-ink-2);
    font-family: 'Outfit', system-ui, -apple-system, 'Segoe UI', sans-serif;
}

.st-shell {
    width: 100%;
    max-width: var(--st-shell);
    margin-inline: auto;
    padding-inline: 20px;
}

/* =====================================================================
   BUTONLAR
   ===================================================================== */

.st-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 50px;
    padding: 0 22px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: -.005em;
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;
    transition: background .18s ease, color .18s ease, border-color .18s ease, transform .12s ease, box-shadow .18s ease;
}

.st-btn i {
    font-size: 18px;
}

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

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

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

.st-btn--ink {
    background: var(--st-ink);
    color: #fff;
}

.st-btn--ink:hover {
    background: var(--st-accent);
}

.st-btn--line {
    background: transparent;
    color: var(--st-ink);
    border-color: var(--st-line);
}

.st-btn--line:hover {
    border-color: var(--st-ink);
    background: var(--st-tint);
}

.st-btn--onDark {
    background: rgba(255, 255, 255, .07);
    color: #fff;
    border-color: rgba(255, 255, 255, .22);
}

.st-btn--onDark:hover {
    background: #fff;
    color: var(--st-ink);
    border-color: #fff;
}

.st-btn--wa {
    background: var(--st-wa);
    color: #06301a;
}

.st-btn--wa:hover {
    background: #1eb257;
    color: #fff;
}

.st-btn--sm {
    min-height: 42px;
    font-size: 14px;
    padding: 0 18px;
}

.st-btn--block {
    width: 100%;
}

/* =====================================================================
   HEADER
   ===================================================================== */

/* Üst şerit kaysın, yalnızca ana bar yapışsın */

.st-head {
    position: relative;
    background: var(--st-surface);
}

/* Üst ince şerit */

.st-head__strip {
    background: linear-gradient(90deg, color-mix(in srgb, var(--st-accent) 18%, var(--st-ink)), var(--st-ink) 55%);
    color: #cfd4dd;
    font-size: 12.5px;
    font-weight: 500;
}

.st-head__strip .st-shell {
    display: flex;
    /* stretch: "Hızlı Rezervasyon" şeridin tam yüksekliğini kaplasın */
    align-items: stretch;
    justify-content: space-between;
    gap: 16px;
    min-height: 38px;
}

.st-head__trust {
    display: flex;
    align-items: center;
    gap: 26px;
    min-width: 0;
    overflow: hidden;
}

.st-head__trust span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    white-space: nowrap;
}

.st-head__trust i {
    color: var(--st-accent);
    font-size: 15px;
}

.st-head__right {
    display: flex;
    align-items: center;
    gap: 18px;
    flex: 0 0 auto;
}

.st-head__quick {
    display: inline-flex;
    align-items: center;
    align-self: stretch;
    padding: 0 18px;
    background: var(--st-accent);
    color: #fff;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: .01em;
    text-decoration: none;
    white-space: nowrap;
}

.st-head__quick:hover {
    background: #fff;
    color: var(--st-ink);
}

.st-head__tel {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    letter-spacing: .01em;
}

.st-head__tel i {
    color: var(--st-accent);
}

.st-head__tel:hover {
    color: var(--st-accent);
}

/* Ana bar */

.st-head__bar {
    position: sticky;
    top: 0;
    z-index: 60;
    border-bottom: 1px solid rgba(255,255,255,.08);
    background: var(--st-ink);
}

/* ===== RADİKAL YENİDEN TASARIM: koyu, cesur üst menü =====
   Eski açık/beyaz navbar yerine koyu zemin — hero'yla kaynaşıp
   sayfanın ilk izlenimini kökten değiştiriyor. */
.st-brand__sub { color: #9aa2b1; }
.st-search__btn { background: rgba(255,255,255,.08); color: #fff; }
.st-search__btn:hover { background: var(--st-accent); color: #fff; }
.st-search[open] .st-search__btn { background: var(--st-accent); }
.st-burger { border: 1px solid rgba(255,255,255,.14); }

.st-nav {
    display: flex;
    align-items: center;
    gap: 20px;
    min-height: var(--st-head-h);
}

.st-brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    text-decoration: none;
    flex: 0 0 auto;
    min-width: 0;
}

.st-brand__badge {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    flex: 0 0 auto;
    border-radius: 12px;
    background: var(--st-ink);
    color: #fff;
    font-size: 20px;
}

.st-brand__mark {
    display: block;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -.025em;
    line-height: 1.05;
    color: #fff;
    white-space: nowrap;
}

.st-brand__mark .accent {
    color: var(--st-accent);
}

.st-brand__sub {
    display: block;
    margin-top: 1px;
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: .07em;
    text-transform: uppercase;
    color: var(--st-ink-3);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 210px;
}

.st-menu {
    display: flex;
    align-items: center;
    gap: 2px;
    margin-inline: auto;
}

.st-menu a {
    position: relative;
    padding: 10px 14px;
    border-radius: var(--st-r-sm);
    font-size: 14.5px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    white-space: nowrap;
    transition: color .16s ease, background .16s ease;
}

.st-menu a:hover {
    color: #fff;
    background: rgba(255, 255, 255, .08);
}

.st-menu a.is-active {
    color: #fff;
    font-weight: 700;
}

.st-menu a.is-active::after {
    content: "";
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 2px;
    height: 2px;
    border-radius: 2px;
    background: var(--st-accent);
}

.st-nav__actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto;
}

/* Arama: <details> ile çalışır, ayrı JS gerektirmez.
   Düğme açık kutuyu araclar.php'ye "ara" parametresiyle gönderir. */

.st-search {
    position: relative;
}

.st-search__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--st-tint);
    color: var(--st-ink);
    font-size: 19px;
    cursor: pointer;
    list-style: none;
}

.st-search__btn::-webkit-details-marker {
    display: none;
}

.st-search__btn:hover {
    background: var(--st-ink);
    color: #fff;
}

.st-search[open] .st-search__btn {
    background: var(--st-ink);
    color: #fff;
}

.st-search__panel {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    z-index: 40;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px;
    border: 1px solid var(--st-line);
    border-radius: 14px;
    background: var(--st-surface);
    box-shadow: 0 24px 48px -22px rgba(11, 13, 17, .42);
}

.st-search__panel input {
    width: 232px;
    height: 40px;
    padding: 0 12px;
    border: 1px solid var(--st-line);
    border-radius: 10px;
    background: #fff;
    font: inherit;
    font-size: 14px;
    color: var(--st-ink);
}

.st-search__panel input:focus {
    outline: 2px solid var(--st-accent);
    outline-offset: -1px;
}

.st-search__panel button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 10px;
    background: var(--st-accent);
    color: #fff;
    font-size: 18px;
    cursor: pointer;
}

.st-search__panel button:hover {
    filter: brightness(.94);
}

/* Mockup'ta menü düğmesi masaüstünde de görünür */

.st-burger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 12px;
    background: var(--st-ink);
    color: #fff;
    font-size: 22px;
    cursor: pointer;
}

.st-burger:hover {
    background: var(--st-accent);
}

/* Mobil menü */

.st-mob {
    border-bottom: 1px solid var(--st-line);
    background: var(--st-surface);
    box-shadow: 0 20px 40px -24px rgba(11, 13, 17, .35);
}

.st-mob.hidden {
    display: none;
}

.st-mob__inner {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 12px 0 18px;
}

.st-mob__inner a.st-mlink {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 12px;
    border-radius: var(--st-r-sm);
    font-size: 15.5px;
    font-weight: 600;
    color: var(--st-ink-2);
    text-decoration: none;
}

.st-mob__inner a.st-mlink i {
    font-size: 19px;
    color: var(--st-ink-3);
    width: 22px;
}

.st-mob__inner a.st-mlink.is-active {
    background: var(--st-tint);
    color: var(--st-ink);
    font-weight: 700;
}

.st-mob__inner a.st-mlink.is-active i {
    color: var(--st-accent);
}

.st-mob__cta {
    margin-top: 10px;
}

/* =====================================================================
   HERO (koyu)
   ===================================================================== */

.st-hero {
    position: relative;
    overflow: hidden;
    background: var(--st-ink);
    color: #fff;
    padding: 76px 0 96px;
}

.st-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, .07) 1px, transparent 1px);
    background-size: 26px 26px;
    opacity: .7;
    pointer-events: none;
}

.st-hero::after {
    content: "";
    position: absolute;
    top: -220px;
    right: -160px;
    width: 620px;
    height: 620px;
    border-radius: 50%;
    /* color-mix desteklenmeyen tarayıcılar için yedek */
    background: radial-gradient(circle, var(--st-accent), transparent 68%);
    background: radial-gradient(circle, color-mix(in srgb, var(--st-accent) 55%, transparent), transparent 68%);
    filter: blur(30px);
    opacity: .5;
    pointer-events: none;
}

.st-hero__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
    gap: 56px;
    align-items: center;
}

/* Mockup: çerçevesiz, aralıklı düz yazı */

.st-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 9px 18px 9px 14px;
    border-radius: 999px;
    background: linear-gradient(120deg, var(--st-accent), color-mix(in srgb, var(--st-accent) 60%, #ff8a3d));
    box-shadow: 0 12px 28px -10px color-mix(in srgb, var(--st-accent) 65%, transparent);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #fff;
}

.st-eyebrow i {
    color: #fff;
    font-size: 16px;
}

.st-h1 {
    margin: 20px 0 0;
    font-size: clamp(44px, 6.6vw, 84px);
    font-weight: 800;
    line-height: .98;
    letter-spacing: -.04em;
    color: #fff;
}

.st-h1 .accent {
    background: linear-gradient(90deg, var(--st-accent), #ff8a3d, var(--st-accent));
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: var(--st-accent);
    animation: stAccentFlow 3.5s linear infinite;
}
@keyframes stAccentFlow {
    to { background-position: 200% center; }
}

.st-lead {
    margin: 20px 0 0;
    max-width: 56ch;
    font-size: 16.5px;
    line-height: 1.65;
    color: #b3bac6;
}

.st-lead strong {
    color: #fff;
    font-weight: 600;
}

.st-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

/* Tek görselli banner. Görsel index.php'den --st-hero-img ile gelir.
   Çift sınıf kullanılıyor ki duyarlı bloktaki .st-hero kuralları ezmesin. */

.st-hero.st-hero--shot {
    display: flex;
    flex-direction: column;
    min-height: clamp(520px, 43vw, 640px);
    padding: 0;
    padding-bottom: 70px;
    background-color: #07080b;
    background-image: linear-gradient(90deg, rgba(7, 8, 11, .94) 0%, rgba(7, 8, 11, .86) 30%, rgba(7, 8, 11, .45) 58%, rgba(7, 8, 11, .10) 100%), linear-gradient(180deg, rgba(7, 8, 11, .55) 0%, rgba(7, 8, 11, 0) 30%, rgba(7, 8, 11, 0) 58%, rgba(7, 8, 11, .82) 100%), var(--st-hero-img, none);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center, center, right center;
    /* Radikal imza: alt kenar düz çizgi yerine diyagonal kesim — sayfanın
       geri kalanından bariz, bilinçli bir şekilde farklı ayrılıyor. */
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 calc(100% - 56px));
}

/* Fotoğrafın üstünde nokta deseni ve kırmızı ışık halesi istemiyoruz */

.st-hero--shot::before,
.st-hero--shot::after {
    display: none;
}

.st-hero--shot .st-hero__inner {
    display: flex;
    align-items: center;
    flex: 1 1 auto;
    padding-block: 58px 22px;
}

.st-hero__copy {
    max-width: 620px;
}

/* Banner'ın alt kenarındaki güven şeridi.
   Alt boşluk, üzerine taşan beyaz özellik kartına yer bırakıyor. */

.st-hero__badges {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 12px 30px;
    padding-bottom: 78px;
}

.st-hero__badges span {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.16);
    backdrop-filter: blur(6px);
    font-size: 13.5px;
    font-weight: 700;
    color: #fff;
    transition: background .2s ease, transform .2s ease;
}
.st-hero__badges span:hover {
    background: color-mix(in srgb, var(--st-accent) 30%, rgba(255,255,255,.08));
    transform: translateY(-2px);
}

.st-hero__badges i {
    display: inline-grid;
    place-items: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--st-accent);
    color: #fff;
    font-size: 12px;
}

/* =====================================================================
   ÖZELLİK ŞERİDİ (banner'ın altındaki beyaz kart)
   ===================================================================== */

/* Mockup'ta olduğu gibi banner'ın alt kenarına taşar; rozet şeridini
   kapatmaması için hero'nun alt boşluğu buna göre ayarlı. */

.st-strip {
    position: relative;
    z-index: 2;
    margin-top: -44px;
}

.st-strip__card {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border: 1px solid var(--st-line);
    border-radius: var(--st-r-lg);
    background: var(--st-surface);
    box-shadow: 0 26px 60px -34px rgba(11, 13, 17, .45);
    overflow: hidden;
}

.st-strip__item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 22px;
    border-left: 1px solid var(--st-line-2);
    min-width: 0;
}

.st-strip__item:first-child {
    border-left: 0;
}

.st-strip__item i {
    flex: 0 0 auto;
    font-size: 22px;
    color: var(--st-accent);
}

.st-strip__item span {
    font-size: 14px;
    font-weight: 700;
    color: var(--st-ink);
    line-height: 1.3;
}

/* =====================================================================
   BÖLÜM ISKELETİ
   ===================================================================== */

.st-section {
    padding: 84px 0;
}

.st-section--tint {
    background: var(--st-canvas);
}

.st-section--tight {
    padding: 56px 0;
}

.st-shead {
    margin-bottom: 40px;
    max-width: 760px;
}

.st-shead--center {
    margin-inline: auto;
    text-align: center;
}

.st-shead__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11.5px;
    font-weight: 800;
    letter-spacing: .13em;
    text-transform: uppercase;
    color: var(--st-accent);
}

.st-shead__eyebrow::before {
    content: "";
    width: 22px;
    height: 2px;
    border-radius: 2px;
    background: var(--st-accent);
}

.st-shead--center .st-shead__eyebrow::before {
    display: none;
}

.st-h2 {
    position: relative;
    margin: 14px 0 0;
    padding-bottom: 16px;
    font-size: clamp(27px, 3.4vw, 38px);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -.028em;
    color: var(--st-ink);
}
.st-h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 64px;
    height: 5px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--st-accent), color-mix(in srgb, var(--st-accent) 55%, #ff8a3d));
}
.st-shead--center .st-h2::after {
    left: 50%;
    transform: translateX(-50%);
}

.st-shead p {
    margin: 14px 0 0;
    font-size: 15.5px;
    line-height: 1.65;
    color: var(--st-ink-2);
}

.st-shead-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 40px;
}

.st-shead-row .st-shead {
    margin-bottom: 0;
}

.st-more {
    text-align: center;
    margin-top: 44px;
}

.st-fleet-cta {
    border-radius: 999px;
    padding: 12px 22px;
    font-weight: 800;
}

/* =====================================================================
   KART IZGARASI (neden biz / avantajlar)
   ===================================================================== */

.st-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 250px), 1fr));
    gap: 18px;
}

/* Bento düzeni: eşit 4 kutu yerine, ilk kart büyük/öne çıkan (2 satır),
   son kart yatayda geniş — yapıyı tekdüze ızgaradan çıkarır. */
.st-cards--bento {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-rows: minmax(180px, auto);
}
.st-card--lg {
    grid-column: 1;
    grid-row: 1 / span 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.st-card--lg .st-card__ic {
    width: 68px;
    height: 68px;
    font-size: 32px;
}
.st-card--lg h3 {
    font-size: 21px;
}
.st-cards--bento .st-card:nth-child(2) {
    grid-column: 2;
    grid-row: 1;
}
.st-cards--bento .st-card:nth-child(3) {
    grid-column: 3;
    grid-row: 1;
}
.st-card--wide {
    grid-column: 2 / span 2;
    grid-row: 2;
}
@media (max-width: 860px) {
    .st-cards--bento {
        grid-template-columns: 1fr;
    }
    .st-card--lg,
    .st-cards--bento .st-card:nth-child(2),
    .st-cards--bento .st-card:nth-child(3),
    .st-card--wide {
        grid-column: 1;
        grid-row: auto;
    }
}

.st-card {
    position: relative;
    padding: 26px 24px 24px;
    border: 1px solid var(--st-line);
    border-top: 4px solid var(--st-accent);
    border-radius: var(--st-r-lg);
    background: var(--st-surface);
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.st-card:hover {
    border-color: #d5d9e1;
    box-shadow: 0 20px 44px -28px rgba(11, 13, 17, .4);
    transform: translateY(-2px);
}

.st-card__ic {
    display: grid;
    place-items: center;
    width: 56px;
    height: 56px;
    margin-bottom: 16px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--st-accent), color-mix(in srgb, var(--st-accent) 65%, #ff8a3d));
    box-shadow: 0 10px 22px -8px color-mix(in srgb, var(--st-accent) 65%, transparent);
    color: #fff;
    font-size: 26px;
}

.st-card:hover .st-card__ic {
    background: linear-gradient(135deg, color-mix(in srgb, var(--st-accent) 85%, #fff), var(--st-accent));
}

.st-card h3 {
    margin: 0 0 8px;
    font-size: 17px;
    font-weight: 800;
    letter-spacing: -.015em;
    color: var(--st-ink);
}

.st-card p {
    margin: 0;
    font-size: 14.5px;
    line-height: 1.6;
    color: var(--st-ink-2);
}

.st-card__num {
    position: absolute;
    top: 20px;
    right: 22px;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .08em;
    color: var(--st-line);
}

/* =====================================================================
   SEO METİN BLOĞU
   ===================================================================== */

.st-prose {
    max-width: 78ch;
    font-size: 16px;
    line-height: 1.78;
    color: var(--st-ink-2);
}

.st-prose h3 {
    margin: 38px 0 14px;
    font-size: 21px;
    font-weight: 800;
    letter-spacing: -.02em;
    color: var(--st-ink);
}

.st-prose p {
    margin: 0 0 18px;
}

.st-prose strong {
    color: var(--st-ink);
    font-weight: 700;
}

.st-prose a {
    color: var(--st-accent);
    font-weight: 700;
    text-decoration: none;
    border-bottom: 1px solid currentColor;
    border-bottom-color: color-mix(in srgb, var(--st-accent) 35%, transparent);
}

.st-prose a:hover {
    border-bottom-color: currentColor;
}

.st-prose ul {
    margin: 0 0 18px;
    padding: 0;
    list-style: none;
}

.st-prose ul li {
    position: relative;
    padding-left: 26px;
    margin-bottom: 10px;
}

.st-prose ul li::before {
    content: "";
    position: absolute;
    left: 4px;
    top: 11px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--st-accent);
}

/* =====================================================================
   SSS
   ===================================================================== */

.st-faq {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 860px;
    margin-inline: auto;
}

.st-faq details {
    border: 1px solid var(--st-line);
    border-left: 3px solid transparent;
    border-radius: var(--st-r);
    background: var(--st-surface);
    transition: border-color .18s ease, box-shadow .18s ease;
    overflow: hidden;
}

.st-faq details[open] {
    border-color: var(--st-line);
    border-left-color: var(--st-accent);
    box-shadow: 0 10px 28px -18px rgba(0, 0, 0, .35);
}

.st-faq summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 19px 22px;
    cursor: pointer;
    list-style: none;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: -.012em;
    color: var(--st-ink);
    transition: color .18s ease;
}

.st-faq details[open] summary {
    color: var(--st-accent);
}

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

.st-faq summary i {
    flex: 0 0 auto;
    font-size: 22px;
    color: var(--st-ink-3);
    transition: transform .22s ease, color .22s ease;
}

.st-faq details[open] summary i {
    transform: rotate(180deg);
    color: var(--st-accent);
}

.st-faq__a {
    margin: 0;
    padding: 0 22px 20px;
    font-size: 15px;
    line-height: 1.7;
    color: var(--st-ink-2);
}

.st-faq__a strong {
    color: var(--st-ink);
}

.st-faq__a a {
    color: var(--st-accent);
    font-weight: 700;
    text-decoration: none;
}

.st-faq__a a:hover {
    text-decoration: underline;
}

/* =====================================================================
   SON CTA BANDI
   ===================================================================== */

.st-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    flex-wrap: wrap;
    padding: 36px 38px;
    border-radius: var(--st-r-lg);
    /* Koyu footer'dan ayrışsın diye marka rengi */
    background: var(--st-accent);
    color: #fff;
}

.st-cta__t {
    margin: 0;
    font-size: clamp(21px, 2.6vw, 27px);
    font-weight: 800;
    letter-spacing: -.025em;
    color: #fff;
}

.st-cta__s {
    margin: 7px 0 0;
    font-size: 14.5px;
    color: rgba(255, 255, 255, .82);
}

.st-cta .st-btn--primary {
    background: #fff;
    color: var(--st-ink);
}

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

/* =====================================================================
   SAYFA BAŞLIĞI (araclar.php)
   ===================================================================== */

.st-pagehead {
    position: relative;
    padding: 60px 0 48px;
    background: linear-gradient(120deg, color-mix(in srgb, var(--st-accent) 20%, var(--st-ink)), var(--st-ink) 65%);
    overflow: hidden;
}

.st-pagehead::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -80px;
    width: 360px;
    height: 360px;
    background: radial-gradient(circle, color-mix(in srgb, var(--st-accent) 35%, transparent), transparent 70%);
    pointer-events: none;
}

.st-pagehead .st-crumb,
.st-pagehead .st-crumb a {
    color: rgba(255, 255, 255, .62);
}

.st-pagehead .st-crumb span {
    color: #fff;
}

.st-pagehead h1 {
    position: relative;
    margin: 14px 0 0;
    font-size: clamp(32px, 4.4vw, 48px);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -.035em;
    color: #fff;
}

.st-pagehead h1 .accent {
    color: var(--st-accent);
}

.st-pagehead p {
    position: relative;
    margin: 14px 0 0;
    max-width: 68ch;
    font-size: 15.5px;
    line-height: 1.65;
    color: rgba(255, 255, 255, .78);
}

.st-crumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--st-ink-3);
}

.st-crumb a {
    color: var(--st-ink-3);
    text-decoration: none;
}

.st-crumb a:hover {
    color: var(--st-accent);
}

.st-crumb i {
    font-size: 14px;
}

/* =====================================================================
   FİLTRE ÇUBUĞU (araclar.php)
   ===================================================================== */

.st-filterbar {
    position: sticky;
    top: var(--st-head-h);
    z-index: 30;
    padding: 14px 0;
    border-bottom: 1px solid var(--st-line);
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.st-filters {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr)) auto auto;
    align-items: end;
    gap: 12px;
}

.st-field {
    min-width: 0;
}

.st-field>label {
    display: block;
    margin-bottom: 6px;
    font-size: 10.5px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--st-ink-3);
}

.st-select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 100%;
    height: 46px;
    padding: 0 40px 0 14px;
    border: 1px solid var(--st-line);
    border-radius: var(--st-r-sm);
    background-color: var(--st-surface);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23838b99' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.8' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 12px center;
    background-repeat: no-repeat;
    background-size: 18px 18px;
    font-family: inherit;
    font-size: 14.5px;
    font-weight: 600;
    color: var(--st-ink);
    cursor: pointer;
    transition: border-color .16s ease, box-shadow .16s ease;
}

.st-select:hover {
    border-color: #d0d5de;
}

.st-select:focus {
    outline: 0;
    border-color: var(--st-ink);
    box-shadow: 0 0 0 3px rgba(11, 13, 17, .08);
}

.st-reset {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 46px;
    padding: 0 18px;
    border: 1px solid var(--st-line);
    border-radius: var(--st-r-sm);
    background: var(--st-surface);
    font-family: inherit;
    font-size: 14px;
    font-weight: 700;
    color: var(--st-ink-2);
    cursor: pointer;
    white-space: nowrap;
    transition: border-color .16s ease, color .16s ease, background .16s ease;
}

.st-reset:hover {
    border-color: var(--st-ink);
    color: var(--st-ink);
    background: var(--st-tint);
}

.st-count {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    height: 46px;
    padding: 0 16px;
    border-radius: var(--st-r-sm);
    background: var(--st-tint);
    font-size: 14px;
    font-weight: 600;
    color: var(--st-ink-2);
    white-space: nowrap;
}

.st-count b {
    color: var(--st-ink);
    font-weight: 800;
    font-variant-numeric: tabular-nums;
}

/* Filtre sonucu boşken ızgara gizlenmeli — .flt-grid'in display:grid'i .hidden'ı eziyordu */

.flt-grid.hidden {
    display: none !important;
}

/* Boş sonuç */

.st-empty {
    padding: 72px 20px;
    text-align: center;
    border: 1px dashed var(--st-line);
    border-radius: var(--st-r-lg);
    background: var(--st-tint);
}

.st-empty.hidden {
    display: none;
}

.st-empty i {
    font-size: 46px;
    color: #c3c9d3;
}

.st-empty h3 {
    margin: 16px 0 6px;
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -.02em;
    color: var(--st-ink);
}

.st-empty p {
    margin: 0 0 22px;
    font-size: 14.5px;
    color: var(--st-ink-2);
}

/* =====================================================================
   FOOTER
   ===================================================================== */

.st-foot {
    background: var(--st-ink);
    color: #a8b0bd;
    padding: 0 0 calc(28px + env(safe-area-inset-bottom, 0px));
    font-size: 14.5px;
    position: relative;
    overflow: hidden;
}

.st-foot::before {
    content: '';
    position: absolute;
    top: -140px;
    right: -100px;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, color-mix(in srgb, var(--st-accent) 30%, transparent), transparent 70%);
    pointer-events: none;
}

.st-foot__cta {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    padding: 40px 32px;
    margin-top: 28px;
    border-radius: 20px;
    background: linear-gradient(120deg, color-mix(in srgb, var(--st-accent) 22%, var(--st-ink)), var(--st-ink) 70%);
    border: 1px solid rgba(255, 255, 255, .1);
}

.st-foot__cta-t {
    margin: 0;
    font-size: clamp(20px, 2.4vw, 26px);
    font-weight: 800;
    letter-spacing: -.025em;
    color: #fff;
}

.st-foot__cta-s {
    margin: 6px 0 0;
    font-size: 14.5px;
    color: #98a1af;
}

.st-foot__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) repeat(3, minmax(0, 1fr));
    gap: 40px 32px;
    padding: 46px 0 40px;
}

.st-foot__logo {
    display: inline-block;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -.03em;
    color: #fff;
    text-decoration: none;
}

.st-foot__logo .accent {
    color: var(--st-accent);
}

.st-foot__desc {
    margin: 12px 0 0;
    max-width: 42ch;
    font-size: 14.5px;
    line-height: 1.65;
    color: #98a1af;
}

.st-social {
    display: flex;
    gap: 9px;
    margin-top: 20px;
}

.st-social a {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 12px;
    color: #cfd4dd;
    font-size: 18px;
    text-decoration: none;
    transition: background .18s ease, color .18s ease, border-color .18s ease;
}

.st-social a:hover {
    background: var(--st-accent);
    border-color: var(--st-accent);
    color: #fff;
}

.st-foot__col h3 {
    margin: 0 0 16px;
    font-size: 11.5px;
    font-weight: 800;
    letter-spacing: .13em;
    text-transform: uppercase;
    color: #fff;
}

.st-foot__col ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.st-foot__col li {
    margin-bottom: 11px;
}

.st-foot__col a {
    color: #98a1af;
    text-decoration: none;
    font-size: 14.5px;
    transition: color .16s ease;
}

.st-foot__col a:hover {
    color: #fff;
}

.st-foot__contact li {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    line-height: 1.55;
}

.st-foot__contact .ic {
    flex: 0 0 auto;
    margin-top: 1px;
    color: var(--st-accent);
    font-size: 16px;
}

.st-foot__legal {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 26px;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, .1);
    font-size: 12.5px;
    color: #7d8695;
}

.st-foot__legal b {
    color: #98a1af;
    font-weight: 700;
}

.st-foot__bottom {
    padding: 20px 0 0;
    border-top: 1px solid rgba(255, 255, 255, .1);
    font-size: 13px;
    color: #7d8695;
}

/* =====================================================================
   MOBİL ALT ÇUBUK
   ===================================================================== */

.st-bb {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99980;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom, 0px));
    background: rgba(11, 13, 17, .96);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, .1);
}

.st-bb__brand {
    text-decoration: none;
    min-width: 0;
}

.st-bb__logo {
    display: block;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: -.02em;
    color: #fff;
    white-space: nowrap;
}

.st-bb__logo .accent {
    color: var(--st-accent);
}

.st-bb__tag {
    display: block;
    font-size: 10.5px;
    color: #8d95a3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 30vw;
}

.st-bb__actions {
    display: flex;
    gap: 8px;
    flex: 0 0 auto;
}

.st-bb__btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    height: 42px;
    padding: 0 15px;
    border-radius: 999px;
    font-size: 13.5px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
}

.st-bb__btn i {
    font-size: 17px;
}

.st-bb__btn.wa {
    background: var(--st-wa);
    color: #06301a;
}

.st-bb__btn.call {
    background: var(--st-accent);
    color: #fff;
}

/* =====================================================================
   ARAÇ KARTLARINI SİTE PALETİNE HİZALA (fleet-2026.css üzerine)
   ===================================================================== */

.flt-grid {
    --flt-ink: var(--st-ink);
    --flt-ink-2: var(--st-ink-2);
    --flt-ink-3: var(--st-ink-3);
    --flt-line: var(--st-line);
    --flt-line-2: var(--st-line-2);
    --flt-tint: var(--st-tint);
    --flt-radius: var(--st-r-lg);
    gap: 18px;
}

/* Ana aksiyon marka rengiyle — siyah buton sayfa paletiyle çelişiyordu */

.flt-btn--primary {
    background: var(--st-accent);
}

.flt-btn--primary:hover {
    background: var(--st-ink);
}

.flt-tag {
    background: rgba(11, 13, 17, .84);
}

/* =====================================================================
   DUYARLI
   ===================================================================== */

@media (max-width: 1080px) {
    .st-hero__inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .st-hero {
        padding: 60px 0 90px;
    }
    .st-foot__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 34px 28px;
    }
}

@media (max-width: 960px) {
    .st-menu {
        display: none;
    }
    .st-head__trust span:nth-child(n+3) {
        display: none;
    }
    .st-nav {
        gap: 12px;
    }
    .st-nav__actions {
        margin-left: auto;
    }
    .st-brand__sub {
        display: none;
    }
    .st-strip__card {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .st-strip__item:nth-child(odd) {
        border-left: 0;
    }
    .st-strip__item:nth-child(n+3) {
        border-top: 1px solid var(--st-line-2);
    }
    .st-filters {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .st-filters .st-count {
        grid-column: 1 / -1;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .st-shell {
        padding-inline: 16px;
    }
    .st-section {
        padding: 60px 0;
    }
    /* Şeritte yer daralıyor: güven öğelerinden yalnızca ilki kalsın,
     telefon ve rezervasyon düğmesi sağda korunsun. */
    .st-head__trust span:nth-child(n+2) {
        display: none;
    }
    .st-head__strip {
        font-size: 11.5px;
    }
    .st-head__strip .st-shell {
        gap: 10px;
        min-height: 36px;
    }
    .st-head__trust i {
        font-size: 14px;
    }
    .st-head__right {
        gap: 12px;
    }
    .st-head__strip .st-shell {
        padding-right: 0;
    }
    .st-head__quick {
        padding: 0 16px;
        padding-right: 20px;
        font-size: 11.5px;
    }
    .st-head__tel {
        font-size: 12.5px;
    }
    /* Ana eylem mobilde hem üst şeritte hem sabit alt çubukta var; yazısı
     gizlenince ne olduğu anlaşılmayan header düğmesini tekrar etmiyoruz. */
    .st-nav__actions .st-btn {
        display: none;
    }
    /* Arama mobilde de kalıyor; sadece küçülüyor */
    .st-search__btn {
        width: 40px;
        height: 40px;
        font-size: 17px;
    }
    .st-search__panel input {
        width: min(58vw, 232px);
    }
    .st-hero {
        padding: 46px 0 84px;
    }
    /* Dar ekranda yatay karartma işe yaramaz: ayrı hazırlanmış 2:3 dikey görsel
     ve dikey karartma kullanılıyor. Mobil dosya yoksa masaüstü görseline
     düşer. Karartma görselin bantlarına göre ayarlı: tepesi zaten koyu bulut,
     %25-55 arası neon yazı ve şehir silüeti var (paragraf oraya düştüğü için
     bastırılıyor), %66'dan sonrası otomobil (açık bırakılıyor). */
    .st-hero.st-hero--shot {
        clip-path: none;
        /* Mobil görsel 2:3 için hazırlandıysa yükseklik genişliğin 1,5 katı
       olunca fotoğraf hiç kırpılmadan tam oturuyor. Şu an ayrı bir mobil kırpım
       yok, masaüstündeki geniş (2048x768) fotoğrafa düşülüyor — o yüzden
       yükseklik bu görselin oranına uygun tutulup araç (görselin odak noktası,
       masaüstünde de sağda) sağda ortalı bırakılıyor; aksi halde 150vw'lik dar
       ve uzun kutu görselin çoğunu kırpardı. */
        min-height: min(75vw, 360px);
        background-image: linear-gradient(180deg, rgba(7, 8, 11, .5) 0%, rgba(7, 8, 11, .38) 40%, rgba(7, 8, 11, .55) 100%), var(--st-hero-img-m, var(--st-hero-img, none));
        background-position: center, right center;
    }
    /* Yazı üstte toplanıyor; altta kalan bant otomobile bırakılıyor. */
    .st-hero--shot .st-hero__inner {
        align-items: flex-start;
    }
    /* Rozetler hemen alttaki beyaz özellik kartıyla aynı mesajı veriyor. */
    .st-hero--shot .st-hero__badges {
        display: none;
    }
    /* Geniş telefonda iki eylem yan yana durup yazı bloğunu kısaltıyor; dar
     ekranda sığmayınca kendiliğinden alt alta iner. */
    .st-hero--shot .st-actions {
        gap: 8px;
        flex-wrap: wrap;
        margin-top: 20px;
    }
    .st-hero--shot .st-actions .st-btn {
        /* Taban genişlik içerikten gelir; eşit bölüşüm uzun etiketi kırpıyordu. */
        flex: 1 1 auto;
        min-width: 0;
        padding-inline: 10px;
        font-size: 12.5px;
        white-space: nowrap;
    }
    .st-hero--shot .st-actions .st-btn .ri-arrow-right-line {
        display: none;
    }
    /* Karartma hafifletildiği için okunurluk gölgeyle sağlanıyor; böylece
     otomobil fotoğrafta seçilebilir kalıyor. */
    .st-hero--shot .st-hero__copy,
    .st-hero--shot .st-hero__badges {
        text-shadow: 0 1px 3px rgba(4, 5, 7, .9), 0 2px 16px rgba(4, 5, 7, .8);
    }
    .st-hero--shot .st-lead {
        color: #e6eaef;
    }
    /* Mobilde karartma hafif olduğu için degrade metin fotoğrafın kızıl
     tonlarına karışıp okunmaz oluyordu; düz, yüksek kontrastlı renge dönüyoruz. */
    .st-hero--shot .st-h1 .accent {
        background: none;
        -webkit-text-fill-color: initial;
        color: #ff5470;
        animation: none;
        text-shadow: 0 1px 3px rgba(4, 5, 7, .9), 0 2px 16px rgba(4, 5, 7, .85);
    }
    .st-hero--shot .st-actions .st-btn {
        text-shadow: none;
    }
    .st-hero--shot .st-hero__inner {
        padding-block: 24px 14px;
    }
    .st-hero__badges {
        gap: 10px 20px;
        padding-bottom: 62px;
    }
    .st-hero__badges span {
        font-size: 12.5px;
    }
    .st-h1 {
        font-size: clamp(31px, 8.4vw, 42px);
    }
    .st-actions .st-btn {
        flex: 1 1 100%;
    }
    .st-shead-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
    }
    .st-shead-row .st-btn {
        width: 100%;
    }
    .st-cta {
        padding: 28px 22px;
    }
    .st-cta .st-btn {
        width: 100%;
    }
    .st-foot__cta .st-btn {
        width: 100%;
    }
    .st-foot__grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 34px 0 30px;
    }
    .st-filterbar {
        position: static;
    }
    .st-bb {
        display: flex;
    }
    /* Alt çubuk sabit; içerik altında kalmasın */
    body {
        padding-bottom: 66px;
    }
    .st-foot {
        padding-bottom: calc(24px + env(safe-area-inset-bottom, 0px));
    }
    /* Alt çubukta zaten WhatsApp + Ara var; yüzen kopyaları gizle */
    .fab-wa,
    .sticky-btn {
        display: none !important;
    }
    /* Canlı destek başlatıcısını alt çubuğun üstüne al */
    .fab-chat,
    #avs-chat-launch {
        bottom: calc(78px + env(safe-area-inset-bottom, 0px)) !important;
    }
}

@media (max-width: 480px) {
    .st-strip__card {
        grid-template-columns: 1fr;
    }
    .st-strip__item {
        border-left: 0;
        border-top: 1px solid var(--st-line-2);
    }
    .st-strip__item:first-child {
        border-top: 0;
    }
    .st-strip {
        margin-top: -34px;
    }
    .st-bb__tag {
        display: none;
    }
    .st-filters {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    .st-card,
    .st-btn,
    .st-faq summary i {
        transition: none;
    }
    .st-card:hover {
        transform: none;
    }
}

/* =====================================================================
   CESUR / ENERJİK TEMA KATMANI — buton/kart/CTA'ları daha canlı vurgu,
   güçlü gölge/glow ve kaydırınca beliren animasyonla günceller. Renk
   kaynağı hâlâ --st-accent (admin panel tema seçimini izler); burada
   sabit bir renk uydurulmuyor, sadece o rengin kullanım şiddeti artıyor.
   ===================================================================== */

.st-btn--primary {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--st-accent), color-mix(in srgb, var(--st-accent) 70%, #ff6a3d));
    box-shadow: 0 10px 24px -8px color-mix(in srgb, var(--st-accent) 60%, transparent);
    transition: transform .22s cubic-bezier(.2,.8,.2,1), box-shadow .22s ease, background .22s ease;
}
/* Butona sürekli, kendiliğinden akan parlaklık şeridi — fareyle
   etkileşim gerektirmeden sayfa açılır açılmaz "canlı" görünsün diye. */
.st-btn--primary::before {
    content: "";
    position: absolute;
    top: 0;
    left: -60%;
    width: 50%;
    height: 100%;
    background: linear-gradient(115deg, transparent, rgba(255,255,255,.55), transparent);
    animation: stBtnShine 2.8s ease-in-out infinite;
    pointer-events: none;
}
@keyframes stBtnShine {
    0% { left: -60%; }
    55%, 100% { left: 130%; }
}
.st-btn--primary:hover {
    background: linear-gradient(135deg, color-mix(in srgb, var(--st-accent) 85%, #fff), var(--st-accent));
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 16px 34px -10px color-mix(in srgb, var(--st-accent) 70%, transparent);
}
.st-btn--primary:active { transform: translateY(0) scale(.99); }

.st-card {
    transition: transform .3s cubic-bezier(.2,.8,.2,1), box-shadow .3s ease, border-color .3s ease;
}
.st-card:hover {
    transform: translateY(-8px) scale(1.015);
    border-color: color-mix(in srgb, var(--st-accent) 45%, var(--st-line));
    box-shadow: 0 22px 44px -18px color-mix(in srgb, var(--st-accent) 45%, rgba(15,23,42,.35));
}
.st-card__ic {
    transition: transform .3s cubic-bezier(.34,1.56,.64,1);
}
.st-card:hover .st-card__ic {
    transform: scale(1.12) rotate(-4deg);
}

.st-cta {
    background: linear-gradient(120deg, var(--st-accent) 0%, color-mix(in srgb, var(--st-accent) 65%, #ff8a3d) 100%);
    box-shadow: 0 28px 60px -24px color-mix(in srgb, var(--st-accent) 55%, transparent);
    position: relative;
    overflow: hidden;
}
.st-cta::after {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(600px 240px at 85% -20%, rgba(255,255,255,.25), transparent 60%);
    pointer-events: none;
}

.st-shead__eyebrow {
    position: relative;
    padding-left: 4px;
}
.st-shead__eyebrow::after {
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    margin-left: 4px;
    border-radius: 50%;
    background: var(--st-accent);
    animation: stPulseDot 1.6s ease-in-out infinite;
    vertical-align: middle;
}
@keyframes stPulseDot {
    0%, 100% { opacity: .35; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.5); }
}

/* Kaydırınca beliren bölümler — .st-reveal işaretli öğeler, ekrana
   girince JS'in eklediği .is-in sınıfıyla belirir. JS çalışmazsa
   (devre dışı/engellendi) öğeler zaten görünür kalır — no-op fallback. */
.st-reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .6s cubic-bezier(.2,.8,.2,1), transform .6s cubic-bezier(.2,.8,.2,1);
}
.st-reveal.is-in {
    opacity: 1;
    transform: translateY(0);
}
/* Hero içeriği sayfa açılır açılmaz (scroll/hover beklemeden) belirir —
   kaydırma gerektiren .st-reveal'den farklı olarak otomatik oynar. */
.st-hero__copy > * {
    opacity: 0;
    animation: stHeroIn .7s cubic-bezier(.2,.8,.2,1) both;
}
.st-hero__copy > *:nth-child(1) { animation-delay: .05s; }
.st-hero__copy > *:nth-child(2) { animation-delay: .15s; }
.st-hero__copy > *:nth-child(3) { animation-delay: .25s; }
.st-hero__copy > *:nth-child(4) { animation-delay: .35s; }
.st-hero__copy > *:nth-child(5) { animation-delay: .45s; }
@keyframes stHeroIn {
    from { opacity: 0; transform: translateY(22px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
    .st-btn--primary, .st-btn--primary:hover, .st-card:hover, .st-card__ic {
        transform: none !important;
    }
    .st-btn--primary::before { animation: none; display: none; }
    .st-hero__copy > * { animation: none; opacity: 1; transform: none; }
    .st-reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}