/* =========================================================
   Hostiva — MODA v3.0 Katmanı
   Gerçek moda: derinlik, ışık, hareket, cam efekti
   app.css ÜZERİNE yüklenir (cascade: bu dosya kazanır)
   ========================================================= */

/* ---------- v3 Tokenlar ---------- */
:root {
    --md-glow: 0 10px 40px -12px rgba(var(--hv-primary-rgb), .45);
    --md-glow-lg: 0 24px 70px -18px rgba(var(--hv-primary-rgb), .55);
    --md-shadow-xl: 0 32px 64px -24px rgba(23, 24, 31, .22);
    --md-shadow-lg: 0 18px 44px -18px rgba(23, 24, 31, .18);
    --md-shadow-md: 0 10px 28px -14px rgba(23, 24, 31, .16);
    --md-grad-hot: linear-gradient(120deg, var(--hv-primary) 0%, var(--hv-accent) 60%, var(--hv-accent) 100%);
    --md-grad-violet: linear-gradient(120deg, #6d5df6 0%, #9b8cff 100%);
    --md-grad-sky: linear-gradient(120deg, #0ea5e9 0%, #38bdf8 100%);
    --md-grad-green: linear-gradient(120deg, #10b981 0%, #34d399 100%);
    --md-ease: cubic-bezier(.22, .68, .32, 1);
    --md-ease-out: cubic-bezier(.16, 1, .3, 1);
}

/* ---------- Global cila ---------- */
html { scroll-behavior: smooth; }
::selection { background: rgba(var(--hv-primary-rgb), .22); color: #17181f; }
* { scrollbar-width: thin; scrollbar-color: #d8dbe8 transparent; }
*::-webkit-scrollbar { width: 9px; height: 9px; }
*::-webkit-scrollbar-thumb { background: linear-gradient(180deg, #d4d7e6, #c3c7da); border-radius: 99px; border: 2px solid transparent; background-clip: padding-box; }
*::-webkit-scrollbar-thumb:hover { background: linear-gradient(180deg, var(--hv-primary), var(--hv-accent)); background-clip: padding-box; }
*::-webkit-scrollbar-track { background: transparent; }

body { -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; overflow-x: hidden; }

/* Odak halkası — erişilebilirlik + şıklık */
a:focus-visible, button:focus-visible, .form-control:focus-visible, .form-select:focus-visible {
    outline: 2.5px solid rgba(var(--hv-primary-rgb), .5);
    outline-offset: 2px;
    border-radius: 8px;
}

/* ---------- Butonlar v3: parlama süpürmesi + ışıma ---------- */
.btn { position: relative; overflow: hidden; transition: transform .35s var(--md-ease), box-shadow .35s var(--md-ease), filter .35s var(--md-ease); }
.btn::after {
    content: ""; position: absolute; top: 0; left: -80%; width: 55%; height: 100%;
    background: linear-gradient(105deg, transparent 20%, rgba(255, 255, 255, .38) 50%, transparent 80%);
    transform: skewX(-22deg); transition: left .55s var(--md-ease-out); pointer-events: none;
}
.btn:hover::after { left: 130%; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0) scale(.985); }
.btn-primary, .bg-hv, .btn-hv {
    background: var(--md-grad-hot) !important; border: 0 !important;
    box-shadow: 0 8px 22px -8px rgba(var(--hv-primary-rgb), .55);
}
.btn-primary:hover, .bg-hv:hover, .btn-hv:hover {
    box-shadow: var(--md-glow); filter: saturate(1.08) brightness(1.03);
}
.btn-light { box-shadow: inset 0 0 0 1.5px #e9ebf4, 0 6px 16px -10px rgba(23, 24, 31, .25); }
.btn-light:hover { box-shadow: inset 0 0 0 1.5px #fcd9c0, var(--md-shadow-md); color: var(--hv-primary, #f2712a); }
.btn-lg { border-radius: 16px !important; padding: .82rem 1.7rem; font-weight: 700; }
.btn-primary.btn-lg { box-shadow: 0 12px 30px -10px rgba(var(--hv-primary-rgb), .6); }

/* ---------- Kartlar v3: üst ışık çizgisi + hover kalkışı ---------- */
.card { position: relative; transition: transform .4s var(--md-ease), box-shadow .4s var(--md-ease), border-color .4s var(--md-ease); }
.card::before {
    content: ""; position: absolute; inset: 0 0 auto 0; height: 3px; border-radius: 99px 99px 0 0;
    background: var(--md-grad-hot); opacity: 0; transition: opacity .4s var(--md-ease); pointer-events: none;
}
.card:hover::before { opacity: 1; }
.card:hover { transform: translateY(-4px); box-shadow: var(--md-shadow-lg) !important; border-color: rgba(var(--hv-primary-rgb), .25) !important; }
.card, .card * { transition-property: transform, box-shadow, border-color, background-color, color, opacity; }
.hover-lift:hover { transform: translateY(-5px); box-shadow: var(--md-shadow-lg) !important; }

/* ---------- Header v3: cam efekti + küçülme ---------- */
.site-header {
    transition: background-color .4s var(--md-ease), box-shadow .4s var(--md-ease), backdrop-filter .4s var(--md-ease), padding .3s var(--md-ease);
    background: rgba(255, 255, 255, .86);
    backdrop-filter: saturate(1.4) blur(14px);
    -webkit-backdrop-filter: saturate(1.4) blur(14px);
}
.site-header.scrolled {
    background: rgba(255, 255, 255, .95);
    box-shadow: 0 10px 34px -18px rgba(23, 24, 31, .28);
}
.site-header.scrolled .hv-header { padding-top: .35rem; padding-bottom: .35rem; }
.hv-header { transition: padding .3s var(--md-ease); }

.site-brand { position: relative; }
.logo-dot {
    transition: transform .5s var(--md-ease-out), box-shadow .5s var(--md-ease);
    background: var(--md-grad-hot);
    box-shadow: 0 6px 18px -6px rgba(var(--hv-primary-rgb), .6);
}
.site-brand:hover .logo-dot { transform: rotate(14deg) scale(1.08); box-shadow: var(--md-glow); }

/* Navbar link alt çizgi animasyonu */
.hv-navbar .nav-link { position: relative; }
.hv-navbar .nav-link::after {
    content: ""; position: absolute; left: 14px; right: 14px; bottom: 4px; height: 2.5px;
    border-radius: 99px; background: var(--md-grad-hot);
    transform: scaleX(0); transform-origin: left; transition: transform .38s var(--md-ease-out);
}
.hv-navbar .nav-link:hover::after, .hv-navbar .nav-link.active::after { transform: scaleX(1); }

/* Mega menü v3 */
.nav--drop {
    border-radius: 20px !important; box-shadow: var(--md-shadow-xl) !important;
    border: 1px solid #eceef7 !important; backdrop-filter: blur(8px);
    animation: mdDropIn .32s var(--md-ease-out) both;
}
@keyframes mdDropIn {
    from { opacity: 0; transform: translateY(10px) scale(.985); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}
.drop--nav { border-radius: 14px; transition: background-color .3s var(--md-ease), transform .3s var(--md-ease); }
.drop--nav:hover { transform: translateX(4px); background: #fff6f0; }
.drop--nav .icon {
    background: linear-gradient(135deg, rgba(var(--hv-primary-rgb), .14), rgba(250, 167, 51, .18));
    color: var(--hv-primary, #f2712a);
    transition: transform .35s var(--md-ease-out);
}
.drop--nav:hover .icon { transform: scale(1.1) rotate(-4deg); }

/* ---------- Hero v3: hareketli orb ışıkları ---------- */
.pub-hero {
    position: relative; overflow: hidden;
    background:
        radial-gradient(1100px 480px at 12% -10%, rgba(var(--hv-primary-rgb), .13), transparent 60%),
        radial-gradient(900px 420px at 88% 0%, rgba(250, 167, 51, .12), transparent 55%),
        linear-gradient(180deg, #f7f8fc 0%, #f2f2f9 100%);
}
.pub-hero::before, .pub-hero::after {
    content: ""; position: absolute; border-radius: 50%; filter: blur(70px); opacity: .5;
    pointer-events: none; z-index: 0; will-change: transform;
}
.pub-hero::before {
    width: 420px; height: 420px; top: -160px; left: -120px;
    background: radial-gradient(circle, rgba(var(--hv-primary-rgb), .32), transparent 65%);
    animation: mdFloat 11s ease-in-out infinite;
}
.pub-hero::after {
    width: 460px; height: 460px; bottom: -220px; right: -140px;
    background: radial-gradient(circle, rgba(250, 167, 51, .3), transparent 65%);
    animation: mdFloat 13s ease-in-out infinite reverse;
}
@keyframes mdFloat {
    0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
    33% { transform: translate3d(34px, 22px, 0) scale(1.07); }
    66% { transform: translate3d(-26px, 10px, 0) scale(.95); }
}
.pub-hero > .container, .pub-hero > .container-xl { position: relative; z-index: 1; }

/* Intro kart: gradient çerçeve + yüzey ışıması */
.intro-card {
    position: relative; border-radius: 28px;
    background: linear-gradient(#fff, #fff) padding-box,
                linear-gradient(135deg, rgba(var(--hv-primary-rgb), .35), rgba(250, 167, 51, .12) 40%, rgba(109, 93, 246, .14)) border-box;
    border: 1.5px solid transparent;
    box-shadow: var(--md-shadow-xl);
}
.intro-card .hero-card { border-radius: 18px; box-shadow: var(--md-shadow-md) !important; }
.intro-kicker {
    background: linear-gradient(135deg, #fff1e7, #ffe3c7);
    border: 1px solid rgba(var(--hv-primary-rgb), .25);
    box-shadow: 0 6px 16px -8px rgba(var(--hv-primary-rgb), .4);
    animation: mdPulseSoft 3.2s ease-in-out infinite;
}
@keyframes mdPulseSoft {
    0%, 100% { box-shadow: 0 6px 16px -8px rgba(var(--hv-primary-rgb), .4); }
    50% { box-shadow: 0 8px 26px -8px rgba(var(--hv-primary-rgb), .65); }
}
.is--feature { transition: transform .35s var(--md-ease), background-color .35s var(--md-ease); border-radius: 14px; }
.is--feature:hover { transform: translateY(-3px); background: #fff6f0; }
.is--feature .icon { background: var(--md-grad-hot) !important; color: #fff !important; box-shadow: 0 6px 14px -6px rgba(var(--hv-primary-rgb), .55); }

/* Gradient metin */
.text-gradient, h1 span.text-gradient, .intro-card h1 .text-gradient {
    background: var(--md-grad-hot);
    -webkit-background-clip: text; background-clip: text; color: transparent;
    display: inline-block;
}

/* Sayfa başlıkları: serif olmayan güçlü hiyerarşi */
.pub-hero h1 {
    font-weight: 800; letter-spacing: -.03em;
    background-image: linear-gradient(180deg, #17181f 62%, #3d3f4e 100%);
    -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* ---------- Teknoloji şeridi: sonsuz marquee ---------- */
.tech-strip { overflow: hidden; position: relative; padding: 1.35rem 0; background: #fff; border-block: 1px solid #eef0f7; }
.tech-strip .d-flex { flex-wrap: nowrap !important; width: max-content; animation: mdMarquee 30s linear infinite; gap: .8rem; }
.tech-strip:hover .d-flex { animation-play-state: paused; }
@keyframes mdMarquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.tech-chip {
    white-space: nowrap; border-radius: 99px !important;
    background: linear-gradient(180deg, #fff, #f7f8fc) !important;
    border: 1px solid #eceef7 !important;
    box-shadow: 0 8px 18px -12px rgba(23, 24, 31, .28);
    transition: transform .3s var(--md-ease), border-color .3s var(--md-ease), box-shadow .3s var(--md-ease);
}
.tech-chip i { color: var(--hv-primary, #f2712a); }
.tech-chip:hover { transform: translateY(-3px); border-color: rgba(var(--hv-primary-rgb), .45) !important; box-shadow: 0 12px 26px -12px rgba(var(--hv-primary-rgb), .45); }

/* ---------- Koyu domain bandı v3: yıldız dokusu ---------- */
.domain-section { position: relative; overflow: hidden; }
.domain-section::before {
    content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .5;
    background-image:
        radial-gradient(1.6px 1.6px at 18% 28%, rgba(255, 255, 255, .5) 50%, transparent 51%),
        radial-gradient(1.4px 1.4px at 42% 62%, rgba(255, 255, 255, .42) 50%, transparent 51%),
        radial-gradient(1.8px 1.8px at 67% 24%, rgba(255, 255, 255, .38) 50%, transparent 51%),
        radial-gradient(1.3px 1.3px at 84% 70%, rgba(255, 255, 255, .46) 50%, transparent 51%),
        radial-gradient(1.5px 1.5px at 30% 84%, rgba(255, 255, 255, .3) 50%, transparent 51%),
        radial-gradient(1.2px 1.2px at 58% 44%, rgba(255, 255, 255, .34) 50%, transparent 51%);
    animation: mdTwinkle 5.5s ease-in-out infinite alternate;
}
@keyframes mdTwinkle { from { opacity: .3; } to { opacity: .75; } }
.domain-band { position: relative; z-index: 1; }
.domain-search-box {
    border-radius: 20px !important; box-shadow: var(--md-shadow-xl) !important;
    transition: box-shadow .4s var(--md-ease), transform .4s var(--md-ease);
}
.domain-search-box:focus-within { transform: translateY(-2px); box-shadow: 0 30px 70px -20px rgba(var(--hv-primary-rgb), .5) !important; }
.domain-band-links a { transition: transform .3s var(--md-ease), color .3s var(--md-ease); }
.domain-band-links a:hover { transform: translateY(-2px); color: #ffc46b; }

/* ---------- Fiyat kartları v3: popüler kartta ışık halkası ---------- */
.price-card { border-radius: 22px !important; }
.price-card .price-value {
    font-size: 2.35rem; font-weight: 800; letter-spacing: -.02em;
    background: linear-gradient(180deg, #17181f, #3d3f4e);
    -webkit-background-clip: text; background-clip: text; color: transparent;
}
.price-card.featured {
    border: 2px solid transparent !important;
    background: linear-gradient(#fff, #fff) padding-box, var(--md-grad-hot) border-box;
    box-shadow: var(--md-glow-lg) !important;
    transform: scale(1.03);
}
.price-card.featured:hover { transform: scale(1.03) translateY(-5px); }
.pop-badge {
    background: var(--md-grad-hot) !important;
    box-shadow: 0 8px 20px -8px rgba(var(--hv-primary-rgb), .7) !important;
    letter-spacing: .02em;
}
.price-card ul li i { color: #10b981; }
.price-card ul li { transition: transform .25s var(--md-ease); }
.price-card ul li:hover { transform: translateX(4px); }

/* ---------- Özellik tuğlaları (feature tiles) ---------- */
.md-tiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
.md-tile {
    position: relative; border-radius: 20px; padding: 1.4rem 1.3rem; background: #fff;
    border: 1px solid #eceef7; box-shadow: 0 12px 30px -22px rgba(23, 24, 31, .4);
    transition: transform .4s var(--md-ease), box-shadow .4s var(--md-ease), border-color .4s var(--md-ease);
    overflow: hidden;
}
.md-tile::after {
    content: ""; position: absolute; width: 130px; height: 130px; right: -46px; bottom: -46px;
    border-radius: 50%; background: radial-gradient(circle, rgba(var(--hv-primary-rgb), .14), transparent 70%);
    transition: transform .5s var(--md-ease); pointer-events: none;
}
.md-tile:hover { transform: translateY(-6px); box-shadow: var(--md-shadow-lg); border-color: rgba(var(--hv-primary-rgb), .3); }
.md-tile:hover::after { transform: scale(1.7); }
.md-tile .t-ic {
    width: 46px; height: 46px; border-radius: 14px; font-size: 20px; margin-bottom: .9rem;
    display: inline-flex; align-items: center; justify-content: center; color: #fff;
    background: var(--md-grad-hot); box-shadow: 0 10px 20px -8px rgba(var(--hv-primary-rgb), .55);
    transition: transform .4s var(--md-ease-out);
}
.md-tile:hover .t-ic { transform: scale(1.08) rotate(-6deg); }
.md-tile h6 { font-weight: 800; margin-bottom: .35rem; color: var(--hv-dark, #17181f); }
.md-tile p { font-size: 13px; color: var(--hv-muted, #6d7792); margin: 0; line-height: 1.55; }
@media (max-width: 991.98px) { .md-tiles { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 575.98px) { .md-tiles { grid-template-columns: 1fr; gap: .8rem; } .md-tile { padding: 1.15rem; } }

/* Ürün sayfası hero'su (listing + detay ortak) */
.md-product-hero {
    position: relative; overflow: hidden; color: #fff;
    background:
        radial-gradient(900px 400px at 8% -20%, rgba(250, 167, 51, .28), transparent 60%),
        radial-gradient(800px 420px at 96% 10%, rgba(109, 93, 246, .25), transparent 55%),
        linear-gradient(140deg, #17181f 0%, #23252f 55%, #1a1c24 100%);
    padding: 4.2rem 0 5.4rem;
}
.md-product-hero::before {
    content: ""; position: absolute; inset: 0; opacity: .16;
    background-image: linear-gradient(rgba(255, 255, 255, .14) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255, 255, 255, .14) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: radial-gradient(720px 340px at 50% 0%, #000 35%, transparent 78%);
    -webkit-mask-image: radial-gradient(720px 340px at 50% 0%, #000 35%, transparent 78%);
    pointer-events: none;
}
.md-product-hero .container, .md-product-hero .container-xl { position: relative; z-index: 1; }
.md-product-hero h1 { color: #fff; font-weight: 800; letter-spacing: -.025em; }
.md-product-hero .lead { color: rgba(255, 255, 255, .78); }
.md-product-hero .breadcrumb-crumb a, .md-product-hero .breadcrumb-crumb span { color: rgba(255, 255, 255, .6); font-size: 13px; }
.md-product-hero .breadcrumb-crumb a:hover { color: #ffc46b; }
.md-hero-chip {
    display: inline-flex; align-items: center; gap: .45rem;
    padding: .42rem .95rem; border-radius: 99px; font-size: 12.5px; font-weight: 700;
    background: rgba(255, 255, 255, .1); border: 1px solid rgba(255, 255, 255, .18);
    color: rgba(255, 255, 255, .92); backdrop-filter: blur(6px);
    transition: background-color .3s var(--md-ease), transform .3s var(--md-ease);
}
.md-hero-chip:hover { background: rgba(var(--hv-primary-rgb), .3); border-color: rgba(255, 196, 107, .5); transform: translateY(-2px); color: #fff; }
.md-hero-chip.is-on { background: var(--md-grad-hot); border-color: transparent; color: #fff; box-shadow: 0 8px 22px -8px rgba(var(--hv-primary-rgb), .6); }
.md-hero-price {
    display: inline-flex; flex-direction: column; gap: .1rem;
    padding: .8rem 1.3rem; border-radius: 18px;
    background: rgba(255, 255, 255, .08); border: 1px solid rgba(255, 255, 255, .16);
    backdrop-filter: blur(8px);
}
.md-hero-price b { font-size: 1.55rem; font-weight: 800; color: #fff; }
.md-hero-price span { font-size: 11.5px; color: rgba(255, 255, 255, .65); }

/* Listeleme kartları hero'ya taşar */
.md-overlap { margin-top: -3.2rem; position: relative; z-index: 2; }

/* Fatura dönemi seçim kartları (ürün detay) */
.cycle-card {
    display: flex; align-items: center; justify-content: space-between; gap: .75rem;
    border: 1.6px solid #e9ebf4; border-radius: 15px; padding: .85rem 1.05rem; margin-bottom: .6rem;
    cursor: pointer; background: #fff;
    transition: border-color .3s var(--md-ease), box-shadow .3s var(--md-ease), background-color .3s var(--md-ease), transform .3s var(--md-ease);
}
.cycle-card:hover { border-color: rgba(var(--hv-primary-rgb), .5); transform: translateX(3px); }
.cycle-card:has(input:checked) {
    border-color: var(--hv-primary, #f2712a);
    background: linear-gradient(135deg, #fff7f1, #fffdfa);
    box-shadow: 0 10px 26px -14px rgba(var(--hv-primary-rgb), .5);
}
.cycle-card:has(input:checked) .cc-dot { border-color: var(--hv-primary, #f2712a); background: radial-gradient(circle, var(--hv-primary, #f2712a) 42%, #fff 46%); }
.cycle-card:has(input:checked) .cc-save { background: var(--md-grad-green); color: #fff; border-color: transparent; }
.cc-dot { width: 18px; height: 18px; border-radius: 50%; border: 2px solid #d5d8e6; transition: all .3s var(--md-ease); flex: 0 0 18px; }
.cc-save {
    font-size: 10.5px; font-weight: 800; letter-spacing: .03em; text-transform: uppercase;
    border: 1px solid #d9f3e6; color: #0e9f6e; background: #ecfdf5;
    padding: .18rem .55rem; border-radius: 99px; transition: all .3s var(--md-ease);
}

/* ---------- Domain sonuçları v3 ---------- */
.domain-result {
    border-radius: 16px !important; border: 1px solid #eceef7;
    transition: transform .35s var(--md-ease), box-shadow .35s var(--md-ease), border-color .35s var(--md-ease);
    background: #fff;
}
.domain-result:hover { transform: translateY(-3px); box-shadow: var(--md-shadow-md); border-color: rgba(var(--hv-primary-rgb), .35); }
.domain-result.is-suggestion { border-style: dashed; background: #fffdf9; }
.tld-chip {
    border-radius: 14px !important; transition: transform .3s var(--md-ease), box-shadow .3s var(--md-ease), border-color .3s var(--md-ease), color .3s var(--md-ease);
    border: 1px solid #eceef7 !important; background: #fff;
}
.tld-chip strong { color: var(--hv-primary, #f2712a); }
.tld-chip:hover { transform: translateY(-3px); box-shadow: 0 12px 26px -14px rgba(var(--hv-primary-rgb), .5); border-color: rgba(var(--hv-primary-rgb), .45) !important; }

/* TLD fiyat tablosu v3 */
.md-tld-table { border-radius: 20px; overflow: hidden; border: 1px solid #eceef7; background: #fff; box-shadow: var(--md-shadow-md); }
.md-tld-table table { margin: 0; }
.md-tld-table thead th {
    background: linear-gradient(135deg, #17181f, #2b2d38); color: #fff; font-size: 12px;
    letter-spacing: .06em; text-transform: uppercase; padding: .95rem 1.25rem; border: 0;
}
.md-tld-table tbody td { padding: .9rem 1.25rem; vertical-align: middle; border-color: #f1f2f8; }
.md-tld-table tbody tr { transition: background-color .25s var(--md-ease); }
.md-tld-table tbody tr:hover { background: #fff9f5; }
.md-tld-price { font-weight: 800; color: var(--hv-primary, #f2712a); }

/* ---------- Referans kartları v3 ---------- */
.testi-card {
    border-radius: 20px !important; position: relative;
    background: rgba(255, 255, 255, .06) !important;
    border: 1px solid rgba(255, 255, 255, .12) !important;
    backdrop-filter: blur(10px);
    transition: transform .4s var(--md-ease), border-color .4s var(--md-ease), background-color .4s var(--md-ease);
}
.testi-card:hover {
    transform: translateY(-6px); border-color: rgba(250, 167, 51, .45) !important;
    background: rgba(255, 255, 255, .09) !important;
}
.testi-card .stars i { color: #fbbf24; }
.testi-ava {
    width: 46px; height: 46px; border-radius: 14px; font-weight: 800; font-size: 16px;
    display: inline-flex; align-items: center; justify-content: center; color: #fff;
    background: var(--md-grad-hot); box-shadow: 0 8px 18px -6px rgba(var(--hv-primary-rgb), .55);
}

/* ---------- SSS v3 ---------- */
.accordion-item { border-radius: 16px !important; overflow: hidden; border: 1px solid #eceef7 !important; margin-bottom: .7rem; transition: border-color .3s var(--md-ease), box-shadow .3s var(--md-ease); }
.accordion-button { font-weight: 700; font-size: 15px; color: var(--hv-dark, #17181f); transition: background-color .3s var(--md-ease); }
.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, #fff6f0, #fffdf9) !important;
    color: var(--hv-primary, #f2712a) !important;
    box-shadow: none !important;
}
.accordion-button::after { transition: transform .35s var(--md-ease-out); background-size: 1.05rem; }
.accordion-button:not(.collapsed)::after { transform: rotate(180deg) scale(1.05); }
.accordion-item:hover { border-color: rgba(var(--hv-primary-rgb), .35) !important; box-shadow: var(--md-shadow-md); }
.accordion-body { color: var(--hv-muted, #6d7792); font-size: 14px; line-height: 1.7; }

/* ---------- Koyu istatistik bandı v3 ---------- */
.stats-section { position: relative; overflow: hidden; }
.stats-section .stat-num {
    font-weight: 800; letter-spacing: -.03em;
    background: linear-gradient(135deg, #ffb066, #faa733);
    -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* ---------- CTA bandı v3: ateşli gradyan + orb ---------- */
.md-cta {
    position: relative; overflow: hidden; border-radius: 28px; color: #fff;
    background: var(--md-grad-hot);
    padding: 3.2rem 2.4rem;
    box-shadow: var(--md-glow-lg);
}
.md-cta::before {
    content: ""; position: absolute; width: 340px; height: 340px; border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, .3), transparent 65%);
    top: -170px; right: -80px; animation: mdFloat 10s ease-in-out infinite;
}
.md-cta::after {
    content: ""; position: absolute; width: 260px; height: 260px; border-radius: 50%;
    background: radial-gradient(circle, rgba(23, 24, 31, .18), transparent 68%);
    bottom: -140px; left: -60px; animation: mdFloat 12s ease-in-out infinite reverse;
}
.md-cta > * { position: relative; z-index: 1; }
.md-cta h2 { font-weight: 800; letter-spacing: -.02em; }
.md-cta .btn-light { border: 0 !important; box-shadow: 0 12px 30px -10px rgba(23, 24, 31, .35) !important; font-weight: 700; }
.md-cta .btn-light:hover { color: var(--hv-primary, #f2712a); }

/* ---------- Reveal on scroll (yalnız JS aktifken; JS yoksa içerik görünür) ---------- */
html.js [data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--md-ease-out), transform .8s var(--md-ease-out); will-change: opacity, transform; }
html.js [data-reveal="left"] { transform: translateX(-30px); }
html.js [data-reveal="right"] { transform: translateX(30px); }
html.js [data-reveal="zoom"] { transform: scale(.93); }
html.js [data-reveal].revealed { opacity: 1; transform: none; }
html.js [data-reveal][data-delay="1"] { transition-delay: .08s; }
html.js [data-reveal][data-delay="2"] { transition-delay: .16s; }
html.js [data-reveal][data-delay="3"] { transition-delay: .24s; }
html.js [data-reveal][data-delay="4"] { transition-delay: .32s; }
html.js [data-reveal][data-delay="5"] { transition-delay: .4s; }
html.js [data-reveal][data-delay="6"] { transition-delay: .48s; }
@media print {
    [data-reveal] { opacity: 1 !important; transform: none !important; }
}
@media (prefers-reduced-motion: reduce) {
    [data-reveal] { opacity: 1 !important; transform: none !important; transition: none !important; }
    .pub-hero::before, .pub-hero::after, .md-cta::before, .md-cta::after, .md-cta::after { animation: none !important; }
    .tech-strip .d-flex { animation: none !important; flex-wrap: wrap !important; width: auto !important; }
}

/* ---------- Bölüm başlıkları v3 ---------- */
.kicker-pill {
    background: linear-gradient(135deg, #fff1e7, #ffe3c7) !important;
    border: 1px solid rgba(var(--hv-primary-rgb), .28) !important;
    color: var(--hv-primary-deep, #c94e0e) !important;
    box-shadow: 0 6px 16px -8px rgba(var(--hv-primary-rgb), .4);
}
.section-head h2 { letter-spacing: -.025em; font-weight: 800; }
.section-head .accent-line {
    width: 52px; height: 4px; border-radius: 99px; margin: 0 auto;
    background: var(--md-grad-hot); box-shadow: 0 4px 12px -4px rgba(var(--hv-primary-rgb), .6);
}

/* ---------- Footer v3 ---------- */
.site-footer .footer-link { position: relative; transition: color .3s var(--md-ease), padding-left .3s var(--md-ease); }
.site-footer a:hover { color: #ffc46b !important; }
.support-strip .sup-card {
    border-radius: 18px; border: 1px solid rgba(255, 255, 255, .1);
    background: rgba(255, 255, 255, .05);
    transition: transform .35s var(--md-ease), background-color .35s var(--md-ease), border-color .35s var(--md-ease);
}
.support-strip .sup-card:hover { transform: translateY(-4px); background: rgba(255, 255, 255, .09); border-color: rgba(250, 167, 51, .4); }

/* ---------- Sepet/checkout sayfa kılıfı ---------- */
.cart-summary { border-radius: 20px !important; box-shadow: var(--md-shadow-lg) !important; position: sticky; top: 96px; }
@media (max-width: 991.98px) { .cart-summary { position: static; } }

/* ---------- Form v3 ---------- */
.form-control, .form-select { border-radius: 12px !important; border-color: #e3e6f0; transition: border-color .3s var(--md-ease), box-shadow .3s var(--md-ease), background-color .3s var(--md-ease); }
.form-control:focus, .form-select:focus {
    border-color: rgba(var(--hv-primary-rgb), .55) !important;
    box-shadow: 0 0 0 4px rgba(var(--hv-primary-rgb), .12) !important;
    background: #fffdfa;
}
.form-label { font-weight: 600; font-size: 13px; color: #3d3f4e; }

/* ---------- Tablo v3 ---------- */
.table thead th {
    font-size: 11.5px; letter-spacing: .07em; text-transform: uppercase; color: #6d7792;
    border-bottom: 1.5px solid #eceef7 !important; padding: .8rem 1rem; background: #fafbfe;
}
.table tbody td { vertical-align: middle; }
.table tbody tr { transition: background-color .22s var(--md-ease); }
.table tbody tr:hover { background: #fff9f5; }
.table tbody tr:hover td:first-child { box-shadow: inset 3px 0 0 var(--hv-primary, #f2712a); }

/* ---------- Badge v3 ---------- */
.badge { font-weight: 700; letter-spacing: .02em; border-radius: 99px !important; padding: .34em .7em; }
.badge-success { background: linear-gradient(135deg, #10b981, #34d399) !important; box-shadow: 0 6px 14px -6px rgba(16, 185, 129, .5); }
.badge-warning { background: linear-gradient(135deg, #f59e0b, #fbbf24) !important; box-shadow: 0 6px 14px -6px rgba(245, 158, 11, .5); }
.badge-danger { background: linear-gradient(135deg, #ef4444, #f87171) !important; box-shadow: 0 6px 14px -6px rgba(239, 68, 68, .5); }
.badge-info { background: linear-gradient(135deg, #0ea5e9, #38bdf8) !important; box-shadow: 0 6px 14px -6px rgba(14, 165, 233, .5); }
.badge-primary { background: var(--md-grad-hot) !important; box-shadow: 0 6px 14px -6px rgba(var(--hv-primary-rgb), .5); }

/* =========================================================
   MODA v3 — PANEL KATMANI (Admin + Client)
   ========================================================= */

/* ---------- Admin sidebar v3: ışıklı aktif çip ---------- */
.hv-sidebar { border-right: 1px solid rgba(255, 255, 255, .06); }
.hv-sidebar .nav-link {
    border-radius: 12px; margin: 2px 10px;
    transition: background-color .3s var(--md-ease), color .3s var(--md-ease), transform .3s var(--md-ease), box-shadow .3s var(--md-ease);
}
.hv-sidebar .nav-link:hover { background: rgba(255, 255, 255, .07); transform: translateX(3px); }
.hv-sidebar .nav-link.active {
    background: var(--md-grad-hot) !important;
    box-shadow: 0 10px 24px -8px rgba(var(--hv-primary-rgb), .55);
    transform: translateX(0);
}
.hv-sidebar .nav-label {
    font-size: 10px; letter-spacing: .14em; text-transform: uppercase;
    color: rgba(255, 255, 255, .34); padding: .9rem 1.4rem .35rem;
}

/* ---------- KPI kartları v3: gradyan ikon + hover ışıma ---------- */
.stat-card {
    border-radius: 18px !important; overflow: hidden; position: relative;
    transition: transform .35s var(--md-ease), box-shadow .35s var(--md-ease);
}
.stat-card:hover { transform: translateY(-4px); box-shadow: var(--md-shadow-lg) !important; }
.stat-card::after {
    content: ""; position: absolute; width: 110px; height: 110px; right: -34px; top: -34px;
    border-radius: 50%; background: radial-gradient(circle, rgba(var(--hv-primary-rgb), .1), transparent 70%);
    transition: transform .5s var(--md-ease); pointer-events: none;
}
.stat-card:hover::after { transform: scale(1.8); }
.stat-icon {
    border-radius: 14px !important; color: #fff !important;
    transition: transform .4s var(--md-ease-out), box-shadow .4s var(--md-ease);
}
.stat-card:hover .stat-icon { transform: scale(1.1) rotate(-6deg); }
.stat-icon.indigo { background: var(--md-grad-violet) !important; box-shadow: 0 8px 18px -6px rgba(109, 93, 246, .5); }
.stat-icon.sky { background: var(--md-grad-sky) !important; box-shadow: 0 8px 18px -6px rgba(14, 165, 233, .5); }
.stat-icon.green { background: var(--md-grad-green) !important; box-shadow: 0 8px 18px -6px rgba(16, 185, 129, .5); }
.stat-icon.amber { background: linear-gradient(120deg, #f59e0b, #fbbf24) !important; box-shadow: 0 8px 18px -6px rgba(245, 158, 11, .5); }
.stat-icon.red { background: linear-gradient(120deg, #ef4444, #f87171) !important; box-shadow: 0 8px 18px -6px rgba(239, 68, 68, .5); }
.stat-value { font-weight: 800; letter-spacing: -.02em; }

/* ---------- Panel kart başlıkları ---------- */
.card-header {
    background: transparent; border-bottom: 1px solid #f0f1f7; font-weight: 700;
    padding: 1rem 1.25rem;
}
.card-header a { color: var(--hv-primary, #f2712a); font-weight: 600; transition: opacity .25s var(--md-ease); }
.card-header a:hover { opacity: .75; }

/* ---------- Hızlı işlem çipleri (dashboard) ---------- */
.md-quick {
    display: flex; align-items: center; gap: .7rem; padding: .8rem 1.05rem;
    border-radius: 15px; background: #fff; border: 1px solid #eceef7;
    box-shadow: 0 10px 24px -18px rgba(23, 24, 31, .4);
    transition: transform .35s var(--md-ease), box-shadow .35s var(--md-ease), border-color .35s var(--md-ease);
    color: var(--hv-dark, #17181f); font-weight: 600; font-size: 13.5px;
}
.md-quick i {
    width: 34px; height: 34px; border-radius: 10px; flex: 0 0 34px;
    display: inline-flex; align-items: center; justify-content: center; font-size: 15px;
    background: rgba(var(--hv-primary-rgb), .1); color: var(--hv-primary, #f2712a);
    transition: background-color .3s var(--md-ease), color .3s var(--md-ease), transform .3s var(--md-ease-out);
}
.md-quick:hover { transform: translateY(-3px); border-color: rgba(var(--hv-primary-rgb), .4); box-shadow: 0 14px 30px -14px rgba(var(--hv-primary-rgb), .45); text-decoration: none; color: var(--hv-primary, #f2712a); }
.md-quick:hover i { background: var(--md-grad-hot); color: #fff; transform: scale(1.08); }

/* ---------- Modül kartları v3 ---------- */
.mod-card {
    border-radius: 20px; background: #fff; border: 1px solid #eceef7;
    box-shadow: 0 12px 32px -22px rgba(23, 24, 31, .45); padding: 1.35rem;
    transition: transform .4s var(--md-ease), box-shadow .4s var(--md-ease), border-color .4s var(--md-ease);
    position: relative; overflow: hidden; height: 100%;
}
.mod-card:hover { transform: translateY(-5px); box-shadow: var(--md-shadow-lg); border-color: rgba(var(--hv-primary-rgb), .3); }
.mod-card .mod-ic {
    width: 50px; height: 50px; border-radius: 15px; font-size: 22px;
    display: inline-flex; align-items: center; justify-content: center; color: #fff;
    background: var(--md-grad-hot); box-shadow: 0 10px 22px -8px rgba(var(--hv-primary-rgb), .55);
    transition: transform .4s var(--md-ease-out);
}
.mod-card:hover .mod-ic { transform: scale(1.08) rotate(-5deg); }
.mod-card.is-inactive .mod-ic { background: linear-gradient(135deg, #9aa1b5, #b9bfd0); box-shadow: none; }
.mod-card .mod-name { font-weight: 800; font-size: 15.5px; }
.mod-card .mod-desc { font-size: 12.5px; color: var(--hv-muted, #6d7792); line-height: 1.55; }
.md-health { display: inline-flex; align-items: center; gap: .4rem; font-size: 11.5px; font-weight: 700; }
.md-health .h-dot { width: 8px; height: 8px; border-radius: 50%; position: relative; }
.md-health .h-dot::after {
    content: ""; position: absolute; inset: -4px; border-radius: 50%;
    animation: mdPing 1.8s var(--md-ease) infinite;
}
.md-health.is-online .h-dot { background: #10b981; }
.md-health.is-online .h-dot::after { background: rgba(16, 185, 129, .45); }
.md-health.is-offline .h-dot { background: #ef4444; }
.md-health.is-offline .h-dot::after { background: rgba(239, 68, 68, .4); }
.md-health.is-unknown .h-dot { background: #9aa1b5; }
.md-health.is-unknown .h-dot::after { animation: none; }
@keyframes mdPing { 0% { transform: scale(.6); opacity: .9; } 80%, 100% { transform: scale(1.9); opacity: 0; } }
.md-copy {
    display: inline-flex; align-items: center; gap: .4rem; max-width: 100%;
    font-size: 11px; font-family: ui-monospace, 'Sarasa Mono SC', monospace;
    background: #f7f8fc; border: 1px dashed #d9dcea; color: #6d7792;
    padding: .32rem .6rem; border-radius: 9px; cursor: pointer;
    transition: border-color .3s var(--md-ease), color .3s var(--md-ease), background-color .3s var(--md-ease);
}
.md-copy:hover { border-color: rgba(var(--hv-primary-rgb), .55); color: var(--hv-primary, #f2712a); background: #fff9f5; }

/* ---------- Müşteri paneli üst nav v3 ---------- */
.hv-topnav {
    background: rgba(255, 255, 255, .92) !important;
    backdrop-filter: saturate(1.4) blur(14px);
    -webkit-backdrop-filter: saturate(1.4) blur(14px);
    border-bottom: 1px solid #eef0f7;
}
.hv-topnav .nav-link { position: relative; border-radius: 12px; transition: background-color .3s var(--md-ease), color .3s var(--md-ease); }
.hv-topnav .nav-link.active { background: linear-gradient(135deg, #fff1e7, #ffe3c7); color: var(--hv-primary, #f2712a) !important; }

/* Müşteri karşılama bandı */
.md-welcome {
    position: relative; overflow: hidden; border-radius: 24px; color: #fff;
    background: radial-gradient(700px 300px at 90% -30%, rgba(250, 167, 51, .4), transparent 60%),
                radial-gradient(600px 280px at -10% 130%, rgba(109, 93, 246, .3), transparent 55%),
                linear-gradient(135deg, #1a1c24 0%, #23252f 100%);
    padding: 2rem 2.2rem; box-shadow: var(--md-shadow-xl);
}
.md-welcome::before {
    content: ""; position: absolute; inset: 0; opacity: .12;
    background-image: radial-gradient(rgba(255, 255, 255, .5) 1px, transparent 1px);
    background-size: 26px 26px;
    mask-image: radial-gradient(500px 220px at 80% 20%, #000, transparent 75%);
    -webkit-mask-image: radial-gradient(500px 220px at 80% 20%, #000, transparent 75%);
}
.md-welcome > * { position: relative; z-index: 1; }
.md-welcome h4 { font-weight: 800; letter-spacing: -.02em; color: #fff !important; }
.md-welcome p { color: rgba(255, 255, 255, .75) !important; }
.md-welcome .btn { font-weight: 700; }

/* Hizmet kullanım ölçerleri */
.md-meter { margin-bottom: 1rem; }
.md-meter .m-head { display: flex; justify-content: space-between; font-size: 12.5px; font-weight: 600; margin-bottom: .35rem; }
.md-meter .progress { height: 8px !important; border-radius: 99px !important; background: #f0f1f7; }
.md-meter .progress-bar { background: var(--md-grad-hot) !important; border-radius: 99px; transition: width 1.2s var(--md-ease-out); }
.md-meter .progress-bar.is-ok { background: var(--md-grad-green) !important; }
.md-meter .progress-bar.is-warn { background: linear-gradient(90deg, #f59e0b, #fbbf24) !important; }
.md-meter .progress-bar.is-full { background: linear-gradient(90deg, #ef4444, #f87171) !important; }

/* ---------- Auth sayfaları v3 ---------- */
.auth-wrap { position: relative; }
.auth-card { border-radius: 24px !important; box-shadow: var(--md-shadow-xl) !important; border: 1px solid #eceef7; }
.auth-side { border-radius: 24px; overflow: hidden; position: relative; }

/* ---------- Timeline v3 ---------- */
.timeline .tl-item { position: relative; padding-left: 2rem; }
.timeline .tl-item::before {
    content: ""; position: absolute; left: 5px; top: 22px; bottom: -6px; width: 2px;
    background: linear-gradient(180deg, rgba(var(--hv-primary-rgb), .35), transparent);
}
.timeline .tl-item:last-child::before { display: none; }
.timeline .tl-dot {
    position: absolute; left: 0; top: 4px; width: 12px; height: 12px; border-radius: 50%;
    background: var(--md-grad-hot); box-shadow: 0 0 0 4px rgba(var(--hv-primary-rgb), .15);
}

/* ---------- Toast v3 ---------- */
.hv-toast {
    border-radius: 16px !important; box-shadow: var(--md-shadow-xl) !important;
    backdrop-filter: blur(8px); animation: mdToastIn .45s var(--md-ease-out) both;
}
.hv-toast.out { animation: mdToastOut .3s var(--md-ease) both; }
@keyframes mdToastIn { from { opacity: 0; transform: translateY(14px) scale(.96); } to { opacity: 1; transform: none; } }
@keyframes mdToastOut { from { opacity: 1; } to { opacity: 0; transform: translateY(10px) scale(.97); } }

/* ---------- Modal v3 ---------- */
.modal-content { border-radius: 22px !important; border: 0 !important; box-shadow: var(--md-shadow-xl) !important; }
.modal-header { border-bottom: 1px solid #f0f1f7; }
.modal-footer { border-top: 1px solid #f0f1f7; }
.modal-backdrop.show { opacity: .55; backdrop-filter: blur(3px); }

/* ---------- Pagination v3 ---------- */
.pagination .page-link {
    border-radius: 11px !important; margin: 0 3px; border: 1px solid #eceef7 !important;
    font-weight: 600; color: #3d3f4e !important;
    transition: all .3s var(--md-ease);
}
.pagination .page-item.active .page-link {
    background: var(--md-grad-hot) !important; border-color: transparent !important;
    box-shadow: 0 8px 18px -8px rgba(var(--hv-primary-rgb), .55);
}
.pagination .page-link:hover { border-color: rgba(var(--hv-primary-rgb), .4) !important; color: var(--hv-primary, #f2712a) !important; transform: translateY(-2px); }

/* ---------- Skeleton v3: shimmer ---------- */
.skeleton {
    position: relative; overflow: hidden; background: #eef0f7; border-radius: 12px;
}
.skeleton::after {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .75), transparent);
    transform: translateX(-100%); animation: mdShimmer 1.5s infinite;
}
@keyframes mdShimmer { to { transform: translateX(100%); } }

/* ---------- Back to top v3 ---------- */
#backToTop {
    background: var(--md-grad-hot) !important; color: #fff; border: 0 !important;
    box-shadow: 0 12px 30px -10px rgba(var(--hv-primary-rgb), .65) !important;
    transition: transform .35s var(--md-ease), box-shadow .35s var(--md-ease), opacity .3s;
}
#backToTop:hover { transform: translateY(-4px); box-shadow: var(--md-glow-lg) !important; }

/* ---------- Dash statu pill v3 ---------- */
.dash--statu {
    border: 1px solid rgba(16, 185, 129, .3); background: rgba(16, 185, 129, .07);
    border-radius: 99px; padding: .35rem .9rem; font-size: 12px; font-weight: 700; color: #0e9f6e;
}
.dash--statu .online { background: #10b981; box-shadow: 0 0 0 3px rgba(16, 185, 129, .18); animation: mdBlink 2.2s infinite; }
@keyframes mdBlink { 0%, 100% { box-shadow: 0 0 0 3px rgba(16, 185, 129, .18); } 50% { box-shadow: 0 0 0 6px rgba(16, 185, 129, .08); } }

/* ---------- Kurumsal/INFRA sayfa kartları ---------- */
.dc-card { border-radius: 20px; overflow: hidden; }
.dc-card .dc-img { transition: transform .6s var(--md-ease-out); }
.dc-card:hover .dc-img { transform: scale(1.06); }

/* Karşılaştırma tablosu v3 */
.cmp-table td, .cmp-table th { padding: .85rem 1rem; }
.cmp-table .cmp-yes { color: #10b981; font-weight: 800; }
.cmp-table .cmp-no { color: #d5d8e6; font-weight: 800; }
.cmp-table tbody tr:hover { background: #fff9f5; }

/* Mobil alt nav (client) v3 */
.hv-bottomnav {
    background: rgba(255, 255, 255, .96) !important;
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid #eef0f7; box-shadow: 0 -10px 34px -18px rgba(23, 24, 31, .3);
}
.hv-bottomnav a { transition: color .3s var(--md-ease), transform .3s var(--md-ease); }
.hv-bottomnav a:active { transform: scale(.94); }

/* Drawer v3 */
.site-drawer { box-shadow: -30px 0 70px -30px rgba(23, 24, 31, .4) !important; }
.drawer-link { border-radius: 12px; transition: background-color .3s var(--md-ease), padding-left .3s var(--md-ease), color .3s var(--md-ease); }
.drawer-link:hover { background: #fff6f0; padding-left: 1.15rem; color: var(--hv-primary, #f2712a); }

/* Uptime barları (/durum) v3 */
.uptime-row { transition: transform .3s var(--md-ease); }
.uptime-row:hover { transform: translateX(4px); }
.uptime-bars { gap: 2.4px !important; }
.uptime-bars i { border-radius: 3px !important; transition: transform .25s var(--md-ease); }
.uptime-bars i:hover { transform: scaleY(1.35); }

/* Geniş ekran cila v3 */
@media (min-width: 1400px) {
    .container-xl { max-width: 1320px; }
}

/* Küçük ekran: kart gölgelerini hafiflet */
@media (max-width: 575.98px) {
    .intro-card { border-radius: 20px; }
    .md-cta { padding: 2.2rem 1.4rem; border-radius: 22px; }
    .md-welcome { padding: 1.5rem 1.3rem; border-radius: 20px; }
    .md-product-hero { padding: 3rem 0 4.2rem; }
    .md-overlap { margin-top: -2.4rem; }
    .price-card.featured { transform: none; }
    .price-card.featured:hover { transform: translateY(-4px); }
}

/* ═══════ FAZ 23 · Ürün eklentileri (§165) ═══════ */
.addon-card .cc-dot { border-radius: 5px; }
.addon-card:has(input:checked) { border-color: var(--hv-primary, #f2712a); background: rgba(var(--hv-primary-rgb), .05); }
.addon-card:has(input:checked) .cc-dot { border-color: var(--hv-primary, #f2712a); background: var(--hv-primary, #f2712a); box-shadow: inset 0 0 0 3px #fff; }

/* Lisans kartı (§55) — müşteri hizmet detayı */
.lic-card {
    border: 1px solid rgba(var(--hv-primary-rgb), .22) !important;
    background: linear-gradient(135deg, #fffdfa, #fff7ef) !important;
    box-shadow: 0 18px 44px -24px rgba(var(--hv-primary-rgb), .45) !important;
}
.lic-key-box {
    background: repeating-linear-gradient(45deg, #fff, #fff 12px, #fdf6ef 12px, #fdf6ef 24px);
    border: 1.5px dashed rgba(var(--hv-primary-rgb), .4);
}

/* ═══════ FAZ 41 · §260 Ürün bazlı varyant override + admin cila ═══════ */
/* Override düzenleme kutusu — ürün formu varyant paneli */
.vo-box {
    background: linear-gradient(135deg, #fffdfa, #fdf7ef);
    border: 1px dashed rgba(var(--hv-primary-rgb, 242 113 42), .35);
    border-radius: 12px;
    padding: .55rem .65rem;
}
.vo-box .form-control-sm, .vo-box .form-select-sm { font-size: .78rem; }
.vo-toggle > a { color: var(--hv-text-muted, #6b7280); }
.vo-toggle > a:hover { color: var(--hv-primary, #f2712a); }
.vo-toggle .badge-warning { vertical-align: 1px; }

/* Kart & tablo hover cilası (admin geneli) */
.hv-content .card { transition: box-shadow .18s ease, transform .18s ease; }
.hv-content .card:hover { box-shadow: 0 14px 34px -22px rgba(15, 23, 42, .28); }
.hv-content .table tbody tr { transition: background .12s ease; }
.hv-content .table tbody tr:hover { background: rgba(var(--hv-primary-rgb, 242 113 42), .045); }

/* Stat kartına hafif kaldırma efekti */
.stat-card:hover { transform: translateY(-2px); box-shadow: 0 16px 34px -20px rgba(var(--hv-primary-rgb, 242 113 42), .5); }

/* Klavye odak halkası — erişilebilirlik */
.hv-content :is(a, button, input, select, textarea):focus-visible {
    outline: 2px solid rgba(var(--hv-primary-rgb, 242 113 42), .55);
    outline-offset: 1px;
    border-radius: 6px;
}

/* İnce kaydırma çubuğu (admin) */
.hv-sidebar .hv-nav::-webkit-scrollbar, .hv-content ::-webkit-scrollbar { width: 8px; height: 8px; }
.hv-sidebar .hv-nav::-webkit-scrollbar-thumb, .hv-content ::-webkit-scrollbar-thumb {
    background: rgba(100, 116, 139, .35); border-radius: 8px;
}
.hv-sidebar .hv-nav::-webkit-scrollbar-track, .hv-content ::-webkit-scrollbar-track { background: transparent; }

/* Mobil: varyant panelinde override blokları tam genişlik */
@media (max-width: 767.98px) {
    .vo-box { padding: .6rem .6rem; }
    .vo-box .col-6 { min-width: 50%; }
}

/* =========================================================
   §265 — ADMIN V2 MODERN TEMA + SUNUCU KONTROL BİLEŞENLERİ
   Admin panelinin her bölümüne modern kimlik: cam topbar,
   gradient sidebar cilası, stat kartları, filtre çubukları,
   sc-* sunucu kontrol widget seti. FOOTER MUAFTIR — bu
   bölümde footer kuralları YOKTUR (§ kalıcı muafiyet).
   ========================================================= */

/* ---------- Admin V2 tokenlar ---------- */
:root {
    --av-ink: #0f172a;
    --av-ink-2: #475569;
    --av-muted: #8a94a8;
    --av-line: #e6e9f2;
    --av-surface: #ffffff;
    --av-canvas: #f4f6fb;
    --av-primary: var(--hv-primary, #f2712a);
    --av-primary-soft: rgba(var(--hv-primary-rgb, 242 113 42), .1);
    --av-sidebar: #12151f;
    --av-sidebar-2: #171b29;
    --av-green: #16a34a;
    --av-amber: #d97706;
    --av-red: #dc2626;
    --av-sky: #0284c7;
    --av-radius: 16px;
    --av-radius-sm: 11px;
    --av-shadow: 0 10px 30px -18px rgba(15, 23, 42, .25);
    --av-shadow-lg: 0 24px 50px -28px rgba(15, 23, 42, .35);
    --av-ease: cubic-bezier(.22, .8, .3, 1);
}

/* ---------- Kanvas + kart V2 ---------- */
body.admin-body, .hv-main { background: var(--av-canvas); }
.hv-content .card {
    border: 1px solid var(--av-line);
    border-radius: var(--av-radius);
    background: var(--av-surface);
    box-shadow: 0 1px 2px rgba(15, 23, 42, .04);
    transition: box-shadow .25s var(--av-ease), transform .25s var(--av-ease), border-color .25s var(--av-ease);
}
.hv-content .card:hover { box-shadow: var(--av-shadow); border-color: #dfe3ee; }
.hv-content .card-header {
    background: transparent;
    border-bottom: 1px solid var(--av-line);
    font-weight: 800;
    letter-spacing: -.01em;
    padding-top: .95rem;
    padding-bottom: .95rem;
}
.hv-content .card-header span { display: inline-flex; align-items: center; }

/* ---------- Sidebar V2: gradient + ışık brandi ---------- */
.hv-sidebar {
    background:
        radial-gradient(1200px 500px at -20% -10%, rgba(var(--hv-primary-rgb, 242 113 42), .16), transparent 60%),
        linear-gradient(180deg, var(--av-sidebar-2), var(--av-sidebar) 55%);
    border-right: 1px solid rgba(255, 255, 255, .05);
}
.hv-sidebar .brand {
    border-bottom: none;
    padding-bottom: .9rem;
    margin-bottom: .8rem;
    position: relative;
}
.hv-sidebar .brand::after {
    content: '';
    position: absolute;
    left: .5rem; right: .5rem; bottom: 0;
    height: 1px;
    background: linear-gradient(90deg, rgba(var(--hv-primary-rgb, 242 113 42), .55), rgba(255, 255, 255, .06) 70%);
}
.hv-sidebar .brand .logo-dot {
    background: linear-gradient(135deg, var(--av-primary), #ff9a56);
    box-shadow: 0 8px 22px -8px rgba(var(--hv-primary-rgb, 242 113 42), .75);
}
.hv-nav .section {
    color: #5d6580;
    display: flex;
    align-items: center;
    gap: .55rem;
    padding: .95rem .55rem .4rem;
}
.hv-nav .section::after { content: ''; flex: 1; height: 1px; background: rgba(255, 255, 255, .05); }
.hv-nav a {
    border-radius: 10px;
    position: relative;
    transition: background .18s var(--av-ease), color .18s var(--av-ease), transform .18s var(--av-ease);
}
.hv-nav a::before {
    content: '';
    position: absolute;
    left: -.95rem; top: 50%;
    transform: translateY(-50%) scaleY(0);
    width: 3px; height: 58%;
    border-radius: 3px;
    background: linear-gradient(180deg, var(--av-primary), #ffb27a);
    transition: transform .22s var(--av-ease);
}
.hv-nav a:hover { transform: translateX(2px); }
.hv-nav a.active {
    background: linear-gradient(90deg, rgba(var(--hv-primary-rgb, 242 113 42), .2), rgba(var(--hv-primary-rgb, 242 113 42), .05));
    color: #fff;
}
.hv-nav a.active::before { transform: translateY(-50%) scaleY(1); }
.hv-nav a .bi { color: #8f97b0; transition: color .18s var(--av-ease); }
.hv-nav a:hover .bi, .hv-nav a.active .bi { color: var(--av-primary); }

/* Sidebar sürüm rozeti (§258) */
.hv-version {
    margin: 1.1rem .5rem .2rem;
    padding: .5rem .7rem;
    border-radius: 10px;
    background: rgba(255, 255, 255, .045);
    border: 1px solid rgba(255, 255, 255, .06);
    color: #99a1bb;
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.hv-version b { color: var(--av-primary); letter-spacing: .02em; }

/* ---------- Topbar V2: cam ---------- */
.hv-topbar {
    backdrop-filter: blur(14px) saturate(1.35);
    -webkit-backdrop-filter: blur(14px) saturate(1.35);
    border: 1px solid rgba(230, 233, 242, .9);
    border-radius: 14px;
    box-shadow: 0 12px 30px -22px rgba(15, 23, 42, .35);
}
.hv-search input { font-size: 13.5px; }
.hv-search:focus-within {
    box-shadow: 0 0 0 3px var(--av-primary-soft);
    border-color: rgba(var(--hv-primary-rgb, 242 113 42), .4) !important;
}

/* ---------- Stat kartları V2 ---------- */
.hv-content .stat-card {
    display: flex;
    align-items: center;
    gap: .8rem;
    padding: 1.05rem 1.1rem;
}
.hv-content .stat-card .stat-icon {
    width: 44px; height: 44px;
    border-radius: 13px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 19px;
    color: #fff;
    flex: 0 0 auto;
    box-shadow: 0 10px 20px -10px rgba(15, 23, 42, .45);
}
.hv-content .stat-card .stat-value { font-size: 21px; font-weight: 800; letter-spacing: -.03em; line-height: 1.1; }
.hv-content .stat-card .stat-label { font-size: 11.5px; font-weight: 700; color: var(--av-ink-2); letter-spacing: .01em; }
.stat-icon.indigo { background: linear-gradient(135deg, #6366f1, #8b8ff8); }
.stat-icon.sky { background: linear-gradient(135deg, #0ea5e9, #38bdf8); }
.stat-icon.green { background: linear-gradient(135deg, #16a34a, #4ade80); }
.stat-icon.amber { background: linear-gradient(135deg, #d97706, #fbbf24); }
.stat-icon.red { background: linear-gradient(135deg, #dc2626, #f87171); }
.stat-icon:not(.indigo):not(.sky):not(.green):not(.amber):not(.red) { background: linear-gradient(135deg, var(--av-primary), #ff9a56); }

/* Hızlı aksiyon çipleri */
.md-quick {
    display: flex; align-items: center; gap: .55rem;
    padding: .78rem .95rem;
    border-radius: 13px;
    background: var(--av-surface);
    border: 1px solid var(--av-line);
    font-size: 13px; font-weight: 700; color: var(--av-ink);
    text-decoration: none;
    box-shadow: 0 1px 2px rgba(15, 23, 42, .04);
    transition: transform .2s var(--av-ease), box-shadow .2s var(--av-ease), border-color .2s var(--av-ease);
}
.md-quick i { color: var(--av-primary); font-size: 16px; }
.md-quick:hover { transform: translateY(-2px); border-color: rgba(var(--hv-primary-rgb, 242 113 42), .4); box-shadow: var(--av-shadow); color: var(--av-primary); }

/* ---------- Tablolar V2 ---------- */
.hv-content .table thead th {
    font-size: 10.5px;
    text-transform: uppercase;
    letter-spacing: .09em;
    color: var(--av-muted);
    font-weight: 800;
    border-bottom: 1px solid var(--av-line);
    padding-top: .7rem;
    padding-bottom: .7rem;
}
.hv-content .table td { vertical-align: middle; }
.hv-content .table-light-head thead th { background: #fafbfe; }

/* ---------- Rozetler: yumuşak tonlar ---------- */
.hv-content .badge { border-radius: 8px; font-weight: 700; letter-spacing: .01em; padding: .38em .6em; }
.hv-content .badge-success { background: #e7f8ee; color: #15803d; border: 1px solid #bfead0; }
.hv-content .badge-warning { background: #fef4e6; color: #b45309; border: 1px solid #f8ddb0; }
.hv-content .badge-danger { background: #fdecec; color: #b91c1c; border: 1px solid #f7c8c8; }
.hv-content .badge-info { background: #e6f5fd; color: #0369a1; border: 1px solid #bce3f7; }
.hv-content .badge-secondary { background: #eef1f6; color: #475569; border: 1px solid #dde3ee; }
.hv-content .badge-light { background: #fafbfe; color: #5b6478; border: 1px solid #e6e9f2; }

/* ---------- Formlar V2 ---------- */
.hv-content .form-control, .hv-content .form-select {
    border-radius: 10px;
    border-color: var(--av-line);
    transition: border-color .18s var(--av-ease), box-shadow .18s var(--av-ease);
}
.hv-content .form-control:focus, .hv-content .form-select:focus {
    border-color: rgba(var(--hv-primary-rgb, 242 113 42), .55);
    box-shadow: 0 0 0 3.5px var(--av-primary-soft);
}
.hv-content .btn { border-radius: 10px; font-weight: 700; }
.hv-content .btn-light { background: #fff; border-color: var(--av-line); color: var(--av-ink); }
.hv-content .btn-light:hover { border-color: rgba(var(--hv-primary-rgb, 242 113 42), .5); }

/* ---------- Sekmeler: pill ---------- */
.hv-content .nav-tabs { border-bottom: 1px solid var(--av-line); gap: .25rem; }
.hv-content .nav-tabs .nav-link {
    border: none;
    border-bottom: 2px solid transparent;
    color: var(--av-ink-2);
    font-weight: 700;
    font-size: 13.5px;
    padding: .6rem .95rem;
    margin-bottom: -1px;
    transition: color .18s var(--av-ease), border-color .18s var(--av-ease), background .18s var(--av-ease);
    border-radius: 10px 10px 0 0;
}
.hv-content .nav-tabs .nav-link:hover { color: var(--av-primary); background: var(--av-primary-soft); }
.hv-content .nav-tabs .nav-link.active { color: var(--av-primary); border-bottom-color: var(--av-primary); background: transparent; }

/* ---------- Timeline V2 ---------- */
.hv-content .timeline { position: relative; padding-left: 1.35rem; }
.hv-content .timeline::before {
    content: '';
    position: absolute;
    left: 5px; top: 6px; bottom: 6px;
    width: 2px;
    border-radius: 2px;
    background: linear-gradient(180deg, rgba(var(--hv-primary-rgb, 242 113 42), .5), var(--av-line));
}
.hv-content .timeline-item { position: relative; padding: .35rem 0 .35rem .35rem; }
.hv-content .timeline-item::before {
    content: '';
    position: absolute;
    left: -1.35rem; top: .8rem;
    width: 12px; height: 12px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid var(--av-primary);
    box-shadow: 0 0 0 3px rgba(var(--hv-primary-rgb, 242 113 42), .15);
}
.hv-content .timeline-item .time { font-size: 11px; color: var(--av-muted); }

/* ---------- Empty state ---------- */
.hv-content .empty-state { padding: 2.4rem 1rem; }
.hv-content .empty-state .ico {
    width: 64px; height: 64px;
    margin: 0 auto .9rem;
    border-radius: 20px;
    display: flex; align-items: center; justify-content: center;
    font-size: 26px;
    color: var(--av-primary);
    background: var(--av-primary-soft);
}

/* =========================================================
   SUNUCU KONTROL BİLEŞENLERİ (sc-*) — admin + client ortak
   ========================================================= */
.sc-panel { position: relative; overflow: hidden; }
.sc-panel::before {
    content: '';
    position: absolute;
    inset: 0 0 auto 0;
    height: 3px;
    background: linear-gradient(90deg, var(--av-primary), rgba(var(--hv-primary-rgb, 242 113 42), .12));
}
.sc-grid {
    display: grid;
    grid-template-columns: minmax(210px, 1fr) minmax(260px, 1.4fr);
    gap: 1.1rem;
    align-items: center;
}
.sc-status-box { display: flex; align-items: center; gap: .95rem; }
.sc-ring {
    width: 74px; height: 74px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    flex: 0 0 auto;
    position: relative;
    isolation: isolate;
}
.sc-ring::after {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    border: 2px dashed transparent;
}
.sc-ring-on { background: radial-gradient(circle at 30% 25%, #34d399, #16a34a); color: #fff; box-shadow: 0 14px 30px -14px rgba(22, 163, 74, .8); }
.sc-ring-off { background: radial-gradient(circle at 30% 25%, #94a3b8, #64748b); color: #fff; box-shadow: 0 14px 30px -14px rgba(100, 116, 139, .7); }
.sc-ring-warn { background: radial-gradient(circle at 30% 25%, #fbbf24, #d97706); color: #fff; box-shadow: 0 14px 30px -14px rgba(217, 119, 6, .8); }
.sc-ring-on::after { border-color: rgba(22, 163, 74, .4); animation: scSpin 9s linear infinite; }
.sc-status-meta { min-width: 0; }
.sc-rescue-pill {
    display: inline-flex; align-items: center;
    padding: .28rem .6rem;
    border-radius: 999px;
    background: #fef4e6; color: #b45309;
    border: 1px solid #f8ddb0;
    font-size: 11px; font-weight: 800;
}
.sc-actions { display: flex; flex-wrap: wrap; gap: .5rem; }
.sc-btn { min-width: 108px; justify-content: center; display: inline-flex; align-items: center; }
.sc-btn[disabled] { opacity: .45; pointer-events: none; }

/* Kullanım ölçerleri */
.sc-usage { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: .8rem; }
.sc-meter {
    background: #fafbfe;
    border: 1px solid var(--av-line);
    border-radius: 12px;
    padding: .6rem .75rem;
}
.sc-meter-head {
    display: flex; justify-content: space-between; align-items: center;
    font-size: 12px; font-weight: 700; color: var(--av-ink-2);
    margin-bottom: .4rem;
}
.sc-bar {
    height: 7px;
    border-radius: 6px;
    background: #e9edf5;
    overflow: hidden;
}
.sc-bar > span {
    display: block; height: 100%;
    border-radius: 6px;
    background: linear-gradient(90deg, var(--av-primary), #ffb27a);
    transition: width .5s var(--av-ease);
}

/* Alt bölümler + IP tablosu */
.sc-subhead {
    font-size: 11px; font-weight: 800;
    text-transform: uppercase; letter-spacing: .09em;
    color: var(--av-muted);
    margin-bottom: .45rem;
}
.sc-rdns-box { margin: .2rem 0 .5rem; }
.sc-rdns-box form { max-width: 420px; }
.sc-ip-chip {
    display: flex; align-items: center; gap: .5rem;
    flex-wrap: wrap;
    background: #fafbfe;
    border: 1px solid var(--av-line);
    border-radius: 11px;
    padding: .5rem .7rem;
    font-size: 13px;
}
.sc-ip-chip i { color: var(--av-primary); }
.sc-os-chip {
    display: inline-flex; align-items: center;
    padding: .3rem .65rem;
    border-radius: 999px;
    background: var(--av-primary-soft);
    color: var(--av-primary);
    border: 1px solid rgba(var(--hv-primary-rgb, 242 113 42), .25);
    font-size: 11.5px; font-weight: 800;
}
@keyframes scSpin { to { transform: rotate(360deg); } }
.spin { animation: scSpin .8s linear infinite; display: inline-block; }

/* ---------- Modüller sayfası: modül kartlarına nabız ---------- */
.hv-content .module-card.online .module-status { color: var(--av-green); }

/* ---------- Sayfa başlığı deseni (d-flex header) cilası ---------- */
.hv-content > .hv-content-wide > .d-flex:first-child h3,
.hv-content h3.fw-800 { letter-spacing: -.035em; }

/* ---------- Mobil ---------- */
@media (max-width: 991.98px) {
    .sc-grid { grid-template-columns: 1fr; }
}
@media (max-width: 767.98px) {
    .sc-ring { width: 62px; height: 62px; font-size: 22px; }
    .sc-btn { min-width: 0; flex: 1 1 auto; }
    .sc-actions .btn { flex: 1 1 calc(50% - .5rem); }
    .hv-content .stat-card .stat-value { font-size: 18px; }
    .hv-content .card { border-radius: 14px; }
    .md-quick { padding: .65rem .7rem; font-size: 12.5px; }
}

/* ---------- Hareket azaltma ---------- */
@media (prefers-reduced-motion: reduce) {
    .sc-ring-on::after, .spin { animation: none; }
    .hv-nav a::before, .hv-nav a, .md-quick, .sc-bar > span { transition: none; }
}

/* ---------- §271 AI Asistan: yönetici sohbeti + vitrin widget ---------- */
.ai-chat-wrap { display: flex; flex-direction: column; overflow: hidden; }
.ai-chat-head {
    display: flex; align-items: center; gap: .65rem;
    padding: .9rem 1.1rem;
    border-bottom: 1px solid rgba(15, 23, 42, .08);
    background: linear-gradient(135deg, rgba(var(--hv-primary-rgb, 242 113 42), .07), transparent);
}
.ai-dot { width: 10px; height: 10px; border-radius: 50%; background: #22c55e; box-shadow: 0 0 0 4px rgba(34, 197, 94, .18); flex: 0 0 auto; }
.ai-chat-body {
    flex: 1 1 auto; min-height: 320px; max-height: 460px; overflow-y: auto;
    padding: 1rem; display: flex; flex-direction: column; gap: .6rem;
    background: rgba(15, 23, 42, .02);
}
.ai-bubble {
    max-width: 82%; padding: .6rem .85rem; border-radius: 14px;
    font-size: 13.5px; line-height: 1.55;
    white-space: pre-wrap; word-break: break-word;
}
.ai-bubble.is-user { align-self: flex-end; background: var(--hv-primary, #f2712a); color: #fff; border-bottom-right-radius: 4px; }
.ai-bubble.is-bot { align-self: flex-start; background: #fff; border: 1px solid rgba(15, 23, 42, .08); border-bottom-left-radius: 4px; }
.ai-bubble.is-typing { opacity: .75; font-style: italic; }
.ai-bubble.is-err { border-color: rgba(239, 68, 68, .4); color: #b91c1c; background: rgba(239, 68, 68, .06); }
.ai-quick { display: flex; flex-wrap: wrap; gap: .4rem; }
.ai-quick-btn, .ai-chip {
    border: 1px solid rgba(var(--hv-primary-rgb, 242 113 42), .35);
    color: var(--hv-primary, #f2712a);
    background: rgba(var(--hv-primary-rgb, 242 113 42), .07);
    border-radius: 999px; padding: .32rem .7rem;
    font-size: 12px; font-weight: 700; cursor: pointer;
    transition: background .15s ease, transform .15s ease;
}
.ai-quick-btn:hover, .ai-chip:hover { background: rgba(var(--hv-primary-rgb, 242 113 42), .14); transform: translateY(-1px); }
.ai-composer { display: flex; gap: .5rem; padding: .75rem 1rem 1rem; border-top: 1px solid rgba(15, 23, 42, .08); }
.ai-input {
    flex: 1 1 auto; min-width: 0;
    border: 1px solid rgba(15, 23, 42, .15); border-radius: 12px;
    padding: .55rem .8rem; font-size: 13.5px; outline: none;
}
.ai-input:focus { border-color: var(--hv-primary, #f2712a); box-shadow: 0 0 0 3px rgba(var(--hv-primary-rgb, 242 113 42), .15); }
.ai-send {
    flex: 0 0 auto; width: 40px; height: 40px; border-radius: 12px; border: none;
    background: var(--hv-primary, #f2712a); color: #fff; font-size: 16px; cursor: pointer;
    display: inline-flex; align-items: center; justify-content: center;
    transition: transform .15s ease, opacity .15s ease;
}
.ai-send:hover { transform: translateY(-1px); }
.ai-send:disabled { opacity: .55; cursor: wait; }

/* vitrin: yüzen düğme + sohbet çekmecesi (sabit konumlu, akışı etkilemez) */
.ai-fab {
    position: fixed; right: 18px; bottom: 18px; z-index: 1080;
    display: inline-flex; align-items: center; gap: .5rem;
    border: none; border-radius: 999px; padding: .7rem 1.05rem;
    background: linear-gradient(135deg, var(--hv-primary, #f2712a), #ff9a5b);
    color: #fff; font-weight: 800; font-size: 13.5px;
    box-shadow: 0 10px 30px rgba(242, 113, 42, .35); cursor: pointer;
    transition: transform .15s ease, box-shadow .15s ease;
}
.ai-fab:hover { transform: translateY(-2px); box-shadow: 0 14px 34px rgba(242, 113, 42, .42); }
.ai-fab .bi-stars { font-size: 17px; }
.ai-drawer {
    position: fixed; right: 18px; bottom: 84px; z-index: 1081;
    width: 360px; max-width: calc(100vw - 24px);
    background: #fff; border-radius: 18px; border: 1px solid rgba(15, 23, 42, .08);
    box-shadow: 0 24px 60px rgba(15, 23, 42, .22); overflow: hidden;
    display: flex; flex-direction: column;
}
.ai-drawer-head {
    display: flex; align-items: center; justify-content: space-between;
    padding: .8rem 1rem; color: #fff;
    background: linear-gradient(135deg, var(--hv-primary, #f2712a), #ff9a5b);
}
.ai-drawer-title { font-weight: 800; font-size: 14px; display: inline-flex; align-items: center; gap: .45rem; }
.ai-drawer-close {
    background: rgba(255, 255, 255, .2); border: none; color: #fff;
    width: 28px; height: 28px; border-radius: 8px; cursor: pointer;
    display: inline-flex; align-items: center; justify-content: center;
}
.ai-drawer-body {
    height: 280px; overflow-y: auto; padding: .9rem;
    display: flex; flex-direction: column; gap: .5rem;
    background: rgba(15, 23, 42, .02);
}
.ai-drawer-quick { display: flex; flex-wrap: wrap; gap: .35rem; padding: .55rem .7rem; border-top: 1px solid rgba(15, 23, 42, .06); }
.ai-drawer-foot { display: flex; gap: .5rem; padding: .7rem .8rem .85rem; border-top: 1px solid rgba(15, 23, 42, .06); }

@media (max-width: 767.98px) {
    .ai-drawer { right: 8px; left: 8px; bottom: 78px; width: auto; }
    .ai-bubble { max-width: 90%; }
    .ai-fab { right: 12px; bottom: 12px; padding: .65rem .85rem; font-size: 12.5px; }
    .ai-chat-body { min-height: 260px; max-height: 380px; }
}
@media (prefers-reduced-motion: reduce) {
    .ai-fab, .ai-send, .ai-quick-btn, .ai-chip { transition: none; }
}
