/* =======================================================
   VERIODAK ANA SAYFA CSS
   Ana yapı korunarak hero, kartlar, 3D ikon hissi, footer ve mobil görünüm iyileştirildi.
   ======================================================= */
:root {
    --primary-orange: #e67e22;
    --orange-dark: #a94300;
    --dark-blue: #111827;
    --deep-blue: #08192d;
    --text-primary: #1e2230;
    --text-secondary: #5a6070;
    --white: #ffffff;
    --light-bg: #f7f9fc;
    --border-light: #e7ebf1;
    --shadow-soft: 0 16px 38px rgba(15, 23, 42, 0.10);
    --shadow-3d: 0 18px 45px rgba(10, 37, 64, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-primary);
    background: var(--white);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

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

/* =======================================================
   HEADER
   ======================================================= */
.main-nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(230, 126, 34, 0.35);
    padding: 12px 0;
    box-shadow: 0 8px 28px rgba(15, 23, 42, 0.06);
}

.nav-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.logo img {
    height: 72px;
    width: auto;
}

nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

nav a {
    text-decoration: none;
    color: var(--dark-blue);
    font-weight: 700;
    font-size: 0.95rem;
    position: relative;
    padding: 8px 0;
    white-space: nowrap;
    transition: color 0.25s ease;
}

nav a:hover,
nav a.active {
    color: var(--primary-orange);
}

nav a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 3px;
    background: var(--primary-orange);
    border-radius: 3px;
    transition: width 0.25s ease;
}

nav a:hover::after,
nav a.active::after {
    width: 100%;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 18px;
}

.nav-contact {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 14px;
    border: 1px solid rgba(230, 126, 34, 0.28);
    border-radius: 999px;
    background: linear-gradient(145deg, #ffffff, #fff7ef);
    color: var(--deep-blue);
    text-decoration: none;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.nav-contact:hover {
    transform: translateY(-2px);
    border-color: rgba(230, 126, 34, 0.58);
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.nav-contact-icon,
.nav-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.nav-contact-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: #fff;
    background: linear-gradient(145deg, #ff9a2f, #d05d00);
    box-shadow: 0 10px 20px rgba(230, 126, 34, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.32);
}

.nav-contact svg,
.nav-social svg {
    width: 18px;
    height: 18px;
    max-width: 18px;
    max-height: 18px;
    fill: currentColor;
}

.main-nav svg {
    max-width: 22px;
    max-height: 22px;
}

.nav-contact-text {
    display: grid;
    line-height: 1.2;
}

.nav-contact-text small {
    color: var(--text-secondary);
    font-size: 0.72rem;
    font-weight: 700;
}

.nav-contact-text strong {
    color: var(--deep-blue);
    font-size: 0.92rem;
    font-weight: 800;
    letter-spacing: 0;
}

.nav-social {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-social a {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    color: var(--deep-blue);
    background: #fff;
    border: 1px solid var(--border-light);
    text-decoration: none;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.07);
    transition: transform 0.25s ease, color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.nav-social a:hover {
    transform: translateY(-2px);
    color: var(--primary-orange);
    border-color: rgba(230, 126, 34, 0.45);
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.12);
}

/* =======================================================
   HERO SLIDER
   ======================================================= */
.hero-slider {
    width: 100%;
    height: min(78vh, 760px);
    min-height: 610px;
    position: relative;
    overflow: hidden;
    background: var(--dark-blue);
}

.slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.1s ease-in-out, transform 6s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(1.02);
}

.slide.active {
    opacity: 1;
    z-index: 1;
    transform: scale(1);
}

.slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(6, 18, 34, 0.94) 0%, rgba(8, 25, 45, 0.82) 42%, rgba(8, 25, 45, 0.36) 76%, rgba(230, 126, 34, 0.28) 100%),
        radial-gradient(circle at 72% 42%, rgba(255, 156, 54, 0.22), transparent 34%);
    z-index: 1;
}

.hero-shell {
    position: relative;
    z-index: 2;
    width: min(1180px, calc(100% - 56px));
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.78fr);
    align-items: center;
    gap: 54px;
    margin: 0 auto;
}

.slide .hero-content {
    text-align: left;
    color: var(--white);
    padding: 36px 0;
    max-width: 690px;
    animation: fadeInUp 0.8s ease forwards;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.11);
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: #ffe2c2;
    padding: 9px 22px;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 24px;
    backdrop-filter: blur(12px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.slide .hero-content h1 {
    font-size: clamp(2.45rem, 5vw, 4.55rem);
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.05;
    letter-spacing: 0;
}

.slide .hero-content .hero-title {
    font-size: clamp(2.15rem, 4vw, 4rem);
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.08;
    letter-spacing: 0;
}

.slide .hero-content h1 span,
.slide .hero-content .hero-title span {
    color: #ff9f43;
    position: relative;
}

.slide .hero-content h1 span::after,
.slide .hero-content .hero-title span::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 4px;
    width: 100%;
    height: 9px;
    background: rgba(230, 126, 34, 0.30);
    border-radius: 999px;
    z-index: -1;
}

.slide .hero-content p {
    font-size: 1.13rem;
    color: rgba(255, 255, 255, 0.86);
    margin: 0 0 30px;
    max-width: 640px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 14px;
}

.btn-secondary {
    color: var(--white);
    background: rgba(255, 255, 255, 0.11);
    border: 1px solid rgba(255, 255, 255, 0.28);
    backdrop-filter: blur(12px);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.18);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.22);
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.hero-trust span {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 6px 12px;
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.84);
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.16);
    font-size: 0.82rem;
    font-weight: 700;
}

.hero-dashboard {
    position: relative;
    padding: 22px;
    border-radius: 26px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(245, 249, 255, 0.86));
    border: 1px solid rgba(255, 255, 255, 0.58);
    box-shadow: 0 32px 70px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.88);
    color: var(--deep-blue);
    transform: perspective(900px) rotateY(-6deg) rotateX(3deg);
    animation: heroPanelFloat 5s ease-in-out infinite;
}

.hero-dashboard::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(230, 126, 34, 0.46), transparent 35%, rgba(37, 99, 235, 0.20));
    z-index: -1;
}

.hero-panel-head,
.hero-panel-foot,
.hero-money-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.hero-panel-head {
    margin-bottom: 16px;
    color: var(--text-secondary);
    font-size: 0.88rem;
    font-weight: 800;
}

.hero-panel-head strong,
.hero-panel-foot b {
    color: #15803d;
}

.hero-kpi-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.hero-kpi {
    min-height: 106px;
    padding: 14px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid #edf1f7;
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.08);
}

.hero-kpi:first-child {
    grid-column: span 2;
}

.hero-kpi small,
.hero-money-row small {
    display: block;
    color: var(--text-secondary);
    font-size: 0.78rem;
    font-weight: 800;
}

.hero-kpi strong,
.hero-money-row strong {
    display: block;
    margin: 5px 0;
    color: var(--deep-blue);
    font-size: 1.55rem;
    line-height: 1;
}

.hero-kpi span,
.hero-money-row span {
    color: #15803d;
    font-size: 0.82rem;
    font-weight: 800;
}

