:root {
  --deep: #f5f8fc;
  --navy: #eef2f7;
  --surface: #ffffff;
  --card: #ffffff;
  --text: #1a2332;
  --text-dim: #3d4755;
  --accent: #0071f0;
  --accent-hover: #0058c0;
  --accent-soft: rgba(0, 113, 240, 0.1);
  --line: rgba(26, 35, 50, 0.1);
  --shadow: 0 10px 40px rgba(26, 35, 50, 0.07);
  --radius: 20px;
  --radius-sm: 14px;
  --radius-pill: 9999px;
  --font: 'Roboto', system-ui, -apple-system, sans-serif;
  --container: 1120px;
  /* Отступ контента под фиксированный header (страницы без hero) */
  --site-header-clearance: clamp(5.35rem, 4.8rem + 2.2vw, 6.9rem);
  /* Свои фоны: задать здесь или у секции, напр. background-image: url('../public/bg.jpg'); */
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  /* +10% к базовому размеру: все rem и наследуемый текст читаются крупнее */
  font-size: 110%;
}

body {
  font-family: var(--font);
  background-color: #f6f8fb;
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Подстраницы: контент не уезжает под фиксированный header */
body:not(:has(#hero)) main {
  padding-top: var(--site-header-clearance);
}

::selection { background: var(--accent); color: #fff; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.25rem;
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Header */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease;
  background: transparent;
}
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 2px 20px rgba(0,0,0,0.04);
}
.site-header:not(.scrolled) .logo,
.site-header:not(.scrolled) .nav-desktop a,
.site-header:not(.scrolled) .header-cta,
.site-header:not(.scrolled) .header-cta-sub,
.site-header:not(.scrolled) .nav-toggle {
  color: #ffffff;
}
.site-header:not(.scrolled) .nav-desktop a::after {
  background: #ffffff;
}
.site-header:not(.scrolled) .header-cta {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.08);
}
.logo {
  font-family: var(--font);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--text);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  letter-spacing: -0.02em;
}
.logo-icon {
  width: 75px; height: 75px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: transparent;
  border: none;
}
.logo-icon img {
  width: 75px;
  height: 75px;
  display: block;
}
.nav-desktop { display: flex; gap: 2rem; align-items: center; }
.nav-desktop a {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: color 0.3s;
  position: relative;
}
.nav-desktop a::after {
  content: "";
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width 0.3s;
  border-radius: 2px;
}
.nav-desktop a:hover { color: var(--text); }
.nav-desktop a:hover::after { width: 100%; }
.header-cta {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.05rem;
  padding: 0.5rem 1.2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  color: var(--text);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 700;
  transition: all 0.3s;
  background: rgba(255,255,255,0.75);
  line-height: 1.2;
}
.header-cta-row {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.header-cta-row i { font-size: 0.72rem; color: var(--accent); }
.header-cta-sub {
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--text-dim);
}
.header-cta:hover {
  border-color: var(--accent);
  background: var(--accent-soft);
  color: var(--accent);
}
.nav-toggle { display: none; background: var(--navy); border: 1px solid var(--line); color: var(--text); font-size: 1.1rem; cursor: pointer; width: 44px; height: 44px; border-radius: var(--radius-pill); align-items: center; justify-content: center; }

@media (max-width: 860px) {
  .nav-desktop { 
    display: none; 
    position: absolute;
    top: 60px;
    left: 1rem;
    right: 1rem;
    flex-direction: column;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(20px);
    padding: 1rem;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    gap: 0.5rem;
    z-index: 99;
  }
  .nav-desktop.active { display: flex; }
  .nav-desktop a { padding: 0.6rem 1rem; width: 100%; border-radius: var(--radius); }
  .nav-desktop a:hover { background: var(--navy); }
  .nav-desktop a::after { display: none; }
  .header-cta { display: none; }
  .nav-toggle { display: flex; }
  .site-header { padding: 0.75rem 1rem; }
  /* Светлое выпадающее меню — ссылки должны быть тёмными даже когда шапка «прозрачная» на hero */
  .site-header:not(.scrolled) .nav-desktop.active a {
    color: var(--text-dim);
  }
  .site-header:not(.scrolled) .nav-desktop.active a:hover {
    color: var(--text);
  }
  .site-header:not(.scrolled) .nav-desktop.active a.is-active {
    color: var(--text);
  }
  /* Бургер: белый на светло-сером фоне кнопки не читается — стеклянная кнопка на hero */
  .site-header:not(.scrolled) .nav-toggle {
    color: var(--text);
    background: rgba(255, 255, 255, 0.94);
    border-color: rgba(255, 255, 255, 0.7);
    box-shadow: 0 4px 16px rgba(6, 16, 36, 0.18);
  }
}

