/* ===========================================================
   IN Solutions — design tokens (1:1 с исходным Lovable-проектом)
=========================================================== */
:root{
  --radius: 1rem;

  --background: oklch(0.14 0.02 255);
  --foreground: oklch(0.97 0.005 250);

  --surface: oklch(0.18 0.025 255);
  --card: oklch(0.18 0.025 255);

  --primary: oklch(0.65 0.21 255);
  --primary-foreground: oklch(0.99 0 0);

  --muted-foreground: oklch(0.68 0.02 255);

  --accent: oklch(0.78 0.16 210);
  --accent-foreground: oklch(0.14 0.02 255);
  --cyan: oklch(0.82 0.15 200);

  --border: oklch(1 0 0 / 0.08);

  --gradient-primary: linear-gradient(135deg, oklch(0.65 0.21 255), oklch(0.82 0.15 200));
  --gradient-hero: radial-gradient(ellipse at top right, oklch(0.65 0.21 255 / 0.25), transparent 60%),
    radial-gradient(ellipse at bottom left, oklch(0.82 0.15 200 / 0.18), transparent 55%);
  --gradient-text: linear-gradient(135deg, oklch(0.97 0.005 250), oklch(0.78 0.16 210));

  --shadow-glow: 0 0 40px oklch(0.65 0.21 255 / 0.35);
  --shadow-elevated: 0 30px 80px -20px oklch(0 0 0 / 0.6);

  --font-sans: 'Inter', system-ui, sans-serif;
  --font-display: 'Space Grotesk', 'Inter', system-ui, sans-serif;
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  background:var(--background);
  color:var(--foreground);
  font-family:var(--font-sans);
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
h1,h2,h3,h4{ font-family:var(--font-display); letter-spacing:-0.02em; margin:0; font-weight:600; }
p{ margin:0; }
a{ color:inherit; text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }
button{ font-family:inherit; border:none; background:none; cursor:pointer; color:inherit; }
input,textarea{ font-family:inherit; color:inherit; }
::selection{ background:oklch(0.65 0.21 255 / 0.4); }

@media (prefers-reduced-motion: reduce){
  *{ animation-duration:0.01ms !important; animation-iteration-count:1 !important; transition-duration:0.01ms !important; scroll-behavior:auto !important; }
}
:focus-visible{ outline:2px solid var(--accent); outline-offset:2px; border-radius:6px; }

.wrap{ width:100%; max-width:1180px; margin:0 auto; padding:0 20px; }

/* ============ Glassmorphism ============ */
.glass{
  background:linear-gradient(135deg, oklch(1 0 0 / 0.04), oklch(1 0 0 / 0.01));
  backdrop-filter:blur(20px) saturate(140%);
  -webkit-backdrop-filter:blur(20px) saturate(140%);
  border:1px solid oklch(1 0 0 / 0.08);
}
.glass-strong{
  background:linear-gradient(135deg, oklch(1 0 0 / 0.08), oklch(1 0 0 / 0.02));
  backdrop-filter:blur(28px) saturate(160%);
  -webkit-backdrop-filter:blur(28px) saturate(160%);
  border:1px solid oklch(1 0 0 / 0.12);
}
.glow-primary{ box-shadow:var(--shadow-glow); }
.pulse-glow{ animation:pulse-glow 3s ease-in-out infinite; }
.float{ animation:float 6s ease-in-out infinite; }

.text-gradient{ background:var(--gradient-text); -webkit-background-clip:text; background-clip:text; color:transparent; }
.text-gradient-primary{ background:var(--gradient-primary); -webkit-background-clip:text; background-clip:text; color:transparent; }

.bg-grid{
  position:absolute; inset:0;
  background-image:linear-gradient(oklch(1 0 0 / 0.04) 1px, transparent 1px), linear-gradient(90deg, oklch(1 0 0 / 0.04) 1px, transparent 1px);
  background-size:56px 56px;
  mask-image:radial-gradient(ellipse at center, black 30%, transparent 75%);
  -webkit-mask-image:radial-gradient(ellipse at center, black 30%, transparent 75%);
  pointer-events:none;
}

@keyframes float{ 0%,100%{ transform:translateY(0); } 50%{ transform:translateY(-12px); } }
@keyframes pulse-glow{ 0%,100%{ box-shadow:0 0 30px oklch(0.65 0.21 255 / 0.3); } 50%{ box-shadow:0 0 60px oklch(0.65 0.21 255 / 0.55); } }
@keyframes pulse{ 0%,100%{ opacity:1; } 50%{ opacity:.35; } }

/* ============ Buttons ============ */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  padding:12px 22px; border-radius:14px; font-size:14px; font-weight:500;
  transition:transform .18s ease, box-shadow .18s ease, background .18s ease;
  white-space:nowrap;
}
.btn--gradient{
  background:var(--gradient-primary);
  color:var(--primary-foreground);
}
.btn--gradient:hover{ transform:scale(1.02); }
.btn--glass{ background:linear-gradient(135deg, oklch(1 0 0 / 0.04), oklch(1 0 0 / 0.01)); border:1px solid var(--border); }
.btn--glass:hover{ background:oklch(1 0 0 / 0.05); }
.btn--sm{ padding:10px 18px; }
.btn--full{ width:100%; margin-top:12px; }
.btn__arrow{ transition:transform .18s; }
.btn:hover .btn__arrow{ transform:translateX(3px); }

