/* Ana stil dosyası (Renkler, tipografi) */

:root {
    --asb-orange: #f97316; /* Ana Turuncu */
    --asb-orange-dark: #ea580c;
    --asb-orange-light: #fdba74;
}

/* ASB Yazılım Logo (Tipografik) */
.asb-logo {
    display: inline-flex;
    align-items: baseline;
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 1.65rem;
    line-height: 1;
    letter-spacing: -1.5px;
    text-decoration: none;
    color: inherit;
}
.asb-logo:hover {
    text-decoration: none;
    color: inherit;
}
.asb-logo .logo-asb {
    color: #1f2937;
    margin-right: 0.15em;
}
.asb-logo .logo-yazilim {
    color: var(--asb-orange);
}
.asb-logo .logo-reg {
    font-size: 0.55rem;
    font-weight: 600;
    color: var(--asb-orange);
    margin-left: 2px;
    top: -0.9em;
    position: relative;
}
/* Footer'da koyu zeminde logo */
.asb-logo-light .logo-asb {
    color: #ffffff;
}

/* Logo Image (PNG) */
.asb-logo-img {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}
.asb-logo-image {
    height: 52px;
    width: auto;
    max-width: 240px;
    display: block;
    transition: transform 0.2s ease;
}
.asb-logo-img:hover .asb-logo-image {
    transform: scale(1.03);
}
/* Footer'da koyu zeminde logo'yu beyaz tonuna çevir */
.asb-logo-image-footer {
    height: 52px;
    filter: brightness(0) invert(1) opacity(0.95);
}
/* Navbar küçüldüğünde logo da hafif küçülür */
.navbar.navbar-scrolled .asb-logo-image {
    height: 42px;
}
@media (max-width: 991px) {
    .asb-logo-image {
        height: 38px;
    }
}

/* ============================================
   TOAST NOTIFICATION (Mail gönderildi vs.)
   ============================================ */
.asb-toast-container {
    position: fixed;
    top: 90px;
    right: 24px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
    pointer-events: none;
}
@media (max-width: 575px) {
    .asb-toast-container {
        top: 80px;
        right: 12px;
        left: 12px;
    }
}

.asb-toast {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    min-width: 320px;
    max-width: 420px;
    padding: 14px 16px;
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18), 0 0 0 1px rgba(0, 0, 0, 0.04);
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    pointer-events: auto;
    position: relative;
    overflow: hidden;
}
@media (max-width: 575px) {
    .asb-toast {
        min-width: auto;
        max-width: none;
        width: 100%;
    }
}
.asb-toast.show {
    opacity: 1;
    transform: translateX(0);
}
.asb-toast::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
}
.asb-toast-success::before {
    background: linear-gradient(180deg, #22c55e, #16a34a);
}
.asb-toast-error::before {
    background: linear-gradient(180deg, #ef4444, #dc2626);
}

.asb-toast-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #fff;
}
.asb-toast-success .asb-toast-icon {
    background: linear-gradient(135deg, #22c55e, #16a34a);
}
.asb-toast-error .asb-toast-icon {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

.asb-toast-body {
    flex: 1;
    padding-top: 2px;
}
.asb-toast-title {
    font-weight: 700;
    font-size: 0.95rem;
    color: #111827;
    margin-bottom: 2px;
}
.asb-toast-text {
    font-size: 0.85rem;
    color: #6b7280;
    line-height: 1.4;
}

.asb-toast-close {
    background: none;
    border: none;
    font-size: 1.4rem;
    line-height: 1;
    color: #9ca3af;
    cursor: pointer;
    padding: 0;
    margin-top: -4px;
    margin-left: 4px;
    transition: color 0.2s ease;
}
.asb-toast-close:hover {
    color: #374151;
}

/* KVKK Modal */
.kvkk-modal .modal-content {
    background: linear-gradient(180deg, #ffffff 0%, #fffaf5 100%);
}
.kvkk-modal-body {
    max-height: 65vh;
}
.kvkk-modal-body h6 {
    color: var(--asb-orange-dark);
    font-size: 0.95rem;
    padding-bottom: 0.35rem;
    border-bottom: 1px solid #f0e6dc;
}
.kvkk-modal-body p,
.kvkk-modal-body ul {
    margin-top: 0.5rem;
}
.kvkk-modal-body li {
    padding: 0.15rem 0;
}
.kvkk-modal .btn-close {
    background-color: #fff3e6;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    opacity: 0.7;
}
.kvkk-modal .btn-close:hover {
    opacity: 1;
    transform: scale(1.05);
}

body {
    font-family: 'Inter', sans-serif;
    color: #333;
}

/* Turuncu Tema Override (Bootstrap Primary Ezme) */
.text-primary { color: var(--asb-orange) !important; }
.bg-primary { background-color: var(--asb-orange) !important; }
.btn-primary {
    background-color: var(--asb-orange);
    border-color: var(--asb-orange);
    color: #fff;
}
.btn-primary:hover {
    background-color: var(--asb-orange-dark);
    border-color: var(--asb-orange-dark);
    color: #fff;
}
.btn-outline-primary {
    color: var(--asb-orange);
    border-color: var(--asb-orange);
}
.btn-outline-primary:hover {
    background-color: var(--asb-orange);
    border-color: var(--asb-orange);
    color: #fff;
}

/* Hero Section Özel Arka Plan */
.hero-section {
    /* Arka planı daha canlı renklerle genişletiyoruz */
    background: linear-gradient(-45deg, var(--asb-orange), #ff9842, #ea580c, #ffb347);
    background-size: 400% 400%;
    animation: gradientBG 12s ease infinite;
    min-height: 60vh;
    padding: 100px 0;
}

/* Arka plan renk geçiş animasyonu */
@keyframes gradientBG {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* ============================================
   HERO V2 — Ana sayfa için zengin tasarım
   ============================================ */
.hero-v2 {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 40%, #312e81 100%) !important;
    min-height: 92vh;
    padding: 130px 0 100px;
    position: relative;
    overflow: hidden;
    animation: none !important;
}

/* Grid pattern arka plan */
.hero-bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
    pointer-events: none;
}

/* Floating blob'lar */
.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.35;
    pointer-events: none;
    will-change: transform;
}
.hero-blob-1 {
    width: 480px;
    height: 480px;
    background: radial-gradient(circle, var(--asb-orange), transparent 70%);
    top: -120px;
    left: -100px;
    animation: blobFloat1 18s ease-in-out infinite;
}
.hero-blob-2 {
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, #6366f1, transparent 70%);
    bottom: -120px;
    right: -80px;
    animation: blobFloat2 22s ease-in-out infinite;
}
.hero-blob-3 {
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, #ec4899, transparent 70%);
    top: 40%;
    left: 50%;
    opacity: 0.18;
    animation: blobFloat3 26s ease-in-out infinite;
}
@keyframes blobFloat1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(80px, 60px) scale(1.1); }
}
@keyframes blobFloat2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-60px, -80px) scale(1.15); }
}
@keyframes blobFloat3 {
    0%, 100% { transform: translate(-50%, 0) scale(1); }
    50% { transform: translate(-30%, 30px) scale(1.2); }
}

/* Hero Badge — üst rozet */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    margin-bottom: 1.5rem;
}
.hero-badge-dot {
    width: 8px;
    height: 8px;
    background: var(--asb-orange);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.3);
    animation: dotPulse 2s ease-in-out infinite;
}
@keyframes dotPulse {
    0%, 100% { box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.3); }
    50% { box-shadow: 0 0 0 8px rgba(249, 115, 22, 0.1); }
}