/* Hero */
.hero {
  position: relative;
  min-height: auto;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #ffffff;
  padding-bottom: 1.5rem;
}
.hero-grid {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 6.5rem 1.25rem 3.5rem;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero h1 {
  font-family: var(--font);
  font-size: clamp(1.75rem, 4vw, 2.65rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
  animation: fade-up 0.65s ease 0.06s backwards;
}
.hero-offer {
  margin-bottom: 1.5rem;
  padding: 1rem 1.25rem;
  background: var(--card);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  animation: fade-up 0.65s ease 0.12s backwards;
}
.hero-offer p {
  font-size: 1rem;
  color: var(--text);
  margin: 0 0 0.35rem;
  line-height: 1.5;
}
.hero-offer p:last-child { margin-bottom: 0; }
.hero-offer b { font-weight: 700; color: var(--text); }
.hero-lead {
  font-size: 0.98rem;
  color: var(--text-dim);
  max-width: 42rem;
  margin-bottom: 1.75rem;
  line-height: 1.65;
  animation: fade-up 0.65s ease 0.18s backwards;
}
.hero-actions {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
  animation: fade-up 0.65s ease 0.28s backwards;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.8rem 1.6rem;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 6px 20px rgba(0, 113, 240, 0.28);
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(0, 113, 240, 0.32);
  background: var(--accent-hover);
}
.btn-ghost {
  background: var(--card);
  color: var(--text);
  border: 1px solid var(--line);
}
.btn-ghost:hover {
  border-color: var(--accent);
  background: var(--accent-soft);
  color: var(--accent);
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-visual .glow {
  position: absolute;
  width: 280px; height: 280px;
  background: rgba(0, 113, 240, 0.06);
  border-radius: 50%;
  animation: pulse 4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.08); opacity: 1; }
}
.hero-visual img {
  position: relative;
  z-index: 2;
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 16px 36px rgba(26, 35, 50, 0.1));
  border-radius: var(--radius);
  animation: fade-up 0.75s ease 0.15s backwards;
}
.hero-stats {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.2rem;
  text-align: right;
  pointer-events: none;
}
.hero-stats .hero-stat {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-dim);
  line-height: 1.4;
  animation: fade-up 0.55s ease backwards;
}
.hero-stats .hero-stat:nth-child(1) { animation-delay: 0.35s; }
.hero-stats .hero-stat:nth-child(2) { animation-delay: 0.42s; }
.hero-stats .hero-stat:nth-child(3) { animation-delay: 0.49s; }
.hero-stats .hero-stat--title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.3rem;
}

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; padding: 6rem 1.25rem 3rem; gap: 2.5rem; }
  .hero-visual { order: -1; }
  .hero-visual img { max-height: 240px; }
  .hero-stats {
    position: static;
    transform: none;
    align-items: flex-start;
    text-align: left;
    margin-top: 1rem;
    pointer-events: auto;
  }
  .hero h1 { font-size: 1.65rem; }
}

/* Section base */
section { position: relative; }
.section-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: var(--font);
  font-size: clamp(1.65rem, 3.2vw, 2.25rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
.section-intro {
  font-size: 1rem;
  color: var(--text-dim);
  max-width: 55ch;
  line-height: 1.65;
}

/* Intro (график + контекст) */
.intro-section {
  position: relative;
  background: #ffffff;
  padding: 3rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.intro-section .intro-text {
  position: relative;
  z-index: 1;
  font-size: 1rem;
  color: var(--text-dim);
  line-height: 1.75;
  max-width: 58rem;
  margin: 0;
}
.intro-section .intro-text a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
}
.intro-actions {
  margin-top: 1rem;
}
.intro-section .intro-text a:hover { text-decoration: underline; }
.intro-section.intro-section--flush {
  border-top: none;
  background: #f7f9fb;
}

.request-section {
  padding: 3rem 0;
  background: #f7f9fb;
  border-bottom: 1px solid var(--line);
}
.request-section .request-inner {
  max-width: 560px;
  margin: 0 auto;
  padding: 0 1.25rem;
}
.request-section .section-title {
  text-align: center;
  margin-bottom: 0.35rem;
}
.request-section .section-intro {
  text-align: center;
  margin: 0 auto 1.5rem;
}
.request-form {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1.5rem 1.35rem 1.35rem;
  box-shadow: none;
}
.request-form .field { margin-bottom: 1rem; }
.request-form label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-dim);
  margin-bottom: 0.35rem;
}
.request-form input,
.request-form textarea {
  width: 100%;
  padding: 0.65rem 0.75rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.95rem;
}
.request-form textarea { min-height: 88px; resize: vertical; }
.request-form .check {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: var(--text-dim);
  line-height: 1.45;
  margin-bottom: 1rem;
}
.request-form .check input { width: auto; margin-top: 0.2rem; flex-shrink: 0; }
.request-form button[type="submit"] { width: 100%; }

.services-section {
  padding: 4rem 0;
  background: #ffffff;
  border-bottom: 1px solid var(--line);
}

/* Оборудование */
.equipment-section {
  position: relative;
  background: #f7f9fb;
  padding: 4rem 0 4.5rem;
}
.equipment-split {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem 3rem;
  align-items: start;
}
.equipment-kicker {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 0.5rem;
}
.equipment-split > .equipment-copy h2 {
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 700;
  margin: 0 0 1.25rem;
  line-height: 1.25;
}
.equipment-accordion {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.equipment-accordion details {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(26, 35, 50, 0.04);
}
.equipment-accordion summary {
  list-style: none;
  cursor: pointer;
  padding: 0.95rem 1.1rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}
.equipment-accordion summary::-webkit-details-marker { display: none; }
.equipment-accordion summary::after {
  content: "+";
  font-weight: 400;
  color: var(--accent);
  font-size: 1.25rem;
  line-height: 1;
}
.equipment-accordion details[open] summary::after { content: "−"; }
.equipment-accordion .acc-body {
  padding: 0 1.1rem 1rem;
  font-size: 0.92rem;
  color: var(--text-dim);
  line-height: 1.6;
}
.equipment-visual {
  position: relative;
  z-index: 1;
  text-align: center;
}
.feature-visual {
  position: relative;
  z-index: 1;
  text-align: center;
}
.equipment-visual img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius);
  filter: drop-shadow(0 12px 32px rgba(26, 35, 50, 0.08));
}
.feature-visual img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius);
  filter: drop-shadow(0 12px 32px rgba(26, 35, 50, 0.08));
}

