:root {
      --bg: #f3f5f7;
      --surface: #ffffff;
      --text: #112b49;
      --muted: #5f7084;
      --line: #e7ebf0;
      --accent: #f39a2c;
      --accent-dark: #e88715;
      --shadow: 0 14px 40px rgba(17, 43, 73, 0.08);
      --container: 1180px;
      --hero-side: max(20px, calc((100vw - var(--container)) / 2 + 16px));
      --radius-xl: 28px;
      --radius-lg: 22px;
      --radius-md: 16px;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      font-family: Inter, Arial, sans-serif;
      background: var(--bg);
      color: var(--text);
      line-height: 1.5;
    }

    body.modal-open {
      overflow: hidden;
    }

    a { color: inherit; text-decoration: none; }
    img { max-width: 100%; display: block; }
    button, input, textarea { font: inherit; }

    .container {
      width: min(var(--container), calc(100% - 32px));
      margin: 0 auto;
    }

    .section { padding: 52px 0; }

    .section-title {
      margin: 0 0 18px;
      font-size: clamp(30px, 4vw, 48px);
      line-height: 1.05;
      letter-spacing: -0.03em;
      font-weight: 800;
    }

    .section-subtitle {
      margin: 0 0 32px;
      max-width: 720px;
      color: var(--muted);
      font-size: 18px;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 50;
      background: rgba(243, 245, 247, 0.97);
      border-bottom: 1px solid rgba(231, 235, 240, 0.95);
    }

    .header-inner {
      min-height: 88px;
      display: grid;
      grid-template-columns: auto 1fr auto;
      align-items: center;
      gap: 28px;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      font-size: 18px;
      font-weight: 800;
      letter-spacing: -0.03em;
      white-space: nowrap;
    }

    .brand-mark {
      width: 36px;
      height: 36px;
      border-radius: 12px;
      background: linear-gradient(135deg, var(--accent), #ffb45a);
      position: relative;
      box-shadow: 0 10px 24px rgba(243, 154, 44, 0.24);
      flex: 0 0 36px;
    }

    .brand-mark::before,
    .brand-mark::after {
      content: "";
      position: absolute;
      border-radius: 5px;
      background: #fff;
    }

    .brand-mark::before {
      left: 8px;
      top: 7px;
      bottom: 7px;
      width: 11px;
    }

    .brand-mark::after {
      right: 8px;
      bottom: 8px;
      width: 8px;
      height: 8px;
    }

    .nav-links {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 34px;
      min-width: 0;
    }

    .nav-links a,
    .nav-dropdown > button {
      position: relative;
      font-size: 15px;
      font-weight: 700;
      color: #35465b;
      padding: 6px 0;
    }

    .nav-dropdown > button {
      border: 0;
      background: transparent;
      cursor: pointer;
    }

    .nav-dropdown {
      position: relative;
      padding: 20px 0;
      margin: -20px 0;
    }

    .nav-dropdown > button::after {
      content: "";
      display: inline-block;
      width: 7px;
      height: 7px;
      margin-left: 8px;
      border-right: 2px solid currentColor;
      border-bottom: 2px solid currentColor;
      transform: translateY(-3px) rotate(45deg);
    }

    .nav-dropdown-menu {
      position: absolute;
      left: 50%;
      top: calc(100% - 8px);
      width: 210px;
      padding: 10px;
      border-radius: 18px;
      background: rgba(255, 255, 255, 0.98);
      border: 1px solid rgba(231, 235, 240, 0.95);
      box-shadow: 0 18px 42px rgba(17, 43, 73, 0.14);
      opacity: 0;
      visibility: hidden;
      transform: translate(-50%, 10px);
      transition: 0.2s ease;
    }

    .nav-dropdown:hover .nav-dropdown-menu,
    .nav-dropdown:focus-within .nav-dropdown-menu {
      opacity: 1;
      visibility: visible;
      transform: translate(-50%, 0);
    }

    .nav-dropdown-menu a {
      display: block;
      padding: 10px 12px;
      border-radius: 12px;
    }

    .nav-dropdown-menu a:hover {
      background: rgba(243, 154, 44, 0.1);
      color: var(--accent-dark);
    }

    .nav-links > a::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: -8px;
      width: 100%;
      height: 2px;
      background: var(--accent);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.2s ease;
    }

    .nav-links > a:hover::after,
    .nav-links > a.active::after { transform: scaleX(1); }

    .header-actions {
      display: flex;
      align-items: center;
      gap: 12px;
      white-space: nowrap;
    }

    .header-phones {
      position: relative;
      display: grid;
      gap: 2px;
      padding: 3px 0 3px 18px;
      background: transparent;
      border: 0;
    }

    .header-phones::before {
      content: "";
      position: absolute;
      left: 0;
      top: 5px;
      bottom: 5px;
      width: 3px;
      border-radius: 99px;
      background: linear-gradient(180deg, var(--accent), #ffbc68);
    }

    .header-phones a {
      color: var(--text);
      font-size: 13px;
      line-height: 1.2;
      font-weight: 800;
      letter-spacing: 0.01em;
    }

    .header-phones a:hover {
      color: var(--accent-dark);
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 54px;
      padding: 0 24px;
      border-radius: 16px;
      border: 1px solid transparent;
      cursor: pointer;
      font-weight: 700;
      transition: 0.2s ease;
      white-space: nowrap;
    }

    .btn:hover { transform: translateY(-1px); }

    .btn-primary {
      background: var(--accent);
      color: #fff;
      box-shadow: 0 14px 30px rgba(243, 154, 44, 0.28);
    }

    .btn-primary:hover { background: var(--accent-dark); }

    .btn-secondary {
      background: rgba(255, 255, 255, 0.75);
      border-color: rgba(243, 154, 44, 0.2);
      color: var(--accent-dark);
    }

    .phone-toggle {
      display: none;
      width: 48px;
      height: 48px;
      border-radius: 14px;
      border: 1px solid rgba(243, 154, 44, 0.24);
      background: #fff;
      position: relative;
      padding: 0;
      cursor: pointer;
      box-shadow: 0 12px 26px rgba(17, 43, 73, 0.07);
    }

    .phone-toggle svg {
      position: absolute;
      left: 50%;
      top: 50%;
      width: 24px;
      height: 24px;
      fill: var(--accent);
      transform: translate(-50%, -50%);
    }

    .burger {
      display: none;
      width: 48px;
      height: 48px;
      border-radius: 14px;
      border: 1px solid var(--line);
      background: #fff;
      position: relative;
      padding: 0;
      cursor: pointer;
    }

    .burger span,
    .burger::before,
    .burger::after {
      content: "";
      position: absolute;
      left: 50%;
      width: 20px;
      height: 2px;
      border-radius: 2px;
      background: var(--text);
      transform: translateX(-50%);
      transition: 0.2s ease;
    }

    .burger span { top: 23px; }
    .burger::before { top: 17px; }
    .burger::after { top: 29px; }

    .burger.active span { opacity: 0; }
    .burger.active::before { transform: translateX(-50%) rotate(45deg); top: 23px; }
    .burger.active::after { transform: translateX(-50%) rotate(-45deg); top: 23px; }

    .phone-modal {
      position: fixed;
      inset: 0;
      z-index: 90;
      display: none;
      padding: 16px;
    }

    .phone-modal.open {
      display: grid;
      place-items: center;
    }

    .phone-modal__backdrop {
      position: absolute;
      inset: 0;
      background: rgba(17, 43, 73, 0.42);
      backdrop-filter: blur(7px);
    }

    .phone-modal__dialog {
      position: relative;
      width: min(100%, 390px);
      padding: 30px 22px 22px;
      border-radius: 26px;
      background: #fff;
      box-shadow: 0 28px 80px rgba(17, 43, 73, 0.24);
      overflow: hidden;
    }

    .phone-modal__dialog::before {
      content: "";
      position: absolute;
      inset: 0 0 auto;
      height: 6px;
      background: linear-gradient(90deg, var(--accent), #ffbf67);
    }

    .phone-modal__close {
      position: absolute;
      right: 12px;
      top: 12px;
      width: 40px;
      height: 40px;
      border: 1px solid var(--line);
      border-radius: 13px;
      background: #fff;
      cursor: pointer;
    }

    .phone-modal__close::before,
    .phone-modal__close::after {
      content: "";
      position: absolute;
      left: 50%;
      top: 50%;
      width: 18px;
      height: 2px;
      border-radius: 2px;
      background: var(--text);
    }

    .phone-modal__close::before { transform: translate(-50%, -50%) rotate(45deg); }
    .phone-modal__close::after { transform: translate(-50%, -50%) rotate(-45deg); }

    .phone-modal__eyebrow {
      color: var(--accent-dark);
      font-size: 13px;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      margin-bottom: 8px;
    }

    .phone-modal h2 {
      margin: 0 46px 10px 0;
      font-size: 28px;
      line-height: 1.05;
      letter-spacing: -0.03em;
    }

    .phone-modal p {
      margin: 0 0 18px;
      color: var(--muted);
    }

    .phone-modal__numbers {
      display: grid;
      gap: 10px;
    }

    .phone-modal__numbers a {
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 54px;
      border-radius: 16px;
      background: rgba(243, 154, 44, 0.12);
      border: 1px solid rgba(243, 154, 44, 0.22);
      color: var(--accent-dark);
      font-size: 18px;
      font-weight: 900;
    }

    .hero {
      padding: 0 0 26px;
    }

    .page-hero {
      padding: 74px 0 46px;
      background:
        radial-gradient(circle at 18% 18%, rgba(243,154,44,0.18), transparent 30%),
        linear-gradient(135deg, #eef4fb 0%, #ffffff 52%, #f8fafc 100%);
      border-bottom: 1px solid var(--line);
    }

    .page-eyebrow {
      display: inline-flex;
      align-items: center;
      margin-bottom: 18px;
      padding: 8px 14px;
      border-radius: 999px;
      background: rgba(243, 154, 44, 0.12);
      color: var(--accent-dark);
      font-size: 13px;
      font-weight: 900;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .page-title {
      margin: 0 0 18px;
      max-width: 920px;
      font-size: clamp(40px, 7vw, 82px);
      line-height: 0.96;
      letter-spacing: -0.06em;
      font-weight: 900;
    }

    .page-lead {
      margin: 0;
      max-width: 760px;
      color: var(--muted);
      font-size: clamp(18px, 2.4vw, 24px);
    }

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

    .content-card {
      min-height: 100%;
      padding: 30px;
    }

    .content-card h2,
    .content-card h3 {
      margin: 0 0 12px;
      font-size: 24px;
      line-height: 1.15;
      letter-spacing: -0.03em;
    }

    .content-card p {
      margin: 0;
      color: var(--muted);
    }

    .content-list {
      display: grid;
      gap: 12px;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .content-list li {
      position: relative;
      padding-left: 24px;
      color: var(--muted);
    }

    .content-list li::before {
      content: "";
      position: absolute;
      left: 0;
      top: 0.7em;
      width: 9px;
      height: 9px;
      border-radius: 50%;
      background: var(--accent);
      box-shadow: 0 0 0 5px rgba(243,154,44,0.12);
    }

    .seo-note {
      padding: 28px;
      border-radius: 26px;
      background: #112b49;
      color: #fff;
      box-shadow: var(--shadow);
    }

    .seo-note h2 {
      margin: 0 0 10px;
      font-size: 28px;
      letter-spacing: -0.04em;
    }

    .seo-note p {
      margin: 0;
      color: rgba(255,255,255,0.74);
    }

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

    .contacts-grid .cta-card {
      grid-template-columns: 1fr;
    }

    .contact-panel {
      padding: 32px;
    }

    .contact-panel a {
      color: var(--accent-dark);
      font-weight: 900;
    }

    .media-section {
      padding-top: 54px;
    }

    .media-lead-card {
      position: relative;
      overflow: hidden;
      margin-bottom: 24px;
      padding: 34px;
      border: 1px solid rgba(255, 255, 255, 0.86);
      border-radius: 34px;
      background:
        radial-gradient(circle at 88% 10%, rgba(243, 154, 44, 0.18), transparent 28%),
        linear-gradient(135deg, rgba(255,255,255,0.98), rgba(239,246,252,0.9));
      box-shadow: var(--shadow);
    }

    .media-lead-card span {
      display: inline-flex;
      margin-bottom: 12px;
      padding: 8px 12px;
      border-radius: 999px;
      background: rgba(243, 154, 44, 0.13);
      color: var(--accent-dark);
      font-size: 13px;
      font-weight: 900;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .media-lead-card h2 {
      max-width: 760px;
      margin: 0 0 12px;
      font-size: clamp(34px, 4vw, 58px);
      line-height: 0.98;
      letter-spacing: -0.06em;
    }

    .media-lead-card p {
      max-width: 790px;
      margin: 0;
      color: var(--muted);
      font-size: 17px;
      line-height: 1.65;
    }

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

    .media-card {
      overflow: hidden;
      display: grid;
      grid-template-rows: auto 1fr;
      border: 1px solid rgba(255, 255, 255, 0.86);
      border-radius: 30px;
      background: rgba(255, 255, 255, 0.92);
      box-shadow: 0 18px 46px rgba(17, 43, 73, 0.09);
      transition: transform 0.24s ease, box-shadow 0.24s ease;
    }

    .media-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 26px 62px rgba(17, 43, 73, 0.14);
    }

    .media-card--wide {
      grid-column: 1 / -1;
      grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
      grid-template-rows: auto;
    }

    .media-card__image {
      display: block;
      min-height: 260px;
      background: #dfe8ef;
    }

    .media-card__image img {
      display: block;
      width: 100%;
      height: 100%;
      min-height: 260px;
      object-fit: cover;
      transition: transform 0.32s ease;
    }

    .media-card:hover .media-card__image img {
      transform: scale(1.035);
    }

    .media-card__body {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      padding: 28px;
    }

    .media-card__meta {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 16px;
    }

    .media-card__meta span {
      padding: 7px 10px;
      border-radius: 999px;
      background: rgba(17, 43, 73, 0.06);
      color: var(--muted);
      font-size: 12px;
      font-weight: 900;
      letter-spacing: 0.07em;
      text-transform: uppercase;
    }

    .media-card h2 {
      margin: 0 0 14px;
      font-size: clamp(24px, 2.2vw, 36px);
      line-height: 1.06;
      letter-spacing: -0.045em;
    }

    .media-card p {
      margin: 0 0 22px;
      color: var(--muted);
      line-height: 1.65;
    }

    .media-card__video {
      position: relative;
      width: 100%;
      aspect-ratio: 16 / 9;
      overflow: hidden;
      margin: 0 0 22px;
      border-radius: 20px;
      background: #081827;
      box-shadow: 0 18px 42px rgba(17, 43, 73, 0.14);
    }

    .media-card__video iframe {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      border: 0;
    }

    .media-link {
      margin-top: auto;
      color: var(--accent-dark);
      font-weight: 900;
    }

    .media-link::after {
      content: " →";
    }

    .section-kicker {
      display: inline-flex;
      margin-bottom: 12px;
      padding: 8px 12px;
      border-radius: 999px;
      background: rgba(243, 154, 44, 0.12);
      color: var(--accent-dark);
      font-size: 13px;
      font-weight: 900;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .services-intro-section {
      padding-top: 54px;
    }

    .services-intro {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
      gap: 34px;
      align-items: end;
      margin-bottom: 24px;
    }

    .services-intro p {
      margin: 0;
      color: var(--muted);
      font-size: 18px;
      line-height: 1.65;
    }

    .service-highlight-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
    }

    .service-highlight,
    .service-detail-card,
    .service-process,
    .service-scope-card,
    .services-cta-card {
      border: 1px solid rgba(255, 255, 255, 0.86);
      background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(255,255,255,0.88));
      box-shadow: var(--shadow);
    }

    .service-highlight {
      padding: 26px;
      border-radius: 28px;
    }

    .service-highlight span,
    .service-number {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 46px;
      height: 46px;
      border-radius: 16px;
      background: rgba(243, 154, 44, 0.14);
      color: var(--accent-dark);
      font-weight: 900;
    }

    .service-highlight h3 {
      margin: 18px 0 10px;
      font-size: 24px;
      line-height: 1.08;
      letter-spacing: -0.04em;
    }

    .service-highlight p {
      margin: 0;
      color: var(--muted);
      line-height: 1.6;
    }

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

    .service-detail-card {
      position: relative;
      overflow: hidden;
      padding: 30px;
      border-radius: 32px;
    }

    .service-detail-card__head {
      display: flex;
      align-items: flex-start;
      gap: 16px;
      margin-bottom: 16px;
    }

    .service-detail-card h3 {
      margin: 0;
      font-size: clamp(26px, 2.5vw, 38px);
      line-height: 1.02;
      letter-spacing: -0.055em;
    }

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

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

    .service-detail-card li {
      position: relative;
      padding-left: 22px;
      color: var(--text);
      font-weight: 700;
      line-height: 1.45;
    }

    .service-detail-card li::before {
      content: "";
      position: absolute;
      left: 0;
      top: 0.62em;
      width: 8px;
      height: 8px;
      border-radius: 99px;
      background: var(--accent);
    }

    .service-detail-card--accent {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      justify-content: center;
      background:
        radial-gradient(circle at 88% 8%, rgba(255, 180, 90, 0.3), transparent 28%),
        linear-gradient(135deg, #0d2238, #143554);
      color: #fff;
    }

    .service-detail-card--accent p {
      color: rgba(255, 255, 255, 0.72);
    }

    .service-detail-card--accent .section-kicker {
      background: rgba(255, 255, 255, 0.12);
      color: #ffb45a;
    }

    .service-process {
      display: grid;
      grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
      gap: 28px;
      padding: 34px;
      border-radius: 34px;
    }

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

    .service-process__steps {
      display: grid;
      gap: 12px;
    }

    .service-process__steps div {
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 8px 14px;
      padding: 18px;
      border: 1px solid rgba(231, 235, 240, 0.95);
      border-radius: 22px;
      background: rgba(248, 250, 252, 0.78);
    }

    .service-process__steps span {
      grid-row: span 2;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 42px;
      height: 42px;
      border-radius: 15px;
      background: var(--accent);
      color: #fff;
      font-weight: 900;
    }

    .service-process__steps strong {
      font-size: 18px;
    }

    .service-process__steps p {
      margin: 0;
      color: var(--muted);
      line-height: 1.5;
    }

    .service-scope-card {
      display: grid;
      grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
      gap: 34px;
      padding: 34px;
      border-radius: 34px;
    }

    .service-scope-list {
      display: grid;
      gap: 12px;
    }

    .service-scope-list p {
      margin: 0;
      padding: 18px 20px;
      border-radius: 20px;
      background: rgba(17, 43, 73, 0.055);
      color: var(--text);
      font-weight: 800;
      line-height: 1.55;
    }

    .services-cta-card {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      padding: 36px;
      border-radius: 34px;
      background:
        radial-gradient(circle at 85% 10%, rgba(243, 154, 44, 0.24), transparent 28%),
        linear-gradient(135deg, #ffffff, #eff6fc);
    }

    .services-cta-card h2 {
      margin: 0 0 10px;
      max-width: 720px;
      font-size: clamp(32px, 4vw, 56px);
      line-height: 0.98;
      letter-spacing: -0.06em;
    }

    .services-cta-card p {
      max-width: 700px;
      margin: 0;
      color: var(--muted);
      font-size: 17px;
      line-height: 1.6;
    }

    .services-cta-card .btn {
      flex: 0 0 auto;
    }

    .scroll-top {
      position: fixed;
      right: 22px;
      bottom: 22px;
      z-index: 60;
      width: 56px;
      height: 56px;
      border: 0;
      border-radius: 20px;
      background: linear-gradient(135deg, var(--accent), #ffb45a);
      box-shadow: 0 18px 44px rgba(243, 154, 44, 0.34);
      opacity: 0;
      visibility: hidden;
      transform: translateY(12px);
      transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
      cursor: pointer;
    }

    .scroll-top.visible {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    .scroll-top span {
      position: absolute;
      left: 50%;
      top: 50%;
      width: 14px;
      height: 14px;
      border-left: 3px solid #fff;
      border-top: 3px solid #fff;
      transform: translate(-50%, -34%) rotate(45deg);
    }

    .scroll-top:hover {
      transform: translateY(-2px);
      box-shadow: 0 22px 50px rgba(243, 154, 44, 0.4);
    }

    .contact-overview {
      padding-top: 54px;
    }

    .contact-overview__grid {
      display: grid;
      grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
      gap: 22px;
      align-items: stretch;
    }

    .contact-card,
    .contact-map-card {
      position: relative;
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, 0.86);
      border-radius: 34px;
      background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(255,255,255,0.88));
      box-shadow: var(--shadow);
    }

    .contact-card {
      padding: 38px;
    }

    .contact-card::before {
      content: "";
      position: absolute;
      right: -70px;
      top: -80px;
      width: 220px;
      height: 220px;
      border-radius: 999px;
      background: rgba(243, 154, 44, 0.13);
      pointer-events: none;
    }

    .contact-card__eyebrow {
      display: inline-flex;
      margin-bottom: 14px;
      padding: 8px 12px;
      border-radius: 999px;
      background: rgba(243, 154, 44, 0.12);
      color: var(--accent-dark);
      font-size: 13px;
      font-weight: 900;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .contact-card h2 {
      position: relative;
      margin: 0 0 14px;
      max-width: 520px;
      font-size: clamp(34px, 4vw, 56px);
      line-height: 0.98;
      letter-spacing: -0.06em;
    }

    .contact-card p {
      position: relative;
      margin: 0 0 26px;
      max-width: 560px;
      color: var(--muted);
      font-size: 17px;
      line-height: 1.65;
    }

    .contact-list {
      position: relative;
      display: grid;
      gap: 12px;
      margin-bottom: 28px;
    }

    .contact-item {
      display: grid;
      gap: 6px;
      padding: 16px 18px;
      border: 1px solid rgba(231, 235, 240, 0.9);
      border-radius: 20px;
      background: rgba(248, 250, 252, 0.78);
    }

    .contact-item span {
      color: var(--muted);
      font-size: 12px;
      font-weight: 900;
      letter-spacing: 0.09em;
      text-transform: uppercase;
    }

    .contact-item a,
    .contact-item strong {
      color: var(--text);
      font-size: 18px;
      font-weight: 900;
      line-height: 1.25;
    }

    .contact-item a:hover {
      color: var(--accent-dark);
    }

    .contact-map-card {
      min-height: 560px;
      background: #dfe8ef;
    }

    .contact-map-card::before {
      content: "";
      position: absolute;
      inset: 18px;
      z-index: 1;
      border: 1px solid rgba(255, 255, 255, 0.72);
      border-radius: 24px;
      pointer-events: none;
    }

    .contact-map-card iframe {
      display: block;
      width: 100%;
      height: 100%;
      min-height: 560px;
      filter: saturate(0.92) contrast(1.02);
    }

    .hero-card {
      position: relative;
      overflow: hidden;
      width: 100%;
      border-radius: 0;
      background: #eef4fb;
    }

    .hero-media {
      position: relative;
      overflow: hidden;
      user-select: none;
      touch-action: pan-y;
      cursor: grab;
    }

    .hero-media img {
      display: block;
      width: 100%;
      height: auto;
        max-height: 500px;
    }

    .hero-slider {
      background: #eef4fb;
    }

    .hero-slide {
      position: absolute;
      inset: 0;
      width: 100%;
      height: auto;
      opacity: 0;
      transition: opacity 1.15s ease;
      pointer-events: none;
    }

    .hero-slide.active {
      position: relative;
      opacity: 1;
      z-index: 1;
    }

    .hero-slider.dragging {
      cursor: grabbing;
    }

    .hero-slider-arrow {
      position: absolute;
      top: 0;
      bottom: 0;
      z-index: 4;
      width: clamp(58px, 7vw, 112px);
      height: 100%;
      border: 0;
      border-radius: 0;
      background: rgba(255,255,255,0);
      box-shadow: none;
      cursor: pointer;
      transition: 0.2s ease;
    }

    .hero-slider-arrow:hover {
      background: rgba(255,255,255,0.16);
    }

    .hero-slider-arrow::before {
      content: "";
      position: absolute;
      left: 50%;
      top: 50%;
      width: 18px;
      height: 18px;
      border-top: 4px solid rgba(255,255,255,0.92);
      border-right: 4px solid rgba(255,255,255,0.92);
      filter: drop-shadow(0 3px 8px rgba(17,43,73,0.35));
    }

    .hero-slider-prev {
      left: 0;
      background: linear-gradient(90deg, rgba(17,43,73,0.22), rgba(17,43,73,0));
    }

    .hero-slider-prev::before {
      transform: translate(-35%, -50%) rotate(-135deg);
    }

    .hero-slider-next {
      right: 0;
      background: linear-gradient(270deg, rgba(17,43,73,0.22), rgba(17,43,73,0));
    }

    .hero-slider-next::before {
      transform: translate(-65%, -50%) rotate(45deg);
    }


    .services-grid,
    .projects-grid,
    .trust-grid {
      display: grid;
      gap: 20px;
    }

    .services-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .trust-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    .projects-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

    .card {
      background: #fff;
      border: 1px solid var(--line);
      border-radius: 24px;
      box-shadow: var(--shadow);
    }

    .service-card,
    .trust-item { padding: 24px; }

    .service-icon,
    .trust-icon {
      width: 60px;
      height: 60px;
      border-radius: 18px;
      display: grid;
      place-items: center;
      font-size: 26px;
      background: rgba(243,154,44,0.12);
      color: var(--accent-dark);
      margin-bottom: 16px;
    }

    .service-card h3,
    .trust-item h3,
    .project-card h3 {
      margin: 0 0 10px;
      font-size: 22px;
      line-height: 1.15;
      letter-spacing: -0.03em;
    }

    .service-card p,
    .trust-item p,
    .project-card p {
      margin: 0;
      color: var(--muted);
      font-size: 15px;
    }

    .trust-panel {
      background: linear-gradient(180deg, rgba(255,255,255,0.9), rgba(255,255,255,0.84));
      border: 1px solid rgba(255,255,255,0.75);
      border-radius: 32px;
      box-shadow: var(--shadow);
      padding: 40px;
      position: relative;
      overflow: hidden;
    }

    .trust-panel::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(255,255,255,0.88), rgba(255,255,255,0.94)), linear-gradient(135deg, #dbe4ec 0%, #f0f4f7 100%);
      z-index: 0;
    }

    /*
    .trust-panel::before {
      background-image: linear-gradient(180deg, rgba(255,255,255,0.88), rgba(255,255,255,0.94)), url('images/trust-bg.jpg');
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
    }
    */

    .trust-panel > * { position: relative; z-index: 1; }

    .project-card {
      overflow: hidden;
      transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .project-card:hover,
    .service-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 22px 46px rgba(17, 43, 73, 0.12);
    }

    .project-gallery {
      position: relative;
      padding: 12px;
      background:
        linear-gradient(180deg, rgba(255,255,255,0.36), rgba(255,255,255,0)),
        #eaf0f5;
    }

    .project-main-img {
      width: 100%;
      aspect-ratio: 16 / 8.2;
      object-fit: cover;
      border-radius: 18px;
      background: #dbe6ee;
      cursor: zoom-in;
      transition: transform 0.24s ease, filter 0.24s ease;
    }

    .project-thumbs {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 8px;
      margin-top: 8px;
    }

    .project-thumbs img {
      width: 100%;
      aspect-ratio: 16 / 6.8;
      object-fit: cover;
      border-radius: 14px;
      background: #dbe6ee;
      cursor: zoom-in;
      transition: transform 0.24s ease, filter 0.24s ease;
    }

    .project-gallery img:hover {
      filter: saturate(1.08) contrast(1.03);
      transform: translateY(-2px);
    }

    .project-thumbs img:only-child {
      grid-column: 1 / -1;
    }

    .projects-more {
      display: flex;
      justify-content: center;
      margin-top: 30px;
    }

    .projects-more .btn {
      min-width: min(100%, 260px);
      justify-content: center;
    }

    .project-tag {
      position: absolute;
      top: 24px;
      left: 24px;
      padding: 8px 12px;
      border-radius: 999px;
      font-size: 12px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      color: #fff;
      background: rgba(17, 43, 73, 0.72);
    }

    .project-tag.done { background: rgba(243,154,44,0.94); }

    .project-body { padding: 22px; }

    .project-meta {
      margin-top: 16px;
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      font-size: 14px;
      color: var(--muted);
    }

    .project-meta span {
      display: inline-flex;
      align-items: center;
      min-height: 34px;
      padding: 7px 11px;
      border-radius: 999px;
      background: #f3f5f7;
      color: #40536a;
      font-weight: 700;
    }

    .about-card,
    .cert-card,
    .map-card {
      background: linear-gradient(180deg, rgba(255,255,255,0.94), rgba(255,255,255,0.88));
      border: 1px solid rgba(255,255,255,0.82);
      border-radius: 32px;
      box-shadow: var(--shadow);
      padding: 38px;
    }

    .about-card {
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 28px;
      align-items: start;
    }

    .about-copy p {
      margin: 0 0 16px;
      color: var(--muted);
      font-size: 16px;
    }

    .about-copy p:last-child {
      margin-bottom: 0;
    }

    .about-stats,
    .cert-grid {
      display: grid;
      gap: 18px;
    }

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

    .about-stat,
    .cert-item {
      background: #fff;
      border: 1px solid var(--line);
      border-radius: 24px;
      padding: 22px;
      box-shadow: 0 12px 32px rgba(17, 43, 73, 0.06);
    }

    .about-stat strong {
      display: block;
      font-size: 28px;
      line-height: 1;
      margin-bottom: 10px;
    }

    .about-stat span,
    .cert-item p {
      color: var(--muted);
      font-size: 15px;
    }

    .cert-card {
      display: grid;
      gap: 28px;
    }

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

    .cert-item h3 {
      margin: 0 0 10px;
      font-size: 22px;
      line-height: 1.15;
      letter-spacing: -0.03em;
    }

    .cert-item p {
      margin: 0;
    }

    .cert-files {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 14px;
    }

    .cert-file {
      display: flex;
      align-items: center;
      gap: 14px;
      width: 100%;
      min-height: 74px;
      padding: 14px;
      border: 1px solid var(--line);
      border-radius: 20px;
      background: rgba(255, 255, 255, 0.78);
      color: var(--text);
      cursor: pointer;
      text-align: left;
      box-shadow: 0 12px 28px rgba(17, 43, 73, 0.05);
      transition: 0.2s ease;
    }

    .cert-file:hover {
      transform: translateY(-2px);
      border-color: rgba(243, 154, 44, 0.34);
      box-shadow: 0 18px 36px rgba(17, 43, 73, 0.1);
    }

    .cert-file-icon {
      position: relative;
      flex: 0 0 38px;
      width: 38px;
      height: 46px;
      border-radius: 9px;
      background: linear-gradient(180deg, #fff, #f7fafc);
      border: 2px solid rgba(243, 154, 44, 0.34);
      box-shadow: inset 0 -10px 0 rgba(243, 154, 44, 0.08);
    }

    .cert-file-icon::before {
      content: "";
      position: absolute;
      right: -2px;
      top: -2px;
      width: 14px;
      height: 14px;
      border-radius: 0 7px 0 7px;
      background: linear-gradient(135deg, #ffe2bd 0 48%, #fff 50%);
      border-left: 2px solid rgba(243, 154, 44, 0.28);
      border-bottom: 2px solid rgba(243, 154, 44, 0.28);
    }

    .cert-file-icon::after {
      content: "";
      position: absolute;
      left: 9px;
      right: 9px;
      top: 21px;
      height: 3px;
      border-radius: 99px;
      background: var(--accent);
      box-shadow: 0 8px 0 rgba(243, 154, 44, 0.55);
    }

    .cert-file strong {
      display: block;
      margin-bottom: 2px;
      font-size: 15px;
      line-height: 1.2;
    }

    .cert-file small {
      display: block;
      color: var(--muted);
      font-size: 13px;
      font-weight: 700;
    }

    .cert-modal {
      position: fixed;
      inset: 0;
      z-index: 95;
      display: none;
      padding: 18px;
    }

    .cert-modal.open {
      display: grid;
      place-items: center;
    }

    .cert-modal__backdrop {
      position: absolute;
      inset: 0;
      background: rgba(17, 43, 73, 0.66);
      backdrop-filter: blur(8px);
    }

    .cert-modal__dialog {
      position: relative;
      width: min(100%, 860px);
      max-height: calc(100vh - 36px);
      padding: 20px;
      border-radius: 28px;
      background: #fff;
      box-shadow: 0 30px 90px rgba(0, 0, 0, 0.28);
      overflow: auto;
    }

    .cert-modal__dialog h2 {
      margin: 0 54px 16px 0;
      font-size: 24px;
      line-height: 1.1;
      letter-spacing: -0.03em;
    }

    .cert-modal__dialog img {
      width: 100%;
      height: auto;
      border-radius: 18px;
      border: 1px solid var(--line);
      background: #f8fafc;
    }

    .cert-modal__close {
      position: absolute;
      right: 14px;
      top: 14px;
      width: 42px;
      height: 42px;
      border: 1px solid var(--line);
      border-radius: 14px;
      background: #fff;
      cursor: pointer;
    }

    .cert-modal__close::before,
    .cert-modal__close::after {
      content: "";
      position: absolute;
      left: 50%;
      top: 50%;
      width: 18px;
      height: 2px;
      border-radius: 2px;
      background: var(--text);
    }

    .cert-modal__close::before { transform: translate(-50%, -50%) rotate(45deg); }
    .cert-modal__close::after { transform: translate(-50%, -50%) rotate(-45deg); }

    .map-card {
      display: grid;
      gap: 26px;
    }

    .map-visual {
      background: #fff;
      border: 1px solid var(--line);
      border-radius: 28px;
      padding: 18px;
      box-shadow: 0 12px 32px rgba(17, 43, 73, 0.06);
    }

    .projects-map {
      width: 100%;
      border-radius: 18px;
      overflow: hidden;
      background: #edf4fb;
    }

    .map-legend {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 16px;
    }

    .map-legend span {
      display: inline-flex;
      align-items: center;
      min-height: 38px;
      padding: 0 14px;
      border-radius: 999px;
      background: rgba(243,154,44,0.12);
      color: var(--text);
      font-size: 14px;
      font-weight: 700;
    }

    .leaflet-container {
      font: inherit;
    }

    .leaflet-popup-content-wrapper {
      border-radius: 16px;
      box-shadow: 0 14px 34px rgba(17, 43, 73, 0.14);
    }

    .leaflet-popup-content {
      margin: 14px 16px;
      color: var(--text);
      font-size: 14px;
      line-height: 1.5;
    }

    .project-pin {
      background: transparent;
      border: 0;
    }

    .project-pin span {
      display: block;
      width: 18px;
      height: 18px;
      border-radius: 50%;
      background: var(--accent);
      border: 3px solid #fff;
      box-shadow: 0 10px 20px rgba(243, 154, 44, 0.32);
      position: relative;
    }

    .project-pin span::after {
      content: "";
      position: absolute;
      left: 50%;
      top: 100%;
      width: 8px;
      height: 8px;
      background: var(--accent);
      transform: translate(-50%, -30%) rotate(45deg);
      border-radius: 2px;
    }

    .cta-section { padding-bottom: 72px; }

    .cta-card {
      display: grid;
      grid-template-columns: 1.05fr 0.95fr;
      overflow: hidden;
      border-radius: 32px;
      background: linear-gradient(135deg, #112b49 0%, #203e5f 100%);
      box-shadow: 0 24px 60px rgba(17, 43, 73, 0.18);
    }

    .cta-content {
      padding: 46px;
      color: #fff;
    }

    .cta-content .section-title {
      color: #fff;
      margin-bottom: 18px;
    }

    .cta-content p {
      margin: 0 0 26px;
      color: rgba(255,255,255,0.76);
      font-size: 18px;
      max-width: 560px;
    }

    .cta-form {
      display: grid;
      gap: 14px;
      max-width: 520px;
    }

    .field {
      width: 100%;
      min-height: 54px;
      border-radius: 16px;
      border: 1px solid rgba(255,255,255,0.14);
      background: rgba(255,255,255,0.08);
      color: #fff;
      padding: 0 16px;
      outline: none;
    }

    .field::placeholder { color: rgba(255,255,255,0.52); }
    textarea.field { min-height: 120px; padding: 16px; resize: vertical; }

    .form-hp {
      position: absolute !important;
      left: -9999px !important;
      width: 1px !important;
      height: 1px !important;
      opacity: 0 !important;
      pointer-events: none !important;
    }

    .form-response {
      padding: 14px 16px;
      border-radius: 16px;
      font-size: 14px;
      line-height: 1.5;
      font-weight: 700;
    }

    .form-response--success {
      background: rgba(73, 179, 118, 0.18);
      border: 1px solid rgba(73, 179, 118, 0.34);
      color: #d6f6df;
    }

    .form-response--error {
      background: rgba(255, 126, 126, 0.16);
      border: 1px solid rgba(255, 126, 126, 0.28);
      color: #ffe0e0;
    }

    .cta-note {
      font-size: 13px;
      color: rgba(255,255,255,0.56);
    }

    .cta-visual {
      position: relative;
      overflow: hidden;
      background:
        linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255,255,255,0.045) 1px, transparent 1px),
        radial-gradient(circle at 22% 24%, rgba(243,154,44,0.38), transparent 34%),
        radial-gradient(circle at 76% 72%, rgba(255,255,255,0.16), transparent 38%),
        linear-gradient(135deg, #2b4c68 0%, #17324a 100%);
      background-size: 34px 34px, 34px 34px, auto, auto, auto;
      min-height: 100%;
    }

    .cta-visual::before {
      content: "";
      position: absolute;
      right: -70px;
      top: -70px;
      width: 220px;
      height: 220px;
      border: 1px solid rgba(255,255,255,0.14);
      border-radius: 44px;
      transform: rotate(18deg);
    }

    .cta-visual::after {
      content: "";
      position: absolute;
      left: 54px;
      bottom: 48px;
      width: 46%;
      height: 30%;
      border: 1px solid rgba(255,255,255,0.13);
      border-radius: 22px;
      transform: skew(-8deg) rotate(-2deg);
    }

    #projectsMap {
        z-index: 9;
    }

    /*
    .cta-visual {
      background-image: linear-gradient(180deg, rgba(17,43,73,0.34), rgba(17,43,73,0.52)), url('images/cta.jpg');
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
    }
    */

    .cta-glass {
      position: absolute;
      left: 30px;
      right: 30px;
      top: 30px;
      padding: 22px;
      border-radius: 24px;
      background: rgba(255,255,255,0.1);
      border: 1px solid rgba(255,255,255,0.12);
      backdrop-filter: blur(16px);
      color: #fff;
      z-index: 2;
    }

    .cta-glass strong {
      display: block;
      font-size: 30px;
      line-height: 1;
      margin-bottom: 4px;
    }

    .cta-glass small {
      display: block;
      color: rgba(255,255,255,0.68);
      font-size: 13px;
      font-weight: 800;
    }

    .cta-brand-row {
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .cta-mark {
      position: relative;
      flex: 0 0 50px;
      width: 50px;
      height: 50px;
      border-radius: 17px;
      background: linear-gradient(135deg, var(--accent), #ffb45a);
      box-shadow: 0 16px 36px rgba(243,154,44,0.25);
    }

    .cta-mark::before,
    .cta-mark::after {
      content: "";
      position: absolute;
      background: #fff;
      border-radius: 6px;
    }

    .cta-mark::before {
      left: 11px;
      top: 10px;
      bottom: 10px;
      width: 15px;
    }

    .cta-mark::after {
      right: 11px;
      bottom: 11px;
      width: 10px;
      height: 10px;
    }

    .footer_phones {
        padding-left: 10px;
        border-left: 3px solid #ffbc68;
    }

    .cta-steps {
      display: grid;
      gap: 8px;
      margin-top: 22px;
    }

    .cta-steps span {
      display: flex;
      align-items: center;
      min-height: 38px;
      padding: 0 13px;
      border-radius: 13px;
      background: rgba(255,255,255,0.09);
      border: 1px solid rgba(255,255,255,0.11);
      color: rgba(255,255,255,0.82);
      font-size: 13px;
      font-weight: 800;
    }

    .cta-blueprint {
      position: absolute;
      right: 34px;
      bottom: 34px;
      width: min(58%, 330px);
      aspect-ratio: 1.22;
      border: 1px solid rgba(255,255,255,0.17);
      border-radius: 26px;
      background:
        linear-gradient(90deg, transparent 48%, rgba(255,255,255,0.14) 49% 51%, transparent 52%),
        linear-gradient(180deg, transparent 38%, rgba(255,255,255,0.13) 39% 41%, transparent 42%),
        rgba(255,255,255,0.055);
      z-index: 1;
    }

    .cta-blueprint span {
      position: absolute;
      border: 2px solid rgba(255,255,255,0.26);
      border-radius: 14px;
    }

    .cta-blueprint span:nth-child(1) {
      left: 22px;
      top: 22px;
      width: 38%;
      height: 34%;
    }

    .cta-blueprint span:nth-child(2) {
      right: 24px;
      top: 26px;
      width: 28%;
      height: 48%;
    }

    .cta-blueprint span:nth-child(3) {
      left: 30px;
      bottom: 24px;
      width: 48%;
      height: 24%;
      border-color: rgba(243,154,44,0.56);
    }

    .site-footer {
      position: relative;
      overflow: hidden;
      margin-top: 38px;
      padding: 64px 0 26px;
      color: rgba(255, 255, 255, 0.74);
      font-size: 14px;
      background:
        radial-gradient(circle at 12% 10%, rgba(243, 154, 44, 0.28), transparent 30%),
        linear-gradient(135deg, #0d2238 0%, #122f4b 48%, #081827 100%);
    }

    .site-footer::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px),
        linear-gradient(180deg, rgba(255,255,255,0.04) 1px, transparent 1px);
      background-size: 56px 56px;
      mask-image: linear-gradient(180deg, rgba(0,0,0,0.85), transparent 78%);
      pointer-events: none;
    }

    .footer-main,
    .footer-bottom {
      position: relative;
      z-index: 1;
    }

    .footer-main {
      display: grid;
      grid-template-columns: minmax(260px, 1.35fr) minmax(150px, 0.7fr) minmax(190px, 0.85fr) minmax(230px, 0.9fr);
      gap: 34px;
      align-items: start;
    }

    .footer-brand__logo {
      color: #fff;
      margin-bottom: 18px;
    }

    .footer-brand p {
      max-width: 420px;
      margin: 0;
      color: rgba(255, 255, 255, 0.7);
      line-height: 1.7;
    }

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

    .footer-nav h2,
    .footer-contacts h2 {
      margin: 0 0 8px;
      color: #fff;
      font-size: 14px;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }

    .footer-nav a,
    .footer-contacts a {
      color: rgba(255, 255, 255, 0.72);
      font-weight: 700;
    }

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

    .footer-contacts span {
      color: rgba(255, 255, 255, 0.58) !important;
      line-height: 1.55;
        letter-spacing: unset !important;
        text-transform: none !important;
    }

    .footer-cta {
      padding: 22px;
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: 26px;
      background: rgba(255, 255, 255, 0.08);
      box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
      backdrop-filter: blur(14px);
    }

    .footer-cta span {
      display: inline-flex;
      margin-bottom: 10px;
      color: #ffb45a;
      font-size: 13px;
      font-weight: 900;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .footer-cta strong {
      display: block;
      margin-bottom: 18px;
      color: #fff;
      font-size: 20px;
      line-height: 1.18;
      letter-spacing: -0.03em;
    }

    .footer-cta .btn {
      width: 100%;
      justify-content: center;
    }

    .footer-bottom {
      display: flex;
      justify-content: space-between;
      gap: 18px;
      margin-top: 44px;
      padding-top: 22px;
      border-top: 1px solid rgba(255, 255, 255, 0.12);
      color: rgba(255, 255, 255, 0.48);
    }

    @media (max-width: 1120px) {
      .header-inner {
        grid-template-columns: auto minmax(0, 1fr) auto;
        gap: 18px;
      }

      .nav-links {
        gap: 22px;
      }

      .header-phones {
        padding-left: 16px;
      }

      .header-phones a {
        font-size: 12px;
      }

      .cta-card {
        grid-template-columns: 1fr;
      }

      .cta-visual {
        min-height: 280px;
      }

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

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

      .content-grid,
      .contacts-grid,
      .contact-overview__grid,
      .media-grid,
      .cert-files {
        grid-template-columns: 1fr;
      }

      .media-card--wide {
        grid-template-columns: 1fr;
      }

      .footer-main {
        grid-template-columns: 1.2fr 0.8fr;
      }

      .footer-cta {
        grid-column: 1 / -1;
      }

      .services-intro,
      .service-process,
      .service-scope-card {
        grid-template-columns: 1fr;
      }

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

      .services-cta-card {
        align-items: flex-start;
        flex-direction: column;
      }
    }

    @media (max-width: 820px) {
        .hero-media img {
            min-height: 150px;
        }
      .container {
        width: min(var(--container), calc(100% - 20px));
      }

      .header-inner {
        min-height: 76px;
        grid-template-columns: minmax(0, 1fr) auto auto;
        gap: 8px;
      }

      .header-actions {
        display: none;
      }

      .nav-links {
        position: absolute;
        left: 10px;
        right: 10px;
        top: calc(100% + 1px);
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        padding: 14px;
        border-radius: 0 0 24px 24px;
        background: rgba(243, 245, 247, 0.98);
        border: 1px solid rgba(231, 235, 240, 0.95);
        border-top: 0;
        box-shadow: 0 22px 48px rgba(17, 43, 73, 0.12);
      }

      .nav-links.open {
        display: flex;
      }

      .nav-links > a,
      .nav-dropdown > button,
      .nav-dropdown-menu a {
        width: 100%;
        padding: 13px 14px;
        border-radius: 14px;
        background: rgba(255, 255, 255, 0.72);
        border: 1px solid rgba(231, 235, 240, 0.95);
        text-align: left;
      }

      .nav-links > a::after {
        display: none;
      }

      .nav-dropdown {
        padding: 0;
        margin: 0;
      }

      .nav-dropdown > button {
        display: flex;
        align-items: center;
        justify-content: space-between;
      }

      .nav-dropdown.open > button::after {
        transform: translateY(2px) rotate(-135deg);
      }

      .site-header .nav-links .nav-dropdown .nav-dropdown-menu {
        position: static !important;
        left: auto;
        top: auto;
        width: 100%;
        margin-top: 8px;
        padding: 0;
        border: 0;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none !important;
        display: none !important;
      }

      .site-header .nav-links .nav-dropdown.open .nav-dropdown-menu {
        display: grid !important;
        gap: 8px;
      }

      .site-header .nav-links .nav-dropdown-menu a {
        display: block;
        color: var(--text);
        opacity: 1;
        transform: none;
      }

      .phone-toggle,
      .burger {
        display: inline-block;
        justify-self: end;
      }

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

      .page-hero {
        padding: 48px 0 34px;
      }

      .trust-panel,
      .cta-content {
        padding: 30px 22px;
      }

      .cta-visual {
        min-height: 240px;
      }

      .cta-glass {
        position: relative;
        left: auto;
        right: auto;
        top: auto;
        bottom: auto;
        margin: 22px;
      }

      .cta-blueprint {
        right: 24px;
        bottom: 24px;
        width: 48%;
        opacity: 0.65;
      }
    }

    @media (max-width: 640px) {
      .section { padding: 36px 0; }
      .services-grid,
      .trust-grid,
      .projects-grid { grid-template-columns: 1fr; }

      .service-highlight-grid,
      .services-detailed-grid {
        grid-template-columns: 1fr;
      }

      .about-card,
      .cert-card,
      .map-card {
        padding: 24px 18px;
      }

      .content-card,
      .contact-panel {
        padding: 24px 18px;
      }

      .media-section {
        padding-top: 34px;
      }

      .media-lead-card {
        padding: 26px 20px;
        border-radius: 26px;
      }

      .media-card {
        border-radius: 24px;
      }

      .media-card__body {
        padding: 22px 18px;
      }

      .services-intro-section {
        padding-top: 34px;
      }

      .service-highlight,
      .service-detail-card,
      .service-process,
      .service-scope-card,
      .services-cta-card {
        padding: 24px 18px;
        border-radius: 24px;
      }

      .service-detail-card__head {
        flex-direction: column;
      }

      .scroll-top {
        right: 14px;
        bottom: 14px;
        width: 50px;
        height: 50px;
        border-radius: 18px;
      }

      .contact-overview {
        padding-top: 34px;
      }

      .contact-card {
        padding: 26px 20px;
        border-radius: 26px;
      }

      .contact-card h2 {
        font-size: 36px;
      }

      .contact-map-card,
      .contact-map-card iframe {
        min-height: 380px;
      }

      .cta-card {
        border-radius: 24px;
      }

      .cta-visual {
        min-height: 0;
      }

      .cta-blueprint {
        display: none;
      }

      .cta-brand-row {
        align-items: flex-start;
      }

      .cta-mark {
        flex-basis: 44px;
        width: 44px;
        height: 44px;
        border-radius: 15px;
      }

      .cta-glass strong {
        font-size: 26px;
      }

      .about-stats,
      .cert-grid {
        grid-template-columns: 1fr;
      }
      .footer-main {
        grid-template-columns: 1fr;
        gap: 14px;
      }

      .footer-brand,
      .footer-nav,
      .footer-contacts {
        padding: 22px 20px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 22px;
        background: rgba(255, 255, 255, 0.055);
      }

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