/* Başlık */
.hero-title {
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin-bottom: 1.25rem;
    color: #fff;
}
.text-gradient-fire {
    background: linear-gradient(120deg, #fb923c 0%, #f97316 30%, #fbbf24 70%, #fb923c 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShine 6s ease infinite;
    display: inline-block;
}
@keyframes gradientShine {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Alt başlık */
.hero-subtitle {
    font-size: 1.15rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 2rem;
    max-width: 580px;
}

/* CTA Butonlar */
.hero-cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}
.btn-hero-primary,
.btn-hero-ghost {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1rem 1.75rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}
.btn-hero-primary {
    background: linear-gradient(135deg, var(--asb-orange), var(--asb-orange-dark));
    color: #fff;
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.45);
}
.btn-hero-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}
.btn-hero-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(249, 115, 22, 0.6);
    color: #fff;
}
.btn-hero-primary:hover::before {
    left: 100%;
}
.btn-hero-ghost {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(12px);
}
.btn-hero-ghost:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    color: #fff;
    transform: translateY(-3px);
}

/* Hero Stats — sol tarafta yeni stil */
.hero-stats-row {
    margin-top: 0;
}
.hero-v2 .hero-stat {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 14px;
    padding: 1rem 1.1rem;
    color: #fff;
    transition: all 0.3s ease;
    text-align: left;
}
.hero-v2 .hero-stat:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(249, 115, 22, 0.35);
}
.hero-v2 .hero-stat-value {
    font-size: 1.85rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -1px;
    background: linear-gradient(135deg, #fb923c, #fbbf24);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero-v2 .hero-stat-label {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.65);
    margin-top: 0.4rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

/* Hero Visual — sağdaki dashboard mockup */
.hero-visual {
    position: relative;
    padding: 20px;
    perspective: 1000px;
}
.hero-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 18px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    color: #fff;
    animation: floatY 6s ease-in-out infinite;
}

.hero-card-main {
    position: relative;
    width: 100%;
    padding: 18px;
    transform: rotateY(-4deg) rotateX(2deg);
    background: rgba(15, 23, 42, 0.85);
    border-color: rgba(249, 115, 22, 0.25);
    animation: floatYMain 14s ease-in-out infinite;
    z-index: 1; /* Uçuşan kartlar daha önde, dashboard arkada */
}
@keyframes floatYMain {
    0%, 100% { transform: rotateY(-4deg) rotateX(2deg) translateY(0); }
    50% { transform: rotateY(-4deg) rotateX(2deg) translateY(-12px); }
}

.hero-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 14px;
}
.hero-card-dots {
    display: flex;
    gap: 5px;
}
.hero-card-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
}
.hero-card-dots span:nth-child(1) { background: #ef4444; }
.hero-card-dots span:nth-child(2) { background: #f59e0b; }
.hero-card-dots span:nth-child(3) { background: #22c55e; }
.hero-card-title {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
    flex: 1;
}

/* CANLI badge — dashboard'a "live" hissi katar */
.hero-card-live {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.65rem;
    font-weight: 700;
    color: #22c55e;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 2px 8px;
    background: rgba(34, 197, 94, 0.12);
    border-radius: 999px;
}
.hero-card-live .live-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #22c55e;
    animation: livePulse 1.5s ease-in-out infinite;
}
@keyframes livePulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.4); }
}

/* 6 Modül Mini Metric Grid */
.hero-mock-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 12px;
}
.hero-mini-metric {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    transition: all 0.25s ease;
}
.hero-mini-metric:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(2px);
    border-color: rgba(249, 115, 22, 0.3);
}
.hero-mini-icon {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.95rem;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}
.hero-mini-label {
    font-size: 0.62rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1;
    margin-bottom: 2px;
}
.hero-mini-value {
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}
.hero-mini-unit {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.6);
    margin-left: 1px;
}
.hero-mini-trend {
    margin-left: auto;
    font-size: 0.65rem;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 4px;
    background: rgba(34, 197, 94, 0.18);
    color: #86efac;
    white-space: nowrap;
}
.hero-mock-grid-4 {
    grid-template-columns: 1fr 1fr;
}

/* ============================================
   KPI HERO — Üst büyük metric (ciro + spark)
   ============================================ */
.kpi-hero {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.12), rgba(249, 115, 22, 0.04));
    border: 1px solid rgba(249, 115, 22, 0.25);
    border-radius: 12px;
    margin-bottom: 12px;
}
.kpi-hero-left {
    flex: 1;
    min-width: 0;
}
.kpi-hero-label {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 4px;
    font-weight: 600;
}
.kpi-hero-value {
    font-size: 1.55rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    letter-spacing: -0.5px;
    margin-bottom: 8px;
}
.kpi-currency {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.7);
    margin-right: 2px;
}
.kpi-hero-progress {
    width: 100%;
}
.kpi-progress-bar {
    width: 100%;
    height: 5px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    overflow: hidden;
    margin-bottom: 4px;
}
.kpi-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--asb-orange), var(--asb-orange-light));
    border-radius: 999px;
    animation: progressFill 1.5s ease-out;
}
@keyframes progressFill {
    from { width: 0%; }
}
.kpi-progress-label {
    display: flex;
    justify-content: space-between;
    font-size: 0.62rem;
    color: rgba(255, 255, 255, 0.55);
}
.kpi-progress-pct {
    color: var(--asb-orange-light);
    font-weight: 700;
}
.kpi-hero-spark {
    width: 90px;
    flex-shrink: 0;
    text-align: right;
}
.kpi-hero-spark svg {
    width: 100%;
    height: 40px;
}
.kpi-spark-trend {
    font-size: 0.72rem;
    font-weight: 700;
    color: #22c55e;
    margin-top: 2px;
}

/* ============================================
   DASH CHART BLOCK — Saatlik bar chart
   ============================================ */
.dash-chart-block {
    margin-top: 12px;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}
.dash-chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}
.dash-chart-title {
    font-size: 0.7rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.dash-chart-legend {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.62rem;
    color: rgba(255, 255, 255, 0.55);
}
.legend-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 2px;
    margin-right: 3px;
    vertical-align: middle;
}
.legend-now { background: var(--asb-orange); }
.legend-prev { background: rgba(255, 255, 255, 0.25); }

.dash-bars {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 8px;
    height: 56px;
}
.dash-bar-group {
    flex: 1;
    height: 100%;
    display: flex;
    align-items: flex-end;
    gap: 2px;
}
.dash-bar {
    flex: 1;
    border-radius: 2px 2px 0 0;
    transition: opacity 0.3s ease;
    min-height: 4px;
}
.dash-bar-prev {
    background: rgba(255, 255, 255, 0.18);
}
.dash-bar-now {
    background: linear-gradient(180deg, var(--asb-orange-light), var(--asb-orange));
    box-shadow: 0 0 8px rgba(249, 115, 22, 0.4);
    animation: barRise 1.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes barRise {
    from { height: 0 !important; }
}

/* ============================================
   AI INSIGHTS RIBBON — Alt önerim çubuğu
   ============================================ */
.dash-ai-ribbon {
    margin-top: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    background: linear-gradient(90deg, rgba(99, 102, 241, 0.2), rgba(249, 115, 22, 0.15));
    border: 1px solid rgba(249, 115, 22, 0.3);
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}
.dash-ai-ribbon::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
    animation: ribbonShine 3s ease-in-out infinite;
}
@keyframes ribbonShine {
    0%, 100% { left: -100%; }
    50% { left: 100%; }
}
.dash-ai-icon {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--asb-orange), var(--asb-orange-dark));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(249, 115, 22, 0.4);
}
.dash-ai-content {
    flex: 1;
    min-width: 0;
    z-index: 1;
}
.dash-ai-label {
    font-size: 0.6rem;
    color: var(--asb-orange-light);
    font-weight: 700;
    letter-spacing: 0.8px;
    margin-bottom: 2px;
}
.dash-ai-text {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.2;
}
.dash-ai-text strong {
    color: #22c55e;
    font-weight: 700;
}
.dash-ai-action {
    font-size: 0.62rem;
    color: var(--asb-orange-light);
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
    z-index: 1;
    white-space: nowrap;
}
.dash-ai-action:hover {
    color: #fff;
}

