@font-face {
  font-family: 'Geometria';
  src: url('fonts/geometria.woff2') format('woff2'), url('fonts/geometria.woff') format('woff');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Geometria';
  src: url('fonts/geometria-medium.woff2') format('woff2'), url('fonts/geometria-medium.woff') format('woff');
  font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Geometria';
  src: url('fonts/geometria-bold.woff2') format('woff2'), url('fonts/geometria-bold.woff') format('woff');
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Geometria';
  src: url('fonts/geometria-extrabold.woff2') format('woff2'), url('fonts/geometria-extrabold.woff') format('woff');
  font-weight: 800; font-style: normal; font-display: swap;
}


    /* ══════════════════════════════════════
       RESET + ROOT
    ══════════════════════════════════════ */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --navy:      #2b2f38;
      --navy-dark: #1c1f26;
      --navy-mid:  #373c47;
      --blue:      #98020e;
      --blue-lt:   #c1121f;
      --blue-bg:   #fdf0f0;
      --white:     #ffffff;
      --off:       #f5f5f7;
      --text:      #2c2c2c;
      --muted:     #606773;
      --border:    #e2e2e6;
      --shadow:    0 2px 18px rgba(60,10,14,0.10);
      --container: 1200px;
      --nav-h:     70px;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Geometria', sans-serif;
      font-weight: 400;
      font-size: 15px;
      line-height: 1.65;
      color: var(--text);
      background: var(--white);
      -webkit-font-smoothing: antialiased;
    }

    /* ══════════════════════════════════════
       CONTAINER
    ══════════════════════════════════════ */
    .container {
      max-width: var(--container);
      margin: 0 auto;
      padding: 0 24px;
    }

    /* ══════════════════════════════════════
       TOP BAR
    ══════════════════════════════════════ */
    .topbar {
      background: #f4f4f5;
      font-size: 17px;
      font-weight: 700;
      color: var(--muted);
      border-bottom: 1px solid var(--border);
    }
    .topbar-inner {
      max-width: var(--container);
      margin: 0 auto;
      padding: 0 24px;
      display: flex;
      justify-content: flex-end;
      align-items: center;
      gap: 28px;
      height: 38px;
    }
    .topbar a {
      color: var(--muted);
      text-decoration: none;
      transition: color .2s;
    }
    .topbar a:hover { color: var(--navy); }
    .topbar .tb-cta {
      color: var(--blue);
      font-weight: 500;
    }
    .topbar .sep { color: var(--border); }

    /* ══════════════════════════════════════
       HEADER
    ══════════════════════════════════════ */
    header {
      position: sticky;
      top: 0; z-index: 200;
      background: #98020e;
      height: var(--nav-h);
      box-shadow: 0 2px 12px rgba(0,0,0,0.2);
    }
    .header-inner {
      max-width: var(--container);
      margin: 0 auto;
      padding: 0 24px;
      height: 100%;
      display: flex;
      align-items: center;
      gap: 32px;
    }

    /* Logo */
    .logo {
      font-family: 'Geometria', sans-serif;
      font-size: 22px; font-weight: 700; color: #fff;
      text-decoration: none; white-space: nowrap;
      margin-right: 36px; flex-shrink: 0;
      display: flex; align-items: center; gap: 5px;
    }
    .logo-badge { background: rgba(255,255,255,0.15); color: #fff; border-radius: 5px; padding: 1px 8px; font-size: 22px; font-weight: 700; }
    .logo-tagline { font-size: 10px; font-weight: 400; color: rgba(255,255,255,0.65); line-height: 1.35; letter-spacing: 0; text-transform: none; border-left: 1px solid rgba(255,255,255,0.25); padding-left: 10px; margin-left: 5px; }
    .logo .logo-dot { color: rgba(255,255,255,0.85); }

    /* Nav */
    nav {
      display: flex;
      align-items: stretch;
      height: 100%;
      flex: 1;
    }
    .nav-item {
      position: relative;
      height: 100%;
      display: flex;
      align-items: center;
    }
    .nav-link {
      display: flex;
      align-items: center;
      gap: 5px;
      padding: 0 16px;
      height: 100%;
      font-size: 14px;
      font-weight: 700;
      color: rgba(255,255,255,0.9);
      text-decoration: none;
      border: none;
      background: none;
      cursor: pointer;
      font-family: 'Geometria', sans-serif;
      letter-spacing: 0.1px;
      white-space: nowrap;
      transition: background .2s, color .2s;
      border-bottom: 3px solid transparent;
    }
    .nav-link:hover,
    .nav-link.active {
      color: #fff;
      background: rgba(0,0,0,0.15);
      border-bottom-color: rgba(255,255,255,0.7);
    }
    .nav-arrow {
      font-size: 9px;
      color: rgba(255,255,255,0.6);
      transition: transform .2s;
    }
    .nav-item:hover .nav-arrow { transform: rotate(180deg); color: #fff; }

    /* Dropdown */
    .dropdown {
      position: absolute;
      top: 100%; left: 0;
      background: var(--white);
      border-top: 3px solid var(--blue);
      box-shadow: 0 8px 32px rgba(27,42,71,0.16);
      min-width: 210px;
      padding: 8px 0;
      opacity: 0; pointer-events: none;
      transform: translateY(6px);
      transition: opacity .2s, transform .2s;
      z-index: 400;
    }
    .nav-item:hover .dropdown { opacity: 1; pointer-events: all; transform: translateY(0); }

    .dd-head {
      padding: 10px 18px 8px;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 1.8px;
      text-transform: uppercase;
      color: var(--blue);
      border-bottom: 1px solid var(--border);
      margin-bottom: 4px;
    }
    .dropdown a {
      display: block;
      padding: 9px 18px;
      font-size: 14px;
      color: var(--text);
      text-decoration: none;
      transition: background .15s, color .15s;
    }
    .dropdown a:hover { background: var(--blue-bg); color: var(--blue); }

    /* Mega dropdown */
    .mega {
      min-width: 560px;
      left: 0;
      display: grid !important;
      grid-template-columns: repeat(3,1fr);
      padding: 20px 0 14px;
      gap: 0;
    }
    .mc {
      padding: 0 18px 8px;
      border-right: 1px solid var(--border);
    }
    .mc:last-child { border-right: none; }
    .mc-title {
      font-size: 10px; font-weight: 700; letter-spacing: 1.8px;
      text-transform: uppercase; color: var(--blue);
      margin-bottom: 10px; padding-bottom: 8px;
      border-bottom: 1px solid var(--border);
    }
    .mc a {
      display: block; padding: 7px 0;
      font-size: 13.5px; color: var(--text);
      text-decoration: none;
      border: none !important; background: none !important;
      transition: color .15s;
    }
    .mc a:hover { color: var(--blue) !important; background: none !important; }

    /* Header right */
    .header-right {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-left: auto;
      flex-shrink: 0;
    }
    .h-phone {
      font-size: 15px; font-weight: 700;
      color: #fff; text-decoration: none;
      letter-spacing: 0.3px; white-space: nowrap;
    }
    .h-phone:hover { color: rgba(255,255,255,0.8); }
    .btn-header {
      display: inline-block;
      background: #fff;
      color: #98020e;
      padding: 9px 20px;
      font-family: 'Geometria', sans-serif;
      font-size: 13px; font-weight: 500;
      text-decoration: none; border: none; cursor: pointer;
      white-space: nowrap;
      transition: background .2s;
      border-radius: 2px;
    }
    .btn-header:hover { background: rgba(255,255,255,0.88); }

    /* ══════════════════════════════════════
       HERO
    ══════════════════════════════════════ */
    .hero {
      padding: 0;
      position: relative;
      overflow: hidden;
    }
    .hero-slide {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center center;
      opacity: 0;
      transition: opacity 1.5s ease;
      z-index: 0;
    }
    .hero-slide.active { opacity: 1; }
    .hero-slide::before {
      content: '';
      position: absolute; inset: 0;
      background: linear-gradient(to right, rgba(20,30,50,0.75) 0%, rgba(20,30,50,0.35) 55%, rgba(20,30,50,0.05) 100%);
    }
    .hero-inner {
      position: relative;
      z-index: 1;
      max-width: var(--container);
      margin: 0 auto;
      padding: 30px 24px 60px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      min-height: unset;
      align-items: stretch;
      gap: 60px;
      position: relative;
     
    }

    /* Hero left */
    .hero-left { padding: 36px 0; }

    .hero-label {
      display: inline-block;
      background: rgba(255,255,255,0.12);
      border: 1px solid rgba(255,255,255,0.25);
      color: #e87a82;
      font-size: 12px;
      font-weight: 500;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      padding: 5px 14px;
      margin-bottom: 20px;
      border-radius: 2px;
    }

    .hero h1 {
      font-family: 'Geometria', sans-serif;
      font-size: clamp(26px, 3vw, 42px);
      font-weight: 800;
      color: #fff;
      line-height: 1.15;
      margin-bottom: 22px;
      letter-spacing: -0.3px;
    }

    .hero-sub {
      font-size: 16px;
      color: rgba(255,255,255,0.8);
      line-height: 1.75;
      max-width: 440px;
      margin-bottom: 34px;
    }

    .btn-hero {
      display: inline-block;
      background: #98020e;
      color: #fff;
      padding: 14px 32px;
      font-family: 'Geometria', sans-serif;
      font-size: 15px; font-weight: 500;
      text-decoration: none;
      transition: background .2s;
      border-radius: 2px;
      margin-bottom: 52px;
    }
    .btn-hero:hover { background: #b8030e; }

    /* Feature bullets */
    .hero-bullets {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0;
      background: rgba(255,255,255,0.92);
      border-radius: 10px;
      overflow: hidden;
    }
    .hb {
      display: flex;
      align-items: flex-start;
      gap: 11px;
      padding: 14px 18px;
      border-right: 1px solid rgba(0,0,0,0.08);
      border-bottom: 1px solid rgba(0,0,0,0.08);
    }
    .hb:nth-child(2n) { border-right: none; }
    .hb:nth-last-child(-n+2) { border-bottom: none; }
    .hb-icon {
      width: 7px; height: 7px;
      background: #7a0109;
      border-radius: 50%;
      flex-shrink: 0;
      margin-top: 8px;
    }
    .hb-text { font-size: 14px; color: #1a2a4a; line-height: 1.5; }
    .hb-text strong { color: #98020e; display: block; font-weight: 700; }

    /* Hero right — category cards */

 .hero-right {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0;
  align-self: stretch;
  justify-content: flex-end;
}

.hero-right-img {
  flex: 0.9;              /* растягивает на всё доступное пространство */
  border-radius: 6px;
  overflow: hidden;
  min-height: 240px;    /* увеличьте минимальную высоту */
}

.hero-right-img img {
  width: 100%;
  height: 100%;         /* было 90% — меняем на 100% */
  object-fit: cover;
  display: block;
}

    .cat-cards-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
    }
    .cat-card {
      background: rgba(255,255,255,0.10);
      border: 1px solid rgba(255,255,255,0.15);
      padding: 16px 14px;
      text-decoration: none;
      display: block;
      transition: background .3s, border-color .3s, background-image .3s;
      border-radius: 3px;
    }
a.cat-card[style*="belbeton2"] {
      transition: background-image .3s, border-color .3s, filter .3s;
    }
    a.cat-card[style*="belbeton2"]:hover {
      background-image: linear-gradient(rgba(18,30,55,0.3),rgba(18,30,55,0.3)),url('images/ph-derevo.jpg') !important;
      border-color: #e87a82;
    }
    
    
    
    .cat-card:hover {
      background: rgba(37,99,176,0.4);
      border-color: #e87a82;
    }
    .cat-card-icon {
      font-size: 18px;
      margin-bottom: 6px;
      display: block;
    }
    .cat-card h3 {
      font-size: 13px; font-weight: 700;
      color: #fff; margin-bottom: 6px;
      letter-spacing: 0.1px;
    }
    .cat-card ul { list-style: none; }
    .cat-card ul li {
      font-size: 11px;
      color: rgba(255,255,255,0.85);
      padding: 2px 0;
      border-top: 1px solid rgba(255,255,255,0.12);
    }
    .cat-card ul li:first-child { border-top: none; }
    .cat-card ul li::before { content: '— '; color: #e87a82; }
    .cat-card ul li a { color: rgba(255,255,255,0.9) !important; text-decoration: none !important; transition: color .15s; }
    .cat-card ul li a:hover { color: #e87a82 !important; }

    /* ══════════════════════════════════════
       STATS BAR
    ══════════════════════════════════════ */
    .stats-bar {
      background: #2b2f38;
    }
    .stats-inner {
      max-width: var(--container);
      margin: 0 auto;
      padding: 0 24px;
      display: flex;
    }
    .stat-item {
      flex: 1;
      padding: 22px 0;
      text-align: center;
      border-right: 1px solid rgba(255,255,255,0.2);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 4px;
    }
    .stat-item:last-child { border-right: none; }
    .stat-num {
      font-size: 30px; font-weight: 700; color: #fff;
      line-height: 1; font-family: 'Geometria', sans-serif;
    }
    .stat-num sup { font-size: 16px; vertical-align: super; }
    .stat-label {
      font-size: 12px; color: rgba(255,255,255,0.75);
      letter-spacing: 0.5px; text-transform: uppercase; font-weight: 500;
    }

    /* ══════════════════════════════════════
       SECTION COMMONS
    ══════════════════════════════════════ */
    .section { padding: 72px 0; }
    .section-bg { background: var(--off); }

    .section-header { margin-bottom: 42px; }
    .section-label {
      display: inline-block;
      font-size: 11px; font-weight: 700;
      letter-spacing: 2px; text-transform: uppercase;
      color: var(--blue);
      margin-bottom: 10px;
    }
    h2.section-title {
      font-size: clamp(26px, 3vw, 42px);
      font-weight: 800;
      line-height: 1.1;
      color: var(--navy);
      letter-spacing: -0.5px;
    }
    .section-desc {
      font-size: 15px;
      color: var(--muted);
      max-width: 560px;
      margin-top: 12px;
      line-height: 1.75;
    }

    /* Section divider */
    .section-title::after {
      content: '';
      display: block;
      width: 48px; height: 3px;
      background: #98020e;
      margin-top: 14px;
    }

    /* ══════════════════════════════════════
       ABOUT + CALLBACK
    ══════════════════════════════════════ */
    .about-layout {
      display: grid;
      grid-template-columns: 1fr 340px;
      gap: 60px;
      align-items: start;
    }

    .about-text p {
      font-size: 15px;
      color: var(--text);
      line-height: 1.85;
      margin-bottom: 16px;
    }

    .dir-heading {
      font-size: 16px; font-weight: 700;
      color: var(--navy);
      margin: 28px 0 16px;
    }
    .dir-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0;
    }
    .dir-item {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 10px 0;
      font-size: 14px;
      color: var(--muted);
      border-bottom: 1px solid var(--border);
    }
    .dir-item::before {
      content: '';
      width: 6px; height: 6px;
      background: #98020e;
      border-radius: 50%;
      flex-shrink: 0;
    }

    /* Callback card */
    .cb-card {
      background: #98020e;
      padding: 32px 28px;
      position: sticky;
      top: calc(var(--nav-h) + 16px);
      border-radius: 3px;
    }
    .cb-card h3 {
      font-size: 19px; font-weight: 700;
      color: #fff; margin-bottom: 8px;
    }
    .cb-card > p {
      font-size: 13px;
      color: rgba(255,255,255,0.55);
      margin-bottom: 22px;
      line-height: 1.65;
    }
    .cb-field {
      display: block; width: 100%;
      padding: 12px 14px;
      background: rgba(255,255,255,0.15);
      border: 1px solid rgba(255,255,255,0.25);
      color: #fff;
      font-family: 'Geometria', sans-serif; font-size: 14px;
      outline: none; margin-bottom: 10px;
      border-radius: 2px;
      transition: border-color .2s;
    }
    .cb-field::placeholder { color: rgba(255,255,255,0.45); }
    .cb-field:focus { border-color: rgba(255,255,255,0.7); }
    .btn-cb {
      width: 100%; background: #98020e; color: #fff; border: none;
      padding: 13px; font-family: 'Geometria', sans-serif;
      font-size: 14px; font-weight: 500; cursor: pointer;
      border-radius: 2px; transition: background .2s;
      margin-bottom: 12px;
    }
    .btn-cb:hover { background: #b8030e; }
    .cb-fine {
      font-size: 11px; color: rgba(255,255,255,0.35);
      line-height: 1.6;
    }
    .cb-fine a { color: rgba(255,255,255,0.5); }
    .cb-contacts {
      margin-top: 24px;
      padding-top: 22px;
      border-top: 1px solid rgba(255,255,255,0.1);
      display: flex; flex-direction: column; gap: 7px;
    }
    .cb-contacts a {
      text-decoration: none; font-size: 13.5px;
      color: rgba(255,255,255,0.6);
      transition: color .2s;
    }
    .cb-contacts a:hover { color: #fff; }
    .cb-contacts .big { font-size: 18px; font-weight: 700; color: #fff; }

    /* ══════════════════════════════════════
       OBJECTS + WORKS
    ══════════════════════════════════════ */
    .obj-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: start;
    }
    .obj-list { list-style: none; }
    .obj-row {
      display: flex; align-items: center; gap: 14px;
      padding: 13px 14px;
      border-bottom: 1px solid var(--border);
      background: var(--white);
      transition: background .15s, padding-left .2s;
      cursor: default;
    }
    .obj-row:first-child { border-top: 1px solid var(--border); }
    .obj-row:hover { background: var(--blue-bg); padding-left: 20px; }
    .obj-dot {
      width: 8px; height: 8px;
      background: #98020e; border-radius: 50%;
      flex-shrink: 0;
    }
    .obj-row span { font-size: 14px; color: var(--text); font-weight: 600; }

    .works-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
    }
    .wcard {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 3px;
      overflow: hidden;
      box-shadow: var(--shadow);
      transition: box-shadow .2s, transform .2s;
    }
    .wcard:hover {
      box-shadow: 0 6px 28px rgba(37,99,176,0.15);
      transform: translateY(-2px);
    }
    .wcard-thumb {
      height: 110px;
      background: var(--off);
      display: flex; align-items: center; justify-content: center;
      font-size: 32px; position: relative; overflow: hidden;
    }
    .wcard-thumb::after {
      content: '';
      position: absolute; bottom: 0; left: 0; right: 0;
      height: 4px; background: #98020e;
    }
    .wcard-body { padding: 14px 16px; }
    .wcard-body h4 {
      font-size: 14px; font-weight: 700;
      color: var(--navy); margin-bottom: 5px; line-height: 1.3;
    }
    .wcard-body p { font-size: 12px; color: var(--muted); line-height: 1.6; }
    .wcard-addr { font-size: 11px; color: var(--blue); font-weight: 500; margin-top: 7px; }

    /* ══════════════════════════════════════
       FORM SECTION
    ══════════════════════════════════════ */
    .form-section { background: #2b2f38; }
    .form-section .section-label { color: rgba(255,255,255,0.85); background: rgba(255,255,255,0.15); }
    .form-section .section-title { color: #fff; }
    .form-section .section-title::after { background: rgba(255,255,255,0.4); }
    .form-section .section-desc { color: rgba(255,255,255,0.8); }

    .form-layout {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 72px;
      align-items: center;
    }
    .fi-contacts {
      margin-top: 32px;
      display: flex; flex-direction: column; gap: 10px;
    }
    .fi-contacts a {
      color: rgba(255,255,255,0.85);
      text-decoration: none; font-size: 14px;
      transition: color .2s;
    }
    .fi-contacts a:hover { color: #fff; }
    .fi-phone { font-size: 22px !important; font-weight: 700 !important; color: #fff !important; }

    .form-box {
      background: var(--white);
      padding: 36px 32px;
      border-radius: 3px;
    }
    .form-box h3 {
      font-size: 20px; font-weight: 700;
      color: var(--navy); margin-bottom: 6px;
    }
    .form-box > p {
      font-size: 13px; color: var(--muted);
      margin-bottom: 22px; line-height: 1.65;
    }
    .f-field {
      display: block; width: 100%;
      padding: 12px 14px;
      border: 1px solid var(--border);
      background: var(--off);
      color: var(--text);
      font-family: 'Geometria', sans-serif; font-size: 14px;
      outline: none; margin-bottom: 12px;
      border-radius: 2px;
      transition: border-color .2s, background .2s;
    }
    .f-field:focus { border-color: var(--blue); background: var(--white); }
    .f-field::placeholder { color: #aaa; }
    textarea.f-field { resize: vertical; min-height: 90px; }
    .btn-form {
      width: 100%; background: #98020e; color: #fff; border: none;
      padding: 14px; font-family: 'Geometria', sans-serif;
      font-size: 15px; font-weight: 500; cursor: pointer;
      border-radius: 2px; transition: background .2s;
    }
    .btn-form:hover { background: #b8030e; }
    .f-fine {
      font-size: 11px; color: #aaa;
      margin-top: 10px; line-height: 1.6;
    }
    .f-fine a { color: var(--blue); }

    /* ══════════════════════════════════════
       FAQ
    ══════════════════════════════════════ */
    .faq-cols {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0 48px;
    }
    .fq { border-bottom: 1px solid var(--border); }
    .fq:first-child { border-top: 1px solid var(--border); }
    .fq-q {
      width: 100%; background: none; border: none;
      padding: 17px 0; text-align: left;
      font-family: 'Geometria', sans-serif; font-size: 14px; font-weight: 500;
      cursor: pointer; color: var(--navy);
      display: flex; justify-content: space-between; align-items: center; gap: 14px;
      transition: color .2s;
    }
    .fq-q:hover { color: var(--blue); }
    .fq-ico {
      width: 22px; height: 22px; flex-shrink: 0;
      border: 2px solid var(--border);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 16px; color: var(--blue);
      transition: background .2s, border-color .2s;
      line-height: 1;
      padding-bottom: 1px;
    }
    .fq.open .fq-ico { background: #98020e; border-color: var(--blue); color: #fff; }
    .fq-ico::after { content: '+'; }
    .fq.open .fq-ico::after { content: '−'; }
    .fq-a {
      font-size: 14px; color: var(--muted); line-height: 1.85;
      max-height: 0; overflow: hidden;
      transition: max-height .35s ease, padding .3s;
    }
    .fq.open .fq-a { max-height: 500px; padding: 0 0 16px; }

    /* ══════════════════════════════════════
       FOOTER
    ══════════════════════════════════════ */
    footer {
      background: #2b2f38;
    }
    .ft-top {
      max-width: var(--container);
      margin: 0 auto;
      padding: 56px 24px 48px;
      display: grid;
      grid-template-columns: 240px 1fr 1fr 1fr;
      gap: 44px;
      border-bottom: 1px solid rgba(255,255,255,0.08);
    }
    .ft-logo {
      font-family: 'Geometria', sans-serif;
      font-size: 20px; font-weight: 700;
      color: #fff; text-transform: uppercase;
      letter-spacing: 0.5px; margin-bottom: 12px;
    }
    .ft-logo .dot { color: #e87a82; }
    .ft-about {
      font-size: 13px; color: rgba(255,255,255,0.45);
      line-height: 1.75;
    }
    .ft-col h5 {
      font-size: 11px; font-weight: 700;
      letter-spacing: 2px; text-transform: uppercase;
      color: rgba(255,255,255,0.9);
      margin-bottom: 18px;
      padding-bottom: 10px;
      border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    .ft-col a {
      display: block; font-size: 13.5px;
      color: rgba(255,255,255,0.5);
      text-decoration: none; margin-bottom: 8px;
      transition: color .2s;
    }
    .ft-col a:hover { color: #e87a82; }
    .ft-bottom {
      max-width: var(--container);
      margin: 0 auto;
      padding: 20px 24px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 12px;
      color: rgba(255,255,255,0.3);
    }
    .ft-bottom a {
      color: rgba(255,255,255,0.35);
      text-decoration: none; transition: color .2s;
    }
    .ft-bottom a:hover { color: #e87a82; }

    /* ══════════════════════════════════════
       ANIMATIONS
    ══════════════════════════════════════ */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(22px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    .hero-left > * {
      opacity: 0;
      animation: fadeUp .55s ease forwards;
    }
    .hero-left > :nth-child(1) { animation-delay: .05s; }
    .hero-left > :nth-child(2) { animation-delay: .15s; }
    .hero-left > :nth-child(3) { animation-delay: .25s; }
    .hero-left > :nth-child(4) { animation-delay: .35s; }
    .hero-left > :nth-child(5) { animation-delay: .45s; }

    .reveal {
      opacity: 0;
      transform: translateY(20px);
      transition: opacity .55s ease, transform .55s ease;
    }
    .reveal.visible { opacity: 1; transform: translateY(0); }

    /* ══════════════════════════════════════
       NEWS SIDEBAR (главная страница)
    ══════════════════════════════════════ */
    .news-sidebar {
      position: sticky;
      top: calc(var(--nav-h) + 16px);
    }
    .news-sidebar-item {
      display: block;
      text-decoration: none;
      color: inherit;
      padding-bottom: 20px;
      margin-bottom: 20px;
      border-bottom: 1px solid var(--border);
      transition: opacity .18s;
    }
    .news-sidebar-item:last-of-type { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
    .news-sidebar-item:hover { opacity: .82; }
    .news-sidebar-img {
      width: 100%; height: 160px;
      object-fit: cover;
      border-radius: 6px;
      margin-bottom: 12px;
      display: block;
    }
    .news-sidebar-date {
      font-size: 11px; color: var(--blue); font-weight: 700;
      margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.8px;
    }
    .news-sidebar-heading {
      font-size: 14px; font-weight: 700;
      color: var(--navy); line-height: 1.4; margin-bottom: 6px;
    }
    .news-sidebar-text {
      font-size: 13px; color: var(--muted); line-height: 1.6;
    }
    .news-sidebar-more {
      display: block; margin-top: 16px; text-align: center;
      font-size: 13px; font-weight: 600; color: var(--blue);
      text-decoration: none; padding: 10px;
      border: 1.5px solid var(--blue); border-radius: 4px;
      transition: background .2s, color .2s;
    }
    .news-sidebar-more:hover { background: var(--blue); color: #fff; }

    /* ══════════════════════════════════════
       MOBILE
    ══════════════════════════════════════ */

    /* BURGER */
    .burger { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 36px; height: 36px; background: none; border: none; cursor: pointer; padding: 4px; margin-left: auto; }
    .burger span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: all .25s; }
    .burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .burger.active span:nth-child(2) { opacity: 0; }
    .burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    /* MOBILE DRAWER */
    .mob-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 300; opacity: 0; transition: opacity .3s; }
    .mob-overlay.open { display: block; opacity: 1; }
    .mob-nav { position: fixed; top: 0; right: -320px; width: 300px; max-width: 85vw; height: 100%; background: #fff; z-index: 400; overflow-y: auto; transition: right .3s ease; display: flex; flex-direction: column; }
    .mob-nav.open { right: 0; }
    .mob-nav-head { display: flex; align-items: center; justify-content: space-between; padding: 16px 20px; background: #98020e; border-bottom: none; flex-shrink: 0; }
    .mob-nav-head .logo { color: #fff; }
    .mob-nav-head .logo-badge { background: rgba(255,255,255,0.25); color: #fff; }
    .mob-close { background: none; border: none; color: rgba(255,255,255,0.85); font-size: 20px; cursor: pointer; padding: 4px 8px; }
    .mob-close:hover { color: #fff; }
    .mob-nav-body { padding: 12px 0 32px; flex: 1; }
    .mob-link { display: flex; align-items: center; justify-content: space-between; width: 100%; padding: 13px 20px; color: #2c2c2c; font-size: 15px; text-decoration: none; background: none; border: none; font-family: inherit; cursor: pointer; text-align: left; border-bottom: 1px solid #e2e2e6; transition: background .2s; }
    .mob-link:hover { background: #fdf0f0; color: #98020e; }
    .mob-arrow { font-size: 11px; opacity: .5; transition: transform .25s; }
    .mob-group.active .mob-arrow { transform: rotate(180deg); }
    .mob-sub { display: none; background: #f5f5f7; }
    .mob-group.active .mob-sub { display: block; }
    .mob-sub-title { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: #606773; padding: 10px 20px 4px; }
    .mob-sub-link { display: block; padding: 9px 20px 9px 28px; font-size: 14px; color: #606773; text-decoration: none; border-bottom: 1px solid #e2e2e6; transition: color .2s; }
    .mob-sub-link:hover { color: #98020e; }
    .mob-cta { display: block; margin: 8px 16px 0; padding: 12px 20px; text-align: center; border-radius: 5px; font-weight: 600; font-size: 15px; text-decoration: none; border: 1.5px solid #e2e2e6; color: #2b2f38; transition: border-color .2s; }
    .mob-cta:hover { border-color: #2b2f38; }
    .mob-cta-blue { background: #98020e; border-color: #98020e; color: #fff; margin-top: 8px; }
    .mob-cta-blue:hover { background: #c1121f; border-color: #c1121f; }

    @media (max-width: 980px) {
      .burger { display: flex; }
      .topbar-inner { display: none; }
      .header-inner nav { display: none; }
      .header-right { display: none; }
      .hero-inner { grid-template-columns: 1fr; padding: 28px 20px 32px; gap: 0; }
      .hero-right { display: none; }
      .hero-left { padding: 0; }
      .hero-bullets { grid-template-columns: 1fr; }
      .stats-inner { flex-wrap: wrap; }
      .stat-item { min-width: 50%; }
      .about-layout,
      .obj-layout,
      .form-layout { grid-template-columns: 1fr; }
      .obj-layout { gap: 20px; }
      .obj-layout > .reveal:first-child { display: contents; }
      .obj-layout .section-header { order: -2; margin-bottom: 0; }
      .obj-layout .works-grid { order: -1; }
      .obj-layout .obj-list { order: 0; }
      .works-grid,
      .dir-grid,
      .faq-cols { grid-template-columns: 1fr; }
      .ft-top { grid-template-columns: 1fr 1fr; }
      .section { padding: 52px 0; }
      .hero-left { padding: 56px 0 40px; }
    }