@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700;800&display=swap');

/* ==========================================================================
   DZG Değerleme - Premium UI Redesign Stylesheet
   ========================================================================== */

:root {
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    --navy: #005AE0;
    --navy-dark: #0044ab;
    --blue: #005AE0;
    --blue-light: rgba(0, 90, 224, 0.08);
    --blue-glow: rgba(0, 90, 224, 0.35);
    
    --black: #000000;
    --dark-grey: #1a1a1a;
    --ink: #2B2B2B;
    --muted: #64748b;
    --bg-light: #ffffff;
    --bg-soft: #f8fafc;
    --border: #e2e8f0;
    --border-glow: rgba(0, 90, 224, 0.25);
    
    --radius-sm: 8px;
    --radius: 16px;
    --radius-lg: 24px;
    --radius-pill: 9999px;
    
    --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    --container: 1200px;
}

/* Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-light);
    color: var(--ink);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--black);
    font-weight: 700;
    line-height: 1.25;
}

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

/* Header */
.site-header {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: var(--transition);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.main-nav ul {
    display: flex;
    gap: 32px;
    list-style: none;
}

.main-nav a {
    text-decoration: none;
    color: var(--ink);
    font-weight: 500;
    font-size: 15px;
    transition: var(--transition);
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--blue);
}

/* Buttons */
.hcta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: var(--transition);
    border: 1px solid transparent;
}

.hcta-blue {
    background: var(--blue);
    color: #ffffff;
}

.hcta-blue:hover {
    background: var(--navy-dark);
    box-shadow: 0 8px 20px var(--blue-glow);
    transform: translateY(-2px);
}

/* Demo Banner */
.demo-banner {
    background: #000000;
    color: #ffffff;
    font-size: 12px;
    text-align: center;
    padding: 8px;
    border-bottom: 2px solid var(--blue);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

.demo-banner-badge {
    background: var(--blue);
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 700;
}

/* SPLIT-HERO SECTION */
.hero-split-modern {
    position: relative;
    background: radial-gradient(circle at 80% 20%, rgba(0, 90, 224, 0.15) 0%, #000000 80%), #000000;
    padding: 100px 0 120px;
    overflow: hidden;
}

.hero-glow-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.8) 100%);
    z-index: 1;
}

.hero-split-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-proposition-modern {
    color: #ffffff;
}

.high-tech-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 6px 14px;
    border-radius: var(--radius-pill);
    font-size: 13px;
    font-weight: 600;
    color: #cbd5e1;
    margin-bottom: 28px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 10px #10b981;
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
    0% { transform: scale(0.95); opacity: 0.5; }
    55% { transform: scale(1.15); opacity: 1; }
    100% { transform: scale(0.95); opacity: 0.5; }
}

.split-title {
    font-size: clamp(36px, 5.5vw, 56px);
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
    color: #ffffff !important;
}