.hero-mock-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 14px;
}
.hero-mock-stat {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 10px 12px;
}
.hero-mock-label {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.55);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
}
.hero-mock-value {
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}
.hero-mock-trend {
    font-size: 0.72rem;
    margin-top: 4px;
    font-weight: 600;
}
.hero-mock-trend.up { color: #22c55e; }

.hero-mock-chart {
    height: 60px;
    margin-bottom: 12px;
}
.hero-mock-chart svg {
    width: 100%;
    height: 100%;
}

.hero-mock-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.hero-mock-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    background: rgba(249, 115, 22, 0.15);
    border: 1px solid rgba(249, 115, 22, 0.3);
    border-radius: 999px;
    font-size: 0.72rem;
    color: #fdba74;
    font-weight: 500;
}
.hero-mock-tag-success {
    background: rgba(34, 197, 94, 0.15);
    border-color: rgba(34, 197, 94, 0.3);
    color: #86efac;
}

/* Floating Cards — ortak stil */
.hero-card-order,
.hero-card-invoice,
.hero-card-production,
.hero-card-marketplace,
.hero-card-satisfaction {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    width: 200px;
    z-index: 20; /* Dashboard'un ÜSTÜNDE — her zaman tam görünür */
}

/* Pozisyon — kartlar dashboard'un dışına itildi (çakışma olmaz) */
.hero-card-order {
    top: 4%;
    left: -150px;
    animation: floatX 11s ease-in-out infinite;
}
.hero-card-invoice {
    top: 28%;
    right: -150px;
    animation: floatY 13s ease-in-out infinite reverse;
}
.hero-card-production {
    top: 55%;
    left: -160px;
    animation: floatY 14s ease-in-out infinite 1s;
    width: 210px;
}
.hero-card-marketplace {
    top: 68%;
    right: -160px;
    animation: floatX 12s ease-in-out infinite 0.5s reverse;
    width: 210px;
}
.hero-card-satisfaction {
    bottom: -70px;
    left: 10%;
    animation: floatY 12s ease-in-out infinite 0.8s;
    width: 220px;
}

/* İkon kutuları — her kart farklı renk teması (modülü temsil eder) */
.hero-order-icon,
.hero-invoice-icon,
.hero-production-icon,
.hero-marketplace-icon,
.hero-satisfaction-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
    color: #fff;
}
.hero-order-icon {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    box-shadow: 0 6px 14px rgba(59, 130, 246, 0.4);
}
.hero-invoice-icon {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    box-shadow: 0 6px 14px rgba(34, 197, 94, 0.4);
}
.hero-production-icon {
    background: linear-gradient(135deg, #ec4899, #db2777);
    box-shadow: 0 6px 14px rgba(236, 72, 153, 0.4);
}
.hero-marketplace-icon {
    background: linear-gradient(135deg, var(--asb-orange), var(--asb-orange-dark));
    box-shadow: 0 6px 14px rgba(249, 115, 22, 0.4);
}
.hero-satisfaction-icon {
    background: linear-gradient(135deg, #fbbf24, #d97706);
    box-shadow: 0 6px 14px rgba(251, 191, 36, 0.4);
}

/* Başlık + alt metin */
.hero-order-title,
.hero-invoice-title,
.hero-production-title,
.hero-marketplace-title,
.hero-satisfaction-title {
    font-size: 0.82rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}
.hero-order-text,
.hero-invoice-text,
.hero-production-text,
.hero-marketplace-text,
.hero-satisfaction-text {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.65);
    margin-top: 2px;
}

/* Hero visual container — kartların taşması için overflow visible */
.hero-visual {
    overflow: visible !important;
}

/* Mobilde fazla kartları gizle — orta ekranlarda 5 kart çakışabilir */
@media (max-width: 1399px) {
    .hero-card-production,
    .hero-card-marketplace {
        display: none;
    }
}
@media (max-width: 1199px) {
    .hero-card-order,
    .hero-card-invoice,
    .hero-card-satisfaction {
        display: none;
    }
}

@keyframes floatX {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(0, -10px); }
}

/* İkon kutuları — her kart farklı renkte */
.hero-ai-icon,
.hero-notif-icon,
.hero-order-icon,
.hero-forecast-icon,
.hero-campaign-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
    color: #fff;
}
.hero-ai-icon {
    background: linear-gradient(135deg, var(--asb-orange), var(--asb-orange-dark));
    box-shadow: 0 6px 14px rgba(249, 115, 22, 0.4);
}
.hero-notif-icon {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    box-shadow: 0 6px 14px rgba(34, 197, 94, 0.4);
}
.hero-order-icon {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    box-shadow: 0 6px 14px rgba(59, 130, 246, 0.4);
}
.hero-forecast-icon {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
    box-shadow: 0 6px 14px rgba(6, 182, 212, 0.4);
}
.hero-campaign-icon {
    background: linear-gradient(135deg, #fbbf24, #d97706);
    box-shadow: 0 6px 14px rgba(251, 191, 36, 0.4);
}

/* Başlık + alt metin */
.hero-ai-title,
.hero-notif-title,
.hero-order-title,
.hero-forecast-title,
.hero-campaign-title {
    font-size: 0.82rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}
.hero-ai-text,
.hero-notif-text,
.hero-order-text,
.hero-forecast-text,
.hero-campaign-text {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.65);
    margin-top: 2px;
}

@keyframes floatY {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Scroll Down Hint */
.hero-scroll-hint {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    text-align: center;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: color 0.3s ease;
    animation: scrollHintBounce 2.4s ease-in-out infinite;
}
.hero-scroll-hint:hover {
    color: var(--asb-orange-light);
}
.hero-scroll-hint i {
    display: block;
    font-size: 1.2rem;
    margin-top: 4px;
}
@keyframes scrollHintBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-6px); }
}

/* Mobile */
@media (max-width: 991px) {
    .hero-v2 {
        padding: 100px 0 70px;
        min-height: auto;
        text-align: center;
    }
    .hero-cta-row {
        justify-content: center;
    }
    .hero-subtitle {
        margin-inline: auto;
    }
    .hero-v2 .hero-stat {
        text-align: center;
    }
    .hero-scroll-hint {
        display: none;
    }
}

/* Ürün & Sektör Kartları Hover Efektleri */
.feature-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 1rem;
    border: 1px solid #f0f0f0;
}
.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(249, 115, 22, 0.15) !important;
    border-color: var(--asb-orange-light);
}

/* Kart İçi İkon Zıplama Efekti */
.feature-card i {
    display: inline-block; /* Transform efektlerinin ikonlarda çalışması için gereklidir */
}
.feature-card:hover i {
    animation: jumpIcon 0.6s ease-in-out;
}
@keyframes jumpIcon {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px) scale(1.1); }
}

/* Sektör Kartları İçi İkon Dönme Efekti */
.sector-item i {
    display: inline-block; /* Transform efektlerinin çalışması için gereklidir */
}
.sector-item:hover i {
    animation: spinIcon 0.6s ease-in-out;
}
@keyframes spinIcon {
    0% { transform: rotateY(0deg); }
    50% { transform: rotateY(180deg) scale(1.2); }
    100% { transform: rotateY(360deg) scale(1); }
}

/* CTA Butonları Parlama (Glow) Efekti */
.cta-section .btn {
    transition: all 0.3s ease-in-out;
}
.cta-section .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(249, 115, 22, 0.5) !important;
}

/* Scroll Fade-in-Up Animasyonu */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* WhatsApp Sabit Buton */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    font-size: 30px;
    z-index: 1000;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    color: #FFF;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4) !important;
}

/* ============================================
   MODERN NAVBAR
   ============================================ */
.navbar {
    /* Sadece görsel özellikleri animate et — padding değil
       (padding animasyonu layout reflow yaratır, jitter sebebidir) */
    transition: padding 0.25s ease-out, background-color 0.25s ease-out, box-shadow 0.25s ease-out;
    z-index: 1050 !important;
    padding-top: 18px;
    padding-bottom: 18px;
    background: rgba(255, 255, 255, 0.92) !important;
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    /* GPU layer'a alarak akıcı render */
    will-change: padding, background-color;
    transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}