/* ============ Header ============ */
.site-header{ position:fixed; inset:0 0 auto; z-index:100; padding:16px 0; transition:padding .4s; }
.site-header.is-scrolled{ padding:8px 0; }
.header-bar{
  display:flex; align-items:center; justify-content:space-between;
  border-radius:18px; padding:12px 16px;
  transition:box-shadow .3s;
}
.site-header.is-scrolled .header-bar{ box-shadow:0 10px 40px -15px oklch(0 0 0 / 0.5); }

.brand{ display:flex; align-items:center; gap:10px; }
.brand__mark{
  width:32px; height:32px; border-radius:10px; flex:none;
  display:flex; align-items:center; justify-content:center;
  background:var(--gradient-primary);
  color:var(--primary-foreground);
  font-family:var(--font-display); font-weight:700; font-size:13px;
}
.brand__text{ display:flex; flex-direction:column; line-height:1.15; }
.brand__name{ font-family:var(--font-display); font-weight:600; font-size:14px; }
.brand__tag{ font-size:10px; color:var(--muted-foreground); margin-top:2px; }

.nav{ display:flex; align-items:center; gap:4px; }
.nav a{ padding:8px 12px; border-radius:10px; font-size:14px; color:var(--muted-foreground); transition:color .15s; }
.nav a:hover{ color:var(--foreground); }

.header-actions{ display:flex; align-items:center; gap:8px; }
.burger{ display:none; width:36px; height:36px; align-items:center; justify-content:center; border-radius:10px; background:linear-gradient(135deg, oklch(1 0 0 / 0.04), oklch(1 0 0 / 0.01)); border:1px solid var(--border); font-size:16px; }
.mobile-nav{ display:none; flex-direction:column; margin-top:8px; border-radius:18px; padding:12px; gap:2px; }
.mobile-nav.is-open{ display:flex; }
.mobile-nav a{ padding:10px 12px; border-radius:10px; font-size:14px; color:var(--muted-foreground); }
.mobile-nav a:hover{ background:oklch(1 0 0 / 0.05); color:var(--foreground); }

/* ============ Hero ============ */
.hero{ position:relative; padding:150px 0 90px; overflow:hidden; }
.hero-gradient{ position:absolute; inset:0; background:var(--gradient-hero); pointer-events:none; }
.particles{ position:absolute; inset:0; pointer-events:none; overflow:hidden; }
.particle{ position:absolute; border-radius:50%; background:oklch(0.78 0.16 210 / 0.6); box-shadow:0 0 12px var(--accent); opacity:.5; }

.hero-inner{ position:relative; display:grid; grid-template-columns:1.15fr 0.85fr; gap:48px; align-items:center; }

.badge{ display:inline-flex; align-items:center; gap:8px; border-radius:999px; padding:7px 14px; font-size:12px; font-weight:500; margin-bottom:22px; }
.badge__spark{ color:var(--accent); font-size:11px; }
.badge__text{ color:var(--muted-foreground); }
.badge__dot{ width:5px; height:5px; border-radius:50%; background:var(--accent); box-shadow:0 0 8px var(--accent); }