.hero-chart {
    height: 120px;
    display: flex;
    align-items: end;
    gap: 10px;
    margin: 18px 0;
    padding: 16px;
    border-radius: 20px;
    background: linear-gradient(180deg, #f8fbff, #edf4ff);
}

.hero-chart i {
    flex: 1;
    min-width: 22px;
    border-radius: 10px 10px 4px 4px;
    background: linear-gradient(180deg, #3b82f6, #f28a1a);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.16);
}

.hero-panel-foot {
    padding-top: 12px;
    border-top: 1px solid #e7ebf1;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 800;
}

.hero-dashboard-compact {
    display: grid;
    gap: 12px;
}

.hero-money-row {
    padding: 16px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid #edf1f7;
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.07);
}

.hero-line {
    height: 76px;
    border-radius: 18px;
    background:
        linear-gradient(135deg, transparent 48%, rgba(230, 126, 34, 0.2) 49%, rgba(230, 126, 34, 0.2) 51%, transparent 52%),
        linear-gradient(180deg, #f8fbff, #edf4ff);
}

.hero-step-card {
    display: grid;
    gap: 14px;
}

.hero-step-card div {
    display: grid;
    grid-template-columns: 58px 1fr;
    align-items: center;
    gap: 14px;
    padding: 16px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid #edf1f7;
}

.hero-step-card b {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 14px;
    color: #fff;
    background: linear-gradient(145deg, #ff9a2f, #d05d00);
}

.hero-step-card span,
.hero-security-card li {
    color: var(--text-primary);
    font-weight: 800;
}

.hero-security-card span {
    display: block;
    color: var(--text-secondary);
    font-weight: 800;
}

.hero-security-card strong {
    display: block;
    margin: 8px 0 18px;
    font-size: 1.8rem;
    line-height: 1.1;
}

.hero-security-card ul {
    list-style: none;
    display: grid;
    gap: 12px;
}

.hero-security-card li {
    padding: 12px 14px;
    border-radius: 14px;
    background: #fff;
    border: 1px solid #edf1f7;
}

@keyframes heroPanelFloat {
    0%, 100% { transform: perspective(900px) rotateY(-6deg) rotateX(3deg) translateY(0); }
    50% { transform: perspective(900px) rotateY(-3deg) rotateX(2deg) translateY(-10px); }
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 14px 32px;
    border-radius: 999px;
    font-weight: 800;
    font-size: 1rem;
    text-decoration: none;
    letter-spacing: 0;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(145deg, #d97706, var(--primary-orange));
    color: var(--white);
    box-shadow: 0 12px 26px rgba(230, 126, 34, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.btn-primary:hover {
    background: linear-gradient(145deg, var(--primary-orange), var(--orange-dark));
    transform: translateY(-3px);
    box-shadow: 0 16px 36px rgba(230, 126, 34, 0.46);
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.25s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-arrow:hover {
    background: rgba(230, 126, 34, 0.82);
    border-color: rgba(255, 255, 255, 0.35);
}

.slider-arrow.prev { left: 22px; }
.slider-arrow.next { right: 22px; }

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 12px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.42);
    border: 2px solid rgba(255, 255, 255, 0.62);
    cursor: pointer;
    transition: all 0.25s ease;
}

.dot.active,
.dot:hover {
    background: var(--primary-orange);
    border-color: var(--primary-orange);
    transform: scale(1.25);
}

/* =======================================================
   ORTAK BÖLÜM BAŞLIKLARI
   ======================================================= */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: clamp(1.8rem, 3vw, 2.45rem);
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--text-primary);
    letter-spacing: 0;
}

.section-header p {
    font-size: 1.08rem;
    color: var(--text-secondary);
    max-width: 650px;
    margin: 0 auto;
}

/* =======================================================
   ORTAK IKON STILI
   ======================================================= */
.card-icon,
.vo-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: linear-gradient(145deg, #ffffff, #eef4ff);
    box-shadow: var(--shadow-3d);
    color: var(--primary-orange);
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 16px;
    transform-style: preserve-3d;
}

/* =======================================================
   BANNER ALT BÖLÜM
   ======================================================= */
.banner-alt-bolum {
    padding: 86px 0;
    background: var(--white);
}

.banner-alt-flex {
    display: flex;
    align-items: center;
    gap: 56px;
}

.bolum-gorsel,
.bolum-yazi {
    flex: 1;
}

.bolum-gorsel img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: var(--shadow-soft);
}

.siyah-baslik {
    color: var(--text-primary);
    font-size: clamp(1.65rem, 2.5vw, 2.25rem);
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: 0;
}

.bolum-yazi p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin-bottom: 22px;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 9px 0 9px 34px;
    color: var(--text-primary);
    font-weight: 700;
    position: relative;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 8px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(230, 126, 34, 0.12);
    color: var(--primary-orange);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.82rem;
    font-weight: 800;
}

/* =======================================================
   NEDEN VERIODAK KARTLARI
   ======================================================= */
.tam-kontrol {
    padding: 86px 0;
    background: var(--light-bg);
}

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

.feature-card {
    background: var(--white);
    padding: 28px;
    border-radius: 12px;
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.05);
    display: flex;
    align-items: flex-start;
    gap: 18px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    border: 1px solid var(--border-light);
}

.feature-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.10);
    border-color: rgba(230, 126, 34, 0.55);
}

.card-icon {
    flex: 0 0 52px;
    margin-bottom: 0;
    font-size: 0.88rem;
}

.card-content h3 {
    font-size: 1.08rem;
    font-weight: 800;
    margin-bottom: 8px;
    color: var(--text-primary);
    letter-spacing: 0;
}

.card-content p {
    font-size: 0.92rem;
    color: var(--text-secondary);
    margin-bottom: 0;
}

/* =======================================================
   SÜREÇ BÖLÜMÜ
   ======================================================= */
.process-section {
    padding: 86px 0;
    background: var(--white);
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.step-box {
    text-align: center;
}

.step-number {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: var(--white);
    border: 3px solid var(--primary-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-orange);
    box-shadow: 0 12px 26px rgba(230, 126, 34, 0.14);
}

.orange-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    padding: 30px;
    border-radius: 12px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.05);
}

.orange-card:hover {
    transform: translateY(-5px);
    border-color: rgba(230, 126, 34, 0.55);
    box-shadow: 0 18px 42px rgba(230, 126, 34, 0.12);
}

.step-label {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--primary-orange);
    font-weight: 800;
    margin-bottom: 8px;
}

.orange-card h3 {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.step-desc {
    font-size: 0.92rem;
    color: var(--text-secondary);
}

/* =======================================================
   FOOTER
   ======================================================= */
.site-footer {
    background: var(--deep-blue);
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    padding: 24px 0;
    font-size: 0.9rem;
}

.vo-footer {
    background: radial-gradient(circle at top left, rgba(230, 126, 34, 0.20), transparent 34%), var(--deep-blue);
    color: rgba(255, 255, 255, 0.78);
    margin-top: 0;
}

.vo-footer-grid {
    display: grid;
    grid-template-columns: 1.35fr 0.8fr 0.95fr 1.25fr;
    gap: 40px;
    padding-top: 66px;
    padding-bottom: 52px;
}

.vo-footer-logo {
    display: inline-flex;
    align-items: center;
    background: var(--white);
    border-radius: 16px;
    padding: 10px 14px;
    margin-bottom: 22px;
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.18);
}

.vo-footer-logo img {
    height: 62px;
    width: auto;
}

.vo-footer-brand p {
    max-width: 370px;
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.95rem;
    line-height: 1.8;
    margin: 0 0 24px;
}

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

.vo-social-links a {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.09);
    color: var(--white);
    text-decoration: none;
    font-weight: 800;
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: all 0.25s ease;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.vo-social-links a:hover {
    background: var(--primary-orange);
    transform: translateY(-4px);
}

.vo-footer-col h3 {
    color: var(--white);
    font-size: 1.05rem;
    margin: 0 0 22px;
    position: relative;
    padding-bottom: 12px;
}

.vo-footer-col h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 42px;
    height: 3px;
    background: var(--primary-orange);
    border-radius: 10px;
}

.vo-footer-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.vo-footer-col li {
    margin-bottom: 12px;
}

.vo-footer-col a {
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
    transition: color 0.25s ease, padding-left 0.25s ease;
}

.vo-footer-col a:hover {
    color: var(--primary-orange);
    padding-left: 6px;
}

.vo-contact-col {
    display: flex;
    flex-direction: column;
}

.vo-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 13px 0;
    color: rgba(255, 255, 255, 0.82);
    text-decoration: none;
}

.vo-contact-item:hover {
    padding-left: 0 !important;
}

.vo-icon {
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 14px;
    margin-bottom: 0;
}

.vo-icon svg {
    width: 21px;
    height: 21px;
    fill: currentColor;
}

.vo-contact-item small {
    display: block;
    color: rgba(255, 255, 255, 0.50);
    font-size: 0.76rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 2px;
}

.vo-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.10);
    background: rgba(0, 0, 0, 0.18);
}

.vo-footer-bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding-top: 18px;
    padding-bottom: 18px;
}

.vo-footer-bottom p {
    margin: 0;
    color: rgba(255, 255, 255, 0.56);
    font-size: 0.88rem;
}

/* =======================================================
   ANİMASYON
   ======================================================= */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(34px); }
    to { opacity: 1; transform: translateY(0); }
}

/* =======================================================
   MOBİL UYUMLULUK
   ======================================================= */
@media (max-width: 980px) {
    .hero-slider {
        height: auto;
        min-height: 720px;
    }

    .hero-shell {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 54px 0 76px;
    }

    .slide .hero-content {
        text-align: center;
        margin: 0 auto;
    }

    .slide .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions,
    .hero-trust {
        justify-content: center;
    }

    .hero-dashboard {
        max-width: 520px;
        width: 100%;
        margin: 0 auto;
        transform: none;
        animation: none;
    }

    .grid-3x3,
    .steps-container {
        grid-template-columns: 1fr 1fr;
    }

    .banner-alt-flex {
        gap: 34px;
    }

    .vo-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 34px;
    }
}

@media (max-width: 768px) {
    .main-nav {
        padding: 10px 0;
    }

    .nav-flex {
        flex-direction: column;
        gap: 14px;
    }

    .logo img {
        height: 62px;
    }

    nav {
        gap: 18px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav-right {
        width: 100%;
        flex-direction: column;
        gap: 12px;
    }

    .nav-contact {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }

    .nav-social {
        justify-content: center;
    }

    nav a {
        font-size: 0.9rem;
    }

    .hero-slider {
        min-height: 760px;
    }

    .slide .hero-content {
        padding: 0;
    }

    .slide .hero-content h1,
    .slide .hero-content .hero-title {
        font-size: 2.1rem;
    }

    .slide .hero-content p {
        font-size: 1rem;
    }

    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 1.15rem;
    }

    .slider-arrow.prev { left: 10px; }
    .slider-arrow.next { right: 10px; }

    .slider-dots {
        bottom: 22px;
        gap: 8px;
    }

    .dot {
        width: 10px;
        height: 10px;
    }

    .grid-3x3,
    .steps-container {
        grid-template-columns: 1fr;
    }

    .banner-alt-flex {
        flex-direction: column;
    }

    .banner-alt-bolum,
    .tam-kontrol,
    .process-section {
        padding: 64px 0;
    }

    .feature-card {
        padding: 24px;
    }
}

@media (max-width: 640px) {
    .container {
        padding: 0 18px;
    }

    .slide .hero-content {
        padding: 0;
    }

    .hero-badge {
        font-size: 0.7rem;
        padding: 8px 16px;
        line-height: 1.4;
    }

    .hero-shell {
        width: min(100% - 28px, 520px);
        padding-top: 42px;
    }

    .slide .hero-content h1,
    .slide .hero-content .hero-title {
        font-size: 1.82rem;
    }

    .hero-dashboard {
        padding: 16px;
        border-radius: 20px;
    }

    .hero-kpi-grid {
        grid-template-columns: 1fr;
    }

    .hero-kpi:first-child {
        grid-column: auto;
    }

    .hero-kpi {
        min-height: auto;
    }

    .hero-chart {
        height: 88px;
        gap: 7px;
        padding: 12px;
    }

    .hero-chart i {
        min-width: 14px;
    }

    .hero-money-row {
        align-items: flex-start;
        flex-direction: column;
        gap: 4px;
    }

    .hero-step-card div {
        grid-template-columns: 48px 1fr;
        padding: 14px;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }

    .feature-card {
        flex-direction: column;
    }

    .vo-footer-grid {
        grid-template-columns: 1fr;
        padding-top: 50px;
        padding-bottom: 38px;
    }

    .vo-footer-bottom-flex {
        flex-direction: column;
        text-align: center;
    }
}