@media (max-width: 900px) {
  .equipment-split { grid-template-columns: 1fr; }
  .equipment-visual { order: -1; max-width: 320px; margin: 0 auto; }
  .feature-visual { order: -1; max-width: 320px; margin: 0 auto; }
}

.mid-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 2rem 1.25rem 3rem;
  background: #f7f9fb;
}

/* Benefits */
.benefits-section {
  position: relative;
  background: #ffffff;
  padding: 4.5rem 0;
}
.benefits-header {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.25rem;
  margin-bottom: 2.5rem;
}
.benefits-grid {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.25rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.benefit-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
}
.benefit-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.08);
}
.benefit-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-sm);
  background: var(--accent-soft);
  border: 1px solid rgba(0, 113, 240, 0.15);
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  color: var(--accent);
  margin-bottom: 1rem;
}
.benefit-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}
.benefit-card p {
  color: var(--text-dim);
  font-size: 0.9rem;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .benefits-section { padding: 4rem 0; }
  .benefits-header, .benefits-grid { padding: 0 1.25rem; }
  .benefits-grid { grid-template-columns: 1fr; }
}

/* Steps */
.steps-section {
  position: relative;
  z-index: 0;
  background: #f7f9fb;
  padding: 4.5rem 0;
}
.steps-section > .benefits-header,
.steps-grid {
  position: relative;
  z-index: 1;
}
.steps-grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.25rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.step-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  position: relative;
  transition: transform 0.3s;
}
.step-card:hover { transform: translateY(-3px); }
.step-num {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--accent);
  opacity: 0.2;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.step-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.step-card p {
  color: var(--text-dim);
  font-size: 0.9rem;
  line-height: 1.6;
}
.step-connector {
  position: absolute;
  top: 2.5rem;
  right: -1.5rem;
  width: 1.5rem;
  height: 2px;
  background: var(--line);
  display: none;
}

@media (max-width: 900px) {
  .steps-section { padding: 4rem 0; }
  .steps-grid { grid-template-columns: 1fr; padding: 0 1.25rem; }
}

/* Примеры работ */
.works-section {
  position: relative;
  z-index: 0;
  background: #ffffff;
  padding: 4.5rem 0;
  border-top: 1px solid var(--line);
}
.works-header {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.25rem;
  margin-bottom: 2rem;
  text-align: center;
}
.works-gallery {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.25rem;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
}
.works-gallery .works-loading {
  grid-column: 1 / -1;
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-dim);
  padding: 1.5rem 0.5rem;
}
.works-gallery figure {
  margin: 0;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(26, 35, 50, 0.06);
}
.works-gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}
.works-gallery figcaption {
  padding: 0.65rem 0.85rem;
  font-size: 0.85rem;
  color: var(--text-dim);
}
.works-gallery figure.works-extra {
  display: none;
}
.works-section.works-expanded .works-gallery figure.works-extra {
  display: block;
}
.works-actions {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 1.75rem auto 0;
  padding: 0 1.25rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem 1rem;
}
.works-actions .btn { min-width: 12rem; justify-content: center; }

/* Reviews */
.reviews-section {
  position: relative;
  background: #fafbfc;
  padding: 4.5rem 0 3rem;
}
.reviews-header {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.25rem;
  margin-bottom: 1.5rem;
  text-align: center;
}
.reviews-carousel {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  max-width: calc(var(--container) + 100px);
  margin: 0 auto;
  padding: 0 0.75rem;
}
.reviews-scroll-outer {
  flex: 1;
  min-width: 0;
  padding: 0 0.15rem;
}
.reviews-scroll {
  display: flex;
  gap: 0.75rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 0.5rem;
  padding: 0.35rem 0 0.75rem;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.reviews-scroll::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
  background: transparent;
}
.reviews-arrow {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--line);
  background: #fff;
  color: var(--text);
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 0.9rem;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  box-shadow: 0 2px 10px rgba(26, 35, 50, 0.06);
}
.reviews-arrow:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-soft);
}
.reviews-arrow:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
.review-card {
  flex: 0 0 calc((100% - 1.5rem) / 3.2);
  min-width: 220px;
  max-width: 340px;
  scroll-snap-align: start;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 5px;
  padding: 1rem 1.1rem;
  box-shadow: 0 4px 20px rgba(26, 35, 50, 0.06);
}
.review-card p {
  font-size: 0.95rem;
  color: var(--text-dim);
  line-height: 1.65;
  margin-bottom: 1.25rem;
  font-style: italic;
}
.review-card cite {
  font-style: normal;
  font-weight: 700;
  color: var(--text);
  font-size: 0.85rem;
}
.review-stars {
  display: inline-flex;
  align-items: center;
  gap: 0.15rem;
  color: #f59e0b;
  margin-bottom: 0.65rem;
  font-size: 0.8rem;
  letter-spacing: 0.02em;
  padding: 0.35rem 0.5rem;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(245, 158, 11, 0.25);
  border-radius: 5px;
}

