:root {
      --bg: #07110d;
      --bg-soft: #0e1b15;
      --surface: rgba(18, 36, 28, 0.76);
      --surface-strong: rgba(16, 33, 26, 0.94);
      --line: rgba(177, 234, 191, 0.1);
      --text: #f4fff7;
      --muted: #b2cab9;
      --green: #8fdc69;
      --green-deep: #3d7f53;
      --green-bright: #bbf58f;
      --accent: #d5ffd0;
      --shadow: 0 30px 80px rgba(0, 0, 0, 0.36);
      --radius-xl: 32px;
      --radius-lg: 22px;
      --radius-md: 16px;
      --container: min(1180px, calc(100% - 32px));
      --header-height: 84px;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      color: var(--text);
      font-family: "Roboto", sans-serif;
      background:
        radial-gradient(circle at 8% 10%, rgba(116, 197, 123, 0.24), transparent 24%),
        radial-gradient(circle at 88% 12%, rgba(88, 156, 101, 0.18), transparent 24%),
        radial-gradient(circle at 50% 100%, rgba(38, 78, 54, 0.3), transparent 35%),
        linear-gradient(180deg, #08120d 0%, #07100c 42%, #08130e 100%);
      min-width: 320px;
      overflow-x: hidden;
    }

    body::before {
      content: "";
      position: fixed;
      inset: 0;
      pointer-events: none;
      background-image:
        linear-gradient(rgba(140, 219, 163, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(140, 219, 163, 0.045) 1px, transparent 1px);
      background-size: 72px 72px;
      mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.85), transparent 88%);
      opacity: 0.35;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

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

    .container {
      width: var(--container);
      margin: 0 auto;
    }

    .header {
      position: sticky;
      top: 0;
      z-index: 50;
      backdrop-filter: blur(18px);
      background: rgba(6, 14, 10, 0.76);
      border-bottom: 1px solid rgba(164, 231, 185, 0.12);
    }

    .header-inner {
      width: var(--container);
      margin: 0 auto;
      min-height: var(--header-height);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      position: relative;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 14px;
      min-width: 0;
    }

    .menu-toggle {
      display: none;
      width: 44px;
      height: 44px;
      padding: 0;
      border: 1px solid rgba(187, 245, 143, 0.18);
      border-radius: 12px;
      background: rgba(255, 255, 255, 0.03);
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
    }

    .menu-toggle span {
      width: 18px;
      height: 1.5px;
      background: #eaf7ee;
      border-radius: 999px;
      transition: transform 0.2s ease, opacity 0.2s ease;
    }

    .brand img {
      width: 56px;
      height: 56px;
      flex: 0 0 auto;
      filter: drop-shadow(0 14px 24px rgba(143, 220, 105, 0.18));
    }

    .brand-copy strong,
    .hero-brand strong,
    .section-tag,
    .service h3,
    .cta-panel h2,
    .footer-brand strong {
      font-family: "Orbitron", sans-serif;
      letter-spacing: 0.08em;
    }

    .brand-copy {
      min-width: 0;
    }

    .brand-copy strong {
      display: block;
      font-size: 0.96rem;
      line-height: 1;
      font-weight: 800;
      text-transform: uppercase;
    }

    .brand-copy span {
      display: block;
      color: var(--muted);
      font-size: 0.83rem;
      margin-top: 4px;
    }

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

    .header-links {
      display: flex;
      flex-wrap: wrap;
      justify-content: flex-end;
      gap: 0;
    }

    .header-links a {
      position: relative;
      padding: 10px 18px 12px;
      color: #dff6e4;
      border: 0;
      background: transparent;
      font-size: 0.88rem;
      white-space: nowrap;
      transition: color 0.22s ease;
    }

    .header-links a::before {
      content: "";
      position: absolute;
      left: 18px;
      right: 18px;
      bottom: 4px;
      height: 1px;
      background: rgba(200, 255, 210, 0.7);
      transform: scaleX(0);
      transform-origin: center;
      transition: transform 0.22s ease;
    }

    .header-links a::after {
      content: "";
      position: absolute;
      top: 50%;
      right: 0;
      width: 1px;
      height: 14px;
      background: rgba(200, 255, 210, 0.14);
      transform: translateY(-50%);
    }

    .header-links a:last-child::after {
      display: none;
    }

    .header-links a:hover,
    .header-links a:focus-visible {
      color: #f4fff7;
    }

    .header-links a:hover::before,
    .header-links a:focus-visible::before {
      transform: scaleX(1);
    }

    .header-contact a {
      font-family: "Orbitron", sans-serif;
      letter-spacing: 0.04em;
      color: #efffed;
      font-size: 0.95rem;
      white-space: nowrap;
      border-bottom: 1px solid transparent;
      transition: border-color 0.2s ease;
    }

    .header-contact a:hover,
    .header-contact a:focus-visible {
      border-color: rgba(200, 255, 210, 0.8);
    }

    .hero {
      position: relative;
      overflow: hidden;
      padding: 18px 0 24px;
    }

    .hero-shell {
      width: var(--container);
      margin: 0 auto;
      min-height: calc(70svh - var(--header-height));
      display: grid;
      grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
      gap: 34px;
      align-items: center;
    }

    .hero-copy {
      position: relative;
      z-index: 2;
    }

    h1 {
      margin: 0 0 18px;
      max-width: 760px;
      font-size: clamp(2.2rem, 5vw, 4.45rem);
      line-height: 0.98;
      letter-spacing: -0.05em;
      text-wrap: balance;
    }

    .lead {
      max-width: 650px;
      margin: 0;
      color: var(--muted);
      font-size: clamp(1.05rem, 1.7vw, 1.3rem);
      line-height: 1.65;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin: 28px 0 26px;
    }

    .button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      min-height: 54px;
      padding: 0 22px;
      border-radius: 999px;
      border: 1px solid transparent;
      font-weight: 700;
      transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    }

    .button:hover,
    .button:focus-visible {
      transform: translateY(-2px);
    }

    .button-primary {
      background: linear-gradient(135deg, var(--green-bright), var(--green));
      color: #0e1d12;
      box-shadow: 0 16px 34px rgba(143, 220, 105, 0.22);
    }

    .button-secondary {
      border-color: rgba(175, 239, 191, 0.16);
      background: rgba(255, 255, 255, 0.03);
      color: var(--text);
    }

    .hero-points,
    .service-list,
    .contact-list {
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .hero-points {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 10px 18px;
      max-width: 720px;
      margin-bottom: 28px;
    }

    .hero-points li,
    .service-list li,
    .trust-strip li {
      position: relative;
      padding-left: 18px;
      color: #eaf7ee;
    }

    .hero-points li::before,
    .service-list li::before,
    .trust-strip li::before {
      content: "";
      position: absolute;
      left: 0;
      top: 0.56em;
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--green-bright), var(--green));
      box-shadow: 0 0 0 6px rgba(143, 220, 105, 0.08);
    }

    .hero-side {
      position: relative;
      min-height: 560px;
      display: grid;
      align-items: center;
    }

    .hero-frame {
      position: relative;
      overflow: hidden;
      min-height: 560px;
      border-radius: var(--radius-xl);
      border: 1px solid rgba(181, 241, 197, 0.08);
      background:
        radial-gradient(circle at 18% 18%, rgba(187, 245, 143, 0.09), transparent 24%),
        radial-gradient(circle at 82% 24%, rgba(88, 165, 104, 0.12), transparent 30%),
        linear-gradient(160deg, rgba(9, 19, 14, 0.98), rgba(16, 34, 27, 0.96));
      box-shadow: var(--shadow);
      padding: 28px;
      display: grid;
      gap: 18px;
    }

    .hero-frame::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(255,255,255,0.015), transparent 32%);
      pointer-events: none;
    }

    .control-bar,
    .hero-card,
    .hero-strip,
    .hero-fact,
    .section-panel,
    .pricing-table,
    .cta-panel,
    .footer {
      background: var(--surface);
      border: 1px solid var(--line);
      backdrop-filter: blur(10px);
    }

    .control-bar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 12px;
      padding: 14px 16px;
      border-radius: 18px;
      background: rgba(15, 30, 22, 0.62);
    }

    .control-dots {
      display: flex;
      gap: 8px;
    }

    .control-dots span {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.18);
    }

    .control-dots span:first-child {
      background: #d6ffb9;
    }

    .control-tag {
      font-family: "Orbitron", sans-serif;
      color: #d7ffcd;
      font-size: 0.78rem;
      text-transform: uppercase;
      letter-spacing: 0.08em;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 16px;
    }

    .hero-card {
      min-height: 188px;
      border-radius: 22px;
      padding: 22px;
      background:
        linear-gradient(180deg, rgba(16, 33, 25, 0.9), rgba(9, 19, 14, 0.95));
    }

    .hero-card strong {
      display: block;
      font-size: 2rem;
      line-height: 1;
      margin-bottom: 10px;
    }

    .hero-card span {
      display: block;
      color: var(--muted);
      font-size: 0.92rem;
      line-height: 1.55;
    }

    .hero-card-title {
      margin-bottom: 12px;
      font-family: "Orbitron", sans-serif;
      color: #d7ffcd;
      font-size: 0.74rem;
      text-transform: uppercase;
      letter-spacing: 0.08em;
    }

    .hero-card ul {
      margin: 0;
      padding: 0;
      list-style: none;
      display: grid;
      gap: 10px;
    }

    .hero-card li {
      position: relative;
      padding-left: 18px;
      color: #eefbf1;
      line-height: 1.55;
    }

    .hero-card li::before {
      content: "";
      position: absolute;
      left: 0;
      top: 0.58em;
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--green-bright), var(--green));
    }

    .hero-strip {
      border-radius: 24px;
      padding: 24px;
      display: grid;
      gap: 14px;
      background:
        radial-gradient(circle at left center, rgba(187, 245, 143, 0.05), transparent 35%),
        linear-gradient(180deg, rgba(17, 34, 27, 0.96), rgba(9, 18, 14, 0.98));
    }

    .hero-strip strong {
      display: block;
      font-size: 1.4rem;
      line-height: 1.15;
      color: #f4fff6;
    }

    .hero-strip p {
      margin: 0;
      color: var(--muted);
      line-height: 1.65;
    }

    .hero-facts {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 12px;
    }

    .hero-fact {
      padding: 14px 14px 12px;
      border-radius: 16px;
      background: rgba(255, 255, 255, 0.02);
    }

    .hero-fact span {
      display: block;
      color: var(--muted);
      font-size: 0.78rem;
      margin-bottom: 6px;
    }

    .hero-fact strong {
      display: block;
      color: #f0ffe8;
      font-size: 1rem;
      line-height: 1.35;
    }

    .section {
      padding: 92px 0;
      content-visibility: auto;
      contain-intrinsic-size: 1px 980px;
    }

    section[id] {
      scroll-margin-top: calc(var(--header-height) + 24px);
    }

    .trust-strip {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 14px;
      margin-top: 8px;
      padding: 0;
      list-style: none;
    }

    .trust-strip li {
      padding: 20px 20px 20px 22px;
      border-radius: 20px;
      background: linear-gradient(180deg, rgba(16, 31, 24, 0.92), rgba(11, 21, 16, 0.95));
      border: 1px solid rgba(173, 236, 190, 0.06);
    }

    .trust-strip strong {
      display: block;
      margin-bottom: 8px;
      color: #f5fff4;
      font-size: 1rem;
    }

    .trust-strip span {
      color: var(--muted);
      line-height: 1.6;
      font-size: 0.94rem;
    }

    .section-header {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(0, 0.82fr);
      gap: 28px;
      align-items: end;
      margin-bottom: 36px;
    }

    .section-tag {
      display: inline-block;
      margin-bottom: 14px;
      color: var(--green-bright);
      font-size: 0.85rem;
      text-transform: uppercase;
    }

    h2 {
      margin: 0;
      font-size: clamp(2rem, 4vw, 3.4rem);
      line-height: 1.04;
      letter-spacing: -0.04em;
    }

    .section-header p,
    .section-intro {
      margin: 0;
      color: var(--muted);
      font-size: 1.05rem;
      line-height: 1.7;
    }

    .service-grid,
    .advantage-grid,
    .contact-grid {
      display: grid;
      gap: 18px;
    }

    .service-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .service {
      padding: 30px;
      border-radius: var(--radius-lg);
      background: linear-gradient(180deg, rgba(18, 36, 28, 0.92), rgba(11, 21, 16, 0.98));
      border: 1px solid rgba(165, 238, 182, 0.07);
      box-shadow: 0 16px 34px rgba(0, 0, 0, 0.14);
      transition: transform 0.28s ease, border-color 0.28s ease;
    }

    .service:hover {
      transform: translateY(-4px);
      border-color: rgba(187, 245, 143, 0.25);
    }

    .service-index {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 44px;
      height: 44px;
      border-radius: 14px;
      background: linear-gradient(135deg, rgba(187, 245, 143, 0.22), rgba(97, 174, 108, 0.18));
      font-family: "Orbitron", sans-serif;
      color: #d9ffc8;
      margin-bottom: 18px;
    }

    .service h3 {
      margin: 0 0 14px;
      font-size: 1.15rem;
      line-height: 1.35;
      text-transform: uppercase;
    }

    .service p {
      margin: 0 0 18px;
      color: var(--muted);
      line-height: 1.65;
    }

    .service-meta {
      display: inline-flex;
      margin-bottom: 14px;
      padding: 7px 12px;
      border-radius: 999px;
      background: rgba(187, 245, 143, 0.08);
      border: 1px solid rgba(187, 245, 143, 0.08);
      color: #dffccc;
      font-size: 0.82rem;
    }

    .service-list {
      display: grid;
      gap: 10px;
      color: #effbf1;
    }

    .service-link {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-top: 18px;
      color: #eaffdf;
      font-weight: 700;
      text-decoration: underline;
      text-decoration-color: rgba(187, 245, 143, 0.3);
      text-underline-offset: 4px;
    }

    .landing-links {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 16px;
    }

    .landing-link {
      display: grid;
      gap: 8px;
      padding: 20px;
      border-radius: 22px;
      background: linear-gradient(180deg, rgba(18, 36, 28, 0.92), rgba(11, 21, 16, 0.98));
      border: 1px solid rgba(165, 238, 182, 0.07);
      box-shadow: 0 16px 34px rgba(0, 0, 0, 0.14);
    }

    .landing-link strong {
      color: #f3fff6;
      font-size: 1rem;
    }

    .landing-link span {
      color: var(--muted);
      line-height: 1.6;
      font-size: 0.92rem;
    }

    .section-cases {
      padding-top: 0;
    }

    .case-list {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 20px;
    }

    .case-item {
      padding: 28px;
      border-radius: 24px;
      background: linear-gradient(180deg, rgba(18, 36, 28, 0.92), rgba(11, 21, 16, 0.98));
      border: 1px solid rgba(165, 238, 182, 0.07);
      box-shadow: 0 16px 34px rgba(0, 0, 0, 0.14);
    }

    .case-type {
      display: inline-flex;
      align-items: center;
      padding: 6px 10px;
      border-radius: 999px;
      background: rgba(187, 245, 143, 0.08);
      border: 1px solid rgba(187, 245, 143, 0.08);
      color: #dffccc;
      font-size: 0.78rem;
      text-transform: uppercase;
      letter-spacing: 0.12em;
    }

    .case-item h3 {
      margin: 18px 0 12px;
      font-size: 1.25rem;
      line-height: 1.35;
      color: #f4fff7;
    }

    .case-item p {
      margin: 0;
      color: var(--muted);
      line-height: 1.68;
    }

    .case-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 18px;
    }

    .case-meta span {
      color: var(--accent);
      font-size: 0.86rem;
    }

    .advantage-grid {
      grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .section-panel {
      border-radius: var(--radius-xl);
      padding: 36px;
      box-shadow: var(--shadow);
      background: linear-gradient(180deg, rgba(14, 28, 21, 0.94), rgba(10, 20, 15, 0.96));
    }

    .advantage strong,
    .price-callout strong,
    .contact-card h3 {
      display: block;
      margin-bottom: 10px;
      font-size: 1.1rem;
      color: #f3fff5;
    }

    .advantage p,
    .contact-card p {
      margin: 0;
      color: var(--muted);
      line-height: 1.7;
    }

    .advantage-grid .advantage {
      padding-top: 8px;
    }

    .pricing-table {
      border-radius: var(--radius-xl);
      overflow: hidden;
      box-shadow: var(--shadow);
      background: rgba(12, 23, 17, 0.96);
    }

    table {
      width: 100%;
      border-collapse: collapse;
    }

    thead {
      background: rgba(187, 245, 143, 0.08);
    }

    th,
    td {
      padding: 18px 22px;
      text-align: left;
      border-bottom: 1px solid rgba(172, 235, 189, 0.1);
      vertical-align: top;
    }

    th {
      font-size: 0.9rem;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      color: #d8fbd8;
    }

    td {
      color: #eef9f0;
      line-height: 1.55;
    }

    .price-value {
      white-space: nowrap;
      font-weight: 700;
      color: #d8ffc2;
    }

    .price-callout {
      margin-top: 20px;
      padding: 24px 26px;
      border-radius: var(--radius-lg);
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(172, 235, 189, 0.1);
    }

    .price-callout p {
      margin: 0;
      color: var(--muted);
      line-height: 1.7;
    }

    .contact-shell {
      display: grid;
      grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
      gap: 22px;
      align-items: start;
    }

    .lead-form,
    .contact-side,
    .map-card {
      border-radius: var(--radius-xl);
      border: 1px solid rgba(165, 238, 182, 0.08);
      background: linear-gradient(180deg, rgba(18, 36, 28, 0.92), rgba(11, 21, 16, 0.98));
      box-shadow: var(--shadow);
    }

    .lead-form {
      position: relative;
      padding: 24px;
      overflow: hidden;
      background:
        radial-gradient(circle at top right, rgba(187, 245, 143, 0.08), transparent 28%),
        linear-gradient(180deg, rgba(18, 36, 28, 0.92), rgba(11, 21, 16, 0.98));
    }

    .lead-form::after {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(90deg, rgba(172, 235, 189, 0.018) 1px, transparent 1px),
        linear-gradient(rgba(172, 235, 189, 0.018) 1px, transparent 1px);
      background-size: 28px 28px;
      mask-image: linear-gradient(180deg, rgba(0,0,0,0.2), transparent 75%);
      pointer-events: none;
    }

    .form-eyebrow {
      position: relative;
      z-index: 1;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 7px 12px;
      border-radius: 999px;
      background: rgba(187, 245, 143, 0.08);
      border: 1px solid rgba(187, 245, 143, 0.12);
      color: #dcffc8;
      font-family: "Orbitron", sans-serif;
      font-size: 0.72rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
    }

    .lead-form h3 {
      position: relative;
      z-index: 1;
      margin: 14px 0 8px;
      font-size: clamp(1.45rem, 2.5vw, 2.05rem);
      line-height: 1.08;
      letter-spacing: -0.035em;
      max-width: 20ch;
    }

    .lead-form > p {
      position: relative;
      z-index: 1;
      margin: 0;
      color: var(--muted);
      font-size: 0.95rem;
      line-height: 1.55;
      max-width: 54ch;
    }

    .stepper {
      position: relative;
      z-index: 1;
      margin-top: 18px;
      display: grid;
      gap: 14px;
    }

    .stepper-head {
      position: relative;
      display: grid;
      gap: 10px;
      padding: 14px;
      border-radius: 20px;
      background: linear-gradient(145deg, rgba(41, 76, 59, 0.34), rgba(28, 57, 45, 0.42));
      border: 1px solid rgba(152, 220, 177, 0.2);
      overflow: hidden;
    }

    .stepper-head::after {
      content: "";
      position: absolute;
      inset: 0;
      pointer-events: none;
      background: radial-gradient(circle at 18% 18%, rgba(143, 220, 105, 0.1), transparent 42%);
    }

    .stepper-topline {
      display: flex;
      justify-content: space-between;
      gap: 12px;
      align-items: center;
    }

    .stepper-topline strong {
      font-family: "Orbitron", sans-serif;
      font-size: 0.95rem;
      color: #f1fff3;
      letter-spacing: 0.04em;
    }

    .stepper-topline span {
      color: var(--muted);
      font-size: 0.9rem;
      font-weight: 600;
    }

    .stepper-track {
      width: 100%;
      height: 12px;
      border-radius: 999px;
      background: rgba(231, 247, 236, 0.16);
      overflow: hidden;
      border: 1px solid rgba(172, 235, 189, 0.16);
    }

    .stepper-track span {
      display: block;
      width: 33.333%;
      height: 100%;
      border-radius: inherit;
      background: linear-gradient(90deg, #6be39b 0%, #8fdc69 50%, #b6f7a8 100%);
      box-shadow: 0 8px 18px rgba(143, 220, 105, 0.28);
      position: relative;
      overflow: hidden;
      transition: width 0.42s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s ease;
    }

    .stepper-track span::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(100deg, transparent 0%, rgba(255, 255, 255, 0.42) 50%, transparent 100%);
      mix-blend-mode: soft-light;
      transform: translateX(-100%);
      animation: stepShine 2.6s ease-in-out infinite;
    }


    .step-panel {
      display: none;
      gap: 12px;
      position: relative;
      overflow: hidden;
      padding: 18px;
      border-radius: 20px;
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.018));
      border: 1px solid rgba(172, 235, 189, 0.08);
    }

    .step-panel.is-active {
      display: grid;
      animation: stepReveal 220ms ease;
    }

    .step-panel::after {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at top right, rgba(187, 245, 143, 0.08), transparent 30%);
      pointer-events: none;
    }

    .step-panel h4 {
      position: relative;
      z-index: 1;
      margin: 0;
      font-size: 1.08rem;
      max-width: 24ch;
    }

    .step-panel .step1-title {
      max-width: none;
      white-space: nowrap;
      font-size: clamp(0.98rem, 1.8vw, 1.08rem);
    }

    .step-panel p {
      position: relative;
      z-index: 1;
      margin: 0;
      color: var(--muted);
      font-size: 0.94rem;
      line-height: 1.55;
      max-width: 62ch;
    }

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

    .choice-btn,
    .fault-chip {
      appearance: none;
      border: 1px solid rgba(172, 235, 189, 0.1);
      background: rgba(255, 255, 255, 0.025);
      color: #eefbf1;
      border-radius: 18px;
      padding: 14px;
      text-align: left;
      cursor: pointer;
      transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
      font: inherit;
    }

    .choice-btn:hover,
    .fault-chip:hover {
      transform: translateY(-1px);
      border-color: rgba(187, 245, 143, 0.22);
    }

    .choice-btn.is-selected,
    .fault-chip.is-selected {
      border-color: rgba(187, 245, 143, 0.34);
      background: rgba(187, 245, 143, 0.08);
      box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12);
    }

    .choice-btn strong,
    .fault-chip strong {
      display: block;
      margin-bottom: 4px;
      font-size: 0.96rem;
      color: #f4fff7;
    }

    .choice-btn span,
    .fault-chip span {
      color: var(--muted);
      line-height: 1.45;
      font-size: 0.86rem;
    }

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

    .form-fields {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 12px;
    }

    .field,
    .field-wide {
      display: grid;
      gap: 6px;
    }

    .field-wide {
      grid-column: 1 / -1;
    }

    .field label,
    .field-wide label {
      color: #eefbf1;
      font-size: 0.92rem;
    }

    .field label span,
    .field-wide label span {
      color: #bbf58f;
    }

    .field input,
    .field select,
    .field-wide input,
    .field-wide textarea {
      width: 100%;
      border: 1px solid rgba(172, 235, 189, 0.12);
      border-radius: 16px;
      background: rgba(255, 255, 255, 0.03);
      color: #f4fff7;
      padding: 13px 14px;
      font: inherit;
      outline: none;
      transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
      backdrop-filter: blur(8px);
    }

    .field select {
      appearance: none;
    }

    .field select option {
      color: #08140c;
    }

    .field-wide textarea {
      min-height: 92px;
      resize: vertical;
    }

    .field input:focus,
    .field select:focus,
    .field-wide input:focus,
    .field-wide textarea:focus {
      border-color: rgba(187, 245, 143, 0.34);
    }

    .field input.is-invalid,
    .field select.is-invalid,
    .field-wide textarea.is-invalid,
    .choice-grid.is-invalid,
    .fault-grid.is-invalid,
    .turnstile-wrap.is-invalid {
      border-color: rgba(255, 134, 109, 0.65) !important;
      box-shadow: 0 0 0 1px rgba(255, 134, 109, 0.3);
    }

    .field input.is-valid,
    .field select.is-valid,
    .field-wide textarea.is-valid {
      border-color: rgba(187, 245, 143, 0.28);
      box-shadow: 0 0 0 1px rgba(187, 245, 143, 0.12);
    }

    .choice-grid.is-invalid,
    .fault-grid.is-invalid,
    .turnstile-wrap.is-invalid {
      padding: 10px;
      border-radius: 22px;
      background: rgba(255, 134, 109, 0.05);
    }

    .field-error {
      min-height: 16px;
      color: #ffb7aa;
      font-size: 0.78rem;
      line-height: 1.4;
    }

    .turnstile-wrap {
      display: grid;
      gap: 8px;
      padding: 10px 0 0;
      border: 1px solid transparent;
      border-radius: 18px;
    }

    .form-honeypot {
      position: absolute;
      left: -9999px;
      opacity: 0;
      pointer-events: none;
    }

    .success-panel {
      display: none;
      gap: 14px;
      padding: 30px;
      border-radius: 28px;
      background:
        radial-gradient(circle at top left, rgba(187, 245, 143, 0.16), transparent 38%),
        linear-gradient(180deg, rgba(187, 245, 143, 0.08), rgba(255, 255, 255, 0.025));
      border: 1px solid rgba(187, 245, 143, 0.24);
      box-shadow: inset 0 1px 0 rgba(255,255,255,0.04), 0 28px 60px rgba(0, 0, 0, 0.24);
    }

    .success-panel.is-visible {
      display: grid;
    }

    .success-panel strong {
      display: block;
      font-size: 1.55rem;
      line-height: 1.15;
      color: #f4fff6;
    }

    .success-panel::before {
      content: "OK";
      width: 58px;
      height: 58px;
      display: grid;
      place-items: center;
      border-radius: 18px;
      font-family: "Orbitron", "Roboto", sans-serif;
      font-size: 0.95rem;
      letter-spacing: 0.16em;
      color: #0a160c;
      background: linear-gradient(135deg, #bbf58f, #78d17a);
      box-shadow: 0 18px 35px rgba(120, 209, 122, 0.22);
    }

    .success-panel p {
      margin: 0;
      color: var(--muted);
      line-height: 1.7;
    }

    .success-note {
      padding: 14px 16px;
      border-radius: 18px;
      border: 1px solid rgba(172, 235, 189, 0.14);
      background: rgba(255, 255, 255, 0.03);
      color: #e6f5e8;
      line-height: 1.6;
    }

    .step-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      align-items: center;
      justify-content: space-between;
      padding-top: 6px;
      border-top: 1px solid rgba(172, 235, 189, 0.08);
    }

    .step-actions .button {
      min-width: 164px;
    }

    .step-hint,
    .form-status {
      color: var(--muted);
      line-height: 1.6;
    }

    .form-status {
      min-height: 24px;
    }

    .form-legal {
      margin-top: -2px;
      color: rgba(178, 202, 185, 0.82);
      font-size: 0.78rem;
      line-height: 1.6;
    }

    .form-legal a {
      color: #eaf7ee;
      text-decoration: underline;
      text-decoration-color: rgba(187, 245, 143, 0.35);
      text-underline-offset: 3px;
    }

    .form-status.is-success {
      color: #caffaf;
    }

    .form-status.is-error {
      color: #ffd1c5;
    }

    .contact-side {
      padding: 20px;
      display: grid;
      gap: 18px;
      background: linear-gradient(180deg, rgba(16, 31, 24, 0.94), rgba(10, 19, 15, 0.98));
    }

    .contact-quick {
      display: grid;
      gap: 0;
    }

    .contact-quick-item {
      padding: 16px 0;
      border-bottom: 1px solid rgba(172, 235, 189, 0.08);
    }

    .contact-quick-item:first-child {
      padding-top: 0;
    }

    .contact-quick-item:last-child {
      padding-bottom: 0;
      border-bottom: 0;
    }

    .contact-quick-item strong {
      display: block;
      margin-bottom: 6px;
      color: #f3fff6;
      font-size: 1rem;
    }

    .contact-quick-item p {
      margin: 0;
      color: var(--muted);
      line-height: 1.7;
    }

    .contact-quick-item span,
    .contact-quick-item a {
      color: var(--muted);
      line-height: 1.6;
    }

    .contact-quick-item a {
      color: #efffed;
      font-weight: 700;
    }

    @keyframes stepReveal {
      from {
        opacity: 0;
        transform: translateY(8px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes stepShine {
      0%, 100% {
        transform: translateX(-100%);
      }
      45%,
      55% {
        transform: translateX(100%);
      }
    }

    .contact-quick-item ul {
      margin: 10px 0 0;
      padding-left: 18px;
      color: var(--muted);
      line-height: 1.6;
    }

    .map-card {
      margin-top: 24px;
      position: relative;
      border-radius: var(--radius-xl);
      overflow: hidden;
      border: 1px solid rgba(165, 238, 182, 0.12);
      background: linear-gradient(180deg, rgba(18, 36, 28, 0.92), rgba(11, 21, 16, 0.98));
      box-shadow: var(--shadow);
    }

    .map-header {
      position: relative;
      z-index: 4;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 16px;
      padding: 20px 22px 18px;
      border-bottom: 1px solid rgba(172, 235, 189, 0.08);
      background: linear-gradient(180deg, rgba(15, 30, 23, 0.88), rgba(12, 23, 17, 0.78));
    }

    .map-header strong {
      display: block;
      font-size: 1rem;
      color: #f3fff6;
    }

    .map-header span {
      display: block;
      margin-top: 4px;
      color: var(--muted);
      line-height: 1.55;
      font-size: 0.92rem;
    }

    .map-route {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 44px;
      padding: 0 18px;
      border-radius: 999px;
      border: 1px solid rgba(187, 245, 143, 0.16);
      background: rgba(255, 255, 255, 0.03);
      color: #efffed;
      white-space: nowrap;
      transition: transform 0.22s ease, border-color 0.22s ease;
    }

    .map-route:hover,
    .map-route:focus-visible {
      transform: translateY(-1px);
      border-color: rgba(187, 245, 143, 0.36);
    }

    .map-stage {
      position: relative;
      height: 420px;
      overflow: hidden;
    }

    .map-stage::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(180deg, rgba(6, 14, 10, 0.2), rgba(7, 16, 12, 0.44)),
        radial-gradient(circle at top left, rgba(104, 175, 101, 0.14), transparent 34%);
      mix-blend-mode: multiply;
      pointer-events: none;
      z-index: 2;
    }

    .map-stage::after {
      content: "";
      position: absolute;
      inset: 0;
      border: 1px solid rgba(172, 235, 189, 0.06);
      pointer-events: none;
      z-index: 3;
    }

    .map-canvas {
      width: 100%;
      height: 100%;
    }

    .map-fallback {
      height: 100%;
      display: grid;
      place-items: center;
      padding: 24px;
      text-align: center;
      color: var(--muted);
      background: linear-gradient(180deg, rgba(13, 26, 20, 0.9), rgba(9, 18, 14, 0.96));
    }

    .map-note {
      position: relative;
      z-index: 4;
      padding: 18px 22px;
      color: var(--muted);
      line-height: 1.65;
      border-top: 1px solid rgba(172, 235, 189, 0.08);
    }

    .cta-panel {
      position: relative;
      overflow: hidden;
      border-radius: var(--radius-xl);
      padding: 44px;
      box-shadow: var(--shadow);
      background: linear-gradient(180deg, rgba(17, 34, 27, 0.94), rgba(9, 19, 14, 0.98));
    }

    .cta-panel::after {
      content: "";
      position: absolute;
      width: 320px;
      height: 320px;
      right: -120px;
      top: -100px;
      background: radial-gradient(circle, rgba(187, 245, 143, 0.18), transparent 68%);
      pointer-events: none;
    }

    .cta-panel h2 {
      max-width: 820px;
      text-transform: uppercase;
    }

    .cta-panel p {
      max-width: 760px;
      color: var(--muted);
      line-height: 1.75;
    }

    .cta-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-top: 22px;
    }

    .footer {
      width: var(--container);
      margin: 0 auto 26px;
      border-radius: 26px;
      padding: 28px;
      display: grid;
      grid-template-columns: minmax(0, 1.1fr) minmax(220px, 0.9fr) minmax(220px, 0.9fr);
      gap: 24px;
      align-items: start;
    }

    .footer-brand {
      display: flex;
      align-items: flex-start;
      gap: 14px;
    }

    .footer-brand img {
      width: 54px;
      height: 54px;
      flex: 0 0 auto;
    }

    .footer-copy {
      min-width: 0;
    }

    .footer-brand strong {
      display: block;
      text-transform: uppercase;
      font-size: 0.98rem;
    }

    .footer-brand span,
    .footer-meta,
    .footer-nav-title,
    .footer-contacts-title {
      color: var(--muted);
      line-height: 1.65;
    }

    .footer-nav-title,
    .footer-contacts-title {
      display: block;
      margin-bottom: 12px;
      font-family: "Orbitron", sans-serif;
      font-size: 0.72rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .footer-nav {
      display: grid;
      gap: 10px;
    }

    .footer-nav a,
    .footer-contacts a {
      color: #eefbf1;
    }

    .footer-nav a {
      width: fit-content;
      border-bottom: 1px solid transparent;
      transition: border-color 0.22s ease, color 0.22s ease;
    }

    .footer-nav a:hover,
    .footer-nav a:focus-visible {
      border-color: rgba(200, 255, 210, 0.8);
      color: #fff;
    }

    .footer-contacts {
      display: grid;
      gap: 10px;
    }

    .footer-bottom {
      grid-column: 1 / -1;
      display: flex;
      justify-content: space-between;
      gap: 18px;
      padding-top: 18px;
      margin-top: 6px;
      border-top: 1px solid rgba(172, 235, 189, 0.08);
      color: var(--muted);
      line-height: 1.6;
    }

    .fade-in {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }

    .fade-in.is-visible {
      opacity: 1;
      transform: translateY(0);
    }

    @media (max-width: 1180px) {
      .header-inner,
      .hero-shell,
      .section-header,
      .footer {
        grid-template-columns: 1fr;
      }

      .header-inner {
        padding: 12px 0;
      }

      .hero {
        padding-top: 14px;
      }

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

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

    @media (max-width: 960px) {
      body::before {
        display: none;
      }

      .service-grid,
      .advantage-grid,
      .case-list,
      .trust-strip,
      .landing-links,
      .contact-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .contact-shell {
        grid-template-columns: 1fr;
      }

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

      .header-nav {
        flex-direction: column;
        align-items: stretch;
      }

      .header-links {
        justify-content: flex-start;
      }

      .header-links a {
        padding-left: 0;
        padding-right: 18px;
      }

      .header-links a::before {
        left: 0;
        right: 18px;
      }

    }

    @media (max-width: 720px) {
      :root {
        --container: min(100% - 22px, 100%);
        --header-height: 72px;
      }

      .section {
        padding: 72px 0;
      }

      .service-grid,
      .advantage-grid,
      .case-list,
      .trust-strip,
      .landing-links,
      .contact-grid,
      .choice-grid,
      .fault-grid,
      .form-fields {
        grid-template-columns: 1fr;
      }

      .hero-frame {
        min-height: auto;
        padding: 20px;
      }

      .header-links a {
        padding-bottom: 10px;
      }

      .pricing-table table {
        table-layout: fixed;
      }

      .pricing-table th:nth-child(2),
      .pricing-table td:nth-child(2) {
        display: none;
      }

      .pricing-table th:nth-child(1),
      .pricing-table td:nth-child(1) {
        width: 72%;
      }

      .pricing-table th:nth-child(3),
      .pricing-table td:nth-child(3) {
        width: 28%;
      }

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

      th,
      td {
        padding: 16px 14px;
      }

      .cta-panel,
      .section-panel,
      .service,
      .case-item,
      .lead-form,
      .contact-side {
        padding: 20px;
      }

      .map-header {
        flex-direction: column;
        align-items: flex-start;
      }

      .lead-form h3 {
        font-size: 1.52rem;
        letter-spacing: -0.02em;
        max-width: none;
      }

      .stepper-head,
      .step-actions {
        grid-template-columns: 1fr;
      }

      .stepper-head {
        gap: 8px;
        padding: 12px;
      }

      .stepper-topline strong {
        font-size: 0.78rem;
      }

      .stepper-topline span {
        font-size: 0.74rem;
      }

      .stepper-track {
        height: 10px;
      }

      .step-actions {
        flex-direction: column;
        align-items: stretch;
      }

      .step-actions .button {
        width: 100%;
        min-width: 0;
      }

      .step-hint {
        order: 3;
      }

      .footer {
        padding: 22px;
      }

      .footer-bottom {
        flex-direction: column;
      }
    }

    @media (max-width: 960px) {
      :root {
        --header-height: 72px;
      }

      .header-inner {
        min-height: var(--header-height);
        padding: 8px 0;
        align-items: center;
      }

      .brand img {
        width: 48px;
        height: 48px;
      }

      .brand-copy strong {
        font-size: 0.9rem;
      }

      .brand-copy span {
        font-size: 0.78rem;
      }

      .menu-toggle {
        display: inline-flex;
        margin-left: auto;
      }

      .header-contact {
        display: none;
      }

      .header-nav {
        position: absolute;
        left: 10px;
        right: 10px;
        top: calc(100% + 8px);
        display: none;
        padding: 10px 12px;
        border-radius: 16px;
        border: 1px solid rgba(172, 235, 189, 0.12);
        background: rgba(9, 18, 14, 0.96);
        backdrop-filter: blur(14px);
      }

      body.menu-open .header-nav {
        display: grid;
      }

      body.menu-open .menu-toggle span:nth-child(1) {
        transform: translateY(6.5px) rotate(45deg);
      }

      body.menu-open .menu-toggle span:nth-child(2) {
        opacity: 0;
      }

      body.menu-open .menu-toggle span:nth-child(3) {
        transform: translateY(-6.5px) rotate(-45deg);
      }

      .header-links {
        display: grid;
        justify-content: stretch;
      }

      .header-links a {
        padding: 10px 0 12px;
        font-size: 0.95rem;
      }

      .header-links a::before {
        left: 0;
        right: 0;
      }

      .header-links a::after {
        display: none;
      }
    }
