/* ==========================================================================
   Wentra – Tasarım sistemi
   Logo renkleri temel alınmıştır: lacivert #003B8F, mavi #009BFF, turuncu #FF7A00.
   Turuncu yalnızca CTA, küçük vurgu ve aktif durumlarda kullanılır.
   ========================================================================== */

:root {
    --w-navy-950: #031029;
    --w-navy-900: #061a3f;
    --w-navy-800: #0a2a63;
    --w-navy: #003b8f;
    --w-blue-700: #0357c8;
    --w-blue-600: #0a6fe8;
    --w-blue: #009bff;
    --w-blue-300: #7cc8ff;
    --w-blue-100: #e3f2ff;
    --w-blue-50: #f0f7ff;
    --w-orange: #ff7a00;
    --w-orange-600: #eb6a00;
    --w-orange-100: #fff1e3;
    --w-success: #12a150;
    --w-success-100: #e6f7ee;
    --w-danger: #d92d20;

    --w-ink: #0b1b33;
    --w-ink-2: #2a3b55;
    --w-muted: #5b6b84;
    --w-line: #e2e9f3;
    --w-line-2: #edf2f8;
    --w-bg: #f5f8fc;
    --w-bg-2: #f8fafd;

    --w-gradient: linear-gradient(135deg, #003b8f 0%, #0a6fe8 55%, #009bff 100%);

    --r-sm: 8px;
    --r: 12px;
    --r-lg: 16px;
    --r-xl: 22px;

    --sh-xs: 0 1px 2px rgba(10, 30, 70, .06);
    --sh-sm: 0 2px 6px rgba(10, 30, 70, .06), 0 1px 2px rgba(10, 30, 70, .04);
    --sh-md: 0 14px 34px -14px rgba(10, 40, 100, .22);
    --sh-lg: 0 34px 70px -24px rgba(8, 35, 90, .32);

    --header-h: 76px;
    --font: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --mono: ui-monospace, "SFMono-Regular", "Cascadia Mono", Consolas, "Liberation Mono", monospace;

    /* Bootstrap değişkenleri */
    --bs-body-font-family: var(--font);
    --bs-body-color: var(--w-ink);
    --bs-body-bg: #fff;
    --bs-link-color: var(--w-blue-700);
    --bs-link-color-rgb: 3, 87, 200;
    --bs-link-hover-color: var(--w-navy);
    --bs-link-hover-color-rgb: 0, 59, 143;
    --bs-border-color: var(--w-line);
    --bs-emphasis-color: var(--w-ink);
}

/* --------------------------------------------------------------------------
   Temel
   -------------------------------------------------------------------------- */
html { scroll-behavior: smooth; }
body {
    font-family: var(--font);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--w-ink);
    background: #fff;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}
h1, h2, h3, h4 { color: var(--w-ink); font-weight: 700; letter-spacing: -.02em; }
p { color: var(--w-muted); }
img, svg { max-width: 100%; }
[id] { scroll-margin-top: calc(var(--header-h) + 16px); }
::selection { background: rgba(0, 155, 255, .18); }

a, button, .btn-w { -webkit-tap-highlight-color: transparent; }
:focus-visible {
    outline: 3px solid rgba(0, 155, 255, .5);
    outline-offset: 2px;
    border-radius: 6px;
}

.wi {
    width: 1em;
    height: 1em;
    fill: currentColor;
    flex-shrink: 0;
    vertical-align: -.125em;
}

.skip-link {
    position: absolute;
    left: 16px;
    top: -60px;
    z-index: 2000;
    padding: .6rem 1rem;
    border-radius: var(--r-sm);
    background: var(--w-navy);
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    transition: top .2s;
}
.skip-link:focus { top: 12px; color: #fff; }

.text-gradient {
    background: var(--w-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* --------------------------------------------------------------------------
   Butonlar ve bağlantılar
   -------------------------------------------------------------------------- */
.btn-w {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    padding: .68rem 1.15rem;
    border: 1px solid transparent;
    border-radius: 10px;
    font-size: .95rem;
    font-weight: 600;
    line-height: 1.2;
    white-space: nowrap;
    text-decoration: none;
    cursor: pointer;
    transition: background-color .2s, border-color .2s, color .2s, box-shadow .2s, transform .2s;
}
.btn-w:hover { transform: translateY(-1px); }
.btn-w:active { transform: none; }
.btn-w-lg { padding: .9rem 1.5rem; font-size: 1rem; border-radius: 12px; }

.btn-w-primary {
    background: var(--w-orange);
    color: #fff;
    box-shadow: 0 10px 22px -10px rgba(255, 122, 0, .75);
}
.btn-w-primary:hover { background: var(--w-orange-600); color: #fff; }

.btn-w-blue { background: var(--w-navy); color: #fff; box-shadow: 0 10px 22px -12px rgba(0, 59, 143, .7); }
.btn-w-blue:hover { background: var(--w-blue-700); color: #fff; }

.btn-w-secondary { background: #fff; border-color: var(--w-line); color: var(--w-navy); box-shadow: var(--sh-xs); }
.btn-w-secondary:hover { border-color: #bcd8f7; color: var(--w-navy); box-shadow: var(--sh-sm); }

.btn-w-ghost { background: transparent; color: var(--w-navy); }
.btn-w-ghost:hover { background: var(--w-blue-50); color: var(--w-navy); }

.btn-w-outline-light { border-color: rgba(255, 255, 255, .35); color: #fff; background: rgba(255, 255, 255, .04); }
.btn-w-outline-light:hover { border-color: rgba(255, 255, 255, .7); background: rgba(255, 255, 255, .1); color: #fff; }

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    font-weight: 600;
    color: var(--w-navy);
    text-decoration: none;
}
.link-arrow .wi { transition: transform .2s; }
.link-arrow:hover { color: var(--w-blue-700); }
.link-arrow:hover .wi { transform: translateX(3px); }

.pill {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    padding: .25rem .6rem;
    border-radius: 999px;
    font-size: .75rem;
    font-weight: 600;
    white-space: nowrap;
}
.pill-blue { background: var(--w-blue-50); color: var(--w-blue-700); }
.pill-success { background: var(--w-success-100); color: var(--w-success); }
.pill-orange { background: var(--w-orange-100); color: #b35300; }

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */
.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 1030;
    border-bottom: 1px solid transparent;
    transition: background-color .25s, box-shadow .25s, border-color .25s;
}
.site-header.is-scrolled,
.nav-open .site-header {
    background: rgba(255, 255, 255, .94);
    border-color: var(--w-line);
    box-shadow: 0 8px 28px -18px rgba(10, 40, 100, .35);
    -webkit-backdrop-filter: saturate(180%) blur(12px);
    backdrop-filter: saturate(180%) blur(12px);
}
.nav-bar {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    height: var(--header-h);
}
.brand {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    text-decoration: none;
    flex-shrink: 0;
}
.brand img { height: 34px; width: auto; }
.brand-name {
    font-size: 1.35rem;
    font-weight: 800;
    letter-spacing: -.03em;
    color: var(--w-navy);
}
.nav-panel {
    display: flex;
    align-items: center;
    flex: 1;
    gap: 1rem;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: .15rem;
    margin: 0 auto;
    padding: 0;
    list-style: none;
}
.nav-link-w {
    position: relative;
    display: block;
    padding: .5rem .7rem;
    border-radius: var(--r-sm);
    color: var(--w-ink-2);
    font-size: .93rem;
    font-weight: 500;
    text-decoration: none;
    transition: color .2s, background-color .2s;
}
.nav-link-w:hover { color: var(--w-navy); background: rgba(0, 155, 255, .07); }
.nav-link-w[aria-current="page"] { color: var(--w-navy); font-weight: 700; }
.nav-link-w[aria-current="page"]::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -2px;
    width: 5px;
    height: 5px;
    margin-left: -2.5px;
    border-radius: 50%;
    background: var(--w-orange);
}
.nav-cta { display: flex; align-items: center; gap: .5rem; }

.nav-toggle {
    display: none;
    position: relative;
    width: 44px;
    height: 44px;
    margin-left: auto;
    border: 1px solid var(--w-line);
    border-radius: 10px;
    background: #fff;
    color: var(--w-navy);
    font-size: 1.35rem;
    align-items: center;
    justify-content: center;
}
.nav-toggle-close { display: none; }
.nav-open .nav-toggle-open { display: none; }
.nav-open .nav-toggle-close { display: block; }

@media (max-width: 1199.98px) {
    .nav-toggle { display: inline-flex; }
    .nav-panel {
        position: fixed;
        top: var(--header-h);
        left: 0;
        right: 0;
        max-height: calc(100dvh - var(--header-h));
        overflow-y: auto;
        flex-direction: column;
        align-items: stretch;
        gap: 1.25rem;
        padding: 1rem 16px 1.5rem;
        background: #fff;
        border-bottom: 1px solid var(--w-line);
        box-shadow: 0 24px 40px -24px rgba(10, 40, 100, .35);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-8px);
        transition: opacity .2s, transform .2s, visibility 0s .2s;
    }
    .nav-open .nav-panel {
        opacity: 1;
        visibility: visible;
        transform: none;
        transition: opacity .2s, transform .2s;
    }
    .nav-links { flex-direction: column; align-items: stretch; margin: 0; gap: 0; }
    .nav-link-w { padding: .85rem .75rem; font-size: 1rem; border-radius: 10px; }
    .nav-link-w[aria-current="page"] { background: var(--w-blue-50); }
    .nav-link-w[aria-current="page"]::after { left: auto; right: 1rem; top: 50%; bottom: auto; margin: -2.5px 0 0; }
    .nav-cta { flex-direction: column-reverse; align-items: stretch; }
    .nav-cta .btn-w { padding-block: .85rem; }
    .nav-cta .btn-w-ghost { border-color: var(--w-line); }
}
@media (min-width: 1200px) and (max-width: 1399.98px) {
    .nav-link-w { padding-inline: .55rem; font-size: .9rem; }
    .nav-bar { gap: 1rem; }
}

/* --------------------------------------------------------------------------
   Bölüm yapısı ve tipografi
   -------------------------------------------------------------------------- */
.section { position: relative; padding-block: clamp(4.5rem, 3rem + 5vw, 7.5rem); }
.section-alt { background: var(--w-bg); }
.section-head { max-width: 760px; margin-bottom: clamp(2.5rem, 2rem + 2vw, 3.75rem); }
.section-head.text-center { margin-inline: auto; }
.section-head-split {
    max-width: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: end;
    gap: 1rem 3rem;
}
.section-head-split .section-lead { margin: 0; }

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    margin-bottom: 1rem;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--w-blue-700);
}
.eyebrow::before {
    content: "";
    width: 18px;
    height: 2px;
    border-radius: 2px;
    background: var(--w-orange);
}
.eyebrow-light { color: var(--w-blue-300); }

.section-title {
    margin-bottom: 1.1rem;
    font-size: clamp(1.85rem, 1.25rem + 2vw, 2.75rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -.03em;
}
.section-lead { font-size: 1.075rem; line-height: 1.7; margin-bottom: 0; }

.icon-tile {
    display: inline-grid;
    place-items: center;
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    border-radius: 11px;
    background: var(--w-blue-50);
    border: 1px solid #dcebfb;
    color: var(--w-blue-700);
    font-size: 1.15rem;
}
.icon-tile-sm { width: 38px; height: 38px; border-radius: 10px; font-size: 1.05rem; }
.icon-tile-xs { width: 28px; height: 28px; border-radius: 8px; font-size: .9rem; }
.icon-tile.is-accent { background: var(--w-orange-100); border-color: #ffdcb8; color: var(--w-orange-600); }

.check-list { list-style: none; padding: 0; margin: 1.5rem 0 0; display: grid; gap: .7rem; }
.check-list li { display: flex; gap: .65rem; align-items: flex-start; color: var(--w-ink-2); font-weight: 500; }
.check-list .wi {
    margin-top: .2rem;
    padding: .2rem;
    width: 1.3rem;
    height: 1.3rem;
    border-radius: 50%;
    background: var(--w-blue-100);
    color: var(--w-blue-700);
}

.callout {
    margin: 1.75rem 0 0;
    padding: 1.1rem 1.25rem;
    border-left: 3px solid var(--w-orange);
    border-radius: 0 var(--r) var(--r) 0;
    background: linear-gradient(90deg, var(--w-blue-50), rgba(240, 247, 255, 0));
    color: var(--w-navy);
    font-size: 1.05rem;
    font-weight: 600;
    line-height: 1.55;
}

/* Arka plan ızgarası (hero ve sayfa başlıkları) */
.grid-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(0, 59, 143, .055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 59, 143, .055) 1px, transparent 1px);
    background-size: 48px 48px;
    -webkit-mask-image: radial-gradient(ellipse 70% 70% at 70% 35%, #000 25%, transparent 75%);
    mask-image: radial-gradient(ellipse 70% 70% at 70% 35%, #000 25%, transparent 75%);
}

/* Genel "uygulama penceresi" kartı */
.app-card {
    margin: 0;
    background: #fff;
    border: 1px solid var(--w-line);
    border-radius: var(--r-lg);
    box-shadow: var(--sh-lg);
    overflow: hidden;
}
.app-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: .5rem 1rem;
    padding: .9rem 1.1rem;
    border-bottom: 1px solid var(--w-line-2);
    background: #fbfcfe;
}
.app-card-title {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-size: .85rem;
    font-weight: 700;
    color: var(--w-ink);
}
.app-card-title .wi { color: var(--w-blue-700); }

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */
.hero {
    position: relative;
    overflow: hidden;
    padding-top: calc(var(--header-h) + clamp(2.5rem, 1rem + 5vw, 5.5rem));
    padding-bottom: clamp(6rem, 4rem + 6vw, 9rem);
    background:
        radial-gradient(900px 520px at 85% 20%, rgba(0, 155, 255, .13), transparent 65%),
        radial-gradient(420px 260px at 98% 0%, rgba(255, 122, 0, .07), transparent 70%),
        linear-gradient(180deg, #f2f8ff 0%, #f8fafd 70%, #fff 100%);
}
.hero > .container { position: relative; }

.badge-w {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    padding: .4rem .9rem .4rem .45rem;
    border: 1px solid var(--w-line);
    border-radius: 999px;
    background: #fff;
    box-shadow: var(--sh-xs);
    color: var(--w-navy);
    font-size: .85rem;
    font-weight: 600;
}
.badge-dot {
    position: relative;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--w-orange-100);
}
.badge-dot::after {
    content: "";
    position: absolute;
    inset: 7px;
    border-radius: 50%;
    background: var(--w-orange);
}

.hero-title {
    margin: 1.4rem 0 0;
    font-size: clamp(2.35rem, 1.45rem + 3.3vw, 3.85rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -.035em;
}
.hero-title .text-gradient { display: block; padding-bottom: .08em; }
.hero-lead {
    max-width: 560px;
    margin: 1.4rem 0 2rem;
    font-size: clamp(1.02rem, .95rem + .3vw, 1.15rem);
    line-height: 1.7;
}
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 1.75rem; }

.hero-trust {
    display: grid;
    grid-template-columns: repeat(2, max-content);
    gap: .8rem 1.75rem;
    margin: 2.4rem 0 0;
    padding: 0;
    list-style: none;
    color: var(--w-ink-2);
    font-size: .92rem;
    font-weight: 600;
}
.hero-trust li { display: flex; align-items: center; gap: .55rem; }
.trust-check {
    display: inline-grid;
    place-items: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--w-blue-100);
    color: var(--w-blue-700);
    font-size: .8rem;
}

/* Dashboard mockup ------------------------------------------------------- */
.dash-wrap { position: relative; margin: 0; padding: .5rem 0 1.5rem 1rem; }
.dash-racks {
    position: absolute;
    top: -8%;
    right: -14%;
    width: 78%;
    height: auto;
    color: rgba(0, 59, 143, .08);
    pointer-events: none;
}
.dash {
    position: relative;
    z-index: 1;
    font-size: 12.5px;
    line-height: 1.35;
    background: #fff;
    border: 1px solid var(--w-line);
    border-radius: 18px;
    box-shadow: var(--sh-lg), 0 0 0 8px rgba(255, 255, 255, .55);
    overflow: hidden;
    user-select: none;
}
.dash-top {
    display: flex;
    align-items: center;
    gap: 1em;
    padding: .8em 1.1em;
    border-bottom: 1px solid var(--w-line-2);
    background: #fbfcfe;
}
.dash-dots { display: inline-flex; gap: .4em; }
.dash-dots i { width: .7em; height: .7em; border-radius: 50%; background: #dfe6ef; }
.dash-title { display: inline-flex; align-items: center; gap: .45em; font-weight: 800; color: var(--w-navy); }
.dash-title img { height: 1.4em; width: auto; }
.dash-search {
    display: inline-flex;
    align-items: center;
    gap: .5em;
    flex: 1;
    max-width: 22em;
    margin-left: auto;
    padding: .45em .8em;
    border: 1px solid var(--w-line);
    border-radius: 8px;
    background: #fff;
    color: #9aa8bd;
    font-size: .92em;
    white-space: nowrap;
    overflow: hidden;
}
.dash-top-icons { display: inline-flex; align-items: center; gap: .9em; color: var(--w-muted); font-size: 1.1em; }
.dash-avatar {
    display: inline-grid;
    place-items: center;
    width: 2.1em;
    height: 2.1em;
    border-radius: 50%;
    background: var(--w-gradient);
    color: #fff;
    font-size: .72em;
    font-weight: 700;
}
.dash-body { display: grid; grid-template-columns: 3.9em 1fr; }
.dash-side {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .45em;
    padding: 1em 0;
    border-right: 1px solid var(--w-line-2);
    background: #fbfcfe;
}
.dash-side span {
    display: grid;
    place-items: center;
    width: 2.5em;
    height: 2.5em;
    border-radius: 9px;
    color: #8a99b0;
    font-size: 1.05em;
}
.dash-side .is-active { background: var(--w-blue-50); color: var(--w-blue-700); box-shadow: inset 0 0 0 1px #d6e8fb; }
.dash-main { display: grid; gap: .85em; padding: 1.15em; background: var(--w-bg-2); min-width: 0; }
.dash-head { display: flex; align-items: center; justify-content: space-between; }
.dash-sub { display: block; color: var(--w-muted); font-size: .88em; }
.dash-head strong { font-size: 1.25em; letter-spacing: -.02em; }
.dash-live {
    display: inline-flex;
    align-items: center;
    gap: .45em;
    padding: .3em .7em;
    border-radius: 999px;
    background: var(--w-success-100);
    color: var(--w-success);
    font-weight: 700;
    font-size: .85em;
}
.dash-live i {
    width: .55em;
    height: .55em;
    border-radius: 50%;
    background: currentColor;
    animation: pulse 2s infinite;
}
.kpis { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: .7em; }
.kpi, .dcard {
    background: #fff;
    border: 1px solid var(--w-line-2);
    border-radius: 11px;
    box-shadow: var(--sh-xs);
}
.kpi { display: flex; flex-direction: column; padding: .85em .9em; }
.kpi-label { display: flex; align-items: center; gap: .4em; min-width: 0; color: var(--w-muted); font-size: .86em; font-weight: 500; line-height: 1.25; }
.kpi-label .wi { color: var(--w-blue-600); }
.kpi-value { margin: .3em 0 .55em; font-size: 1.7em; font-weight: 800; letter-spacing: -.03em; }
.kpi-bar { height: 4px; border-radius: 4px; background: var(--w-line-2); overflow: hidden; }
.kpi-bar span { display: block; height: 100%; width: var(--p); border-radius: inherit; background: linear-gradient(90deg, var(--w-blue-600), var(--w-blue)); }
.kpi.is-accent .kpi-label .wi { color: var(--w-orange); }
.kpi.is-accent .kpi-bar span { background: linear-gradient(90deg, #ff9a3d, var(--w-orange)); }

.dash-grid { display: grid; grid-template-columns: 1.45fr 1fr; gap: .7em; }
.dcard { padding: .95em 1em; min-width: 0; }
.dcard-title {
    display: flex;
    justify-content: space-between;
    gap: .5em;
    margin-bottom: .85em;
    font-weight: 700;
    font-size: .95em;
}
.dcard-title span { color: #97a5ba; font-weight: 500; font-size: .92em; }
.bars { display: flex; align-items: flex-end; gap: .38em; height: 7.4em; padding-top: .3em; border-bottom: 1px solid var(--w-line-2); }
.bars span {
    flex: 1;
    height: var(--h);
    border-radius: 4px 4px 1px 1px;
    background: linear-gradient(180deg, #7cc8ff, #2f8ff0);
    transform-origin: bottom;
}
.bars span.is-peak { background: linear-gradient(180deg, #1c7ff0, var(--w-navy)); }
.gauge { display: flex; flex-wrap: wrap; align-items: center; gap: 1em; }
.ring {
    position: relative;
    display: grid;
    place-items: center;
    flex-shrink: 0;
    width: 6.3em;
    height: 6.3em;
    border-radius: 50%;
    background: conic-gradient(var(--w-blue-600) calc(var(--p) * 1%), var(--w-line-2) 0);
}
.ring::before { content: ""; position: absolute; inset: .72em; border-radius: 50%; background: #fff; }
.ring strong { position: relative; font-size: 1.4em; letter-spacing: -.03em; }
.zones { flex: 1 1 8em; display: grid; gap: .6em; margin: 0; padding: 0; list-style: none; min-width: 0; }
.zones li { display: grid; grid-template-columns: 3.2em 1fr; align-items: center; gap: .5em; color: var(--w-muted); font-size: .88em; }
.zones b { position: relative; height: 5px; border-radius: 5px; background: var(--w-line-2); overflow: hidden; }
.zones b::after { content: ""; position: absolute; inset: 0 auto 0 0; width: var(--p); border-radius: inherit; background: var(--w-blue); }
.stock-stats { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: .7em; margin-bottom: .8em; }
.stock-stats span { display: block; color: var(--w-muted); font-size: .85em; }
.stock-stats strong { font-size: 1.2em; letter-spacing: -.02em; }
.stock-stats .is-warn strong { color: var(--w-orange-600); }
.stock-seg { display: flex; gap: 3px; height: 6px; }
.stock-seg span { width: var(--w); border-radius: 4px; background: var(--w-blue-600); }
.stock-seg span:nth-child(2) { background: var(--w-blue-300); }
.stock-seg span:nth-child(3) { background: var(--w-orange); }

.float-chip {
    position: absolute;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: .65rem;
    padding: .65rem .9rem .65rem .65rem;
    border: 1px solid var(--w-line);
    border-radius: 14px;
    background: #fff;
    box-shadow: var(--sh-md);
    font-size: .8rem;
    line-height: 1.3;
    animation: float 6s ease-in-out infinite;
}
.float-chip strong { display: block; color: var(--w-ink); font-size: .84rem; }
.float-chip small { color: var(--w-muted); }
.chip-icon { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 10px; font-size: 1rem; }
.chip-icon.is-success { background: var(--w-success-100); color: var(--w-success); }
.chip-icon.is-accent { background: var(--w-orange-100); color: var(--w-orange-600); }
.chip-scan { left: -1.25rem; bottom: 22%; }
.chip-ship { right: -.75rem; bottom: -.25rem; animation-delay: -3s; }

/* --------------------------------------------------------------------------
   Değer çubuğu
   -------------------------------------------------------------------------- */
.valuebar { position: relative; z-index: 2; margin-top: -4rem; }
.valuebar-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin: 0;
    padding: 0;
    list-style: none;
    background: #fff;
    border: 1px solid var(--w-line);
    border-radius: 20px;
    box-shadow: var(--sh-md);
}
.value-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.6rem 1.5rem;
}
.value-item + .value-item { border-left: 1px solid var(--w-line-2); }
.value-icon {
    display: grid;
    place-items: center;
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 13px;
    background: var(--w-gradient);
    color: #fff;
    font-size: 1.25rem;
    box-shadow: 0 10px 20px -10px rgba(10, 111, 232, .7);
}
.value-item small { display: block; color: var(--w-muted); font-size: .85rem; font-weight: 500; }
.value-item strong {
    display: block;
    color: var(--w-navy);
    font-size: .92rem;
    font-weight: 800;
    letter-spacing: .05em;
    text-transform: uppercase;
}

/* --------------------------------------------------------------------------
   Wentra Nedir – modüller ve depo haritası
   -------------------------------------------------------------------------- */
.module-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .75rem;
    margin: 2rem 0 0;
    padding: 0;
    list-style: none;
}
.module {
    display: flex;
    align-items: flex-start;
    gap: .85rem;
    padding: 1rem;
    border: 1px solid var(--w-line);
    border-radius: var(--r);
    background: #fff;
    transition: border-color .2s, box-shadow .2s;
}
.module:hover { border-color: #cfe3fa; box-shadow: var(--sh-sm); }
.module h3 { margin: .1rem 0 .25rem; font-size: 1rem; }
.module p { margin: 0; font-size: .86rem; line-height: 1.5; }

.legend { display: inline-flex; align-items: center; gap: .35rem; color: var(--w-muted); font-size: .75rem; }
.legend i { width: 10px; height: 10px; border-radius: 3px; margin-left: .35rem; }
.rackmap-body { display: grid; gap: .9rem; padding: 1.25rem 1.1rem; background: var(--w-bg-2); }
.aisle { display: grid; grid-template-columns: 1.6rem 1fr; align-items: center; gap: .6rem; }
.aisle-label {
    display: grid;
    place-items: center;
    height: 100%;
    border-radius: 6px;
    background: #fff;
    border: 1px solid var(--w-line);
    color: var(--w-navy);
    font-size: .8rem;
    font-weight: 800;
}
.aisle-racks { display: grid; gap: 4px; }
.rack-row { display: grid; grid-template-columns: repeat(10, 1fr); gap: 4px; }
.rack-row i, .legend i { display: block; }
.rack-row i { height: 22px; border-radius: 4px; }
.lv0 { background: #e9eff7; }
.lv1 { background: #cfe6ff; }
.lv2 { background: #7cc3ff; }
.lv3 { background: #1e7fe6; }
.rack-row i.is-target {
    background: var(--w-orange);
    box-shadow: 0 0 0 3px rgba(255, 122, 0, .25);
    animation: target 2.4s ease-in-out infinite;
}
.rackmap-foot {
    display: flex;
    align-items: center;
    gap: .85rem;
    padding: .9rem 1.1rem;
    border-top: 1px solid var(--w-line-2);
    font-size: .85rem;
}
.rackmap-foot strong { display: block; font-family: var(--mono); color: var(--w-ink); font-size: .92rem; }
.rackmap-foot small { color: var(--w-muted); }
.rackmap-foot-main { flex: 1; min-width: 0; }
.rackmap-foot-meta { text-align: right; }
.rackmap-foot-meta strong { font-family: var(--font); font-size: .82rem; }

/* --------------------------------------------------------------------------
   Operasyon akışı
   -------------------------------------------------------------------------- */
.flow {
    position: relative;
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 1rem;
    margin: 0;
    padding: 0;
    list-style: none;
}
.flow::before {
    content: "";
    position: absolute;
    top: 33px;
    left: 7%;
    right: 7%;
    height: 3px;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--w-navy), var(--w-blue) 82%, var(--w-orange));
    transform-origin: left;
}
.flow-step { position: relative; display: flex; flex-direction: column; align-items: center; text-align: center; }
.flow-node {
    position: relative;
    z-index: 1;
    display: grid;
    place-items: center;
    width: 66px;
    height: 66px;
    border: 1px solid var(--w-line);
    border-radius: 20px;
    background: #fff;
    box-shadow: var(--sh-sm), 0 0 0 6px var(--w-bg);
    color: var(--w-blue-700);
    font-size: 1.6rem;
    transition: transform .25s, box-shadow .25s;
}
.flow-step:hover .flow-node { transform: translateY(-3px); box-shadow: var(--sh-md), 0 0 0 6px var(--w-bg); }
.flow-num {
    position: absolute;
    top: -9px;
    right: -9px;
    display: grid;
    place-items: center;
    min-width: 26px;
    height: 26px;
    padding: 0 .3rem;
    border: 2px solid #fff;
    border-radius: 999px;
    background: var(--w-navy);
    color: #fff;
    font-size: .7rem;
    font-weight: 800;
}
.flow-step.is-final .flow-node {
    background: var(--w-orange);
    border-color: var(--w-orange);
    color: #fff;
    box-shadow: 0 14px 26px -12px rgba(255, 122, 0, .8), 0 0 0 6px var(--w-bg);
}
.flow-step.is-final .flow-num { background: #fff; color: var(--w-orange-600); border-color: var(--w-orange); }
.flow-title {
    margin: 1.2rem 0 .35rem;
    font-size: .92rem;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
}
.flow-text { margin: 0; font-size: .86rem; line-height: 1.5; }

@media (max-width: 991.98px) {
    .flow { grid-template-columns: 1fr; gap: 0; max-width: 520px; margin-inline: auto; }
    .flow::before {
        top: 33px;
        bottom: 60px;
        left: 32px;
        right: auto;
        width: 2px;
        height: auto;
        background: linear-gradient(180deg, var(--w-navy), var(--w-blue) 82%, var(--w-orange));
        transform-origin: top;
    }
    .flow-step { flex-direction: row; align-items: flex-start; gap: 1.25rem; text-align: left; padding-bottom: 1.75rem; }
    .flow-step:last-child { padding-bottom: 0; }
    .flow-title { margin-top: .75rem; }
}

/* --------------------------------------------------------------------------
   Depo hiyerarşisi
   -------------------------------------------------------------------------- */
.hier-wrap {
    --shift: 2.75rem;
    --gap: 1rem;
    margin: 0;
    padding: clamp(1.25rem, 3vw, 2rem);
    border: 1px solid var(--w-line);
    border-radius: var(--r-xl);
    background:
        radial-gradient(500px 300px at 100% 0%, rgba(0, 155, 255, .08), transparent 70%),
        var(--w-bg-2);
}
.hier { position: relative; z-index: 0; display: grid; gap: var(--gap); margin: 0; padding: 0; list-style: none; }
.hier-level {
    --c: var(--w-navy);
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-left: calc(var(--i) * var(--shift));
    padding: .8rem 1rem;
    border: 1px solid var(--w-line);
    border-radius: 14px;
    background: #fff;
    box-shadow: var(--sh-sm);
}
.hier-level:nth-child(2) { --c: #0a4fb0; }
.hier-level:nth-child(3) { --c: #0a6fe8; }
.hier-level:nth-child(4) { --c: #1e8cf5; }
.hier-level:nth-child(5) { --c: #009bff; }
.hier-level + .hier-level::before {
    content: "";
    position: absolute;
    left: calc(1rem + 20px - var(--shift) - 1px);
    top: calc(-1 * var(--gap) - 1px);
    width: calc(var(--shift) - 1rem - 20px + 1px + .6rem);
    height: calc(var(--gap) + 50%);
    border-left: 2px solid #bfdcfb;
    border-bottom: 2px solid #bfdcfb;
    border-bottom-left-radius: 10px;
    z-index: -1;
}
.hier-icon {
    display: grid;
    place-items: center;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 11px;
    background: var(--c);
    color: #fff;
    font-size: 1.1rem;
}
.hier-text { flex: 1; min-width: 0; }
.hier-name {
    display: block;
    color: var(--w-ink);
    font-size: .8rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}
.hier-example { color: var(--w-muted); font-size: .88rem; }
.hier-code {
    padding: .3rem .6rem;
    border-radius: 8px;
    background: var(--w-bg);
    border: 1px solid var(--w-line);
    color: var(--c);
    font-family: var(--mono);
    font-size: .85rem;
    font-weight: 700;
}
.loc-code {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: .75rem 1rem;
    margin-top: 1.5rem;
    padding: 1rem 1.25rem;
    border-radius: 14px;
    background: var(--w-navy-900);
    color: #b9c9e2;
}
.loc-code-label { display: inline-flex; align-items: center; gap: .5rem; font-size: .85rem; font-weight: 600; }
.loc-code-value { display: inline-flex; align-items: center; gap: .3rem; font-family: var(--mono); font-size: 1.15rem; font-weight: 700; }
.loc-code-value i { color: #5b6f91; font-style: normal; }
.loc-code-value b { color: #9fd3ff; }
.loc-code-value b:nth-of-type(2) { color: #8cc6ff; }
.loc-code-value b:nth-of-type(3) { color: #6db8ff; }
.loc-code-value b:nth-of-type(4) { color: #4fb0ff; }
.loc-code-value b:last-of-type { color: var(--w-orange); }

/* --------------------------------------------------------------------------
   Akıllı toplama
   -------------------------------------------------------------------------- */
.route-svg { display: block; width: 100%; height: auto; background: var(--w-bg-2); padding: 12px; }
.rt-floor { fill: #f4f8fd; stroke: var(--w-line); }
.rt-rack { fill: #fff; stroke: #d3e0ef; stroke-width: 1.5; }
.rt-shelf { stroke: #e3ebf5; stroke-width: 1; }
.rt-target { fill: rgba(255, 122, 0, .16); stroke: var(--w-orange); stroke-width: 1.5; }
.rt-path {
    fill: none;
    stroke: url(#routeGrad);
    stroke-width: 5;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 1500;
    stroke-dashoffset: 0;
}
.rt-path-flow {
    fill: none;
    stroke: rgba(255, 255, 255, .85);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-dasharray: 2 14;
    animation: dash-flow 1.4s linear infinite;
}
.rt-start circle { fill: #fff; stroke: var(--w-navy); stroke-width: 3; }
.rt-start text, .rt-end text { font: 700 12px var(--font); }
.rt-start text { fill: var(--w-navy); }
.rt-end rect { fill: var(--w-orange); }
.rt-end text { fill: #fff; text-anchor: middle; font-size: 11px; }
.rt-stop circle { fill: var(--w-navy); stroke: #fff; stroke-width: 3; filter: drop-shadow(0 4px 6px rgba(0, 40, 100, .3)); }
.rt-stop text { fill: #fff; font: 800 13px var(--font); text-anchor: middle; }
.rt-walker {
    fill: var(--w-orange);
    stroke: #fff;
    stroke-width: 2.5;
    offset-rotate: 0deg;
    animation: walk 9s linear infinite;
}
.route-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: .5rem 1rem;
    padding: .9rem 1.1rem;
    border-top: 1px solid var(--w-line-2);
    font-size: .85rem;
}
.route-seq { display: inline-flex; align-items: center; gap: .35rem; color: #9aa8bd; }
.route-seq b {
    display: grid;
    place-items: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--w-navy);
    color: #fff;
    font-size: .78rem;
}
.route-meta { display: inline-flex; align-items: center; gap: .4rem; color: var(--w-success); font-weight: 600; }

.mini-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem 1.5rem;
    margin: 2rem 0 0;
    padding: 0;
    list-style: none;
}
.mini-item { display: flex; gap: .85rem; align-items: flex-start; }
.mini-item h3 { margin: .15rem 0 .2rem; font-size: .98rem; }
.mini-item p { margin: 0; font-size: .87rem; line-height: 1.5; }

/* --------------------------------------------------------------------------
   Koyu bölüm – Mobil depo
   -------------------------------------------------------------------------- */
.section-dark {
    overflow: hidden;
    color: #c8d6ea;
    background:
        radial-gradient(900px 500px at 85% 15%, rgba(0, 155, 255, .22), transparent 65%),
        radial-gradient(500px 300px at 10% 100%, rgba(10, 111, 232, .18), transparent 70%),
        linear-gradient(160deg, #041634 0%, #062253 55%, #0a2f6e 100%);
}
.section-dark .section-title,
.section-dark h3 { color: #fff; }
.section-dark p { color: #a9bbd6; }
.mini-grid-dark .icon-tile {
    background: rgba(255, 255, 255, .06);
    border-color: rgba(255, 255, 255, .12);
    color: var(--w-blue-300);
}

.device-stage {
    position: relative;
    display: grid;
    place-items: center;
    margin: 0;
    padding: 5rem 0 1rem;
}
.device-stage::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    max-width: 100%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 155, 255, .25), transparent 65%);
}
.device {
    position: relative;
    width: 300px;
    max-width: 100%;
    padding: 18px 14px 16px;
    border-radius: 36px;
    background: linear-gradient(160deg, #2c3441 0%, #171c24 55%, #0e1218 100%);
    box-shadow:
        0 50px 80px -30px rgba(0, 0, 0, .7),
        inset 0 1px 0 rgba(255, 255, 255, .1),
        inset 0 0 0 2px #0b0e13,
        0 0 0 1px rgba(255, 255, 255, .06);
}
.device-scanner {
    position: absolute;
    top: -7px;
    left: 50%;
    width: 120px;
    height: 16px;
    margin-left: -60px;
    border-radius: 10px 10px 4px 4px;
    background: linear-gradient(180deg, #11151c, #1d232d);
    box-shadow: inset 0 -3px 0 rgba(255, 90, 40, .55);
}
.device-beam {
    position: absolute;
    top: -80px;
    left: 50%;
    width: 180px;
    height: 76px;
    margin-left: -90px;
    background: linear-gradient(0deg, rgba(255, 110, 40, .45), rgba(255, 110, 40, 0));
    clip-path: polygon(42% 100%, 58% 100%, 100% 0, 0 0);
    animation: beam 2.6s ease-in-out infinite;
}
.device-side {
    position: absolute;
    top: 140px;
    width: 6px;
    height: 58px;
    border-radius: 3px;
    background: var(--w-orange);
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .25);
}
.device-side-l { left: -5px; }
.device-side-r { right: -5px; }
.device-screen {
    font-size: 12px;
    line-height: 1.35;
    border-radius: 20px;
    overflow: hidden;
    background: var(--w-bg);
    color: var(--w-ink);
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .3);
}
.m-status {
    display: flex;
    justify-content: space-between;
    padding: .55em 1.1em .4em;
    background: var(--w-navy-900);
    color: #cfe0f7;
    font-size: .9em;
    font-weight: 600;
}
.m-status span { display: inline-flex; gap: .4em; }
.m-appbar { padding: .6em 1.1em 1em; background: linear-gradient(135deg, var(--w-navy-900), var(--w-navy) 70%, #0a5fd0); color: #fff; }
.m-appbar-row { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: .75em; }
.m-appbar strong { font-size: 1.25em; }
.m-appbar-row span { font-family: var(--mono); color: #a9d3ff; font-size: .95em; }
.m-appbar small { color: #b9cdea; font-size: .9em; }
.m-progress { height: 5px; margin-bottom: .45em; border-radius: 5px; background: rgba(255, 255, 255, .18); overflow: hidden; }
.m-progress span { display: block; width: var(--p); height: 100%; background: var(--w-blue); border-radius: inherit; }
.m-body { display: grid; gap: .7em; padding: .9em; }
.m-card { padding: .8em .9em; border: 1px solid var(--w-line); border-radius: 12px; background: #fff; }
.m-loc small { display: block; color: var(--w-muted); font-size: .88em; }
.m-loc strong { display: block; margin: .1em 0; font-family: var(--mono); font-size: 1.75em; letter-spacing: .02em; color: var(--w-navy); }
.m-loc span { color: var(--w-muted); font-size: .85em; }
.m-product { display: flex; align-items: center; gap: .75em; }
.m-product strong { display: block; font-size: 1.02em; }
.m-product small { color: var(--w-muted); font-family: var(--mono); font-size: .85em; }
.m-product > div { flex: 1; min-width: 0; }
.m-thumb { display: grid; place-items: center; width: 2.9em; height: 2.9em; border-radius: 10px; background: var(--w-blue-50); color: var(--w-blue-700); font-size: 1.2em; }
.m-qty { color: var(--w-muted); font-size: .9em; white-space: nowrap; }
.m-qty b { color: var(--w-ink); font-size: 1.45em; }
.m-barcode {
    position: relative;
    padding: .7em .9em .5em;
    border: 1px dashed #c9d8ea;
    border-radius: 12px;
    background: #fff;
    text-align: center;
    overflow: hidden;
}
.m-bars {
    display: block;
    height: 2.6em;
    background: repeating-linear-gradient(90deg,
        #0b1b33 0 2px, transparent 2px 4px,
        #0b1b33 4px 5px, transparent 5px 8px,
        #0b1b33 8px 11px, transparent 11px 12px,
        #0b1b33 12px 13px, transparent 13px 16px);
}
.m-barcode small { display: block; margin-top: .3em; font-family: var(--mono); color: var(--w-muted); font-size: .85em; letter-spacing: .08em; }
.m-scanline {
    position: absolute;
    left: .5em;
    right: .5em;
    top: .7em;
    height: 2px;
    background: #ff4d2e;
    box-shadow: 0 0 10px 2px rgba(255, 77, 46, .6);
    animation: scan 2.6s ease-in-out infinite;
}
.m-toast {
    display: flex;
    align-items: center;
    gap: .5em;
    padding: .65em .8em;
    border-radius: 10px;
    background: var(--w-success-100);
    color: var(--w-success);
    font-weight: 700;
}
.m-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5em;
    padding: .95em;
    border-radius: 12px;
    background: var(--w-blue-600);
    color: #fff;
    font-weight: 700;
    font-size: 1.05em;
    box-shadow: 0 10px 18px -10px rgba(10, 111, 232, .9);
}
.m-next { display: block; text-align: center; color: var(--w-muted); font-family: var(--mono); font-size: .85em; }
.device-keys { display: flex; justify-content: center; align-items: center; gap: 14px; padding-top: 14px; }
.device-keys i { width: 34px; height: 10px; border-radius: 6px; background: #252c37; box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08); }
.device-keys i.is-scan { width: 70px; height: 14px; background: linear-gradient(180deg, #ff9a3d, var(--w-orange)); }

/* --------------------------------------------------------------------------
   E-ticaret akışı
   -------------------------------------------------------------------------- */
.cflow {
    display: flex;
    align-items: stretch;
    gap: 2.1rem;
    margin: 0;
    padding: 0;
    list-style: none;
}
.cflow-item {
    position: relative;
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.3rem .75rem 1.15rem;
    border: 1px solid var(--w-line);
    border-radius: var(--r-lg);
    background: #fff;
    box-shadow: var(--sh-sm);
}
.cflow-item + .cflow-item::before {
    content: "";
    position: absolute;
    top: 50%;
    left: calc(-2.1rem + 6px);
    width: calc(2.1rem - 12px);
    height: 2px;
    background: #b8d7f7;
}
.cflow-item + .cflow-item::after {
    content: "";
    position: absolute;
    top: 50%;
    left: -12px;
    width: 8px;
    height: 8px;
    margin-top: -3px;
    border-top: 2px solid #8fc2f3;
    border-right: 2px solid #8fc2f3;
    transform: rotate(45deg);
}
.cflow-icon {
    display: grid;
    place-items: center;
    width: 48px;
    height: 48px;
    margin-bottom: .8rem;
    border-radius: 14px;
    background: var(--w-blue-50);
    color: var(--w-blue-700);
    font-size: 1.3rem;
}
.cflow-item strong {
    color: var(--w-ink);
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .07em;
    text-transform: uppercase;
    line-height: 1.3;
}
.cflow-item small { margin-top: .3rem; color: var(--w-muted); font-size: .8rem; line-height: 1.35; }
.cflow-item.is-core { background: var(--w-gradient); border-color: transparent; box-shadow: 0 18px 30px -16px rgba(10, 80, 200, .7); }
.cflow-item.is-core .cflow-icon { background: #fff; }
.cflow-item.is-core .cflow-icon img { width: 34px; height: auto; }
.cflow-item.is-core strong { color: #fff; }
.cflow-item.is-core small { color: #cfe4ff; }
.cflow-item.is-final { border-color: #ffd2a8; }
.cflow-item.is-final .cflow-icon { background: var(--w-orange); color: #fff; }

@media (max-width: 991.98px) {
    .cflow { flex-direction: column; gap: 1.5rem; max-width: 460px; margin-inline: auto; }
    .cflow-item { flex-direction: row; text-align: left; gap: 1rem; padding: .9rem 1rem; }
    .cflow-item > span:first-child { margin-bottom: 0; }
    .cflow-item strong { flex-shrink: 0; }
    .cflow-item small { margin: 0 0 0 auto; text-align: right; }
    .cflow-item + .cflow-item::before { top: -1.5rem; left: 38px; width: 2px; height: 1.5rem; }
    .cflow-item + .cflow-item::after { top: -9px; left: 35px; margin: 0; transform: rotate(135deg); }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
    .cflow { gap: 1.5rem; }
    .cflow-item + .cflow-item::before { left: calc(-1.5rem + 5px); width: calc(1.5rem - 10px); }
    .cflow-item + .cflow-item::after { left: -10px; }
    .cflow-item strong { font-size: .7rem; letter-spacing: .04em; }
}

.info-card {
    height: 100%;
    padding: 1.5rem;
    border: 1px solid var(--w-line);
    border-radius: var(--r-lg);
    background: var(--w-bg-2);
}
.info-card > .wi { color: var(--w-blue-700); font-size: 1.4rem; }
.info-card h3 { margin: .85rem 0 .4rem; font-size: 1.05rem; }
.info-card p { margin: 0; font-size: .92rem; }

.integration-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: .75rem 1rem;
    margin-top: 2.5rem;
}
.integration-strip-label { color: var(--w-muted); font-size: .85rem; font-weight: 600; }
.chip-list { display: flex; flex-wrap: wrap; gap: .5rem; margin: 0; padding: 0; list-style: none; }
.chip {
    padding: .45rem .9rem;
    border: 1px solid var(--w-line);
    border-radius: 999px;
    background: #fff;
    color: var(--w-ink-2);
    font-size: .88rem;
    font-weight: 600;
}

/* --------------------------------------------------------------------------
   Stok senkronizasyonu
   -------------------------------------------------------------------------- */
.sync {
    position: relative;
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
    aspect-ratio: 520 / 440;
}
.sync-lines { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; }
.sync-orbit { fill: none; stroke: #d5e6f8; stroke-width: 1.5; stroke-dasharray: 3 7; }
.sync-orbit-inner { stroke: #e3eefa; stroke-dasharray: none; }
.sync-line { stroke: #cfe3f8; stroke-width: 2; }
.sync-flow {
    stroke: var(--w-blue);
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-dasharray: 6 16;
    animation: dash-flow 1.6s linear infinite;
}
.sync-flow.is-reverse { animation-direction: reverse; stroke: var(--w-blue-600); }
.sync-core {
    position: absolute;
    left: 50%;
    top: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .2rem;
    width: 31%;
    aspect-ratio: 1;
    border-radius: 50%;
    background: #fff;
    transform: translate(-50%, -50%);
    box-shadow:
        var(--sh-lg),
        0 0 0 10px rgba(0, 155, 255, .08),
        0 0 0 22px rgba(0, 155, 255, .04);
}
.sync-core img { width: 58%; height: auto; }
.sync-core small { color: var(--w-navy); font-size: .72rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.sync-node {
    position: absolute;
    left: var(--x);
    top: var(--y);
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .45rem .8rem .45rem .45rem;
    border: 1px solid var(--w-line);
    border-radius: 12px;
    background: #fff;
    box-shadow: var(--sh-md);
    color: var(--w-ink);
    font-size: .88rem;
    font-weight: 700;
    white-space: nowrap;
    transform: translate(-50%, -50%);
}

.steps-list { display: grid; gap: 1.25rem; margin: 2rem 0 0; padding: 0; list-style: none; }
.steps-list li { display: flex; gap: 1rem; align-items: flex-start; }
.steps-num {
    display: grid;
    place-items: center;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: #fff;
    border: 1px solid var(--w-line);
    color: var(--w-navy);
    font-size: .85rem;
    font-weight: 800;
    box-shadow: var(--sh-xs);
}
.steps-list h3 { margin: .15rem 0 .25rem; font-size: 1.02rem; }
.steps-list p { margin: 0; font-size: .92rem; }

/* --------------------------------------------------------------------------
   Özellik kartları
   -------------------------------------------------------------------------- */
.fcard {
    position: relative;
    height: 100%;
    padding: 1.6rem 1.5rem;
    border: 1px solid var(--w-line);
    border-radius: var(--r-lg);
    background: #fff;
    overflow: hidden;
    transition: transform .25s, box-shadow .25s, border-color .25s;
}
.fcard::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 3px;
    background: var(--w-gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s;
}
.fcard:hover { transform: translateY(-4px); border-color: #cfe3fa; box-shadow: var(--sh-md); }
.fcard:hover::before { transform: scaleX(1); }
.fcard-icon {
    display: grid;
    place-items: center;
    width: 50px;
    height: 50px;
    margin-bottom: 1.2rem;
    border: 1px solid #dcebfb;
    border-radius: 14px;
    background: linear-gradient(135deg, #eaf4ff, #f7fbff);
    color: var(--w-blue-700);
    font-size: 1.4rem;
}
.fcard h3 { margin-bottom: .5rem; font-size: 1.06rem; }
.fcard p { margin: 0; font-size: .92rem; line-height: 1.6; }

/* --------------------------------------------------------------------------
   Neden Wentra
   -------------------------------------------------------------------------- */
.benefit {
    position: relative;
    height: 100%;
    padding: 2rem 1.75rem;
    border: 1px solid var(--w-line);
    border-radius: var(--r-xl);
    background: #fff;
    overflow: hidden;
    transition: transform .25s, box-shadow .25s;
}
.benefit:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.benefit-num {
    position: absolute;
    top: .9rem;
    right: 1.4rem;
    color: rgba(0, 59, 143, .07);
    font-size: 3.4rem;
    font-weight: 800;
    letter-spacing: -.04em;
    line-height: 1;
}
.benefit-icon {
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    border-radius: 16px;
    background: var(--w-gradient);
    color: #fff;
    font-size: 1.55rem;
    box-shadow: 0 14px 24px -12px rgba(10, 111, 232, .75);
}
.benefit h3 {
    position: relative;
    margin: 1.6rem 0 .9rem;
    padding-bottom: .8rem;
    color: var(--w-navy);
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}
.benefit h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 26px;
    height: 3px;
    border-radius: 3px;
    background: var(--w-orange);
}
.benefit p { margin: 0; font-size: .95rem; }

/* --------------------------------------------------------------------------
   CTA
   -------------------------------------------------------------------------- */
.section-cta { padding-block: clamp(3.5rem, 2.5rem + 3vw, 5.5rem); }
.cta-band {
    position: relative;
    overflow: hidden;
    padding: clamp(2.5rem, 1.5rem + 4vw, 4.75rem);
    border-radius: 28px;
    background:
        radial-gradient(760px 420px at 92% 0%, rgba(0, 155, 255, .38), transparent 60%),
        linear-gradient(135deg, #031640 0%, #003b8f 62%, #0a5fd0 100%);
    box-shadow: var(--sh-lg);
}
.cta-watermark {
    position: absolute;
    right: -3%;
    bottom: -22%;
    width: min(560px, 62%);
    height: auto;
    opacity: .08;
    filter: brightness(0) invert(1);
    pointer-events: none;
}
.cta-content { position: relative; max-width: 640px; }
.cta-band h2 {
    margin-bottom: 1rem;
    color: #fff;
    font-size: clamp(1.9rem, 1.3rem + 2.2vw, 2.9rem);
    font-weight: 800;
    letter-spacing: -.03em;
    line-height: 1.12;
}
.cta-band p { margin-bottom: 2rem; color: #c3d5ef; font-size: 1.1rem; }
.cta-actions { display: flex; flex-wrap: wrap; gap: .85rem; }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.site-footer {
    padding-top: clamp(3.5rem, 3rem + 2vw, 5rem);
    background: var(--w-navy-950);
    color: #97a8c3;
    font-size: .95rem;
}
.brand-footer .brand-name { color: #fff; }
.brand-footer img { height: 38px; }
.footer-desc { max-width: 340px; margin: 1.1rem 0 1.25rem; color: #97a8c3; font-size: .93rem; }
.footer-title {
    margin-bottom: 1.1rem;
    color: #fff;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
}
.footer-links, .footer-contact { margin: 0; padding: 0; list-style: none; }
.footer-links li + li { margin-top: .6rem; }
.footer-links a, .footer-contact a { color: #97a8c3; text-decoration: none; transition: color .2s; }
.footer-links a:hover, .footer-contact a:hover { color: #fff; }
.footer-contact li { display: flex; align-items: center; gap: .6rem; }
.footer-contact li + li { margin-top: .5rem; }
.footer-contact .wi { color: var(--w-blue-300); }
.footer-bottom {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: .5rem 1.5rem;
    margin-top: 3.5rem;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, .08);
    font-size: .86rem;
}
.footer-bottom p { margin: 0; color: #7d8fab; }

/* --------------------------------------------------------------------------
   İç sayfa başlığı
   -------------------------------------------------------------------------- */
.page-header {
    position: relative;
    overflow: hidden;
    padding: calc(var(--header-h) + clamp(2rem, 1rem + 3vw, 3.75rem)) 0 clamp(3rem, 2rem + 3vw, 4.5rem);
    border-bottom: 1px solid var(--w-line-2);
    background:
        radial-gradient(800px 420px at 90% 10%, rgba(0, 155, 255, .12), transparent 65%),
        linear-gradient(180deg, #f1f7ff 0%, #f8fafd 100%);
}
.page-header > .container { position: relative; }
.breadcrumb-w {
    display: flex;
    flex-wrap: wrap;
    gap: .4rem;
    margin: 0 0 1.5rem;
    padding: 0;
    list-style: none;
    font-size: .85rem;
    color: var(--w-muted);
}
.breadcrumb-w li + li::before { content: "/"; margin-right: .4rem; color: #b3c0d2; }
.breadcrumb-w a { color: var(--w-muted); text-decoration: none; }
.breadcrumb-w a:hover { color: var(--w-navy); }
.breadcrumb-w [aria-current] { color: var(--w-navy); font-weight: 600; }
.page-title {
    max-width: 860px;
    margin: 0 0 1.1rem;
    font-size: clamp(2.05rem, 1.35rem + 2.6vw, 3.25rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -.035em;
}
.page-lead { max-width: 720px; margin-bottom: 2rem; font-size: 1.1rem; line-height: 1.7; }
.page-header .hero-actions { margin-top: .25rem; }

/* --------------------------------------------------------------------------
   İç sayfa bileşenleri
   -------------------------------------------------------------------------- */
.position-card {
    height: 100%;
    padding: 1.75rem;
    border: 1px solid var(--w-line);
    border-radius: var(--r-xl);
    background: #fff;
}
.position-card h3 { margin: 1.1rem 0 .5rem; font-size: 1.12rem; }
.position-card p { margin: 0; font-size: .95rem; }

.solution-row + .solution-row { margin-top: clamp(4rem, 3rem + 4vw, 6.5rem); }
.solution-panel .sp-list { margin: 0; padding: .6rem; list-style: none; background: var(--w-bg-2); }
.sp-list li {
    display: flex;
    align-items: center;
    gap: .8rem;
    padding: .85rem .9rem;
    border-radius: 10px;
    color: var(--w-ink-2);
    font-size: .93rem;
    font-weight: 600;
}
.sp-list li + li { margin-top: .35rem; }
.sp-list li { background: #fff; border: 1px solid var(--w-line-2); }
.sp-list .icon-tile { width: 32px; height: 32px; border-radius: 9px; font-size: .9rem; }
.sp-toggle {
    position: relative;
    width: 34px;
    height: 20px;
    margin-left: auto;
    border-radius: 999px;
    background: var(--w-blue-600);
    flex-shrink: 0;
}
.sp-toggle::after {
    content: "";
    position: absolute;
    top: 3px;
    right: 3px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #fff;
}
.solution-panel .app-card-title .panel-head-icon .wi { color: #fff; }
.solution-panel .panel-head-icon {
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: var(--w-gradient);
    color: #fff;
}

.chip-nav {
    position: sticky;
    top: var(--header-h);
    z-index: 5;
    padding: .85rem 0;
    background: rgba(255, 255, 255, .92);
    border-bottom: 1px solid var(--w-line-2);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}
.chip-nav ul { display: flex; gap: .5rem; margin: 0; padding: 0; list-style: none; overflow-x: auto; scrollbar-width: none; }
.chip-nav ul::-webkit-scrollbar { display: none; }
.chip-nav a {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    padding: .5rem .95rem;
    border: 1px solid var(--w-line);
    border-radius: 999px;
    background: #fff;
    color: var(--w-ink-2);
    font-size: .88rem;
    font-weight: 600;
    white-space: nowrap;
    text-decoration: none;
    transition: border-color .2s, color .2s;
}
.chip-nav a:hover { border-color: #bcd8f7; color: var(--w-navy); }
.chip-nav .wi { color: var(--w-blue-700); }

.group-title { display: flex; align-items: center; gap: .75rem; margin-bottom: 1.5rem; font-size: 1.35rem; font-weight: 800; }
.feature-group + .feature-group { margin-top: 3.5rem; }

.timeline { position: relative; max-width: 900px; margin: 0 auto; padding: 0; list-style: none; }
.timeline::before {
    content: "";
    position: absolute;
    top: 30px;
    bottom: 30px;
    left: 32px;
    width: 2px;
    background: linear-gradient(180deg, var(--w-navy), var(--w-blue) 85%, var(--w-orange));
}
.tl-item { position: relative; display: grid; grid-template-columns: 66px 1fr; gap: 1.5rem; }
.tl-item + .tl-item { margin-top: 1.5rem; }
.tl-item .flow-node { box-shadow: var(--sh-sm), 0 0 0 6px #fff; }
.tl-item.is-final .flow-node { background: var(--w-orange); border-color: var(--w-orange); color: #fff; }
.tl-item.is-final .flow-num { background: #fff; color: var(--w-orange-600); border-color: var(--w-orange); }
.tl-card { padding: 1.5rem 1.6rem; border: 1px solid var(--w-line); border-radius: var(--r-lg); background: #fff; box-shadow: var(--sh-xs); }
.tl-card h3 { margin-bottom: .35rem; font-size: 1.2rem; }
.tl-card p { margin-bottom: 1rem; }
.tl-details { display: flex; flex-wrap: wrap; gap: .5rem; margin: 0; padding: 0; list-style: none; }
.tl-details li {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .35rem .75rem;
    border-radius: 999px;
    background: var(--w-bg);
    color: var(--w-ink-2);
    font-size: .84rem;
    font-weight: 600;
}
.tl-details .wi { color: var(--w-blue-700); }

.phase-card { position: relative; height: 100%; padding: 1.75rem 1.5rem; border: 1px solid var(--w-line); border-radius: var(--r-lg); background: #fff; }
.phase-card .phase-num { display: inline-block; margin-bottom: 1rem; color: var(--w-orange-600); font-size: .8rem; font-weight: 800; letter-spacing: .1em; }
.phase-card h3 { font-size: 1.08rem; margin-bottom: .5rem; }
.phase-card p { margin: 0; font-size: .92rem; }

.integration-card { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1rem 1.2rem; border: 1px solid var(--w-line); border-radius: var(--r); background: #fff; }
.integration-card strong { display: block; }
.integration-card small { color: var(--w-muted); }
.notice-card {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    padding: 1.75rem;
    border: 1px dashed #bcd8f7;
    border-radius: var(--r-xl);
    background: var(--w-blue-50);
}
.notice-card h3 { font-size: 1.1rem; margin-bottom: .4rem; }
.notice-card p { margin-bottom: 1rem; }

/* --------------------------------------------------------------------------
   Formlar
   -------------------------------------------------------------------------- */
.form-section { padding-block: clamp(3rem, 2rem + 3vw, 5rem); background: var(--w-bg); }
.form-card {
    padding: clamp(1.5rem, 1rem + 2vw, 2.5rem);
    border: 1px solid var(--w-line);
    border-radius: var(--r-xl);
    background: #fff;
    box-shadow: var(--sh-md);
}
.form-card h2 { font-size: 1.35rem; font-weight: 800; }
.form-label { margin-bottom: .4rem; color: var(--w-ink-2); font-size: .88rem; font-weight: 600; }
.form-label .req { color: var(--w-orange-600); }
.form-label .opt { color: #97a5ba; font-weight: 500; }
.form-control, .form-select {
    padding: .72rem .95rem;
    border-color: #d8e2ee;
    border-radius: 10px;
    color: var(--w-ink);
    font-size: .95rem;
    transition: border-color .2s, box-shadow .2s;
}
.form-control::placeholder { color: #a3b0c2; }
.form-control:focus, .form-select:focus {
    border-color: var(--w-blue);
    box-shadow: 0 0 0 4px rgba(0, 155, 255, .15);
}
.form-control.input-validation-error,
.form-select.input-validation-error,
.form-control.is-invalid,
.form-select.is-invalid { border-color: var(--w-danger); }
.form-control.input-validation-error:focus,
.form-control.is-invalid:focus { box-shadow: 0 0 0 4px rgba(217, 45, 32, .12); }
.form-check-input { width: 1.15em; height: 1.15em; margin-top: .2em; border-color: #c3d0e0; }
.form-check-input:checked { background-color: var(--w-blue-700); border-color: var(--w-blue-700); }
.form-check-input:focus { box-shadow: 0 0 0 4px rgba(0, 155, 255, .15); border-color: var(--w-blue); }
.form-check-input.is-invalid { border-color: var(--w-danger); }
.form-check-label { color: var(--w-muted); font-size: .88rem; }
.field-validation-error { display: block; margin-top: .35rem; color: var(--w-danger); font-size: .82rem; font-weight: 500; }
.field-validation-valid { display: none; }
.form-note { color: var(--w-muted); font-size: .82rem; }
.hp { position: absolute !important; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.btn-w[disabled] { opacity: .7; pointer-events: none; }

.aside-card {
    padding: 1.75rem;
    border: 1px solid var(--w-line);
    border-radius: var(--r-xl);
    background: #fff;
}
.aside-card + .aside-card { margin-top: 1.25rem; }
.aside-card h2 { font-size: 1.1rem; font-weight: 800; margin-bottom: 1rem; }
.aside-dark { background: var(--w-navy-900); border-color: transparent; }
.aside-dark h2 { color: #fff; }
.aside-dark p { color: #a9bbd6; }
.aside-dark .check-list li { color: #d4e1f3; }
.aside-dark .check-list .wi { background: rgba(0, 155, 255, .18); color: var(--w-blue-300); }
.contact-lines { display: grid; gap: .9rem; margin: 0; padding: 0; list-style: none; }
.contact-lines li { display: flex; gap: .8rem; align-items: center; }
.contact-lines small { display: block; color: var(--w-muted); }
.contact-lines a { color: var(--w-ink); font-weight: 600; text-decoration: none; }

.form-success { padding: clamp(2rem, 4vw, 3.5rem) 1rem; text-align: center; }
.form-success-icon {
    display: inline-grid;
    place-items: center;
    width: 72px;
    height: 72px;
    margin-bottom: 1.25rem;
    border-radius: 50%;
    background: var(--w-success-100);
    color: var(--w-success);
    font-size: 2rem;
}
.form-success h2 { margin-bottom: .6rem; }
.form-success p { max-width: 460px; margin: 0 auto 1.75rem; }

.error-page { padding: calc(var(--header-h) + 5rem) 0 6rem; text-align: center; }
.error-code {
    display: block;
    margin-bottom: .5rem;
    font-size: clamp(4rem, 3rem + 5vw, 7rem);
    font-weight: 800;
    letter-spacing: -.05em;
    line-height: 1;
}

/* --------------------------------------------------------------------------
   Kaydırma animasyonları (yalnızca JS etkinse)
   -------------------------------------------------------------------------- */
.js [data-reveal] {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .7s cubic-bezier(.2, .7, .2, 1), transform .7s cubic-bezier(.2, .7, .2, 1);
    transition-delay: calc(var(--d, 0) * 80ms);
}
.js [data-reveal].is-visible { opacity: 1; transform: none; }
.js .flow[data-reveal]::before { transform: scaleX(0); transition: transform 1.2s .2s cubic-bezier(.2, .7, .2, 1); }
.js .flow[data-reveal].is-visible::before { transform: none; }
.js .route-card[data-reveal] .rt-path { stroke-dashoffset: 1500; transition: stroke-dashoffset 2s .3s ease-out; }
.js .route-card[data-reveal].is-visible .rt-path { stroke-dashoffset: 0; }
@media (max-width: 991.98px) {
    .js .flow[data-reveal]::before { transform: scaleY(0); }
}

@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: .35; } }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }
@keyframes dash-flow { to { stroke-dashoffset: -64; } }
@keyframes walk { from { offset-distance: 0%; } to { offset-distance: 100%; } }
@keyframes target { 0%, 100% { box-shadow: 0 0 0 3px rgba(255, 122, 0, .25); } 50% { box-shadow: 0 0 0 6px rgba(255, 122, 0, .12); } }
@keyframes scan { 0%, 100% { top: .7em; } 50% { top: 3em; } }
@keyframes beam { 0%, 100% { opacity: .35; } 50% { opacity: 1; } }

/* --------------------------------------------------------------------------
   Responsive ayarlar
   -------------------------------------------------------------------------- */
@media (max-width: 1199.98px) {
    .dash { font-size: 11.5px; }
    .chip-scan { left: -.5rem; }
}
@media (max-width: 991.98px) {
    .dash-wrap { padding-left: 0; max-width: 720px; margin-inline: auto; }
    .dash-racks { right: -6%; }
    .valuebar-inner { grid-template-columns: repeat(2, 1fr); }
    .value-item:nth-child(3) { border-left: 0; }
    .value-item:nth-child(n + 3) { border-top: 1px solid var(--w-line-2); }
    .section-head-split { grid-template-columns: 1fr; }
    .device-stage { padding-top: 4.5rem; }
}
@media (max-width: 767.98px) {
    :root { --header-h: 68px; }
    .brand img { height: 30px; }
    .brand-name { font-size: 1.2rem; }
    .dash { font-size: 10.5px; }
    .dash-search { display: none; }
    .dash-top-icons { margin-left: auto; }
    .kpis { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .stock-stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .module-grid, .mini-grid { grid-template-columns: 1fr; }
    .hier-wrap { --shift: 1.35rem; }
    .hier-level { padding: .7rem .8rem; gap: .75rem; }
    .hier-level + .hier-level::before { display: none; }
    .sync-node { font-size: .78rem; padding: .35rem .6rem .35rem .35rem; gap: .35rem; }
    .sync-node .icon-tile-xs { width: 22px; height: 22px; font-size: .75rem; }
    .sync-core small { display: none; }
    .tl-item { grid-template-columns: 1fr; gap: .75rem; }
    .timeline::before { display: none; }
}
@media (max-width: 575.98px) {
    .hero-trust { grid-template-columns: 1fr; }
    .hero-actions .btn-w { width: 100%; }
    .dash-body { grid-template-columns: 1fr; }
    .dash-side { display: none; }
    .dash-grid { grid-template-columns: 1fr; }
    .float-chip { display: none; }
    .valuebar-inner { grid-template-columns: 1fr; }
    .value-item + .value-item { border-left: 0; border-top: 1px solid var(--w-line-2); }
    .value-item { padding: 1.15rem 1.25rem; }
    .cta-actions .btn-w { width: 100%; }
    .rack-row i { height: 16px; }
    .rack-row { gap: 3px; }
    .legend { display: none; }
    .device { width: 272px; }
    .notice-card { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
        transition-delay: 0s !important;
    }
    .js [data-reveal] { opacity: 1; transform: none; }
    .rt-walker { display: none; }
}