@media (max-width: 900px) {
  .review-card {
    flex: 0 0 calc((100% - 0.75rem) / 2.15);
    min-width: 200px;
  }
}
@media (max-width: 520px) {
  .review-card {
    flex: 0 0 85%;
    max-width: none;
  }
  .reviews-carousel { padding: 0 0.35rem; gap: 0.25rem; }
  .reviews-arrow { width: 38px; height: 38px; }
}

/* Pricing */
.pricing-section {
  background: #ffffff;
  padding: 4.5rem 0;
  position: relative;
}
.pricing-header {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.25rem;
  text-align: center;
  margin-bottom: 2.5rem;
}
.pricing-header .section-intro { margin-left: auto; margin-right: auto; }
.pricing-grid {
  position: relative;
  z-index: 1;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 1.25rem;
  display: grid;
  grid-template-columns: minmax(280px, 420px);
  justify-content: center;
  gap: 1.25rem;
}
.pricing-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.pricing-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 113, 240, 0.35);
  box-shadow: 0 16px 44px rgba(0, 113, 240, 0.12);
}
.pricing-card.featured {
  border-color: rgba(0, 113, 240, 0.45);
  background: linear-gradient(180deg, rgba(0, 113, 240, 0.05), var(--card));
}
.pricing-card.featured::before {
  content: "Популярное";
  position: absolute;
  top: 0; right: 0;
  background: var(--accent);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.35rem 0.75rem;
  border-bottom-left-radius: var(--radius-sm);
}
.pricing-card h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.pricing-card .price {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--text);
  margin-bottom: 0.2rem;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
}
.pricing-card .price span {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-dim);
}
.pricing-card > p {
  color: var(--text-dim);
  font-size: 0.85rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}
.pricing-card ul {
  list-style: none;
  padding: 0;
}
.pricing-card li {
  padding: 0.35rem 0;
  font-size: 0.85rem;
  color: var(--text-dim);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.pricing-card li i {
  color: var(--accent);
  font-size: 0.75rem;
  width: 16px;
}

.pricing-card--showcase {
  padding: 2.25rem 2rem 2rem;
  border-radius: var(--radius);
  background: linear-gradient(145deg, #ffffff 0%, #f4f8ff 45%, #ffffff 100%);
  border: 1px solid rgba(0, 113, 240, 0.2);
  box-shadow: 0 12px 40px rgba(0, 113, 240, 0.1), 0 2px 0 rgba(255, 255, 255, 0.8) inset;
}
.pricing-card--showcase.featured::before {
  content: "Актуально";
  font-size: 0.58rem;
  letter-spacing: 0.1em;
}
.pricing-card--showcase .pricing-lead {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 0.5rem;
}
.pricing-card--showcase .pricing-price-row {
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
  margin-bottom: 0.15rem;
}
.pricing-card--showcase .pricing-price-row .amount {
  font-size: 2.75rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--text);
  font-variant-numeric: tabular-nums;
}
.pricing-card--showcase .pricing-price-row .currency {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-dim);
}
.pricing-card--showcase .pricing-price-row .per {
  font-size: 0.95rem;
  color: var(--text-dim);
  font-weight: 500;
}
.pricing-card--showcase .pricing-sub {
  font-size: 0.9rem;
  color: var(--text-dim);
  margin-bottom: 1.25rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid var(--line);
}
.pricing-card--showcase .pricing-fees {
  display: grid;
  gap: 0.65rem;
  margin-bottom: 1.25rem;
}
.pricing-card--showcase .pricing-fee {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0.9rem;
  background: rgba(0, 113, 240, 0.06);
  border: 1px solid rgba(0, 113, 240, 0.12);
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
}
.pricing-card--showcase .pricing-fee strong {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text);
  font-variant-numeric: tabular-nums;
}
.pricing-card--showcase .pricing-fee span {
  color: var(--text-dim);
}

/* Страница «Аренда» — компактный макет */
.arenda-intro {
  background: #ffffff;
  border-bottom: 1px solid var(--line);
  padding: clamp(1.75rem, 3vw, 2.75rem) 0;
}
.arenda-intro-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.25rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.25rem, 3vw, 2rem);
  align-items: start;
}
.arenda-intro-left img.arenda-ballu-img {
  display: block;
  width: 100%;
  max-width: 220px;
  height: auto;
  margin-bottom: 0.85rem;
  filter: drop-shadow(0 10px 24px rgba(26, 35, 50, 0.1));
}
.arenda-intro-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 0.5rem;
}
.arenda-intro-tags span {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent);
  background: rgba(0, 113, 240, 0.08);
  padding: 0.3rem 0.55rem;
  border-radius: 6px;
}
.arenda-intro-left h2 {
  font-size: clamp(1.35rem, 2.8vw, 1.85rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 0.5rem;
}
.arenda-intro-lead {
  font-size: 0.92rem;
  color: var(--text-dim);
  line-height: 1.6;
  margin-bottom: 0.85rem;
}
.arenda-price-line {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem 0.75rem;
  margin-bottom: 0.85rem;
}
.arenda-price-line .num {
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
}
.arenda-price-line .rub {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dim);
}
.arenda-micro-list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.82rem;
  color: var(--text-dim);
  line-height: 1.55;
  display: grid;
  gap: 0.28rem;
}
.arenda-micro-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
}
.arenda-micro-list i {
  color: var(--accent);
  font-size: 0.72rem;
  margin-top: 0.35em;
}

