/* ============================================================
       RESET & ROOT
    ============================================================ */
    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
    a { color: inherit; text-decoration: none; }
    :root {
      --black:      #0D0D0F;
      --black-2:    #111113;
      --black-3:    #161618;
      --white:      #F2F2F2;
      --red:        #E10613;
      --red-dim:    rgba(225, 6, 19, 0.15);
      --gray:       #7B7F87;
      --gray-light: #3a3a3e;
      --border:     rgba(242,242,242,0.07);
      --border-red: rgba(225,6,19,0.25);

      --font-display: 'Montserrat', sans-serif;
      --font-body:    'Commissioner', sans-serif;

      --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
      --ease-in:   cubic-bezier(0.7, 0, 0.84, 0);
      --ease-circ: cubic-bezier(0.65, 0, 0.35, 1);
    }

    html {
      font-size: 16px;
      scroll-behavior: smooth;
      background: var(--black);
      color: var(--white);
      cursor: none;
    }

    body {
      font-family: var(--font-body);
      font-weight: 300;
      overflow-x: hidden;
      background: var(--black);
    }

    /* ============================================================
       CUSTOM CURSOR
    ============================================================ */
    #cursor {
      position: fixed;
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: var(--red);
      pointer-events: none;
      z-index: 9999;
      transform: translate(-50%, -50%);
      transition: width 0.3s var(--ease-out), height 0.3s var(--ease-out), background 0.3s;
      mix-blend-mode: normal;
    }
    #cursor-ring {
      position: fixed;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      border: 1px solid rgba(242,242,242,0.4);
      pointer-events: none;
      z-index: 9998;
      transform: translate(-50%, -50%);
      transition: width 0.5s var(--ease-out), height 0.5s var(--ease-out), border-color 0.3s, transform 0.12s;
    }
    #cursor.cursor-hover { width: 6px; height: 6px; background: var(--red); }
    #cursor-ring.cursor-hover { width: 60px; height: 60px; border-color: rgba(225,6,19,0.5); }

    @media (hover: none) { #cursor, #cursor-ring { display: none; } }
    @media (hover: none) { html { cursor: auto; } }

    /* ============================================================
       SCROLL PROGRESS
    ============================================================ */
    #progress {
      position: fixed;
      top: 0; left: 0;
      width: 0%;
      height: 2px;
      background: var(--red);
      z-index: 10000;
      transition: width 0.1s linear;
    }

    /* ============================================================
       HEADER
    ============================================================ */
    header {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 1000;
      padding: 0 48px;
      height: 72px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      transition: background 0.4s var(--ease-circ), border-color 0.4s;
      border-bottom: 1px solid transparent;
      background: rgba(13,13,15,0.85);
      backdrop-filter: blur(16px);
    }
    header.scrolled {
      background: rgba(13,13,15,0.97);
      border-bottom-color: var(--border);
      backdrop-filter: blur(24px);
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 0;
      text-decoration: none;
      cursor: none;
    }
    .logo-img {
      height: 38px;
      width: auto;
      display: block;
    }

    nav {
      display: flex;
      align-items: center;
      gap: 40px;
    }
    nav a {
      font-family: var(--font-body);
      font-weight: 500;
      font-size: 12px;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--gray);
      text-decoration: none;
      cursor: none;
      transition: color 0.25s;
      position: relative;
    }
    nav a::after {
      content: '';
      position: absolute;
      bottom: -4px; left: 0;
      width: 0; height: 1px;
      background: var(--red);
      transition: width 0.3s var(--ease-out);
    }
    nav a:hover { color: var(--white); }
    nav a:hover::after { width: 100%; }

    .header-cta {
      display: flex;
      align-items: center;
      gap: 16px;
    }
    .header-phone {
      font-family: var(--font-body);
      font-weight: 600;
      font-size: 14px;
      letter-spacing: 0.06em;
      color: var(--white);
      text-decoration: none;
      cursor: none;
    }
    .btn-primary {
      font-family: var(--font-body);
      font-weight: 600;
      font-size: 11px;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--black);
      background: var(--red);
      border: none;
      padding: 12px 28px;
      cursor: none;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: background 0.25s, transform 0.15s;
      clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
    }
    .btn-primary:hover { background: #ff0a1a; transform: scale(1.02); }
    .btn-primary:active { transform: scale(0.97); }

    .btn-ghost {
      font-family: var(--font-body);
      font-weight: 500;
      font-size: 11px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--white);
      background: transparent;
      border: 1px solid var(--border);
      padding: 12px 28px;
      cursor: none;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      transition: border-color 0.25s, background 0.25s, transform 0.15s;
      clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
    }
    .btn-ghost:hover { border-color: rgba(242,242,242,0.35); background: rgba(242,242,242,0.05); }

    /* ============================================================
       HERO
    ============================================================ */
    #hero {
      position: relative;
      width: 100%;
      height: 100vh;
      min-height: 700px;
      overflow: hidden;
      display: flex;
      align-items: center;
      padding: 72px 48px 80px;
    }

    #hero-canvas {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
    }

    /* Noise overlay */
    #hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
      background-size: 256px 256px;
      opacity: 0.035;
      pointer-events: none;
      z-index: 1;
    }

    /* Red glow accent */
    #hero::after {
      content: '';
      position: absolute;
      bottom: -20%;
      left: -10%;
      width: 60%;
      height: 60%;
      background: radial-gradient(ellipse at center, rgba(225,6,19,0.12) 0%, transparent 70%);
      pointer-events: none;
      z-index: 1;
    }

    /* Diagonal red line */
    .hero-line {
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 3px;
      background: linear-gradient(90deg, var(--red) 0%, transparent 60%);
      z-index: 3;
    }

    .hero-content {
      position: relative;
      z-index: 4;
      max-width: 900px;
      min-width: 0;
    }

    @keyframes heroIn {
      from { opacity: 0; transform: translateY(24px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    .hero-eyebrow {
      font-family: var(--font-body);
      font-weight: 500;
      font-size: 11px;
      letter-spacing: 0.30em;
      text-transform: uppercase;
      color: var(--red);
      margin-bottom: 20px;
      display: flex;
      align-items: center;
      gap: 16px;
    }
    @media (prefers-reduced-motion: no-preference) {
      .hero-eyebrow { animation: heroIn 0.8s var(--ease-out) 0.15s both; }
    }
    .hero-eyebrow::before {
      content: '';
      width: 40px;
      height: 1px;
      background: var(--red);
      flex-shrink: 0;
    }

    .hero-title {
      font-family: var(--font-display);
      font-weight: 200;
      font-size: clamp(44px, 7.5vw, 120px);
      line-height: 0.90;
      letter-spacing: -0.03em;
      text-transform: none;
      color: var(--white);
      word-break: keep-all;
      overflow-wrap: normal;
      hyphens: none;
    }
    .hero-title span.bold {
      font-weight: 700;
      display: block;
    }
    @media (prefers-reduced-motion: no-preference) {
      .hero-title { animation: heroIn 0.9s var(--ease-out) 0.3s both; }
    }
    .hero-title span.red { color: var(--red); font-weight: 700; }

    .hero-sub {
      font-family: var(--font-body);
      font-weight: 300;
      font-size: clamp(14px, 1.5vw, 18px);
      line-height: 1.6;
      color: var(--gray);
      max-width: 460px;
      margin-top: 28px;
    }
    @media (prefers-reduced-motion: no-preference) {
      .hero-sub { animation: heroIn 0.8s var(--ease-out) 0.5s both; }
    }

    .hero-actions {
      display: flex;
      gap: 16px;
      margin-top: 44px;
    }
    @media (prefers-reduced-motion: no-preference) {
      .hero-actions { animation: heroIn 0.8s var(--ease-out) 0.65s both; }
    }

    /* Stats — vertical right */
    .hero-stats {
      position: absolute;
      right: 90px;
      top: 50%;
      transform: translateY(-50%);
      z-index: 4;
      display: flex;
      flex-direction: column;
      gap: 32px;
    }
    @media (prefers-reduced-motion: no-preference) {
      .hero-stats { animation: heroIn 0.8s var(--ease-out) 0.85s both; }
    }
    .hero-stat {
      text-align: right;
      border-right: 1px solid var(--red);
      padding-right: 20px;
    }
    .hero-stat-num {
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 44px;
      line-height: 1;
      letter-spacing: -0.025em;
      color: var(--white);
    }
    .hero-stat-label {
      font-family: var(--font-body);
      font-weight: 400;
      font-size: 10px;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--gray);
      margin-top: 5px;
    }

    /* Hero loaded state — no longer needed, animations use CSS keyframes */

    /* Scroll indicator */
    .hero-scroll {
      position: absolute;
      left: 50%;
      bottom: 32px;
      transform: translateX(-50%);
      z-index: 4;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
    }
    .scroll-line {
      width: 1px;
      height: 48px;
      background: linear-gradient(to bottom, transparent, var(--gray));
      animation: scrollLine 2s ease-in-out infinite;
    }
    @keyframes scrollLine {
      0%   { opacity: 0; transform: scaleY(0); transform-origin: top; }
      50%  { opacity: 1; transform: scaleY(1); transform-origin: top; }
      100% { opacity: 0; transform: scaleY(1); transform-origin: bottom; }
    }

    /* ============================================================
       TICKER
    ============================================================ */
    .ticker-wrap {
      background: var(--red);
      overflow: hidden;
      padding: 14px 0;
      position: relative;
      z-index: 5;
    }
    .ticker-track {
      display: flex;
      width: max-content;
      animation: ticker 25s linear infinite;
    }
    .ticker-wrap:hover .ticker-track { animation-play-state: paused; }
    @keyframes ticker {
      from { transform: translateX(0); }
      to   { transform: translateX(-50%); }
    }
    .ticker-item {
      font-family: var(--font-body);
      font-weight: 600;
      font-size: 12px;
      letter-spacing: 0.28em;
      text-transform: uppercase;
      color: var(--black);
      padding: 0 36px;
      white-space: nowrap;
      display: flex;
      align-items: center;
      gap: 36px;
    }
    .ticker-item::after {
      content: '·';
      font-size: 18px;
    }

    /* ============================================================
       SECTION UTILITIES
    ============================================================ */
    section {
      padding: 140px 48px;
      position: relative;
    }
    .container {
      max-width: 1280px;
      margin: 0 auto;
    }
    .section-label {
      font-family: var(--font-body);
      font-weight: 400;
      font-size: 10px;
      letter-spacing: 0.38em;
      text-transform: uppercase;
      color: var(--red);
      margin-bottom: 24px;
      display: flex;
      align-items: center;
      gap: 16px;
    }
    .section-label::before {
      content: '';
      width: 32px;
      height: 1px;
      background: var(--red);
    }
    .section-title {
      font-family: var(--font-display);
      font-weight: 200;
      font-size: clamp(40px, 6vw, 80px);
      line-height: 0.90;
      letter-spacing: -0.025em;
      text-transform: none;
      color: var(--white);
    }
    .section-title .t-bold {
      font-weight: 700;
      display: block;
    }
    .section-title .t-thin {
      font-weight: 200;
      display: block;
    }
    .section-title .t-red {
      color: var(--red);
    }
    /* SEO: пробел при копипасте между span-строками */
    .section-title .t-thin::after,
    .section-title .t-bold::after {
      content: " ";
      display: inline;
    }

    /* Reveal animation */
    .reveal {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
    }
    .reveal.visible {
      opacity: 1;
      transform: none;
    }
    .reveal-delay-1 { transition-delay: 0.1s; }
    .reveal-delay-2 { transition-delay: 0.2s; }
    .reveal-delay-3 { transition-delay: 0.3s; }
    .reveal-delay-4 { transition-delay: 0.4s; }
    .reveal-delay-5 { transition-delay: 0.5s; }
    .reveal-delay-6 { transition-delay: 0.6s; }

    /* ============================================================
       SERVICES
    ============================================================ */
    #services {
      background: var(--black);
      border-top: 1px solid var(--border);
    }
    .services-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      margin-bottom: 80px;
      flex-wrap: wrap;
      gap: 32px;
    }
    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1px;
      background: var(--border);
    }
    .service-card {
      background: var(--black-2);
      padding: 48px 40px;
      position: relative;
      overflow: hidden;
      cursor: none;
      transition: background 0.4s;
    }
    .service-card::before {
      content: '';
      position: absolute;
      bottom: 0; left: 0;
      width: 100%;
      height: 2px;
      background: var(--red);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.4s var(--ease-out);
    }
    .service-card:hover { background: var(--black-3); }
    .service-card:hover::before { transform: scaleX(1); }

    .service-number {
      font-family: var(--font-display);
      font-weight: 800;
      font-size: 72px;
      line-height: 1;
      color: rgba(242,242,242,0.04);
      position: absolute;
      top: 24px; right: 32px;
      transition: color 0.4s;
    }
    .service-card:hover .service-number { color: rgba(225,6,19,0.06); }

    .service-icon {
      width: 48px;
      height: 48px;
      margin-bottom: 28px;
    }
    .service-icon svg {
      width: 100%;
      height: 100%;
      stroke: var(--red);
    }

    .service-name {
      font-family: var(--font-display);
      font-weight: 300;
      font-size: 22px;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--white);
      margin-bottom: 16px;
      line-height: 1.1;
    }
    .service-name strong {
      font-weight: 700;
      display: block;
    }
    .service-desc {
      font-family: var(--font-body);
      font-weight: 300;
      font-size: 14px;
      line-height: 1.7;
      color: var(--gray);
      margin-bottom: 28px;
    }
    .service-price {
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 18px;
      letter-spacing: -0.01em;
      color: var(--white);
    }
    .service-price span {
      font-family: var(--font-body);
      font-size: 12px;
      font-weight: 400;
      color: var(--gray);
      margin-left: 4px;
    }
    .service-link {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-family: var(--font-body);
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--red);
      text-decoration: none;
      margin-top: 16px;
      cursor: none;
      transition: gap 0.3s var(--ease-out);
    }
    .service-link:hover { gap: 14px; }
    .service-link svg { width: 16px; height: 16px; }

    /* ============================================================
       ABOUT / PHILOSOPHY
    ============================================================ */
    #about {
      background: var(--black-2);
      border-top: 1px solid var(--border);
      overflow: hidden;
    }
    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 100px;
      align-items: center;
    }
    .about-left .big-quote {
      font-family: var(--font-display);
      font-weight: 200;
      font-size: clamp(32px, 4vw, 52px);
      line-height: 1.0;
      letter-spacing: -0.02em;
      text-transform: none;
      color: var(--white);
      margin-bottom: 40px;
    }
    .about-left .big-quote strong {
      font-weight: 700;
      display: block;
    }
    .about-left .big-quote em {
      color: var(--red);
      font-style: normal;
    }
    .about-left .big-quote .t-thin {
      font-weight: 200;
      display: block;
    }
    .about-left .big-quote strong {
      font-weight: 700;
      display: block;
    }
    .about-left .big-quote .t-red {
      color: var(--red);
    }
    .about-desc {
      font-family: var(--font-body);
      font-weight: 300;
      font-size: 15px;
      line-height: 1.8;
      color: var(--gray);
      max-width: 440px;
      margin-bottom: 48px;
    }

    /* Checklist */
    .about-check-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 16px;
    }
    .about-check-list li {
      display: flex;
      align-items: center;
      gap: 16px;
      font-family: var(--font-body);
      font-weight: 400;
      font-size: 15px;
      letter-spacing: 0.01em;
      text-transform: none;
      color: rgba(242,242,242,0.75);
      line-height: 1.5;
    }
    .about-check-list li::before {
      content: '';
      width: 20px;
      height: 20px;
      border: 1px solid var(--red);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='M4 10l4 4 8-8' stroke='%23E10613' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/16px no-repeat;
    }

    /* Right side visual */
    .about-right {
      position: relative;
    }
    .about-visual {
      background: var(--black-3);
      border: 1px solid var(--border);
      aspect-ratio: 3/2;
      position: relative;
      overflow: hidden;
    }
    .about-visual-inner {
      position: absolute;
      inset: 0;
      background:
        linear-gradient(to top, rgba(13,13,15,0.72) 0%, transparent 55%),
        url('../img/studio_interior.webp') center center / cover no-repeat;
    }
    .about-visual-tag {
      position: absolute;
      bottom: 32px;
      left: 32px;
      right: 32px;
      background: rgba(13,13,15,0.9);
      border: 1px solid var(--border);
      border-left: 2px solid var(--red);
      padding: 24px;
      backdrop-filter: blur(10px);
    }
    .about-visual-tag p {
      font-family: var(--font-body);
      font-size: 13px;
      font-weight: 500;
      letter-spacing: 0.04em;
      color: var(--white);
      line-height: 1.5;
    }
    .about-visual-tag span {
      font-size: 11px;
      color: var(--gray);
      letter-spacing: 0.1em;
      text-transform: uppercase;
      display: block;
      margin-top: 8px;
    }

    /* Red line decor */
    .about-right::after {
      content: '';
      position: absolute;
      top: 0;
      right: -24px;
      width: 160px;
      height: 160px;
      border-top: 1px solid var(--border-red);
      border-right: 1px solid var(--border-red);
    }

    /* ============================================================
       BRANDS MARQUEE
    ============================================================ */
    #brands {
      padding: 60px 0;
      background: var(--black);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      overflow: hidden;
    }
    .brands-track {
      display: flex;
      width: max-content;
      animation: ticker 30s linear infinite;
      gap: 0;
    }
    .brand-item {
      font-family: var(--font-body);
      font-weight: 500;
      font-size: 14px;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--gray-light);
      padding: 0 48px;
      white-space: nowrap;
      transition: color 0.3s;
      cursor: none;
    }
    .brand-item:hover { color: var(--white); }

    /* ============================================================
       PORTFOLIO
    ============================================================ */
    #portfolio {
      background: var(--black);
      border-top: 1px solid var(--border);
    }
    .portfolio-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      margin-bottom: 64px;
      flex-wrap: wrap;
      gap: 24px;
    }

    .portfolio-grid {
      display: grid;
      grid-template-columns: 1.6fr 1fr 1fr;
      grid-template-rows: auto auto;
      gap: 2px;
    }
    .portfolio-item {
      position: relative;
      overflow: hidden;
      background: var(--black-3);
      cursor: none;
    }
    .portfolio-item:first-child {
      grid-row: span 2;
    }
    .portfolio-img {
      width: 100%;
      height: 100%;
      min-height: 240px;
      object-fit: cover;
      display: block;
      transition: transform 0.8s var(--ease-out), filter 0.5s;
      filter: brightness(0.75) saturate(0.8);
    }
    .portfolio-item:first-child .portfolio-img { min-height: 520px; }
    .portfolio-item:hover .portfolio-img { transform: scale(1.05); filter: brightness(0.9) saturate(1); }

    .portfolio-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to top, rgba(13,13,15,0.9) 0%, transparent 50%);
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 28px;
      transition: background 0.4s;
    }
    .portfolio-item:hover .portfolio-overlay { background: linear-gradient(to top, rgba(13,13,15,0.95) 0%, rgba(225,6,19,0.05) 100%); }

    .portfolio-tag {
      font-family: var(--font-body);
      font-size: 10px;
      font-weight: 500;
      letter-spacing: 0.28em;
      text-transform: uppercase;
      color: var(--red);
      margin-bottom: 8px;
    }
    .portfolio-name {
      font-family: var(--font-display);
      font-weight: 300;
      font-size: 18px;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--white);
    }
    .portfolio-item:first-child .portfolio-name { font-size: 26px; font-weight: 200; letter-spacing: -0.01em; }

    /* Placeholder grid items (when no photos) */
    .portfolio-placeholder {
      background: var(--black-3);
      border: 1px dashed rgba(123,127,135,0.2);
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 240px;
    }
    .portfolio-placeholder p {
      font-family: var(--font-display);
      font-size: 11px;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gray-light);
      text-align: center;
    }

    /* ============================================================
       ADVANTAGES
    ============================================================ */
    #advantages {
      background: var(--black-2);
      border-top: 1px solid var(--border);
    }
    .advantages-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 2px;
      margin-top: 80px;
    }
    .advantage-item {
      background: var(--black);
      padding: 52px 48px;
      border: 1px solid var(--border);
      position: relative;
      overflow: hidden;
      transition: border-color 0.4s, background 0.4s;
    }
    .advantage-item:hover {
      border-color: var(--border-red);
      background: rgba(13,13,15,0.95);
    }
    .advantage-num {
      font-family: var(--font-body);
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.28em;
      color: var(--red);
      margin-bottom: 32px;
    }
    .advantage-title {
      font-family: var(--font-display);
      font-weight: 200;
      font-size: 22px;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--white);
      margin-bottom: 16px;
      line-height: 1.15;
    }
    .advantage-title strong {
      font-weight: 700;
      display: block;
    }
    .advantage-text {
      font-family: var(--font-body);
      font-weight: 400;
      font-size: 14px;
      line-height: 1.75;
      color: var(--gray);
    }
    .advantage-bg-num {
      position: absolute;
      bottom: -20px;
      right: 16px;
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 120px;
      color: rgba(242,242,242,0.025);
      line-height: 1;
      user-select: none;
      letter-spacing: -0.04em;
    }

    /* ============================================================
       REVIEWS
    ============================================================ */
    #reviews {
      background: var(--black);
      border-top: 1px solid var(--border);
    }
    .reviews-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      margin-bottom: 72px;
      flex-wrap: wrap;
      gap: 24px;
    }
    .reviews-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2px;
    }
    .review-card {
      background: var(--black-2);
      padding: 44px 40px;
      border: 1px solid var(--border);
      position: relative;
      overflow: hidden;
      transition: border-color 0.4s, background 0.4s;
      cursor: none;
    }
    .review-card:hover {
      border-color: var(--border-red);
      background: var(--black-3);
    }
    .review-quote {
      font-family: var(--font-display);
      font-size: 80px;
      font-weight: 900;
      color: var(--red);
      opacity: 0.15;
      line-height: 0.6;
      margin-bottom: 20px;
      user-select: none;
    }
    .review-text {
      font-size: 15px;
      line-height: 1.75;
      color: var(--white);
      margin-bottom: 36px;
    }
    .review-author {
      display: flex;
      align-items: center;
      gap: 16px;
      border-top: 1px solid var(--border);
      padding-top: 24px;
    }
    .review-avatar {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: var(--black-3);
      border: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 16px;
      color: var(--red);
      flex-shrink: 0;
    }
    .review-name {
      font-family: var(--font-body);
      font-weight: 600;
      font-size: 14px;
      letter-spacing: 0.10em;
      text-transform: uppercase;
      color: var(--white);
    }
    .review-car {
      font-family: var(--font-body);
      font-size: 12px;
      font-weight: 400;
      color: var(--gray);
      margin-top: 3px;
      letter-spacing: 0.06em;
    }
    .review-stars {
      margin-left: auto;
      color: var(--red);
      font-size: 14px;
      letter-spacing: 2px;
    }

    /* Reviews CTA */
    .reviews-cta {
      margin-top: 56px;
      padding: 40px 48px;
      background: var(--black-2);
      border: 1px solid var(--border);
      border-left: 2px solid var(--red);
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 24px;
    }
    .reviews-cta p {
      font-family: var(--font-display);
      font-weight: 600;
      font-size: 16px;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--white);
    }
    .reviews-cta span {
      display: block;
      font-family: var(--font-body);
      font-weight: 300;
      font-size: 13px;
      letter-spacing: 0;
      text-transform: none;
      color: var(--gray);
      margin-top: 6px;
    }

    /* ============================================================
       FORM
    ============================================================ */
    #contact-form {
      background: var(--black-2);
      border-top: 1px solid var(--border);
    }
    .form-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 100px;
      align-items: start;
    }
    .form-left .section-label { margin-bottom: 28px; }
    .form-left .section-title { margin-bottom: 24px; }
    .form-left .form-subtitle {
      font-family: var(--font-body);
      font-weight: 300;
      font-size: 15px;
      line-height: 1.75;
      color: var(--gray);
      max-width: 380px;
      margin-bottom: 48px;
    }
    .form-left .contact-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 20px;
    }
    .form-left .contact-list li {
      display: flex;
      align-items: center;
      gap: 16px;
      font-size: 14px;
      color: var(--gray);
    }
    .form-left .contact-list li strong {
      color: var(--white);
      font-family: var(--font-body);
      font-weight: 600;
      font-size: 15px;
      letter-spacing: 0.05em;
    }
    .form-left .contact-list li svg {
      width: 20px;
      height: 20px;
      stroke: var(--red);
      flex-shrink: 0;
    }

    .form-right form {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
    .form-group { display: flex; flex-direction: column; gap: 8px; }
    .form-group label {
      font-family: var(--font-body);
      font-size: 10px;
      font-weight: 500;
      letter-spacing: 0.28em;
      text-transform: uppercase;
      color: var(--gray);
    }
    .form-group input,
    .form-group select,
    .form-group textarea {
      background: var(--black);
      border: 1px solid var(--border);
      color: var(--white);
      font-family: var(--font-body);
      font-size: 14px;
      font-weight: 300;
      padding: 16px 20px;
      outline: none;
      transition: border-color 0.3s;
      cursor: none;
      appearance: none;
      -webkit-appearance: none;
    }
    .form-group input::placeholder,
    .form-group textarea::placeholder { color: var(--gray-light); }
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus { border-color: var(--red); }
    .form-group textarea { resize: vertical; min-height: 120px; }
    .form-group select { cursor: none; }
    .form-group select option { background: var(--black-2); }

    .form-submit {
      width: 100%;
      padding: 20px;
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 13px;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--black);
      background: var(--red);
      border: none;
      cursor: none;
      transition: background 0.25s, transform 0.15s;
      clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
    }
    .form-submit:hover { background: #ff0a1a; }
    .form-submit:active { transform: scale(0.99); }

    /* ── Consent checkbox (152-ФЗ) ── */
    .form-consent { display:flex; align-items:flex-start; gap:11px; cursor:pointer; margin:4px 0 22px; user-select:none; }
    .form-consent input { position:absolute; opacity:0; width:0; height:0; }
    .form-consent .consent-box {
      flex:none; width:20px; height:20px; margin-top:1px;
      border:1px solid var(--gray); background:transparent;
      display:flex; align-items:center; justify-content:center;
      transition:border-color .2s var(--ease-out), box-shadow .2s;
      clip-path: polygon(0 0, calc(100% - 5px) 0, 100% 5px, 100% 100%, 5px 100%, 0 calc(100% - 5px));
    }
    .form-consent .consent-box svg { width:12px; height:12px; fill:none; stroke:var(--red); stroke-width:3.2; stroke-linecap:round; stroke-linejoin:round; opacity:0; transform:scale(0.4); transition:opacity .15s var(--ease-out), transform .15s var(--ease-out); }
    .form-consent input:checked + .consent-box { border-color:var(--red); }
    .form-consent input:checked + .consent-box svg { opacity:1; transform:scale(1); }
    .form-consent input:focus-visible + .consent-box { box-shadow:0 0 0 3px var(--red-dim); }
    .form-consent .consent-text { font-family:var(--font-body); font-size:12px; line-height:1.5; color:var(--gray); }
    .form-consent .consent-text a { color:var(--red); border-bottom:1px solid rgba(225,6,19,0.35); }
    .form-consent.consent-error .consent-box { border-color:var(--red); box-shadow:0 0 0 3px var(--red-dim); }

    /* ============================================================
       CONTACTS MAP
    ============================================================ */
    #contacts {
      padding: 0;
      background: var(--black);
    }
    .contacts-inner {
      display: grid;
      grid-template-columns: 1fr 1.5fr;
    }
    .contacts-info {
      padding: 100px 64px;
      border-right: 1px solid var(--border);
    }
    .contacts-info .section-label { margin-bottom: 32px; }
    .contacts-detail-list {
      list-style: none;
      margin-top: 48px;
      display: flex;
      flex-direction: column;
      gap: 32px;
    }
    .contacts-detail-list li {
      display: flex;
      gap: 20px;
    }
    .contacts-detail-list .ci-icon {
      width: 44px;
      height: 44px;
      border: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .contacts-detail-list .ci-icon svg {
      width: 20px;
      height: 20px;
      stroke: var(--red);
    }
    .contacts-detail-list .ci-text strong {
      display: block;
      font-family: var(--font-body);
      font-weight: 600;
      font-size: 13px;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--white);
      margin-bottom: 6px;
    }
    .contacts-detail-list .ci-text p, 
    .contacts-detail-list .ci-text a {
      font-size: 14px;
      color: var(--gray);
      text-decoration: none;
      cursor: none;
      line-height: 1.6;
    }
    .contacts-detail-list .ci-text a:hover { color: var(--white); }

    .contacts-map {
      position: relative;
      background: var(--black-3);
      min-height: 480px;
      position: relative;
    }
    .contacts-map iframe { width: 100%; height: 100%; min-height: 480px; border: none; }
    #kraft-map {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      min-height: 480px;
      z-index: 2;
      background: var(--black-3);
    }
    /* Leaflet dark tuning */
    #kraft-map .leaflet-tile { filter: brightness(0.92) contrast(1.05); }
    #kraft-map .leaflet-container { background: #0D0D0F; font-family: var(--font-body); }
    #kraft-map .leaflet-control-attribution {
      background: rgba(13,13,15,0.7); color: var(--gray);
      font-size: 10px; backdrop-filter: blur(4px);
    }
    #kraft-map .leaflet-control-attribution a { color: var(--gray); }
    #kraft-map .leaflet-bar a {
      background: var(--black-3); color: var(--white);
      border-bottom: 1px solid var(--border);
    }
    #kraft-map .leaflet-bar a:hover { background: #202024; }
    .kraft-pin {
      width: 40px; height: 40px; display: flex; align-items: center; justify-content: center;
      filter: drop-shadow(0 4px 10px rgba(225,6,19,0.45));
    }
    .kraft-pin svg { width: 40px; height: 40px; }
    #kraft-map .leaflet-popup-content-wrapper, #kraft-map .leaflet-popup-tip {
      background: rgba(22,22,24,0.97); color: var(--white);
      border: 1px solid var(--border); border-radius: 0;
    }
    #kraft-map .leaflet-popup-content { font-family: var(--font-body); font-size: 13px; line-height: 1.5; margin: 14px 16px; }
    #kraft-map .leaflet-popup-content b { font-family: var(--font-display); font-weight: 700; letter-spacing: 0.04em; }

    /* ============================================================
       FOOTER
    ============================================================ */
    footer {
      background: var(--black-2);
      border-top: 1px solid var(--border);
      padding: 64px 48px 40px;
    }
    .footer-top {
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr 1fr;
      gap: 48px;
      padding-bottom: 56px;
      border-bottom: 1px solid var(--border);
    }
    .footer-brand .footer-logo-text {
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 28px;
      letter-spacing: 0.18em;
      color: var(--white);
      text-decoration: none;
      cursor: none;
      display: block;
      margin-bottom: 4px;
    }
    .footer-brand .footer-logo-text span { color: var(--red); }
    .footer-brand .footer-logo-sub {
      font-family: var(--font-body);
      font-weight: 400;
      font-size: 9px;
      letter-spacing: 0.3em;
      text-transform: uppercase;
      color: var(--gray);
    }
    .footer-brand p {
      font-family: var(--font-body);
      font-weight: 300;
      font-size: 13px;
      line-height: 1.7;
      color: var(--gray);
      margin-top: 20px;
      max-width: 280px;
    }
    .footer-col h5 {
      font-family: var(--font-body);
      font-weight: 600;
      font-size: 11px;
      letter-spacing: 0.28em;
      text-transform: uppercase;
      color: var(--white);
      margin-bottom: 20px;
    }
    .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
    .footer-col ul li a {
      font-size: 13px;
      color: var(--gray);
      text-decoration: none;
      cursor: none;
      transition: color 0.25s;
    }
    .footer-col ul li a:hover { color: var(--white); }

    .footer-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding-top: 28px;
      flex-wrap: wrap;
      gap: 16px;
    }
    .footer-bottom p {
      font-size: 12px;
      color: var(--gray-light);
      letter-spacing: 0.05em;
    }
    .footer-bottom a {
      color: var(--gray);
      text-decoration: none;
      cursor: none;
      transition: color 0.25s;
    }
    .footer-bottom a:hover { color: var(--white); }


    /* ── MODAL ── */
    .modal-overlay {
      display: none;
      position: fixed;
      inset: 0;
      z-index: 9000;
      background: rgba(0,0,0,0.75);
      backdrop-filter: blur(6px);
      align-items: center;
      justify-content: center;
    }
    .modal-overlay.open { display: flex; }
    .modal-box {
      background: var(--black-2);
      border: 1px solid var(--border);
      border-top: 2px solid var(--red);
      width: 100%;
      max-width: 480px;
      padding: 48px 44px;
      position: relative;
      clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 16px 100%, 0 calc(100% - 16px));
    }
    .modal-close {
      position: absolute;
      top: 20px; right: 20px;
      background: none; border: none;
      color: var(--gray); cursor: pointer;
      font-size: 22px; line-height: 1;
      transition: color 0.2s;
    }
    .modal-close:hover { color: var(--white); }
    .modal-label {
      font-family: var(--font-body);
      font-size: 10px; font-weight: 500;
      letter-spacing: 0.32em;
      text-transform: uppercase;
      color: var(--red);
      margin-bottom: 20px;
    }
    .modal-title {
      font-family: var(--font-display);
      font-weight: 200;
      font-size: 36px;
      line-height: 0.95;
      letter-spacing: -0.02em;
      color: var(--white);
      margin-bottom: 6px;
    }
    .modal-title strong {
      font-weight: 700;
      display: block;
      color: var(--red);
    }
    .modal-sub {
      font-family: var(--font-body);
      font-size: 14px; font-weight: 300;
      color: var(--gray);
      margin-bottom: 36px;
      line-height: 1.6;
    }
    .modal-field {
      display: flex; flex-direction: column; gap: 8px;
      margin-bottom: 16px;
    }
    .modal-field label {
      font-family: var(--font-body);
      font-size: 10px; font-weight: 500;
      letter-spacing: 0.28em;
      text-transform: uppercase;
      color: var(--gray);
    }
    .modal-field input {
      background: var(--black-3);
      border: 1px solid var(--border);
      border-left: 2px solid transparent;
      color: var(--white);
      font-family: var(--font-body);
      font-size: 15px; font-weight: 400;
      padding: 14px 16px;
      outline: none;
      transition: border-color 0.25s;
      width: 100%;
    }
    .modal-field input::placeholder { color: var(--gray-light); }
    .modal-field input:focus {
      border-color: var(--border-red);
      border-left-color: var(--red);
    }
    .modal-submit {
      width: 100%;
      margin-top: 8px;
      font-family: var(--font-body);
      font-size: 12px; font-weight: 600;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--black);
      background: var(--red);
      border: none; padding: 16px;
      cursor: pointer;
      clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
      transition: background 0.25s;
    }
    .modal-submit:hover { background: #ff0a1a; }
    .modal-success {
      display: none;
      text-align: center;
      padding: 24px 0;
    }
    .modal-success .success-icon {
      width: 48px; height: 48px;
      border: 1px solid var(--red);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 20px;
      color: var(--red);
      font-size: 22px;
    }
    .modal-success p {
      font-family: var(--font-body);
      font-size: 14px; font-weight: 300;
      color: var(--gray); line-height: 1.7;
    }
    .modal-success strong {
      font-family: var(--font-display);
      font-weight: 700; font-size: 20px;
      color: var(--white);
      display: block; margin-bottom: 8px;
    }
    @media (max-width: 768px) {
      .modal-box { padding: 36px 24px; margin: 16px; }
      .modal-title { font-size: 28px; }
    }

    /* ============================================================
       FLOATING CONTACTS
    ============================================================ */
    .float-contacts {
      position: fixed;
      bottom: 32px;
      right: 20px;
      z-index: 100;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    .float-btn {
      width: 50px;
      height: 50px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      cursor: none;
      transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
      clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
      background: rgba(22,22,24,0.92);
      border: 1px solid var(--border);
      backdrop-filter: blur(10px);
    }
    .float-btn:hover { transform: scale(1.1); border-color: rgba(242,242,242,0.18); }
    .float-btn svg { width: 22px; height: 22px; }
    .float-wa { border-left: 2px solid #25D366; }
    .float-wa svg { fill: #25D366; }
    .float-tg { border-left: 2px solid #0088cc; }
    .float-tg svg { fill: #0088cc; }

    /* ============================================================
       MOBILE STICKY
    ============================================================ */
    .sticky-bar { display: none; }

    /* ============================================================
       RESPONSIVE
    ============================================================ */
    @media (max-width: 1100px) {
      .services-grid { grid-template-columns: repeat(2, 1fr); }
      .about-grid { grid-template-columns: 1fr; gap: 60px; }
      .about-right { display: none; }
      .form-grid { grid-template-columns: 1fr; gap: 60px; }
      .contacts-inner { grid-template-columns: 1fr; }
      .footer-top { grid-template-columns: 1fr 1fr; }
      .portfolio-grid { grid-template-columns: 1fr 1fr; }
      .portfolio-item:first-child { grid-row: span 1; grid-column: span 2; }
    }

    @media (max-width: 768px) {
      header { padding: 0 20px; height: 60px; }
      nav { display: none; }
      .header-phone { font-size: 13px; }
      .header-cta .btn-primary { display: none; }
      section { padding: 80px 20px; }
      #hero { padding: 100px 20px 60px; min-height: 100svh; align-items: flex-start; }
      .hero-stats { display: none; }
      .hero-title { font-size: clamp(32px, 9.5vw, 72px); line-height: 0.90; letter-spacing: -0.025em; word-break: keep-all; hyphens: none; overflow: visible; }
      .hero-actions { flex-direction: column; gap: 12px; }
      .hero-actions .btn-primary,
      .hero-actions .btn-ghost { width: 100%; justify-content: center; font-size: 12px; }
      .hero-sub { font-size: 13px; margin-top: 20px; }
      .services-grid { grid-template-columns: 1fr; }
      .service-card { padding: 36px 28px; }
      .reviews-grid { grid-template-columns: 1fr; }
      .advantages-grid { grid-template-columns: 1fr; }
      .advantage-item { padding: 40px 28px; }
      .portfolio-grid { grid-template-columns: 1fr; }
      .portfolio-item:first-child { grid-column: span 1; }
      .footer-top { grid-template-columns: 1fr; }
      .contacts-info { padding: 60px 20px; }
      footer { padding: 48px 20px 100px; }
      .form-row { grid-template-columns: 1fr; }
      .reviews-cta { padding: 28px 24px; }
      .section-title { font-size: clamp(36px, 10vw, 56px); font-weight: 200; letter-spacing: -0.02em; }
      .section-title .t-bold { font-weight: 700; }

      .sticky-bar {
        display: flex;
        position: fixed;
        bottom: 20px; right: 16px; left: auto;
        z-index: 1000;
        flex-direction: column;
        gap: 10px;
        padding: 0;
        background: none;
        border: none;
        backdrop-filter: none;
      }
      .sticky-bar a {
        flex: none;
        width: 48px; height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(22,22,24,0.92);
        border: 1px solid var(--border);
        backdrop-filter: blur(10px);
        text-decoration: none;
        cursor: auto;
        clip-path: polygon(0 0, calc(100% - 7px) 0, 100% 7px, 100% 100%, 7px 100%, 0 calc(100% - 7px));
        transition: transform 0.2s var(--ease-out), border-color 0.2s;
      }
      .sticky-bar a:active { transform: scale(0.94); }
      .sticky-bar svg { width: 20px; height: 20px; }
      .sticky-call { border-left: 2px solid var(--red); }
      .sticky-call svg { fill: var(--red); }
      .sticky-wa { border-left: 2px solid #25D366; }
      .sticky-wa svg { fill: #25D366; }

      .float-contacts { display: none; }
    }

    /* ============================================================
       REDUCED MOTION
    ============================================================ */
    @media (prefers-reduced-motion: reduce) {
      .reveal { opacity: 1; transform: none; transition: none; }
      .hero-eyebrow, .hero-title, .hero-sub, .hero-actions, .hero-stats {
        opacity: 1; transform: none; transition: none;
      }
      .ticker-track, .brands-track { animation: none; }
      .scroll-line { animation: none; opacity: 1; }
    }

/* ── Contact Form 7 (в стилистике сайта) ── */
.wpcf7-form .cf7-row{display:grid;grid-template-columns:1fr 1fr;gap:16px}
@media(max-width:600px){.wpcf7-form .cf7-row{grid-template-columns:1fr}}
.wpcf7-form input[type=text],.wpcf7-form input[type=tel],.wpcf7-form input[type=email],.wpcf7-form textarea{width:100%;background:var(--black-3);border:1px solid var(--border);color:var(--white);font-family:var(--font-body);font-size:15px;padding:16px 18px;margin:8px 0;outline:none;transition:border-color .2s}
.wpcf7-form input::placeholder,.wpcf7-form textarea::placeholder{color:var(--gray)}
.wpcf7-form input:focus,.wpcf7-form textarea:focus{border-color:var(--red)}
.wpcf7-form textarea{min-height:110px;resize:vertical}
.wpcf7-form .wpcf7-acceptance{display:block;margin:14px 0;font-size:12px;color:var(--gray)}
.wpcf7-form .wpcf7-list-item{margin:0}
.wpcf7-form .wpcf7-submit{width:100%;background:var(--red);color:#fff;border:none;font-family:var(--font-display);font-weight:700;letter-spacing:.12em;text-transform:uppercase;font-size:13px;padding:18px;margin-top:12px;cursor:pointer;transition:background .2s;clip-path:polygon(0 0,calc(100% - 10px) 0,100% 10px,100% 100%,10px 100%,0 calc(100% - 10px))}
.wpcf7-form .wpcf7-submit:hover{background:#ff0a1a}
.wpcf7-form .wpcf7-response-output{border:1px solid var(--border)!important;color:var(--white);margin:14px 0 0!important;padding:12px 16px!important;font-size:13px}


/* ============================================================
   БОЛЬШИЕ ЭКРАНЫ (2K / ultrawide) — центрируем контент в колонке
   ============================================================ */
@media (min-width: 1440px){
  .container{ max-width: 1360px; }
  .hero-content{ max-width: 1000px; }
}
@media (min-width: 1700px){
  .container{ max-width: 1500px; }
  .hero-content{ max-width: 1100px; }
  #hero{ padding-left: calc((100% - 1500px)/2 + 48px); padding-right: calc((100% - 1500px)/2 + 48px); }
  .hero-stats{ right: calc((100% - 1500px)/2 + 48px); }
  header#header{ padding-left: calc((100% - 1500px)/2 + 48px); padding-right: calc((100% - 1500px)/2 + 48px); }
}
@media (min-width: 2200px){
  html{ font-size: 18px; }
  .container{ max-width: 1680px; }
  .hero-content{ max-width: 1200px; }
  #hero{ padding-left: calc((100% - 1680px)/2 + 48px); padding-right: calc((100% - 1680px)/2 + 48px); }
  .hero-stats{ right: calc((100% - 1680px)/2 + 48px); }
  header#header{ padding-left: calc((100% - 1680px)/2 + 48px); padding-right: calc((100% - 1680px)/2 + 48px); }
}


/* ============================================================
   АУДИТ АДАПТИВА — фиксы (P1 хедер планшет, P2 лейблы, P3 тап-таргеты)
   ============================================================ */
.section-label, .hero-stat-label, .portfolio-tag { font-size: 11px; }

/* P1: хедер не переполняется на планшете */
@media (max-width: 1100px){
  header#header .header-phone{ display: none; }
}
@media (max-width: 960px){
  header#header nav{ display: none; }
}

/* P3: тап-таргеты на мобильных */
@media (max-width: 768px){
  .btn-ghost, .service-link{ min-height: 42px; display: inline-flex; align-items: center; }
  .contact-list a, footer a, .about-visual-tag + * a { padding: 6px 0; display: inline-block; }
  .review-card .review-name, .review-car { line-height: 1.4; }
}
