/* ── HERO ─────────────────────────────────────────────────── */
.st-hero {
    position: relative;
    min-height: 88vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #060c18;
}

.st-hero--sub { min-height: 72vh; }

.st-hero-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
}

.st-hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(var(--accent-color-rgb), 0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(var(--accent-color-rgb), 0.07) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse 90% 90% at 50% 50%, black 30%, transparent 100%);
}

.st-hero-gradient {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 55% 65% at 72% 45%, rgba(var(--accent-color-rgb), 0.22) 0%, transparent 65%),
        radial-gradient(ellipse 35% 40% at 15% 75%, rgba(var(--accent-color-rgb), 0.1) 0%, transparent 60%),
        radial-gradient(ellipse 40% 30% at 85% 85%, rgba(var(--accent-color-rgb), 0.08) 0%, transparent 55%);
    pointer-events: none;
}

.st-hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    opacity: 0.6;
}

.st-hero-inner {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 20px 0;
}

.st-hero--sub .st-hero-inner { padding: 20px 0; }

/* breadcrumb */
.st-hero-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.45);
    font-size: 0.8rem;
    margin-bottom: 16px;
}
.st-hero-breadcrumb a {
    color: rgba(255,255,255,0.45);
    text-decoration: none;
    transition: color 0.25s;
}
.st-hero-breadcrumb a:hover { color: var(--accent-color); }
.st-hero-breadcrumb i { font-size: 0.65rem; }
.st-hero-breadcrumb span { color: var(--accent-color); }

.st-hero-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-color);
    font-size: 0.76rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 24px;
    padding: 6px 16px;
    border: 1px solid rgba(var(--accent-color-rgb), 0.4);
    border-radius: 50px;
    background: rgba(var(--accent-color-rgb), 0.06);
}

.st-hero-title {
    font-size: clamp(2.8rem, 5vw, 4.4rem);
    line-height: 1.07;
    color: #ffffff;
    margin-bottom: 24px;
}

.st-hero-title--thin {
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-weight: 300;
    opacity: 0.65;
    display: block;
    margin-top: 6px;
}

.st-hero-desc {
    font-size: 1.05rem;
    line-height: 1.85;
    color: rgba(255,255,255,0.58);
    max-width: 580px;
    margin-bottom: 40px;
}

.st-hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.st-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.78);
    padding: 9px 18px;
    border-radius: 8px;
    font-size: 0.85rem;
    backdrop-filter: blur(8px);
    transition: background 0.3s, border-color 0.3s, transform 0.3s;
}

.st-hero-badge:hover {
    background: rgba(var(--accent-color-rgb), 0.14);
    border-color: rgba(var(--accent-color-rgb), 0.45);
    transform: translateY(-2px);
}

.st-hero-badge i { color: var(--accent-color); }

.st-hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.22);
    font-size: 1.2rem;
    z-index: 2;
    animation: scrollBounce 2s ease-in-out infinite;
}

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

/* ── SECTION ORTAK ───────────────────────────────────────── */
.st-section-title { font-size: 2rem; margin-bottom: 12px; }
.st-section-desc  { font-size: 1rem; opacity: 0.65; max-width: 540px; margin: 0 auto; line-height: 1.75; }
.st-section-header { margin-bottom: 8px; }

/* ── SPECS ─────────────────────────────────────────────────── */
.st-spec-card {
    display: flex;
    gap: 22px;
    padding: 30px;
    border: 1px solid color-mix(in srgb, var(--default-color) 12%, transparent);
    border-radius: 14px;
    height: 100%;
    background: var(--surface-color, #fff);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.st-spec-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.st-spec-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.09);
    border-color: color-mix(in srgb, var(--accent-color) 25%, transparent);
}

.st-spec-card:hover::before { opacity: 1; }

.st-spec-icon-wrap {
    flex-shrink: 0;
    position: relative;
    width: 56px; height: 56px;
}

.st-spec-icon {
    width: 56px; height: 56px;
    background: color-mix(in srgb, var(--accent-color) 12%, transparent);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--accent-color);
    position: relative;
    z-index: 1;
}