.hero-title{ font-size:clamp(32px, 4.4vw, 52px); line-height:1.08; margin-bottom:22px; }
.hero-sub{ font-size:17px; color:var(--muted-foreground); max-width:520px; margin-bottom:30px; line-height:1.6; }
.hero-actions{ display:flex; gap:12px; flex-wrap:wrap; margin-bottom:44px; }
.hero-stats{ display:grid; grid-template-columns:repeat(3,1fr); gap:14px; max-width:420px; }
.hstat{ border-radius:14px; padding:12px; }
.hstat__v{ font-family:var(--font-display); font-size:19px; font-weight:600; }
.hstat__l{ font-size:11px; color:var(--muted-foreground); margin-top:2px; }

/* Hero dashboard */
.hero-dashboard{ position:relative; height:500px; }
.dash-glow{
  position:absolute; inset:0; z-index:-1; filter:blur(70px); opacity:.6;
  background:radial-gradient(circle at 60% 40%, oklch(0.65 0.21 255 / 0.5), transparent 60%);
}
.dash-main{ position:absolute; inset-inline:0; top:32px; margin:0 auto; width:92%; border-radius:20px; padding:20px; box-shadow:var(--shadow-elevated); }
.dash-main__head{ display:flex; align-items:center; justify-content:space-between; }
.dash-main__id{ display:flex; align-items:center; gap:8px; }
.dash-icon{ width:28px; height:28px; border-radius:8px; display:flex; align-items:center; justify-content:center; background:var(--gradient-primary); color:var(--primary-foreground); }
.dash-main__title{ font-size:12px; font-weight:500; }
.dash-main__sub{ font-size:10px; color:var(--muted-foreground); margin-top:1px; }
.status-pill{ font-size:10px; padding:2px 10px; border-radius:999px; background:oklch(0.78 0.18 150 / 0.1); color:oklch(0.78 0.18 150); border:1px solid oklch(0.78 0.18 150 / 0.2); }
.dash-chart{ width:100%; height:80px; margin-top:16px; }
.dash-metrics{ margin-top:12px; display:grid; grid-template-columns:repeat(3,1fr); gap:8px; text-align:center; }
.dash-metric{ border-radius:10px; background:oklch(1 0 0 / 0.05); padding:8px 0; }
.dash-metric__l{ font-size:10px; color:var(--muted-foreground); }
.dash-metric__v{ font-family:var(--font-display); font-weight:600; font-size:12px; margin-top:2px; }

.dash-servers{ position:absolute; left:0; bottom:64px; width:220px; border-radius:16px; padding:16px; }
.dash-servers__head{ display:flex; align-items:center; gap:8px; margin-bottom:12px; font-size:12px; font-weight:500; }
.dash-node{ display:flex; align-items:center; gap:8px; font-size:10px; margin-bottom:6px; color:var(--muted-foreground); }
.dash-node span:first-child{ width:52px; flex:none; }
.dash-node span:last-child{ width:30px; text-align:right; color:var(--foreground); }
.dash-node__bar{ flex:1; height:4px; border-radius:999px; background:oklch(1 0 0 / 0.05); overflow:hidden; }
.dash-node__bar div{ height:100%; background:var(--gradient-primary); border-radius:999px; }

.dash-security{ position:absolute; right:0; bottom:0; width:190px; border-radius:16px; padding:16px; }
.dash-security__head{ display:flex; align-items:center; gap:8px; margin-bottom:8px; font-size:12px; font-weight:500; }
.dash-security__ico{ color:oklch(0.78 0.18 150); }
.dash-security__grade{ font-family:var(--font-display); font-size:22px; font-weight:600; }
.dash-security__sub{ font-size:10px; color:var(--muted-foreground); margin-top:4px; }

.dash-chip{ position:absolute; display:flex; align-items:center; justify-content:center; border-radius:16px; font-size:20px; }
.dash-chip--cloud{ right:16px; top:0; width:56px; height:56px; color:var(--accent); }
.dash-chip--cpu{ left:64px; top:8px; width:48px; height:48px; color:var(--primary); font-size:16px; }

/* ============ Sections ============ */
.section{ padding:88px 0; position:relative; }
.section-title{ max-width:680px; }
.section-title--center{ margin:0 auto; text-align:center; max-width:720px; }
.eyebrow{ display:inline-flex; align-items:center; gap:8px; border-radius:999px; padding:6px 14px; font-size:12px; font-weight:500; color:var(--accent); margin-bottom:16px; }
.eyebrow__dot{ width:6px; height:6px; border-radius:50%; background:var(--accent); box-shadow:0 0 8px var(--accent); }
.eyebrow-text{ font-size:11px; text-transform:uppercase; letter-spacing:.14em; color:var(--accent); font-weight:600; }
.section-title h2{ font-size:clamp(26px, 3.4vw, 42px); }
.section-lead{ margin-top:14px; font-size:16px; color:var(--muted-foreground); }