.arenda-mini-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  height: fit-content;
}
.arenda-mini {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.75rem 0.85rem;
  background: linear-gradient(180deg, #fbfcfe 0%, #fff 100%);
  box-shadow: 0 4px 16px rgba(26, 35, 50, 0.04);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.arenda-mini--sq {
  aspect-ratio: 1 / 1;
  text-align: center;
}
.arenda-mini--sq strong {
  display: block;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 0.25rem;
}
.arenda-mini--sq span {
  font-size: 0.74rem;
  color: var(--text-dim);
  line-height: 1.35;
}
/* Третья карточка — соотношение сторон 1:2 (выше, чем шире), под двумя квадратами */
.arenda-mini--bar {
  grid-column: 1 / -1;
  width: min(100%, 200px);
  margin: 0 auto;
  aspect-ratio: 1 / 2;
  min-height: 0;
  justify-content: center;
  text-align: center;
}
.arenda-mini--bar strong {
  font-size: 0.88rem;
  font-weight: 700;
}
.arenda-mini--video {
  grid-column: 1 / -1;
  display: block;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #0a0a0a;
  aspect-ratio: 16 / 9;
  position: relative;
}
.arenda-mini--video iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  position: absolute;
  inset: 0;
}

.arenda-about {
  background: #fafbfc;
  border-bottom: 1px solid var(--line);
  padding: clamp(1.25rem, 2.5vw, 1.75rem) 0;
}
.arenda-about-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.25rem;
  font-size: 0.87rem;
  color: var(--text-dim);
  line-height: 1.6;
}
.arenda-about-inner h3 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.35rem;
  letter-spacing: -0.01em;
}

.arenda-reviews {
  background: #ffffff;
  border-bottom: 1px solid var(--line);
  padding: clamp(1.75rem, 3vw, 2.5rem) 0;
}
.arenda-reviews-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.25rem;
}
.arenda-reviews-inner > h2 {
  font-size: clamp(1.2rem, 2.2vw, 1.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
  text-align: center;
  letter-spacing: -0.02em;
}
.arenda-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
}
.arenda-review-card {
  margin: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.95rem 1rem;
  box-shadow: 0 3px 14px rgba(26, 35, 50, 0.04);
}
.arenda-review-card p {
  font-size: 0.86rem;
  color: var(--text-dim);
  font-style: italic;
  line-height: 1.55;
  margin-bottom: 0.65rem;
}
.arenda-review-card cite {
  font-style: normal;
  font-weight: 700;
  font-size: 0.78rem;
  color: var(--text);
}

@media (max-width: 900px) {
  .arenda-intro-inner { grid-template-columns: 1fr; }
  .arenda-mini-grid { max-width: 360px; margin-left: auto; margin-right: auto; }
  .arenda-intro-left img.arenda-ballu-img {
    margin-left: auto;
    margin-right: auto;
  }
  .arenda-reviews-grid { grid-template-columns: 1fr; }
  .pricing-section { padding: 4rem 0; }
  .pricing-grid { grid-template-columns: 1fr; padding: 0 1.25rem; max-width: 400px; }
  .pricing-header { padding: 0 1.25rem; }
}

/* FAQ */
.faq-section {
  position: relative;
  background: #f7f9fb;
  padding: 4.5rem 0;
}
.faq-container {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  padding: 0 1.25rem;
}
.faq-header { position: relative; z-index: 1; text-align: center; margin-bottom: 2.5rem; }
.faq-item {
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--text);
  font-size: 1rem;
  font-weight: 600;
  padding: 1.25rem 0;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: inherit;
  transition: color 0.3s;
  gap: 1rem;
}
.faq-question:hover { color: var(--accent); }
.faq-question .fa-icon {
  flex-shrink: 0;
  color: var(--text-dim);
  font-size: 0.85rem;
  transition: transform 0.25s, color 0.25s;
}
.faq-item.open .faq-question .fa-icon {
  transform: rotate(45deg);
  color: var(--accent);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-answer-inner {
  padding-bottom: 1.25rem;
  color: var(--text-dim);
  line-height: 1.65;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .faq-container { padding: 0 1.25rem; }
  .faq-question { font-size: 0.95rem; padding: 1rem 0; }
}

/* CTA: при необходимости — background-image в :root или здесь */
.cta-section {
  position: relative;
  isolation: isolate;
  min-height: min(48vh, 480px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(3rem, 8vw, 4.5rem) 1.25rem;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(rgba(255, 255, 255, 0.327), rgba(0, 170, 255, 0.327)), url("../public/kontakts.svg") center/cover no-repeat;
}
.cta-panel {
  position: relative;
  z-index: 1;
  max-width: 520px;
  margin: 0 auto;
  padding: 2rem 1.75rem 2.25rem;
  background: rgba(255, 255, 255, 0.87);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(26, 35, 50, 0.18);
  backdrop-filter: blur(2px);
}
.cta-image-wrap {
  display: flex;
  justify-content: center;
  margin: 0 auto 0.85rem;
}
.cta-image {
  width: min(220px, 48vw);
  height: auto;
  display: block;
  filter: drop-shadow(0 10px 28px rgba(26, 35, 50, 0.14));
}
.cta-section h2 {
  font-family: var(--font);
  font-size: clamp(1.65rem, 3.5vw, 2.35rem);
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}
.cta-section p {
  color: var(--text-dim);
  font-size: 1rem;
  max-width: 420px;
  margin: 0 auto 1.75rem;
  line-height: 1.6;
}
.cta-buttons {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Фон-как у блока контактов, без панели — перед footer на внутренних страницах */
.cta-section.cta-section--bg-strip {
  min-height: 0;
  max-height: none;
  height: clamp(140px, 22vw, 240px);
  padding: clamp(1.75rem, 5vw, 2.75rem) 1.25rem;
  flex-shrink: 0;
  pointer-events: none;
}

@media (max-width: 600px) {
  .cta-section {
    padding: 3.5rem 1rem;
  }
  .cta-panel { padding: 1.5rem 1.25rem; }
  .cta-buttons .btn { width: 100%; }
}

/* Контактная полоса перед футером */
.footer-contact-bar {
  background: #f0f4f9;
  border-top: 1px solid var(--line);
  padding: 1rem 1.25rem;
}
.footer-contact-bar-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem 2rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
}
.footer-contact-bar-inner span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}
.footer-contact-bar-inner .fcc-muted {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-dim);
}
.footer-contact-bar-inner a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
}
.footer-contact-bar-inner a:hover { text-decoration: underline; }