.text-glow-accent {
    background: linear-gradient(135deg, #ffffff 0%, var(--blue) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.split-desc {
    font-size: 18px;
    color: #94a3b8;
    margin-bottom: 40px;
    max-width: 520px;
}

.hero-features-list-modern {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.h-feat-item {
    display: flex;
    gap: 16px;
    align-items: center;
}

.feat-icon-wrap {
    width: 48px;
    height: 48px;
    background: rgba(0, 90, 224, 0.15);
    border: 1px solid rgba(0, 90, 224, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue);
}

.h-feat-item strong {
    display: block;
    font-size: 16px;
    color: #ffffff;
}

.h-feat-item span {
    font-size: 14px;
    color: #94a3b8;
}

/* Terminal Wrapper */
.hero-terminal-wrapper {
    display: flex;
    justify-content: flex-end;
}

.valuation-terminal-panel {
    background: rgba(20, 20, 20, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(0, 90, 224, 0.2);
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 460px;
    overflow: hidden;
    backdrop-filter: blur(24px);
}

.terminal-header {
    background: rgba(0, 0, 0, 0.5);
    padding: 12px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.terminal-dots {
    display: flex;
    gap: 6px;
}

.terminal-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: block;
}

.dot-red { background: #ef4444; }
.dot-yellow { background: #f59e0b; }
.dot-green { background: #10b981; }

.terminal-title {
    font-family: monospace;
    font-size: 12px;
    color: #64748b;
}

/* Terminal Tabs */
.terminal-tabs {
    display: flex;
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.terminal-tab {
    flex: 1;
    padding: 14px;
    text-align: center;
    text-decoration: none;
    color: #64748b;
    font-size: 13px;
    font-weight: 600;
    transition: var(--transition);
    border-bottom: 2px solid transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.terminal-tab:hover {
    color: #ffffff;
}

.terminal-tab.is-active {
    color: var(--blue);
    background: rgba(0, 90, 224, 0.05);
    border-bottom-color: var(--blue);
}

/* Terminal Content Form */
.terminal-content {
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.terminal-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.terminal-field label {
    font-size: 13px;
    font-weight: 500;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.select-wrapper {
    position: relative;
}

.select-wrapper select {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #ffffff;
    padding: 14px;
    border-radius: var(--radius-sm);
    outline: none;
    font-size: 15px;
    appearance: none;
    transition: var(--transition);
}

.select-wrapper select:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(0, 90, 224, 0.25);
    background: rgba(255, 255, 255, 0.08);
}

.select-wrapper select option {
    background: #0f172a;
    color: #ffffff;
}

.terminal-submit-btn {
    background: var(--blue);
    color: #ffffff;
    border: none;
    padding: 16px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: var(--transition);
    margin-top: 10px;
}

.terminal-submit-btn:hover {
    background: var(--navy-dark);
    box-shadow: 0 10px 25px rgba(0, 90, 224, 0.4);
    transform: translateY(-2px);
}

/* ---------- Page Hero ---------- */
.page-hero {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-bottom: 1px solid var(--border);
    padding: 64px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero h1 {
    font-size: clamp(32px, 5vw, 42px);
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--black) !important;
    letter-spacing: -0.02em;
}

.page-hero p {
    color: var(--muted);
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
}

.breadcrumb {
    font-size: 13px;
    color: var(--muted);
    margin-top: 16px;
    display: flex;
    justify-content: center;
    gap: 6px;
}

.breadcrumb a {
    color: var(--blue);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.breadcrumb a:hover {
    color: var(--navy-dark);
}

/* FLOATING CONTROL BAR */
.floating-control-bar-wrapper {
    position: relative;
    margin-top: -30px;
    z-index: 10;
}

.floating-control-bar {
    background: #ffffff;
    border: 1px solid var(--border);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
    border-radius: var(--radius-pill);
    padding: 14px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.fbar-title {
    font-weight: 700;
    font-size: 14px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.fbar-links {
    display: flex;
    gap: 16px;
}

.fbar-btn {
    text-decoration: none;
    color: var(--ink);
    font-size: 14px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: var(--radius-pill);
    transition: var(--transition);
}

.fbar-btn:hover {
    background: var(--blue-light);
    color: var(--blue);
}

/* BENTO SECTION */
.bento-section-modern {
    padding: 100px 0;
    background-color: var(--bg-soft);
}

.section-head-modern {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.eyebrow-glow {
    display: inline-block;
    padding: 4px 12px;
    border-radius: var(--radius-pill);
    font-size: 11px;
    font-weight: 700;
    color: var(--blue);
    background: var(--blue-light);
    letter-spacing: 0.08em;
    margin-bottom: 16px;
}

.section-head-modern h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 16px;
}

.section-head-modern p {
    color: var(--muted);
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.bento-cell {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.bento-cell:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 90, 224, 0.06);
    border-color: var(--border-glow);
}

.bento-cell-content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.cell-tag {
    font-size: 11px;
    font-weight: 700;
    color: var(--blue);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}

.bento-cell h3 {
    font-size: 20px;
    margin-bottom: 16px;
}

.bento-large-metrics {
    grid-column: span 2;
}

.bento-number-stat {
    font-size: 48px;
    font-weight: 800;
    color: var(--blue);
    line-height: 1;
    margin: 12px 0 16px;
}

.bento-percentage-stat {
    font-size: 48px;
    font-weight: 800;
    color: #10b981;
    line-height: 1;
    margin: 12px 0 16px;
}

.cell-desc {
    font-size: 14px;
    color: var(--muted);
    max-width: 380px;
}

.fake-chart-svg {
    margin-top: auto;
    padding-top: 24px;
}

.cell-arrow-btn {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--blue);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: var(--transition);
}

.cell-arrow-btn:hover {
    color: var(--navy-dark);
}

/* ASYMMETRIC VITRIN */
.asymmetric-vitrin-section {
    padding: 100px 0;
    background: #ffffff;
}

.asymmetric-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 32px;
}

.vitrin-featured-card {
    background: var(--bg-soft);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.v-card-img-wrap {
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: #f8fafc;
}

.v-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.v-card-body {
    padding: 40px;
}

.v-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: var(--radius-pill);
    font-size: 11px;
    font-weight: 700;
    background: var(--blue-light);
    color: var(--blue);
    margin-bottom: 16px;
}

.v-card-body h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.v-card-body p {
    color: var(--muted);
    margin-bottom: 24px;
}

.v-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    color: var(--blue);
    font-weight: 700;
}

/* Micro Cards */
.vitrin-micro-cards {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.vitrin-micro-card {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    display: grid;
    grid-template-columns: 220px 1fr;
    min-height: 140px;
    transition: var(--transition);
}

.vitrin-micro-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0, 90, 224, 0.08);
    border-color: var(--border-glow);
}

.vm-img-wrap {
    height: 100%;
    background: #f8fafc;
    overflow: hidden;
}

.vm-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.vm-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* ---------- Blog Content Tables ---------- */
.bd-icerik table,
.veri-tablo {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin: 32px 0;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

.bd-icerik table th,
.veri-tablo th {
    background: linear-gradient(135deg, #005AE0 0%, #0044AB 100%);
    color: #ffffff !important;
    font-weight: 700;
    font-size: 14.5px;
    padding: 16px 20px;
    text-align: left;
    border: none;
}

.bd-icerik table td,
.veri-tablo td {
    padding: 16px 20px;
    font-size: 14.5px;
    color: var(--ink);
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}

.bd-icerik table tr:last-child td,
.veri-tablo tr:last-child td {
    border-bottom: none;
}

.bd-icerik table tr:nth-child(even),
.veri-tablo tr:nth-child(even) {
    background: var(--bg-soft);
}

.bd-icerik table tr:hover td,
.veri-tablo tr:hover td {
    background: var(--blue-light);
}

/* ---------- Comprehensive Blog Content Typography & Elements ---------- */
.bd-icerik {
    color: var(--ink);
    font-size: 16.5px;
    line-height: 1.8;
}

.bd-icerik p {
    margin: 0 0 22px;
}

.bd-icerik p.giris {
    font-size: 19px;
    line-height: 1.75;
    color: var(--black);
    font-weight: 500;
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}

.bd-icerik h2 {
    font-size: 26px;
    font-weight: 800;
    color: var(--black) !important;
    line-height: 1.3;
    margin: 44px 0 18px;
    padding-left: 16px;
    border-left: 4px solid var(--blue);
}

.bd-icerik h3 {
    font-size: 21px;
    font-weight: 700;
    color: var(--black) !important;
    margin: 36px 0 14px;
}

.bd-icerik h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--black) !important;
    margin: 28px 0 12px;
}

.bd-icerik a {
    color: var(--blue);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 4px;
    transition: var(--transition);
}

.bd-icerik a:hover {
    color: var(--navy-dark);
}

.bd-icerik strong {
    color: var(--black);
    font-weight: 700;
}

.bd-icerik ul,
.bd-icerik ol {
    margin: 0 0 24px;
    padding-left: 24px;
}

.bd-icerik li {
    margin-bottom: 10px;
}

.bd-icerik blockquote {
    margin: 32px 0;
    padding: 24px 28px;
    background: var(--bg-soft);
    border-left: 4px solid var(--blue);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    color: var(--black);
    font-size: 17.5px;
    font-style: italic;
    line-height: 1.7;
}

.bd-icerik figure {
    margin: 36px 0;
}

.bd-icerik figure img {
    width: 100%;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.bd-icerik figcaption {
    font-size: 13.5px;
    color: var(--muted);
    margin-top: 10px;
    text-align: center;
    font-style: italic;
}

/* Custom Callout Boxes inside Blog Posts */
.bd-icerik .oz-kutu {
    background: var(--bg-soft);
    border: 1px solid var(--border);
    border-top: 3px solid var(--blue);
    border-radius: var(--radius-sm);
    padding: 28px;
    margin: 32px 0;
}

.bd-icerik .oz-kutu h4 {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--blue);
    margin: 0 0 14px;
}

.bd-icerik .oz-kutu ul {
    margin: 0;
    padding-left: 20px;
}

.bd-icerik .oz-kutu li {
    margin-bottom: 8px;
    font-size: 15.5px;
    color: var(--ink);
}

.bd-icerik .not-kutu {
    background: var(--blue-light);
    border-left: 4px solid var(--blue);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    padding: 20px 24px;
    margin: 28px 0;
    color: #0044ab;
    font-size: 15.5px;
    line-height: 1.7;
}

.bd-icerik .uyari-kutu {
    background: #fef2f2;
    border-left: 4px solid #dc2626;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    padding: 20px 24px;
    margin: 28px 0;
    color: #991b1b;
    font-size: 15.5px;
    line-height: 1.7;
}

/* Custom Lists */
.bd-icerik .kontrol-listesi {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
}

.bd-icerik .kontrol-listesi li {
    position: relative;
    padding-left: 32px;
    margin-bottom: 12px;
}

.bd-icerik .kontrol-listesi li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 2px;
    width: 22px;
    height: 22px;
    background: var(--blue-light);
    color: var(--blue);
    font-weight: 800;
    font-size: 13px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bd-icerik .adim-listesi {
    list-style: none;
    counter-reset: adim;
    padding: 0;
    margin: 0 0 28px;
}

.bd-icerik .adim-listesi li {
    counter-increment: adim;
    position: relative;
    padding-left: 48px;
    margin-bottom: 18px;
}

.bd-icerik .adim-listesi li::before {
    content: counter(adim);
    position: absolute;
    left: 0;
    top: 0;
    width: 32px;
    height: 32px;
    background: var(--blue);
    color: #ffffff;
    font-weight: 800;
    font-size: 14px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* In-post CTA box */
.bd-icerik .cta-kutu {
    background: linear-gradient(135deg, #000000 0%, #0044AB 50%, #005AE0 100%);
    color: #ffffff;
    border-radius: var(--radius-lg);
    padding: 40px;
    margin: 40px 0;
}

.bd-icerik .cta-kutu h4 {
    font-size: 22px;
    font-weight: 800;
    margin: 0 0 10px;
    color: #ffffff !important;
}

.bd-icerik .cta-kutu p {
    color: #cbd5e1;
    margin: 0 0 20px;
    font-size: 15.5px;
}

.bd-icerik .cta-kutu .cta-btn {
    display: inline-block;
    background: #ffffff;
    color: var(--blue);
    font-weight: 700;
    padding: 14px 28px;
    text-decoration: none;
    font-size: 15px;
    border-radius: var(--radius-pill);
    transition: var(--transition);
}

.bd-icerik .cta-kutu .cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.3);
}

.pm-modal[hidden] {
    display: none !important;
}

/* Code Blocks & Badges */
.bd-icerik code {
    background: var(--bg-soft);
    border: 1px solid var(--border);
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 14px;
    color: var(--blue);
    font-family: monospace;
}

.bd-icerik pre {
    background: #0f172a;
    color: #f8fafc;
    padding: 20px;
    border-radius: var(--radius-sm);
    overflow-x: auto;
    margin: 28px 0;
}

.bd-icerik mark {
    background: #fef08a;
    color: #854d0e;
    padding: 2px 6px;
    border-radius: 3px;
}

.vm-body h4 {
    font-size: 16px;
    margin: 8px 0 12px;
}

.vm-link {
    text-decoration: none;
    color: var(--blue);
    font-weight: 600;
    font-size: 14px;
}

/* Footer Section */
.footer-main {
    background: #000000;
    color: #94a3b8;
    padding: 80px 0 40px;
    border-top: 2px solid var(--blue);
    position: relative;
    overflow: hidden;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 48px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .logo {
    display: inline-block;
    margin-bottom: 12px;
}

.site-footer .brand-dzg {
    color: #ffffff !important;
}

.footer-about {
    font-size: 14.5px;
    line-height: 1.75;
    color: #94a3b8;
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--blue);
    border-color: var(--blue);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px var(--blue-glow);
}

.footer-col h4 {
    color: #ffffff !important;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 24px;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 14.5px;
    transition: var(--transition);
}

.footer-col a:hover {
    color: #ffffff;
    transform: translateX(4px);
}

.footer-bottom {
    padding-top: 40px;
    font-size: 13.5px;
    color: #64748b;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    color: #94a3b8;
    text-decoration: none;
    transition: var(--transition);
}

.footer-legal a:hover {
    color: #ffffff;
}

.footer-contact ul {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: #94a3b8;
    font-size: 14px;
}

.footer-contact a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #94a3b8;
    text-decoration: none;
    transition: var(--transition);
}

.footer-contact a:hover {
    color: #ffffff;
}

.footer-contact svg {
    color: var(--blue);
    flex-shrink: 0;
}

/* CTA Band Section */
.cta-band {
    background: linear-gradient(135deg, #000000 0%, #0044AB 50%, #005AE0 100%);
    border-radius: var(--radius-lg);
    padding: 60px 48px;
    text-align: center;
    color: #ffffff;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 90, 224, 0.18);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.cta-band h2 {
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 800;
    color: #ffffff !important;
    margin: 0;
}

.cta-band p {
    color: #cbd5e1;
    font-size: 16px;
    max-width: 600px;
    margin: 0 0 12px;
}

.cta-band .hcta {
    transition: var(--transition);
}

.cta-band .hcta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 255, 255, 0.3);
}

/* Responsive */
@media (max-width: 960px) {
    .hero-split-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-terminal-wrapper {
        justify-content: center;
    }
    
    .bento-grid {
        grid-template-columns: 1fr;
    }
    
    .bento-large-metrics {
        grid-column: span 1;
    }
    
    .asymmetric-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .footer-top {
        grid-template-columns: 1fr;
    }
    
    .floating-control-bar {
        flex-direction: column;
        gap: 16px;
        border-radius: var(--radius);
    }
    
    .vitrin-micro-card {
        grid-template-columns: 1fr;
        height: auto;
    }
    
    .vm-img-wrap {
        height: 180px;
    }
}

/* ---------- Mobile Menu & Hamburger Icon ---------- */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    z-index: 101;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--ink);
    border-radius: var(--radius-pill);
    transition: var(--transition);
}

@media (max-width: 960px) {
    .main-nav, .header-actions {
        display: none !important;
    }
    .nav-toggle {
        display: flex;
    }
}

.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 999;
    visibility: hidden;
    pointer-events: none;
    transition: visibility 0.4s ease;
}

.mobile-menu.open {
    visibility: visible;
    pointer-events: auto;
}

.mm-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.mobile-menu.open .mm-overlay {
    opacity: 1;
}

.mm-panel {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    max-width: 320px;
    background: #ffffff;
    box-shadow: 20px 0 40px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-menu.open .mm-panel {
    transform: translateX(0);
}

.mm-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
}

.mm-close {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--ink);
    padding: 4px;
    transition: var(--transition);
}

.mm-close:hover {
    color: var(--blue);
    transform: rotate(90deg);
}

.mm-nav {
    display: flex;
    flex-direction: column;
    padding: 24px 0;
}

.mm-nav a {
    padding: 14px 28px;
    text-decoration: none;
    color: var(--ink);
    font-weight: 600;
    font-size: 16px;
    border-bottom: 1px solid var(--bg-soft);
    transition: var(--transition);
}

.mm-nav a:hover,
.mm-nav a.active {
    color: var(--blue);
    background: var(--blue-light);
}

.mm-actions {
    margin-top: auto;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    border-top: 1px solid var(--border);
}

.mm-actions .hcta {
    width: 100%;
    justify-content: center;
}

/* ---------- Valuation Wizard Interactive Animations ---------- */
.wiz-panel {
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.wiz-panel.wiz-slide-in {
    animation: wizPanelSlideIn 0.45s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes wizPanelSlideIn {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Auto-Select Flash Highlight */
.auto-select-flash {
    animation: autoSelectPulse 1.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

@keyframes autoSelectPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 90, 224, 0.6);
        border-color: var(--blue) !important;
        background-color: var(--blue-light) !important;
    }
    50% {
        box-shadow: 0 0 0 8px rgba(0, 90, 224, 0.2);
        border-color: var(--blue) !important;
        background-color: var(--blue-light) !important;
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 90, 224, 0);
    }
}

/* Step navigation pills animation */
.wiz-step .wiz-dot {
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.wiz-step.is-active .wiz-dot {
    background: var(--blue) !important;
    color: #ffffff !important;
    box-shadow: 0 0 0 6px rgba(0, 90, 224, 0.2) !important;
    transform: scale(1.1);
}

.wiz-step.is-done .wiz-dot {
    background: #10b981 !important;
    color: #ffffff !important;
}

/* SVG Car Diagram Part Interactive Animations */
.car-parts-diagram svg path[data-part] {
    transition: fill 0.3s ease, transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), filter 0.3s ease;
    transform-origin: center;
}

.car-parts-diagram svg path[data-part]:active {
    transform: scale(0.96);
}

/* Field Error Flash Animation */
.field-error-flash {
    animation: fieldErrorPulse 0.45s ease-in-out 3 !important;
    border-color: #dc2626 !important;
    box-shadow: 0 0 0 5px rgba(220, 38, 38, 0.25) !important;
    background-color: #fef2f2 !important;
}

@keyframes fieldErrorPulse {
    0%, 100% {
        border-color: #dc2626;
        box-shadow: 0 0 0 5px rgba(220, 38, 38, 0.25);
    }
    50% {
        border-color: #f87171;
        box-shadow: 0 0 0 9px rgba(220, 38, 38, 0.4);
    }
}

.car-parts-diagram svg path[data-part]:active {
    transform: scale(0.96);
}