/* ============ Glow card ============ */
.glow-card{
  position:relative; border-radius:18px; padding:24px;
  background:linear-gradient(135deg, oklch(1 0 0 / 0.08), oklch(1 0 0 / 0.02));
  backdrop-filter:blur(28px) saturate(160%);
  border:1px solid oklch(1 0 0 / 0.12);
  transition:transform .25s ease, border-color .25s;
  display:flex; gap:16px;
}
.glow-card:hover{ transform:translateY(-4px); border-color:oklch(0.65 0.21 255 / 0.3); }

/* Pain points */
.pains-grid{ margin-top:44px; display:grid; grid-template-columns:1.4fr 1fr; gap:20px; }
.pains-col{ display:flex; flex-direction:column; gap:16px; }
.pain-icon{ flex:none; width:48px; height:48px; border-radius:14px; display:flex; align-items:center; justify-content:center; background:linear-gradient(135deg, oklch(0.65 0.21 255 / 0.2), oklch(0.78 0.16 210 / 0.2)); border:1px solid var(--border); color:var(--accent); font-size:18px; }
.glow-card h3{ font-size:16px; margin-bottom:6px; }
.glow-card p{ font-size:13px; color:var(--muted-foreground); line-height:1.55; }

.compare-panel{ border-radius:20px; padding:26px; position:relative; overflow:hidden; }
.compare-panel h3{ font-size:22px; margin-top:8px; }
.compare-lead{ font-size:13px; color:var(--muted-foreground); margin-top:4px; }
.compare-rows{ margin-top:22px; display:flex; flex-direction:column; gap:14px; }
.compare-row__top{ display:flex; justify-content:space-between; align-items:baseline; margin-bottom:8px; font-size:14px; }
.muted-num{ font-family:var(--font-display); color:var(--muted-foreground); font-weight:600; }
.accent-num{ font-family:var(--font-display); font-weight:600; }
.compare-track{ height:8px; border-radius:999px; background:oklch(1 0 0 / 0.05); overflow:hidden; }
.compare-fill{ height:100%; border-radius:999px; }
.compare-fill--muted{ background:oklch(1 0 0 / 0.2); }
.compare-fill--accent{ background:var(--gradient-primary); box-shadow:0 0 18px oklch(0.65 0.21 255 / 0.6); }
.compare-arrow{ text-align:center; color:var(--accent); animation:pulse 2s infinite; }

.savings-box{ margin-top:22px; border-radius:14px; padding:16px; background:linear-gradient(135deg, oklch(0.65 0.21 255 / 0.15), oklch(0.82 0.15 200 / 0.1)); border:1px solid var(--border); }
.savings-box__top{ display:flex; align-items:baseline; gap:8px; font-size:12px; color:var(--muted-foreground); }
.savings-box__val{ font-family:var(--font-display); font-size:28px; font-weight:600; }
.savings-tags{ margin-top:12px; display:grid; grid-template-columns:1fr 1fr; gap:8px; font-size:11px; color:var(--muted-foreground); }