/* Footer */
.site-footer {
  background: #ffffff;
  border-top: 1px solid var(--line);
  padding: 3rem 0 1.5rem;
}
.footer-grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.25rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
.footer-brand .logo { margin-bottom: 0.75rem; display: inline-flex; }
.footer-brand p {
  color: var(--text-dim);
  font-size: 0.85rem;
  line-height: 1.6;
  max-width: 280px;
}
.footer-col h4 {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-dim);
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.5rem; }
.footer-col a {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.footer-col a:hover { color: var(--accent); }
.footer-col a i { font-size: 0.75rem; width: 14px; }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem 2rem 0;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--text-dim);
}
.footer-credit-meow {
  font-size: 0.65rem;
  font-weight: 500;
  opacity: 0.88;
  margin-left: auto;
  white-space: nowrap;
}
.footer-credit-meow a {
  color: inherit;
  text-decoration: none;
}
.footer-credit-meow a:hover {
  color: var(--accent);
  text-decoration: underline;
}

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; padding: 0 1.25rem; gap: 2rem; }
  .footer-bottom { padding: 1.5rem 1.25rem 0; }
}
@media (max-width: 500px) {
  .footer-grid { grid-template-columns: 1fr; }
}

.nav-desktop a.is-active {
  color: var(--text);
  font-weight: 600;
}
.nav-desktop a.is-active::after { width: 100%; }