.st-spec-icon-ring {
    position: absolute;
    inset: -4px;
    border: 1px dashed color-mix(in srgb, var(--accent-color) 30%, transparent);
    border-radius: 18px;
    animation: ringRotate 8s linear infinite;
}

@keyframes ringRotate {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

.st-spec-body h3 { font-size: 1.08rem; margin-bottom: 10px; }
.st-spec-body p  { font-size: 0.92rem; line-height: 1.75; margin-bottom: 14px; opacity: 0.75; }

.st-spec-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.st-spec-tags span {
    font-size: 0.76rem;
    padding: 3px 10px;
    border-radius: 50px;
    background: color-mix(in srgb, var(--accent-color) 10%, transparent);
    color: var(--accent-color);
    border: 1px solid color-mix(in srgb, var(--accent-color) 22%, transparent);
}

.st-specs-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
    margin-top: 40px;
    padding: 28px 32px;
    background: color-mix(in srgb, var(--accent-color) 5%, transparent);
    border: 1px solid color-mix(in srgb, var(--accent-color) 15%, transparent);
    border-radius: 14px;
}

.st-sstat { display: flex; flex-direction: column; align-items: center; padding: 0 32px; }
.st-sstat-num   { font-size: 1.7rem; color: var(--accent-color); line-height: 1; font-weight: 700; }
.st-sstat-label { font-size: 0.78rem; opacity: 0.6; margin-top: 5px; }
.st-sstat-div   { width: 1px; height: 36px; background: color-mix(in srgb, var(--default-color) 15%, transparent); }

/* ── MODULE CARDS ──────────────────────────────────────────── */
.st-modules-section { background: color-mix(in srgb, var(--default-color) 3%, transparent); }

.st-module-card {
    display: flex;
    flex-direction: column;
    padding: 32px;
    border-radius: 18px;
    border: 1px solid color-mix(in srgb, var(--default-color) 12%, transparent);
    background: var(--surface-color, #fff);
    height: 100%;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: transform 0.35s, box-shadow 0.35s, border-color 0.35s;
    cursor: pointer;
}

.st-module-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 60px rgba(0,0,0,0.12);
    color: inherit;
    text-decoration: none;
}

.st-module-card--nolink { cursor: default; }
.st-module-card--nolink:hover { transform: translateY(-4px); }

/* glow overlay */
.st-module-glow {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
    border-radius: 18px;
}
.st-module-card:hover .st-module-glow { opacity: 1; }

.st-module-card--dsm .st-module-glow {
    background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(var(--accent-color-rgb), 0.1) 0%, transparent 70%);
}
.st-module-card--adas .st-module-glow {
    background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(34,197,94, 0.08) 0%, transparent 70%);
}
.st-module-card--platform .st-module-glow {
    background: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(99,102,241, 0.08) 0%, transparent 70%);
}