/* Pillars */
.pillars-grid{ margin-top:44px; display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.pillar-card{ flex-direction:column; }
.pillar-icon{ width:52px; height:52px; border-radius:16px; display:flex; align-items:center; justify-content:center; background:var(--gradient-primary); color:var(--primary-foreground); font-size:20px; margin-bottom:18px; }
.pillar-card h3{ font-size:18px; margin-bottom:14px; }
.dot-list li{ position:relative; padding-left:18px; font-size:13px; color:var(--muted-foreground); margin-bottom:9px; line-height:1.45; }
.dot-list li::before{ content:''; position:absolute; left:0; top:6px; width:6px; height:6px; border-radius:50%; background:var(--accent); box-shadow:0 0 6px var(--accent); }

/* Tabs */
.tabs-pill{ margin-top:36px; border-radius:18px; padding:6px; display:inline-flex; gap:4px; flex-wrap:wrap; justify-content:center; width:100%; }
.tab-btn{ display:flex; align-items:center; gap:8px; padding:11px 18px; border-radius:14px; font-size:13px; font-weight:500; color:var(--muted-foreground); transition:color .2s; }
.tab-btn.is-active{ background:var(--gradient-primary); color:var(--primary-foreground); box-shadow:var(--shadow-glow); }
.tab-btn:hover:not(.is-active){ color:var(--foreground); }

.tab-panel{ display:none; margin-top:44px; }
.tab-panel.is-active{ display:block; animation:fadeIn .35s ease; }
@keyframes fadeIn{ from{ opacity:0; transform:translateY(12px); } to{ opacity:1; transform:none; } }

.services-grid{ display:grid; grid-template-columns:1.4fr 1fr; gap:20px; align-items:start; }
.services-block h3{ font-size:19px; }
.block-sub{ font-size:13px; color:var(--muted-foreground); margin-top:4px; }
.icon-list{ margin-top:20px; display:grid; grid-template-columns:1fr 1fr; gap:8px; }
.icon-list__item{ display:flex; align-items:flex-start; gap:10px; padding:10px; border-radius:12px; font-size:13px; transition:background .2s; }
.icon-list__item:hover{ background:oklch(1 0 0 / 0.05); }
.icon-list__ico{ flex:none; width:34px; height:34px; border-radius:10px; display:flex; align-items:center; justify-content:center; background:linear-gradient(135deg, oklch(0.65 0.21 255 / 0.2), oklch(0.78 0.16 210 / 0.2)); border:1px solid var(--border); font-size:14px; }

.services-side{ display:flex; flex-direction:column; gap:16px; }
.benefit-list{ margin-top:20px; display:flex; flex-direction:column; gap:10px; }
.benefit-row{ display:flex; align-items:center; gap:12px; border-radius:14px; padding:11px 12px; }
.benefit-row__ico{ width:34px; height:34px; border-radius:10px; display:flex; align-items:center; justify-content:center; background:linear-gradient(135deg, oklch(0.78 0.16 210 / 0.3), oklch(0.65 0.21 255 / 0.2)); font-size:14px; }
.benefit-row span:nth-child(2){ font-size:13px; font-weight:500; flex:1; }
.benefit-row__check{ color:var(--accent); }

.status-card{ flex-direction:column; }
.status-card__head{ display:flex; align-items:center; gap:12px; }
.status-card__ico{ width:44px; height:44px; border-radius:14px; display:flex; align-items:center; justify-content:center; background:var(--gradient-primary); color:var(--primary-foreground); flex:none; }
.status-card__label{ font-size:11px; color:var(--muted-foreground); }
.status-card__title{ font-family:var(--font-display); font-size:16px; font-weight:600; }
.status-card p{ margin-top:12px; }

.workflow{ border-radius:18px; padding:22px; }
.workflow-steps{ margin-top:16px; display:flex; align-items:flex-start; gap:0; }
.workflow-step{ display:flex; flex-direction:column; align-items:center; gap:8px; width:78px; flex:none; }
.workflow-step__num{ width:32px; height:32px; border-radius:50%; display:flex; align-items:center; justify-content:center; background:var(--gradient-primary); color:var(--primary-foreground); font-size:12px; font-weight:600; }
.workflow-step span:last-child{ font-size:10px; color:var(--muted-foreground); text-align:center; line-height:1.3; }
.workflow-line{ flex:1; height:1px; background:var(--gradient-primary); margin-top:16px; }

.topology{ border-radius:18px; padding:18px; position:relative; overflow:hidden; height:220px; }
.topology-svg{ width:100%; height:calc(100% - 24px); margin-top:8px; }
.topology-node--core{ filter:drop-shadow(0 0 6px oklch(0.65 0.21 255 / 0.7)); }

.advantages-grid{ display:grid; grid-template-columns:1fr 1fr; gap:12px; }
.adv-card{ border-radius:14px; padding:14px; font-size:13px; font-weight:500; }
.adv-card__ico{ width:34px; height:34px; border-radius:10px; display:flex; align-items:center; justify-content:center; background:var(--gradient-primary); color:var(--primary-foreground); margin-bottom:10px; font-size:14px; }

/* Calculator */
.calc-wrap{ margin-top:44px; }
.calc-panel{ position:relative; border-radius:24px; padding:32px; overflow:hidden; }
.calc-glow{ position:absolute; border-radius:50%; pointer-events:none; filter:blur(60px); }
.calc-glow--a{ top:-120px; right:-120px; width:340px; height:340px; background:oklch(0.65 0.21 255 / 0.2); }
.calc-glow--b{ bottom:-120px; left:-120px; width:340px; height:340px; background:oklch(0.78 0.16 210 / 0.15); }
.calc-head{ position:relative; display:flex; flex-wrap:wrap; justify-content:space-between; align-items:flex-end; gap:16px; margin-bottom:32px; }
.calc-head h3{ margin-top:12px; font-size:clamp(22px, 3vw, 30px); }
.calc-live{ display:flex; align-items:center; gap:8px; font-size:12px; color:var(--muted-foreground); }
.live-dot{ width:8px; height:8px; border-radius:50%; background:oklch(0.78 0.18 150); box-shadow:0 0 8px oklch(0.78 0.18 150); animation:pulse 1.6s infinite; }

.calc-grid{ position:relative; display:grid; grid-template-columns:1.6fr 1fr; gap:24px; }
.calc-inputs{ display:flex; flex-direction:column; gap:20px; }
.calc-field__top{ display:flex; align-items:center; justify-content:space-between; margin-bottom:8px; }
.calc-field__top label{ font-size:14px; font-weight:500; }
.calc-num{ width:76px; border-radius:10px; padding:5px 8px; text-align:right; font-size:14px; font-weight:600; background:linear-gradient(135deg, oklch(1 0 0 / 0.04), oklch(1 0 0 / 0.01)); border:1px solid var(--border); }
.calc-track{ position:relative; height:8px; border-radius:999px; background:oklch(1 0 0 / 0.05); overflow:hidden; }
.calc-fill{ position:absolute; inset:0 auto 0 0; border-radius:999px; background:var(--gradient-primary); box-shadow:0 0 18px oklch(0.65 0.21 255 / 0.5); transition:width .15s; }
.calc-range{ width:100%; height:24px; margin-top:-24px; -webkit-appearance:none; appearance:none; background:transparent; position:relative; z-index:2; cursor:pointer; }
.calc-range::-webkit-slider-thumb{ -webkit-appearance:none; width:16px; height:16px; border-radius:50%; background:#fff; box-shadow:0 0 0 4px oklch(0.65 0.21 255 / 0.25); cursor:pointer; margin-top:-4px; }
.calc-range::-moz-range-thumb{ width:16px; height:16px; border-radius:50%; background:#fff; border:none; cursor:pointer; }
.calc-range::-webkit-slider-runnable-track{ height:8px; background:transparent; }
.calc-field__range{ display:flex; justify-content:space-between; font-size:10px; color:var(--muted-foreground); margin-top:4px; }

.segmented{ border-radius:14px; padding:6px; display:flex; flex-wrap:wrap; gap:4px; }
.segmented__btn{ flex:1; min-width:130px; border-radius:10px; padding:9px 12px; font-size:12px; font-weight:500; color:var(--muted-foreground); transition:.2s; }
.segmented__btn.is-active{ background:var(--gradient-primary); color:var(--primary-foreground); }

.toggle-row{ display:grid; grid-template-columns:1fr 1fr; gap:12px; }
.toggle-field{ display:flex; align-items:center; gap:10px; border-radius:14px; padding:12px; transition:border-color .2s; }
.toggle-field.is-active{ border-color:oklch(0.78 0.16 210 / 0.4); }
.toggle-field__ico{ width:34px; height:34px; border-radius:10px; display:flex; align-items:center; justify-content:center; background:oklch(1 0 0 / 0.05); color:var(--muted-foreground); font-size:14px; }
.toggle-field.is-active .toggle-field__ico{ background:var(--gradient-primary); color:var(--primary-foreground); }
.toggle-field__label{ font-size:13px; font-weight:500; flex:1; text-align:left; }
.toggle-field__switch{ position:relative; width:38px; height:22px; border-radius:999px; background:oklch(1 0 0 / 0.1); transition:.2s; flex:none; }
.toggle-field.is-active .toggle-field__switch{ background:var(--primary); }
.toggle-field__knob{ position:absolute; top:2px; left:2px; width:18px; height:18px; border-radius:50%; background:#fff; transition:left .2s; box-shadow:0 1px 3px rgba(0,0,0,.4); }
.toggle-field.is-active .toggle-field__knob{ left:18px; }

.calc-result{ position:relative; }
.calc-result-card{ position:relative; border-radius:20px; padding:22px; text-align:center; overflow:hidden; }
.calc-result-glow{ position:absolute; inset:0; opacity:.6; pointer-events:none; background:radial-gradient(circle at 50% 0%, oklch(0.65 0.21 255 / 0.25), transparent 60%); }
.calc-result-label{ position:relative; font-size:10px; font-weight:600; text-transform:uppercase; letter-spacing:.12em; color:var(--accent); }
.calc-result-price{ position:relative; margin-top:10px; display:flex; align-items:baseline; justify-content:center; gap:6px; }
.calc-result-price span:first-child{ font-family:var(--font-display); font-size:36px; font-weight:600; font-variant-numeric:tabular-nums; }
.calc-result-unit{ font-size:12px; color:var(--muted-foreground); }
.calc-result-tariff{ position:relative; margin-top:6px; font-size:12px; color:var(--muted-foreground); }
.calc-result-note{ position:relative; margin-top:10px; font-size:10px; color:var(--muted-foreground); line-height:1.4; }

.calc-advantages{ position:relative; margin-top:36px; display:grid; grid-template-columns:repeat(4,1fr); gap:12px; }
.calc-adv{ border-radius:14px; padding:12px; font-size:12px; text-align:center; transition:border-color .2s; }
.calc-adv:hover{ border-color:oklch(0.78 0.16 210 / 0.3); }

/* Impact */
.impact-grid{ margin-top:44px; display:grid; grid-template-columns:repeat(4,1fr); gap:16px; }
.impact-card{ position:relative; border-radius:18px; padding:20px; overflow:hidden; transition:border-color .2s; }
.impact-card:hover{ border-color:oklch(0.78 0.16 210 / 0.4); }
.impact-ico{ width:40px; height:40px; border-radius:12px; display:flex; align-items:center; justify-content:center; background:linear-gradient(135deg, oklch(0.65 0.21 255 / 0.2), oklch(0.78 0.16 210 / 0.2)); border:1px solid var(--border); font-size:16px; }
.impact-val{ margin-top:18px; font-family:var(--font-display); font-size:34px; font-weight:600; }
.impact-suffix{ font-size:20px; }
.impact-label{ margin-top:8px; font-size:13px; color:var(--muted-foreground); }

/* Roadmap */
.roadmap{ position:relative; margin-top:60px; display:flex; flex-direction:column; gap:20px; }
.roadmap__line{ position:absolute; left:50%; top:0; bottom:0; width:1px; transform:translateX(-50%); background:linear-gradient(to bottom, transparent, oklch(0.65 0.21 255 / 0.4), transparent); display:none; }
.roadmap-item{ position:relative; display:flex; align-items:center; gap:24px; }
.roadmap-card{ border-radius:18px; padding:20px; max-width:420px; }
.roadmap-card__head{ display:flex; align-items:center; gap:12px; }
.roadmap-card__ico{ width:38px; height:38px; border-radius:12px; display:flex; align-items:center; justify-content:center; background:var(--gradient-primary); color:var(--primary-foreground); font-size:15px; }
.roadmap-card__step{ font-size:11px; color:var(--muted-foreground); }
.roadmap-card h3{ margin-top:12px; font-size:17px; }
.roadmap-card p{ margin-top:6px; font-size:13px; color:var(--muted-foreground); line-height:1.5; }
.roadmap-dot{ display:none; width:18px; height:18px; border-radius:50%; background:var(--gradient-primary); box-shadow:0 0 24px oklch(0.65 0.21 255 / 0.7); flex:none; }

/* Contacts */
.contacts-grid{ margin-top:44px; display:grid; grid-template-columns:1.4fr 1fr; gap:20px; }
.contact-form{ position:relative; border-radius:24px; padding:30px; overflow:hidden; display:flex; flex-direction:column; gap:16px; }
.contact-glow{ position:absolute; top:-100px; right:-100px; width:280px; height:280px; border-radius:50%; background:oklch(0.65 0.21 255 / 0.2); filter:blur(60px); pointer-events:none; }
.form-row{ position:relative; display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.form-field{ position:relative; display:flex; flex-direction:column; gap:6px; }
.form-field label{ font-size:12px; color:var(--muted-foreground); }
.req{ color:var(--accent); }
.form-field input, .form-field textarea{
  border-radius:14px; padding:12px 14px; font-size:14px;
  background:linear-gradient(135deg, oklch(1 0 0 / 0.04), oklch(1 0 0 / 0.01));
  border:1px solid var(--border);
  outline:none; resize:none; transition:border-color .2s;
}
.form-field input:focus, .form-field textarea:focus{ border-color:oklch(0.78 0.16 210 / 0.5); }
.form-actions{ position:relative; display:flex; flex-wrap:wrap; gap:10px; padding-top:4px; }
.form-success{ position:relative; display:none; border-radius:14px; padding:12px 16px; font-size:13px; color:oklch(0.78 0.18 150); background:oklch(0.78 0.18 150 / 0.1); border:1px solid oklch(0.78 0.18 150 / 0.3); }
.form-success.is-visible{ display:block; }
.form-note{ position:relative; font-size:11px; color:var(--muted-foreground); }

.contacts-side{ display:flex; flex-direction:column; gap:14px; }
.contact-item{ display:flex; align-items:center; gap:14px; border-radius:18px; padding:16px; transition:border-color .2s; }
.contact-item:hover{ border-color:oklch(0.78 0.16 210 / 0.4); }
.contact-item__ico{ width:42px; height:42px; border-radius:12px; display:flex; align-items:center; justify-content:center; background:var(--gradient-primary); color:var(--primary-foreground); flex:none; font-size:16px; }
.contact-item__label{ display:block; font-size:11px; color:var(--muted-foreground); }
.contact-item__value{ display:block; font-size:14px; font-weight:500; margin-top:2px; }

.map-decor{ position:relative; height:180px; border-radius:18px; overflow:hidden; display:flex; align-items:center; justify-content:center; }
.map-decor__pin{ width:48px; height:48px; border-radius:50%; display:flex; align-items:center; justify-content:center; background:var(--gradient-primary); font-size:18px; }
.map-decor__label{ position:absolute; bottom:12px; left:14px; font-size:10px; color:var(--muted-foreground); }

/* Footer */
.footer{ position:relative; border-top:1px solid oklch(1 0 0 / 0.05); margin-top:40px; }
.footer__topline{ position:absolute; inset:0 0 auto; height:1px; background:linear-gradient(to right, transparent, oklch(0.65 0.21 255 / 0.5), transparent); }
.footer-inner{ display:grid; grid-template-columns:1.6fr 1fr 1fr 1fr; gap:32px; padding:56px 20px 0; }
.footer-brand p{ margin-top:16px; font-size:13px; color:var(--muted-foreground); line-height:1.6; max-width:340px; }
.footer-social{ display:flex; gap:8px; margin-top:20px; }
.footer-social__link{ width:36px; height:36px; border-radius:10px; display:flex; align-items:center; justify-content:center; transition:.2s; }
.footer-social__link:hover{ border-color:oklch(0.78 0.16 210 / 0.4); color:var(--accent); }
.footer-col{ display:flex; flex-direction:column; gap:10px; }
.footer-col a, .footer-col span{ font-size:13px; color:var(--muted-foreground); transition:color .15s; }
.footer-col a:hover{ color:var(--foreground); }
.footer-bottom{ margin-top:48px; padding:24px 20px; border-top:1px solid oklch(1 0 0 / 0.05); display:flex; justify-content:space-between; flex-wrap:wrap; gap:10px; font-size:11px; color:var(--muted-foreground); }

/* ============ Responsive ============ */
@media (max-width: 1024px){
  .hero-inner{ grid-template-columns:1fr; }
  .hero-dashboard{ display:none; }
  .pains-grid{ grid-template-columns:1fr; }
  .pillars-grid{ grid-template-columns:1fr 1fr; }
  .services-grid{ grid-template-columns:1fr; }
  .calc-grid{ grid-template-columns:1fr; }
  .impact-grid{ grid-template-columns:1fr 1fr; }
  .contacts-grid{ grid-template-columns:1fr; }
  .footer-inner{ grid-template-columns:1fr 1fr; }
  .nav{ display:none; }
  .header-cta{ display:none; }
  .burger{ display:flex; }
}
@media (max-width: 640px){
  .hero{ padding:130px 0 60px; }
  .hero-stats{ grid-template-columns:1fr 1fr 1fr; }
  .pillars-grid{ grid-template-columns:1fr; }
  .icon-list{ grid-template-columns:1fr; }
  .calc-advantages{ grid-template-columns:1fr 1fr; }
  .impact-grid{ grid-template-columns:1fr 1fr; }
  .form-row{ grid-template-columns:1fr; }
  .footer-inner{ grid-template-columns:1fr; padding-top:44px; }
  .section{ padding:64px 0; }
  .toggle-row{ grid-template-columns:1fr; }
  .advantages-grid{ grid-template-columns:1fr 1fr; }
}