.page-head {
  padding: 6.5rem 0 2.25rem;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.page-head h1 {
  font-size: clamp(1.45rem, 3.2vw, 1.95rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}
.page-head p {
  color: var(--text-dim);
  max-width: 52ch;
  font-size: 0.95rem;
  line-height: 1.65;
}

.hub-section {
  padding: 3rem 0 3.5rem;
  background: #fff;
}
.hub-section .hub-inner-title {
  text-align: center;
  margin-bottom: 0.35rem;
}
.hub-section .section-intro {
  text-align: center;
  margin: 0 auto 1.75rem;
}
.hub-grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.25rem;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(228px, 1fr));
  gap: 1rem;
}
.hub-card {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  padding: 1.25rem 1.15rem;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-decoration: none;
  color: inherit;
  box-shadow: 0 4px 22px rgba(26, 35, 50, 0.05);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.hub-card:hover {
  border-color: rgba(0, 113, 240, 0.28);
  box-shadow: 0 10px 32px rgba(26, 35, 50, 0.08);
  transform: translateY(-2px);
}
.hub-card .hub-card-label {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  color: var(--accent);
}
.hub-card h2 {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0;
  letter-spacing: -0.02em;
}
.hub-card p {
  font-size: 0.86rem;
  color: var(--text-dim);
  line-height: 1.5;
  margin: 0;
  flex: 1;
}
.hub-card .hub-card-more {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
}

.cta-lite {
  padding: 2.75rem 1.25rem;
  background: #f7f9fb;
  border-top: 1px solid var(--line);
  text-align: center;
}
.cta-lite-inner {
  max-width: 520px;
  margin: 0 auto;
}
.cta-lite h2 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.45rem;
  letter-spacing: -0.02em;
}
.cta-lite p {
  color: var(--text-dim);
  margin-bottom: 1.15rem;
  font-size: 0.93rem;
  line-height: 1.6;
}
.cta-lite .btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.hero.hero--dark {
  background: linear-gradient(rgba(6, 16, 36, 0.426), rgba(6, 16, 36, 0.417)), url("../public/background.png") center/cover no-repeat;
}
.hero.hero--dark .hero-content,
.hero.hero--dark .hero-content h1,
.hero.hero--dark .hero-content p,
.hero.hero--dark .hero-lead { color: #ffffff; }
.hero.hero--dark .hero-offer {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.24);
}
.hero.hero--dark .hero-offer p,
.hero.hero--dark .hero-offer b { color: #ffffff; }
.hero-grid.hero-grid--split {
  grid-template-columns: 1fr 1fr;
  max-width: 100%;
  padding-left: 5vw;
  padding-right: 5vw;
}
.hero-icon-btn { min-width: 50px; width: 50px; padding: 0; }
.hero-icon-btn i { margin: 0; }

.request-inline-row {
  display: flex;
  gap: 0.65rem;
  align-items: center;
}
.request-inline-row .check { margin: 0; flex: 1 1 auto; min-width: 0; }
.request-inline-row .btn {
  width: auto;
  white-space: nowrap;
  flex: 0 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
.request-inline-row button[type="submit"] {
  width: auto;
  max-width: 46%;
}
.check--inline span {
  white-space: normal;
  overflow: hidden;
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.hero-visual .request-form {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(2px);
}
.hero-visual .request-form label,
.hero-visual .request-form .check { color: rgba(255, 255, 255, 0.9); }
.hero-visual .request-form input,
.hero-visual .request-form textarea {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(255, 255, 255, 0.3);
}

.compact-info-buttons details { border-radius: 10px; }
.compact-info-buttons summary { padding: 0.75rem 0.9rem; font-size: 0.9rem; }

.equipment-text {
  color: var(--text-dim);
  margin: 0 0 1rem;
  line-height: 1.7;
}
.equipment-list {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--text-dim);
  display: grid;
  gap: 0.55rem;
}
.equipment-list li { line-height: 1.6; }

.benefits-text {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.25rem;
  color: var(--text-dim);
  line-height: 1.75;
  display: grid;
  gap: 0.65rem;
}

.works-gallery.works-gallery--five {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  max-width: 75vw;
  padding-left: 0;
  padding-right: 0;
}
.works-gallery.works-gallery--five img {
  aspect-ratio: 9 / 16;
  max-height: 210px;
}
.works-header,
.works-actions { max-width: 75vw; padding-left: 0; padding-right: 0; }

.rental-copy-section {
  background: #ffffff;
  border-top: 1px solid var(--line);
  padding: 3rem 0 2rem;
}
.rental-copy-text {
  color: var(--text-dim);
  line-height: 1.8;
  max-width: 92ch;
  margin: 0 auto;
}

.reviews-compact {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.25rem 0.75rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  overflow: visible;
}
.reviews-compact .review-card { max-width: none; min-width: 0; }
.reviews-compact .review-card.reviews-extra { display: none; }
.reviews-section.reviews-expanded .reviews-compact .review-card.reviews-extra { display: block; }

.callback-form {
  max-width: 460px;
  margin: 0 auto;
  border-color: transparent;
}
.callback-form .field { margin-bottom: 0.8rem; }

@media (max-width: 900px) {
  .hero-grid.hero-grid--split { grid-template-columns: 1fr; }
  .works-gallery.works-gallery--five {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 100%;
    padding: 0 1.25rem;
  }
  .works-gallery.works-gallery--five img { max-height: none; }
  .works-header,
  .works-actions { max-width: 100%; padding: 0 1.25rem; }
  .request-inline-row { flex-direction: column; align-items: stretch; }
  .request-inline-row .btn { width: 100%; }
  .request-inline-row button[type="submit"] { max-width: 100%; }
  .reviews-compact { grid-template-columns: 1fr; }
}

.works-page-gallery {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.25rem 3.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
}
.works-page-gallery figure {
  margin: 0;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(26, 35, 50, 0.06);
}
.works-page-gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}
.works-page-gallery figcaption {
  padding: 0.65rem 0.85rem;
  font-size: 0.85rem;
  color: var(--text-dim);
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .hero-visual .glow { animation: none !important; opacity: 0.5 !important; transform: none !important; }
  .cta-section {
    background-image: none !important;
    background-color: #f7f9fb !important;
  }
  .hero h1,
  .hero-offer,
  .hero-lead,
  .hero-actions,
  .hero-visual img,
  .hero-stats .hero-stat {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ============================================
MOBILE ADAPTATION ENHANCEMENTS
============================================ */

/* Tablet: reviews 2 columns */
@media (max-width: 1024px) {
.reviews-compact {
grid-template-columns: repeat(2, minmax(0, 1fr));
}
}

/* Enhance existing 900px breakpoint */
@media (max-width: 900px) {
/* Hero form readability on dark background */
.hero-visual .request-form {
background: rgba(255, 255, 255, 0.96);
border-color: rgba(0, 0, 0, 0.08);
backdrop-filter: none;
-webkit-backdrop-filter: none;
}
.hero-visual .request-form label,
.hero-visual .request-form .check {
color: var(--text-dim);
}
.hero-visual .request-form input,
.hero-visual .request-form textarea {
background: #ffffff;
border-color: var(--line);
}

/* Better works gallery aspect ratio on mobile */
.works-gallery.works-gallery--five img {
aspect-ratio: 3 / 4;
max-height: 260px;
}

/* Hero split padding consistency */
.hero-grid.hero-grid--split {
padding-left: 1.25rem;
padding-right: 1.25rem;
}

/* Reviews cards word wrap */
.review-card {
overflow-wrap: break-word;
word-wrap: break-word;
hyphens: auto;
}
}

/* Small tablets / large phones */
@media (max-width: 640px) {
.hero-actions {
flex-direction: column;
align-items: stretch;
}
.hero-actions .btn {
width: 100%;
justify-content: center;
}

.works-gallery.works-gallery--five {
grid-template-columns: repeat(2, minmax(0, 1fr));
gap: 0.75rem;
}
.works-gallery.works-gallery--five img {
aspect-ratio: 1 / 1;
}
}

/* Phones: single column works */
@media (max-width: 560px) {
.works-gallery.works-gallery--five {
grid-template-columns: 1fr;
max-width: 400px;
margin-left: auto;
margin-right: auto;
}
.works-gallery.works-gallery--five img {
aspect-ratio: 4 / 3;
max-height: none;
}

.works-header,
.works-actions {
max-width: 400px;
margin-left: auto;
margin-right: auto;
}
}

/* Small phones */
@media (max-width: 480px) {
.hero h1 {
font-size: 1.45rem;
}
.hero-offer {
padding: 0.85rem 1rem;
}
.hero-offer p {
font-size: 0.95rem;
}
.hero-lead {
font-size: 0.92rem;
}

.section-title {
font-size: 1.4rem;
}
.section-label {
font-size: 0.65rem;
}

.btn {
padding: 0.75rem 1.2rem;
font-size: 0.88rem;
}

.logo {
font-size: 1.15rem;
}
.logo-icon,
.logo-icon img {
width: 44px;
height: 44px;
}

.site-header {
padding: 0.65rem 0.875rem;
}

.hero-grid {
padding: 5.5rem 1rem 2.5rem;
gap: 2rem;
}

.cta-panel {
padding: 1.5rem 1.25rem;
}
.cta-section h2 {
font-size: 1.4rem;
}

.request-form {
padding: 1.25rem 1rem;
}
.request-form input,
.request-form textarea {
padding: 0.75rem;
font-size: 16px; /* Prevent iOS zoom */
}
.callback-form input {
font-size: 16px;
}

.equipment-accordion summary {
padding: 0.85rem 1rem;
font-size: 0.9rem;
}
.equipment-accordion .acc-body {
padding: 0 1rem 0.85rem;
font-size: 0.88rem;
}

.faq-question {
font-size: 0.92rem;
padding: 1.1rem 0;
}
.faq-answer-inner {
font-size: 0.88rem;
}

.review-card {
padding: 0.85rem;
}
.review-card p {
font-size: 0.9rem;
margin-bottom: 0.75rem;
}

.pricing-card {
padding: 1.5rem 1.25rem;
}
.pricing-card .price {
font-size: 1.9rem;
}

.step-card,
.benefit-card {
padding: 1.25rem;
}
.step-num {
font-size: 2rem;
}

.intro-section {
padding: 2.25rem 0;
}
.services-section,
.equipment-section,
.benefits-section,
.steps-section,
.works-section,
.reviews-section,
.pricing-section,
.faq-section {
padding: 3rem 0;
}

.rental-copy-section {
padding: 2.25rem 0 1.75rem;
}
.rental-copy-text {
font-size: 0.92rem;
line-height: 1.7;
}

.footer-grid {
gap: 1.75rem;
margin-bottom: 1.75rem;
}
.footer-bottom {
flex-direction: column;
text-align: center;
gap: 0.35rem;
padding: 1.25rem 1rem 0;
align-items: stretch;
}
.footer-bottom .footer-credit-meow {
margin-left: 0;
width: 100%;
text-align: right;
align-self: flex-end;
}

.check--inline span {
-webkit-line-clamp: 3;
line-clamp: 3;
}

.request-inline-row .check {
font-size: 0.78rem;
}
}

/* Extra small phones */
@media (max-width: 400px) {
.container,
.hero-grid,
.benefits-header,
.benefits-grid,
.benefits-text,
.steps-grid,
.works-gallery,
.works-header,
.works-actions,
.reviews-header,
.reviews-compact,
.pricing-header,
.pricing-grid,
.faq-container,
.footer-grid {
padding-left: 0.875rem;
padding-right: 0.875rem;
}

.hero-grid {
padding-top: 5rem;
}

.btn {
padding: 0.7rem 1rem;
font-size: 0.85rem;
}

.equipment-split > .equipment-copy h2 {
font-size: 1.25rem;
}

.cta-section {
padding: 3rem 0.875rem;
}

.nav-desktop {
left: 0.5rem;
right: 0.5rem;
}
}

/* Fix for iOS safe areas */
@supports (padding: max(0px)) {
.site-header {
padding-left: max(1rem, env(safe-area-inset-left));
padding-right: max(1rem, env(safe-area-inset-right));
}
@media (max-width: 860px) {
.site-header {
  padding-left: max(0.75rem, env(safe-area-inset-left));
  padding-right: max(0.75rem, env(safe-area-inset-right));
}
}

@media (max-width: 900px) {
  .hero-grid.hero-grid--split {
    display: flex !important;
    flex-direction: column !important;
  }
  .hero-grid.hero-grid--split .hero-content {
    order: 1 !important;
  }
  .hero-grid.hero-grid--split .hero-visual {
    order: 2 !important;
    width: 100%;
  }
}

@media (max-width: 860px) {
  .nav-toggle {
    position: relative;
    z-index: 120;
    min-width: 44px;
    min-height: 44px;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
  }
  .nav-toggle i { pointer-events: none; }
  .nav-desktop { z-index: 110; }
}
}