.navbar.navbar-scrolled {
    box-shadow: 0 8px 26px rgba(0, 0, 0, 0.06) !important;
    padding-top: 10px !important;
    padding-bottom: 10px !important;
    background: rgba(255, 255, 255, 0.96) !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

/* Dropdown z-index — navbar üzerinde */
.navbar .dropdown-menu {
    z-index: 1051 !important;
}

/* Nav linkler */
.navbar .nav-link {
    position: relative;
    font-weight: 600;
    font-size: 0.95rem;
    color: #374151 !important;
    padding: 0.6rem 1rem !important;
    border-radius: 10px;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
}
.navbar .nav-link .nav-icon {
    font-size: 0.95rem;
    margin-right: 0.45rem;
    opacity: 0.55;
    transition: all 0.25s ease;
}
.navbar .nav-link:hover {
    color: var(--asb-orange-dark) !important;
    background-color: #fff3e6;
}
.navbar .nav-link:hover .nav-icon {
    opacity: 1;
    color: var(--asb-orange);
    transform: scale(1.1);
}

/* Aktif sayfa için underline animasyonu */
.navbar .nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--asb-orange), var(--asb-orange-dark));
    border-radius: 2px;
    transition: all 0.25s ease;
    transform: translateX(-50%);
}
.navbar .nav-link:hover::after,
.navbar .nav-item.active > .nav-link::after,
.navbar .nav-item.show > .nav-link::after {
    width: 60%;
}

/* AI-First default vurgusu (ikon turuncu, normal arka plan) — hover'da diğerleri gibi davranır */
.nav-link-highlight {
    color: var(--asb-orange-dark) !important;
}
.nav-link-highlight .nav-icon {
    opacity: 1 !important;
    color: var(--asb-orange) !important;
}

/* Dropdown caret tamamen gizli */
.navbar .dropdown-toggle::after {
    display: none !important;
}

/* Standart Dropdown (Destek, Kurumsal) */
.navbar .dropdown-menu {
    border: none;
    border-radius: 14px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(0, 0, 0, 0.04);
    padding: 0.5rem;
    margin-top: 0.6rem;
    min-width: 240px;
}
.navbar .dropdown-item {
    padding: 0.65rem 0.85rem !important;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.92rem;
    color: #4b5563 !important;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
}
.navbar .dropdown-item:hover {
    background: linear-gradient(135deg, #fff3e6, #fffaf5);
    color: var(--asb-orange-dark) !important;
    padding-left: 1.2rem !important;
    transform: translateX(2px);
}
.navbar .dropdown-item i {
    width: 22px;
    text-align: center;
}

/* MEGA MENU (Ürünler / Sektörler) */
.mega-menu {
    min-width: 720px !important;
    max-width: 760px;
    border-radius: 18px !important;
    padding: 0 !important;
}
@media (max-width: 991px) {
    .mega-menu {
        min-width: 100% !important;
        max-width: 100%;
    }
}

.mega-section-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.6rem;
    padding: 0.5rem 0.75rem;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--asb-orange);
    border-bottom: 1px solid #f0e6dc;
}
.mega-section-header i {
    font-size: 0.95rem;
}

/* Mega Card — Featured (ön plan kart) */
.mega-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.1rem;
    background: linear-gradient(135deg, #fff3e6 0%, #fffaf5 100%);
    border: 1px solid rgba(249, 115, 22, 0.2);
    border-radius: 14px;
    text-decoration: none;
    transition: all 0.25s ease;
}
.mega-card:hover {
    transform: translateY(-3px);
    border-color: var(--asb-orange);
    box-shadow: 0 10px 24px rgba(249, 115, 22, 0.18);
}
.mega-card-featured {
    background: linear-gradient(135deg, var(--asb-orange) 0%, var(--asb-orange-dark) 100%);
    border-color: transparent;
}
.mega-card-featured:hover {
    box-shadow: 0 12px 28px rgba(249, 115, 22, 0.4);
}
.mega-card-featured .mega-card-icon,
.mega-card-featured .mega-card-title,
.mega-card-featured .mega-card-desc {
    color: #fff !important;
}
.mega-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.2);
    color: var(--asb-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}
.mega-card:not(.mega-card-featured) .mega-card-icon {
    background: var(--asb-orange);
    color: #fff;
}
.mega-card-title {
    font-weight: 700;
    font-size: 1rem;
    color: #1f2937;
    margin-bottom: 0.15rem;
}
.mega-card-desc {
    font-size: 0.82rem;
    color: #6b7280;
}

/* Mega Item — alt seviye link */
.mega-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.7rem 0.85rem;
    border-radius: 10px;
    text-decoration: none;
    color: #374151;
    transition: all 0.2s ease;
    height: 100%;
}
.mega-item:hover {
    background: #fff3e6;
    color: var(--asb-orange-dark);
    transform: translateX(3px);
}
.mega-item > i {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: #f9fafb;
    color: var(--asb-orange);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
    transition: all 0.2s ease;
}
.mega-item:hover > i {
    background: var(--asb-orange);
    color: #fff;
}
.mega-item-title,
.mega-item > span {
    font-weight: 600;
    font-size: 0.92rem;
    line-height: 1.2;
    display: block;
}
.mega-item-desc {
    font-size: 0.78rem;
    color: #9ca3af;
    margin-top: 0.15rem;
}
.mega-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.4rem;
}
@media (max-width: 575px) {
    .mega-grid { grid-template-columns: 1fr; }
}

/* Mega Footer — hızlı linkler */
.mega-footer {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 0.75rem 0.5rem 0;
    margin-top: 0.5rem;
    border-top: 1px solid #f0e6dc;
}
.mega-quick {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.85rem;
    border-radius: 999px;
    background: #f9fafb;
    color: #4b5563;
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
}
.mega-quick:hover {
    background: #fff3e6;
    color: var(--asb-orange-dark);
}
.mega-quick-cta {
    background: linear-gradient(135deg, var(--asb-orange), var(--asb-orange-dark));
    color: #fff !important;
}
.mega-quick-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(249, 115, 22, 0.35);
}

/* CTA Butonları (Fiyat Al / Demo) */
.nav-cta-group {
    margin-left: 0.5rem;
}
.btn-nav-ghost,
.btn-nav-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.55rem 1.15rem;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.92rem;
    text-decoration: none;
    transition: all 0.25s ease;
    white-space: nowrap;
}
.btn-nav-ghost {
    background: transparent;
    color: var(--asb-orange-dark);
    border: 1.5px solid var(--asb-orange);
}
.btn-nav-ghost:hover {
    background: #fff3e6;
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(249, 115, 22, 0.15);
}
.btn-nav-primary {
    background: linear-gradient(135deg, var(--asb-orange), var(--asb-orange-dark));
    color: #fff !important;
    border: 1.5px solid transparent;
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
}
.btn-nav-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 22px rgba(249, 115, 22, 0.45);
    color: #fff;
}

/* Dropdown açılış animasyonu (Bootstrap show class'ı ile) */
.navbar .dropdown-menu.show {
    animation: dropdownFade 0.25s ease;
}
@keyframes dropdownFade {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Mobile Görünüm */
@media (max-width: 991px) {
    .navbar {
        padding-top: 12px !important;
        padding-bottom: 12px !important;
    }
    .navbar-collapse {
        margin-top: 0.75rem;
        padding: 1rem;
        background: #fff;
        border-radius: 14px;
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    }
    .navbar .nav-link {
        padding: 0.65rem 0.85rem !important;
    }
    .navbar .dropdown-menu {
        box-shadow: none !important;
        background: #f9fafb;
        margin: 0.25rem 0 0.5rem;
        padding: 0.5rem !important;
    }
    .nav-cta-group {
        margin-top: 0.75rem !important;
        padding-top: 0.75rem;
        border-top: 1px solid #f0e6dc;
    }
    .btn-nav-ghost,
    .btn-nav-primary {
        justify-content: center;
        padding: 0.7rem 1rem;
    }
}

/* Navbar Brand hover */
.navbar-brand:hover {
    transform: scale(1.02);
    transition: transform 0.2s ease;
}

/* Toggler özelleştirme */
.navbar-toggler {
    padding: 0.4rem 0.6rem;
    border-radius: 8px;
}
.navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(249, 115, 22, 0.25) !important;
}

