:root {
    --primary: #1e3e62;
    --primary-dark: #152d48;
    --primary-deep: #0c1e33;
    --primary-ink: #081527;
    --primary-light: #2a5580;
    --accent: #ee3135;
    --accent-dark: #d42a2e;
    --white: #ffffff;
    --gray-50: #f8f9fb;
    --gray-100: #f1f3f7;
    --gray-200: #e2e6ed;
    --gray-300: #c8cfd9;
    --gray-400: #9aa5b4;
    --gray-500: #6b7a8d;
    --gray-600: #4a5568;
    --gray-700: #2d3748;
    --gray-800: #1a202c;
    --viz-blue: #4f8ff7;
    --viz-cyan: #3ec6d8;
    --viz-green: #34c98e;
    --viz-amber: #f5b83d;
    --viz-red: #f0564f;
    --viz-purple: #977bff;
    --viz-pink: #ef6aa5;
    --panel: #0e1a2b;
    --panel-2: #13233a;
    --panel-3: #1a2e4a;
    --panel-border: rgba(148, 178, 215, 0.14);
    --panel-text: #dbe6f5;
    --panel-dim: #8fa5c0;
    --shadow-sm: 0 1px 3px rgba(30, 62, 98, 0.06);
    --shadow-md: 0 4px 16px rgba(30, 62, 98, 0.08);
    --shadow-lg: 0 8px 32px rgba(30, 62, 98, 0.12);
    --shadow-xl: 0 16px 48px rgba(30, 62, 98, 0.16);
    --shadow-panel: 0 24px 64px rgba(5, 15, 30, 0.5);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--gray-700);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5, h6 {
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
    line-height: 1.22;
    color: var(--primary);
}
img { max-width: 100%; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-wide { max-width: 1320px; margin: 0 auto; padding: 0 24px; }
section { padding: 96px 0; position: relative; }
.section-tag {
    display: inline-flex; align-items: center; gap: 8px;
    font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--accent); margin-bottom: 16px;
}
.section-tag::before { content: ''; width: 24px; height: 2px; background: var(--accent); border-radius: 2px; }
.section-title { font-size: clamp(28px, 4vw, 42px); font-weight: 800; margin-bottom: 18px; letter-spacing: -0.02em; }
.section-desc { font-size: 17px; color: var(--gray-500); max-width: 720px; }
.section-head { max-width: 780px; margin-bottom: 56px; }
.section-head.centered { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.centered .section-tag { justify-content: center; }
.section-head.centered .section-desc { margin: 0 auto; }
.on-dark .section-title { color: var(--white); }
.on-dark .section-desc { color: rgba(219, 230, 245, 0.72); }
.fade-up { transition: opacity 0.7s ease, transform 0.7s ease; }
html.js .fade-up { opacity: 0; transform: translateY(28px); }
html.js .fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up.d1 { transition-delay: 0.08s; }
.fade-up.d2 { transition-delay: 0.16s; }
.fade-up.d3 { transition-delay: 0.24s; }
.fade-up.d4 { transition-delay: 0.32s; }
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
    html { scroll-behavior: auto; }
}
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    padding: 14px 30px; border-radius: 10px; border: none; cursor: pointer;
    font-family: inherit; font-size: 15px; font-weight: 600; text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); letter-spacing: 0.01em;
}
.btn svg { width: 18px; height: 18px; flex: none; }
.btn-accent { background: var(--accent); color: var(--white); box-shadow: 0 6px 20px rgba(238, 49, 53, 0.32); }
.btn-accent:hover { background: var(--accent-dark); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(238, 49, 53, 0.4); }
.btn-ghost { background: rgba(255, 255, 255, 0.08); color: var(--white); border: 1px solid rgba(255, 255, 255, 0.22); backdrop-filter: blur(6px); }
.btn-ghost:hover { background: rgba(255, 255, 255, 0.16); transform: translateY(-2px); }
.btn-lg { padding: 16px 36px; font-size: 16px; }
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 14px 0; transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); }
.navbar.scrolled {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 20px rgba(30, 62, 98, 0.08); padding: 8px 0;
}
.navbar .container-wide { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.nav-logo { display: flex; align-items: center; flex: none; }
.nav-logo img { height: 38px; width: auto; display: block; }
.navbar.scrolled .nav-logo .logo-white { display: none; }
.navbar:not(.scrolled) .nav-logo .logo-blue { display: none; }
.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links > li { position: relative; }
.nav-links a { text-decoration: none; font-size: 14px; font-weight: 500; color: rgba(255, 255, 255, 0.85); transition: color 0.3s; letter-spacing: 0.01em; white-space: nowrap; }
.navbar.scrolled .nav-links a { color: var(--gray-600); }
.nav-links a:hover { color: var(--white); }
.navbar.scrolled .nav-links a:hover { color: var(--primary); }
.nav-links > li > a.nav-active { position: relative; color: var(--white); font-weight: 700; }
.navbar.scrolled .nav-links > li > a.nav-active { color: var(--primary); }
.nav-links > li > a.nav-active::after { content: ''; position: absolute; left: 0; right: 0; bottom: -7px; height: 2.5px; border-radius: 2px; background: var(--accent); }
.nav-caret { display: inline-block; margin-left: 5px; border: solid currentColor; border-width: 0 1.5px 1.5px 0; padding: 2.5px; transform: rotate(45deg) translateY(-2px); }
.lang-menu { position: relative; }
.lang-globe { display: inline-flex; align-items: center; gap: 7px; padding: 7px 13px; border-radius: 9px; border: 1px solid rgba(255, 255, 255, 0.18); background: rgba(255, 255, 255, 0.1); color: rgba(255, 255, 255, 0.85); font-family: inherit; font-size: 12.5px; font-weight: 700; letter-spacing: 0.03em; cursor: pointer; transition: all 0.3s; }
.lang-globe svg { width: 15px; height: 15px; }
.lang-globe:hover { background: rgba(255, 255, 255, 0.18); }
.navbar.scrolled .lang-globe { background: var(--gray-100); border-color: var(--gray-200); color: var(--gray-600); }
.lang-dropdown { position: absolute; top: calc(100% + 10px); right: 0; background: var(--white); border: 1px solid var(--gray-200); border-radius: 12px; box-shadow: var(--shadow-xl); padding: 6px; min-width: 150px; opacity: 0; visibility: hidden; transform: translateY(6px); transition: all 0.25s ease; z-index: 1001; }
.lang-menu.open .lang-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-links .lang-opt { display: flex; align-items: center; justify-content: space-between; gap: 10px; width: 100%; padding: 9px 12px; border: none; background: none; border-radius: 8px; font-family: inherit; font-size: 13.5px; font-weight: 500; color: var(--gray-600); cursor: pointer; text-align: left; text-decoration: none; transition: all 0.2s ease; }
.nav-links .lang-opt:hover { background: var(--gray-50); color: var(--primary); }
.nav-links .lang-opt.active, .navbar.scrolled .nav-links .lang-opt.active { color: var(--primary); font-weight: 700; }
.nav-links .lang-opt.active::after { content: '\2713'; color: var(--viz-green); font-weight: 800; }
.nav-cta { padding: 10px 22px !important; background: var(--accent); color: var(--white) !important; border-radius: 9px; font-weight: 600 !important; font-size: 13px !important; transition: all 0.3s !important; letter-spacing: 0.02em; }
.nav-cta:hover { background: var(--accent-dark) !important; transform: translateY(-1px); box-shadow: 0 4px 12px rgba(238, 49, 53, 0.3); }
.mobile-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 6px; }
.mobile-toggle span { width: 22px; height: 2px; background: var(--white); border-radius: 2px; transition: all 0.3s; }
.navbar.scrolled .mobile-toggle span { background: var(--primary); }
.hero {
    min-height: 100vh;
    background:
        radial-gradient(ellipse 60% 50% at 78% 18%, rgba(238, 49, 53, 0.10), transparent 65%),
        radial-gradient(ellipse 55% 60% at 12% 85%, rgba(79, 143, 247, 0.12), transparent 60%),
        linear-gradient(150deg, var(--primary-ink) 0%, var(--primary-deep) 45%, var(--primary-dark) 100%);
    display: flex; align-items: center; position: relative; overflow: hidden; padding: 140px 0 90px;
}
.hero-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px); background-size: 56px 56px; mask-image: radial-gradient(ellipse 90% 80% at 50% 40%, #000 30%, transparent 75%); -webkit-mask-image: radial-gradient(ellipse 90% 80% at 50% 40%, #000 30%, transparent 75%); }
.hero .container-wide { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: 48px; align-items: center; position: relative; z-index: 2; }
@keyframes pulse-dot { 0% { box-shadow: 0 0 0 0 rgba(52, 201, 142, 0.55); } 70% { box-shadow: 0 0 0 9px rgba(52, 201, 142, 0); } 100% { box-shadow: 0 0 0 0 rgba(52, 201, 142, 0); } }
.hero h1 { font-size: clamp(34px, 4.6vw, 56px); font-weight: 800; color: var(--white); letter-spacing: -0.025em; margin-bottom: 22px; }
.hero h1 .grad { background: linear-gradient(100deg, #ff6b6e 0%, var(--accent) 55%, #ff9a5c 110%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hero-sub { font-size: 17.5px; color: rgba(219, 230, 245, 0.78); max-width: 540px; margin-bottom: 34px; line-height: 1.75; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 42px; }
.hero-visual { position: relative; min-height: 520px; }
.hv-main { position: relative; z-index: 2; animation: hv-float 9s ease-in-out infinite; }
.hv-card-alarm { position: absolute; z-index: 3; right: -16px; top: -20px; width: 250px; animation: hv-float 7s ease-in-out infinite 0.8s; }
.hv-card-net { position: absolute; z-index: 3; left: -18px; bottom: 8px; width: 235px; animation: hv-float 8s ease-in-out infinite 1.6s; }
@keyframes hv-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
.mk-window {
    background: linear-gradient(180deg, var(--panel-2), var(--panel));
    border: 1px solid var(--panel-border); border-radius: 16px;
    box-shadow: var(--shadow-panel); overflow: hidden;
    font-family: 'Inter', sans-serif;
}
.mk-bar { display: flex; align-items: center; gap: 8px; padding: 12px 16px; border-bottom: 1px solid var(--panel-border); background: rgba(255, 255, 255, 0.02); }
.mk-dots { display: flex; gap: 6px; }
.mk-dots i { width: 9px; height: 9px; border-radius: 50%; background: #3a4d6b; }
.mk-dots i:first-child { background: #f0564f; }
.mk-dots i:nth-child(2) { background: #f5b83d; }
.mk-dots i:nth-child(3) { background: #34c98e; }
.mk-bar-title { font-size: 11.5px; color: var(--panel-dim); font-weight: 600; letter-spacing: 0.04em; margin-left: 6px; }
.mk-live { margin-left: auto; display: inline-flex; align-items: center; gap: 6px; font-size: 10px; font-weight: 700; letter-spacing: 0.08em; color: var(--viz-green); }
.mk-live i { width: 6px; height: 6px; border-radius: 50%; background: var(--viz-green); animation: pulse-dot 2s infinite; }
.mk-body { padding: 16px; }
.mk-kpis { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-bottom: 12px; }
.mk-kpi { background: rgba(255, 255, 255, 0.035); border: 1px solid var(--panel-border); border-radius: 10px; padding: 10px 12px; }
.mk-kpi span { display: block; font-size: 9px; font-weight: 700; letter-spacing: 0.09em; color: var(--panel-dim); text-transform: uppercase; margin-bottom: 3px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mk-kpi b { display: block; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 17px; font-weight: 800; color: var(--panel-text); letter-spacing: -0.01em; line-height: 1.15; }
.mk-kpi em { display: inline-flex; align-items: center; gap: 3px; font-style: normal; font-size: 9.5px; font-weight: 700; margin-top: 2px; }
.mk-kpi em.up { color: var(--viz-green); }
.mk-kpi em.down { color: var(--viz-red); }
.mk-chart { background: rgba(255, 255, 255, 0.03); border: 1px solid var(--panel-border); border-radius: 10px; padding: 12px; }
.mk-chart-title { font-size: 10px; font-weight: 700; letter-spacing: 0.07em; color: var(--panel-dim); text-transform: uppercase; margin-bottom: 8px; display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.mk-legend { display: flex; gap: 10px; font-size: 9px; font-weight: 600; color: var(--panel-dim); text-transform: none; letter-spacing: 0; }
.mk-legend i { display: inline-block; width: 7px; height: 7px; border-radius: 2px; margin-right: 4px; }
.mk-chart svg { display: block; width: 100%; height: auto; }
.mk-row { display: grid; gap: 10px; }
.mk-grid-2 { grid-template-columns: 1.5fr 1fr; }
.mk-footnote { display: flex; justify-content: space-between; font-size: 9px; color: var(--panel-dim); margin-top: 6px; font-weight: 500; }
.mk-chip { display: inline-flex; align-items: center; gap: 5px; padding: 3px 9px; border-radius: 100px; font-size: 9.5px; font-weight: 700; letter-spacing: 0.02em; border: 1px solid transparent; }
.chip-red { color: #ff8b86; background: rgba(240, 86, 79, 0.12); border-color: rgba(240, 86, 79, 0.3); }
.chip-green { color: #6fe0b0; background: rgba(52, 201, 142, 0.12); border-color: rgba(52, 201, 142, 0.3); }
.chip-amber { color: #ffd47e; background: rgba(245, 184, 61, 0.12); border-color: rgba(245, 184, 61, 0.32); }
.chip-blue { color: #93bdfb; background: rgba(79, 143, 247, 0.13); border-color: rgba(79, 143, 247, 0.32); }
.chip-purple { color: #c3b1ff; background: rgba(151, 123, 255, 0.13); border-color: rgba(151, 123, 255, 0.32); }
.chip-gray { color: var(--panel-dim); background: rgba(255, 255, 255, 0.05); border-color: var(--panel-border); }
.mk-heat { display: grid; grid-template-columns: repeat(16, 1fr); gap: 3px; }
.mk-heat i { display: block; aspect-ratio: 1.35; border-radius: 2.5px; background: rgba(79, 143, 247, calc(0.06 + var(--v) * 0.85)); }
.mk-donut { position: relative; width: 92px; height: 92px; border-radius: 50%; margin: 0 auto; }
.mk-donut::after { content: ''; position: absolute; inset: 14px; border-radius: 50%; background: var(--panel-2); }
.mk-donut-label { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; z-index: 2; }
.mk-donut-label b { font-size: 15px; color: var(--panel-text); font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; }
.mk-donut-label span { font-size: 8px; color: var(--panel-dim); font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; }
.mk-feed { display: flex; flex-direction: column; gap: 10px; }
.mk-post { background: rgba(255, 255, 255, 0.035); border: 1px solid var(--panel-border); border-radius: 12px; padding: 12px 14px; }
.mk-post-head { display: flex; align-items: center; gap: 9px; margin-bottom: 8px; }
.mk-avatar { width: 30px; height: 30px; border-radius: 50%; flex: none; display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 800; color: #fff; font-family: 'Plus Jakarta Sans', sans-serif; }
.mk-post-head b { font-size: 12px; color: var(--panel-text); font-weight: 700; display: block; line-height: 1.2; }
.mk-post-head span { font-size: 10px; color: var(--panel-dim); }
.mk-plat { margin-left: auto; width: 22px; height: 22px; border-radius: 6px; display: flex; align-items: center; justify-content: center; }
.mk-plat svg { width: 12px; height: 12px; }
.mk-lines { display: flex; flex-direction: column; gap: 5px; margin-bottom: 9px; }
.mk-lines i { display: block; height: 7px; border-radius: 4px; background: rgba(219, 230, 245, 0.13); }
.mk-lines i:last-child { width: 62%; }
.mk-post-chips { display: flex; gap: 6px; flex-wrap: wrap; }
.mk-net svg { display: block; width: 100%; height: auto; }
.net-links line { stroke: rgba(148, 178, 215, 0.16); stroke-width: 1; }
.net-bridges line { stroke: rgba(238, 49, 53, 0.4); stroke-width: 1.4; stroke-dasharray: 5 4; animation: dashmove 20s linear infinite; }
@keyframes dashmove { to { stroke-dashoffset: -180; } }
.net-node { opacity: 0.92; }
.net-node.c0 { fill: var(--viz-blue); }
.net-node.c1 { fill: var(--viz-purple); }
.net-node.c2 { fill: var(--viz-amber); }
.net-node.c3 { fill: var(--viz-green); }
.net-node.c4 { fill: var(--viz-pink); }
.net-node.hub { animation: hub-pulse 3.2s ease-in-out infinite; transform-origin: center; transform-box: fill-box; }
@keyframes hub-pulse { 0%, 100% { opacity: 0.95; } 50% { opacity: 0.6; } }
.net-ring { fill: none; stroke-width: 1.6; }
.rol-merkez { stroke: #ff8b86; }
.rol-baslatici { stroke: var(--viz-amber); }
.rol-kopru { stroke: var(--viz-cyan); }
.rol-guclendirici { stroke: var(--viz-green); }
.mk-net-legend { display: flex; flex-wrap: wrap; gap: 8px 14px; padding: 10px 4px 2px; font-size: 10px; color: var(--panel-dim); font-weight: 600; }
.mk-net-legend i { display: inline-block; width: 9px; height: 9px; border-radius: 50%; border: 1.6px solid; margin-right: 5px; vertical-align: -1px; }
.mk-findings { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 10px; }
.mk-gauge { position: relative; width: 170px; margin: 0 auto; }
.mk-gauge svg { display: block; width: 100%; height: auto; }
.mk-gauge-val { position: absolute; left: 0; right: 0; bottom: 2px; text-align: center; }
.mk-gauge-val b { display: block; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 21px; font-weight: 800; color: var(--panel-text); }
.mk-gauge-val span { font-size: 8.5px; font-weight: 700; letter-spacing: 0.08em; color: var(--panel-dim); text-transform: uppercase; }
.mk-health { display: flex; flex-direction: column; gap: 9px; }
.mk-health-row { font-size: 10px; color: var(--panel-dim); font-weight: 600; }
.mk-health-row .hr-top { display: flex; justify-content: space-between; margin-bottom: 4px; }
.mk-health-row .hr-top b { color: var(--panel-text); font-weight: 700; }
.mk-track { height: 5px; border-radius: 3px; background: rgba(255, 255, 255, 0.07); overflow: hidden; }
.mk-track i { display: block; height: 100%; border-radius: 3px; }
.alarm-th { stroke: rgba(240, 86, 79, 0.75); stroke-width: 1.3; stroke-dasharray: 6 5; }
.alarm-zone { fill: rgba(240, 86, 79, 0.07); }
.mk-notif { display: flex; align-items: flex-start; gap: 10px; background: rgba(255, 255, 255, 0.04); border: 1px solid var(--panel-border); border-left: 3px solid var(--viz-red); border-radius: 10px; padding: 10px 12px; }
.mk-notif.resolved { border-left-color: var(--viz-green); }
.mk-notif-ic { width: 28px; height: 28px; border-radius: 8px; flex: none; display: flex; align-items: center; justify-content: center; background: rgba(240, 86, 79, 0.14); color: #ff8b86; }
.mk-notif.resolved .mk-notif-ic { background: rgba(52, 201, 142, 0.14); color: #6fe0b0; }
.mk-notif-ic svg { width: 14px; height: 14px; }
.mk-notif b { display: block; font-size: 11px; color: var(--panel-text); font-weight: 700; line-height: 1.35; }
.mk-notif span { font-size: 9.5px; color: var(--panel-dim); }
.mk-tabs { display: flex; gap: 4px; margin-bottom: 12px; flex-wrap: wrap; }
.mk-tab { padding: 5px 12px; border-radius: 8px; font-size: 10px; font-weight: 700; color: var(--panel-dim); background: transparent; border: 1px solid transparent; }
.mk-tab.on { color: #93bdfb; background: rgba(79, 143, 247, 0.12); border-color: rgba(79, 143, 247, 0.3); }
.mk-report { display: grid; grid-template-columns: 200px 1fr; gap: 16px; align-items: start; }
.mk-cover { aspect-ratio: 3/4; border-radius: 10px; background: linear-gradient(160deg, #16304f, #0c1e33 70%); border: 1px solid var(--panel-border); padding: 18px 16px; display: flex; flex-direction: column; box-shadow: 0 12px 32px rgba(5, 15, 30, 0.55); }
.mk-cover-logo { width: 34px; height: 34px; border-radius: 9px; background: var(--accent); display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 800; font-size: 17px; font-family: 'Plus Jakarta Sans', sans-serif; }
.mk-cover-lines { margin-top: auto; }
.mk-cover-lines b { display: block; font-size: 13px; color: #fff; font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; line-height: 1.35; margin-bottom: 8px; }
.mk-cover-lines i { display: block; height: 6px; border-radius: 3px; background: rgba(219, 230, 245, 0.18); margin-bottom: 5px; }
.mk-cover-lines i:last-child { width: 55%; }
.mk-cover-meta { margin-top: 14px; padding-top: 10px; border-top: 1px solid rgba(219, 230, 245, 0.14); font-size: 8.5px; color: rgba(219, 230, 245, 0.55); font-weight: 600; letter-spacing: 0.05em; display: flex; justify-content: space-between; }
.mk-pages { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.mk-page { border-radius: 8px; background: rgba(255, 255, 255, 0.04); border: 1px solid var(--panel-border); padding: 10px; }
.mk-page-title { display: block; height: 5px; width: 55%; border-radius: 3px; background: rgba(219, 230, 245, 0.28); margin-bottom: 8px; }
.mk-page .row { display: flex; gap: 6px; align-items: flex-end; height: 34px; }
.mk-page .row i { flex: 1; border-radius: 2.5px 2.5px 0 0; background: var(--viz-blue); opacity: 0.75; }
.mk-formats { display: flex; gap: 8px; margin-top: 14px; flex-wrap: wrap; }
.mk-format { display: inline-flex; align-items: center; gap: 6px; padding: 6px 12px; border-radius: 8px; background: rgba(255, 255, 255, 0.05); border: 1px solid var(--panel-border); font-size: 10.5px; font-weight: 700; color: var(--panel-text); }
.mk-format i { width: 8px; height: 8px; border-radius: 2px; }
.metrics-band { background: linear-gradient(180deg, var(--primary-ink), var(--primary-deep)); padding: 64px 0; border-top: 1px solid rgba(148, 178, 215, 0.08); }
.metrics-row { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.metric-cell { text-align: center; padding: 10px 6px; }
.metric-cell b { display: block; font-family: 'Plus Jakarta Sans', sans-serif; font-size: clamp(26px, 3vw, 38px); font-weight: 800; color: var(--white); letter-spacing: -0.02em; margin-bottom: 4px; }
.metric-cell b em { font-style: normal; color: var(--accent); }
.metric-cell b .counter { font-size: inherit; color: inherit; display: inline; }
.metric-cell > span { font-size: 12.5px; color: rgba(219, 230, 245, 0.62); font-weight: 500; line-height: 1.45; display: block; }
.sources-section { background: var(--white); }
.sources-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.source-card {
    background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg);
    padding: 30px 26px; transition: all 0.35s ease; position: relative; overflow: hidden;
}
.source-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--gray-300); }
.source-icon { width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.source-icon svg { width: 26px; height: 26px; }
.source-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.source-card p { font-size: 13.5px; color: var(--gray-500); line-height: 1.65; }
.how-section { background: var(--gray-50); }
.pipeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; position: relative; }
.pipe-step { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 30px 26px; position: relative; transition: all 0.35s ease; }
.pipe-step:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.pipe-num { position: absolute; top: 24px; right: 24px; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 42px; font-weight: 800; color: var(--gray-100); line-height: 1; }
.pipe-ic { width: 52px; height: 52px; border-radius: 14px; background: linear-gradient(135deg, var(--primary), var(--primary-light)); color: #fff; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; position: relative; z-index: 1; }
.pipe-ic svg { width: 25px; height: 25px; }
.pipe-step h3 { font-size: 17.5px; font-weight: 700; margin-bottom: 9px; position: relative; z-index: 1; }
.pipe-step p { font-size: 13.5px; color: var(--gray-500); line-height: 1.65; position: relative; z-index: 1; }
.pipe-arrow { position: absolute; top: 50%; right: -14px; transform: translateY(-50%); z-index: 2; color: var(--gray-300); }
.pipe-arrow svg { width: 22px; height: 22px; }
.ai-section { background: radial-gradient(ellipse 70% 60% at 85% 10%, rgba(151, 123, 255, 0.10), transparent 60%), radial-gradient(ellipse 55% 55% at 8% 90%, rgba(238, 49, 53, 0.07), transparent 55%), linear-gradient(165deg, var(--primary-ink), var(--primary-deep) 60%, #0e2440); }
.ai-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.ai-dims { display: flex; flex-wrap: wrap; gap: 10px; margin: 26px 0 30px; }
.ai-dim { display: inline-flex; align-items: center; gap: 8px; padding: 9px 16px; border-radius: 100px; background: rgba(255, 255, 255, 0.06); border: 1px solid rgba(148, 178, 215, 0.2); font-size: 13px; font-weight: 600; color: rgba(219, 230, 245, 0.9); transition: all 0.3s ease; }
.ai-dim:hover { background: rgba(255, 255, 255, 0.11); transform: translateY(-2px); border-color: rgba(148, 178, 215, 0.4); }
.ai-dim i { width: 7px; height: 7px; border-radius: 50%; flex: none; }
.ai-dim-more { border-color: rgba(238, 49, 53, 0.55); background: rgba(238, 49, 53, 0.1); color: #ff9a96; text-decoration: none; cursor: pointer; }
.ai-dim-more:hover { background: rgba(238, 49, 53, 0.2); border-color: rgba(238, 49, 53, 0.8); }
.ai-points { display: flex; flex-direction: column; gap: 16px; }
.ai-point { display: flex; gap: 14px; align-items: flex-start; }
.ai-point-ic { width: 40px; height: 40px; border-radius: 11px; background: rgba(238, 49, 53, 0.12); border: 1px solid rgba(238, 49, 53, 0.25); color: #ff8b86; display: flex; align-items: center; justify-content: center; flex: none; }
.ai-point-ic svg { width: 19px; height: 19px; }
.ai-point b { display: block; font-size: 15px; color: var(--white); font-weight: 700; margin-bottom: 3px; font-family: 'Plus Jakarta Sans', sans-serif; }
.ai-point p { font-size: 13.5px; color: rgba(219, 230, 245, 0.65); line-height: 1.65; }
.ai-grid .ai-points { gap: 18px; }
.ai-points .ai-point { background: rgba(255, 255, 255, 0.045); border: 1px solid rgba(148, 178, 215, 0.16); border-radius: 16px; padding: 22px; transition: all 0.3s ease; }
.ai-points .ai-point:hover { background: rgba(255, 255, 255, 0.07); transform: translateY(-3px); }
.modules-section { background: var(--white); padding-bottom: 40px; }
.module-row { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 60px; align-items: center; padding: 58px 0; }
.module-row.flip .module-copy { order: 2; }
.module-row.flip .module-visual { order: 1; }
.module-row + .module-row { border-top: 1px solid var(--gray-100); }
.module-kicker { display: inline-flex; align-items: center; gap: 9px; font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); margin-bottom: 14px; }
.module-kicker .mk-ic { width: 30px; height: 30px; border-radius: 9px; background: rgba(238, 49, 53, 0.09); display: flex; align-items: center; justify-content: center; color: var(--accent); }
.module-kicker .mk-ic svg { width: 15px; height: 15px; }
.module-copy h3 { font-size: clamp(24px, 2.8vw, 32px); font-weight: 800; letter-spacing: -0.02em; margin-bottom: 14px; }
.module-copy > p { font-size: 15.5px; color: var(--gray-500); margin-bottom: 22px; line-height: 1.75; }
.module-feats { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 26px; }
.module-feats li { display: flex; gap: 11px; align-items: flex-start; font-size: 14.5px; color: var(--gray-600); line-height: 1.6; }
.module-feats li svg { width: 18px; height: 18px; flex: none; color: var(--viz-green); margin-top: 3px; }
.module-feats li b { color: var(--gray-700); font-weight: 600; }
.module-visual { position: relative; }
.module-visual .glow { position: absolute; inset: 10% 6%; border-radius: 50%; filter: blur(60px); opacity: 0.16; z-index: 0; }
.module-visual .mk-window { position: relative; z-index: 1; }
.usecases-section { background: var(--gray-50); }
.usecase-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.usecase-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 28px 26px; transition: all 0.35s ease; display: flex; flex-direction: column; }
.usecase-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.uc-ic { width: 50px; height: 50px; border-radius: 13px; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; background: linear-gradient(135deg, var(--primary), var(--primary-light)); color: #fff; box-shadow: 0 6px 16px rgba(30, 62, 98, 0.22); }
.uc-ic svg { width: 23px; height: 23px; }
.usecase-card h3 { font-size: 16.5px; font-weight: 700; margin-bottom: 8px; }
.usecase-card p { font-size: 13.5px; color: var(--gray-500); line-height: 1.65; flex: 1; }
.uc-q { margin-top: 16px; padding-top: 14px; border-top: 1px dashed var(--gray-200); font-size: 12.5px; font-weight: 600; color: var(--primary); font-style: italic; line-height: 1.55; }
.industries-section { background: var(--white); }
.industry-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.industry-card { display: flex; align-items: center; gap: 14px; background: var(--gray-50); border: 1px solid var(--gray-200); border-radius: 14px; padding: 18px 20px; transition: all 0.3s ease; }
.industry-card:hover { background: var(--white); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.industry-icon { width: 42px; height: 42px; border-radius: 11px; background: var(--white); border: 1px solid var(--gray-200); color: var(--primary); display: flex; align-items: center; justify-content: center; flex: none; }
.industry-icon svg { width: 20px; height: 20px; }
.industry-card b { font-size: 14px; color: var(--gray-700); font-weight: 600; line-height: 1.35; }
.why-section { background: var(--gray-50); }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.why-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 30px 28px; transition: all 0.35s ease; }
.why-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.why-ic { width: 50px; height: 50px; border-radius: 13px; background: linear-gradient(135deg, var(--primary), var(--primary-light)); color: #fff; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.why-ic svg { width: 24px; height: 24px; }
.why-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 9px; }
.why-card p { font-size: 13.5px; color: var(--gray-500); line-height: 1.7; }
.security-band { background: linear-gradient(150deg, var(--primary-ink), var(--primary-deep) 70%, var(--primary-dark)); padding: 80px 0; }
.security-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 48px; }
.sec-item { text-align: left; padding: 24px; border-radius: 16px; background: rgba(255, 255, 255, 0.04); border: 1px solid rgba(148, 178, 215, 0.14); }
.sec-item .sec-ic { width: 42px; height: 42px; border-radius: 11px; background: rgba(52, 201, 142, 0.12); color: #6fe0b0; display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.sec-item .sec-ic svg { width: 20px; height: 20px; }
.sec-item b { display: block; font-size: 15px; color: var(--white); font-weight: 700; margin-bottom: 6px; font-family: 'Plus Jakarta Sans', sans-serif; }
.sec-item p { font-size: 13px; color: rgba(219, 230, 245, 0.62); line-height: 1.6; }
.faq-section { background: var(--gray-50); }
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { background: var(--white); border: 1px solid var(--gray-200); border-radius: 14px; margin-bottom: 12px; overflow: hidden; transition: box-shadow 0.3s ease; }
.faq-item.active { box-shadow: var(--shadow-md); }
.faq-q { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 20px 24px; background: none; border: none; cursor: pointer; font-family: inherit; font-size: 15.5px; font-weight: 600; color: var(--gray-700); text-align: left; }
.faq-q .faq-ic { flex: none; width: 26px; height: 26px; border-radius: 8px; background: var(--gray-100); display: flex; align-items: center; justify-content: center; transition: all 0.3s ease; color: var(--primary); }
.faq-item.active .faq-q .faq-ic { background: var(--primary); color: #fff; transform: rotate(45deg); }
.faq-ic svg { width: 14px; height: 14px; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-item.active .faq-answer { max-height: 320px; }
.faq-answer p { padding: 0 24px 22px; font-size: 14px; color: var(--gray-500); line-height: 1.75; }
.cta-section {
    background:
        radial-gradient(ellipse 55% 65% at 20% 20%, rgba(238, 49, 53, 0.13), transparent 60%),
        radial-gradient(ellipse 50% 60% at 85% 80%, rgba(79, 143, 247, 0.12), transparent 55%),
        linear-gradient(150deg, var(--primary-ink), var(--primary-deep));
    text-align: center; padding: 100px 0;
}
.cta-section h2 { font-size: clamp(28px, 4vw, 44px); font-weight: 800; color: var(--white); letter-spacing: -0.02em; margin-bottom: 18px; }
.cta-section p { font-size: 17px; color: rgba(219, 230, 245, 0.72); max-width: 640px; margin: 0 auto 36px; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.contact-section { background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 60px; align-items: flex-start; }
.contact-info h3 { font-size: 22px; font-weight: 800; margin-bottom: 12px; }
.contact-info > p { font-size: 15px; color: var(--gray-500); margin-bottom: 28px; line-height: 1.75; }
.contact-points { display: flex; flex-direction: column; gap: 18px; margin-bottom: 30px; }
.contact-point { display: flex; gap: 13px; align-items: flex-start; }
.contact-point svg { width: 20px; height: 20px; color: var(--viz-green); flex: none; margin-top: 3px; }
.contact-point div b { display: block; font-size: 14.5px; color: var(--gray-700); font-weight: 600; }
.contact-point div span { font-size: 13px; color: var(--gray-500); line-height: 1.55; }
.contact-mail { display: inline-flex; align-items: center; gap: 10px; font-size: 15px; font-weight: 600; color: var(--primary); text-decoration: none; padding: 12px 20px; background: var(--gray-50); border: 1px solid var(--gray-200); border-radius: 11px; transition: all 0.3s ease; }
.contact-mail:hover { border-color: var(--primary); box-shadow: var(--shadow-md); }
.contact-mail svg { width: 18px; height: 18px; }
.contact-form { background: var(--gray-50); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 36px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--gray-600); margin-bottom: 7px; }
.form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 12px 15px; border: 1.5px solid var(--gray-200); border-radius: 10px;
    font-family: inherit; font-size: 14px; color: var(--gray-700); background: var(--white);
    transition: border-color 0.25s ease, box-shadow 0.25s ease; outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(30, 62, 98, 0.09); }
.form-group textarea { min-height: 110px; resize: vertical; }
.form-note { font-size: 12px; color: var(--gray-400); margin-top: 14px; line-height: 1.55; }
.form-success { display: none; text-align: center; padding: 40px 10px; }
.form-success.show { display: block; }
.form-success .fs-ic { width: 60px; height: 60px; border-radius: 50%; background: rgba(52, 201, 142, 0.12); color: #1d9e6e; display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; }
.form-success .fs-ic svg { width: 28px; height: 28px; }
.form-success b { display: block; font-size: 18px; color: var(--gray-700); font-family: 'Plus Jakarta Sans', sans-serif; margin-bottom: 8px; }
.form-success p { font-size: 14px; color: var(--gray-500); }
.footer { background: var(--primary-ink); padding: 70px 0 0; color: rgba(219, 230, 245, 0.65); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 44px; padding-bottom: 48px; }
.footer-brand img { height: 40px; margin-bottom: 18px; }
.footer-brand p { font-size: 13.5px; line-height: 1.7; max-width: 300px; margin-bottom: 22px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a, .footer-social .soc { width: 36px; height: 36px; border-radius: 9px; background: rgba(255, 255, 255, 0.06); border: 1px solid rgba(148, 178, 215, 0.15); display: flex; align-items: center; justify-content: center; color: rgba(219, 230, 245, 0.7); transition: all 0.3s ease; }
.footer-social a:hover { background: var(--accent); border-color: var(--accent); color: #fff; transform: translateY(-2px); }
.footer-social .soc { cursor: default; }
.footer-social svg { width: 16px; height: 16px; }
.footer h4 { font-size: 13px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255, 255, 255, 0.9); margin-bottom: 18px; }
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer ul a { font-size: 13.5px; color: rgba(219, 230, 245, 0.6); text-decoration: none; transition: color 0.25s ease; }
.footer ul a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(148, 178, 215, 0.12); padding: 22px 0; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 12.5px; color: rgba(219, 230, 245, 0.45); }
.footer-bottom .fb-links { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-bottom a { color: rgba(219, 230, 245, 0.55); text-decoration: none; }
.footer-bottom a:hover { color: #fff; }
.back-to-top { position: fixed; bottom: 28px; right: 28px; width: 46px; height: 46px; border-radius: 13px; background: var(--primary); color: #fff; border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transform: translateY(12px); transition: all 0.35s ease; z-index: 900; box-shadow: var(--shadow-lg); }
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--accent); }
.back-to-top svg { width: 20px; height: 20px; }
@media (max-width: 1100px) {
    .hero .container-wide { grid-template-columns: 1fr; gap: 56px; }
    .hero-visual { max-width: 640px; margin: 0 auto; width: 100%; }
    .metrics-row { grid-template-columns: repeat(3, 1fr); row-gap: 34px; }
    .sources-grid { grid-template-columns: repeat(2, 1fr); }
    .usecase-grid { grid-template-columns: repeat(2, 1fr); }
    .industry-grid { grid-template-columns: repeat(3, 1fr); }
    .security-grid { grid-template-columns: repeat(2, 1fr); }
    .pipeline { grid-template-columns: repeat(2, 1fr); }
    .pipe-arrow { display: none; }
    .module-row, .ai-grid { grid-template-columns: 1fr; gap: 40px; }
    .module-row.flip .module-copy { order: 1; }
    .module-row.flip .module-visual { order: 2; }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
    section { padding: 68px 0; }
    .nav-links {
        position: fixed; top: 0; right: -100%; width: min(320px, 84vw); height: 100vh;
        background: var(--white); flex-direction: column; align-items: flex-start;
        padding: 90px 30px 40px; gap: 20px; box-shadow: -12px 0 40px rgba(8, 21, 39, 0.18);
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1); overflow-y: auto;
    }
    .nav-links.active { right: 0; }
    .nav-links a { color: var(--gray-600) !important; font-size: 16px; }
    .nav-links .nav-cta { color: var(--white) !important; }
    .nav-links > li > a.nav-active::after { display: none; }
    .lang-menu { width: 100%; }
    .nav-links .lang-opt.active { color: var(--primary) !important; }
    .lang-globe { background: var(--gray-100); border-color: var(--gray-200); color: var(--gray-600); }
    .lang-dropdown { position: static; box-shadow: none; border: none; padding: 4px 0 0 6px; min-width: 0; transform: none; transition: none; display: none; }
    .lang-menu.open .lang-dropdown { opacity: 1; visibility: visible; display: block; }
    .mobile-toggle { display: flex; z-index: 1002; }
    .mobile-toggle.open span { background: var(--primary); }
    .mobile-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .mobile-toggle.open span:nth-child(2) { opacity: 0; }
    .mobile-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
    .hero { padding: 120px 0 70px; }
    .hv-card-alarm { display: none; }
    .hv-card-net { display: none; }
    .hero-visual { min-height: 0; }
    .metrics-row { grid-template-columns: repeat(2, 1fr); }
    .metrics-row .metric-cell:last-child { grid-column: 1 / -1; }
    .sources-grid, .usecase-grid, .pipeline, .why-grid, .security-grid { grid-template-columns: 1fr; }
    .industry-grid { grid-template-columns: repeat(2, 1fr); }
    .mk-kpis { grid-template-columns: repeat(2, 1fr); }
    .mk-grid-2 { grid-template-columns: 1fr; }
    .mk-report { grid-template-columns: 1fr; }
    .mk-cover { max-width: 220px; }
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; align-items: flex-start; }
    .metric-cell b { font-size: 26px; }
}
@media (max-width: 480px) {
    .container, .container-wide { padding: 0 18px; }
    .hero h1 { font-size: 31px; }
    .industry-grid { grid-template-columns: 1fr; }
    .mk-kpis { grid-template-columns: repeat(2, 1fr); }
    .btn { width: 100%; }
    .hero-btns .btn, .cta-btns .btn { width: 100%; }
}
.hero h1 .h1-line { display: block; }
.rot-caret { display: inline-block; width: 3px; height: 0.9em; background: var(--accent); margin: 0 10px 0 4px; vertical-align: -0.08em; animation: caret-blink 1s step-end infinite; border-radius: 2px; }
@keyframes caret-blink { 50% { opacity: 0; } }
.marquee-band { background: var(--gray-50); border-top: 1px solid var(--gray-200); border-bottom: 1px solid var(--gray-200); overflow: hidden; padding: 18px 0; position: relative; }
.marquee-band::before, .marquee-band::after { content: ''; position: absolute; top: 0; bottom: 0; width: 90px; z-index: 2; pointer-events: none; }
.marquee-band::before { left: 0; background: linear-gradient(90deg, var(--gray-50), transparent); }
.marquee-band::after { right: 0; background: linear-gradient(-90deg, var(--gray-50), transparent); }
.marquee-track { display: flex; gap: 44px; width: max-content; animation: marquee 42s linear infinite; }
.marquee-band:hover .marquee-track { animation-play-state: paused; }
.marquee-track span { display: inline-flex; align-items: center; gap: 44px; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 14px; font-weight: 700; letter-spacing: 0.05em; color: var(--gray-500); white-space: nowrap; text-transform: uppercase; }
.marquee-track span::after { content: '✦'; color: var(--accent); font-size: 11px; opacity: 0.8; }
@keyframes marquee { to { transform: translateX(-50%); } }
.anatomy-section {
    background:
        radial-gradient(ellipse 60% 55% at 15% 25%, rgba(238, 49, 53, 0.10), transparent 60%),
        radial-gradient(ellipse 55% 60% at 90% 85%, rgba(79, 143, 247, 0.08), transparent 55%),
        linear-gradient(160deg, #060f1d, var(--primary-ink) 55%, var(--primary-deep));
    overflow: hidden;
}
.anatomy-grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 64px; align-items: center; }
.sonar { position: relative; width: min(320px, 70vw); aspect-ratio: 1; margin: 0 auto 34px; }
.sonar-ring { position: absolute; inset: 0; border-radius: 50%; border: 1px solid rgba(148, 178, 215, 0.22); }
.sonar-ring.r2 { inset: 18%; border-color: rgba(148, 178, 215, 0.16); }
.sonar-ring.r3 { inset: 36%; border-color: rgba(148, 178, 215, 0.12); }
.sonar-core { position: absolute; inset: 46%; border-radius: 50%; background: var(--accent); box-shadow: 0 0 24px rgba(238, 49, 53, 0.7); }
.sonar-pulse { position: absolute; inset: 0; border-radius: 50%; border: 2px solid rgba(238, 49, 53, 0.5); animation: sonar-pulse 3.2s ease-out infinite; }
.sonar-pulse.p2 { animation-delay: 1.05s; }
.sonar-pulse.p3 { animation-delay: 2.1s; }
@keyframes sonar-pulse { 0% { transform: scale(0.12); opacity: 1; } 100% { transform: scale(1); opacity: 0; } }
.sonar-sweep { position: absolute; inset: 0; border-radius: 50%; background: conic-gradient(from 0deg, rgba(238, 49, 53, 0.28), transparent 70deg); animation: sonar-sweep 4.5s linear infinite; }
@keyframes sonar-sweep { to { transform: rotate(360deg); } }
.sonar-blip { position: absolute; width: 9px; height: 9px; border-radius: 50%; background: var(--viz-amber); box-shadow: 0 0 10px rgba(245, 184, 61, 0.8); animation: blip 4.5s ease-in-out infinite; }
@keyframes blip { 0%, 100% { opacity: 0.15; } 12% { opacity: 1; } 40% { opacity: 0.3; } }
.anatomy-claim { text-align: center; }
.anatomy-claim b { display: block; font-family: 'Plus Jakarta Sans', sans-serif; font-size: clamp(40px, 5vw, 58px); font-weight: 800; letter-spacing: -0.02em; background: linear-gradient(100deg, #ff6b6e, var(--accent) 50%, #ff9a5c); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; line-height: 1.1; }
.anatomy-claim span { display: block; font-size: 15px; color: rgba(219, 230, 245, 0.65); margin-top: 8px; font-weight: 500; }
.crisis-line { list-style: none; position: relative; padding-left: 34px; }
.crisis-line::before { content: ''; position: absolute; left: 11px; top: 10px; bottom: 10px; width: 2px; background: linear-gradient(180deg, rgba(148, 178, 215, 0.15), rgba(238, 49, 53, 0.6) 38%, rgba(148, 178, 215, 0.35) 70%, rgba(52, 201, 142, 0.6)); }
.crisis-line li { position: relative; padding: 14px 0 14px 6px; }
.crisis-dot { position: absolute; left: -30px; top: 21px; width: 12px; height: 12px; border-radius: 50%; background: #5b6f8d; border: 2.5px solid var(--primary-ink); box-shadow: 0 0 0 2px rgba(148, 178, 215, 0.25); }
.crisis-line li.alarm .crisis-dot { background: var(--accent); box-shadow: 0 0 0 3px rgba(238, 49, 53, 0.3); animation: pulse-dot 2s infinite; }
.crisis-line li.calm .crisis-dot { background: var(--viz-green); box-shadow: 0 0 0 2px rgba(52, 201, 142, 0.3); }
.crisis-time { display: inline-block; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 13px; font-weight: 800; color: rgba(219, 230, 245, 0.55); letter-spacing: 0.08em; min-width: 62px; }
.crisis-line b { color: var(--white); font-size: 15.5px; font-weight: 700; font-family: 'Plus Jakarta Sans', sans-serif; }
.crisis-line p { font-size: 13.5px; color: rgba(219, 230, 245, 0.62); line-height: 1.6; margin-top: 3px; }
.crisis-badge { display: inline-flex; align-items: center; gap: 7px; margin-left: 10px; padding: 3px 11px; border-radius: 100px; background: rgba(238, 49, 53, 0.15); border: 1px solid rgba(238, 49, 53, 0.45); color: #ff8b86; font-size: 10.5px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; vertical-align: 1px; }
@media (max-width: 1100px) { .anatomy-grid { grid-template-columns: 1fr; gap: 48px; } }
.vs-card { margin-top: 56px; background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); }
.vs-row { display: grid; grid-template-columns: 1.5fr 1fr 1fr; align-items: center; }
.vs-row + .vs-row { border-top: 1px solid var(--gray-100); }
.vs-row > div { padding: 18px 24px; font-size: 14.5px; }
.vs-head { background: var(--gray-50); }
.vs-head > div { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--gray-500); }
.vs-head .vs-siendra-col { color: var(--accent); }
.vs-q { font-weight: 600; color: var(--gray-700); }
.vs-other { color: var(--gray-400); }
.vs-siendra { font-weight: 600; color: var(--primary); background: rgba(30, 62, 98, 0.03); }
.vs-yes { display: inline-flex; align-items: center; gap: 7px; }
.vs-yes svg { width: 17px; height: 17px; color: var(--viz-green); flex: none; }
.vs-no { display: inline-flex; align-items: center; gap: 7px; }
.vs-no svg { width: 15px; height: 15px; color: var(--gray-300); flex: none; }
@media (max-width: 768px) {
    .vs-row { grid-template-columns: 1fr; }
    .vs-row > div { padding: 10px 18px; }
    .vs-row .vs-q { padding-top: 16px; font-size: 14px; }
    .vs-row .vs-siendra { padding-bottom: 16px; }
    .vs-head { display: none; }
    .vs-other::before { content: attr(data-col) ': '; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--gray-400); }
    .vs-siendra::before { content: 'Siendra: '; font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.05em; color: var(--accent); }
}
.page-hero {
    background:
        radial-gradient(ellipse 55% 70% at 82% 15%, rgba(238, 49, 53, 0.09), transparent 60%),
        linear-gradient(150deg, var(--primary-ink) 0%, var(--primary-deep) 55%, var(--primary-dark) 100%);
    padding: 150px 0 64px; position: relative; overflow: hidden;
}
.page-hero .hero-grid { position: absolute; inset: 0; }
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { font-size: clamp(30px, 4vw, 46px); font-weight: 800; color: var(--white); letter-spacing: -0.02em; margin: 10px 0 14px; }
.page-hero p { font-size: 16.5px; color: rgba(219, 230, 245, 0.72); max-width: 640px; line-height: 1.7; }
.teaser-section { background: var(--gray-50); }
.teaser-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.teaser-card {
    display: flex; flex-direction: column; gap: 10px; background: var(--white);
    border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 26px 24px;
    text-decoration: none; transition: all 0.35s ease;
}
.teaser-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: var(--gray-300); }
.teaser-card .tc-ic { width: 44px; height: 44px; border-radius: 12px; background: rgba(30, 62, 98, 0.07); color: var(--primary); display: flex; align-items: center; justify-content: center; }
.teaser-card .tc-ic svg { width: 21px; height: 21px; }
.teaser-card b { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 16.5px; font-weight: 700; color: var(--primary); }
.teaser-card p { font-size: 13.5px; color: var(--gray-500); line-height: 1.6; margin: 0; flex: 1; }
.teaser-card .tc-more { font-size: 13px; font-weight: 700; color: var(--accent); }
.cookie-banner {
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 950;
    background: rgba(8, 21, 39, 0.97); backdrop-filter: blur(10px);
    border-top: 1px solid rgba(148, 178, 215, 0.18);
    padding: 16px 0; transform: translateY(110%); transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}
.cookie-banner.show { transform: translateY(0); }
.cookie-inner { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.cookie-inner p { flex: 1; min-width: 260px; font-size: 13px; color: rgba(219, 230, 245, 0.78); line-height: 1.6; margin: 0; }
.cookie-inner a { color: #93bdfb; text-decoration: none; }
.cookie-inner a:hover { text-decoration: underline; }
.cookie-btn { padding: 10px 26px; border: none; border-radius: 9px; background: var(--accent); color: #fff; font-family: inherit; font-size: 13.5px; font-weight: 700; cursor: pointer; transition: background 0.25s ease; }
.cookie-btn:hover { background: var(--accent-dark); }
.map-card { margin-top: 18px; border-radius: 14px; overflow: hidden; border: 1px solid var(--gray-200); position: relative; background: var(--gray-50); }
.map-frame iframe { display: block; width: 100%; height: 300px; border: 0; }
.photo-figure { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-xl); }
.photo-figure img { display: block; width: 100%; height: 100%; object-fit: cover; }
.photo-figure::after { content: ''; position: absolute; inset: 0; background: linear-gradient(160deg, rgba(30, 62, 98, 0.38), rgba(8, 21, 39, 0.18)); mix-blend-mode: multiply; pointer-events: none; }
.photo-split { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 52px; align-items: center; margin-bottom: 64px; }
.photo-split .photo-figure { min-height: 320px; }
.photo-split h2 { font-size: clamp(24px, 3vw, 34px); font-weight: 800; margin-bottom: 14px; letter-spacing: -0.02em; }
.photo-split p { font-size: 15.5px; color: var(--gray-500); line-height: 1.75; }
.contact-photo { margin-bottom: 26px; }
.contact-photo .photo-figure { height: 210px; }
.legal-section { background: var(--white); }
.legal-prose { max-width: 780px; margin: 0 auto; }
.legal-prose h2 { font-size: 21px; font-weight: 800; margin: 34px 0 12px; }
.legal-updated + h2 { margin-top: 0; }
.legal-prose p, .legal-prose li { font-size: 15px; color: var(--gray-600); line-height: 1.8; }
.legal-prose p { margin-bottom: 14px; }
.legal-prose ul { padding-left: 22px; margin-bottom: 14px; }
.legal-prose .legal-updated { font-size: 12.5px; color: var(--gray-400); margin-bottom: 30px; }
.nf-section {
    min-height: 100vh; display: flex; align-items: center; text-align: center;
    background:
        radial-gradient(ellipse 60% 55% at 50% 20%, rgba(238, 49, 53, 0.10), transparent 60%),
        linear-gradient(160deg, #060f1d, var(--primary-ink) 55%, var(--primary-deep));
}
.nf-code { font-family: 'Plus Jakarta Sans', sans-serif; font-size: clamp(72px, 14vw, 140px); font-weight: 800; letter-spacing: -0.04em; line-height: 1; background: linear-gradient(100deg, #ff6b6e, var(--accent) 50%, #ff9a5c); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; margin: 34px 0 10px; }
.nf-section h1 { color: var(--white); font-size: clamp(22px, 3vw, 32px); font-weight: 800; margin-bottom: 12px; }
.nf-section p { color: rgba(219, 230, 245, 0.7); font-size: 15.5px; max-width: 460px; margin: 0 auto 30px; line-height: 1.7; }
.nf-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.nf-sonar { width: 180px; margin: 0 auto; }
.skip-link { position: absolute; left: -9999px; top: 0; z-index: 3000; background: var(--white); color: var(--primary); padding: 10px 18px; border-radius: 0 0 10px 0; font-weight: 700; font-size: 14px; text-decoration: none; }
.skip-link:focus { left: 0; }
a:focus-visible, button:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; border-radius: 4px; }
@media (max-width: 1100px) {
    .teaser-grid { grid-template-columns: repeat(2, 1fr); }
    .photo-split { grid-template-columns: 1fr; gap: 30px; }
    .photo-split .photo-figure { min-height: 220px; }
}
@media (max-width: 768px) {
    .teaser-grid { grid-template-columns: 1fr; }
    .page-hero { padding: 120px 0 48px; }
    .cookie-inner { gap: 12px; }
    .cookie-btn { width: 100%; }
}
.map-wide { margin-top: 56px; }
.map-wide .map-card { margin-top: 0; }
.map-wide .map-frame iframe { height: 420px; }
body.has-cookie .back-to-top { bottom: 96px; }
@media (max-width: 768px) { body.has-cookie .back-to-top { bottom: 150px; } }
.hero h1 .h1-rot { white-space: nowrap; }
.modules-section .module-row:nth-of-type(even) { background: var(--gray-50); margin: 0 -24px; padding-left: 24px; padding-right: 24px; border-radius: 20px; border-top: none; }
.nf-logo { display: inline-block; margin-bottom: 10px; }
.nf-logo img { height: 40px; width: auto; }