/* =======================================================
   YARATICI DASHBOARD BÖLÜMÜ
   Bu kodu varliklar/stiller/site.css dosyanızın en altına ekleyebilirsiniz.
   ======================================================= */
.dashboard-showcase {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
}

.dashboard-showcase::before {
    content: '';
    position: absolute;
    inset: 8% auto auto -120px;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(230, 126, 34, 0.12), transparent 68%);
    pointer-events: none;
}

.dashboard-showcase-flex {
    gap: 64px;
}

.dashboard-preview {
    perspective: 1400px;
}

.dashboard-window {
    position: relative;
    padding: 22px;
    border-radius: 24px;
    background: linear-gradient(145deg, #ffffff, #eef4ff);
    border: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow: 0 28px 70px rgba(15, 23, 42, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transform: rotateY(-7deg) rotateX(3deg);
    transform-style: preserve-3d;
}

.dashboard-window::after {
    content: '';
    position: absolute;
    inset: 18px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(230, 126, 34, 0.10), transparent 42%);
    transform: translateZ(-1px);
    pointer-events: none;
}

.dashboard-topbar,
.dash-panel-head,
.dash-kpis,
.dash-main-grid,
.dash-bottom-grid,
.donut-legend,
.dash-row {
    position: relative;
    z-index: 1;
}

.dashboard-topbar {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
}

.dash-eyebrow,
.section-kicker {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(230, 126, 34, 0.12);
    color: #a94300;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.dashboard-topbar h3 {
    margin: 0;
    color: #111827;
    font-size: 1.35rem;
    line-height: 1.2;
}

.dash-live {
    padding: 8px 12px;
    border-radius: 999px;
    background: #dcfce7;
    color: #15803d;
    font-size: 0.78rem;
    font-weight: 800;
    white-space: nowrap;
}

.dash-kpis {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 14px;
}

.dash-kpi,
.dash-panel {
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(226, 232, 240, 0.86);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.07);
}

.dash-kpi {
    padding: 14px;
    border-radius: 16px;
}

.dash-kpi small,
.dash-panel-head span,
.donut-legend small {
    color: #64748b;
    font-size: 0.74rem;
    font-weight: 700;
}

.dash-kpi strong {
    display: block;
    color: #111827;
    font-size: 1.22rem;
    line-height: 1.25;
    margin: 5px 0;
}

.dash-kpi span {
    color: #2563eb;
    font-size: 0.76rem;
    font-weight: 800;
}