/* Yukarı Çık (Scroll to Top) Butonu */
#backToTopBtn {
    position: fixed;
    width: 50px;
    height: 50px;
    bottom: 110px; /* WhatsApp butonunun hemen üstünde */
    right: 45px;
    background-color: var(--asb-orange);
    color: #FFF;
    border-radius: 50px;
    font-size: 24px;
    z-index: 999;
    border: none;
    box-shadow: 0 5px 15px rgba(249, 115, 22, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
}
#backToTopBtn.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
#backToTopBtn:hover {
    background-color: var(--asb-orange-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(249, 115, 22, 0.6);
    color: #FFF;
}

/* Referans Logoları (Marquee) Kaydırma Animasyonu */
.logo-marquee {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}
.logo-marquee-track {
    display: flex;
    width: max-content;
    animation: scrollMarquee 25s linear infinite;
}
.logo-marquee-track:hover {
    animation-play-state: paused; /* Üzerine gelince kaymayı durdur */
}
.logo-item {
    padding: 0 4rem;
    opacity: 0.4;
    transition: opacity 0.3s ease, transform 0.3s ease;
}
.logo-item:hover {
    opacity: 1;
    transform: scale(1.15); /* Üzerine gelince logoyu belirginleştir ve büyüt */
}
@keyframes scrollMarquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); } /* Kusursuz döngü için içeriğin tam yarısı kadar sola kaydır */
}

/* SSS Akordeon Turuncu Tema Uyumu */
.accordion-button:not(.collapsed) {
    color: var(--asb-orange-dark);
    background-color: #fffaf5;
    box-shadow: inset 0 calc(-1 * var(--bs-accordion-border-width)) 0 var(--asb-orange-light);
}
.accordion-button:focus {
    border-color: var(--asb-orange-light);
    box-shadow: 0 0 0 0.25rem rgba(249, 115, 22, 0.25);
}

/* Eski navbar CSS'leri yeni MODERN NAVBAR bloğunda yeniden tanımlandı */

/* ============================================
   MODERN FOOTER
   ============================================ */
.site-footer {
    margin-top: auto;
    color: #cbd5e1;
    background: #0f172a;
    position: relative;
}

/* Üst CTA Strip */
.footer-cta-strip {
    background: linear-gradient(135deg, var(--asb-orange) 0%, var(--asb-orange-dark) 100%);
    padding: 2.5rem 0;
    position: relative;
    overflow: hidden;
}
.footer-cta-strip::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08), transparent 60%);
    transform: rotate(15deg);
    pointer-events: none;
}
.footer-cta-strip > .container {
    position: relative;
    z-index: 1;
}
.footer-cta-strip h3 {
    font-size: 1.5rem;
    line-height: 1.3;
}
.footer-cta-strip .btn {
    transition: all 0.25s ease;
    padding: 0.7rem 1.5rem;
}
.footer-cta-strip .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

/* Ana Footer */
.footer-main {
    padding: 4rem 0 2.5rem;
    background:
        radial-gradient(circle at 20% 20%, rgba(249, 115, 22, 0.06), transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(99, 102, 241, 0.05), transparent 50%),
        #0f172a;
    position: relative;
}
.footer-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(249, 115, 22, 0.4), transparent);
}

/* Footer Logo Açıklama */
.footer-tagline {
    color: #94a3b8;
    font-size: 0.92rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
}
.footer-main .asb-logo {
    font-size: 1.85rem;
}

/* İletişim Listesi */
.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
}
.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    margin-bottom: 0.7rem;
    font-size: 0.88rem;
    color: #cbd5e1;
}
.footer-contact-list i {
    color: var(--asb-orange);
    font-size: 0.95rem;
    margin-top: 0.2rem;
    width: 18px;
    flex-shrink: 0;
}
.footer-contact-list a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.2s ease;
}
.footer-contact-list a:hover {
    color: var(--asb-orange-light);
}

/* Footer Sosyal İkonlar */
.footer-social {
    display: flex;
    gap: 0.5rem;
}
.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #cbd5e1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.25s ease;
}
.footer-social a:hover {
    background: var(--asb-orange);
    border-color: var(--asb-orange);
    color: #fff;
    transform: translateY(-3px);
}

/* Footer Başlıklar */
.footer-heading {
    color: #fff;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1.2rem;
    padding-bottom: 0.6rem;
    position: relative;
}
.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 32px;
    height: 2px;
    background: linear-gradient(90deg, var(--asb-orange), var(--asb-orange-dark));
    border-radius: 2px;
}

/* Footer Link Listesi */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links li {
    margin-bottom: 0.55rem;
}
.footer-links a {
    color: #94a3b8;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    position: relative;
    padding-left: 0;
}
.footer-links a::before {
    content: '›';
    color: var(--asb-orange);
    margin-right: 0;
    opacity: 0;
    width: 0;
    transition: all 0.2s ease;
}
.footer-links a:hover {
    color: #fff;
    transform: translateX(4px);
}
.footer-links a:hover::before {
    opacity: 1;
    width: 14px;
    margin-right: 4px;
}

/* Alt Bar */
.footer-bottom {
    padding: 1.25rem 0;
    background: #0a0f1d;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.footer-bottom small {
    color: #64748b;
    font-size: 0.82rem;
}
.footer-bottom a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.2s ease;
}
.footer-bottom a:hover {
    color: var(--asb-orange-light);
}

/* Mobile responsive */
@media (max-width: 991px) {
    .footer-cta-strip {
        text-align: center;
        padding: 2rem 0;
    }
    .footer-cta-strip h3 {
        font-size: 1.3rem;
    }
    .footer-cta-strip .text-lg-end {
        text-align: center !important;
        margin-top: 1rem;
    }
    .footer-main {
        padding: 3rem 0 2rem;
    }
}
@media (max-width: 575px) {
    .footer-cta-strip .btn {
        display: block;
        margin: 0.5rem auto !important;
        max-width: 240px;
    }
}

/* Sayfa İçi Kaydırma (Anchor) Düzeltmesi - Menünün başlıkları ezmesini önler */
:root {
    --page-scroll-offset: 100px;
}
section[id] {
    scroll-margin-top: 100px;
}
/* Sayfada TOC varsa JS dinamik olarak --page-scroll-offset değerini hesaplar */
.has-page-toc section[id] {
    scroll-margin-top: var(--page-scroll-offset, 160px);
}
html {
    scroll-behavior: smooth;
}

/* Kartlar İçin Sıralı Belirme (Stagger/Delay) Sınıfları */
.delay-100 { transition-delay: 100ms !important; }
.delay-200 { transition-delay: 200ms !important; }
.delay-300 { transition-delay: 300ms !important; }
.delay-400 { transition-delay: 400ms !important; }
.delay-500 { transition-delay: 500ms !important; }
.delay-600 { transition-delay: 600ms !important; }

/* Hero altı mikro istatistik kartları */
.hero-stat {
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 1rem;
    padding: 1rem;
    color: #fff;
    transition: transform 0.3s ease, background-color 0.3s ease;
}
.hero-stat:hover {
    transform: translateY(-4px);
    background-color: rgba(255, 255, 255, 0.25);
}
.hero-stat-value {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}
.hero-stat-label {
    font-size: 0.875rem;
    opacity: 0.9;
    margin-top: 0.5rem;
}

