    :root {
      --ink: #120b05;
      --ink-soft: #2a1d10;
      --muted: #6b5a48;
      --muted-on-dark: #d8d2c4;
      --cream: #fff6e6;
      --sand: #ffe3b5;
      --peach: #ffb26a;
      --sun: #ffc233;
      --orange: #ff8a00;
      --fire: #ff5f1f;
      --sky: #6ed4ff;
      --sea: #1aa8d6;
      --deep: #0b1a2b;
      --night: #0d1828;
      --navy: #111f33;
      --shadow-soft: 0 18px 48px rgba(15, 25, 40, 0.12);
      --shadow-dark: 0 24px 54px rgba(0, 0, 0, 0.35);
      --radius: 22px;
      --radius-sm: 14px;
      --max: 1240px;
      --font: "Inter", system-ui, sans-serif;
      --display: "Unbounded", "Inter", sans-serif;
    }

    * { box-sizing: border-box; }

    html { scroll-behavior: smooth; }

    body {
      margin: 0;
      font-family: var(--font);
      color: var(--ink);
      background: var(--cream);
      line-height: 1.45;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }

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

    .wrap {
      width: min(100% - 1.25rem, var(--max));
      margin-inline: auto;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 0.45rem;
      padding: 0.55rem 0.9rem;
      border-radius: 999px;
      background: linear-gradient(135deg, var(--sun), var(--orange));
      color: #1a1200;
      font-size: 0.72rem;
      font-weight: 900;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      box-shadow: 0 10px 28px rgba(255, 138, 0, 0.28);
    }

    .eyebrow--ghost {
      background: rgba(255, 255, 255, 0.16);
      color: var(--cream);
      box-shadow: none;
      border: 1px solid rgba(255, 255, 255, 0.22);
      backdrop-filter: blur(6px);
    }

    .section-head {
      max-width: 54rem;
      margin: 0 auto 2rem;
      text-align: center;
    }

    /* Slightly more breathing room between blocks (conversion/readability) */
    .section--light,
    .section--dark,
    .section--sky,
    .section--sunset {
      padding-top: clamp(2.6rem, 5vw, 4rem);
      padding-bottom: clamp(2.6rem, 5vw, 4rem);
    }

    .section-head h2 {
      margin: 0.65rem 0 0.55rem;
      font-family: var(--display);
      font-size: clamp(1.9rem, 5vw, 3.2rem);
      line-height: 1.02;
      font-weight: 800;
      letter-spacing: -0.03em;
      text-transform: uppercase;
    }

    .section-head p {
      margin: 0;
      color: var(--muted);
      font-size: clamp(0.98rem, 2.4vw, 1.1rem);
    }

    .section--dark .section-head p { color: var(--muted-on-dark); }

    /* Top strip */
    .top-strip {
      background: linear-gradient(90deg, var(--fire), var(--orange) 50%, var(--sun));
      color: #1a1200;
    }

    .top-strip-inner {
      display: flex;
      flex-wrap: wrap;
      gap: 0.75rem 1.3rem;
      justify-content: center;
      align-items: center;
      padding: 0.55rem 0;
      font-size: 0.74rem;
      font-weight: 800;
      letter-spacing: 0.04em;
      text-transform: uppercase;
    }

    .top-strip-inner span::before {
      content: "✦";
      margin-right: 0.45rem;
      color: #8a4500;
    }

    /* Header */
    .header {
      position: sticky;
      top: 0;
      z-index: 30;
      background: rgba(255, 246, 230, 0.92);
      backdrop-filter: blur(14px);
      border-bottom: 1px solid rgba(18, 11, 5, 0.08);
    }

    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      padding: 0.85rem 0;
    }

    .logo {
      font-family: var(--display);
      font-weight: 900;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      white-space: nowrap;
      font-size: 1.05rem;
    }

    .logo span { color: var(--orange); }

    .nav {
      display: none;
      gap: 1.2rem;
      color: var(--ink-soft);
      font-size: 0.9rem;
      font-weight: 700;
    }

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

    .header-cta {
      display: flex;
      align-items: center;
      gap: 0.45rem;
      flex-wrap: wrap;
      justify-content: flex-end;
    }

    .phone-link {
      color: var(--fire);
      font-size: 0.82rem;
      font-weight: 900;
      white-space: nowrap;
    }

    .phone-link:hover { color: var(--orange); }

    /* Buttons */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      min-height: 3rem;
      padding: 0.9rem 1.15rem;
      border-radius: 999px;
      border: 0;
      cursor: pointer;
      font-weight: 800;
      letter-spacing: 0.01em;
      transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
    }

    .btn:hover { transform: translateY(-2px); filter: brightness(1.04); }
    .btn:active { transform: translateY(0); }

    .btn-primary {
      color: #1a1200;
      background: linear-gradient(135deg, var(--sun), var(--orange) 55%, var(--fire));
      box-shadow: 0 16px 40px rgba(255, 95, 31, 0.35);
    }

    .btn-telegram {
      color: #fff;
      background: linear-gradient(135deg, #50c7f7, #2ba7e0 70%, #1a82c5);
      box-shadow: 0 16px 38px rgba(43, 167, 224, 0.32);
    }

    .btn-whatsapp {
      color: #fff;
      background: linear-gradient(135deg, #5be48a, #27c75d 70%, #17a84b);
      box-shadow: 0 16px 38px rgba(39, 199, 93, 0.32);
    }

    .btn-dark {
      color: var(--ink);
      background: #fff3db;
      border: 1px solid rgba(18, 11, 5, 0.12);
    }

    .btn-dark:hover { background: #ffe7b8; }

    .btn-ghost {
      color: #fff;
      background: rgba(255, 255, 255, 0.14);
      border: 1px solid rgba(255, 255, 255, 0.26);
      backdrop-filter: blur(8px);
    }

    /* Secondary / compact modifier — для второстепенных CTA (Telegram, WhatsApp, Phone).
       Главная кнопка ("Подобрать отдых" → бот) остаётся крупной и яркой. */
    .btn-sm {
      min-height: 2.4rem;
      padding: 0.55rem 0.95rem;
      font-size: 0.86rem;
      font-weight: 700;
      box-shadow: none;
      opacity: 0.92;
    }
    .btn-sm:hover { opacity: 1; }
    .btn-outline {
      background: transparent;
      border: 1.5px solid currentColor;
      box-shadow: none;
    }
    .btn-outline.btn-telegram { color: #2ba7e0; border-color: #2ba7e0; background: transparent; }
    .btn-outline.btn-whatsapp { color: #1fa651; border-color: #1fa651; background: transparent; }
    .btn-outline.btn-telegram:hover { background: rgba(43, 167, 224, 0.08); }
    .btn-outline.btn-whatsapp:hover { background: rgba(31, 166, 81, 0.08); }
    .btn-xl {
      min-height: 3.6rem;
      padding: 1.1rem 1.6rem;
      font-size: 1.1rem;
      letter-spacing: 0.02em;
    }

    .hero-secondary {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: center;
      gap: 0.6rem 1rem;
      margin-top: 1.1rem;
    }
    .hero-secondary .hero-phone {
      margin: 0;
      font-size: 0.95rem;
    }
    .cta-band-secondary {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 0.5rem;
      margin-top: 0.9rem;
    }

    /* Hero */
    .hero {
      position: relative;
      overflow: hidden;
      padding: 1.4rem 0 2.2rem;
    }

    .hero-shell {
      position: relative;
      min-height: min(88vh, 860px);
      padding: 0.9rem;
      border-radius: 32px;
      overflow: hidden;
      background: #0b1a2b;
      box-shadow: var(--shadow-dark);
    }

    .hero-stage {
      position: absolute;
      inset: 0;
      display: grid;
      grid-template-columns: repeat(12, 1fr);
      grid-template-rows: repeat(10, 1fr);
      gap: 0.3rem;
      padding: 0.3rem;
    }

    .hero-tile {
      position: relative;
      border-radius: 20px;
      overflow: hidden;
    }

    .hero-tile img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transform: scale(1.1);
      animation: heroDrift 18s ease-in-out infinite alternate;
      filter: saturate(1.15) contrast(1.05);
    }

    .hero-tile::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(255, 170, 40, 0.05), rgba(10, 20, 30, 0.15));
    }

    .tile-1 { grid-column: 1 / 5;  grid-row: 1 / 6; }
    .tile-2 { grid-column: 5 / 9;  grid-row: 1 / 4; }
    .tile-3 { grid-column: 9 / 13; grid-row: 1 / 6; }
    .tile-4 { grid-column: 1 / 4;  grid-row: 6 / 11; }
    .tile-5 { grid-column: 4 / 8;  grid-row: 4 / 11; }
    .tile-6 { grid-column: 8 / 13; grid-row: 6 / 11; }

    .hero-shade {
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse at 50% 40%, rgba(11, 26, 43, 0) 0%, rgba(11, 26, 43, 0.38) 45%, rgba(11, 26, 43, 0.82) 100%),
        linear-gradient(180deg, rgba(11, 26, 43, 0.15) 0%, rgba(11, 26, 43, 0.55) 80%),
        radial-gradient(circle at 18% 20%, rgba(255, 194, 51, 0.28), transparent 45%),
        radial-gradient(circle at 82% 80%, rgba(43, 167, 224, 0.28), transparent 50%);
    }

    .hero-content {
      position: relative;
      z-index: 2;
      min-height: min(88vh, 860px);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: #fff;
      padding: 2.2rem 0.6rem;
    }

    .hero h1 {
      margin: 1rem 0 0.9rem;
      font-family: var(--display);
      font-size: clamp(2.3rem, 7vw, 5.5rem);
      line-height: 0.96;
      font-weight: 900;
      letter-spacing: -0.04em;
      text-transform: uppercase;
      max-width: 18ch;
      text-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
    }

    .hero h1 .fire {
      background: linear-gradient(135deg, var(--sun), var(--fire));
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }

    .hero p {
      max-width: 40rem;
      margin: 0 auto 1.2rem;
      color: #f5ecd9;
      font-size: clamp(1rem, 2.6vw, 1.2rem);
      font-weight: 500;
    }

    .hero-chip-row {
      display: flex;
      flex-wrap: wrap;
      gap: 0.55rem;
      justify-content: center;
      margin-bottom: 1.4rem;
    }

    /* Hero chips removed (reduce noise), keep styles for future reuse */

    .hero-chip {
      padding: 0.5rem 0.8rem;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.14);
      border: 1px solid rgba(255, 255, 255, 0.22);
      color: #fff;
      font-weight: 700;
      font-size: 0.82rem;
      backdrop-filter: blur(10px);
    }

    .hero-chip.is-sun {
      background: linear-gradient(135deg, rgba(255, 194, 51, 0.4), rgba(255, 138, 0, 0.3));
      border-color: rgba(255, 194, 51, 0.6);
    }

    .hero-chip.is-sea {
      background: linear-gradient(135deg, rgba(80, 199, 247, 0.35), rgba(43, 167, 224, 0.35));
      border-color: rgba(80, 199, 247, 0.55);
    }

    .hero-urgency {
      display: flex;
      flex-wrap: wrap;
      gap: 0.6rem;
      justify-content: center;
      margin-bottom: 1.4rem;
    }

    .urgency-pill {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      padding: 0.6rem 0.85rem;
      border-radius: 999px;
      background: rgba(255, 246, 230, 0.92);
      color: var(--ink);
      font-weight: 800;
      font-size: 0.82rem;
      box-shadow: 0 14px 32px rgba(0, 0, 0, 0.25);
    }

    .urgency-pill .dot {
      width: 0.55rem;
      height: 0.55rem;
      border-radius: 50%;
      background: var(--fire);
      box-shadow: 0 0 0 0 rgba(255, 95, 31, 0.6);
      animation: pulseDot 1.6s ease-out infinite;
    }

    .hero-actions {
      display: flex;
      flex-direction: column;
      gap: 0.7rem;
      width: min(100%, 28rem);
      margin: 0 auto 0.85rem;
    }

    .hero-phone {
      font-weight: 800;
      color: var(--sun);
    }

    /* Sections */
    section { padding: 4rem 0; position: relative; }

    .section--light {
      background: linear-gradient(180deg, var(--cream) 0%, #ffeec9 100%);
    }

    .section--sky {
      background:
        radial-gradient(circle at 15% 10%, rgba(255, 194, 51, 0.18), transparent 45%),
        linear-gradient(180deg, #cdeefc 0%, #95d7ef 100%);
      color: var(--ink);
    }

    .section--sky .section-head p { color: rgba(10, 40, 65, 0.7); }

    .section--dark {
      background: linear-gradient(180deg, #0d1828 0%, #17263d 100%);
      color: #fff;
    }

    .section--sunset {
      background:
        radial-gradient(circle at 20% 20%, rgba(255, 138, 0, 0.35), transparent 55%),
        radial-gradient(circle at 80% 80%, rgba(43, 167, 224, 0.35), transparent 55%),
        linear-gradient(135deg, #3a1e6b 0%, #b8396f 50%, #ff8a00 100%);
      color: #fff;
    }

    .section-divider-top,
    .section-divider-bottom {
      position: absolute;
      left: 0;
      right: 0;
      height: 1.8rem;
      pointer-events: none;
    }

    .section-divider-top { top: -1px; background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), transparent); }
    .section-divider-bottom { bottom: -1px; background: linear-gradient(0deg, rgba(0, 0, 0, 0.08), transparent); }

    /* Reveal animations */
    .reveal {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.9s cubic-bezier(0.22, 0.8, 0.3, 1), transform 0.9s cubic-bezier(0.22, 0.8, 0.3, 1);
    }

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

    .reveal--delay-1 { transition-delay: 0.08s; }
    .reveal--delay-2 { transition-delay: 0.16s; }
    .reveal--delay-3 { transition-delay: 0.24s; }

    @media (prefers-reduced-motion: reduce) {
      .reveal { opacity: 1; transform: none; }
    }

    /* Services */
    .services-grid {
      display: grid;
      gap: 1.1rem;
      grid-template-columns: 1fr;
    }

    .service-card {
      position: relative;
      display: block;
      min-height: 26rem;
      overflow: hidden;
      border-radius: 26px;
      background: #1a1208;
      box-shadow: 0 24px 60px rgba(20, 15, 5, 0.25);
      isolation: isolate;
      transition: transform 0.35s ease, box-shadow 0.35s ease;
    }

    .service-card:hover {
      transform: translateY(-6px) scale(1.01);
      box-shadow: 0 28px 70px rgba(255, 138, 0, 0.35);
    }

    .service-media {
      position: absolute;
      inset: 0;
    }

    .service-media img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      transform: scale(1.08);
      transition: transform 1.2s ease;
      filter: saturate(1.15);
    }

    .service-card:hover .service-media img { transform: scale(1.16); }

    .service-media .layer-a { animation: panA 14s ease-in-out infinite alternate; }

    .service-media .layer-b {
      opacity: 0;
      animation: panB 16s ease-in-out infinite alternate, fadeB 10s ease-in-out infinite;
    }

    .service-media::after {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(180deg, rgba(10, 12, 18, 0.38) 0%, rgba(10, 12, 18, 0.5) 45%, rgba(10, 8, 4, 0.92) 100%),
        radial-gradient(ellipse at 80% 12%, rgba(255, 194, 51, 0.16), transparent 55%);
    }

    .service-content {
      position: relative;
      z-index: 2;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      height: 100%;
      padding: 1.2rem;
      color: #fff;
    }

    .offers-grid .service-card { min-height: 22.5rem; }

    .service-badge {
      align-self: flex-start;
      padding: 0.45rem 0.65rem;
      border-radius: 999px;
      background: rgba(255, 246, 230, 0.18);
      border: 1px solid rgba(255, 246, 230, 0.32);
      color: #fff;
      font-size: 0.7rem;
      font-weight: 900;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .service-title {
      margin: 0.95rem 0 0.55rem;
      font-family: var(--display);
      font-size: 1.55rem;
      line-height: 1.02;
      font-weight: 800;
      letter-spacing: -0.03em;
      text-transform: uppercase;
      text-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
    }

    .service-meta {
      margin: 0 0 0.9rem;
      color: #fff4dc;
      font-weight: 600;
      font-size: 0.96rem;
    }

    .service-list {
      margin: 0 0 1rem;
      padding: 0;
      list-style: none;
      display: grid;
      gap: 0.38rem;
      color: #fff4dc;
      font-size: 0.92rem;
    }

    .service-list li::before {
      content: "•";
      color: var(--sun);
      margin-right: 0.45rem;
      font-weight: 900;
    }

    .service-foot {
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 0.8rem;
    }

    .service-price {
      font-family: var(--display);
      font-size: 1.22rem;
      font-weight: 800;
      color: var(--sun);
      line-height: 1.12;
    }

    .service-cta {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 2.9rem;
      padding: 0.8rem 1.1rem;
      border-radius: 999px;
      background: linear-gradient(135deg, var(--sun), var(--fire));
      color: #1a1200;
      font-weight: 900;
      box-shadow: 0 14px 32px rgba(255, 95, 31, 0.4);
      white-space: nowrap;
      transition: transform 0.2s ease;
    }

    .service-card:hover .service-cta { transform: scale(1.04); }

    /* Mobile conversion: compact cards + fewer lines */
    .mobile-filter { display: none; }

    @media (max-width: 759px) {
      .mobile-filter {
        display: flex;
        gap: 0.5rem;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding: 0.15rem 0 0.75rem;
        margin: -0.25rem 0 0.35rem;
      }

      .mobile-filter::-webkit-scrollbar { display: none; }

      .mobile-filter-btn {
        appearance: none;
        border: 1px solid rgba(18, 11, 5, 0.15);
        background: rgba(255, 255, 255, 0.85);
        color: var(--ink);
        font-weight: 900;
        font-size: 0.85rem;
        border-radius: 999px;
        padding: 0.55rem 0.85rem;
        white-space: nowrap;
        box-shadow: var(--shadow-soft);
      }

      .mobile-filter-btn.is-active {
        background: linear-gradient(135deg, var(--sun), var(--orange));
        border-color: rgba(255, 138, 0, 0.35);
      }

      .service-card {
        min-height: 18.5rem;
        border-radius: 22px;
      }

      .service-content { padding: 1rem; }
      .service-title { font-size: 1.35rem; }

      /* Show only: title + 2 points + price + CTA */
      .service-meta { display: none; }
      .service-list li:nth-child(n+3) { display: none; }
      .service-list { margin: 0 0 0.9rem; }

      .service-price { font-size: 1.25rem; }
      .service-cta {
        min-height: 3.2rem;
        padding: 0.95rem 1.2rem;
        font-size: 1rem;
      }
    }

    /* Form */
    .form-box {
      display: grid;
      gap: 1.15rem;
      padding: 1.35rem;
      border-radius: 28px;
      background:
        radial-gradient(circle at top right, rgba(255, 194, 51, 0.22), transparent 45%),
        linear-gradient(180deg, #ffffff 0%, #fff4dc 100%);
      border: 1px solid rgba(18, 11, 5, 0.08);
      box-shadow: var(--shadow-soft);
    }

    .form-side { display: grid; gap: 1rem; }

    .benefit-stack { display: grid; gap: 0.7rem; }

    .benefit-row {
      padding: 0.95rem 1rem;
      border-radius: 18px;
      background: #fff;
      border: 1px solid rgba(18, 11, 5, 0.08);
      transition: transform 0.25s ease, box-shadow 0.25s ease;
    }

    .benefit-row:hover {
      transform: translateY(-2px);
      box-shadow: 0 14px 30px rgba(255, 138, 0, 0.18);
    }

    .benefit-row strong {
      display: block;
      margin-bottom: 0.2rem;
      font-weight: 800;
    }

    .benefit-row span { color: var(--muted); font-size: 0.9rem; }

    .lead-form { display: grid; gap: 0.85rem; }

    .field label {
      display: block;
      margin-bottom: 0.35rem;
      color: var(--muted);
      font-size: 0.78rem;
      letter-spacing: 0.08em;
      font-weight: 800;
      text-transform: uppercase;
    }

    .field input,
    .field select {
      width: 100%;
      min-height: 3.35rem;
      border-radius: 14px;
      border: 1px solid rgba(18, 11, 5, 0.12);
      background: #fff;
      color: var(--ink);
      padding: 0.9rem 1rem;
      outline: none;
      transition: border-color 0.2s ease, box-shadow 0.2s ease;
    }

    .field input:focus,
    .field select:focus {
      border-color: var(--orange);
      box-shadow: 0 0 0 4px rgba(255, 138, 0, 0.18);
    }

    .form-actions { display: grid; gap: 0.7rem; margin-top: 0.2rem; }

    .messenger-row { display: grid; gap: 0.7rem; grid-template-columns: 1fr; }

    /* Steps */
    .steps-grid,
    .proof-grid,
    .reviews-grid {
      display: grid;
      gap: 1rem;
      grid-template-columns: 1fr;
    }

    .step-card,
    .proof-card,
    .review-card {
      position: relative;
      padding: 1.3rem;
      border-radius: 22px;
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid rgba(255, 255, 255, 0.12);
      color: #fff;
      box-shadow: 0 20px 44px rgba(0, 0, 0, 0.24);
      transition: transform 0.28s ease, background 0.28s ease, box-shadow 0.28s ease;
    }

    .step-card:hover,
    .proof-card:hover,
    .review-card:hover {
      transform: translateY(-4px);
      background: rgba(255, 255, 255, 0.12);
      box-shadow: 0 26px 54px rgba(255, 194, 51, 0.25);
    }

    .step-no {
      display: inline-grid;
      place-items: center;
      width: 3rem;
      height: 3rem;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--sun), var(--orange));
      color: #1a1200;
      font-family: var(--display);
      font-weight: 900;
      font-size: 1.2rem;
      margin-bottom: 0.85rem;
      box-shadow: 0 14px 30px rgba(255, 138, 0, 0.35);
    }

    .step-card h3,
    .proof-card h3 {
      margin: 0 0 0.45rem;
      font-family: var(--display);
      font-size: 1.2rem;
      font-weight: 800;
      letter-spacing: -0.02em;
    }

    .step-card p,
    .proof-card p,
    .review-card p {
      margin: 0;
      color: rgba(255, 255, 255, 0.82);
    }

    .review-card {
      background: rgba(255, 255, 255, 0.88);
      color: var(--ink);
      border: 1px solid rgba(18, 11, 5, 0.08);
    }

    .review-card:hover {
      background: #fff;
      box-shadow: 0 26px 54px rgba(255, 138, 0, 0.18);
    }

    .review-card p { color: var(--muted); }

    .review-stars {
      color: var(--orange);
      letter-spacing: 0.16em;
      margin-bottom: 0.55rem;
    }

    .review-author { font-weight: 800; }

    /* Extras */
    .extras-wrap {
      display: flex;
      flex-wrap: wrap;
      gap: 0.7rem;
      justify-content: center;
    }

    .extra-pill {
      padding: 0.8rem 1rem;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.9);
      border: 1px solid rgba(18, 11, 5, 0.1);
      color: var(--ink);
      font-weight: 800;
      transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    }

    .extra-pill:hover {
      transform: translateY(-3px);
      background: #fff;
      box-shadow: 0 14px 30px rgba(255, 138, 0, 0.25);
    }

    /* Team gallery — ровная сетка 3+2 без «дыр» (6 колонок: верх 3×2, низ 2×3) */
    .team-grid {
      display: grid;
      gap: 0.85rem;
      grid-template-columns: 1fr;
      grid-auto-rows: minmax(220px, 52vw);
    }

    @media (min-width: 720px) {
      .team-grid {
        grid-template-columns: repeat(6, minmax(0, 1fr));
        grid-auto-rows: clamp(200px, 24vw, 260px);
      }
      .team-item { grid-column: span 2; }
      .team-item:nth-child(4),
      .team-item:nth-child(5) { grid-column: span 3; }
    }

    .team-item {
      position: relative;
      overflow: hidden;
      border-radius: var(--radius);
      box-shadow: var(--shadow-soft);
      background: #1a1308;
      min-height: 220px;
    }

    .team-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      transform: scale(1.04);
      transition: transform 1.1s cubic-bezier(0.22, 0.61, 0.36, 1);
      display: block;
    }

    .team-item:hover img { transform: scale(1.12); }

    .team-item::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(0, 0, 0, 0) 45%, rgba(7, 5, 2, 0.88) 100%);
      pointer-events: none;
    }

    .team-caption {
      position: absolute;
      left: 1rem;
      right: 1rem;
      bottom: 0.9rem;
      z-index: 2;
      color: #fff;
      font-weight: 700;
      font-size: 0.98rem;
      letter-spacing: 0.01em;
      text-shadow: 0 2px 16px rgba(0, 0, 0, 0.6);
    }

    .team-caption small {
      display: block;
      font-weight: 500;
      font-size: 0.78rem;
      opacity: 0.82;
      margin-top: 0.2rem;
      letter-spacing: 0.06em;
      text-transform: uppercase;
    }

    .team-badge-live {
      position: absolute;
      top: 0.9rem;
      left: 0.9rem;
      z-index: 2;
      background: rgba(255, 90, 30, 0.95);
      color: #fff;
      font-weight: 800;
      font-size: 0.72rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      padding: 0.38rem 0.7rem;
      border-radius: 999px;
      box-shadow: 0 6px 18px rgba(255, 90, 30, 0.4);
    }

    .team-badge-live::before {
      content: "";
      display: inline-block;
      width: 7px;
      height: 7px;
      background: #fff;
      border-radius: 50%;
      margin-right: 0.4rem;
      transform: translateY(-1px);
      animation: pulseDot 1.4s ease-in-out infinite;
    }

    /* Client gallery — плотная сетка без wide, одинаковые ячейки */
    .gallery-grid {
      display: grid;
      gap: 0.85rem;
      grid-template-columns: 1fr;
    }

    .gallery-item {
      position: relative;
      display: block;
      overflow: hidden;
      border-radius: 18px;
      background: #0b1a2b;
      aspect-ratio: 4 / 3;
      box-shadow: 0 18px 38px rgba(0, 0, 0, 0.3);
      text-decoration: none;
      color: inherit;
    }

    .gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      transform: scale(1.05);
      transition: transform 0.9s ease, filter 0.4s ease;
      filter: saturate(1.18);
    }

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

    .gallery-item span {
      position: absolute;
      bottom: 0.7rem;
      left: 0.8rem;
      right: 0.8rem;
      z-index: 2;
      color: #fff;
      font-weight: 800;
      font-size: 0.78rem;
      letter-spacing: 0.02em;
      text-shadow: 0 4px 12px rgba(0, 0, 0, 0.45);
    }

    .gallery-item:hover img { transform: scale(1.12); }

    /* Click affordance for gallery cards */
    .gallery-item { cursor: pointer; }

    /* Sticky CTA (mobile) */
    .sticky-cta { display: none; }
    @media (max-width: 759px) {
      body { padding-bottom: 5.25rem; }
      .sticky-cta {
        display: block;
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 50;
        padding: 0.65rem 0.85rem calc(0.65rem + env(safe-area-inset-bottom));
        background: rgba(13, 24, 40, 0.78);
        backdrop-filter: blur(10px);
        border-top: 1px solid rgba(255, 255, 255, 0.12);
      }
      .sticky-cta-inner {
        max-width: var(--max);
        margin: 0 auto;
        display: flex;
        gap: 0.75rem;
        align-items: center;
        justify-content: space-between;
      }
      .sticky-cta-text {
        display: grid;
        gap: 0.15rem;
        color: #fff;
        line-height: 1.05;
      }
      .sticky-cta-text strong { font-weight: 950; letter-spacing: -0.02em; }
      .sticky-cta-text span { font-size: 0.82rem; color: rgba(255, 246, 230, 0.85); font-weight: 700; }
      .sticky-cta-btn {
        padding: 0.95rem 1.15rem;
        min-height: 3.15rem;
        font-size: 1rem;
        white-space: nowrap;
      }
    }

    /* Lead form modal (form-first) */
    .lead-modal {
      position: fixed;
      inset: 0;
      display: none;
      z-index: 90;
      padding: 1rem;
      background: rgba(0, 0, 0, 0.55);
      backdrop-filter: blur(6px);
    }

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

    .lead-modal-card {
      width: min(100%, 40rem);
      border-radius: 22px;
      background: rgba(255, 255, 255, 0.98);
      border: 1px solid rgba(18, 11, 5, 0.08);
      box-shadow: 0 30px 80px rgba(0,0,0,0.35);
      overflow: hidden;
    }

    .lead-modal-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      padding: 1rem 1.1rem;
      background: linear-gradient(135deg, rgba(255, 194, 51, 0.22), rgba(255, 95, 31, 0.14));
      border-bottom: 1px solid rgba(18, 11, 5, 0.08);
    }

    .lead-modal-title {
      margin: 0;
      font-family: var(--display);
      font-weight: 900;
      letter-spacing: -0.03em;
      text-transform: uppercase;
      font-size: 1.25rem;
      color: #1a1200;
    }

    .lead-modal-close {
      appearance: none;
      border: 0;
      background: rgba(18, 11, 5, 0.08);
      color: #1a1200;
      border-radius: 12px;
      width: 40px;
      height: 40px;
      font-size: 1.25rem;
      font-weight: 900;
      cursor: pointer;
    }

    .lead-modal-body { padding: 1.1rem; }

    .lead-modal-note {
      margin: 0 0 0.9rem;
      color: rgba(18, 11, 5, 0.65);
      font-weight: 700;
      text-align: center;
    }

    .lead-modal-error {
      display: none;
      margin: 0 0 0.85rem;
      padding: 0.85rem 0.95rem;
      border-radius: 16px;
      background: rgba(255, 95, 31, 0.12);
      border: 1px solid rgba(255, 95, 31, 0.22);
      color: #3a1a06;
      font-weight: 800;
    }

    .lead-modal-error.is-visible { display: block; }

    .phone-row {
      display: grid;
      grid-template-columns: 5.2rem 1fr;
      gap: 0.65rem;
      align-items: center;
    }

    .phone-row input#phoneCountry {
      height: 3.15rem;
      border-radius: 16px;
      border: 1px solid rgba(18, 11, 5, 0.12);
      background: rgba(255, 255, 255, 0.92);
      padding: 0 0.75rem;
      font-weight: 900;
      color: var(--ink);
      box-shadow: var(--shadow-soft);
      text-align: center;
    }

    @media (max-width: 759px) {
      .phone-row { grid-template-columns: 4.8rem 1fr; gap: 0.55rem; }
      .phone-row input#phoneCountry { height: 3.05rem; border-radius: 14px; }
    }

    @media (max-width: 759px) {
      .lead-modal { padding: 0.75rem; }
      .lead-modal-body { padding: 0.95rem; }
      .lead-modal-title { font-size: 1.15rem; }
    }

    /* Доп. ряд «атмосферы» — 2×3 на десктопе, те же карточки, что у галереи */
    .gallery-vibe-grid {
      display: grid;
      gap: 0.85rem;
      grid-template-columns: 1fr;
      margin-top: 1rem;
    }

    @media (min-width: 720px) {
      .gallery-vibe-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    }

    /* Секция «Абхазия» */
    .section-abkhazia {
      padding-top: 3.25rem;
      padding-bottom: 3.25rem;
    }

    .section-head--abkhazia h2 {
      font-size: clamp(1.95rem, 4.5vw, 2.85rem);
    }

    .abkhazia-services-row {
      display: grid;
      gap: 1.1rem;
      grid-template-columns: 1fr;
      align-items: stretch;
      margin-top: 1rem;
    }

    @media (min-width: 900px) {
      .abkhazia-services-row { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    }

    .abkhazia-photo-grid {
      display: grid;
      gap: 0.85rem;
      grid-template-columns: 1fr;
      margin-top: 2rem;
    }

    @media (min-width: 720px) {
      .abkhazia-photo-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    }

    .abkhazia-photo-grid .gallery-item { box-shadow: 0 18px 38px rgba(0, 0, 0, 0.22); }

    .abkhazia-photo-cap {
      margin: 2rem 0 0.65rem;
    }

    /* FAQ cards (open, no accordion) */
    .faq-grid {
      display: grid;
      gap: 0.85rem;
      grid-template-columns: 1fr;
      max-width: 62rem;
      margin: 0 auto;
    }

    .faq-card {
      display: flex;
      gap: 1rem;
      align-items: flex-start;
      padding: 1.2rem 1.25rem;
      border-radius: 20px;
      background: rgba(255, 255, 255, 0.07);
      border: 1px solid rgba(255, 255, 255, 0.13);
      transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
    }

    .faq-card:hover {
      background: rgba(255, 255, 255, 0.13);
      transform: translateY(-3px);
      box-shadow: 0 20px 44px rgba(255, 194, 51, 0.18);
    }

    .faq-icon {
      font-size: 1.65rem;
      line-height: 1;
      flex-shrink: 0;
      margin-top: 0.05rem;
    }

    .faq-q {
      display: block;
      font-weight: 800;
      font-size: 1rem;
      color: #fff;
      margin: 0 0 0.35rem;
    }

    .faq-a {
      color: rgba(255, 255, 255, 0.72);
      font-size: 0.92rem;
      line-height: 1.5;
      margin: 0;
    }

    /* SEO box */
    .seo-box {
      padding: 1.4rem;
      border-radius: 22px;
      background: rgba(255, 255, 255, 0.85);
      border: 1px solid rgba(18, 11, 5, 0.08);
      box-shadow: var(--shadow-soft);
      color: var(--ink-soft);
    }

    .seo-box p { margin: 0 0 0.8rem; }
    .seo-box p:last-child { margin-bottom: 0; }

    .seo-links-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(11.5rem, 1fr));
      gap: 0.65rem;
      margin-top: 1.1rem;
    }

    .seo-links-grid a {
      display: flex;
      align-items: center;
      min-height: 3rem;
      padding: 0.75rem 0.9rem;
      border-radius: 8px;
      background: #fff;
      border: 1px solid rgba(18, 11, 5, 0.1);
      color: var(--ink);
      font-weight: 900;
      text-decoration: none;
      box-shadow: 0 10px 24px rgba(15, 25, 40, 0.06);
    }

    /* CTA band */
    .cta-band {
      position: relative;
      padding: 3rem 0;
      text-align: center;
      color: #1a1200;
      background: linear-gradient(135deg, var(--sun) 0%, var(--orange) 50%, var(--fire) 100%);
      overflow: hidden;
    }

    .cta-band::before,
    .cta-band::after {
      content: "";
      position: absolute;
      border-radius: 50%;
      filter: blur(60px);
      opacity: 0.55;
    }

    .cta-band::before {
      width: 22rem; height: 22rem;
      background: rgba(255, 246, 230, 0.6);
      left: -6rem; top: -10rem;
    }

    .cta-band::after {
      width: 20rem; height: 20rem;
      background: rgba(43, 167, 224, 0.35);
      right: -5rem; bottom: -9rem;
    }

    .cta-band-inner { position: relative; z-index: 2; }

    .cta-band h2 {
      margin: 0 0 0.6rem;
      font-family: var(--display);
      font-size: clamp(1.8rem, 5vw, 2.8rem);
      letter-spacing: -0.03em;
      text-transform: uppercase;
    }

    .cta-band p {
      margin: 0 auto 1.4rem;
      max-width: 38rem;
      font-weight: 600;
    }

    .cta-band-actions {
      display: inline-flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 0.6rem;
    }

    /* Footer */
    .footer {
      padding: 2rem 0 3rem;
      color: rgba(255, 246, 230, 0.75);
      text-align: center;
      font-size: 0.92rem;
      background: #0d1828;
    }

    .footer-links {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 0.7rem 1rem;
      margin-bottom: 0.8rem;
    }

    .footer-links a:first-child { color: var(--sun); font-weight: 900; }
    .footer-links a { color: #fff; }

    /* Pulse helpers */
    .request-pulse { animation: pulseBox 1.2s ease; }

    @keyframes pulseBox {
      0% { box-shadow: 0 0 0 0 rgba(255, 138, 0, 0.55); }
      100% { box-shadow: 0 0 0 22px rgba(255, 138, 0, 0); }
    }

    @keyframes pulseDot {
      0% { box-shadow: 0 0 0 0 rgba(255, 95, 31, 0.6); }
      70% { box-shadow: 0 0 0 10px rgba(255, 95, 31, 0); }
      100% { box-shadow: 0 0 0 0 rgba(255, 95, 31, 0); }
    }

    @keyframes heroDrift {
      from { transform: scale(1.08) translate3d(0, 0, 0); }
      to   { transform: scale(1.18) translate3d(0, -12px, 0); }
    }

    @keyframes panA {
      from { transform: scale(1.08) translate3d(0, 0, 0); }
      to   { transform: scale(1.18) translate3d(-8px, -12px, 0); }
    }

    @keyframes panB {
      from { transform: scale(1.12) translate3d(6px, 10px, 0); }
      to   { transform: scale(1.2) translate3d(-10px, -6px, 0); }
    }

    @keyframes fadeB {
      0%, 30% { opacity: 0; }
      50%, 85% { opacity: 1; }
      100% { opacity: 0; }
    }

    /* Responsive */
    @media (min-width: 640px) {
      .gallery-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    }

    @media (min-width: 760px) {
      .hero-actions,
      .messenger-row { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .services-grid,
      .steps-grid,
      .proof-grid,
      .reviews-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .form-box { grid-template-columns: 0.95fr 1.05fr; align-items: start; }
      .faq-grid { grid-template-columns: repeat(2, 1fr); }
    }

    @media (min-width: 1040px) {
      .nav { display: flex; }
      .services-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
      .steps-grid,
      .proof-grid,
      .reviews-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
      .gallery-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
      .hero-actions { width: auto; }
    }

    @media (max-width: 759px) {
      .header-inner {
        flex-wrap: wrap;
        align-items: flex-start;
        gap: 0.65rem;
      }

      .top-strip-inner {
        gap: 0.35rem 0.75rem;
        font-size: 0.66rem;
      }
      .top-strip-inner span:nth-child(2) { display: none; }

      .logo { font-size: 0.96rem; }

      .header-cta {
        width: 100%;
        justify-content: flex-start;
        flex-wrap: nowrap;
      }

      .header-cta [data-telegram] { display: none; }
      .header-cta .btn-primary {
        width: min(13.5rem, calc(100% - 9.5rem));
        min-width: 0;
        padding-inline: 0.75rem;
        font-size: 0.82rem;
        white-space: nowrap;
      }

      .hero-shell { min-height: auto; border-radius: 24px; }
      .hero-content {
        width: 100%;
        max-width: 100%;
        min-height: 34rem;
        overflow: hidden;
      }
      .hero h1 {
        width: 100%;
        max-width: 18rem;
        font-size: clamp(1.35rem, 7.2vw, 1.85rem);
        overflow-wrap: anywhere;
      }
      .hero-actions {
        width: 100%;
        max-width: 20rem;
      }
      .hero-actions .btn {
        white-space: normal;
        text-align: center;
      }
      .hero-stage {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(6, 1fr);
      }
      .tile-1 { grid-column: 1 / 2; grid-row: 1 / 3; }
      .tile-2 { grid-column: 2 / 3; grid-row: 1 / 2; }
      .tile-3 { grid-column: 2 / 3; grid-row: 2 / 4; }
      .tile-4 { grid-column: 1 / 2; grid-row: 3 / 5; }
      .tile-5 { grid-column: 1 / 2; grid-row: 5 / 7; }
      .tile-6 { grid-column: 2 / 3; grid-row: 4 / 7; }

      .phone-link { font-size: 0.75rem; }
    }

    .section-tight-top { padding-top: 0; }
    .text-center { text-align: center; }
    .cta-note {
      margin-top: 0.65rem;
      color: rgba(18, 11, 5, 0.68);
      font-weight: 700;
    }
    .spacer-top-md { margin-top: 1.2rem; }
    .btn-phone-ghost {
      background: transparent;
      color: var(--ink);
      border: 1.5px solid rgba(18, 11, 5, 0.2);
      box-shadow: none;
    }
    .btn-phone-ghost--dark {
      color: #fff;
      border-color: rgba(255, 255, 255, 0.35);
    }
    .seo-box--flush { margin: 0; }
    .seo-box-title {
      margin: 0 0 0.35rem;
      font-family: var(--display);
      text-transform: uppercase;
      letter-spacing: -0.03em;
    }
    .seo-box-text { margin: 0; }
    .seo-box--success { margin: 0 0 0.9rem; }
    .is-hidden { display: none; }
    .lead-modal-hint--spaced { margin-top: 0.85rem; }
    .hint-line { margin-top: 0.35rem; }
    .font-heavy { font-weight: 900; }
    .footer-cta-wrap {
      text-align: center;
      margin-bottom: 1.4rem;
    }