.dash-kpi.danger span { color: #dc2626; }
.dash-kpi.success span { color: #16a34a; }

.dash-main-grid {
    display: grid;
    grid-template-columns: 1.35fr 0.8fr;
    gap: 14px;
    margin-bottom: 14px;
}

.dash-bottom-grid {
    display: grid;
    grid-template-columns: 1.25fr 0.95fr;
    gap: 14px;
}

.dash-panel {
    border-radius: 18px;
    padding: 16px;
}

.dash-panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}

.dash-panel h4,
.insight-panel h4 {
    color: #111827;
    margin: 0;
    font-size: 0.96rem;
}

.bar-chart {
    height: 154px;
    display: flex;
    align-items: end;
    gap: 9px;
    padding-top: 8px;
}

.bar-chart span {
    flex: 1;
    height: var(--h);
    min-height: 28px;
    border-radius: 9px 9px 4px 4px;
    background: linear-gradient(180deg, #60a5fa, #2563eb);
    box-shadow: 0 10px 18px rgba(37, 99, 235, 0.18);
}

.donut-panel {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.donut-chart {
    width: 132px;
    height: 132px;
    border-radius: 50%;
    background: conic-gradient(#2563eb 0 42%, #f97316 42% 68%, #22c55e 68% 86%, #a855f7 86% 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 0 0 18px #ffffff, 0 14px 28px rgba(15, 23, 42, 0.12);
}

.donut-chart span {
    color: #111827;
    font-size: 0.9rem;
    font-weight: 800;
}

.donut-legend {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-top: 14px;
}

.donut-legend i {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-right: 5px;
}

.donut-legend .blue { background: #2563eb; }
.donut-legend .orange { background: #f97316; }
.donut-legend .green { background: #22c55e; }

.dash-row {
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    gap: 10px;
    padding: 9px 0;
    border-bottom: 1px solid #eef2f7;
    font-size: 0.82rem;
}

.dash-row:last-child {
    border-bottom: 0;
}

.dash-row b {
    color: #111827;
}

.dash-row strong {
    color: #111827;
    white-space: nowrap;
}

.dash-row span {
    padding: 4px 8px;
    border-radius: 999px;
    font-size: 0.70rem;
    font-weight: 800;
}

.dash-row .paid { background: #dcfce7; color: #15803d; }
.dash-row .wait { background: #fef3c7; color: #b45309; }
.dash-row .risk { background: #fee2e2; color: #b91c1c; }

.insight-panel {
    background: linear-gradient(145deg, #111827, #1f2937);
    color: #ffffff;
}

.insight-panel h4 {
    color: #ffffff;
    margin-bottom: 8px;
}

.insight-panel p {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.86rem;
    margin: 0;
    line-height: 1.6;
}

.insight-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: rgba(230, 126, 34, 0.18);
    color: #fbbf24;
    font-weight: 900;
    margin-bottom: 12px;
}

.dashboard-copy .siyah-baslik {
    max-width: 560px;
}

.dashboard-copy > p {
    max-width: 620px;
}

.dashboard-benefits {
    display: grid;
    gap: 14px;
    margin-top: 26px;
}

.dashboard-benefits div {
    position: relative;
    padding: 17px 18px 17px 54px;
    border-radius: 16px;
    background: #ffffff;
    border: 1px solid #e7ebf1;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}

.dashboard-benefits div::before {
    content: '✓';
    position: absolute;
    left: 18px;
    top: 18px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(230, 126, 34, 0.13);
    color: #e67e22;
    font-weight: 900;
}

.dashboard-benefits strong {
    display: block;
    color: #111827;
    margin-bottom: 4px;
}

.dashboard-benefits span {
    display: block;
    color: #5a6070;
    font-size: 0.94rem;
    line-height: 1.55;
}

@media (max-width: 980px) {
    .dashboard-showcase-flex {
        gap: 40px;
    }

    .dashboard-window {
        transform: none;
    }

    .dash-kpis,
    .dash-main-grid,
    .dash-bottom-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .dashboard-window {
        padding: 16px;
        border-radius: 18px;
    }

    .dashboard-topbar {
        flex-direction: column;
    }

    .dash-row {
        grid-template-columns: 1fr;
        gap: 5px;
    }

    .bar-chart {
        height: 120px;
    }
}


/* =======================================================
   İZOLE VERİODAK FİNANS DASHBOARD BÖLÜMÜ
   Not: Bu CSS sadece .vo-finance-section içini etkiler, sitenin diğer alanlarını bozmaz.
   ======================================================= */
.vo-finance-section {
    padding: 86px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
    overflow: hidden;
}

.vo-finance-section * {
    box-sizing: border-box;
}

.vo-finance-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
    gap: 60px;
    align-items: center;
}

.vo-finance-visual {
    perspective: 1400px;
}

.vo-finance-board {
    max-width: 650px;
    padding: 22px;
    border-radius: 24px;
    background: linear-gradient(145deg, #ffffff, #eef4ff);
    border: 1px solid #e2e8f0;
    box-shadow: 0 28px 70px rgba(15, 23, 42, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transform: rotateY(-5deg) rotateX(2deg);
}

.vo-board-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 16px;
}

.vo-board-label,
.vo-copy-label {
    display: inline-flex;
    width: fit-content;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(230, 126, 34, 0.12);
    color: #a94300;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.vo-board-head h3 {
    margin: 0;
    color: #111827;
    font-size: 1.28rem;
    line-height: 1.25;
}

.vo-board-live {
    padding: 8px 12px;
    border-radius: 999px;
    background: #dcfce7;
    color: #15803d;
    font-size: 0.74rem;
    font-weight: 800;
    white-space: nowrap;
}

.vo-currency-list {
    display: grid;
    gap: 12px;
    margin-bottom: 14px;
}

.vo-currency-card {
    display: grid;
    grid-template-columns: 54px 1fr auto;
    align-items: center;
    gap: 14px;
    padding: 15px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid #e2e8f0;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.07);
}

.vo-currency-code {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 900;
    box-shadow: 0 12px 22px rgba(15, 23, 42, 0.12);
}

.vo-tl { background: linear-gradient(145deg, #2563eb, #1d4ed8); }
.vo-usd { background: linear-gradient(145deg, #16a34a, #15803d); }
.vo-eur { background: linear-gradient(145deg, #f97316, #a94300); }

.vo-currency-text small,
.vo-mini-head small {
    display: block;
    color: #64748b;
    font-size: 0.74rem;
    font-weight: 800;
    margin-bottom: 2px;
}

.vo-currency-text strong {
    display: block;
    color: #111827;
    font-size: 1.28rem;
    line-height: 1.2;
}

.vo-currency-text p {
    color: #64748b;
    font-size: 0.78rem;
    line-height: 1.45;
    margin: 5px 0 0;
}

.vo-currency-rate {
    min-width: 104px;
    padding: 10px;
    border-radius: 14px;
    text-align: center;
    background: #f8fafc;
}

.vo-currency-rate b {
    display: block;
    font-size: 1rem;
    line-height: 1.2;
}

.vo-currency-rate span {
    display: block;
    margin-top: 3px;
    color: #64748b;
    font-size: 0.70rem;
    font-weight: 800;
}

.vo-up b { color: #16a34a; }
.vo-down b { color: #d97706; }

.vo-board-panels {
    display: grid;
    grid-template-columns: 1.15fr 0.95fr;
    gap: 14px;
    margin-bottom: 14px;
}

.vo-chart-card,
.vo-insight-card,
.vo-priority-row,
.vo-copy-list div {
    border-radius: 18px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.07);
}

.vo-chart-card,
.vo-priority-row,
.vo-copy-list div {
    background: rgba(255, 255, 255, 0.9);
}

.vo-chart-card,
.vo-insight-card {
    padding: 16px;
}

.vo-mini-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}

.vo-mini-head h4,
.vo-insight-card h4 {
    color: #111827;
    margin: 0;
    font-size: 0.96rem;
}

.vo-mini-head > span {
    color: #2563eb;
    background: #eff6ff;
    border-radius: 999px;
    padding: 5px 9px;
    font-size: 0.72rem;
    font-weight: 900;
    white-space: nowrap;
}

.vo-bars {
    height: 142px;
    display: flex;
    align-items: end;
    gap: 9px;
    padding-top: 8px;
}

.vo-bars i {
    flex: 1;
    height: var(--h);
    min-height: 28px;
    border-radius: 9px 9px 4px 4px;
    background: linear-gradient(180deg, #60a5fa, #2563eb);
    box-shadow: 0 10px 18px rgba(37, 99, 235, 0.18);
}

.vo-insight-card {
    background: linear-gradient(145deg, #111827, #1f2937);
    color: #ffffff;
}

.vo-insight-card > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: rgba(230, 126, 34, 0.18);
    color: #fbbf24;
    font-weight: 900;
    margin-bottom: 12px;
}

.vo-insight-card h4 {
    color: #ffffff;
    margin-bottom: 8px;
}

.vo-insight-card p {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.86rem;
    margin: 0;
    line-height: 1.6;
}

.vo-priority-list {
    display: grid;
    gap: 11px;
}

.vo-priority-row {
    display: grid;
    grid-template-columns: 205px 1fr;
    gap: 14px;
    align-items: center;
    padding: 13px;
}

.vo-priority-row div {
    display: grid;
    grid-template-columns: 34px 1fr;
    gap: 8px;
    align-items: center;
}

.vo-priority-row div span {
    grid-row: span 2;
    width: 34px;
    height: 34px;
    border-radius: 12px;
    background: rgba(230, 126, 34, 0.13);
    color: #a94300;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    font-weight: 900;
}

.vo-priority-row strong {
    color: #111827;
    font-size: 0.82rem;
    line-height: 1.2;
}

.vo-priority-row b {
    color: #2563eb;
    font-size: 0.92rem;
    line-height: 1.2;
}

.vo-priority-row p {
    color: #64748b;
    font-size: 0.80rem;
    line-height: 1.5;
    margin: 0;
}

.vo-finance-copy h2 {
    color: #1e2230;
    font-size: clamp(1.65rem, 2.5vw, 2.25rem);
    font-weight: 800;
    line-height: 1.2;
    margin: 0 0 20px;
}

.vo-finance-copy > p {
    color: #5a6070;
    font-size: 1.05rem;
    margin: 0 0 18px;
}

.vo-copy-list {
    display: grid;
    gap: 14px;
    margin-top: 26px;
}

.vo-copy-list div {
    position: relative;
    padding: 17px 18px 17px 54px;
}

.vo-copy-list div::before {
    content: '✓';
    position: absolute;
    left: 18px;
    top: 18px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(230, 126, 34, 0.13);
    color: #e67e22;
    font-weight: 900;
}

.vo-copy-list strong {
    display: block;
    color: #111827;
    margin-bottom: 4px;
}

.vo-copy-list span {
    display: block;
    color: #5a6070;
    font-size: 0.94rem;
    line-height: 1.55;
}

@media (max-width: 980px) {
    .vo-finance-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .vo-finance-board {
        max-width: none;
        transform: none;
    }
}

@media (max-width: 640px) {
    .vo-finance-section {
        padding: 64px 0;
    }

    .vo-finance-board {
        padding: 16px;
        border-radius: 18px;
    }

    .vo-board-head,
    .vo-currency-card,
    .vo-board-panels,
    .vo-priority-row {
        grid-template-columns: 1fr;
        display: grid;
    }

    .vo-currency-rate {
        min-width: 0;
        text-align: left;
    }

    .vo-bars {
        height: 120px;
    }
}
.skip-link {
    position: absolute;
    left: 16px;
    top: -48px;
    z-index: 100000;
    padding: 10px 14px;
    border-radius: 8px;
    background: #08192d;
    color: #ffffff;
    font-weight: 800;
    text-decoration: none;
    transition: top 0.2s ease;
}

.skip-link:focus {
    top: 12px;
}

/* =======================================================
   SEO HIZMET SAYFALARI
   ======================================================= */
.seo-page {
    background: #f7f9fc;
}

.seo-hero {
    position: relative;
    overflow: hidden;
    padding: 92px 0;
    color: #fff;
    background:
        linear-gradient(115deg, rgba(8, 25, 45, 0.96), rgba(8, 25, 45, 0.84) 52%, rgba(230, 126, 34, 0.50)),
        url('../gorseller/banner-main.jpg') center/cover no-repeat;
}

.seo-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.75fr);
    gap: 48px;
    align-items: center;
}

.seo-kicker {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 7px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #ffe2c2;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.seo-hero h1 {
    max-width: 760px;
    margin: 20px 0 18px;
    font-size: clamp(2.2rem, 4.4vw, 4rem);
    line-height: 1.08;
    font-weight: 900;
    letter-spacing: 0;
}

.seo-hero p {
    max-width: 690px;
    margin: 0 0 28px;
    color: rgba(255, 255, 255, 0.84);
    font-size: 1.12rem;
}

.seo-hero-card {
    padding: 24px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.94);
    color: #111827;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.28);
    border: 1px solid rgba(255, 255, 255, 0.55);
}

.seo-hero-card h2 {
    margin: 0 0 16px;
    font-size: 1.25rem;
    line-height: 1.25;
}

.seo-metric-list {
    display: grid;
    gap: 12px;
}

.seo-metric-list div {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 14px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid #edf1f7;
}

.seo-metric-list span {
    color: #64748b;
    font-weight: 800;
}

.seo-metric-list strong {
    color: #0f172a;
    text-align: right;
}

.seo-section {
    padding: 78px 0;
}

.seo-section.white {
    background: #fff;
}

.seo-two-col {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
    gap: 44px;
    align-items: start;
}

.seo-copy h2,
.seo-section-head h2 {
    margin: 0 0 16px;
    color: #111827;
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    line-height: 1.16;
}

.seo-copy p,
.seo-section-head p,
.seo-card p,
.seo-process-card p,
.seo-faq p {
    color: #5a6070;
}

.seo-list {
    display: grid;
    gap: 14px;
    margin-top: 24px;
}

.seo-list li {
    list-style: none;
    position: relative;
    padding: 16px 18px 16px 52px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid #e7ebf1;
    color: #1e2230;
    font-weight: 800;
}

.seo-list li::before {
    content: '✓';
    position: absolute;
    left: 18px;
    top: 16px;
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    background: #e67e22;
    font-weight: 900;
}

.seo-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.seo-card,
.seo-process-card,
.seo-faq {
    padding: 24px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid #e7ebf1;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
}

.seo-card span,
.seo-process-card span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 34px;
    margin-bottom: 14px;
    border-radius: 12px;
    background: rgba(230, 126, 34, 0.12);
    color: #b45309;
    font-weight: 900;
}

.seo-card h3,
.seo-process-card h3,
.seo-faq h3 {
    margin: 0 0 10px;
    color: #111827;
    font-size: 1.14rem;
    line-height: 1.25;
}

.seo-process {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.seo-cta {
    padding: 56px 0;
    background: linear-gradient(135deg, #08192d, #14375f);
    color: #fff;
}

.seo-cta-box {
    display: flex;
    justify-content: space-between;
    gap: 28px;
    align-items: center;
}

.seo-cta h2 {
    margin: 0 0 10px;
    font-size: clamp(1.7rem, 3vw, 2.45rem);
    line-height: 1.16;
}

.seo-cta p {
    max-width: 720px;
    color: rgba(255, 255, 255, 0.78);
    margin: 0;
}

.seo-link-panel {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.seo-link-panel a {
    display: block;
    padding: 18px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid #e7ebf1;
    color: #111827;
    text-decoration: none;
    font-weight: 900;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.05);
}

.seo-link-panel a:hover {
    color: #e67e22;
    border-color: rgba(230, 126, 34, 0.45);
}

@media (max-width: 980px) {
    .seo-hero-grid,
    .seo-two-col,
    .seo-cta-box {
        grid-template-columns: 1fr;
        display: grid;
    }

    .seo-card-grid,
    .seo-process,
    .seo-link-panel {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .seo-hero {
        padding: 64px 0;
    }

    .seo-section {
        padding: 58px 0;
    }

    .seo-card-grid,
    .seo-process,
    .seo-link-panel {
        grid-template-columns: 1fr;
    }
}

/* =======================================================
   CANLI POWER BI DEMO BÖLÜMÜ
   Ana sayfadaki eski banka/nakit kartının yerine gelen canlı rapor alanıdır.
   ======================================================= */
.vo-live-demo-section {
    position: relative;
    overflow: hidden;
    padding: 92px 0;
    background: radial-gradient(circle at 88% 10%, rgba(242, 138, 18, 0.15), transparent 32%), linear-gradient(180deg, #ffffff 0%, #f6f9fd 100%);
}

.vo-live-demo-section::before {
    content: '';
    position: absolute;
    left: -180px;
    top: 90px;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.12), transparent 68%);
    pointer-events: none;
}

.vo-live-demo-head {
    position: relative;
    z-index: 1;
    max-width: 860px;
    margin: 0 auto 34px;
    text-align: center;
}

.vo-live-demo-head h2 {
    margin: 16px 0 14px;
    color: #0b1730;
    font-size: clamp(2.1rem, 4vw, 4rem);
    line-height: 1.05;
    font-weight: 900;
    letter-spacing: 0;
}

.vo-live-demo-head p {
    margin: 0 auto;
    max-width: 780px;
    color: #475467;
    font-size: 1.06rem;
    line-height: 1.75;
}

.vo-powerbi-frame {
    position: relative;
    z-index: 1;
    overflow: hidden;
    max-width: 1160px;
    margin: 0 auto;
    padding: 16px;
    border-radius: 28px;
    background: linear-gradient(145deg, #ffffff, #edf4ff);
    border: 1px solid rgba(220, 230, 244, 0.95);
    box-shadow: 0 34px 80px rgba(15, 23, 42, 0.16);
}

.vo-frame-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    min-height: 38px;
    padding: 0 4px 12px;
}

.vo-frame-top div { display: flex; gap: 8px; }

.vo-frame-top span {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: #ef4444;
}

.vo-frame-top span:nth-child(2) { background: #f59e0b; }
.vo-frame-top span:nth-child(3) { background: #22c55e; }

.vo-frame-top strong {
    color: #344054;
    font-size: 0.9rem;
}

.vo-frame-ratio {
    position: relative;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 1024 / 612;
    border-radius: 18px;
    background: #0b1424;
}

.vo-frame-ratio iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.vo-powerbi-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 28px;
    text-align: center;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(248, 250, 252, 0.86)),
        radial-gradient(circle at 50% 20%, rgba(230, 126, 34, 0.18), transparent 34%);
}

.vo-powerbi-placeholder span {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 6px 13px;
    border-radius: 999px;
    background: rgba(230, 126, 34, 0.12);
    color: #b45309;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.vo-powerbi-placeholder strong {
    color: #0b1730;
    font-size: clamp(1.35rem, 3vw, 2.1rem);
    line-height: 1.15;
}

.vo-powerbi-placeholder p {
    max-width: 460px;
    color: #5d6678;
    margin: 0 0 8px;
}

.vo-live-demo-foot {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    align-items: center;
    gap: 18px;
    max-width: 1160px;
    margin: 24px auto 0;
}

.vo-live-demo-foot div {
    min-height: 104px;
    padding: 20px;
    border-radius: 18px;
    background: #ffffff;
    border: 1px solid #e7edf5;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
}

.vo-live-demo-foot strong {
    display: block;
    color: #0b1730;
    margin-bottom: 7px;
    font-size: 1rem;
}

.vo-live-demo-foot span {
    display: block;
    color: #5d6678;
    line-height: 1.55;
    font-size: 0.94rem;
}

.vo-live-demo-foot .btn { white-space: nowrap; }

@media (max-width: 980px) {
    .vo-live-demo-section { padding: 68px 0; }
    .vo-live-demo-foot { grid-template-columns: 1fr; }
    .vo-live-demo-foot .btn { width: fit-content; }
}

@media (max-width: 640px) {
    .vo-powerbi-frame {
        padding: 10px;
        border-radius: 20px;
    }

    .vo-frame-top {
        align-items: flex-start;
        flex-direction: column;
    }

    .vo-frame-ratio {
        border-radius: 14px;
        aspect-ratio: 4 / 3;
    }
}

/* =======================================================
   2026-07-07 SADE BEYAZ ANA SAYFA DUZENI
   ======================================================= */
body {
    background: #ffffff;
}

.hero-slider {
    width: min(1320px, calc(100% - 48px));
    height: 560px;
    min-height: 560px;
    margin: 24px auto 0;
    border-radius: 28px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.92);
    box-shadow: 0 22px 60px rgba(15, 23, 42, 0.10);
}

.slide::before {
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.94) 0%, rgba(255, 255, 255, 0.82) 46%, rgba(255, 255, 255, 0.34) 100%),
        radial-gradient(circle at 82% 40%, rgba(230, 126, 34, 0.16), transparent 36%);
}

.hero-shell {
    width: min(1120px, calc(100% - 64px));
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.72fr);
    gap: 38px;
}

.slide .hero-content {
    color: var(--text-primary);
    padding: 22px 0;
    max-width: 650px;
}

.hero-badge {
    background: rgba(230, 126, 34, 0.10);
    border-color: rgba(230, 126, 34, 0.24);
    color: #b45309;
    box-shadow: none;
    backdrop-filter: none;
    margin-bottom: 18px;
}

.slide .hero-content h1 {
    font-size: clamp(2.05rem, 4vw, 3.35rem);
    margin-bottom: 16px;
}

.slide .hero-content .hero-title {
    font-size: clamp(1.95rem, 3.5vw, 3.1rem);
    margin-bottom: 16px;
}

.slide .hero-content h1 span,
.slide .hero-content .hero-title span {
    color: var(--primary-orange);
}

.slide .hero-content h1 span::after,
.slide .hero-content .hero-title span::after {
    height: 7px;
    background: rgba(230, 126, 34, 0.18);
}

.slide .hero-content p {
    color: var(--text-secondary);
    font-size: 1.03rem;
    max-width: 620px;
    margin-bottom: 24px;
}

.btn-secondary {
    color: var(--text-primary);
    background: rgba(15, 23, 42, 0.06);
    border-color: rgba(15, 23, 42, 0.10);
    backdrop-filter: none;
}

.btn-secondary:hover {
    background: rgba(15, 23, 42, 0.09);
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.12);
}

.hero-trust {
    margin-top: 18px;
}

.hero-trust span {
    color: #334155;
    background: rgba(255, 255, 255, 0.74);
    border-color: rgba(203, 213, 225, 0.92);
}

.hero-dashboard {
    border-radius: 22px;
    box-shadow: 0 18px 44px rgba(15, 23, 42, 0.12);
    transform: none;
    animation: none;
}

.hero-dashboard::before {
    opacity: 0.45;
}

.slider-arrow {
    background: rgba(255, 255, 255, 0.78);
    color: var(--text-primary);
    border-color: rgba(203, 213, 225, 0.88);
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.12);
    backdrop-filter: blur(8px);
}

.slider-arrow:hover {
    background: var(--primary-orange);
    color: #ffffff;
}

.dot {
    background: rgba(15, 23, 42, 0.24);
    border-color: rgba(255, 255, 255, 0.78);
}

.vo-live-demo-section {
    padding-top: 72px;
}

@media (max-width: 980px) {
    .hero-slider {
        width: min(100% - 32px, 760px);
        height: auto;
        min-height: 0;
        border-radius: 24px;
    }

    .hero-shell {
        width: min(100% - 42px, 620px);
        grid-template-columns: 1fr;
        padding: 48px 0 72px;
    }
}

@media (max-width: 640px) {
    .hero-slider {
        width: calc(100% - 24px);
        margin-top: 14px;
        border-radius: 18px;
    }

    .hero-shell {
        width: calc(100% - 28px);
        padding: 36px 0 62px;
    }

    .slide .hero-content h1,
    .slide .hero-content .hero-title {
        font-size: 1.72rem;
    }

    .vo-live-demo-section {
        padding-top: 54px;
    }
}

/* =======================================================
   NEDEN VERIODAK - ACIKLAYICI HAREKETLI GRAFIK
   ======================================================= */
.vo-why-story {
    padding: 82px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
}

.vo-why-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(440px, 1.08fr);
    align-items: start;
    gap: 46px;
}

.vo-why-copy {
    max-width: 620px;
}

.vo-why-copy h2 {
    margin: 14px 0 18px;
    color: #0b1730;
    font-size: clamp(1.78rem, 2.8vw, 2.35rem);
    line-height: 1.16;
    letter-spacing: 0;
}

.vo-why-copy p {
    color: #4b5870;
    font-size: 1rem;
    line-height: 1.66;
    margin: 0 0 14px;
}

.vo-why-points {
    display: grid;
    gap: 12px;
    margin-top: 24px;
}

.vo-why-points div {
    display: grid;
    grid-template-columns: 46px 1fr;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    border: 1px solid rgba(226, 232, 240, 0.95);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 14px 30px rgba(15, 23, 42, 0.06);
}

.vo-why-points strong {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: rgba(230, 126, 34, 0.12);
    color: #d05d00;
    font-size: 0.84rem;
}

.vo-why-points span {
    color: #16243c;
    font-weight: 750;
}

.vo-why-points span b {
    display: block;
    margin-bottom: 4px;
    color: #0b1730;
}

.vo-question-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
    margin: 18px 0 20px;
}

.vo-question-grid span {
    position: relative;
    display: flex;
    align-items: flex-start;
    min-height: 48px;
    padding: 11px 12px 11px 34px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(226, 232, 240, 0.95);
    color: #16243c;
    font-size: 0.92rem;
    font-weight: 760;
    line-height: 1.4;
    box-shadow: 0 12px 26px rgba(15, 23, 42, 0.05);
}

.vo-question-grid span::before {
    content: '';
    position: absolute;
    left: 13px;
    top: 18px;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #f97316;
    box-shadow: 0 0 0 5px rgba(249, 115, 22, 0.12);
}

.vo-why-text-block {
    margin-top: 24px;
}

.vo-why-text-block h3,
.vo-audit-callout h3 {
    color: #0b1730;
    font-size: 1.18rem;
    margin: 0 0 8px;
}

.vo-why-text-block p {
    margin-bottom: 0;
}

.vo-audit-callout {
    margin-top: 18px;
    padding: 18px;
    border-radius: 20px;
    background:
        linear-gradient(135deg, rgba(230, 126, 34, 0.10), rgba(37, 99, 235, 0.06)),
        #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.vo-audit-callout p {
    margin: 0 0 10px;
}

.vo-audit-callout p:last-child {
    margin-bottom: 0;
}

.vo-audit-callout strong {
    color: #0b1730;
}

.vo-why-visual {
    position: relative;
    min-height: 560px;
    padding: 32px;
    border-radius: 28px;
    overflow: hidden;
    background:
        radial-gradient(circle at 20% 15%, rgba(230, 126, 34, 0.18), transparent 30%),
        radial-gradient(circle at 88% 72%, rgba(37, 99, 235, 0.12), transparent 34%),
        #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.10);
    position: sticky;
    top: 92px;
}

.vo-flow-card {
    position: relative;
    z-index: 2;
    padding: 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.08);
}

.vo-flow-card span,
.vo-mini-head span {
    display: block;
    margin-bottom: 6px;
    color: #748199;
    font-size: 0.78rem;
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.vo-flow-card strong {
    display: block;
    color: #0b1730;
    line-height: 1.35;
}

.vo-flow-source {
    width: min(100%, 410px);
}

.vo-flow-center {
    width: min(100%, 430px);
    margin: 92px 0 0 auto;
}

.vo-flow-lines {
    position: absolute;
    inset: 92px 46px auto 46px;
    height: 160px;
    pointer-events: none;
}

.vo-flow-lines i {
    position: absolute;
    left: 12%;
    right: 18%;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, transparent, rgba(230, 126, 34, 0.72), transparent);
    animation: voFlowMove 2.8s ease-in-out infinite;
}

.vo-flow-lines i:nth-child(1) { top: 22px; --flow-rotate: 14deg; }
.vo-flow-lines i:nth-child(2) { top: 74px; --flow-rotate: 4deg; animation-delay: .35s; }
.vo-flow-lines i:nth-child(3) { top: 126px; --flow-rotate: -10deg; animation-delay: .7s; }

.vo-mini-dashboard {
    position: relative;
    z-index: 2;
    margin-top: 28px;
    padding: 18px;
    border-radius: 20px;
    background: #0b1730;
    color: #ffffff;
    box-shadow: 0 22px 44px rgba(15, 23, 42, 0.18);
}

.vo-mini-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 16px;
}

.vo-mini-head b {
    color: #16a34a;
    font-size: 0.84rem;
}

.vo-mini-bars {
    display: flex;
    align-items: end;
    gap: 12px;
    height: 140px;
    padding: 16px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.07);
}

.vo-mini-bars i {
    flex: 1;
    min-width: 28px;
    border-radius: 12px 12px 5px 5px;
    background: linear-gradient(180deg, #f59e0b, #2563eb);
    animation: voBarPulse 2.6s ease-in-out infinite;
}

.vo-mini-bars i:nth-child(2) { animation-delay: .18s; }
.vo-mini-bars i:nth-child(3) { animation-delay: .36s; }
.vo-mini-bars i:nth-child(4) { animation-delay: .54s; }
.vo-mini-bars i:nth-child(5) { animation-delay: .72s; }

.vo-mini-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 12px;
}

.vo-mini-metrics span {
    padding: 10px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.82);
    text-align: center;
    font-size: 0.82rem;
    font-weight: 800;
}

@keyframes voFlowMove {
    0%, 100% { opacity: .35; transform: translateX(-8px) scaleX(.82) rotate(var(--flow-rotate, 0deg)); }
    50% { opacity: 1; transform: translateX(18px) scaleX(1) rotate(var(--flow-rotate, 0deg)); }
}

@keyframes voBarPulse {
    0%, 100% { filter: saturate(1); transform: scaleY(.92); transform-origin: bottom; }
    50% { filter: saturate(1.2); transform: scaleY(1.06); transform-origin: bottom; }
}

@media (max-width: 980px) {
    .vo-why-layout {
        grid-template-columns: 1fr;
    }

    .vo-why-copy {
        max-width: none;
    }

    .vo-why-visual {
        order: -1;
        position: relative;
        top: auto;
    }
}

@media (max-width: 640px) {
    .vo-why-story {
        padding: 62px 0;
    }

    .vo-why-visual {
        min-height: 0;
        padding: 18px;
        border-radius: 22px;
    }

    .vo-flow-center {
        margin-top: 68px;
    }

    .vo-question-grid {
        grid-template-columns: 1fr;
    }

    .vo-mini-bars {
        height: 112px;
        gap: 8px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .vo-flow-lines i,
    .vo-mini-bars i {
        animation: none;
    }
}

/* =======================================================
   GELISMIS MINI DASHBOARD ANIMASYONU
   ======================================================= */
.vo-mini-dashboard-pro {
    padding: 22px;
    border-radius: 24px;
    background:
        radial-gradient(circle at 18% 8%, rgba(37, 99, 235, 0.34), transparent 30%),
        radial-gradient(circle at 88% 18%, rgba(249, 115, 22, 0.20), transparent 28%),
        linear-gradient(145deg, #07142b, #0b1f3f);
    border: 1px solid rgba(148, 163, 184, 0.24);
    box-shadow: 0 24px 56px rgba(2, 6, 23, 0.26);
}

.vo-mini-dashboard-pro .vo-mini-head {
    margin-bottom: 14px;
}

.vo-mini-dashboard-pro .vo-mini-head span {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    margin: 0;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.90);
    color: #64748b;
}

.vo-mini-dashboard-pro .vo-mini-head b {
    position: relative;
    padding-left: 16px;
    color: #22c55e;
}

.vo-mini-dashboard-pro .vo-mini-head b::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #22c55e;
    transform: translateY(-50%);
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.58);
    animation: voLivePulse 1.7s ease-out infinite;
}

.vo-pro-kpis {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 14px;
}

.vo-pro-kpis div {
    padding: 14px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.10);
    animation: voCardGlow 4.4s ease-in-out infinite;
}

.vo-pro-kpis div:nth-child(2) { animation-delay: .35s; }
.vo-pro-kpis div:nth-child(3) { animation-delay: .7s; }

.vo-pro-kpis small {
    display: block;
    color: rgba(226, 232, 240, 0.76);
    font-size: 0.68rem;
    font-weight: 800;
}

.vo-pro-kpis strong {
    display: block;
    margin: 5px 0;
    color: #ffffff;
    font-size: 1.12rem;
    line-height: 1;
}

.vo-pro-kpis em {
    color: #22c55e;
    font-size: 0.72rem;
    font-style: normal;
    font-weight: 850;
}

.vo-pro-main {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(140px, 0.8fr);
    gap: 12px;
}

.vo-pro-chart,
.vo-pro-list {
    position: relative;
    min-height: 196px;
    padding: 14px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.075);
    border: 1px solid rgba(255, 255, 255, 0.10);
    overflow: hidden;
}

.vo-chart-grid {
    position: absolute;
    inset: 18px 16px 34px;
    background:
        linear-gradient(rgba(255,255,255,.09) 1px, transparent 1px) 0 0 / 100% 34px,
        linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px) 0 0 / 62px 100%;
}