/* Mini Timeline (Tarihçe kutusu — Bölüm 1) */
.timeline-mini {
    background-color: #fffaf5;
    border-color: var(--asb-orange-light) !important;
}
.timeline-item {
    display: flex;
    align-items: flex-start;
    padding: 0.6rem 0;
    border-bottom: 1px dashed #f0d3b8;
}
.timeline-item:last-child {
    border-bottom: none;
}
.timeline-year {
    flex: 0 0 70px;
    font-weight: 700;
    color: var(--asb-orange-dark);
}
.timeline-text {
    color: #555;
    font-size: 0.95rem;
}

/* AI-First Section — Gradient arka plan */
.ai-section {
    background: linear-gradient(135deg, #1e293b 0%, #312e81 60%, #4f46e5 100%);
    position: relative;
    overflow: hidden;
}
.ai-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(249, 115, 22, 0.18), transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(99, 102, 241, 0.25), transparent 40%);
    pointer-events: none;
}
.ai-section > .container {
    position: relative;
    z-index: 1;
}
.ai-feature-card {
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    transition: transform 0.3s ease, background-color 0.3s ease;
}
.ai-feature-card:hover {
    transform: translateY(-4px);
    background-color: rgba(255, 255, 255, 0.15);
}

/* SLA Kartları (Destek bölümü) */
.sla-card {
    border: 1px solid #f0e6dc;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.sla-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(249, 115, 22, 0.15) !important;
}
.sla-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--asb-orange), var(--asb-orange-dark));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
}
.sla-value {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--asb-orange-dark);
    letter-spacing: -0.5px;
}
.sla-label {
    letter-spacing: 1px;
    font-weight: 600;
}

/* Sayfa İçi Jump Navigation (TOC) — Modernize */
.page-toc {
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid #f0e6dc !important;
    border-bottom: 1px solid #f0e6dc !important;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.06) !important;
    position: sticky !important;
    /* top değeri JS tarafından dinamik olarak navbar yüksekliğine eşitleniyor */
    top: 76px;
    z-index: 1010 !important; /* Navbar (1050) altında — dropdown açılınca navbar TOC'u kaplar */
    transition: top 0.3s ease;
}
.page-toc::before,
.page-toc::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 48px;
    z-index: 2;
    pointer-events: none;
}
.page-toc::before {
    left: 0;
    background: linear-gradient(90deg, rgba(255,255,255,0.95), transparent);
}
.page-toc::after {
    right: 0;
    background: linear-gradient(-90deg, rgba(255,255,255,0.95), transparent);
}
.page-toc .container {
    position: relative;
    z-index: 1;
}
.page-toc .toc-list {
    overflow-x: auto;
    overflow-y: hidden;
    flex-wrap: nowrap !important;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 0.4rem 0;
    gap: 0.25rem !important;
    scroll-behavior: smooth;
}
.page-toc .toc-list::-webkit-scrollbar {
    display: none;
}
.toc-link {
    position: relative;
    color: #666;
    font-weight: 500;
    font-size: 0.875rem;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    white-space: nowrap;
    text-decoration: none;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    line-height: 1;
}
.toc-link::before {
    content: '';
    display: inline-block;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #cbd5e1;
    margin-right: 0.5rem;
    transition: all 0.25s ease;
}
.toc-link:hover {
    background-color: #fff3e6;
    color: var(--asb-orange-dark);
}
.toc-link:hover::before {
    background: var(--asb-orange);
    transform: scale(1.4);
}
.toc-link.active {
    background: linear-gradient(135deg, var(--asb-orange), var(--asb-orange-dark));
    color: #fff !important;
    font-weight: 600;
    box-shadow: 0 4px 14px rgba(249, 115, 22, 0.35);
}
.toc-link.active::before {
    background: #fff;
    transform: scale(1.4);
}

/* Ana sayfa modül mini tile'ları */
.module-mini-tile {
    background: #fff;
    border: 1px solid #f0e6dc;
    border-radius: 14px;
    padding: 1rem 0.5rem;
    text-align: center;
    transition: all 0.3s ease;
    cursor: default;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}
.module-mini-tile i {
    font-size: 1.4rem;
    color: var(--asb-orange);
    transition: transform 0.3s ease;
}
.module-mini-tile span {
    font-size: 0.78rem;
    font-weight: 600;
    color: #444;
    line-height: 1.1;
}
.module-mini-tile:hover {
    transform: translateY(-4px);
    border-color: var(--asb-orange-light);
    box-shadow: 0 10px 22px rgba(249, 115, 22, 0.12);
}
.module-mini-tile:hover i {
    transform: scale(1.15);
}
.module-mini-tile-accent {
    background: linear-gradient(135deg, var(--asb-orange), var(--asb-orange-dark));
    border-color: transparent;
    box-shadow: 0 8px 18px rgba(249, 115, 22, 0.3);
}
.module-mini-tile-accent i,
.module-mini-tile-accent span {
    color: #fff;
}

/* Modül Map Group — Detaylı modül kartları (Web10 & modul-haritasi sayfaları) */
.module-map-group {
    background: #fff;
    border: 1px solid #f0e6dc;
    border-radius: 18px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    height: 100%;
}
.module-map-group:hover {
    border-color: var(--asb-orange-light);
    box-shadow: 0 16px 36px rgba(249, 115, 22, 0.12);
    transform: translateY(-4px);
}
.module-map-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding-bottom: 0.85rem;
    border-bottom: 2px dashed #f0e6dc;
}
.module-map-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--asb-orange), var(--asb-orange-dark));
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
    box-shadow: 0 8px 18px rgba(249, 115, 22, 0.3);
}
.module-map-title {
    font-weight: 700;
    font-size: 1.05rem;
    color: #1f2937;
    margin: 0;
    line-height: 1.2;
}
.module-map-count {
    font-size: 0.78rem;
    color: var(--asb-orange-dark);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 2px;
}
.module-pill-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}
.module-pill-list span {
    display: inline-block;
    padding: 0.4rem 0.85rem;
    background-color: #fffaf5;
    border: 1px solid #f5e1cd;
    border-radius: 10px;
    font-size: 0.82rem;
    font-weight: 500;
    color: #444;
    transition: all 0.2s ease;
}
.module-pill-list span:hover {
    background-color: #fff3e6;
    border-color: var(--asb-orange-light);
    color: var(--asb-orange-dark);
    transform: translateY(-1px);
}

/* Modül Kartları (Web10 modül haritası) */
.module-card {
    border: 1px solid #f0e6dc;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.module-card:hover {
    transform: translateY(-5px);
    border-color: var(--asb-orange-light);
    box-shadow: 0 10px 25px rgba(249, 115, 22, 0.12) !important;
}
.module-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--asb-orange-dark);
}
.bg-primary-soft {
    background-color: #fff3e6;
}

/* Akordeon turuncu rozet hizalama (Satış senaryoları) */
.accordion-button .badge {
    min-width: 32px;
    min-height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.9rem;
}

/* Section Eyebrow (küçük üst başlık) */
.section-eyebrow {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--asb-orange);
    padding: 0.3rem 0.9rem;
    background-color: #fff3e6;
    border-radius: 999px;
}

/* "Neden Farklı?" — Why Cards */
.why-card {
    background: linear-gradient(180deg, #ffffff 0%, #fffaf5 100%);
    border: 1px solid #f0e6dc;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    overflow: hidden;
}
.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--asb-orange), var(--asb-orange-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}
.why-card:hover {
    transform: translateY(-6px);
    border-color: var(--asb-orange-light);
    box-shadow: 0 14px 30px rgba(249, 115, 22, 0.15) !important;
}
.why-card:hover::before {
    transform: scaleX(1);
}
.why-number {
    position: absolute;
    top: 1rem;
    right: 1.25rem;
    font-size: 2.5rem;
    font-weight: 800;
    color: rgba(249, 115, 22, 0.08);
    line-height: 1;
    letter-spacing: -1px;
}
.why-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--asb-orange), var(--asb-orange-dark));
    color: #fff;
    font-size: 1.6rem;
    box-shadow: 0 8px 18px rgba(249, 115, 22, 0.3);
}