/* top border accent */
.st-module-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    border-radius: 18px 18px 0 0;
    opacity: 0;
    transition: opacity 0.35s;
}
.st-module-card:hover::before { opacity: 1; }
.st-module-card--dsm::before      { background: linear-gradient(90deg, var(--accent-color), transparent); }
.st-module-card--adas::before     { background: linear-gradient(90deg, #22c55e, transparent); }
.st-module-card--platform::before { background: linear-gradient(90deg, #6366f1, transparent); }

/* icon orbit */
.st-module-icon-wrap {
    position: relative;
    width: 72px; height: 72px;
    margin-bottom: 22px;
}

.st-module-orbit {
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 1px dashed color-mix(in srgb, var(--accent-color) 25%, transparent);
    animation: ringRotate 10s linear infinite;
}

.st-module-card--adas     .st-module-orbit { border-color: rgba(34,197,94, 0.25); }
.st-module-card--platform .st-module-orbit { border-color: rgba(99,102,241, 0.25); }

.st-module-orbit-dot {
    position: absolute;
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--accent-color);
    top: 50%; left: -3px;
    margin-top: -3px;
    transform-origin: calc(100% + 38px) 50%;
    transform: rotate(calc(var(--i) * 120deg)) translateX(0);
}
.st-module-card--adas     .st-module-orbit-dot { background: #22c55e; }
.st-module-card--platform .st-module-orbit-dot { background: #6366f1; }

.st-module-icon {
    width: 72px; height: 72px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    position: relative;
    z-index: 1;
}

.st-module-card--dsm      .st-module-icon { background: color-mix(in srgb, var(--accent-color) 14%, transparent); color: var(--accent-color); }
.st-module-card--adas     .st-module-icon { background: rgba(34,197,94, 0.12); color: #22c55e; }
.st-module-card--platform .st-module-icon { background: rgba(99,102,241, 0.12); color: #6366f1; }

/* body */
.st-module-tag {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    opacity: 0.45;
    margin-bottom: 8px;
}

.st-module-card h3 { font-size: 1.45rem; margin-bottom: 4px; }

.st-module-sub {
    font-size: 0.78rem;
    opacity: 0.45;
    margin-bottom: 14px;
}

.st-module-desc {
    font-size: 0.9rem;
    line-height: 1.75;
    opacity: 0.72;
    margin-bottom: 18px;
}

.st-module-list {
    list-style: none;
    padding: 0; margin: 0 0 24px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.st-module-list li {
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 4px;
    opacity: 0.72;
}

.st-module-list i { color: var(--accent-color); font-size: 1.1rem; }
.st-module-card--adas     .st-module-list i { color: #22c55e; }
.st-module-card--platform .st-module-list i { color: #6366f1; }

/* cta row */
.st-module-cta {
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--accent-color);
    padding-top: 18px;
    border-top: 1px solid color-mix(in srgb, var(--default-color) 10%, transparent);
    transition: gap 0.25s;
}
.st-module-card:hover .st-module-cta { gap: 12px; }
.st-module-card--adas     .st-module-cta { color: #22c55e; }
.st-module-card--platform .st-module-cta { color: #6366f1; }
.st-module-cta--muted { color: color-mix(in srgb, var(--default-color) 45%, transparent); }

/* ── PLATFORM SECTION ─────────────────────────────────────── */
.st-platform-section { background: #070d1a; color: #fff; overflow: hidden; }

.st-ops-title { font-size: 2rem; color: #fff; margin-bottom: 16px; margin-top: 12px; }
.st-ops-desc  { color: rgba(255,255,255,0.58); line-height: 1.8; margin-bottom: 28px; }

.st-ops-stats { display: flex; flex-direction: column; gap: 14px; }

.st-ops-stat {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 13px 18px;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px;
    background: rgba(255,255,255,0.04);
    transition: background 0.3s, border-color 0.3s;
}
.st-ops-stat:hover {
    background: rgba(var(--accent-color-rgb), 0.1);
    border-color: rgba(var(--accent-color-rgb), 0.3);
}
.st-ops-stat i     { font-size: 1.25rem; color: var(--accent-color); flex-shrink: 0; }
.st-ops-stat span  { display: block; font-size: 0.9rem; color: #fff; }
.st-ops-stat small { font-size: 0.75rem; color: rgba(255,255,255,0.38); }

/* platform stats */
.st-platform-stats { display: flex; gap: 28px; margin-top: 8px; flex-wrap: wrap; }
.st-pstat          { display: flex; flex-direction: column; }
.st-pstat-num      { font-size: 1.9rem; color: var(--accent-color); line-height: 1; font-weight: 700; }
.st-pstat-label    { font-size: 0.76rem; opacity: 0.45; margin-top: 4px; }

/* platform screen */
.st-platform-visual { padding: 8px 0; }

.st-platform-screen {
    background: #0b1525;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 24px 60px rgba(0,0,0,0.3);
}

.st-screen-bar {
    background: #14243d;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.st-screen-dots { display: flex; gap: 5px; }
.st-screen-dots span { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.18); }
.st-screen-title { font-size: 0.76rem; color: rgba(255,255,255,0.45); letter-spacing: 0.05em; flex: 1; }

.st-screen-status {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.7rem;
    color: #22c55e;
}

.st-screen-dot-live {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: #22c55e;
    animation: camBlink 1.5s ease-in-out infinite;
}

.st-screen-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 220px;
    gap: 2px;
}

.st-screen-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr;
    gap: 2px;
    padding: 2px;
    background: #0b1525;
}

.st-screen-cam {
    background: #162236;
    border-radius: 3px;
    position: relative;
    overflow: hidden;
}

.st-cam-label {
    position: absolute;
    bottom: 4px; left: 5px;
    font-size: 0.55rem;
    color: rgba(255,255,255,0.35);
    font-family: monospace;
}

.st-screen-cam.active::after {
    content: '';
    position: absolute;
    top: 5px; right: 5px;
    width: 6px; height: 6px;
    border-radius: 50%;
    background: #22c55e;
    animation: camBlink 2s ease-in-out infinite;
}

@keyframes camBlink {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.2; }
}

.st-screen-map {
    background: #0f1e35;
    position: relative;
    overflow: hidden;
}

.st-map-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(var(--accent-color-rgb), 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(var(--accent-color-rgb), 0.1) 1px, transparent 1px);
    background-size: 20px 20px;
}

.st-screen-map i {
    position: absolute;
    color: var(--accent-color);
    font-size: 0.85rem;
    animation: mapPing 3s ease-in-out infinite;
    filter: drop-shadow(0 0 3px var(--accent-color));
}

.st-screen-map i:nth-child(2) { animation-delay: 0.8s; }
.st-screen-map i:nth-child(3) { animation-delay: 1.6s; }
.st-screen-map i:nth-child(4) { animation-delay: 2.4s; }
.st-screen-map i:nth-child(5) { animation-delay: 1.2s; }

@keyframes mapPing {
    0%, 100% { transform: scale(1);   opacity: 1; }
    50%       { transform: scale(1.4); opacity: 0.5; }
}

.st-screen-footer {
    background: #14243d;
    padding: 7px 16px;
    display: flex;
    align-items: center;
    gap: 20px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.st-screen-footer span {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.45);
    display: flex;
    align-items: center;
    gap: 5px;
}

.st-screen-footer .bi-circle-fill { font-size: 0.5rem; }
.st-screen-footer .bi-exclamation-triangle-fill { color: #f59e0b; }

/* ── SHARED: BADGE, BENEFIT, FEATURE ─────────────────────── */
.st-system-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: color-mix(in srgb, var(--accent-color) 10%, transparent);
    color: var(--accent-color);
    padding: 7px 18px;
    border-radius: 50px;
    font-size: 0.82rem;
    margin-bottom: 18px;
    border: 1px solid color-mix(in srgb, var(--accent-color) 22%, transparent);
}

.st-system-badge--light {
    background: rgba(255,255,255,0.1);
    color: #fff;
    border-color: rgba(255,255,255,0.2);
}

.st-tab-title { font-size: 1.75rem; margin-bottom: 16px; }

.st-benefit-list { display: flex; flex-direction: column; gap: 14px; margin-top: 24px; }

.st-benefit {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 12px 14px;
    border-radius: 10px;
    background: color-mix(in srgb, var(--default-color) 3%, transparent);
    transition: background 0.25s;
}
.st-benefit:hover { background: color-mix(in srgb, var(--accent-color) 6%, transparent); }
.st-benefit > i   { color: var(--accent-color); font-size: 1.05rem; margin-top: 2px; flex-shrink: 0; }
.st-benefit strong { display: block; font-size: 0.93rem; margin-bottom: 2px; }
.st-benefit span   { font-size: 0.86rem; opacity: 0.68; line-height: 1.6; }

/* ── WHY SECTION ─────────────────────────────────────────── */
.st-why-section { overflow: visible; }

/* ── FEATURES SECTION ───────────────────────────────────── */
.st-features-section { }

/* ── CROSS CTA ────────────────────────────────────────────── */
.st-cross-cta {
    padding: 40px 0;
    background: color-mix(in srgb, var(--accent-color) 5%, transparent);
    border-top: 1px solid color-mix(in srgb, var(--accent-color) 15%, transparent);
    border-bottom: 1px solid color-mix(in srgb, var(--accent-color) 15%, transparent);
}

.st-cross-cta-inner h3 { font-size: 1.5rem; margin-bottom: 8px; }
.st-cross-cta-inner p  { opacity: 0.65; margin: 0; }

/* ── CTA SECTION ──────────────────────────────────────────── */
.st-cta-section {
    background-color: var(--accent-color);
    padding: 20px 0;
}

.st-cta-title { font-size: 1.5rem; color: #fff; }
.st-cta-text  { color: #fff; }

.st-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 30px;
    background-color: #fff;
    color: var(--accent-color);
    border-radius: 8px;
    font-size: 1rem;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    font-weight: 600;
}

.st-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    color: var(--accent-color);
}

.st-cta-btn--outline {
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.st-cta-btn--outline:hover {
    background: var(--accent-color);
    color: #fff;
}

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 991px) {
    .st-hero          { min-height: 65vh; }
    .st-hero--sub     { min-height: 55vh; }
    .st-platform-stats { gap: 16px; }
    .st-specs-stats   { gap: 8px; padding: 20px 16px; }
    .st-sstat         { padding: 0 16px; }
    .st-sstat-div     { display: none; }
    .st-screen-body   { grid-template-columns: 1fr; height: auto; }
    .st-screen-grid   { height: 180px; }
    .st-screen-map    { height: 120px; }
}

@media (max-width: 767px) {
    .st-hero-title  { font-size: 2.4rem; }
    .st-spec-card   { flex-direction: column; }
    .st-module-card { padding: 24px; }
}



/* ══════════════════════════════════════════════════════════
   İNFOGRAFİK  —  Akıllı Araç Kamera Takip Sistemi
   ══════════════════════════════════════════════════════════ */

.st-infographic-section { overflow: hidden; }

.st-ig-outer {
    position: relative;
    max-width: 800px;
    margin: 40px auto 0;
}

.st-ig-svg-container {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
}

/* ── SVG temel boyut ─────────────────────────────────────── */
.ig-main-svg {
    width: 100%;
    max-width: 680px;
    height: auto;
    display: block;
    overflow: visible;
    margin-right: 60px;
}

/* ── BAŞLANGIÇ: tüm hareketli parçalar gizli ─────────────── */
#ig-bg { opacity: 1; }

#ig-camera {
    transform-origin: 366px 283px;
    transform: scale(0.4);
    opacity: 0;
    transition: transform 0.75s cubic-bezier(0.34, 1.4, 0.64, 1),
                opacity 0.5s ease;
}

.ig-arc {
    opacity: 0;
    transform-origin: 366px 283px;
    transform: scale(0.6);
    transition: opacity 0.45s ease, transform 0.45s cubic-bezier(0.34,1.3,0.64,1);
}

.ig-from-left {
    transform: translateX(-90px);
    opacity: 0;
    transition: transform 0.65s cubic-bezier(0.34, 1.2, 0.64, 1),
                opacity 0.5s ease;
}

.ig-from-right {
    transform: translateX(90px);
    opacity: 0;
    transition: transform 0.65s cubic-bezier(0.34, 1.2, 0.64, 1),
                opacity 0.5s ease;
}

#ig-center-text {
    opacity: 0;
    transition: opacity 0.5s ease;
}

/* ── AKTİF: görünür ──────────────────────────────────────── */
#ig-camera.ig-visible {
    transform: scale(1);
    opacity: 1;
}

.ig-arc.ig-visible {
    opacity: 1;
    transform: scale(1);
}

.ig-from-left.ig-visible,
.ig-from-right.ig-visible {
    transform: translateX(0);
    opacity: 1;
}

#ig-center-text.ig-visible { opacity: 1; }

/* ── Hover parlaması ─────────────────────────────────────── */
.ig-icon-group { cursor: pointer; }

.ig-icon-group:hover {
    filter: brightness(1.18) drop-shadow(0 0 5px rgba(255,255,255,0.25));
    transition: filter 0.2s ease,
                transform 0.65s cubic-bezier(0.34,1.2,0.64,1),
                opacity 0.5s ease;
}

/* ── Tooltip ─────────────────────────────────────────────── */
.st-ig-tooltip {
    position: absolute;
    z-index: 50;
    pointer-events: none;
    opacity: 0;
    transform: translateY(8px) scale(0.96);
    transition: opacity 0.2s ease,
                transform 0.2s cubic-bezier(0.34,1.4,0.64,1);
    width: 220px;
}

.st-ig-tooltip.ig-tt-show {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.st-ig-tooltip-inner {
    background: var(--surface-color, #fff);
    border-radius: 10px;
    padding: 14px 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.13), 0 2px 8px rgba(0,0,0,0.06);
    border-top: 3px solid var(--ig-tt-color, var(--accent-color));
}

.st-ig-tt-tag {
    display: block;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ig-tt-color, var(--accent-color));
    margin-bottom: 5px;
}

.st-ig-tt-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--heading-color, #1a1a2e);
    margin: 0 0 6px;
    line-height: 1.25;
}

.st-ig-tt-desc {
    font-size: 0.77rem;
    line-height: 1.6;
    color: var(--default-color, #6c757d);
    margin: 0;
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 767px) {
    .st-ig-tooltip  { display: none !important; }
    .ig-from-left   { transform: translateX(-40px); }
    .ig-from-right  { transform: translateX(40px); }
    .st-ig-outer    { margin-top: 24px; }
}

/* ══════════════════════════════════════════════════════════
   İNFOGRAFİK  —  Akıllı Araç Kamera Takip Sistemi
   ══════════════════════════════════════════════════════════ */

.st-infographic-section { overflow: hidden; }

.st-ig-outer {
    position: relative;
    max-width: 800px;
    margin: 40px auto 0;
}

.st-ig-svg-container {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
}

.ig-main-svg {
    width: 100%;
    max-width: 680px;
    height: auto;
    display: block;
    overflow: visible;
    margin-right: 60px;
}

/* ══ KAMERA PARÇALARI — başlangıç (gizli) ══════════════════ */

/* Üst silindir — yukarıdan iner */
#ig-cam-top {
    transform-origin: 366px 180px;
    transform: translateY(-55px);
    opacity: 0;
    transition: transform 0.7s cubic-bezier(0.34, 1.25, 0.64, 1),
                opacity   0.55s ease;
}

/* Sol gövde — soldan gelir */
#ig-cam-left {
    transform-origin: 330px 283px;
    transform: translateX(-55px);
    opacity: 0;
    transition: transform 0.7s cubic-bezier(0.34, 1.25, 0.64, 1),
                opacity   0.55s ease;
}

/* Sağ gövde — sağdan gelir */
#ig-cam-right {
    transform-origin: 400px 283px;
    transform: translateX(55px);
    opacity: 0;
    transition: transform 0.7s cubic-bezier(0.34, 1.25, 0.64, 1),
                opacity   0.55s ease;
}

/* Dome + lens — küçükten büyür */
#ig-cam-dome {
    transform-origin: 366px 283px;
    transform: scale(0.35);
    opacity: 0;
    transition: transform 0.75s cubic-bezier(0.34, 1.4, 0.64, 1),
                opacity   0.5s ease;
}

/* ══ KAMERA HOVER ═══════════════════════════════════════════ */

/* Kamera parçalarını tek pointer hedefine topla */
#ig-cam-top, #ig-cam-left, #ig-cam-right, #ig-cam-dome {
    cursor: pointer;
}

/* Hover — yumuşak parıltı + hafif büyüme */
.ig-camera-hover #ig-cam-dome {
    filter: drop-shadow(0 0 12px rgba(255,255,255,0.35))
            drop-shadow(0 0 24px rgba(100,200,255,0.2));
    transform: scale(1.04);
    transition: transform 0.4s cubic-bezier(0.34,1.3,0.64,1),
                filter    0.35s ease,
                opacity   0.5s ease;
}

.ig-camera-hover #ig-cam-top {
    filter: drop-shadow(0 0 8px rgba(255,255,255,0.2));
    transform: translateY(-4px);
    transition: transform 0.4s cubic-bezier(0.34,1.3,0.64,1),
                filter    0.35s ease,
                opacity   0.5s ease;
}