.vo-pro-chart svg {
    position: absolute;
    inset: 18px 14px 30px;
    width: calc(100% - 28px);
    height: calc(100% - 48px);
}

.vo-chart-line {
    fill: none;
    stroke-width: 7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.vo-chart-line.ghost {
    stroke: rgba(255, 255, 255, 0.18);
}

.vo-chart-line.live {
    stroke: #38bdf8;
    stroke-dasharray: 560;
    stroke-dashoffset: 560;
    filter: drop-shadow(0 0 10px rgba(56, 189, 248, 0.65));
    animation: voDrawLine 3.8s ease-in-out infinite;
}

.vo-pro-chart circle {
    fill: #f59e0b;
    filter: drop-shadow(0 0 10px rgba(245, 158, 11, 0.85));
    animation: voPointPulse 1.8s ease-in-out infinite;
}

.vo-chart-labels {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 10px;
    display: flex;
    justify-content: space-between;
    color: rgba(226, 232, 240, 0.70);
    font-size: 0.72rem;
    font-weight: 750;
}

.vo-pro-list h4 {
    margin: 0 0 10px;
    color: #ffffff;
    font-size: 0.88rem;
}

.vo-pro-list p {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin: 0;
    padding: 9px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    color: rgba(226, 232, 240, 0.78);
    font-size: 0.76rem;
}

.vo-pro-list p:last-child {
    border-bottom: 0;
}

.vo-pro-list b {
    color: #f59e0b;
    white-space: nowrap;
}

.vo-pro-list .ok {
    color: #22c55e;
}

.vo-pro-actions {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 12px;
}

.vo-pro-actions span {
    padding: 11px 8px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.09);
    color: rgba(255, 255, 255, 0.88);
    text-align: center;
    font-size: 0.76rem;
    font-weight: 850;
}