/* AI-First — Yol Haritası Timeline */
.ai-roadmap {
    padding: 1.5rem 0 1rem;
}
.ai-timeline {
    position: relative;
}
.ai-timeline-line {
    position: absolute;
    top: 24px;
    left: 12%;
    right: 12%;
    height: 2px;
    background: linear-gradient(90deg,
        rgba(255, 255, 255, 0.1) 0%,
        rgba(249, 115, 22, 0.6) 30%,
        rgba(249, 115, 22, 1) 50%,
        rgba(249, 115, 22, 0.6) 70%,
        rgba(255, 255, 255, 0.1) 100%);
    z-index: 0;
}
@media (max-width: 767px) {
    .ai-timeline-line { display: none; }
}
.ai-stage {
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 0 0.5rem;
}
.ai-stage-dot {
    width: 50px;
    height: 50px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
}
.ai-stage:hover .ai-stage-dot {
    transform: scale(1.1);
    background: var(--asb-orange);
    border-color: var(--asb-orange-light);
}
.ai-stage-active .ai-stage-dot {
    background: linear-gradient(135deg, var(--asb-orange), var(--asb-orange-dark));
    border-color: #fff;
    box-shadow: 0 0 0 6px rgba(249, 115, 22, 0.2), 0 8px 20px rgba(249, 115, 22, 0.5);
    animation: pulseDot 2.4s ease-in-out infinite;
}
@keyframes pulseDot {
    0%, 100% { box-shadow: 0 0 0 6px rgba(249, 115, 22, 0.2), 0 8px 20px rgba(249, 115, 22, 0.5); }
    50% { box-shadow: 0 0 0 12px rgba(249, 115, 22, 0.05), 0 8px 20px rgba(249, 115, 22, 0.6); }
}
.ai-stage-year {
    font-size: 2.25rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -1px;
    color: #fff;
}
.ai-stage-active .ai-stage-year {
    color: var(--asb-orange-light);
}
.ai-stage-title {
    font-size: 1rem;
    font-weight: 700;
    margin: 0.5rem 0;
    color: rgba(255, 255, 255, 0.95);
}
.ai-stage-text {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    max-width: 280px;
    margin-inline: auto;
}

/* AI Kullanım Kartları */
.ai-use-card {
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.03) 100%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    transition: transform 0.35s ease, background 0.35s ease, border-color 0.35s ease;
}
.ai-use-card:hover {
    transform: translateY(-6px);
    background: linear-gradient(160deg, rgba(249, 115, 22, 0.2) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-color: rgba(249, 115, 22, 0.5);
}
.ai-use-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--asb-orange), var(--asb-orange-dark));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    box-shadow: 0 6px 14px rgba(249, 115, 22, 0.35);
}

/* Opacity yardımcıları */
.opacity-85 { opacity: 0.85; }

/* Hikaye/Tarihçe Timeline (Hakkımızda) */
.story-timeline {
    position: relative;
    padding-left: 2rem;
}
.story-timeline::before {
    content: '';
    position: absolute;
    left: 6px;
    top: 6px;
    bottom: 6px;
    width: 2px;
    background: linear-gradient(180deg,
        var(--asb-orange-light) 0%,
        var(--asb-orange) 50%,
        var(--asb-orange-dark) 100%);
}
.story-item {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 0.6rem 0 1.5rem;
}
.story-item:last-child {
    padding-bottom: 0;
}
.story-item::before {
    content: '';
    position: absolute;
    left: -1.95rem;
    top: 1.1rem;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid var(--asb-orange);
    box-shadow: 0 0 0 3px #fff, 0 0 0 5px var(--asb-orange-light);
}
.story-item-active::before {
    background: var(--asb-orange);
    box-shadow: 0 0 0 3px #fff, 0 0 0 6px rgba(249, 115, 22, 0.3);
    animation: pulseDot 2.4s ease-in-out infinite;
}
.story-year {
    flex: 0 0 90px;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--asb-orange-dark);
    line-height: 1.4;
    letter-spacing: -0.5px;
}
.story-item-active .story-year {
    color: var(--asb-orange);
}
.story-card {
    flex: 1;
    background: #fff;
    border: 1px solid #f0e6dc;
    border-radius: 12px;
    padding: 1rem 1.25rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.story-card:hover {
    transform: translateX(4px);
    border-color: var(--asb-orange-light);
    box-shadow: 0 6px 16px rgba(249, 115, 22, 0.12);
}

/* Ekip Sayısı Kartları */
.team-card {
    border: 1px solid #f0e6dc;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(249, 115, 22, 0.12) !important;
}
.team-count {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(135deg, var(--asb-orange), var(--asb-orange-dark));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
    letter-spacing: -2px;
}

/* Sektör Kartları (sektörler/index.html) */
.sector-card {
    background: linear-gradient(160deg, #ffffff 0%, #fffaf5 100%);
    border: 1px solid #f0e6dc;
    color: #333;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    position: relative;
    overflow: hidden;
}
.sector-card::after {
    content: '→';
    position: absolute;
    top: 1.2rem;
    right: 1.4rem;
    font-size: 1.4rem;
    color: var(--asb-orange);
    opacity: 0;
    transform: translateX(-8px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}
.sector-card:hover {
    transform: translateY(-6px);
    border-color: var(--asb-orange-light);
    box-shadow: 0 14px 30px rgba(249, 115, 22, 0.15);
}
.sector-card:hover::after {
    opacity: 1;
    transform: translateX(0);
}
.sector-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--asb-orange), var(--asb-orange-dark));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    box-shadow: 0 8px 18px rgba(249, 115, 22, 0.3);
}

/* Üretim Modül Pill'leri */
.module-pill {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.55rem 0.9rem;
    background-color: #fffaf5;
    border: 1px solid #f5e1cd;
    border-radius: 10px;
    font-weight: 500;
    font-size: 0.92rem;
    color: #444;
    transition: all 0.2s ease;
}
.module-pill:hover {
    background-color: #fff3e6;
    border-color: var(--asb-orange-light);
    transform: translateX(4px);
}
.module-pill .num {
    flex: 0 0 28px;
    height: 28px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--asb-orange), var(--asb-orange-dark));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
    font-weight: 700;
}

/* Perakende Yetenek Kutuları */
.retail-feature {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 1rem 1.1rem;
    background-color: #fff;
    border: 1px solid #f0e6dc;
    border-radius: 12px;
    transition: all 0.3s ease;
    height: 100%;
}
.retail-feature i {
    font-size: 1.5rem;
    flex-shrink: 0;
}
.retail-feature span {
    font-weight: 500;
    color: #444;
    line-height: 1.3;
    font-size: 0.95rem;
}
.retail-feature:hover {
    border-color: var(--asb-orange-light);
    background-color: #fffaf5;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(249, 115, 22, 0.1);
}

/* Referans Grupları & Chip'ler */
.ref-group {
    border: 1px solid #f0e6dc;
    transition: all 0.3s ease;
}
.ref-group:hover {
    border-color: var(--asb-orange-light);
    background-color: #fffaf5 !important;
}
.ref-group-header {
    display: flex;
    align-items: center;
}
.ref-chip {
    display: inline-block;
    padding: 0.4rem 0.85rem;
    background-color: #fff;
    border: 1px solid #f0e6dc;
    border-radius: 999px;
    font-weight: 500;
    font-size: 0.875rem;
    color: #555;
    transition: all 0.2s ease;
}
.ref-chip:hover {
    background-color: var(--asb-orange);
    color: #fff;
    border-color: var(--asb-orange);
    transform: translateY(-2px);
}

