/* =========================================================
   Hostiva — OrangeSoft Design System v2.0
   Marka: turuncu gradyan #f2712a → #faa733
   Zemin: lavanta-gri #f2f2f9 · Koyu bölümler: #17181f
   Dil: büyük yuvarlak köşeler, yumuşak gölgeler, hap butonlar
   ========================================================= */

:root {
    --hv-primary: #f2712a;
    --hv-primary-dark: #e05e17;
    --hv-primary-deep: #c94e0e;
    --hv-primary-soft: #fff1e7;
    --hv-accent: #faa733;
    --hv-grad: linear-gradient(135deg, var(--hv-primary) 0%, var(--hv-accent) 100%);
    --hv-primary-rgb: 242, 113, 42;
    --hv-grad-soft: linear-gradient(135deg, #fff1e7 0%, #fff8ec 100%);

    --hv-dark: #17181f;
    --hv-dark-2: #212330;
    --hv-dark-3: #2a2c3d;

    --hv-success: #1fae78;
    --hv-success-soft: #e0f7ee;
    --hv-warning: #e8930c;
    --hv-warning-soft: #fdf3df;
    --hv-danger: #ef5350;
    --hv-danger-soft: #fdecec;
    --hv-info: #5b64da;
    --hv-info-soft: #eceefc;
    --hv-secondary: #4a4e69;
    --hv-secondary-soft: #f0f1f6;

    --hv-bg: #f2f2f9;
    --hv-bg-warm: #faf6f1;
    --hv-surface: #ffffff;
    --hv-text: #282c3f;
    --hv-heading: #1d2030;
    --hv-text-muted: #6d7792;
    --hv-text-soft: #9aa3bd;
    --hv-border: #e8e9f3;
    --hv-sidebar-bg: #17181f;
    --hv-topbar-bg: rgba(255, 255, 255, .92);

    --hv-radius: 18px;
    --hv-radius-sm: 12px;
    --hv-radius-lg: 26px;
    --hv-radius-pill: 999px;
    --hv-shadow: 0 1px 2px rgba(23, 24, 31, .05), 0 6px 20px rgba(23, 24, 31, .06);
    --hv-shadow-lg: 0 12px 40px rgba(23, 24, 31, .13);
    --hv-shadow-orange: 0 8px 22px rgba(var(--hv-primary-rgb), .32);
    --hv-font: 'Plus Jakarta Sans', 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
}

/* ---------- Reset & Base ---------- */
html { scroll-behavior: smooth; }
body {
    font-family: var(--hv-font);
    background: var(--hv-bg);
    color: var(--hv-text);
    font-size: 14.5px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}
a { color: var(--hv-primary); text-decoration: none; transition: color .16s ease; }
a:hover { color: var(--hv-primary-dark); }
h1, h2, h3, h4, h5, h6 { font-weight: 800; letter-spacing: -.022em; color: var(--hv-heading); }
h1 { font-weight: 800; }

/* oweb imzası: sayfanın en üstünde 4px turuncu gradyan şerit */
body::before {
    content: '';
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: 4px;
    z-index: 2000;
    background: linear-gradient(to right, var(--hv-primary), var(--hv-accent));
    pointer-events: none;
}
::selection { background: #ffd9c2; color: #7c3408; }
:focus-visible { outline: 3px solid rgba(var(--hv-primary-rgb), .45); outline-offset: 2px; border-radius: 6px; }

::-webkit-scrollbar { width: 9px; height: 9px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: #cfcbd8; border-radius: 99px; border: 2px solid var(--hv-bg); }
::-webkit-scrollbar-thumb:hover { background: #b3aec4; }

.mono { font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; font-size: .92em; }
.text-gradient {
    background: var(--hv-grad);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.fs-12 { font-size: 12px !important; }
.fs-13 { font-size: 13px !important; }
.fw-800 { font-weight: 800 !important; }
.text-muted { color: var(--hv-text-muted) !important; }
.w-min-160 { min-width: 160px; }
.cursor-pointer { cursor: pointer; }

.skip-link {
    position: absolute; left: -9999px; top: 0; z-index: 2000;
    background: var(--hv-primary); color: #fff; padding: .6rem 1.2rem;
    border-radius: 0 0 12px 0; font-weight: 700;
}
.skip-link:focus { left: 0; color: #fff; }

/* ---------- Buttons ---------- */
.btn {
    border-radius: var(--hv-radius-pill);
    font-weight: 700;
    font-size: 14px;
    padding: .58rem 1.35rem;
    border: 1.5px solid transparent;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .45rem;
    line-height: 1.35;
    white-space: nowrap;
}
.btn:active { transform: scale(.97); }
.btn-sm { padding: .4rem .95rem; font-size: 13px; }
.btn-lg { padding: .78rem 1.7rem; font-size: 15px; }

.btn-primary {
    background: var(--hv-grad);
    color: #fff;
    border: none;
    box-shadow: 0 6px 18px rgba(var(--hv-primary-rgb), .28);
}
.btn-primary:hover, .btn-primary:focus, .btn-primary:active {
    background: linear-gradient(135deg, #e05e17 0%, #f29a1f 100%);
    color: #fff;
    box-shadow: 0 10px 26px rgba(var(--hv-primary-rgb), .42);
    transform: translateY(-2px);
}
.btn-primary:disabled { opacity: .65; box-shadow: none; transform: none; }

.btn-light {
    background: #fff;
    color: var(--hv-text);
    border: 1.5px solid var(--hv-border);
    box-shadow: 0 2px 8px rgba(23, 24, 31, .05);
}
.btn-light:hover, .btn-light:focus {
    background: #fff;
    color: var(--hv-primary);
    border-color: #ffd9c2;
    box-shadow: 0 6px 16px rgba(var(--hv-primary-rgb), .14);
    transform: translateY(-2px);
}

.btn-soft {
    background: var(--hv-primary-soft);
    color: var(--hv-primary-dark);
    border: none;
}
.btn-soft:hover { background: #ffe3d1; color: var(--hv-primary-deep); transform: translateY(-2px); }

.btn-outline-primary {
    color: var(--hv-primary);
    border: 1.5px solid #ffb98d;
    background: transparent;
}
.btn-outline-primary:hover { background: var(--hv-primary); border-color: var(--hv-primary); color: #fff; box-shadow: var(--hv-shadow-orange); }

.btn-outline-secondary { color: var(--hv-secondary); border: 1.5px solid #d9dbe8; background: transparent; }
.btn-outline-secondary:hover { background: var(--hv-secondary-soft); color: var(--hv-text); border-color: #c6c9da; }

.btn-outline-danger { color: var(--hv-danger); border: 1.5px solid #fbc4c4; background: transparent; }
.btn-outline-danger:hover { background: var(--hv-danger); border-color: var(--hv-danger); color: #fff; }

.btn-danger { background: linear-gradient(135deg, #ef5350, #ff7a5c); border: none; color: #fff; box-shadow: 0 6px 18px rgba(239, 83, 80, .28); }
.btn-danger:hover { background: linear-gradient(135deg, #e04643, #ff6d4d); color: #fff; transform: translateY(-2px); }

.btn-success { background: linear-gradient(135deg, #1fae78, #3ed598); border: none; color: #fff; box-shadow: 0 6px 18px rgba(31, 174, 120, .26); }
.btn-success:hover { color: #fff; transform: translateY(-2px); }

/* ---------- Badges ---------- */
.badge {
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    font-weight: 700;
    font-size: 11.5px;
    padding: .38em .8em;
    border-radius: var(--hv-radius-pill);
    letter-spacing: .01em;
}
.badge-primary { background: var(--hv-primary-soft); color: var(--hv-primary-dark); }
.badge-success { background: var(--hv-success-soft); color: #0e8a5e; }
.badge-warning { background: var(--hv-warning-soft); color: #b56a05; }
.badge-danger { background: var(--hv-danger-soft); color: #c93836; }
.badge-info { background: var(--hv-info-soft); color: #4148b8; }
.badge-secondary { background: var(--hv-secondary-soft); color: var(--hv-secondary); }

/* ---------- Cards ---------- */
.card {
    border: 1px solid rgba(232, 233, 243, .9);
    border-radius: var(--hv-radius);
    background: var(--hv-surface);
    box-shadow: var(--hv-shadow);
}
.card-header {
    background: transparent;
    border-bottom: 1px solid var(--hv-border);
    font-weight: 700;
    padding: 1rem 1.25rem;
    border-radius: var(--hv-radius) var(--hv-radius) 0 0 !important;
}
.card-body { padding: 1.25rem; }
.shadow-soft { box-shadow: var(--hv-shadow) !important; }
.shadow-lift { box-shadow: var(--hv-shadow); transition: transform .22s ease, box-shadow .22s ease; }
.hover-lift { transition: transform .22s ease, box-shadow .22s ease; }
.hover-lift:hover, .shadow-lift:hover { transform: translateY(-4px); box-shadow: var(--hv-shadow-lg); }

/* ---------- Forms ---------- */
.form-label { font-weight: 700; font-size: 13px; color: var(--hv-heading); margin-bottom: .4rem; }
.form-control, .form-select {
    border: 1.5px solid var(--hv-border);
    border-radius: var(--hv-radius-sm);
    padding: .58rem .9rem;
    font-size: 14px;
    background: #fbfbfe;
    transition: border-color .16s ease, box-shadow .16s ease, background .16s ease;
    color: var(--hv-text);
}
.form-control:focus, .form-select:focus {
    border-color: #ffb184;
    box-shadow: 0 0 0 4px rgba(var(--hv-primary-rgb), .13);
    background: #fff;
}
.form-control::placeholder { color: #b0b7cc; }
.input-group-text {
    background: var(--hv-secondary-soft);
    border: 1.5px solid var(--hv-border);
    border-radius: var(--hv-radius-sm);
    color: var(--hv-text-muted);
}
.form-check-input { border: 1.5px solid #d5d8e6; }
.form-check-input:checked { background-color: var(--hv-primary); border-color: var(--hv-primary); }
.form-text { color: var(--hv-text-soft); }
.invalid-feedback { font-size: 12.5px; }

/* ---------- Alerts ---------- */
.alert {
    border: none;
    border-radius: var(--hv-radius-sm);
    padding: .85rem 1.1rem;
    font-size: 13.5px;
    font-weight: 500;
    box-shadow: 0 3px 12px rgba(23, 24, 31, .05);
}
.alert-success { background: var(--hv-success-soft); color: #0d7a52; }
.alert-danger { background: var(--hv-danger-soft); color: #bb3634; }
.alert-warning { background: var(--hv-warning-soft); color: #a86404; }
.alert-info { background: var(--hv-info-soft); color: #4047b5; }

/* ---------- Tables ---------- */
.table { color: var(--hv-text); border-color: var(--hv-border); margin-bottom: 0; font-size: 13.8px; }
.table thead th {
    background: #f7f7fc;
    color: var(--hv-text-muted);
    font-size: 11.5px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .06em;
    border-bottom: 1px solid var(--hv-border);
    padding: .8rem 1rem;
    white-space: nowrap;
}
/* gradyanlı tablo başlığı — tab th kuralı gradyanı ezmesin */
.table thead th.text-gradient {
    background: var(--hv-grad);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}
.table tbody td { padding: .85rem 1rem; vertical-align: middle; border-color: #f0f1f8; }
.table tbody tr { transition: background .14s ease; }
.table tbody tr:hover { background: #fdf4ee; }
.table-light-head { background: #f7f7fc; }
.table-mobile { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: var(--hv-radius-sm); }

/* ---------- Pagination ---------- */
.pagination { gap: .3rem; }
.page-link {
    border: 1.5px solid var(--hv-border);
    color: var(--hv-text-muted);
    font-weight: 700;
    font-size: 13px;
    border-radius: 10px !important;
    margin: 0;
    min-width: 36px;
    text-align: center;
    transition: all .15s ease;
}
.page-item.active .page-link { background: var(--hv-grad); border-color: transparent; color: #fff; box-shadow: 0 4px 12px rgba(var(--hv-primary-rgb), .3); }
.page-link:hover { background: var(--hv-primary-soft); color: var(--hv-primary-dark); border-color: #ffd0b3; }

/* ---------- Dropdown & Modal ---------- */
.dropdown-menu {
    border: 1px solid var(--hv-border);
    border-radius: 16px;
    box-shadow: var(--hv-shadow-lg);
    padding: .45rem;
    font-size: 13.5px;
}
.dropdown-item { border-radius: 10px; padding: .5rem .8rem; font-weight: 600; color: var(--hv-text); }
.dropdown-item:hover, .dropdown-item.active { background: var(--hv-primary-soft); color: var(--hv-primary-dark); }
.dropdown-header { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .07em; color: var(--hv-text-soft); }
.notif-item { display: flex; gap: .7rem; padding: .65rem .8rem; border-radius: 12px; color: var(--hv-text); }
.notif-item:hover { background: var(--hv-secondary-soft); color: var(--hv-text); }
.notif-item.unread { background: var(--hv-primary-soft); }
.notif-item.unread:hover { background: #ffe3d1; }

.modal-content { border: none; border-radius: 22px; box-shadow: var(--hv-shadow-lg); }
.modal-header { border-bottom: 1px solid var(--hv-border); padding: 1.15rem 1.4rem; }
.modal-title { font-size: 16px; font-weight: 800; }
.modal-body { padding: 1.4rem; }
.modal-footer { border-top: 1px solid var(--hv-border); padding: 1rem 1.4rem; }
.modal-backdrop.show { opacity: .55; }

/* ---------- Nav tabs ---------- */
.nav-tabs { border-bottom: 2px solid var(--hv-border); gap: .3rem; }
.nav-tabs .nav-link {
    border: none;
    border-bottom: 2.5px solid transparent;
    color: var(--hv-text-muted);
    font-weight: 700;
    font-size: 13.5px;
    padding: .6rem 1rem;
    margin-bottom: -2px;
    border-radius: 0;
}
.nav-tabs .nav-link:hover { color: var(--hv-primary); }
.nav-tabs .nav-link.active { color: var(--hv-primary); border-bottom-color: var(--hv-primary); background: transparent; }

/* ---------- Progress ---------- */
.progress { background: #edecf4; border-radius: 99px; }
.progress-bar { background: var(--hv-grad); border-radius: 99px; }

/* ---------- Skeleton & Empty ---------- */
.skeleton {
    background: linear-gradient(90deg, #ecebf3 25%, #f6f5fa 50%, #ecebf3 75%);
    background-size: 200% 100%;
    animation: hvShimmer 1.4s infinite;
    border-radius: 10px;
    min-height: 14px;
}
@keyframes hvShimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }
.empty-state { text-align: center; padding: 3rem 1rem; color: var(--hv-text-muted); }
.empty-state > i { font-size: 44px; color: #d8d5e4; margin-bottom: .9rem; display: block; }

/* ---------- Dots ---------- */
.dot { width: 8px; height: 8px; border-radius: 50%; display: inline-block; }
.dot-success { background: #22c55e; box-shadow: 0 0 0 3px rgba(34, 197, 94, .18); animation: hvPulse 2s infinite; }
.dot-warning { background: #f5a623; box-shadow: 0 0 0 3px rgba(245, 166, 35, .18); }
.dot-danger { background: #ef4444; box-shadow: 0 0 0 3px rgba(239, 68, 68, .18); }
@keyframes hvPulse { 0%, 100% { opacity: 1; } 50% { opacity: .55; } }

/* ---------- Avatar ---------- */
.avatar {
    width: 42px; height: 42px;
    border-radius: 14px;
    background: var(--hv-grad);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 15px;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(var(--hv-primary-rgb), .3);
}
.avatar.sm { width: 30px; height: 30px; font-size: 12px; border-radius: 10px; }

/* ---------- Toast ---------- */
.hv-toast {
    position: relative;
    display: flex;
    align-items: center;
    gap: .7rem;
    background: #fff;
    border-radius: 16px;
    box-shadow: var(--hv-shadow-lg);
    padding: .8rem 1rem;
    margin-top: .6rem;
    font-size: 13.5px;
    font-weight: 600;
    min-width: 300px;
    max-width: 380px;
    animation: hvToastIn .28s cubic-bezier(.2, .9, .3, 1.2);
    border: 1px solid var(--hv-border);
}
.hv-toast .ti { width: 36px; height: 36px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 17px; flex-shrink: 0; }
.hv-toast.out { opacity: 0; transform: translateX(24px); transition: all .26s ease; }
@keyframes hvToastIn { from { opacity: 0; transform: translateX(40px); } to { opacity: 1; transform: translateX(0); } }
#toastArea { position: fixed; top: 18px; right: 18px; z-index: 3000; }

/* ---------- Breadcrumb ---------- */
.breadcrumb-item { font-size: 13px; font-weight: 600; }
.breadcrumb-item a { color: var(--hv-text-muted); }
.breadcrumb-item.active { color: var(--hv-primary); }

/* =========================================================
   ORANGESOFT — PUBLIC SITE
   ========================================================= */

/* ---------- Header (oweb tarzı düz beyaz sticky bar) ---------- */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1030;
    background: rgba(255, 255, 255, .96);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(232, 233, 243, .9);
    transition: box-shadow .22s ease;
}
.site-header.scrolled { box-shadow: 0 8px 28px rgba(23, 24, 31, .09); }
.hv-header { padding: .8rem 0; }

.site-brand { display: inline-flex; align-items: center; gap: .6rem; }
.logo-dot {
    width: 38px; height: 38px;
    border-radius: 13px;
    background: var(--hv-grad);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    box-shadow: 0 5px 14px rgba(var(--hv-primary-rgb), .35);
    flex-shrink: 0;
}
.site-brand-text { font-size: 21px; font-weight: 800; letter-spacing: -.04em; color: var(--hv-heading); }
.site-brand-text span { color: var(--hv-primary); }

/* --- Navbar + mega menü (oweb .navbar / .nav--drop birebir) --- */
.hv-navbar {
    display: none;
    align-items: center;
    gap: .4rem;
    padding: 0;
    list-style: none;
}
.hv-navbar .nav-item { position: relative; font-weight: 600; }
.hv-navbar .nav-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    color: var(--hv-text);
    font-size: 13.5px;
    font-weight: 700;
    padding: .55rem .8rem;
    border-radius: 10px;
    transition: color .16s ease, background .16s ease;
    white-space: nowrap;
}
.hv-navbar .nav-link:hover { color: var(--hv-primary); }
.hv-navbar .nav-link.active { color: var(--hv-primary); }
.hv-navbar .nav-link.drop-item { gap: .28rem; }
.hv-navbar .nav-link .drop-caret { font-size: 9px; margin-top: 1px; opacity: .7; transition: transform .2s ease; }
.hv-navbar .nav-item:hover .drop-caret { transform: rotate(180deg); }

.nav--drop {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    width: max-content;
    min-width: 320px;
    max-width: min(350px, 92vw);
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    background: #fff;
    border: 1px solid var(--hv-border);
    border-radius: 14px;
    padding: 16px;
    margin-top: 0;
    opacity: 0;
    visibility: hidden;
    transition: all .2s ease;
    box-shadow: 0 18px 44px rgba(23, 24, 31, .14);
    z-index: 1040;
}
.nav--drop::before {
    content: '';
    position: absolute;
    top: -7px; left: 50%;
    width: 12px; height: 12px;
    background: #fff;
    border-left: 1px solid var(--hv-border);
    border-top: 1px solid var(--hv-border);
    transform: translateX(-50%) rotate(45deg);
    border-radius: 3px 0 0 0;
}
.drop--nav {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 9px;
    border: 1px solid var(--hv-bg);
    border-radius: 10px;
    transition: all .18s ease;
}
.drop--nav:hover { border-color: #ffd9c2; background: var(--hv-primary-soft); transform: translateX(3px); }
.drop--nav .icon {
    min-width: 42px;
    width: 42px; height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--hv-primary);
    font-size: 18px;
    background: rgba(var(--hv-primary-rgb), .1);
    border-radius: 9px;
}
.drop--nav .text span { display: block; font-size: 13.5px; font-weight: 700; color: var(--hv-text); }
.drop--nav .text p { margin: 0; font-size: 12px; color: var(--hv-text-muted); font-weight: 500; }
.notice--alert {
    display: flex;
    align-items: center;
    gap: .55rem;
    margin-top: 2px;
    padding: 10px 12px;
    border-radius: 10px;
    background: linear-gradient(45deg, rgba(var(--hv-primary-rgb), .1), rgba(250, 167, 51, .12));
    font-size: 12px;
    font-weight: 600;
    color: var(--hv-text);
}
.notice--alert span {
    background: var(--hv-grad);
    color: #fff;
    font-size: 10.5px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .04em;
    padding: 3px 9px;
    border-radius: 99px;
    flex-shrink: 0;
}

@media (min-width: 1200px) {
    .hv-navbar { display: flex; }
    .hv-navbar .nav-item:hover > .nav--drop {
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(0);
    }
}

/* --- Sistem durum pill'i (oweb .dash--statu) --- */
.dash--statu {
    background: rgba(242, 242, 249, .6);
    border: 1px solid var(--hv-border);
    border-radius: 99px;
    font-size: 12.5px;
    font-weight: 700;
    padding: 6px 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--hv-text-muted);
}
.dash--statu > span.online {
    width: 8px; height: 8px;
    border-radius: 50%;
    background-color: var(--hv-success);
    box-shadow: 0 0 0 3px rgba(32, 189, 128, .18);
    animation: hvPulse 2.2s infinite;
}
@keyframes hvPulse {
    0%, 100% { box-shadow: 0 0 0 3px rgba(32, 189, 128, .18); }
    50% { box-shadow: 0 0 0 6px rgba(32, 189, 128, .08); }
}

.site-cart {
    width: 40px; height: 40px;
    border-radius: 13px;
    background: var(--hv-secondary-soft);
    border: 1px solid var(--hv-border);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--hv-text);
    font-size: 16px;
    transition: all .16s ease;
}
.site-cart:hover { background: var(--hv-primary-soft); color: var(--hv-primary); border-color: #ffd9c2; }
.cart-badge {
    position: absolute;
    top: -5px; right: -5px;
    min-width: 19px; height: 19px;
    border-radius: 99px;
    background: var(--hv-grad);
    color: #fff;
    font-size: 10.5px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5px;
    box-shadow: 0 3px 8px rgba(var(--hv-primary-rgb), .4);
}

.site-burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 42px; height: 42px;
    border-radius: 13px;
    background: var(--hv-secondary-soft);
    border: 1px solid var(--hv-border);
    padding: 0 11px;
    cursor: pointer;
}
.site-burger span {
    height: 2.4px;
    border-radius: 99px;
    background: var(--hv-text);
    transition: transform .25s ease, opacity .2s ease;
}
.site-burger.open span:nth-child(1) { transform: translateY(7.4px) rotate(45deg); }
.site-burger.open span:nth-child(2) { opacity: 0; }
.site-burger.open span:nth-child(3) { transform: translateY(-7.4px) rotate(-45deg); }

/* ---------- Mobil Drawer ---------- */
.drawer-backdrop {
    position: fixed; inset: 0;
    background: rgba(23, 24, 31, .55);
    backdrop-filter: blur(3px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .28s ease;
    z-index: 1040;
}
.drawer-backdrop.show { opacity: 1; pointer-events: auto; }
.site-drawer {
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: min(330px, 88vw);
    background: #fff;
    z-index: 1050;
    transform: translateX(105%);
    transition: transform .32s cubic-bezier(.25, .8, .3, 1);
    display: flex;
    flex-direction: column;
    border-radius: 24px 0 0 24px;
    box-shadow: -18px 0 50px rgba(23, 24, 31, .2);
    overflow-y: auto;
}
.site-drawer.open { transform: translateX(0); }
.drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.2rem 1.3rem;
    border-bottom: 1px solid var(--hv-border);
}
.drawer-close {
    width: 36px; height: 36px;
    border-radius: 12px;
    background: var(--hv-secondary-soft);
    border: none;
    color: var(--hv-text);
    font-size: 14px;
}
.drawer-nav { padding: .9rem 1rem; display: flex; flex-direction: column; gap: .15rem; }
.drawer-link {
    display: flex;
    align-items: center;
    padding: .72rem .85rem;
    border-radius: 14px;
    color: var(--hv-text);
    font-weight: 700;
    font-size: 14px;
}
.drawer-link:hover { background: var(--hv-primary-soft); color: var(--hv-primary-dark); }
.drawer-link.active { background: var(--hv-grad); color: #fff; box-shadow: 0 5px 14px rgba(var(--hv-primary-rgb), .3); }
.drawer-link.active .bi { color: #fff !important; }
.drawer-foot { padding: 1.1rem 1.3rem 1.4rem; margin-top: auto; border-top: 1px solid var(--hv-border); }
.drawer-contact { display: flex; flex-direction: column; gap: .3rem; margin-top: .9rem; font-size: 12.5px; color: var(--hv-text-muted); font-weight: 600; }
.drawer-langs { margin-top: .8rem; }
.drawer-langs .btn.active { background: var(--hv-grad); color: #fff; border-color: transparent; }
.drawer-group {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .09em;
    color: var(--hv-text-soft);
    padding: .8rem .9rem .3rem;
}

/* ---------- Hero (oweb .main--intro tarzı intro kart) ---------- */
.pub-hero {
    position: relative;
    padding: clamp(1.6rem, 3.6vw, 2.8rem) 0 clamp(2.2rem, 5vw, 3.6rem);
    overflow: hidden;
}
.intro-card {
    position: relative;
    z-index: 1;
    background: #fff;
    border: 1px solid var(--hv-border);
    border-radius: 16px;
    padding: clamp(20px, 3vw, 32px);
    box-shadow: 0 4px 26px rgba(23, 24, 31, .05);
}
.is--feature {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    height: 100%;
}
.is--feature .icon {
    min-width: 44px;
    width: 44px; height: 44px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--hv-primary);
    font-size: 19px;
    background: rgba(var(--hv-primary-rgb), .1);
    border-radius: 9px;
}
.is--feature .text span { display: block; font-weight: 700; color: var(--hv-text); font-size: 14px; }
.is--feature .text p { margin: 0; font-size: 13px; color: var(--hv-text-muted); font-weight: 500; }
.intro-kicker {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    background: linear-gradient(45deg, rgba(var(--hv-primary-rgb), .1), rgba(250, 167, 51, .14));
    color: var(--hv-primary-dark);
    font-size: 12.5px;
    font-weight: 800;
    padding: 7px 14px;
    border-radius: 99px;
    margin-bottom: .9rem;
}
.pub-hero h1 {
    font-size: clamp(1.85rem, 4.2vw, 3.05rem);
    line-height: 1.16;
    letter-spacing: -.032em;
    font-weight: 800;
}
.pub-hero .lead { color: var(--hv-text-muted); font-size: clamp(14.5px, 1.4vw, 16.5px); max-width: 540px; }
.hero-trust { font-size: 13px; font-weight: 700; gap: .5rem 1.1rem !important; }
.hero-trust .bi { color: var(--hv-success); }

.hero-card { border-radius: var(--hv-radius-lg) !important; position: relative; z-index: 1; }
.hero-card .fw-800.fs-4 { color: var(--hv-heading); }

/* ---------- Koyu Domain Bandı ---------- */
.domain-section {
    position: relative;
    padding: 0 14px;
    margin: clamp(1.4rem, 3vw, 2.4rem) 0;
}
.domain-band {
    background:
        radial-gradient(58% 90% at 78% 8%, rgba(250, 167, 51, .18) 0%, transparent 60%),
        radial-gradient(40% 70% at 8% 96%, rgba(var(--hv-primary-rgb), .12) 0%, transparent 62%),
        var(--hv-dark);
    border-radius: 30px;
    padding: clamp(2.2rem, 5vw, 3.6rem) clamp(1.2rem, 4vw, 3.4rem);
    color: #fff;
    position: relative;
    overflow: hidden;
}
.domain-band .kicker-pill {
    background: rgba(250, 167, 51, .14);
    color: #ffb469;
    border: 1px solid rgba(250, 167, 51, .3);
}
.domain-band h2 { color: #fff; font-size: clamp(1.45rem, 3vw, 2.2rem); }
.domain-band p { color: #a6adc6; }

.domain-search-box {
    display: flex;
    gap: .6rem;
    background: #fff;
    border-radius: 99px;
    padding: .45rem .55rem .45rem 1.35rem;
    max-width: 720px;
    box-shadow: 0 18px 44px rgba(0, 0, 0, .3);
    align-items: center;
}
.domain-search-box i { color: var(--hv-text-soft); font-size: 17px; }
.domain-search-box input {
    border: none;
    outline: none;
    flex: 1;
    font-size: 15px;
    font-weight: 600;
    color: var(--hv-text);
    background: transparent;
    min-width: 0;
    padding: .5rem 0;
}
.domain-search-box input::placeholder { color: #aeb4c9; font-weight: 500; }
.domain-band-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .4rem 1.6rem;
    margin-top: 1.5rem;
}
.domain-band-links a {
    color: #c3c9dd;
    font-size: 13.5px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: .45rem;
}
.domain-band-links a .bi { color: var(--hv-accent); }
.domain-band-links a:hover { color: #fff; }

/* ---------- TLD Chip ---------- */
.tld-chip {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: #fff;
    border: 1px solid var(--hv-border);
    border-radius: 13px;
    padding: .5rem .95rem;
    font-size: 13.5px;
    color: var(--hv-text-muted);
    font-weight: 600;
    transition: all .16s ease;
    box-shadow: 0 2px 8px rgba(23, 24, 31, .04);
}
.tld-chip strong { color: var(--hv-primary); font-weight: 800; }
.tld-chip:hover { border-color: #ffb98d; transform: translateY(-2px); color: var(--hv-text); }

/* ---------- Section sistemi ---------- */
.section-pad { padding: clamp(3rem, 6vw, 4.8rem) 0; }
.section-alt { background: transparent; }
.sec-head { text-align: center; max-width: 660px; margin: 0 auto clamp(2rem, 4vw, 3rem); }
.sec-head-row { display: flex; align-items: flex-end; justify-content: space-between; text-align: left; max-width: none; }
.sec-head h2 { font-size: clamp(1.5rem, 3.2vw, 2.25rem); letter-spacing: -.028em; }
.sec-head p { color: var(--hv-text-muted); margin: .6rem auto 0; max-width: 560px; }
.sec-head-row p { margin-left: 0; }
.sec-kicker {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    color: var(--hv-primary);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .05em;
    text-transform: uppercase;
    margin-bottom: .55rem;
}
.sec-head::after {
    content: '';
    display: block;
    width: 58px; height: 4px;
    border-radius: 99px;
    background: var(--hv-grad);
    margin: 1.1rem auto 0;
}
.sec-head-row::after { margin-left: 0; }

.kicker-pill {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    background: var(--hv-primary-soft);
    color: var(--hv-primary-dark);
    font-size: 12.5px;
    font-weight: 800;
    padding: .42rem 1rem;
    border-radius: 99px;
    margin-bottom: 1rem;
}
.kicker-pill-sm { font-size: 11.5px; padding: .3rem .8rem; margin-bottom: .7rem; }
.tld-chip-dark {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: #fff;
    border: 1px solid var(--hv-border);
    border-radius: 13px;
    padding: .5rem .95rem;
    font-size: 13.5px;
    color: var(--hv-text-muted);
    font-weight: 600;
    transition: all .16s ease;
    box-shadow: 0 2px 8px rgba(23, 24, 31, .04);
}
.tld-chip-dark strong { color: var(--hv-primary); font-weight: 800; }
.tld-chip-dark:hover { border-color: #ffb98d; transform: translateY(-2px); color: var(--hv-text); }

/* ---------- Hizmet Grup Kartları (accent bar + ikon çipi) ---------- */
.group-card { position: relative; overflow: hidden; border-radius: 20px; }
.group-card::before {
    content: '';
    position: absolute;
    left: 0; top: 22%;
    width: 4px; height: 52%;
    border-radius: 99px;
    background: var(--hv-grad);
}
.group-card .feature-icon { position: absolute; top: 1.2rem; right: 1.2rem; margin: 0; }
.group-card h5 { margin-top: .9rem; }

.feature-icon {
    width: 52px; height: 52px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 1rem;
    flex-shrink: 0;
}

/* ---------- Fiyat Kartları ---------- */
.price-card { border-radius: 22px; padding: 1.6rem !important; display: flex; flex-direction: column; }
.price-value {
    font-size: clamp(1.7rem, 3vw, 2.1rem);
    font-weight: 800;
    color: var(--hv-heading);
    letter-spacing: -.03em;
}
.price-card .plan-list { flex-grow: 0; }
.price-card .btn { margin-top: auto; }

.price-card.is-dark {
    background:
        radial-gradient(70% 90% at 85% 0%, rgba(250, 167, 51, .2) 0%, transparent 55%),
        var(--hv-dark);
    border: none;
    color: #c3c9dd;
}
.price-card.is-dark h5, .price-card.is-dark .price-value { color: #fff; }
.price-card.is-dark .plan-list li { color: #b9bf d4; color: #b9bfd4; }
.price-card.is-dark .plan-list .bi { color: var(--hv-accent) !important; }
.price-card.popular { border: 2px solid #ffb184; }
.price-card .popular-flag {
    position: absolute;
    top: -13px; left: 50%;
    transform: translateX(-50%);
    background: var(--hv-grad);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .05em;
    padding: .3rem 1rem;
    border-radius: 99px;
    box-shadow: 0 5px 14px rgba(var(--hv-primary-rgb), .4);
    white-space: nowrap;
}

.plan-list li { padding: .42rem 0; font-size: 14px; color: var(--hv-text-muted); font-weight: 600; display: flex; align-items: flex-start; gap: .55rem; }
.plan-list .bi { color: var(--hv-success); margin-top: .18rem; font-size: 13px; }

/* ---------- Koyu İstatistik Bandı ---------- */
.stat-band {
    background:
        radial-gradient(60% 120% at 88% 0%, rgba(250, 167, 51, .16) 0%, transparent 55%),
        var(--hv-dark);
    border-radius: 30px;
    padding: clamp(2rem, 4.5vw, 3.2rem) clamp(1.4rem, 4vw, 3rem);
    color: #fff;
    margin: 0 14px;
}
.stat-band-value {
    font-size: clamp(1.7rem, 3.4vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -.03em;
    background: linear-gradient(135deg, var(--hv-accent), var(--hv-primary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.stat-band-label { color: #8f97b2; font-size: 13px; font-weight: 700; margin-top: .15rem; }

/* ---------- Referanslar (koyu bölüm) ---------- */
.testi-section {
    background:
        radial-gradient(50% 80% at 12% 0%, rgba(250, 167, 51, .08) 0%, transparent 60%),
        var(--hv-dark);
    color: #fff;
}
.testi-section .sec-head h2 { color: #fff; }
.testi-section .sec-head p { color: #8f97b2; }
.testi-card {
    background: rgba(255, 255, 255, .045);
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 22px;
    position: relative;
    color: #c3c9dd;
}
.testi-card p { color: #c3c9dd; }
.testi-card strong { color: #fff; }
.testi-stars .bi { color: var(--hv-accent); font-size: 13px; }
.testi-card::after {
    content: '\201D';
    position: absolute;
    top: .4rem; right: 1.4rem;
    font-size: 64px;
    line-height: 1;
    font-family: Georgia, serif;
    color: rgba(250, 167, 51, .35);
    pointer-events: none;
}

/* ---------- SSS ---------- */
.faq-accordion { display: flex; flex-direction: column; gap: .8rem; }
.faq-accordion .accordion-item {
    border: 1px solid var(--hv-border);
    border-radius: 18px !important;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 10px rgba(23, 24, 31, .04);
    margin-bottom: 0;
}
.faq-accordion .accordion-button {
    font-weight: 800;
    font-size: 14.5px;
    color: var(--hv-heading);
    padding: 1.05rem 1.3rem;
    background: #fff;
    box-shadow: none;
}
.faq-accordion .accordion-button:not(.collapsed) { color: var(--hv-primary-dark); background: #fff; }
.faq-accordion .accordion-button::after {
    background-image: none;
    content: '\F282';
    font-family: bootstrap-icons !important;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px; height: 30px;
    border-radius: 10px;
    background-color: var(--hv-primary-soft);
    color: var(--hv-primary);
    font-size: 13px;
    transform: none;
    transition: transform .25s ease;
}
.faq-accordion .accordion-button:not(.collapsed)::after { transform: rotate(180deg); }
.faq-accordion .accordion-body { color: var(--hv-text-muted); padding: .2rem 1.3rem 1.2rem; font-size: 14px; }

/* ---------- Blog kartları ---------- */
.blog-card .fs-12 { color: var(--hv-primary); font-weight: 800; }
.blog-card h5 { transition: color .16s ease; }
.blog-card:hover h5 { color: var(--hv-primary-dark); }

/* ---------- CTA bandı ---------- */
.cta-band {
    background:
        radial-gradient(55% 100% at 90% 0%, rgba(250, 167, 51, .22) 0%, transparent 55%),
        radial-gradient(45% 80% at 4% 100%, rgba(var(--hv-primary-rgb), .16) 0%, transparent 60%),
        var(--hv-dark);
    border-radius: 30px;
    padding: clamp(1.8rem, 4vw, 3rem);
}
.cta-band .contact-card { border-radius: 20px; }

/* ---------- Koyu bölüm içi sayfa hero'su ---------- */
.page-hero {
    background:
        radial-gradient(50% 100% at 85% 0%, rgba(250, 167, 51, .16) 0%, transparent 58%),
        var(--hv-dark);
    border-radius: 0 0 34px 34px;
    color: #fff;
    padding: clamp(2.2rem, 5vw, 3.8rem) 0;
    margin-bottom: clamp(1.8rem, 4vw, 3rem);
}
.page-hero h1 { color: #fff; font-size: clamp(1.6rem, 3.6vw, 2.5rem); }
.page-hero p { color: #a6adc6; max-width: 640px; }
.page-hero .breadcrumb-item a { color: #8f97b2; }
.page-hero .breadcrumb-item.active { color: var(--hv-accent); }

/* ---------- Footer (oweb birebir: destek şeridi + koyu içerik + alt butonlar) ---------- */
.site-footer {
    background: var(--hv-dark);
    color: #a6adc6;
    margin-top: clamp(3rem, 6vw, 4.5rem);
    position: relative;
}

/* --- Destek şeridi --- */
.footer--support { padding: 26px 0; background: var(--hv-dark); }
.footer--support .support-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 12px;
}
.footer--support .item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, .024);
    border: 1px solid rgba(255, 255, 255, .063);
    padding: 10px 12px;
    border-radius: 12px;
    transition: all .2s ease;
}
.footer--support .item:hover { background: rgba(255, 255, 255, .05); border-color: rgba(250, 167, 51, .35); }
.footer--support .item .icon {
    width: 50px; min-width: 50px; height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--hv-accent);
    font-size: 20px;
    background: rgba(255, 255, 255, .031);
    border-radius: 9px;
}
.footer--support .item .text {
    line-height: 20px;
    color: #767b8b;
    font-weight: 500;
    font-size: 13px;
    min-width: 0;
}
.footer--support .item .text strong { display: block; color: #fff; font-size: 13.5px; font-weight: 700; }
.footer--support .item .text { overflow: hidden; text-overflow: ellipsis; }

/* --- Ana içerik --- */
.footer--content { background-color: #1b1c24; }
.footer--content .top-side { padding: 30px 0; display: flex; align-items: center; flex-wrap: wrap; gap: 20px; }
.footer--content .top-side .footer-logo img { height: 40px; }
.brand-white { font-size: 22px; font-weight: 800; letter-spacing: -.04em; color: #fff; }
.brand-white span { color: var(--hv-primary); }
.footer--content .top-side .description {
    padding-left: 20px;
    margin-left: 6px;
    border-left: 1px solid rgba(255, 255, 255, .063);
    flex: 1 1 320px;
}
.footer--content .top-side .description p { margin: 0; color: #cbcdd8; max-width: 700px; font-size: 14.5px; line-height: 1.65; }
.footer--content .top-side .social-links { margin-left: auto; display: flex; gap: 8px; }
.footer--content .top-side .social-links .link {
    width: 44px; min-width: 44px; height: 44px;
    border-radius: 9px;
    background-color: rgba(255, 255, 255, .031);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 17px;
    color: #fff;
    transition: all .2s ease;
}
.footer--content .top-side .social-links .link:hover { background: var(--hv-grad); color: #fff; transform: translateY(-3px); }

.footer--content .nav-area { position: relative; padding-bottom: 40px; }
.footer--content .nav--title {
    font-size: 15px;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: .03em;
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 4px;
    z-index: 1;
    color: var(--hv-accent);
}
.footer--content .nav--title::before {
    content: '';
    position: absolute;
    left: 0; bottom: 0;
    height: 1px; width: 100%;
    background: linear-gradient(to right, var(--hv-accent), transparent);
    z-index: -1;
    opacity: .2;
}
.footer--content .nav--title::after {
    content: '';
    position: absolute;
    left: 0; bottom: -2px;
    height: 4px; width: 40px;
    border-radius: 6px;
    background: var(--hv-accent);
    z-index: -1;
}
.footer--content .nav--list {
    position: relative;
    margin: 0;
    margin-top: 16px;
    padding: 0;
    list-style: none;
}
.footer--content .nav--list li {
    position: relative;
    padding: 3px 0 3px 18px;
    margin-bottom: 5px;
}
.footer--content .nav--list li::before {
    content: '';
    position: absolute;
    left: 0; top: 50%;
    transform: translateY(-50%);
    width: 4px; height: 4px;
    border-radius: 10px;
    background: var(--hv-accent);
    transition: all .2s ease;
}
.footer--content .nav--list li:hover::before { width: 8px; }
.footer--content .nav--list a {
    color: #9aa3bd;
    font-size: 13.5px;
    font-weight: 600;
    transition: color .16s ease;
}
.footer--content .nav--list a:hover { color: var(--hv-accent); }

/* --- Alt şerit --- */
.footer--bottom { padding: 20px 0 24px; background: #1b1c24; border-top: 1px solid rgba(255, 255, 255, .05); }
.footer--bottom .navs { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 8px; margin-bottom: 20px; }
.footer--bottom .navs .nav-link {
    position: relative;
    display: flex;
    align-items: center;
    gap: 6px;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    padding: 10px 20px;
    border: 1px solid rgba(255, 255, 255, .063);
    background: transparent;
    transition: all .2s ease;
    border-radius: 8px;
}
.footer--bottom .navs .nav-link:hover { border-color: rgba(255, 255, 255, .09); background: rgba(255, 255, 255, .024); }
.footer--bottom .navs .nav-link i { color: var(--hv-accent); }
.footer--bottom .copy { font-size: 12.5px; color: #6d7590; font-weight: 600; }
.footer--bottom .copy .bi { color: var(--hv-accent); }
.footer--bottom .addr { font-size: 12.5px; color: #565d75; font-weight: 500; }
.footer--bottom .addr .bi { color: var(--hv-accent); }

/* ---------- Back to top ---------- */
.back-to-top {
    position: fixed;
    right: 22px; bottom: 22px;
    width: 48px; height: 48px;
    border-radius: 16px;
    border: none;
    background: var(--hv-grad);
    color: #fff;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--hv-shadow-orange);
    opacity: 0;
    pointer-events: none;
    transform: translateY(14px);
    transition: all .28s ease;
    z-index: 1020;
}
.back-to-top.show { opacity: 1; pointer-events: auto; transform: translateY(0); }
.back-to-top:hover { transform: translateY(-4px); }

/* ---------- Auth ---------- */
.auth-wrap {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background:
        radial-gradient(46% 60% at 82% 12%, rgba(250, 167, 51, .17) 0%, transparent 60%),
        radial-gradient(40% 52% at 10% 88%, rgba(var(--hv-primary-rgb), .13) 0%, transparent 62%),
        var(--hv-bg);
}
.auth-card { width: 100%; max-width: 470px; }
.auth-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .7rem;
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -.04em;
    margin-bottom: 1.4rem;
}

/* ---------- Kurulum ---------- */
.install-steps { display: flex; flex-direction: column; gap: .55rem; margin-bottom: 1.4rem; }
.install-steps .step {
    display: flex;
    align-items: center;
    gap: .7rem;
    padding: .6rem .9rem;
    border-radius: 12px;
    background: var(--hv-secondary-soft);
    color: var(--hv-text-muted);
    font-size: 13px;
    font-weight: 700;
}
.install-steps .step.active { background: var(--hv-primary-soft); color: var(--hv-primary-dark); }
.install-steps .step.done { background: var(--hv-success-soft); color: #0e8a5e; }

/* =========================================================
   ORANGESOFT — PANELLER (Admin + Müşteri)
   ========================================================= */

/* ---------- Admin Sidebar (koyu) ---------- */
.hv-sidebar {
    position: fixed;
    top: 0; left: 0; bottom: 0;
    width: 264px;
    background: var(--hv-dark);
    z-index: 1040;
    overflow-y: auto;
    padding: 1.3rem .95rem 2rem;
    transition: transform .3s cubic-bezier(.25, .8, .3, 1);
    scrollbar-width: thin;
    scrollbar-color: rgba(255,255,255,.14) transparent;
}
.hv-sidebar .brand {
    display: flex;
    align-items: center;
    gap: .65rem;
    color: #fff;
    font-size: 19px;
    font-weight: 800;
    letter-spacing: -.04em;
    padding: .3rem .5rem 1.15rem;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    margin-bottom: 1.05rem;
}
.hv-nav { display: flex; flex-direction: column; gap: .14rem; }
.hv-nav .section {
    font-size: 10.5px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: #6d7590;
    padding: 1rem .75rem .4rem;
}
.hv-nav a {
    display: flex;
    align-items: center;
    gap: .7rem;
    color: #9aa3bd;
    font-size: 13.5px;
    font-weight: 700;
    padding: .58rem .8rem;
    border-radius: 13px;
    transition: all .16s ease;
}
.hv-nav a .bi { font-size: 15.5px; width: 20px; text-align: center; }
.hv-nav a:hover { color: #fff; background: rgba(255, 255, 255, .06); }
.hv-nav a.active {
    color: #fff;
    background: var(--hv-grad);
    box-shadow: 0 6px 16px rgba(var(--hv-primary-rgb), .35);
}
.hv-backdrop {
    position: fixed; inset: 0;
    background: rgba(23, 24, 31, .55);
    backdrop-filter: blur(3px);
    z-index: 1035;
    opacity: 0;
    pointer-events: none;
    transition: opacity .26s ease;
}
.hv-backdrop.show { opacity: 1; pointer-events: auto; }

/* ---------- Admin Ana Alan ---------- */
.hv-main {
    margin-left: 264px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: var(--hv-bg);
}
.hv-topbar {
    position: sticky;
    top: 12px;
    z-index: 1020;
    margin: 12px 18px 0;
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--hv-border);
    border-radius: 18px;
    box-shadow: 0 4px 20px rgba(23, 24, 31, .06);
    padding: .6rem .9rem;
    display: flex;
    align-items: center;
    gap: .8rem;
}
.hv-burger {
    display: none;
    width: 40px; height: 40px;
    border-radius: 13px;
    background: var(--hv-secondary-soft);
    border: 1px solid var(--hv-border);
    color: var(--hv-text);
    font-size: 18px;
    align-items: center;
    justify-content: center;
}
.hv-search {
    position: relative;
    display: flex;
    align-items: center;
    gap: .5rem;
    background: var(--hv-secondary-soft);
    border: 1px solid var(--hv-border);
    border-radius: 99px;
    padding: .42rem 1rem;
    width: min(430px, 100%);
    color: var(--hv-text-soft);
}
.hv-search input {
    border: none;
    background: transparent;
    outline: none;
    font-size: 13.5px;
    width: 100%;
    color: var(--hv-text);
    font-weight: 600;
}
.hv-search-results {
    position: absolute;
    top: calc(100% + 8px);
    left: 0; right: 0;
    background: #fff;
    border: 1px solid var(--hv-border);
    border-radius: 16px;
    box-shadow: var(--hv-shadow-lg);
    display: none;
    overflow: hidden;
    z-index: 500;
}
.hv-search-results.show { display: block; }
.hv-search-results > a {
    display: flex;
    align-items: center;
    gap: .6rem;
    padding: .65rem .95rem;
    color: var(--hv-text);
    font-weight: 600;
    font-size: 13.5px;
}
.hv-search-results > a:hover { background: var(--hv-primary-soft); color: var(--hv-primary-dark); }
.hv-search-results .tag {
    background: var(--hv-primary-soft);
    color: var(--hv-primary-dark);
    font-size: 10.5px;
    font-weight: 800;
    padding: .18em .6em;
    border-radius: 99px;
    text-transform: uppercase;
    letter-spacing: .04em;
}
.hv-content { padding: 1.5rem 18px 3rem; flex: 1; }
.hv-content-wide { max-width: 1280px; margin: 0 auto; }

/* ---------- Panel istatistik kartları ---------- */
.stat-card {
    background: #fff;
    border: 1px solid var(--hv-border);
    border-radius: 20px;
    padding: 1.25rem 1.35rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: var(--hv-shadow);
    transition: transform .2s ease, box-shadow .2s ease;
    height: 100%;
}
.stat-card:hover { transform: translateY(-3px); box-shadow: var(--hv-shadow-lg); }
.stat-icon {
    width: 54px; height: 54px;
    border-radius: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 23px;
    flex-shrink: 0;
}
.stat-value { font-size: 22px; font-weight: 800; letter-spacing: -.02em; color: var(--hv-heading); line-height: 1.2; }
.stat-label { font-size: 12.5px; color: var(--hv-text-muted); font-weight: 700; }
.stat-trend { font-size: 12px; font-weight: 800; }
.stat-trend.up { color: var(--hv-success); }
.stat-trend.down { color: var(--hv-danger); }

.chart-wrap { position: relative; }
.chart-wrap-sm { position: relative; height: 240px; }

/* ---------- Timeline ---------- */
.timeline { position: relative; padding-left: 1.6rem; }
.timeline::before {
    content: '';
    position: absolute;
    left: 7px; top: 6px; bottom: 6px;
    width: 2px;
    border-radius: 99px;
    background: linear-gradient(180deg, #ffd9c2, var(--hv-primary));
    opacity: .5;
}
.timeline-item { position: relative; padding-bottom: 1.25rem; }
.timeline-item::before {
    content: '';
    position: absolute;
    left: -1.6rem; top: .32rem;
    width: 16px; height: 16px;
    border-radius: 50%;
    background: #fff;
    border: 3.5px solid var(--hv-primary);
    box-shadow: 0 0 0 4px rgba(var(--hv-primary-rgb), .15);
}

/* ---------- Fatura ---------- */
.invoice-box { background: #fff; border-radius: 22px; padding: clamp(1.4rem, 3vw, 2.4rem); border: 1px solid var(--hv-border); box-shadow: var(--hv-shadow); }
.invoice-brand { font-size: 21px; font-weight: 800; letter-spacing: -.04em; color: var(--hv-heading); }

/* ---------- Sepet & Checkout ---------- */
.cart-item {
    display: flex;
    gap: 1rem;
    align-items: center;
    background: #fff;
    border: 1px solid var(--hv-border);
    border-radius: 18px;
    padding: 1rem 1.2rem;
    box-shadow: var(--hv-shadow);
}
.cart-summary { background: #fff; border: 1px solid var(--hv-border); border-radius: 22px; padding: 1.5rem; box-shadow: var(--hv-shadow); position: sticky; top: 96px; }
.sticky-actions { position: sticky; bottom: 1rem; z-index: 10; }

/* ---------- Domain arama sonuçları ---------- */
.domain-search-box.on-light { box-shadow: var(--hv-shadow); border: 1.5px solid var(--hv-border); }

/* ---------- Müşteri paneli üst nav (oweb düz bar tarzı) ---------- */
.pub-navbar {
    position: sticky;
    top: 0;
    z-index: 1030;
    background: rgba(255, 255, 255, .96);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(232, 233, 243, .9);
    padding: .62rem 0;
    margin: 0;
}
.pub-navbar .nav-link {
    color: var(--hv-text);
    font-weight: 700;
    font-size: 13.5px;
    padding: .48rem .85rem;
    border-radius: 10px;
    transition: all .16s ease;
}
.pub-navbar .nav-link:hover { color: var(--hv-primary); background: var(--hv-primary-soft); }
.pub-navbar .nav-link.active { color: var(--hv-primary); background: var(--hv-primary-soft); }

/* ---------- Mobil alt nav ---------- */
.mobile-nav {
    position: fixed;
    left: 12px; right: 12px; bottom: 10px;
    background: rgba(255, 255, 255, .96);
    backdrop-filter: blur(14px);
    border: 1px solid var(--hv-border);
    border-radius: 20px;
    box-shadow: 0 -4px 30px rgba(23, 24, 31, .12);
    display: none;
    justify-content: flex-start;
    gap: 2px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: .45rem .3rem;
    z-index: 1030;
}
.mobile-nav::-webkit-scrollbar { display: none; }
.mobile-nav a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .12rem;
    color: var(--hv-text-muted);
    font-size: 10.5px;
    font-weight: 700;
    padding: .3rem .4rem;
    border-radius: 13px;
    min-width: 48px;
    flex: 0 0 auto;
}
.mobile-nav a .bi { font-size: 17px; }
.mobile-nav a.active { color: var(--hv-primary-dark); background: var(--hv-primary-soft); }

/* ---------- Eski public navbar uyumu ---------- */
.pub-footer { text-align: center; color: var(--hv-text-muted); font-size: 13px; padding: 2rem 0; }

/* ---------- Splash/Contact kart ---------- */
.contact-card { box-shadow: var(--hv-shadow-lg); border: none; }

/* =========================================================
   RESPONSIVE — Mobil Öncelikli İnce Ayar
   ========================================================= */

@media (max-width: 1399.98px) {
    .hv-navbar .nav-link { padding: .5rem .62rem; font-size: 13px; }
}

@media (max-width: 1199.98px) {
    .site-burger { display: flex; }
    .dash--statu { display: none !important; }
}

@media (max-width: 1199.98px) {
    .hv-search { width: min(320px, 100%); }
}

@media (max-width: 991.98px) {
    .site-brand-text { font-size: 18px; }
    .logo-dot { width: 34px; height: 34px; font-size: 14px; }
    .hv-header { padding: .65rem 0; }

    .pub-hero { text-align: left; }

    .domain-band { border-radius: 22px; }
    .domain-search-box { flex-direction: row; padding: .4rem .45rem .4rem 1rem; }
    .domain-search-box .btn { padding: .55rem 1.1rem; }

    .stat-band { border-radius: 22px; margin: 0 10px; }
    .page-hero { border-radius: 0 0 24px 24px; }
    .cta-band { border-radius: 22px; }

    /* Admin off-canvas */
    .hv-sidebar { transform: translateX(-104%); box-shadow: 24px 0 60px rgba(0, 0, 0, .3); }
    .hv-sidebar.open { transform: translateX(0); }
    .hv-main { margin-left: 0; }
    .hv-burger { display: flex; }
    .hv-topbar { top: 8px; margin: 10px 12px 0; }

    /* Müşteri paneli mobil alt nav */
    .mobile-nav { display: flex; }
    body { padding-bottom: 84px; }
}

@media (max-width: 767.98px) {
    body { font-size: 14px; }
    .section-pad { padding: 2.3rem 0; }
    .sec-head { margin-bottom: 1.6rem; }
    .sec-head-row { flex-direction: column; align-items: flex-start; gap: .7rem; }
    .price-card { padding: 1.35rem !important; }
    .price-card.popular { margin-top: 14px; }
    .stat-band { padding: 1.6rem 1.2rem; }
    .stat-band .col-6 { margin-bottom: 1.1rem; }
    .stat-band .col-6:nth-last-child(-n+2) { margin-bottom: 0; }
    .footer--support .support-items { grid-template-columns: 1fr 1fr; }
    .footer--support .item { padding: 9px 10px; }
    .footer--support .item .icon { width: 40px; min-width: 40px; height: 40px; font-size: 16px; border-radius: 9px; }
    .footer--support .item .text strong { font-size: 12.5px; }
    .footer--support .item .text { font-size: 12px; line-height: 17px; }
    .footer--content .top-side { flex-direction: column; align-items: flex-start; }
    .footer--content .top-side .description { border-left: none; padding-left: 0; margin-left: 0; }
    .footer--content .top-side .social-links { margin-left: 0; }
    .footer--content .nav-area { padding-bottom: 26px; }
    .footer--bottom .navs { margin-bottom: 14px; }
    .hv-content { padding: 1.1rem 12px 2.4rem; }
    .hv-topbar { margin: 8px 10px 0; padding: .5rem .7rem; }
    .card-body { padding: 1.05rem; }
    .btn { font-size: 13.5px; }
    .btn-lg { padding: .68rem 1.35rem; font-size: 14px; }
    .auth-wrap { padding: 1rem; }
    .back-to-top { right: 14px; bottom: 92px; width: 42px; height: 42px; }
}

@media (max-width: 575.98px) {
    .domain-search-box { border-radius: 22px; flex-wrap: wrap; padding: .55rem; }
    .domain-search-box input { flex: 1 1 100%; padding: .45rem .6rem .65rem; }
    .domain-search-box .btn { width: 100%; }
    .footer--support .support-items { grid-template-columns: 1fr; }
    .hero-trust { gap: .4rem .9rem !important; font-size: 12.5px; }
    .mobile-nav { left: 8px; right: 8px; }
    .tld-chip { padding: .42rem .75rem; font-size: 12.5px; }
}

/* ---------- Table mobil kart görünümü ---------- */
@media (max-width: 575.98px) {
    .table-mobile .table:not(.keep-table) thead { display: none; }
    .table-mobile .table:not(.keep-table) tbody tr {
        display: block;
        background: #fff;
        border: 1px solid var(--hv-border);
        border-radius: 16px;
        margin-bottom: .7rem;
        padding: .4rem 0;
        box-shadow: 0 2px 8px rgba(23, 24, 31, .04);
    }
    .table-mobile .table:not(.keep-table) tbody td {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 1rem;
        border: none;
        padding: .38rem 1rem;
        text-align: right;
    }
    .table-mobile .table:not(.keep-table) tbody td::before {
        content: attr(data-label);
        font-size: 11px;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: .06em;
        color: var(--hv-text-soft);
        text-align: left;
    }
}

/* ---------- Geniş ekran cilası ---------- */
@media (min-width: 1600px) {
    .site-header .container-xl, .hv-content-wide { max-width: 1380px; }
}

/* ---------- Erişilebilirlik: animasyon azaltma ---------- */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
    html { scroll-behavior: auto; }
}

/* ---------- Yazdırma ---------- */
@media print {
    .site-header, .site-footer, .back-to-top, .drawer-backdrop, .site-drawer,
    .hv-sidebar, .hv-topbar, .mobile-nav, .btn, #toastArea { display: none !important; }
    body { background: #fff; }
    .hv-main { margin-left: 0; }
}

/* =========================================================
   FAZ 18 — Yeni bölüm bileşenleri (v1.3.0)
   ========================================================= */
.fs-14 { font-size: 14px !important; }
.min-w-0 { min-width: 0; }
.dot-primary { background: var(--hv-primary) !important; }

/* ---- Teknoloji şeridi (home) ---- */
.tech-strip { padding: 1.2rem 0 2.6rem; }
.tech-chip {
    display: inline-flex; align-items: center; gap: .45rem;
    padding: .5rem 1rem; border-radius: var(--hv-radius-pill);
    background: var(--hv-surface); border: 1px solid var(--hv-border);
    font-size: 13px; font-weight: 700; color: var(--hv-text-muted);
    box-shadow: var(--hv-shadow); transition: transform .18s ease, color .18s ease, border-color .18s ease;
}
.tech-chip i { color: var(--hv-primary); font-size: 14px; }
.tech-chip:hover { transform: translateY(-2px); color: var(--hv-text); border-color: #ffd9c2; }

/* ---- Karşılaştırma (home teaser + neden-biz tablosu) ---- */
.compare-teaser { border-top: 4px solid transparent; background: linear-gradient(#fff, #fff) padding-box, var(--hv-grad) border-box; }
.mini-compare {
    display: flex; align-items: center; gap: .5rem;
    padding: .7rem .9rem; border-radius: var(--hv-radius-sm);
    font-size: 13px; font-weight: 600; background: var(--hv-bg);
}
.mini-compare i { font-size: 15px; }
.mini-compare.ok { color: var(--hv-success); background: var(--hv-success-soft); }
.mini-compare.no { color: #b04a4a; background: #fdecec; }
.mini-compare.no i { color: #dc2626; opacity: .8; }
.compare-table td { padding: .8rem 1rem; vertical-align: middle; }
.compare-table tbody tr:last-child td { border-bottom: 0; }

/* ---- Veri merkezi kartları ---- */
.dc-card { transition: transform .18s ease, box-shadow .18s ease; }
.dc-card:hover { transform: translateY(-3px); box-shadow: 0 14px 34px rgba(var(--hv-primary-rgb), .14); }
.dc-mini { transition: transform .18s ease, border-color .18s ease; border: 1px solid var(--hv-border); }
.dc-mini:hover { transform: translateY(-2px); border-color: #ffd9c2; }

/* ---- Transfer teaser (home) ---- */
.transfer-teaser { border-left: 4px solid var(--hv-primary); }

/* ---- Adım numarası (transfer) ---- */
.step-num {
    display: inline-flex; align-items: center; justify-content: center;
    width: 34px; height: 34px; border-radius: 50%;
    background: var(--hv-grad); color: #fff; font-weight: 800; font-size: 15px;
    box-shadow: 0 6px 14px rgba(var(--hv-primary-rgb), .35);
}

/* ---- Uptime barları (/durum) ---- */
.uptime-bars { display: flex; gap: 3px; }
.uptime-day { flex: 1 1 auto; height: 26px; border-radius: 4px; background: var(--hv-success-soft); position: relative; }
.uptime-day.ok::before { content: ''; position: absolute; inset: 0; background: #35c98e; border-radius: 4px; opacity: .9; }
.uptime-day.warn::before { content: ''; position: absolute; inset: 0; background: #f2b632; border-radius: 4px; opacity: .9; }
@media (max-width: 575.98px) {
    .uptime-bars { gap: 2px; }
    .uptime-day:nth-child(2n) { display: none; }
    .uptime-day { height: 20px; }
}

/* ---- Footer bülten bandı ---- */
.footer--newsletter {
    background: var(--hv-dark-2);
    border-top: 1px solid rgba(255, 255, 255, .06);
    border-bottom: 1px solid rgba(255, 255, 255, .06);
    padding: 1.6rem 0;
}
.footer--newsletter h5 { color: #fff; font-weight: 800; letter-spacing: -.02em; }
.newsletter-form { display: flex; align-items: center; gap: .6rem; background: var(--hv-dark-3); border: 1px solid rgba(255, 255, 255, .1); border-radius: var(--hv-radius-pill); padding: .35rem .5rem .35rem 1.1rem; }
.newsletter-form > i { color: var(--hv-accent); }
.newsletter-form input {
    flex: 1 1 auto; min-width: 0; background: transparent; border: 0; outline: 0;
    color: #fff; font-size: 14px;
}
.newsletter-form input::placeholder { color: #8b93ad; }
.newsletter-form .btn { border-radius: var(--hv-radius-pill); white-space: nowrap; }

/* ---- Panel istatistik kartları ---- */
.stat-card .stat-ico {
    width: 46px; height: 46px; border-radius: 14px;
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 20px; margin-bottom: .6rem;
}

/* ---- Bildirim listesi (client) ---- */
.list-group-item.bg-light { background: #fffaf5 !important; }

/* ---- Mobil ince ayar ---- */
@media (max-width: 767.98px) {
    .tech-strip { padding: .8rem 0 2rem; }
    .tech-chip { padding: .4rem .75rem; font-size: 12px; }
    .compare-table td { padding: .65rem .6rem; font-size: 13px; }
    .footer--newsletter { text-align: center; }
    .newsletter-form { max-width: 480px; margin: 0 auto; }
    .transfer-teaser { border-left: 0; border-top: 4px solid var(--hv-primary); }
    .transfer-teaser .btn { width: 100%; }
}

/* =====================================================================
   GERÇEK MOD — Checkout ödeme yöntemi kartları (§209)
   ===================================================================== */
.gw-list { display: flex; flex-direction: column; gap: .65rem; }
.gw-card {
    display: flex; align-items: flex-start; gap: 1rem;
    border: 1.5px solid var(--hv-border, #e6e8f2); border-radius: 16px;
    padding: 1rem 1.1rem; cursor: pointer; position: relative;
    background: #fff; transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}
.gw-card:hover { border-color: #f5b58a; transform: translateY(-1px); }
.gw-card.is-selected {
    border-color: var(--hv-primary);
    box-shadow: 0 8px 24px -12px rgba(var(--hv-primary-rgb), .45);
    background: linear-gradient(0deg, rgba(var(--hv-primary-rgb), .045), rgba(var(--hv-primary-rgb), .045)), #fff;
}
.gw-card input[type="radio"] { position: absolute; opacity: 0; pointer-events: none; }
.gw-ico {
    flex: 0 0 46px; width: 46px; height: 46px; border-radius: 13px;
    display: inline-flex; align-items: center; justify-content: center;
    background: var(--hv-soft, #f2f2f9); color: var(--hv-primary); font-size: 21px;
    transition: background .18s ease, color .18s ease;
}
.gw-card.is-selected .gw-ico { background: var(--hv-primary); color: #fff; }
.gw-body { display: flex; flex-direction: column; gap: .15rem; min-width: 0; flex: 1 1 auto; }
.gw-title { font-weight: 800; font-size: 15px; color: var(--hv-dark, #17181f); display: flex; align-items: center; gap: .5rem; flex-wrap: wrap; }
.gw-desc { font-size: 13px; color: var(--hv-muted, #6d7792); }
.gw-note { font-size: 12px; color: #3f8f4f; }
.gw-badge {
    font-size: 10.5px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase;
    padding: .18rem .55rem; border-radius: 999px; background: #eef0f7; color: #6d7792;
}
.gw-badge.is-hot { background: linear-gradient(135deg, var(--hv-primary), var(--hv-accent, #faa733)); color: #fff; }
.gw-check {
    flex: 0 0 22px; width: 22px; height: 22px; border-radius: 50%;
    border: 1.5px solid #d5d9e8; color: transparent; font-size: 14px;
    display: inline-flex; align-items: center; justify-content: center; margin-top: .2rem;
    transition: all .18s ease;
}
.gw-card.is-selected .gw-check { background: var(--hv-primary); border-color: var(--hv-primary); color: #fff; }
.gw-card--later .gw-ico { background: #f2f2f9; color: #6d7792; }
.gw-card--later.is-selected .gw-ico { background: #6d7792; color: #fff; }

/* Güven şeridi + kart ikonları */
.pay-trust {
    display: flex; justify-content: center; gap: .9rem; flex-wrap: wrap;
    margin-top: .8rem; font-size: 11.5px; color: var(--hv-muted, #6d7792);
}
.pay-trust i { margin-right: .25rem; color: var(--hv-primary); }
.pay-icons {
    display: flex; align-items: center; justify-content: center; gap: .55rem;
    margin-top: .55rem; padding-top: .55rem; border-top: 1px dashed var(--hv-border, #e6e8f2);
}
.pay-icons i { font-size: 17px; color: #9aa1b9; }
.pay-icons span { color: #9aa1b9; letter-spacing: .05em; }

/* Mobil */
@media (max-width: 575.98px) {
    .gw-card { padding: .85rem .8rem; gap: .75rem; }
    .gw-ico { flex-basis: 40px; width: 40px; height: 40px; font-size: 18px; }
    .gw-title { font-size: 14px; }
    .pay-trust { gap: .6rem; }
}

/* ---- Admin modül kartları ---- */
.module-card.is-active { border-top: 3px solid var(--hv-primary); }
.module-card .webhook-box {
    background: var(--hv-soft, #f2f2f9); border-radius: 10px; padding: .55rem .7rem;
}
.module-card .webhook-box code { background: transparent; padding: 0; color: var(--hv-dark, #17181f); }
.module-card .cfg-box {
    background: var(--hv-soft, #f2f2f9); border-radius: 12px; padding: .85rem;
}
.hv-pills .nav-link { border-radius: 999px; font-weight: 700; font-size: 13.5px; color: var(--hv-muted, #6d7792); }
.hv-pills .nav-link.active { background: linear-gradient(135deg, var(--hv-primary), var(--hv-accent, #faa733)); color: #fff; }

/* ---- Client hizmet detayı: hızlı rehber + kullanım kartları ---- */
.quick-guide { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .8rem; }
.quick-guide li { display: flex; gap: .75rem; align-items: flex-start; font-size: 13.5px; color: var(--hv-muted, #6d7792); line-height: 1.5; }
.quick-guide li strong { color: var(--hv-dark, #17181f); }
.quick-guide .step-num {
    flex: 0 0 24px; width: 24px; height: 24px; border-radius: 50%;
    background: linear-gradient(135deg, var(--hv-primary), var(--hv-accent, #faa733));
    color: #fff; font-weight: 800; font-size: 12px;
    display: inline-flex; align-items: center; justify-content: center; margin-top: 1px;
}
.usage-card { transition: transform .15s ease, box-shadow .15s ease; }
.usage-card:hover { transform: translateY(-2px); box-shadow: 0 10px 26px -14px rgba(23, 24, 31, .25); }

/* ---- Domain sonuç kartı (gerçek mod) ---- */
.domain-result {
    display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: .5rem;
    background: #fff; border: 1.5px solid var(--hv-border, #e6e8f2); border-radius: 14px;
    padding: .85rem 1.1rem; margin-bottom: .55rem;
    transition: border-color .15s ease, box-shadow .15s ease;
}
.domain-result:hover { border-color: #f5b58a; box-shadow: 0 8px 22px -14px rgba(var(--hv-primary-rgb), .4); }
.domain-result.is-suggestion { opacity: .88; }
.domain-result.is-suggestion::before { content: none; }

/* ---- Home güven şeridi (gerçek mod) ---- */
.trust-strip { padding: 1.2rem 0 2.4rem; }
.trust-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: .9rem;
    background: #fff; border: 1px solid var(--hv-border, #e6e8f2); border-radius: 18px;
    padding: 1.1rem 1.3rem; box-shadow: 0 14px 34px -26px rgba(23, 24, 31, .35);
}
.trust-item { display: flex; align-items: center; gap: .75rem; }
.trust-item > i {
    flex: 0 0 40px; width: 40px; height: 40px; border-radius: 12px; font-size: 18px;
    background: rgba(var(--hv-primary-rgb), .09); color: var(--hv-primary);
    display: inline-flex; align-items: center; justify-content: center;
}
.trust-item strong { display: block; font-size: 13.5px; font-weight: 800; color: var(--hv-dark, #17181f); }
.trust-item span { display: block; font-size: 11.5px; color: var(--hv-muted, #6d7792); }
@media (max-width: 991.98px) { .trust-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 575.98px) {
    .trust-grid { grid-template-columns: 1fr 1fr; padding: .9rem; gap: .7rem; }
    .trust-item > i { flex-basis: 34px; width: 34px; height: 34px; font-size: 15px; }
    .trust-item strong { font-size: 12px; }
    .trust-item span { font-size: 10.5px; }
}

/* =========================================================
   KVKK Çerez Banner'ı (§3147 gizlilik)
   ========================================================= */
.cookie-banner {
    position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 1080;
    max-width: 720px; margin: 0 auto;
    background: #fff; border: 1px solid rgba(23, 24, 31, .08);
    border-radius: 18px; box-shadow: 0 24px 60px -18px rgba(23, 24, 31, .38);
    animation: cbIn .45s cubic-bezier(.21, 1.02, .55, 1) both;
}
@keyframes cbIn { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }
.cookie-banner .cb-inner { display: flex; align-items: center; gap: 1.1rem; padding: 1.05rem 1.25rem; }
.cookie-banner .cb-text h6 { font-size: 14.5px; color: var(--hv-dark, #17181f); }
.cookie-banner .cb-text p { font-size: 12.5px; color: var(--hv-muted, #6d7792); line-height: 1.55; }
.cookie-banner .cb-text a { color: var(--hv-primary); font-weight: 700; text-decoration: none; }
.cookie-banner .cb-text a:hover { text-decoration: underline; }
.cookie-banner .cb-actions { display: flex; flex-direction: column; gap: .45rem; flex: 0 0 auto; }
.cookie-banner .cb-actions .btn { min-width: 150px; }
@media (max-width: 575.98px) {
    .cookie-banner { left: 10px; right: 10px; bottom: 10px; }
    .cookie-banner .cb-inner { flex-direction: column; align-items: stretch; gap: .8rem; padding: 1rem; }
    .cookie-banner .cb-actions { flex-direction: row; }
    .cookie-banner .cb-actions .btn { flex: 1; min-width: 0; }
}

/* =========================================================
 * §3 DARK MODE — LIGHT / DARK / SYSTEM (v1.60.0)
 * html[data-bs-theme="dark"] üzerinde değişken remap'i;
 * Bootstrap 5.3 native dark + mevcut hv-* değişkenleri.
 * ========================================================= */
html[data-bs-theme="dark"] {
    --hv-bg: #12131a;
    --hv-bg-warm: #171821;
    --hv-surface: #1c1e29;
    --hv-text: #d5d9e8;
    --hv-heading: #f2f4fb;
    --hv-text-muted: #8f99b5;
    --hv-text-soft: #6a7392;
    --hv-border: #2b2e3f;
    --hv-topbar-bg: rgba(23, 24, 31, .92);
    --hv-primary-soft: rgba(242, 113, 42, .16);
    --hv-grad-soft: linear-gradient(135deg, rgba(242,113,42,.14) 0%, rgba(250,167,51,.08) 100%);
    --hv-success-soft: rgba(31, 174, 120, .16);
    --hv-warning-soft: rgba(232, 147, 12, .16);
    --hv-danger-soft: rgba(239, 83, 80, .16);
    --hv-info-soft: rgba(91, 100, 218, .18);
    --hv-secondary-soft: rgba(74, 78, 105, .28);
    --hv-shadow: 0 1px 2px rgba(0, 0, 0, .4), 0 6px 20px rgba(0, 0, 0, .35);
    --hv-shadow-lg: 0 12px 40px rgba(0, 0, 0, .5);
    color-scheme: dark;
}

html[data-bs-theme="dark"] body { background: var(--hv-bg); color: var(--hv-text); }
html[data-bs-theme="dark"] .card,
html[data-bs-theme="dark"] .modal-content,
html[data-bs-theme="dark"] .dropdown-menu { background: var(--hv-surface); border-color: var(--hv-border); }
html[data-bs-theme="dark"] .table { --bs-table-bg: transparent; --bs-table-color: var(--hv-text); border-color: var(--hv-border); }
html[data-bs-theme="dark"] .table-light-head th { background: var(--hv-dark-2); color: var(--hv-heading); border-color: var(--hv-border); }
html[data-bs-theme="dark"] .form-control,
html[data-bs-theme="dark"] .form-select,
html[data-bs-theme="dark"] .form-check-input { background-color: var(--hv-dark-2); border-color: var(--hv-border); color: var(--hv-text); }
html[data-bs-theme="dark"] .form-control::placeholder,
html[data-bs-theme="dark"] .form-select::placeholder { color: var(--hv-text-soft); }
html[data-bs-theme="dark"] .form-control:focus,
html[data-bs-theme="dark"] .form-select:focus { background-color: var(--hv-dark-2); color: var(--hv-heading); }
html[data-bs-theme="dark"] .text-muted { color: var(--hv-text-muted) !important; }
html[data-bs-theme="dark"] .btn-light { background: var(--hv-dark-3); border-color: var(--hv-border); color: var(--hv-text); }
html[data-bs-theme="dark"] .btn-outline-secondary { color: var(--hv-text-muted); border-color: var(--hv-border); }
html[data-bs-theme="dark"] .btn-outline-secondary:hover { background: var(--hv-dark-3); color: var(--hv-heading); }
html[data-bs-theme="dark"] .alert { border-color: var(--hv-border); }
html[data-bs-theme="dark"] .alert-info { background: var(--hv-info-soft); color: #b9c0f5; }
html[data-bs-theme="dark"] .alert-warning { background: var(--hv-warning-soft); color: #f3c07a; }
html[data-bs-theme="dark"] .alert-success { background: var(--hv-success-soft); color: #7fdcb8; }
html[data-bs-theme="dark"] .alert-danger { background: var(--hv-danger-soft); color: #f59d9b; }
html[data-bs-theme="dark"] .badge { filter: saturate(.9); }
html[data-bs-theme="dark"] .nav-tabs .nav-link { color: var(--hv-text-muted); }
html[data-bs-theme="dark"] .nav-tabs .nav-link.active { background: var(--hv-surface); color: var(--hv-heading); border-color: var(--hv-border) var(--hv-border) var(--hv-surface); }
html[data-bs-theme="dark"] .modal-content { color: var(--hv-text); }
html[data-bs-theme="dark"] .page-link { background-color: var(--hv-dark-2); border-color: var(--hv-border); color: var(--hv-text); }
html[data-bs-theme="dark"] .page-item.active .page-link { background: var(--hv-primary); border-color: var(--hv-primary); color: #fff; }
html[data-bs-theme="dark"] .hv-toast { background: var(--hv-surface); color: var(--hv-text); box-shadow: var(--hv-shadow-lg); }
html[data-bs-theme="dark"] .pub-navbar { background: var(--hv-topbar-bg); border-color: var(--hv-border); }
html[data-bs-theme="dark"] .mobile-nav { background: var(--hv-topbar-bg); border-color: var(--hv-border); }
html[data-bs-theme="dark"] .empty-state { color: var(--hv-text-muted); }
html[data-bs-theme="dark"] .skeleton { background: linear-gradient(90deg, var(--hv-dark-2) 25%, var(--hv-dark-3) 50%, var(--hv-dark-2) 75%) !important; }

/* Tema değiştirme düğmesi */
.hv-theme-toggle { width: 36px; height: 36px; display: inline-flex; align-items: center; justify-content: center; border-radius: 10px; border: 1px solid var(--hv-border); background: var(--hv-surface); color: var(--hv-text-muted); cursor: pointer; }
.hv-theme-toggle:hover { color: var(--hv-primary); border-color: var(--hv-primary); }