@keyframes voLivePulse {
    0% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.58); }
    70% { box-shadow: 0 0 0 10px rgba(34, 197, 94, 0); }
    100% { box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

@keyframes voCardGlow {
    0%, 100% { transform: translateY(0); background: rgba(255, 255, 255, 0.08); }
    50% { transform: translateY(-3px); background: rgba(255, 255, 255, 0.12); }
}

@keyframes voDrawLine {
    0% { stroke-dashoffset: 560; }
    45%, 72% { stroke-dashoffset: 0; }
    100% { stroke-dashoffset: -560; }
}

@keyframes voPointPulse {
    0%, 100% { transform: scale(1); transform-origin: center; opacity: .85; }
    50% { transform: scale(1.35); transform-origin: center; opacity: 1; }
}

@media (max-width: 640px) {
    .vo-pro-kpis,
    .vo-pro-main,
    .vo-pro-actions {
        grid-template-columns: 1fr;
    }

    .vo-pro-chart,
    .vo-pro-list {
        min-height: 150px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .vo-mini-dashboard-pro .vo-mini-head b::before,
    .vo-pro-kpis div,
    .vo-chart-line.live,
    .vo-pro-chart circle {
        animation: none;
    }
}

/* =======================================================
   VERIODAK DATA CINEMA - BEYAZ CANLI GRAFIK SAHNESI
   ======================================================= */
.vo-data-cinema {
    position: relative;
    z-index: 3;
    margin-top: 30px;
    padding: 20px;
    border-radius: 28px;
    overflow: hidden;
    background:
        radial-gradient(circle at 14% 18%, rgba(249, 115, 22, 0.16), transparent 28%),
        radial-gradient(circle at 84% 12%, rgba(37, 99, 235, 0.13), transparent 30%),
        linear-gradient(145deg, rgba(255,255,255,.98), rgba(248,250,252,.92));
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: 0 24px 58px rgba(15, 23, 42, 0.12);
}

.vo-data-cinema::before {
    content: '';
    position: absolute;
    inset: -45%;
    background: conic-gradient(from 180deg, transparent, rgba(249,115,22,.16), transparent, rgba(37,99,235,.14), transparent);
    animation: voCinemaSpin 12s linear infinite;
}

.vo-data-cinema > * {
    position: relative;
    z-index: 2;
}

.vo-cinema-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 18px;
}

.vo-cinema-top span {
    display: block;
    color: #f97316;
    font-size: .74rem;
    font-weight: 900;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.vo-cinema-top strong {
    display: block;
    color: #0b1730;
    font-size: 1.34rem;
    line-height: 1.1;
}

.vo-cinema-top b {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 12px;
    border-radius: 999px;
    background: #ecfdf5;
    color: #16a34a;
    font-size: .82rem;
}

.vo-cinema-top b i {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #22c55e;
    box-shadow: 0 0 0 0 rgba(34,197,94,.55);
    animation: voCinemaPulse 1.6s ease-out infinite;
}

.vo-cinema-stage {
    position: relative;
    min-height: 280px;
    border-radius: 24px;
    background:
        linear-gradient(135deg, rgba(255,255,255,.78), rgba(241,245,249,.78)),
        linear-gradient(rgba(15,23,42,.045) 1px, transparent 1px) 0 0 / 44px 44px,
        linear-gradient(90deg, rgba(15,23,42,.04) 1px, transparent 1px) 0 0 / 44px 44px;
    border: 1px solid rgba(226,232,240,.92);
    overflow: hidden;
}

.vo-cinema-orbit {
    position: absolute;
    inset: 28px;
    border-radius: 50%;
    border: 1px dashed rgba(37, 99, 235, .22);
    animation: voCinemaOrbit 10s linear infinite;
}

.vo-cinema-orbit span {
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #f97316;
    box-shadow: 0 0 22px rgba(249,115,22,.55);
}

.vo-cinema-orbit span:nth-child(1) { left: 12%; top: 18%; }
.vo-cinema-orbit span:nth-child(2) { right: 8%; top: 46%; background: #2563eb; box-shadow: 0 0 22px rgba(37,99,235,.55); }
.vo-cinema-orbit span:nth-child(3) { left: 44%; bottom: 4%; background: #22c55e; box-shadow: 0 0 22px rgba(34,197,94,.5); }

.vo-cinema-core {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 168px;
    height: 168px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    background: #ffffff;
    border: 1px solid rgba(226,232,240,.95);
    box-shadow: 0 20px 50px rgba(15,23,42,.13), inset 0 0 0 10px rgba(37,99,235,.045);
}

.vo-cinema-core small,
.vo-cinema-node small {
    color: #64748b;
    font-size: .72rem;
    font-weight: 850;
}

.vo-cinema-core strong {
    color: #0b1730;
    font-size: 3.25rem;
    line-height: .95;
}

.vo-cinema-core em {
    color: #16a34a;
    font-size: .76rem;
    font-style: normal;
    font-weight: 850;
}

.vo-cinema-node {
    position: absolute;
    min-width: 132px;
    padding: 13px;
    border-radius: 18px;
    background: rgba(255,255,255,.9);
    border: 1px solid rgba(226,232,240,.94);
    box-shadow: 0 16px 34px rgba(15,23,42,.10);
    animation: voCinemaFloat 4.6s ease-in-out infinite;
}

.vo-cinema-node strong {
    display: block;
    color: #0b1730;
    margin-top: 4px;
    font-size: 1rem;
}

.node-a { left: 18px; top: 28px; }
.node-b { right: 18px; top: 36px; animation-delay: .45s; }
.node-c { left: 28px; bottom: 26px; animation-delay: .9s; }

.vo-cinema-board {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 160px;
    gap: 14px;
    margin-top: 14px;
}

.vo-cinema-chart,
.vo-cinema-insights {
    min-height: 160px;
    border-radius: 20px;
    background: rgba(255,255,255,.88);
    border: 1px solid rgba(226,232,240,.95);
    box-shadow: 0 14px 30px rgba(15,23,42,.07);
}

.vo-cinema-chart {
    position: relative;
    overflow: hidden;
}

.vo-cinema-chart svg {
    position: absolute;
    inset: 12px;
    width: calc(100% - 24px);
    height: calc(100% - 24px);
}

.vo-cinema-area {
    fill: rgba(37, 99, 235, 0.10);
}

.vo-cinema-line {
    fill: none;
    stroke: url(#voCinemaLine);
    stroke-width: 8;
    stroke-linecap: round;
    stroke-dasharray: 720;
    stroke-dashoffset: 720;
    animation: voCinemaDraw 4s ease-in-out infinite;
}

.vo-cinema-dot {
    fill: #f97316;
    filter: drop-shadow(0 0 12px rgba(249,115,22,.68));
    animation: voCinemaPoint 1.5s ease-in-out infinite;
}

.vo-cinema-insights {
    display: grid;
    gap: 9px;
    padding: 12px;
}

.vo-cinema-insights p {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0;
    padding: 10px;
    border-radius: 14px;
    background: #f8fafc;
}

.vo-cinema-insights span {
    color: #64748b;
    font-size: .72rem;
    font-weight: 800;
}

.vo-cinema-insights b {
    color: #0b1730;
    font-size: .9rem;
}

.vo-cinema-ticker {
    display: flex;
    gap: 10px;
    margin-top: 14px;
    overflow: hidden;
}

.vo-cinema-ticker span {
    flex: 1;
    min-width: 82px;
    padding: 10px 12px;
    border-radius: 14px;
    background: #fff7ed;
    color: #c2410c;
    text-align: center;
    font-size: .78rem;
    font-weight: 900;
    animation: voTickerGlow 3.4s ease-in-out infinite;
}

.vo-cinema-ticker span:nth-child(2) { animation-delay: .25s; }
.vo-cinema-ticker span:nth-child(3) { animation-delay: .5s; }
.vo-cinema-ticker span:nth-child(4) { animation-delay: .75s; }
.vo-cinema-ticker span:nth-child(5) { animation-delay: 1s; }

@keyframes voCinemaSpin {
    to { transform: rotate(360deg); }
}

@keyframes voCinemaPulse {
    0% { box-shadow: 0 0 0 0 rgba(34,197,94,.55); }
    70% { box-shadow: 0 0 0 11px rgba(34,197,94,0); }
    100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); }
}

@keyframes voCinemaOrbit {
    to { transform: rotate(360deg); }
}

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

@keyframes voCinemaDraw {
    0% { stroke-dashoffset: 720; }
    48%, 74% { stroke-dashoffset: 0; }
    100% { stroke-dashoffset: -720; }
}

@keyframes voCinemaPoint {
    0%, 100% { transform: scale(1); transform-origin: center; }
    50% { transform: scale(1.35); transform-origin: center; }
}

@keyframes voTickerGlow {
    0%, 100% { background: #fff7ed; transform: translateY(0); }
    50% { background: #dbeafe; color: #1d4ed8; transform: translateY(-2px); }
}

@media (max-width: 640px) {
    .vo-data-cinema {
        padding: 14px;
        border-radius: 22px;
    }

    .vo-cinema-stage {
        min-height: 430px;
    }

    .vo-cinema-core {
        width: 142px;
        height: 142px;
    }

    .vo-cinema-core strong {
        font-size: 2.6rem;
    }

    .vo-cinema-node {
        min-width: 118px;
    }

    .vo-cinema-board {
        grid-template-columns: 1fr;
    }

    .vo-cinema-ticker {
        flex-wrap: wrap;
    }
}

@media (prefers-reduced-motion: reduce) {
    .vo-data-cinema::before,
    .vo-cinema-orbit,
    .vo-cinema-node,
    .vo-cinema-line,
    .vo-cinema-dot,
    .vo-cinema-ticker span,
    .vo-cinema-top b i {
        animation: none;
    }
}

/* =======================================================
   VERIODAK MOTION COCKPIT - GERCEK METRIK PANELI
   ======================================================= */
.vo-motion-cockpit {
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
}

.vo-motion-cockpit::before {
    display: none;
}

.vo-motion-cockpit .vo-cockpit-inner {
    position: relative;
    z-index: 2;
    min-height: 650px;
    padding: 24px;
    border-radius: 36px;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 0%, rgba(249, 115, 22, .16), transparent 30%),
        radial-gradient(circle at 92% 100%, rgba(56, 189, 248, .16), transparent 32%),
        linear-gradient(145deg, rgba(9, 10, 15, .98), rgba(17, 24, 39, .96));
    border: 1px solid rgba(255, 255, 255, .09);
    box-shadow: 0 28px 70px rgba(2, 6, 23, .38), inset 0 0 24px rgba(255, 255, 255, .03);
}

.vo-motion-cockpit .vo-cockpit-inner::before {
    content: '';
    position: absolute;
    inset: -45%;
    background: radial-gradient(circle, rgba(249, 115, 22, .06), rgba(56, 189, 248, .035) 42%, transparent 68%);
    animation: voCockpitSpin 20s linear infinite;
}

.vo-motion-cockpit .vo-cockpit-inner > * {
    position: relative;
    z-index: 2;
}

.vo-cockpit-sources {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px;
    border-radius: 20px;
    background: rgba(255, 255, 255, .055);
    border: 1px solid rgba(255, 255, 255, .07);
}

.vo-cockpit-sources span {
    color: #94a3b8;
    font-size: .68rem;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.vo-cockpit-sources div {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.vo-cockpit-sources b {
    padding: 5px 8px;
    border-radius: 9px;
    background: rgba(255, 255, 255, .06);
    color: #f8fafc;
    font-size: .72rem;
}

.vo-cockpit-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-top: 18px;
}

.vo-cockpit-head strong {
    color: #fff;
    font-size: 1.22rem;
    line-height: 1.1;
}

.vo-cockpit-head em {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 12px;
    border-radius: 999px;
    color: #39ff14;
    background: rgba(57, 255, 20, .08);
    border: 1px solid rgba(57, 255, 20, .22);
    font-size: .68rem;
    font-style: normal;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
    white-space: nowrap;
}

.vo-cockpit-head i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #39ff14;
    box-shadow: 0 0 0 0 rgba(57, 255, 20, .7);
    animation: voLivePulse 1.25s infinite;
}

.vo-cockpit-focus {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    width: 174px;
    height: 174px;
    margin: 28px auto 20px;
    padding: 24px;
    border-radius: 50%;
    background: radial-gradient(circle at 50% 45%, #182235 0%, #111827 62%, #0b1220 100%);
    border: 1px solid rgba(255, 255, 255, .07);
    box-shadow: 0 0 36px rgba(249, 115, 22, .18);
    text-align: center;
}

.vo-focus-ring {
    position: absolute;
    z-index: 0;
    inset: -5px;
    border-radius: 50%;
    background: conic-gradient(from -90deg, #f97316 0 74%, rgba(255, 255, 255, .06) 74% 100%);
    mask: radial-gradient(circle, transparent 68%, #000 69%);
    -webkit-mask: radial-gradient(circle, transparent 68%, #000 69%);
    filter: drop-shadow(0 0 10px rgba(249, 115, 22, .42));
    animation: voRingWake 2.4s ease-out infinite;
}

.vo-cockpit-focus small,
.vo-cockpit-focus strong,
.vo-cockpit-focus span {
    position: relative;
    z-index: 2;
}

.vo-cockpit-focus small {
    color: #94a3b8;
    max-width: 126px;
    font-size: .66rem;
    font-weight: 850;
    line-height: 1.15;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.vo-cockpit-focus strong {
    color: #fff;
    font-size: 2.05rem;
    line-height: .95;
}

.vo-cockpit-focus span {
    max-width: 132px;
    padding: 4px 8px;
    border-radius: 8px;
    color: #22c55e;
    background: rgba(34, 197, 94, .08);
    font-size: .58rem;
    font-weight: 900;
    line-height: 1.25;
}

.vo-cockpit-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.vo-cockpit-grid div {
    position: relative;
    overflow: hidden;
    min-height: 86px;
    padding: 15px;
    border-radius: 18px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .07);
    transition: .25s ease;
    animation: voCardGlow 4.4s ease-in-out infinite;
}

.vo-cockpit-grid div:nth-child(2) { animation-delay: .25s; }
.vo-cockpit-grid div:nth-child(3) { animation-delay: .5s; }
.vo-cockpit-grid div:nth-child(4) { animation-delay: .75s; }

.vo-cockpit-grid div.active {
    border-color: rgba(249, 115, 22, .55);
    box-shadow: 0 0 20px rgba(249, 115, 22, .18);
}

.vo-cockpit-grid small {
    display: block;
    margin-bottom: 7px;
    color: #94a3b8;
    font-size: .67rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.vo-cockpit-grid strong {
    color: #fff;
    font-size: 1rem;
    line-height: 1.1;
}

.vo-cockpit-chart {
    position: relative;
    height: 142px;
    margin-top: 15px;
    padding: 16px;
    border-radius: 22px;
    background: #0d111c;
    border: 1px solid rgba(255, 255, 255, .07);
    overflow: hidden;
}

.vo-cockpit-chart > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.vo-cockpit-chart span {
    color: #94a3b8;
    font-size: .68rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.vo-cockpit-chart b {
    color: #39ff14;
    font-size: .72rem;
}

.vo-cockpit-chart svg {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 12px;
    width: calc(100% - 36px);
    height: 96px;
}

.vo-cockpit-area {
    fill: rgba(56, 189, 248, .10);
}

.vo-cockpit-line {
    fill: none;
    stroke: url(#voCockpitLine);
    stroke-width: 6;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 560;
    stroke-dashoffset: 560;
    filter: drop-shadow(0 0 8px rgba(56, 189, 248, .55));
    animation: voDrawLine 3.9s ease-in-out infinite;
}

.vo-cockpit-chart circle {
    fill: #f97316;
    filter: drop-shadow(0 0 9px rgba(249, 115, 22, .75));
    animation: voPointPulse 1.6s ease-in-out infinite;
}

.vo-cockpit-meta {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-top: 14px;
    padding: 12px;
    border-radius: 18px;
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .06);
}

.vo-cockpit-meta div {
    text-align: center;
}

.vo-cockpit-meta span {
    display: block;
    color: #94a3b8;
    font-size: .62rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.vo-cockpit-meta b {
    display: block;
    margin-top: 4px;
    color: #fff;
    font-size: .78rem;
}

.vo-cockpit-meta .ok {
    color: #39ff14;
}

.vo-cockpit-note {
    margin: 14px 0 0;
    color: #94a3b8;
    font-size: .75rem;
    line-height: 1.55;
    text-align: center;
}

@keyframes voCockpitSpin {
    to { transform: rotate(360deg); }
}

@keyframes voRingWake {
    0%, 100% { opacity: .88; transform: rotate(0deg); }
    50% { opacity: 1; transform: rotate(8deg); }
}

@media (max-width: 640px) {
    .vo-motion-cockpit .vo-cockpit-inner {
        min-height: 0;
        padding: 18px;
        border-radius: 26px;
    }

    .vo-cockpit-sources,
    .vo-cockpit-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .vo-cockpit-grid,
    .vo-cockpit-meta {
        grid-template-columns: 1fr;
    }

    .vo-cockpit-focus {
        width: 138px;
        height: 138px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .vo-motion-cockpit .vo-cockpit-inner::before,
    .vo-focus-ring,
    .vo-cockpit-head i,
    .vo-cockpit-grid div,
    .vo-cockpit-line,
    .vo-cockpit-chart circle {
        animation: none;
    }
}

/* =======================================================
   HERO 1 - SADE DASHBOARD GORSELI
   ======================================================= */
.hero-dashboard-image {
    position: relative;
    margin: 0;
    padding: 14px;
    border-radius: 28px;
    background:
        radial-gradient(circle at 18% 12%, rgba(249, 115, 22, 0.14), transparent 30%),
        radial-gradient(circle at 86% 24%, rgba(37, 99, 235, 0.12), transparent 34%),
        rgba(255, 255, 255, 0.90);
    border: 1px solid rgba(226, 232, 240, 0.95);
    box-shadow: 0 26px 62px rgba(15, 23, 42, 0.14);
    transform: perspective(1000px) rotateY(-3deg) rotateX(1deg);
}

.hero-dashboard-image img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 20px;
    border: 1px solid rgba(226, 232, 240, 0.9);
    box-shadow: 0 18px 38px rgba(15, 23, 42, 0.10);
}

.hero-dashboard-image::after {
    content: '';
    position: absolute;
    inset: 14px;
    border-radius: 20px;
    pointer-events: none;
    background: linear-gradient(135deg, rgba(255,255,255,.34), transparent 34%, rgba(37,99,235,.08));
}

@media (max-width: 980px) {
    .hero-dashboard-image {
        max-width: 560px;
        width: 100%;
        margin: 0 auto;
        transform: none;
    }
}

@media (max-width: 640px) {
    .hero-dashboard-image {
        padding: 10px;
        border-radius: 22px;
    }

    .hero-dashboard-image img,
    .hero-dashboard-image::after {
        border-radius: 16px;
    }
}