/* Referans Logo Kartları (referanslar sayfası) */
.ref-card {
    background: #fff;
    border: 1px solid #f0e6dc;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 130px;
}
.ref-card:hover {
    transform: translateY(-5px);
    border-color: var(--asb-orange-light);
    background-color: #fffaf5;
    box-shadow: 0 10px 22px rgba(249, 115, 22, 0.12);
}
.ref-card:hover i {
    color: var(--asb-orange-dark) !important;
    transform: scale(1.1);
}
.ref-card i {
    transition: transform 0.3s ease, color 0.3s ease;
}

/* Segment Sayaç Rozeti */
.ref-segment-count {
    display: inline-block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--asb-orange-dark);
    line-height: 1;
    letter-spacing: -1px;
}
.ref-segment-count small {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #999;
    margin-left: 0.4rem;
}

/* AI-First Sayfa Bileşenleri */

/* Step Card (6 Adım Akış) */
.step-card {
    background: #fff;
    border: 1px solid #f0e6dc;
    transition: all 0.3s ease;
    overflow: hidden;
}
.step-card:hover {
    transform: translateY(-5px);
    border-color: var(--asb-orange-light);
    box-shadow: 0 12px 26px rgba(249, 115, 22, 0.12);
}
.step-num {
    position: absolute;
    top: -10px;
    right: 1rem;
    font-size: 4.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--asb-orange), var(--asb-orange-dark));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    letter-spacing: -2px;
    opacity: 0.6;
}

/* Case Card (Varyant Örneği) */
.case-card {
    border: 1px solid #f0e6dc;
    transition: all 0.3s ease;
}
.case-card:hover {
    border-color: var(--asb-orange-light);
    box-shadow: 0 10px 24px rgba(249, 115, 22, 0.1);
}

/* Info Banner */
.info-banner {
    background: linear-gradient(135deg, #fff3e6 0%, #fffaf5 100%);
    border-left: 4px solid var(--asb-orange);
}

/* Kritik Yol Hat'leri */
.critical-line {
    background: #fff;
    border: 1px solid #f0e6dc;
    border-radius: 12px;
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
    transition: all 0.3s ease;
}
.critical-line-active {
    background: linear-gradient(135deg, #fffaf5 0%, #fff3e6 100%);
    border-color: var(--asb-orange);
    box-shadow: 0 6px 18px rgba(249, 115, 22, 0.15);
}
.critical-label {
    flex: 0 0 200px;
    font-weight: 600;
    color: #555;
    font-size: 0.95rem;
}
.critical-bars {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}
.critical-bar {
    padding: 0.4rem 0.9rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    color: #fff;
    white-space: nowrap;
}
.bar-a { background-color: #6b7280; }
.bar-b { background: linear-gradient(135deg, var(--asb-orange), var(--asb-orange-dark)); }
.bar-c { background-color: #9ca3af; }
.bar-common { background-color: #4b5563; }
@media (max-width: 767px) {
    .critical-label { flex: 0 0 100%; }
}

/* AI Capability Pill */
.capability-pill {
    display: flex;
    align-items: center;
    padding: 0.65rem 1rem;
    background-color: #fff;
    border: 1px solid #f0e6dc;
    border-radius: 10px;
    font-weight: 500;
    color: #444;
    transition: all 0.2s ease;
    width: 100%;
}
.capability-pill:hover {
    background-color: #fffaf5;
    border-color: var(--asb-orange-light);
    transform: translateX(4px);
}

/* AI Öneri Quote Card */
.ai-quote-card {
    background: linear-gradient(135deg, #fff3e6 0%, #fffaf5 100%);
    border-left: 4px solid var(--asb-orange);
    padding: 1.25rem 1.5rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}
.ai-quote-card:hover {
    transform: translateX(4px);
    box-shadow: 0 8px 22px rgba(249, 115, 22, 0.15);
}
.ai-quote-header {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.6rem;
    color: var(--asb-orange-dark);
}
.ai-quote-header i {
    font-size: 1.2rem;
}

/* Cost Table */
.cost-table {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
}
.cost-table thead {
    background-color: #fff3e6;
}
.cost-table thead th {
    color: var(--asb-orange-dark);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    padding: 0.9rem 1rem;
}
.cost-table tbody tr {
    border-bottom: 1px solid #f0e6dc;
}
.cost-table tbody tr:last-child {
    border-bottom: none;
}
.cost-table tbody td {
    padding: 0.85rem 1rem;
}

/* MRP Soru Kutusu */
.mrp-box {
    background: linear-gradient(160deg, #fffaf5 0%, #fff3e6 100%);
    border: 1px solid var(--asb-orange-light);
}
.mrp-questions li {
    padding: 0.5rem 0;
    border-bottom: 1px dashed rgba(249, 115, 22, 0.2);
    font-size: 0.9rem;
    color: #555;
}
.mrp-questions li:last-child {
    border-bottom: none;
}

/* Saha Mobil Phone Cards */
.phone-card {
    border: 1px solid #f0e6dc;
    transition: all 0.3s ease;
}
.phone-card:hover {
    transform: translateY(-6px);
    border-color: var(--asb-orange-light);
    box-shadow: 0 12px 28px rgba(249, 115, 22, 0.15);
}
.phone-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--asb-orange), var(--asb-orange-dark));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 10px 24px rgba(249, 115, 22, 0.3);
}

/* Vision Tag (özet vizyon altı) */
.vision-tag {
    display: inline-block;
    padding: 0.45rem 1rem;
    background-color: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 999px;
    font-weight: 500;
    color: #fff;
    font-size: 0.875rem;
    transition: all 0.2s ease;
    backdrop-filter: blur(8px);
}
.vision-tag:hover {
    background-color: var(--asb-orange);
    border-color: var(--asb-orange);
    transform: translateY(-2px);
}

/* İletişim Sayfası — Contact Card */
.contact-card {
    background: linear-gradient(180deg, #ffffff 0%, #fffaf5 100%);
    border: 1px solid #f0e6dc;
    transition: all 0.3s ease;
}
.contact-card:hover {
    transform: translateY(-6px);
    border-color: var(--asb-orange-light);
    box-shadow: 0 14px 30px rgba(249, 115, 22, 0.15);
}
.contact-icon {
    width: 68px;
    height: 68px;
    margin: 0 auto;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--asb-orange), var(--asb-orange-dark));
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    box-shadow: 0 10px 22px rgba(249, 115, 22, 0.3);
}

/* Demo formu — ürün checkbox'ları */
.product-check {
    width: 100%;
    margin: 0;
    padding: 0.6rem 0.9rem;
    background: #fff;
    border: 1px solid #e9d8c4;
    border-radius: 10px;
    transition: all 0.2s ease;
    cursor: pointer;
}
.product-check:hover {
    border-color: var(--asb-orange-light);
    background-color: #fffaf5;
}
.product-check .form-check-input {
    margin-top: 0.25rem;
}
.product-check .form-check-input:checked {
    background-color: var(--asb-orange);
    border-color: var(--asb-orange);
}
.product-check .form-check-label {
    font-weight: 500;
    color: #444;
    cursor: pointer;
    margin-left: 0.25rem;
}
.product-check:has(.form-check-input:checked) {
    background: linear-gradient(135deg, #fff3e6 0%, #fffaf5 100%);
    border-color: var(--asb-orange);
}
.product-check:has(.form-check-input:checked) .form-check-label {
    color: var(--asb-orange-dark);
    font-weight: 600;
}

/* Form input vurgulamaları */
.form-control:focus,
.form-select:focus {
    border-color: var(--asb-orange-light);
    box-shadow: 0 0 0 0.25rem rgba(249, 115, 22, 0.15);
}

/* Sosyal Medya İkonları */
.social-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #fff;
    border: 2px solid #f0e6dc;
    color: var(--asb-orange);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
}
.social-icon:hover {
    background: linear-gradient(135deg, var(--asb-orange), var(--asb-orange-dark));
    border-color: transparent;
    color: #fff;
    transform: translateY(-4px) rotate(-6deg);
    box-shadow: 0 10px 22px rgba(249, 115, 22, 0.4);
}