.ig-camera-hover #ig-cam-left {
    filter: drop-shadow(0 0 8px rgba(255,255,255,0.2));
    transform: translateX(-3px);
    transition: transform 0.4s cubic-bezier(0.34,1.3,0.64,1),
                filter    0.35s ease,
                opacity   0.5s ease;
}

.ig-camera-hover #ig-cam-right {
    filter: drop-shadow(0 0 8px rgba(255,255,255,0.2));
    transform: translateX(3px);
    transition: transform 0.4s cubic-bezier(0.34,1.3,0.64,1),
                filter    0.35s ease,
                opacity   0.5s ease;
}

/* ══ DAIRE HALKALARI — başlangıç ════════════════════════════ */
.ig-arc {
    transform-origin: 366px 283px;
    transform: scale(0.65);
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.34,1.3,0.64,1),
                opacity   0.45s ease;
}

/* ══ İKON GRUPLARI — başlangıç ═════════════════════════════ */
.ig-from-left {
    transform: translateX(-80px);
    opacity: 0;
    transition: transform 0.7s cubic-bezier(0.34, 1.2, 0.64, 1),
                opacity   0.55s ease;
}

.ig-from-right {
    transform: translateX(80px);
    opacity: 0;
    transition: transform 0.7s cubic-bezier(0.34, 1.2, 0.64, 1),
                opacity   0.55s ease;
}

