    :root {
      --bg: #eceef2;
      --white: #ffffff;
      --text: #2f3138;
      --muted: #5d626f;
      --blue: #176fb3;
      --blue-dark: #538bba;
      --blue-soft: #b6cde2;
      --radius-xl: 24px;
      --radius-lg: 18px;
      --radius-md: 12px;
      --container: min(1240px, 92vw);
      --shadow: 0 10px 30px rgba(24, 47, 77, 0.12);
      --section-bottom-space: 44px;
      --h2-vertical-space: 26px;
    }

    * {
      box-sizing: border-box;
    }

    h2 {
      text-align: center;
      margin: 0;
      padding: var(--h2-vertical-space) 0;
      font-size: 50px;
      line-height: 1.1;
      font-weight: 800;
    }

    html {
      scroll-behavior: smooth;
      scroll-padding-top: 156px;
    }

    body {
      margin: 0;
      font-family: "Manrope", sans-serif;
      color: var(--text);
      background: var(--bg);
      line-height: 1.35;
    }

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

    .topbar {
      background: #f8f9fb;
      border-bottom: 1px solid #dee2ea;
      font-size: 15px;
      color: var(--muted);
    }

    .topbar .container {
      min-height: 52px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
    }

    .topbar strong {
      color: var(--text);
      font-weight: 700;
    }

    .phone-link {
      color: inherit;
      font-weight: inherit;
      text-decoration: none;
      white-space: nowrap;
    }

    .phone-link:hover {
      text-decoration: underline;
    }

    .lang-switch {
      display: flex;
      gap: 14px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.03em;
      font-size: 16px;
    }

    .lang-switch button {
      border: 0;
      background: transparent;
      color: var(--muted);
      font: inherit;
      cursor: pointer;
      padding: 0;
      border-bottom: 2px solid transparent;
    }

    .lang-switch button.active {
      color: var(--blue);
      border-color: var(--blue);
    }

    header.main-header {
      background: var(--white);
      position: sticky;
      top: 0;
      z-index: 25;
      border-bottom: 1px solid #dde2ea;
    }

    .main-header .container {
      min-height: 110px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      position: relative;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 12px;
      text-decoration: none;
      color: var(--text);
      font-weight: 800;
      font-size: 24px;
      position: relative;
      z-index: 1;
    }

    .logo-img {
      width: 82px;
      height: 82px;
      object-fit: contain;
      flex-shrink: 0;
    }

    .desktop-nav {
      display: flex;
      gap: 40px;
      position: relative;
      z-index: 1;
    }

    .desktop-nav a {
      text-decoration: none;
      color: var(--text);
      font-weight: 700;
      font-size: 18px;
    }

    .desktop-nav a:hover {
      color: var(--blue);
    }

    .btn {
      border: 0;
      border-radius: var(--radius-md);
      background: var(--blue);
      color: #fff;
      font-weight: 700;
      font-size: 18px;
      padding: 14px 24px;
      cursor: pointer;
      transition: 0.25s ease;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      white-space: nowrap;
      position: relative;
      z-index: 1;
    }

    .btn:hover {
      background: var(--blue-dark);
      transform: translateY(-1px);
    }

    .menu-toggle {
      display: none;
      background: transparent;
      border: 0;
      width: 44px;
      height: 44px;
      cursor: pointer;
      padding: 0;
      position: relative;
      z-index: 1;
    }

    .menu-toggle span,
    .menu-toggle::before,
    .menu-toggle::after {
      content: "";
      display: block;
      width: 28px;
      height: 3px;
      background: var(--text);
      border-radius: 4px;
      margin: 6px auto;
    }

    .mobile-menu {
      position: fixed;
      inset: 0;
      background: rgba(18, 30, 46, 0.45);
      z-index: 40;
      display: none;
    }

    .mobile-menu.open {
      display: block;
    }

    .mobile-panel {
      width: min(340px, 85vw);
      height: 100%;
      background: #2f6399;
      color: #fff;
      padding: 26px 24px;
      display: flex;
      flex-direction: column;
      gap: 18px;
      box-shadow: var(--shadow);
    }

    .mobile-menu-head {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 12px;
    }

    .mobile-menu-logo {
      display: none;
      align-items: center;
      justify-content: center;
      width: 62px;
      height: 62px;
      border-radius: 14px;
      background: #ffffff;
      border: 1px solid #d7e3f0;
      box-shadow: 0 8px 18px rgba(16, 36, 60, 0.18);
    }

    .mobile-menu-logo img {
      width: 48px;
      height: 48px;
      object-fit: contain;
    }

    .mobile-panel a {
      color: #fff;
      text-decoration: none;
      font-size: 22px;
      font-weight: 700;
      padding: 8px 0;
    }

    .mobile-lang-switch {
      display: none;
      margin-top: auto;
      justify-content: center;
      gap: 18px;
      font-size: 14px;
    }

    .mobile-lang-switch button {
      color: #fff;
      opacity: 0.85;
      border-bottom-color: transparent;
    }

    .mobile-lang-switch button.active {
      opacity: 1;
      border-bottom-color: #fff;
      color: #fff;
    }

    .mobile-topbar {
      font-size: 14px;
      color: #dbe7f4;
      text-align: center;
      white-space: normal;
      line-height: 1.35;
      overflow-wrap: anywhere;
    }

    .mobile-close {
      align-self: auto;
      border: 0;
      background: transparent;
      color: #fff;
      font-size: 34px;
      line-height: 1;
      cursor: pointer;
      margin-top: -4px;
      padding: 0 2px;
    }

    .hero {
      position: relative;
      background:
        linear-gradient(90deg, rgba(16, 42, 72, 0.58), rgba(14, 39, 71, 0.36)),
        url("/img/hero.png") center/cover no-repeat;
      min-height: 560px;
      display: flex;
      align-items: center;
      padding: 48px 0;
    }

    .hero-inner {
      width: var(--container);
      margin: 0 auto;
      display: block;
    }

    .hero-copy {
      color: #fff;
      max-width: 860px;
    }

    .hero h1 {
      margin: 0 0 14px;
      font-size: clamp(34px, 3.8vw, 56px);
      line-height: 1.1;
      font-weight: 800;
      text-wrap: balance;
      overflow-wrap: anywhere;
    }

    .hero p {
      margin: 0;
      font-size: clamp(18px, 1.5vw, 24px);
      color: rgba(255, 255, 255, 0.95);
      text-wrap: pretty;
      overflow-wrap: anywhere;
    }

    .meter-section {
      margin-top: -36px;
      position: relative;
      z-index: 3;
    }

    .meter-section .container {
      max-width: none;
    }

    .meter-form {
      padding: 18px 18px 16px;
    }

    .meter-head {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      gap: 10px;
      flex-wrap: wrap;
      margin-bottom: 4px;
    }

    .meter-hint {
      margin: 0;
      color: #5f6877;
      font-size: 14px;
    }

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

    .meter-grid > div {
      min-width: 0;
    }

    input,
    select,
    textarea {
      width: 100%;
      max-width: 100%;
    }

    .date-input {
      min-width: 0;
    }

    .meter-grid .full {
      grid-column: auto;
    }

    .meter-actions {
      margin-top: 10px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
    }

    .meter-actions .checkbox {
      margin: 0;
      flex: 1;
    }

    .meter-submit {
      min-width: 240px;
      width: auto;
    }

    .form-feedback {
      margin-top: 10px;
      border-radius: 12px;
      padding: 10px 12px;
      font-size: 14px;
      font-weight: 600;
      line-height: 1.35;
      border: 1px solid transparent;
      opacity: 0;
      transform: translateY(-4px);
      pointer-events: none;
      transition: opacity 0.2s ease, transform 0.2s ease;
      min-height: 0;
      height: 0;
      overflow: hidden;
    }

    .form-feedback.is-visible {
      opacity: 1;
      transform: translateY(0);
      pointer-events: auto;
      min-height: 44px;
      height: auto;
    }

    .form-feedback.is-success {
      background: #edf9f1;
      color: #0d6b2f;
      border-color: #b8e7c7;
    }

    .form-feedback.is-error {
      background: #fff1f1;
      color: #9b1e1e;
      border-color: #f3c5c5;
    }

    .card {
      background: var(--white);
      border-radius: var(--radius-xl);
      padding: 24px;
      box-shadow: var(--shadow);
    }

    .hero-form h2,
    .contact-form h3 {
      margin: 0 0 14px;
      font-size: clamp(26px, 1.8vw, 34px);
      line-height: 1.1;
    }

    .hero-form h2 {
      padding: 0;
      text-align: left;
    }

    label {
      display: block;
      margin: 9px 0 6px;
      font-weight: 700;
      font-size: 16px;
    }

    input,
    select,
    textarea {
      width: 100%;
      height: 46px;
      border: 1px solid #cfd6e0;
      border-radius: 12px;
      padding: 0 14px;
      font: inherit;
      font-size: 16px;
      color: var(--text);
      background: #fff;
    }

    textarea {
      height: 120px;
      padding-top: 12px;
      resize: vertical;
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
    }

    .checkbox {
      display: flex;
      gap: 10px;
      align-items: flex-start;
      margin: 10px 0 12px;
      color: #5c6573;
      font-size: 14px;
    }

    .checkbox input {
      width: 18px;
      height: 18px;
      margin-top: 2px;
    }

    .checkbox a {
      color: var(--blue);
      font-weight: 700;
      text-decoration: none;
    }

    .checkbox a:hover {
      color: var(--blue-dark);
      text-decoration: underline;
    }

    .meter-form .btn {
      height: 46px;
      padding: 0 20px;
    }

    .section {
      padding: 0 0 var(--section-bottom-space);
    }

    .section h2 {
      margin: 0;
    }

    .about-grid {
      display: grid;
      grid-template-columns: 1.3fr 1fr;
      gap: 20px;
      align-items: stretch;
    }

    .about-text {
      background: #f8f9fb;
      border-radius: var(--radius-xl);
      padding: 30px;
      font-size: 17px;
      color: #505562;
    }

    .about-text h3 {
      margin: 0 0 18px;
      font-size: clamp(28px, 2.1vw, 40px);
      line-height: 1.08;
      color: var(--text);
    }

    .about-text .lead {
      color: var(--blue);
    }

    .stats {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
    }

    .stat {
      border-radius: 22px;
      padding: 18px 20px;
      min-height: 170px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      font-size: 30px;
      font-weight: 800;
    }

    .stat.dark {
      background: var(--blue);
      color: #fff;
    }

    .stat.light {
      background: var(--blue-soft);
      color: var(--blue);
    }

    .stat p {
      margin: 8px 0 0;
      font-size: 18px;
      line-height: 1.2;
      font-weight: 500;
      color: inherit;
    }

    .about-section {
      background: transparent;
      border-top: 0;
      border-bottom: 0;
    }

    .about-main-title {
      color: #1f2f45;
      margin: 0 0 8px;
      font-size: clamp(34px, 2.7vw, 46px);
      text-align: center;
    }

    .about-shell {
      display: grid;
      grid-template-columns: 1.25fr 0.75fr;
      gap: 20px;
      align-items: stretch;
      width: 100%;
      margin: 0;
    }

    .about-copy-card {
      background: #fff;
      border: 1px solid #dde6f1;
      border-radius: 22px;
      padding: 30px;
      box-shadow: 0 10px 26px rgba(25, 50, 80, 0.08);
      height: 100%;
    }

    .about-copy-card h3 {
      margin: 0 0 16px;
      font-size: clamp(30px, 2.2vw, 40px);
      line-height: 1.15;
      color: #1c2f4a;
    }

    .about-copy-card h3 .lead {
      color: #3a6ea8;
    }

    .about-copy-card p {
      margin: 0 0 14px;
      font-size: 17px;
      line-height: 1.55;
      color: #455c79;
    }

    .about-media {
      display: flex;
      flex-direction: column;
      gap: 12px;
      height: 100%;
      background: #fff;
      border: 1px solid #dde7f2;
      border-radius: 22px;
      padding: 16px;
      box-shadow: 0 10px 26px rgba(25, 50, 80, 0.08);
    }

    .about-photo {
      position: relative;
      margin: 0;
      width: 100%;
      border-radius: 20px;
      overflow: hidden;
      min-height: 250px;
      border: 1px solid #d9e4f1;
    }

    .about-photo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .about-photo::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, transparent 50%, rgba(14, 32, 56, 0.52) 100%);
      pointer-events: none;
    }

    .about-badge {
      position: absolute;
      left: 12px;
      bottom: 12px;
      padding: 8px 10px;
      font-size: 13px;
      font-weight: 700;
      color: #fff;
      border-radius: 10px;
      background: rgba(25, 62, 106, 0.88);
      backdrop-filter: blur(2px);
      z-index: 1;
    }

    .about-panel {
      width: 100%;
      background: transparent;
      border-radius: 16px;
      padding: 16px;
      box-shadow: none;
      flex: 1;
    }

    .about-panel h4 {
      margin: 0 0 10px;
      color: #233b5c;
      font-size: 20px;
    }

    .about-panel ul {
      margin: 0;
      padding-left: 18px;
      color: #49617f;
      font-size: 16px;
      line-height: 1.45;
    }

    .about-panel li + li {
      margin-top: 6px;
    }

    .about-facts-title {
      margin: 20px auto 10px;
      max-width: none;
      color: #253a58;
      font-size: 20px;
      font-weight: 800;
    }

    .about-facts {
      max-width: none;
      margin: 0;
      display: grid;
      grid-template-columns: repeat(3, minmax(180px, 1fr));
      gap: 14px;
      align-items: stretch;
    }

    .fact-card {
      border-radius: 14px;
      border: 1px solid #d2dfef;
      background: #fff;
      padding: 16px;
      min-height: 160px;
      box-shadow: 0 8px 20px rgba(25, 57, 92, 0.08);
    }

    .fact-card .num {
      display: block;
      font-size: 50px;
      line-height: 1;
      font-weight: 800;
      color: #2e6bab;
      margin-bottom: 8px;
    }

    .fact-card p {
      margin: 0;
      color: #324f72;
      font-size: 16px;
      line-height: 1.25;
      font-weight: 600;
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px;
    }

    .service-card {
      position: relative;
      background:
        linear-gradient(160deg, rgba(255, 255, 255, 0.96) 0%, rgba(245, 250, 255, 0.96) 100%);
      border: 1px solid #cfe0f2;
      border-radius: 20px;
      padding: 24px 24px 22px;
      min-height: 246px;
      box-shadow: none;
      transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
      overflow: hidden;
      backdrop-filter: blur(2px);
    }

    .service-card::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 5px;
      background: linear-gradient(90deg, #2f6299 0%, #56a5df 55%, #8cc7f2 100%);
    }

    .service-card::after {
      content: "";
      position: absolute;
      top: -80px;
      right: -80px;
      width: 170px;
      height: 170px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(92, 166, 226, 0.22) 0%, rgba(92, 166, 226, 0) 68%);
      pointer-events: none;
    }

    .icon {
      width: 64px;
      height: 64px;
      border-radius: 14px;
      background: linear-gradient(145deg, #ffffff 0%, #edf3fb 100%);
      color: #2f639a;
      border: 1px solid #d2deec;
      display: grid;
      place-items: center;
      font-size: 28px;
      margin-bottom: 14px;
      box-shadow: none;
    }

    .service-card h3 {
      margin: 0 0 10px;
      font-size: 24px;
      line-height: 1.12;
      color: #20314a;
    }

    .service-card p {
      margin: 0;
      font-size: 16px;
      color: #526177;
      line-height: 1.42;
    }

    .service-card:hover {
      transform: translateY(-6px);
      box-shadow: none;
      border-color: #b7d0e8;
    }

    .services-note {
      margin: 0 0 22px;
      background: linear-gradient(180deg, #f8fbff 0%, #f4f7fb 100%);
      border: 1px solid #d7e2ef;
      border-radius: 22px;
      padding: 22px;
      box-shadow: 0 14px 28px rgba(27, 55, 90, 0.08);
    }

    .services-note-head {
      margin-bottom: 14px;
      padding-bottom: 14px;
      border-bottom: 1px solid #d9e3ef;
    }

    .services-note h3 {
      margin: 0 0 8px;
      font-size: 26px;
      line-height: 1.06;
      color: #1f3047;
    }

    .services-note-lead {
      margin: 0;
      font-size: 17px;
      line-height: 1.45;
      color: #314865;
      max-width: 1120px;
    }

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

    .services-note-card {
      background: #fff;
      border: 1px solid #d7e2ef;
      border-radius: 14px;
      padding: 14px 16px;
      box-shadow: 0 8px 16px rgba(25, 51, 83, 0.06);
    }

    .services-note-card h4 {
      margin: 0 0 8px;
      font-size: 19px;
      line-height: 1.2;
      color: #28466f;
    }

    .services-note-card p {
      margin: 0;
      font-size: 17px;
      line-height: 1.45;
      color: #495a74;
    }

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

    .services-note-formula {
      background: #fff;
      border: 1px solid #d7e2ef;
      border-radius: 14px;
      padding: 14px 16px;
      box-shadow: 0 8px 16px rgba(25, 51, 83, 0.06);
    }

    .services-note-formula b {
      display: block;
      margin-bottom: 6px;
      color: #243e63;
      font-size: 18px;
      line-height: 1.2;
    }

    .services-note-formula p {
      margin: 0;
      font-size: 16px;
      line-height: 1.44;
      color: #4f6078;
    }

    .links-box {
      background: #f8f9fb;
      border-radius: var(--radius-xl);
      padding: 16px 26px;
    }

    .link-group {
      padding: 16px 0;
      border-bottom: 1px solid #dce2ea;
    }

    .link-group:last-child {
      border-bottom: 0;
    }

    .link-group h4 {
      margin: 0 0 10px;
      font-size: 22px;
    }

    .doc-link {
      display: flex;
      align-items: flex-start;
      gap: 8px;
      color: #4c5563;
      text-decoration: none;
      font-size: 17px;
      margin: 10px 0;
    }

    .doc-link:hover {
      color: var(--blue);
    }

    .tariffs-wrap {
      margin-top: 20px;
      background: #ffffff;
      border: 1px solid #d9e4f1;
      border-radius: var(--radius-xl);
      padding: 20px;
      box-shadow: 0 10px 24px rgba(28, 57, 91, 0.08);
    }

    .tariffs-head {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 12px;
      margin-bottom: 12px;
      flex-wrap: wrap;
    }

    .tariffs-head h3 {
      margin: 0;
      font-size: 34px;
      line-height: 1.1;
    }

    .tariffs-sub {
      margin: 0;
      color: #5c6573;
      font-size: 16px;
    }

    .tariff-topline {
      margin: 0 0 14px;
      font-size: 14px;
      color: #4d6b90;
      font-weight: 700;
      background: #edf5ff;
      border: 1px solid #d3e4f8;
      border-radius: 999px;
      padding: 6px 12px;
      display: inline-block;
    }

    .tariff-cards {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
    }

    .tariff-card {
      background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
      border: 1px solid #d4e1f0;
      border-radius: 14px;
      padding: 16px 16px 14px;
      display: flex;
      flex-direction: column;
      gap: 10px;
      min-height: 180px;
      box-shadow: 0 8px 16px rgba(29, 59, 93, 0.08);
    }

    .tariff-card h4 {
      margin: 0;
      font-size: 22px;
      line-height: 1.2;
      color: #26364c;
    }

    .tariff-value {
      font-size: 50px;
      line-height: 0.95;
      font-weight: 800;
      color: #2f6aa6;
      letter-spacing: -0.01em;
    }

    .tariff-note {
      color: #5a6677;
      font-size: 17px;
      margin-top: auto;
    }

    .competition-link {
      margin-top: 14px;
      font-size: 18px;
      color: #4e5664;
    }

    .competition-link a {
      color: var(--blue);
      font-weight: 700;
      text-decoration: none;
    }

    .competition-link a:hover {
      color: var(--blue-dark);
      text-decoration: underline;
    }

    .info-section {
      margin-top: 20px;
      background: #f8f9fb;
      border-radius: var(--radius-xl);
      padding: 24px;
      border: 1px solid #dce4ee;
    }

    .info-section h3 {
      margin: 0 0 12px;
      font-size: 34px;
      line-height: 1.1;
    }

    .info-section p {
      margin: 0 0 12px;
      font-size: 19px;
      color: #4e5664;
    }

    .doc-list {
      margin: 10px 0 0;
      padding-left: 20px;
      color: #4e5664;
      font-size: 19px;
    }

    .doc-list li {
      margin: 8px 0;
    }

    .doc-list a {
      color: var(--blue);
      font-weight: 700;
      text-decoration: none;
    }

    .doc-list a:hover {
      color: var(--blue-dark);
      text-decoration: underline;
    }

    .tariffs-full {
      margin-top: 18px;
      background: #fff;
      border: 1px solid #d7e1ec;
      border-radius: 16px;
      padding: 16px;
    }

    .energy-pack {
      margin-top: 14px;
      background: linear-gradient(180deg, #f8fbff 0%, #f3f8fe 100%);
      border: 1px solid #d7e4f3;
      border-radius: 14px;
      padding: 14px 16px;
    }

    .energy-pack h4 {
      margin: 0 0 8px;
      font-size: 28px;
      line-height: 1.1;
      color: #26374e;
    }

    .energy-pack p {
      margin: 0 0 8px;
      font-size: 16px;
      color: #4d5e76;
      line-height: 1.45;
    }

    .energy-pack .offer {
      font-weight: 800;
      color: #2b5e96;
      font-size: 18px;
    }

    .energy-pack .since {
      font-weight: 700;
      color: #324b6f;
    }

    .tariffs-full h4 {
      margin: 0 0 10px;
      font-size: 24px;
    }

    .tariffs-table-wrap {
      overflow-x: hidden;
      margin-bottom: 12px;
    }

    .tariffs-table {
      width: 100%;
      border-collapse: collapse;
      table-layout: fixed;
      font-size: 16px;
    }

    .tariffs-table th,
    .tariffs-table td {
      border-bottom: 1px solid #e4eaf1;
      padding: 8px 10px;
      text-align: left;
      vertical-align: top;
    }

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

    .tariffs-table th:nth-child(2),
    .tariffs-table td:nth-child(2) {
      width: 16%;
    }

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

    .tariffs-table thead th {
      background: #f1f6fc;
      color: #2f5276;
      font-size: 14px;
      text-transform: uppercase;
      letter-spacing: 0.02em;
    }

    .tariffs-table .group-row td {
      background: #f8fbff;
      color: #2e4f74;
      font-weight: 800;
    }

    .tariffs-table td:last-child {
      font-weight: 700;
      color: #1e4470;
      white-space: normal;
    }

    .tariffs-note {
      margin: 4px 0 0;
      font-size: 15px;
      color: #5f6a79;
    }

    .contacts-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 18px;
      align-items: stretch;
    }

    .contact-main {
      background: #f8f9fb;
      border-radius: var(--radius-xl);
      padding: 26px;
      font-size: 18px;
      color: #505562;
      height: 100%;
    }

    .contact-main strong {
      color: var(--text);
    }

    .row {
      display: flex;
      gap: 24px;
      margin: 8px 0;
      flex-wrap: wrap;
    }

    .row b {
      min-width: 130px;
    }

    .contact-main a {
      color: var(--blue);
      font-weight: 700;
      text-decoration: none;
    }

    .contact-main a.phone-link {
      color: inherit;
      font-weight: 800;
      text-decoration: none;
    }

    .contact-note {
      color: #6f7c8f;
      font-size: 0.9em;
      white-space: nowrap;
    }

    .contact-map {
      width: 100%;
      height: 420px;
      border-radius: 20px;
      margin-top: 18px;
      overflow: hidden;
      border: 1px solid #d8e1ec;
      background: #edf2f8;
      box-shadow: 0 10px 24px rgba(24, 50, 79, 0.08);
    }

    .contact-map iframe {
      width: 100%;
      height: 100%;
      border: 0;
      display: block;
    }

    .contacts-links {
      margin-top: 0;
      background: #f8f9fb;
      height: 100%;
    }

    .contacts-links h3 {
      margin: 0 0 10px;
      font-size: 30px;
      line-height: 1.1;
      color: #243750;
    }

    .contacts-links .link-group .row {
      margin: 6px 0;
      gap: 12px;
      font-size: 17px;
    }

    .contacts-links .link-group .row b {
      min-width: 94px;
      color: #4a5568;
    }

    .contact-subtitle {
      margin: 0 0 12px;
      font-size: 22px;
      line-height: 1.2;
      color: #2d3340;
      font-weight: 800;
    }

    .contact-form.compact-contact {
      background: #f8f9fb;
      padding: 18px 18px 16px;
      margin-top: 18px;
    }

    .contact-grid {
      grid-template-columns: repeat(3, 1fr);
    }

    .contact-grid .full {
      grid-column: 1 / -1;
    }

    .contact-form.compact-contact textarea {
      height: 96px;
    }

    .contact-form {
      background: #f8f9fb;
      border-radius: var(--radius-xl);
      padding: 26px;
    }

    footer {
      padding: 22px 0 30px;
      color: #6f7684;
      font-size: 15px;
    }

    .footer-inner {
      width: var(--container);
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      flex-wrap: wrap;
    }

    .footer-copy {
      color: #6f7684;
    }

    .footer-right a {
      color: #355f93;
      font-weight: 700;
      text-decoration: none;
    }

    .footer-right a:hover {
      color: #214a78;
      text-decoration: underline;
    }

    @media (max-width: 1320px) {
      .desktop-nav {
        gap: 24px;
      }

      .desktop-nav a {
        font-size: 20px;
      }

      .btn {
        font-size: 16px;
      }

      .about-grid,
      .contacts-grid {
        grid-template-columns: 1fr;
      }

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

      .tariff-cards {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media (max-width: 900px) {
      html {
        scroll-padding-top: 118px;
      }

      .topbar {
        font-size: 13px;
      }
      .main-header .container {
        min-height: 82px;
      }

      .desktop-nav,
      .header-btn {
        display: none;
      }

      .menu-toggle {
        display: block;
      }

      .mobile-menu-logo,
      .mobile-lang-switch {
        display: flex;
      }

      .logo {
        font-size: 20px;
      }

      .logo-img {
        width: 64px;
        height: 64px;
      }

      .hero {
        min-height: auto;
        padding-top: 16px;
      }

      .hero h1 {
        font-size: clamp(30px, 8.6vw, 40px);
        line-height: 1.12;
      }

      html[lang="ru"] .hero h1 {
        font-size: clamp(28px, 8.1vw, 36px);
      }

      .hero p {
        font-size: 18px;
      }

      .services-note {
        padding: 16px;
      }

      .services-note-lead {
        font-size: 19px;
      }

      .services-note-grid,
      .services-note-formulas {
        grid-template-columns: 1fr;
      }

      label {
        font-size: 16px;
      }

      .section {
        padding: 0 0 42px;
      }

      h2 {
        font-size: 42px;
        --h2-vertical-space: 22px;
      }

      .about-copy-card h3 {
        font-size: 32px;
      }

      .service-card h3 {
        font-size: 24px;
      }

      .links-box {
        padding: 14px 16px;
      }

      .doc-link {
        font-size: 18px;
      }

      .tariffs-head h3 {
        font-size: 30px;
      }

      .tariffs-table {
        font-size: 14px;
      }

      .tariffs-table th,
      .tariffs-table td {
        padding: 7px 6px;
        overflow-wrap: anywhere;
        word-break: break-word;
      }

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

      .tariffs-table th:nth-child(2),
      .tariffs-table td:nth-child(2) {
        width: 20%;
      }

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

      .tariffs-full h4 {
        font-size: 22px;
      }

      .info-section h3 {
        font-size: 28px;
      }

      .meter-grid {
        grid-template-columns: 1fr;
      }

      .flatpickr-calendar {
        width: min(307px, calc(100vw - 24px));
        max-width: calc(100vw - 24px);
      }

      .flatpickr-days,
      .dayContainer {
        width: 100%;
        min-width: 100%;
        max-width: 100%;
      }

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

      .about-media {
        height: auto;
      }

      .about-facts {
        grid-template-columns: repeat(2, minmax(140px, 1fr));
      }

      .contact-map {
        height: 360px;
      }

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

      .meter-submit {
        width: 100%;
        min-width: 0;
      }
    }

    @media (max-width: 640px) {
      html {
        scroll-padding-top: 102px;
      }

      .topbar .container {
        min-height: 44px;
      }

      .topbar-line {
        white-space: nowrap;
        font-size: 11px;
      }

      .logo span {
        display: none;
      }

      .logo-img {
        width: 56px;
        height: 56px;
      }

      .lang-switch {
        gap: 10px;
      }

      .hero h1 {
        font-size: clamp(26px, 9vw, 33px);
        line-height: 1.14;
      }

      html[lang="ru"] .hero h1 {
        font-size: clamp(24px, 8.4vw, 31px);
      }

      .hero p {
        font-size: 16px;
      }

      .services-note h3 {
        font-size: 24px;
      }

      .services-note-lead {
        font-size: 16px;
      }

      .services-note-card h4,
      .services-note-formula b {
        font-size: 17px;
      }

      .services-note-card p,
      .services-note-formula p {
        font-size: 15px;
      }

      .contact-map {
        height: 300px;
      }

      .card,
      .about-copy-card,
      .service-card,
      .contact-main,
      .contact-form {
        padding: 18px;
      }

      .form-row,
      .services-grid,
      .stats,
      .tariff-cards {
        grid-template-columns: 1fr;
      }

      .stat {
        min-height: 160px;
      }

      h2 {
        font-size: 34px;
        --h2-vertical-space: 18px;
      }

      .about-copy-card h3 {
        font-size: 30px;
      }

      .service-card h3 {
        font-size: 26px;
      }

      .row {
        gap: 10px;
      }

      .row > *,
      .doc-link,
      .contact-main a,
      .links-box a,
      .service-card h3,
      .service-card p,
      .services-note p,
      .about-copy-card p,
      .about-copy-card h3,
      .mobile-panel a,
      .checkbox span {
        min-width: 0;
        overflow-wrap: anywhere;
        word-break: break-word;
        hyphens: auto;
      }

      .mobile-panel {
        width: min(360px, 88vw);
      }

      .mobile-panel a {
        font-size: 20px;
        line-height: 1.25;
      }

      .mobile-close {
        margin-top: 0;
      }

      .footer-inner {
        flex-direction: column;
        align-items: flex-start;
      }
    }
