
    :root {
      --bg: #f7f3eb;
      --bg-soft: #eef1ea;
      --card: #ffffff;
      --dark: #17241f;
      --dark-2: #21352e;
      --green: #385d4e;
      --green-deep: #243f36;
      --sand: #bd7b45;
      --sand-light: #e0b478;
      --text: #17241f;
      --muted: #64716c;
      --line: rgba(23, 36, 31, 0.12);
      --shadow: 0 22px 60px rgba(23, 36, 31, 0.14);
      --radius: 28px;
      --container: 1180px;
    }

    *, *::before, *::after { box-sizing: border-box; }

    html {
      width: 100%;
      max-width: 100%;
      scroll-behavior: smooth;
      -webkit-text-size-adjust: 100%;
    }

    body {
      width: 100%;
      max-width: 100%;
      margin: 0;
      overflow-x: hidden;
      font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif;
      color: var(--text);
      background:
        radial-gradient(circle at 12% 0%, rgba(224, 180, 120, 0.24), transparent 32%),
        radial-gradient(circle at 90% 4%, rgba(56, 93, 78, 0.16), transparent 28%),
        linear-gradient(180deg, #fcfaf5 0%, var(--bg) 50%, #ffffff 100%);
      line-height: 1.55;
    }

    body.menu-open { overflow: hidden; }

    a { color: inherit; text-decoration: none; }
    img, svg { display: block; max-width: 100%; }
    h1, h2, h3, p { margin-top: 0; }
    p:last-child { margin-bottom: 0; }

    .page { width: 100%; overflow: hidden; }

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

    .site-header {
      position: sticky;
      top: 0;
      z-index: 100;
      color: #fff;
      background: rgba(23, 36, 31, 0.93);
      border-bottom: 1px solid rgba(255, 255, 255, 0.12);
      backdrop-filter: blur(16px);
    }

    .header-inner {
      min-height: 64px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
    }

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

    .brand-mark {
      flex: 0 0 auto;
      width: 40px;
      height: 40px;
      display: grid;
      place-items: center;
      border-radius: 13px;
      color: var(--dark);
      background: linear-gradient(135deg, var(--sand-light), var(--sand));
      box-shadow: 0 10px 24px rgba(224, 180, 120, 0.18);
    }

    .brand-mark svg { width: 25px; height: 25px; }
    .brand-text { min-width: 0; }

    .brand-title {
      display: block;
      max-width: 170px;
      overflow: hidden;
      white-space: nowrap;
      text-overflow: ellipsis;
      font-size: 14px;
      font-weight: 900;
      line-height: 1.05;
      letter-spacing: -0.035em;
    }

    .brand-subtitle {
      display: block;
      margin-top: 4px;
      color: rgba(255, 255, 255, 0.68);
      font-size: 10px;
      line-height: 1.1;
    }

    .nav, .header-phone { display: none; }

    .menu-button {
      flex: 0 0 auto;
      width: 42px;
      height: 42px;
      display: grid;
      place-items: center;
      border: 1px solid rgba(255, 255, 255, 0.16);
      border-radius: 14px;
      color: #fff;
      background: rgba(255, 255, 255, 0.1);
      cursor: pointer;
    }

    .menu-icon, .menu-icon::before, .menu-icon::after {
      content: "";
      display: block;
      width: 20px;
      height: 2px;
      border-radius: 999px;
      background: currentColor;
      transition: transform 0.2s ease, opacity 0.2s ease;
    }

    .menu-icon::before { transform: translateY(-6px); }
    .menu-icon::after { transform: translateY(4px); }
    .menu-button.is-active .menu-icon { transform: rotate(45deg); }
    .menu-button.is-active .menu-icon::before { transform: translateY(0) rotate(90deg); }
    .menu-button.is-active .menu-icon::after { opacity: 0; transform: translateY(-2px); }

    .mobile-nav {
      position: fixed;
      inset: 72px 12px auto 12px;
      z-index: 120;
      display: none;
      padding: 10px;
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: 20px;
      background: rgba(23, 36, 31, 0.98);
      box-shadow: 0 26px 70px rgba(0, 0, 0, 0.26);
    }

    .mobile-nav.is-open { display: grid; }

    .mobile-nav a {
      padding: 14px 12px;
      border-radius: 14px;
      color: rgba(255, 255, 255, 0.86);
      font-weight: 800;
    }

    .mobile-nav a:hover { background: rgba(255, 255, 255, 0.08); color: #fff; }

    .hero { padding: 28px 0 42px; }

    .hero-grid {
      display: grid;
      grid-template-columns: minmax(0, 1fr);
      gap: 24px;
      align-items: center;
    }

    .eyebrow {
      width: 100%;
      margin-bottom: 14px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      color: var(--green-deep);
      font-size: 13px;
      font-weight: 900;
      text-align: center;
    }

    .eyebrow-dot {
      flex: 0 0 auto;
      width: 8px;
      height: 8px;
      border-radius: 999px;
      background: var(--sand);
      box-shadow: 0 0 0 6px rgba(189, 123, 69, 0.18);
    }

    h1 {
      max-width: 900px;
      margin-bottom: 16px;
      font-size: clamp(32px, 10.5vw, 44px);
      line-height: 1.04;
      letter-spacing: -0.055em;
      overflow-wrap: anywhere;
    }

    .lead {
      max-width: 720px;
      margin-bottom: 22px;
      color: #53625d;
      font-size: 16px;
      line-height: 1.6;
    }

    .actions {
      display: grid;
      gap: 10px;
      margin-bottom: 18px;
    }

    .button {
      width: 100%;
      min-height: 50px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 13px 16px;
      border: 1px solid transparent;
      border-radius: 999px;
      font: inherit;
      font-size: 15px;
      font-weight: 900;
      text-align: center;
      cursor: pointer;
      transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
    }

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

    .button-primary {
      color: #fff;
      background: linear-gradient(135deg, var(--green), var(--dark-2));
      box-shadow: 0 16px 36px rgba(36, 63, 54, 0.24);
    }

    .trust-row {
      display: grid;
      grid-template-columns: minmax(0, 1fr);
      gap: 10px;
      min-width: 0;
    }

    .trust-item {
      min-width: 0;
      padding: 14px;
      border: 1px solid rgba(23, 36, 31, 0.1);
      border-radius: 18px;
      background: rgba(255, 255, 255, 0.72);
      box-shadow: 0 12px 28px rgba(23, 36, 31, 0.05);
    }

    .trust-item strong {
      display: block;
      margin-bottom: 4px;
      font-size: 16px;
      line-height: 1.15;
    }

    .trust-item span {
      display: block;
      color: #586660;
      font-size: 13px;
      line-height: 1.4;
      overflow-wrap: anywhere;
    }

    .hero-card {
      position: relative;
      width: 100%;
      min-width: 0;
      overflow: hidden;
      border-radius: 26px;
      box-shadow: var(--shadow);
      background: #d6d6d0;
      aspect-ratio: 4 / 3;
    }

    .hero-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .hero-floating {
      position: absolute;
      left: 12px;
      right: 12px;
      bottom: 12px;
      padding: 14px;
      display: grid;
      gap: 10px;
      border: 1px solid rgba(255, 255, 255, 0.16);
      border-radius: 18px;
      color: #fff;
      background: rgba(23, 36, 31, 0.76);
      backdrop-filter: blur(12px);
    }

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

    .hero-floating span {
      display: block;
      color: rgba(255, 255, 255, 0.73);
      font-size: 12px;
      line-height: 1.35;
    }

    .badge-list { display: none; }



    .hero-carousel {
      isolation: isolate;
      background: #14241f;
    }

    .carousel-track {
      position: relative;
      width: 100%;
      height: 100%;
    }

    .carousel-slide {
      position: absolute;
      inset: 0;
      margin: 0;
      opacity: 0;
      transform: scale(1.025);
      transition: opacity 0.45s ease, transform 0.55s ease;
      pointer-events: none;
    }

    .carousel-slide.is-active {
      opacity: 1;
      transform: scale(1);
      pointer-events: auto;
      z-index: 1;
    }

    .carousel-slide::after {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 1;
      background:
        linear-gradient(180deg, rgba(14, 28, 23, 0.12), rgba(14, 28, 23, 0.18) 45%, rgba(14, 28, 23, 0.72)),
        linear-gradient(90deg, rgba(14, 28, 23, 0.42), transparent 58%);
      pointer-events: none;
    }

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

    .carousel-caption {
      position: absolute;
      left: 14px;
      right: 96px;
      bottom: 16px;
      z-index: 2;
      padding: 14px 16px;
      border: 1px solid rgba(255, 255, 255, 0.18);
      border-radius: 18px;
      color: #fff;
      background: rgba(23, 36, 31, 0.68);
      backdrop-filter: blur(12px);
      box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18);
    }

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

    .carousel-caption span {
      display: block;
      color: rgba(255, 255, 255, 0.77);
      font-size: 12px;
      line-height: 1.35;
      overflow-wrap: anywhere;
    }

    .carousel-hint {
      position: absolute;
      top: 14px;
      left: 14px;
      z-index: 3;
      padding: 8px 11px;
      border-radius: 999px;
      color: #fff;
      background: rgba(23, 36, 31, 0.72);
      backdrop-filter: blur(10px);
      font-size: 12px;
      font-weight: 900;
      letter-spacing: 0.01em;
      box-shadow: 0 12px 26px rgba(0, 0, 0, 0.16);
    }

    .carousel-control {
      position: absolute;
      top: 50%;
      z-index: 4;
      width: 42px;
      height: 42px;
      display: grid;
      place-items: center;
      border: 1px solid rgba(255, 255, 255, 0.24);
      border-radius: 999px;
      color: #fff;
      background: rgba(23, 36, 31, 0.72);
      backdrop-filter: blur(10px);
      font-size: 32px;
      line-height: 1;
      cursor: pointer;
      transform: translateY(-50%);
      transition: transform 0.18s ease, background 0.18s ease;
    }

    .carousel-control:hover {
      background: rgba(23, 36, 31, 0.92);
    }

    .carousel-prev { left: 12px; }
    .carousel-next { right: 12px; }

    .carousel-dots {
      position: absolute;
      right: 18px;
      bottom: 24px;
      z-index: 4;
      display: flex;
      align-items: center;
      gap: 7px;
      padding: 7px 8px;
      border-radius: 999px;
      background: rgba(23, 36, 31, 0.70);
      backdrop-filter: blur(10px);
    }

    .carousel-dot {
      width: 8px;
      height: 8px;
      padding: 0;
      border: 0;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.44);
      cursor: pointer;
      transition: width 0.2s ease, background 0.2s ease;
    }

    .carousel-dot.is-active {
      width: 22px;
      background: #fff;
    }

    .section { padding: 52px 0; }

    .section-muted {
      background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(238, 241, 234, 0.74)),
        var(--bg-soft);
    }

    .section-head { margin-bottom: 24px; }

    h2 {
      max-width: 900px;
      margin-bottom: 0;
      font-size: clamp(28px, 8.5vw, 40px);
      line-height: 1.08;
      letter-spacing: -0.045em;
      overflow-wrap: anywhere;
    }

    .services-grid {
      display: grid;
      grid-template-columns: minmax(0, 1fr);
      gap: 14px;
      min-width: 0;
    }

    .service-card {
      position: relative;
      width: 100%;
      min-width: 0;
      overflow: hidden;
      padding: 22px;
      border: 1px solid rgba(23, 36, 31, 0.1);
      border-radius: 22px;
      background: #fff;
      box-shadow: 0 14px 34px rgba(23, 36, 31, 0.07);
    }

    .service-card::before {
      content: "";
      position: absolute;
      right: -80px;
      bottom: -90px;
      width: 190px;
      height: 190px;
      border-radius: 999px;
      background: rgba(56, 93, 78, 0.08);
      pointer-events: none;
    }

    .service-icon {
      position: relative;
      z-index: 1;
      width: 48px;
      height: 48px;
      margin-bottom: 18px;
      display: grid;
      place-items: center;
      border-radius: 16px;
      color: var(--dark);
      background: linear-gradient(135deg, #f2d79b, #d8a356);
    }

    .service-icon svg { width: 27px; height: 27px; }

    .service-card h3 {
      position: relative;
      z-index: 1;
      margin-bottom: 10px;
      font-size: 21px;
      line-height: 1.15;
      letter-spacing: -0.03em;
    }

    .service-card p {
      position: relative;
      z-index: 1;
      margin-bottom: 18px;
      color: var(--muted);
    }

    .service-list {
      position: relative;
      z-index: 1;
      width: 100%;
      min-width: 0;
      display: grid;
      gap: 10px;
      margin: 0;
      padding: 0;
      list-style: none;
      color: #485752;
      font-size: 14px;
    }

    .service-list li {
      position: relative;
      min-width: 0;
      padding-left: 20px;
      overflow-wrap: anywhere;
    }

    .service-list li::before {
      content: "";
      position: absolute;
      top: 0.66em;
      left: 0;
      width: 8px;
      height: 8px;
      border-radius: 999px;
      background: var(--green);
    }

    .split {
      display: grid;
      grid-template-columns: minmax(0, 1fr);
      gap: 22px;
    }

    .photo-stack {
      min-width: 0;
      display: grid;
      gap: 12px;
    }

    .photo-main, .photo-small {
      min-width: 0;
      overflow: hidden;
      border-radius: 24px;
      background: #d7d7d1;
      box-shadow: 0 18px 44px rgba(23, 36, 31, 0.13);
    }

    .photo-main { aspect-ratio: 4 / 3; }
    .photo-small { aspect-ratio: 16 / 10; }
    .photo-main img, .photo-small img { width: 100%; height: 100%; object-fit: cover; }

    .content-card {
      min-width: 0;
      padding: 24px;
      border: 1px solid rgba(23, 36, 31, 0.1);
      border-radius: 24px;
      background: rgba(255, 255, 255, 0.78);
      box-shadow: var(--shadow);
    }

    .content-card h2 { margin-bottom: 16px; }
    .content-card p { color: #53625d; }
    .content-card p + p { margin-top: 14px; }

    .check-grid {
      margin-top: 22px;
      display: grid;
      grid-template-columns: minmax(0, 1fr);
      gap: 10px;
    }

    .check {
      min-width: 0;
      padding: 14px 14px 14px 42px;
      position: relative;
      border-radius: 16px;
      background: rgba(56, 93, 78, 0.08);
      color: var(--green-deep);
      font-weight: 800;
      overflow-wrap: anywhere;
    }

    .check::before {
      content: "✓";
      position: absolute;
      left: 14px;
      top: 14px;
      width: 20px;
      height: 20px;
      display: grid;
      place-items: center;
      border-radius: 999px;
      color: #fff;
      background: var(--green);
      font-size: 12px;
      line-height: 1;
    }

    .gallery-grid {
      display: grid;
      grid-template-columns: minmax(0, 1fr);
      gap: 14px;
      min-width: 0;
    }

    .gallery-card {
      position: relative;
      min-width: 0;
      overflow: hidden;
      border-radius: 24px;
      background: #d7d7d1;
      box-shadow: 0 18px 42px rgba(23, 36, 31, 0.12);
      aspect-ratio: 4 / 3;
    }

    .gallery-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.6s ease;
    }

    .gallery-card:hover img { transform: scale(1.04); }

    .gallery-card::after {
      content: "";
      position: absolute;
      inset: 42% 0 0;
      background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.74));
      pointer-events: none;
    }

    .gallery-caption {
      position: absolute;
      left: 16px;
      right: 16px;
      bottom: 16px;
      z-index: 1;
      color: #fff;
    }

    .gallery-caption strong {
      display: block;
      margin-bottom: 3px;
      font-size: 18px;
      line-height: 1.15;
      letter-spacing: -0.02em;
    }

    .gallery-caption span {
      display: block;
      color: rgba(255, 255, 255, 0.78);
      font-size: 13px;
      line-height: 1.35;
      overflow-wrap: anywhere;
    }

    .steps {
      display: grid;
      grid-template-columns: minmax(0, 1fr);
      gap: 14px;
      counter-reset: step;
    }

    .step {
      position: relative;
      min-width: 0;
      padding: 22px;
      border: 1px solid rgba(23, 36, 31, 0.1);
      border-radius: 22px;
      background: #fff;
      box-shadow: 0 14px 34px rgba(23, 36, 31, 0.07);
    }

    .step::before {
      counter-increment: step;
      content: "0" counter(step);
      display: inline-flex;
      margin-bottom: 16px;
      min-width: 42px;
      min-height: 42px;
      align-items: center;
      justify-content: center;
      border-radius: 14px;
      color: #fff;
      background: var(--green);
      font-weight: 900;
    }

    .step h3 {
      margin-bottom: 8px;
      font-size: 21px;
      letter-spacing: -0.025em;
    }

    .step p { margin-bottom: 0; color: var(--muted); font-size: 15px; }

    .contact {
      padding: 52px 0;
      color: #fff;
      background:
        radial-gradient(circle at 20% 5%, rgba(224, 180, 120, 0.18), transparent 34%),
        linear-gradient(135deg, #17241f, #385d4e);
    }

    .contact-panel {
      min-width: 0;
      padding: 24px;
      border: 1px solid rgba(255, 255, 255, 0.16);
      border-radius: 26px;
      background: rgba(23, 36, 31, 0.62);
      box-shadow: 0 22px 60px rgba(0, 0, 0, 0.22);
      backdrop-filter: blur(14px);
    }

    .contact-top {
      display: grid;
      grid-template-columns: minmax(0, 1fr);
      gap: 18px;
      align-items: start;
    }

    .contact-panel h2 { margin-bottom: 16px; color: #fff; }
    .contact-panel p { color: rgba(255, 255, 255, 0.76); font-size: 15px; }

    .contact-call {
      align-self: start;
      display: grid;
      gap: 10px;
    }

    .contact-list {
      display: grid;
      grid-template-columns: minmax(0, 1fr);
      gap: 10px;
      margin: 24px 0 0;
      padding: 0;
      list-style: none;
    }

    .contact-list li {
      min-width: 0;
      padding: 14px;
      border-radius: 16px;
      background: rgba(255, 255, 255, 0.09);
    }

    .contact-list span {
      display: block;
      margin-bottom: 3px;
      color: rgba(255, 255, 255, 0.58);
      font-size: 13px;
    }

    .contact-list strong, .contact-list a {
      display: block;
      max-width: 100%;
      overflow-wrap: anywhere;
      font-size: 16px;
      font-weight: 900;
      line-height: 1.25;
    }

    .site-footer {
      padding: 22px 0;
      color: rgba(255, 255, 255, 0.64);
      background: var(--dark);
      font-size: 14px;
    }

    .footer-inner {
      display: grid;
      gap: 10px;
      min-width: 0;
    }

    .footer-inner a { color: #fff; font-weight: 900; }



    @media (max-width: 520px) {
      .hero-card { aspect-ratio: 1 / 1.05; }
      .carousel-hint { top: 10px; left: 10px; font-size: 11px; }
      .carousel-caption {
        left: 10px;
        right: 10px;
        bottom: 56px;
        padding: 12px;
        border-radius: 16px;
      }
      .carousel-control {
        top: auto;
        bottom: 10px;
        width: 38px;
        height: 38px;
        font-size: 28px;
        transform: none;
      }
      .carousel-prev { left: 10px; }
      .carousel-next { right: 10px; }
      .carousel-dots {
        right: 58px;
        bottom: 18px;
        padding: 6px 8px;
      }
    }

    @media (min-width: 560px) {
      .container { width: min(var(--container), calc(100% - 40px)); }
      .actions { grid-template-columns: max-content; justify-content: start; }
      .button { width: auto; }
      .trust-row { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .hero-floating { left: 18px; right: 18px; bottom: 18px; padding: 16px; border-radius: 22px; }
      .gallery-caption { left: 20px; right: 20px; bottom: 20px; }
    }

    @media (min-width: 760px) {
      .header-inner { min-height: 74px; }
      .brand-title { max-width: none; font-size: 16px; }
      .brand-subtitle { font-size: 12px; }

      .header-phone {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 44px;
        padding: 10px 16px;
        border: 1px solid rgba(255, 255, 255, 0.16);
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.1);
        color: #fff;
        font-weight: 900;
        white-space: nowrap;
      }

      .hero { padding: 54px 0 58px; }
      .eyebrow { width: max-content; justify-content: flex-start; }
      h1 { font-size: clamp(44px, 6.7vw, 74px); line-height: 0.98; }
      .lead { font-size: clamp(18px, 2vw, 21px); }
      .section { padding: 74px 0; }
      h2 { font-size: clamp(36px, 4.8vw, 56px); line-height: 1.03; }
      .services-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
      .service-card { padding: 26px; border-radius: var(--radius); }
      .service-card h3 { font-size: 24px; }

      .photo-stack {
        position: relative;
        min-height: 520px;
        display: block;
      }

      .photo-main, .photo-small {
        position: absolute;
        border: 8px solid rgba(255, 255, 255, 0.84);
        border-radius: 34px;
        box-shadow: var(--shadow);
      }

      .photo-main { inset: 0 70px 70px 0; aspect-ratio: auto; }
      .photo-small { right: 0; bottom: 0; width: 46%; height: 45%; aspect-ratio: auto; }

      .content-card, .contact-panel { padding: 36px; border-radius: 34px; }
      .check-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
      .gallery-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); grid-auto-rows: 285px; gap: 18px; }
      .gallery-card { aspect-ratio: auto; border-radius: 30px; }
      .gallery-card-wide { grid-column: span 2; grid-row: span 2; }
      .gallery-caption strong { font-size: 20px; }
      .gallery-caption span { font-size: 14px; }
      .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
      .step { padding: 26px; border-radius: var(--radius); }
      .contact { padding: 78px 0; }
      .contact-panel p { font-size: 17px; }
      .contact-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .contact-list strong, .contact-list a { font-size: 18px; }
      .footer-inner { display: flex; justify-content: space-between; align-items: center; gap: 20px; }
    }

    @media (min-width: 980px) {
      .menu-button, .mobile-nav { display: none !important; }
      .nav { display: flex; align-items: center; justify-content: center; gap: 22px; }
      .nav a { color: rgba(255,255,255,0.72); font-size: 14px; font-weight: 800; transition: color 0.2s ease; }
      .nav a:hover { color: #fff; }
      .hero-grid { grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr); gap: 38px; }
      .hero-card { border-radius: 36px; aspect-ratio: 4 / 3; }
      .badge-list { display: flex; flex-wrap: wrap; gap: 8px; }
      .badge { padding: 8px 10px; border-radius: 999px; color: #fff; background: rgba(255, 255, 255, 0.12); font-size: 12px; font-weight: 900; white-space: nowrap; }
      .split { grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr); gap: 36px; align-items: center; }
      .steps { grid-template-columns: repeat(4, minmax(0, 1fr)); }
      .contact-top { grid-template-columns: minmax(0, 1fr) max-content; }
    }

    @media (max-width: 360px) {
      .container { width: calc(100% - 18px); }
      .brand-title { max-width: 138px; }
      h1 { font-size: 30px; }
      .hero-floating span { display: none; }
    }
  

    /* Обновление карусели: без надписей поверх фото, точки ниже изображения, улучшенная работа на iPhone */
    .hero-carousel {
      position: relative;
      overflow: visible !important;
      border-radius: 0 !important;
      box-shadow: none !important;
      background: transparent !important;
      aspect-ratio: auto !important;
      isolation: isolate;
      -webkit-tap-highlight-color: transparent;
      touch-action: pan-y;
    }

    .hero-carousel .carousel-track {
      position: relative;
      width: 100%;
      height: auto !important;
      aspect-ratio: 4 / 3;
      overflow: hidden;
      border-radius: 26px;
      background: #14241f;
      box-shadow: var(--shadow);
      touch-action: pan-y;
      -webkit-user-select: none;
      user-select: none;
    }

    .hero-carousel .carousel-slide::after {
      background:
        linear-gradient(180deg, rgba(14, 28, 23, 0.08), rgba(14, 28, 23, 0.16) 52%, rgba(14, 28, 23, 0.42)),
        linear-gradient(90deg, rgba(14, 28, 23, 0.20), transparent 58%);
    }

    .hero-carousel .carousel-caption,
    .hero-carousel .carousel-hint {
      display: none !important;
    }

    .hero-carousel .carousel-control {
      top: 50% !important;
      bottom: auto !important;
      z-index: 5;
      transform: translateY(-50%) !important;
      -webkit-appearance: none;
      appearance: none;
      touch-action: manipulation;
    }

    .hero-carousel .carousel-dots {
      position: static !important;
      right: auto !important;
      bottom: auto !important;
      z-index: 6;
      width: max-content;
      max-width: 100%;
      margin: 12px auto 0;
      justify-content: center;
      background: rgba(23, 36, 31, 0.88);
    }

    .hero-carousel .carousel-dot {
      touch-action: manipulation;
    }

    @media (max-width: 520px) {
      .hero-carousel { aspect-ratio: auto !important; }
      .hero-carousel .carousel-track {
        aspect-ratio: 1 / 1.05;
        border-radius: 22px;
      }
      .hero-carousel .carousel-control {
        width: 40px;
        height: 40px;
        font-size: 30px;
      }
      .hero-carousel .carousel-prev { left: 10px; }
      .hero-carousel .carousel-next { right: 10px; }
      .hero-carousel .carousel-dots {
        margin-top: 10px;
        padding: 7px 9px;
      }
    }

    @media (min-width: 980px) {
      .hero-carousel { aspect-ratio: auto !important; }
      .hero-carousel .carousel-track {
        aspect-ratio: 4 / 3;
        border-radius: 36px;
      }
    }

  