/* ══ AKTİF: görünür ═════════════════════════════════════════ */
#ig-cam-top.ig-visible    { transform: translateY(0); opacity: 1; }
#ig-cam-left.ig-visible   { transform: translateX(0); opacity: 1; }
#ig-cam-right.ig-visible  { transform: translateX(0); opacity: 1; }
#ig-cam-dome.ig-visible   { transform: scale(1);      opacity: 1; }

.ig-arc.ig-visible {
    transform: scale(1);
    opacity: 1;
}

.ig-from-left.ig-visible,
.ig-from-right.ig-visible {
    transform: translateX(0);
    opacity: 1;
}

/* ══ İkon hover parlaması ════════════════════════════════════ */
.ig-icon-group {
    cursor: pointer;
}

.ig-icon-group:hover {
    filter: brightness(1.18) drop-shadow(0 0 5px rgba(255,255,255,0.22));
    transition: filter 0.2s ease,
                transform 0.7s cubic-bezier(0.34,1.2,0.64,1),
                opacity   0.55s ease;
}

/* ══ Tooltip ════════════════════════════════════════════════ */
.st-ig-tooltip {
    position: absolute;
    z-index: 50;
    pointer-events: none;
    opacity: 0;
    transform: translateY(8px) scale(0.96);
    transition: opacity 0.2s ease,
                transform 0.2s cubic-bezier(0.34,1.4,0.64,1);
    width: 224px;
}

.st-ig-tooltip.ig-tt-show {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.st-ig-tooltip-inner {
    background: var(--surface-color, #fff);
    border-radius: 10px;
    padding: 14px 16px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.13), 0 2px 8px rgba(0,0,0,0.05);
    border-top: 3px solid var(--ig-tt-color, var(--accent-color));
}

.st-ig-tt-tag {
    display: block;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--ig-tt-color, var(--accent-color));
    margin-bottom: 5px;
}

.st-ig-tt-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--heading-color, #1a1a2e);
    margin: 0 0 6px;
    line-height: 1.25;
}

.st-ig-tt-desc {
    font-size: 0.77rem;
    line-height: 1.6;
    color: var(--default-color, #6c757d);
    margin: 0;
}

/* Hero içindeki infografik — pozisyon override */
.st-hero-ig {
    position: relative;    /* tooltip konumlandırması için */
    max-width: 100%;
    margin: 0;
}

/* Hero yüksekliği sütunları barındıracak kadar büyüsün */
.st-hero {
    min-height: auto;     /* zaten vardır, kontrol et */
    padding: 25px 0;
}

/* Sütunlar dikeyde ortalansın */
.st-hero .container,
.st-hero .row {
    min-height: auto;
    padding: 18px 0;
}

/* ══ Responsive ═════════════════════════════════════════════ */
@media (max-width: 767px) {
    .st-ig-tooltip  { display: none !important; }
    .ig-from-left   { transform: translateX(-36px); }
    .ig-from-right  { transform: translateX(36px); }
    .st-ig-outer    { margin-top: 24px; }
}
