@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
  --bg:        #090b10;
  --surface:   #0d1018;
  --card:      #12151e;
  --card-hover:#161a25;
  --border:    #1d2130;
  --text:      #e6e8f0;
  --muted:     #525870;
  --accent:    #f0a500;
  --accent-bg: rgba(240,165,0,0.1);
  --ok:        #34d399;
  --danger:    #f87171;
  --line:      #1d2130;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: -0.01em;
}

a { color: inherit; text-decoration: none; }

button, input, select, textarea { font: inherit; }

/* ── Header ── */
.header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 64px;
  padding: 0 clamp(16px, 5vw, 72px);
  background: rgba(9,11,16,0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}

.brand__text {
  color: var(--text);
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
}

.brand__logo {
  display: block;
  width: 40px;
  height: 40px;
  object-fit: contain;
  flex: 0 0 40px;
  border-radius: 10px;
  filter: invert(1);
}

.nav {
  display: flex;
  gap: 2px;
}

.nav a {
  padding: 7px 14px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  border-radius: 7px;
  transition: color 0.18s, background 0.18s;
}

.nav a:hover {
  color: var(--text);
  background: var(--border);
}

/* ── Typography ── */
h1, h2, h3, p { margin-top: 0; }

h1 {
  margin-bottom: 22px;
  font-size: clamp(42px, 7vw, 90px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.035em;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(30px, 4.5vw, 58px);
  font-weight: 800;
  line-height: 1.03;
  letter-spacing: -0.028em;
}

h3 {
  margin-bottom: 10px;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.015em;
}

.eyebrow {
  margin: 0 0 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: '';
  display: block;
  width: 18px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  flex-shrink: 0;
}

/* ── Buttons ── */
.btn, .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  border-radius: 9px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.18s, box-shadow 0.2s;
  border: 1px solid transparent;
  letter-spacing: -0.01em;
}

.btn--primary, .btn-primary, .button.primary {
  color: #000;
  background: var(--accent);
  border-color: var(--accent);
}

.btn--primary:hover, .btn-primary:hover {
  background: #ffb820;
  border-color: #ffb820;
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(240,165,0,0.3);
}

.btn--ghost, .btn-secondary, .button-light {
  color: var(--text);
  background: transparent;
  border-color: var(--border);
}

.btn--ghost:hover {
  background: var(--card);
  border-color: var(--muted);
  transform: translateY(-2px);
}

.button.danger {
  color: #fff;
  border-color: var(--danger);
  background: var(--danger);
}

/* ── Hero ── */
.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 520px);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: clamp(64px, 9vw, 120px) clamp(16px, 5vw, 72px);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -300px;
  right: -100px;
  width: 900px;
  height: 900px;
  background: radial-gradient(ellipse, rgba(240,165,0,0.055) 0%, transparent 68%);
  pointer-events: none;
  z-index: 0;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 780px;
}

.hero__lead {
  max-width: 580px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.hero__panel {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
}

.hero__image {
  position: relative;
  min-height: 440px;
  background: url("/assets/hero-premium.png") center / cover no-repeat;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
}

.hero__image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(150deg, rgba(240,165,0,0.07) 0%, rgba(0,0,0,0.25) 100%);
}

.hero__facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.hero__facts div {
  display: grid;
  gap: 5px;
  padding: 18px 16px;
  background: var(--card);
  transition: background 0.2s;
}

.hero__facts div:hover { background: var(--card-hover); }

.hero__facts strong {
  font-size: 21px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.025em;
}

.hero__facts span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
}

/* ── Sections ── */
.section, .about, .steps, .contacts {
  padding: 96px clamp(16px, 5vw, 72px);
  border-top: 1px solid var(--border);
}

.section__head {
  max-width: 800px;
  margin-bottom: 48px;
}

.section__head--row {
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(260px,420px);
  gap: 32px;
  max-width: none;
  align-items: end;
  margin-bottom: 40px;
}

.section__head--row > p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
  margin: 0;
}

/* ── Services ── */
.services, .service-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
}

.service {
  min-height: 260px;
  padding: 28px 24px;
  background: var(--card);
  transition: background 0.2s;
}

.service:hover { background: var(--card-hover); }

.service span {
  display: block;
  margin-bottom: 48px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service h3 { margin-bottom: 10px; }

.service p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
}

/* ── About ── */
.about {
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(320px,520px);
  gap: 56px;
  background: var(--surface);
}

.about__copy p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
  margin-top: 18px;
}

.about__list { display: grid; gap: 10px; }

.about__list div {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 18px;
  padding: 20px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  transition: border-color 0.2s, background 0.2s;
  align-items: center;
}

.about__list div:hover {
  background: var(--card-hover);
  border-color: rgba(240,165,0,0.28);
}

.about__list strong {
  font-size: 19px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.02em;
  text-align: center;
}

.about__list span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

/* ── Portfolio ── */
.portfolio, .works-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 12px;
}

.work-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.22s, transform 0.22s, box-shadow 0.22s;
}

.work-card:hover {
  border-color: rgba(240,165,0,0.35);
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.4);
}

.work-card img {
  display: block;
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.work-card div { padding: 20px; }

.work-card span {
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.work-card h3 { margin: 8px 0 6px; font-size: 16px; }

.work-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

.work-empty {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 32px;
}

.work-empty p { color: var(--muted); margin: 0; }

/* ── Steps ── */
.steps { background: var(--surface); }

.steps__list, .process-list, .step-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: step-counter;
}

.steps__list li, .process-list li, .step-list li {
  position: relative;
  min-height: 200px;
  padding: 28px 24px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  transition: border-color 0.2s, background 0.2s;
}

.steps__list li:hover, .process-list li:hover {
  background: var(--card-hover);
  border-color: rgba(240,165,0,0.28);
}

.steps__list span, .process-list strong, .step-list strong {
  display: block;
  margin-bottom: 14px;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
}

.steps__list p, .process-list p, .step-list p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
}

/* ── Reviews ── */
.reviews {
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(320px,430px);
  gap: 20px;
  align-items: start;
}

.reviews__list, .review-list, .admin-list { display: grid; gap: 12px; }

.review-card {
  padding: 24px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  transition: border-color 0.2s, background 0.2s;
}

.review-card:hover {
  background: var(--card-hover);
  border-color: rgba(240,165,0,0.22);
}

.review-meta, .status-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}

.review-meta strong { font-size: 15px; font-weight: 700; }

.review-card p {
  color: var(--text);
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 12px;
}

.review-card small { color: var(--muted); font-size: 13px; }

.stars { color: var(--accent); }

/* ── Review form ── */
.review-form {
  padding: 28px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
}

.review-form h3 { margin-bottom: 22px; }

form { display: grid; gap: 14px; }

label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

input, select, textarea {
  width: 100%;
  padding: 12px 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text);
  font-size: 15px;
  outline: none;
  transition: border-color 0.18s;
}

input:focus, select:focus, textarea:focus { border-color: var(--accent); }

textarea { resize: vertical; }

.rating-field {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.rating-picker {
  display: inline-flex;
  gap: 4px;
  width: fit-content;
}

.rating-picker button {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  padding: 0;
  color: var(--border);
  background: transparent;
  border: 0;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  transition: color 0.15s, transform 0.15s;
}

.rating-picker button:hover { transform: scale(1.2); }
.rating-picker button.is-active { color: var(--accent); }

.rating-picker button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 4px;
}

.form-message {
  min-height: 20px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

/* ── Contacts ── */
.contacts {
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(300px,430px);
  gap: 56px;
  align-items: center;
  background: var(--surface);
}

.contacts .eyebrow { color: var(--accent); }

.contacts h2 { color: var(--text); }

.contacts p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
  margin-top: 18px;
}

.contacts__card, .contact-card, .contact-box {
  display: grid;
  gap: 14px;
  padding: 28px;
  border: 1px solid rgba(240,165,0,0.22);
  border-radius: 14px;
  background: var(--card);
  transition: border-color 0.2s;
}

.contacts__card:hover { border-color: rgba(240,165,0,0.45); }

.contacts__card a, .contact-card a {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--text);
  transition: color 0.18s;
}

.contacts__card a:hover { color: var(--accent); }

.contacts__card span, .contact-card span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 400;
}

/* ── Footer ── */
.footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(16px, 5vw, 72px);
  color: var(--muted);
  font-size: 14px;
  border-top: 1px solid var(--border);
}

/* ── Admin ── */
.admin-page { background: var(--bg); }

.admin-main {
  width: min(1100px, calc(100% - 32px));
  margin: 0 auto;
  padding: 56px 0 80px;
}

.admin-main h1 { font-size: clamp(36px, 5vw, 58px); }

.admin-card, .admin-login {
  padding: 24px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
}

.admin-card p { color: var(--muted); line-height: 1.65; }

.status {
  padding: 4px 10px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
}

.status.published { color: var(--ok);     border-color: rgba(52,211,153,0.28); }
.status.pending   { color: var(--accent); border-color: rgba(240,165,0,0.28); }
.status.rejected  { color: var(--danger); border-color: rgba(248,113,113,0.28); }

.header__phone, .header-phone, .admin-link {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  padding: 8px 14px;
  color: #000;
  background: var(--accent);
  border: 1px solid var(--accent);
  border-radius: 7px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.18s, transform 0.18s;
  white-space: nowrap;
}

.header__phone:hover, .admin-link:hover {
  background: #ffb820;
  transform: translateY(-1px);
}

/* ── Animations ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero__content { animation: fadeUp 0.6s ease both; }
.hero__panel   { animation: fadeUp 0.6s 0.15s ease both; }

/* ── Responsive 1040px ── */
@media (max-width: 1040px) {
  .header {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px 14px;
    padding: 10px clamp(16px, 4vw, 40px);
  }

  .nav {
    grid-column: 1 / -1;
    grid-row: 2;
    width: 100%;
    overflow-x: auto;
    padding: 2px 0 6px;
    scrollbar-width: none;
    gap: 4px;
  }

  .nav::-webkit-scrollbar { display: none; }

  .hero, .about, .section__head--row, .reviews, .contacts {
    grid-template-columns: 1fr;
  }

  .services, .service-list, .steps__list, .process-list, .step-list {
    grid-template-columns: repeat(2, minmax(0,1fr));
  }

  .portfolio, .works-grid {
    grid-template-columns: repeat(2, minmax(0,1fr));
  }
}

/* ── Responsive 640px ── */
@media (max-width: 640px) {
  .header { padding: 10px 14px 10px; }

  .brand__text {
    max-width: 145px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 14px;
  }

  .brand__logo { width: 36px; height: 36px; flex-basis: 36px; filter: invert(1); }

  .nav { font-size: 13px; }

  .nav a {
    flex: 0 0 auto;
    padding: 7px 12px;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border);
    border-radius: 999px;
  }

  h1 { font-size: 38px; line-height: 0.98; }
  h2 { font-size: 30px; }
  h3 { font-size: 18px; }

  .hero { padding: 44px 14px 60px; gap: 28px; }
  .hero::before { display: none; }

  .hero__lead { font-size: 16px; line-height: 1.6; }

  .hero__actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 24px;
  }

  .btn, .button {
    width: 100%;
    min-height: 50px;
    border-radius: 11px;
  }

  .hero__image { min-height: 240px; border-radius: 12px; }

  .hero__facts, .services, .service-list,
  .portfolio, .works-grid,
  .steps__list, .process-list, .step-list {
    grid-template-columns: 1fr;
  }

  .hero__facts div { padding: 16px; }
  .hero__facts strong { font-size: 20px; }

  .section, .about, .steps, .contacts { padding: 56px 14px; }
  .section__head { margin-bottom: 28px; }
  .section__head--row { gap: 12px; margin-bottom: 28px; }

  .services, .service-list { border-radius: 12px; }
  .service { min-height: auto; padding: 22px 18px; }
  .service span { margin-bottom: 28px; }

  .about__list div { grid-template-columns: 36px 1fr; gap: 12px; }

  .steps__list li, .process-list li { min-height: auto; padding: 22px 18px; }

  .reviews { grid-template-columns: 1fr; gap: 14px; }
  .review-card, .review-form { padding: 20px; border-radius: 12px; }

  input, select, textarea { font-size: 16px; min-height: 46px; }

  .rating-picker button { width: 40px; height: 40px; font-size: 32px; }

  .contacts__card, .contact-card { padding: 20px; border-radius: 12px; }
  .contacts__card a { font-size: 20px; }

  .footer { flex-direction: column; padding: 20px 14px; }
}

/* ── Stats bar ── */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stats-bar__item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 28px 24px;
  background: var(--surface);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.stats-bar__item.is-revealed {
  opacity: 1;
  transform: none;
}

.stats-bar__item:nth-child(2) { transition-delay: 0.08s; }
.stats-bar__item:nth-child(3) { transition-delay: 0.16s; }
.stats-bar__item:nth-child(4) { transition-delay: 0.24s; }

.stats-bar__item strong {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--accent);
  line-height: 1;
}

.stats-bar__item span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
}

/* ── Brands bar ── */
.brands-bar {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  padding: 18px clamp(16px, 5vw, 72px);
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}

.brands-bar__label {
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
}

.brands-bar__list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.brands-bar__list span {
  padding: 6px 14px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: color 0.18s, border-color 0.18s;
}

.brands-bar__list span:hover {
  color: var(--text);
  border-color: var(--muted);
}

/* ── Service icon ── */
.service__icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  background: var(--accent-bg);
  border: 1px solid rgba(240,165,0,0.2);
  border-radius: 10px;
  color: var(--accent);
  margin-bottom: 20px;
}

/* ── Guarantee banner ── */
.guarantee {
  padding: 0 clamp(16px, 5vw, 72px);
  border-top: 1px solid var(--border);
}

.guarantee__inner {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 36px 40px;
  background: linear-gradient(135deg, rgba(240,165,0,0.12) 0%, rgba(240,165,0,0.04) 100%);
  border: 1px solid rgba(240,165,0,0.25);
  border-radius: 16px;
}

.guarantee__icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  background: rgba(240,165,0,0.15);
  border: 1px solid rgba(240,165,0,0.3);
  border-radius: 14px;
  color: var(--accent);
  flex-shrink: 0;
}

.guarantee__text { flex: 1; }

.guarantee__text strong {
  display: block;
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}

.guarantee__text p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

.guarantee .btn { flex-shrink: 0; white-space: nowrap; }

/* ── Scroll reveal ── */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

[data-reveal].is-revealed {
  opacity: 1;
  transform: none;
}

/* ── FAQ ── */
.faq-list {
  display: grid;
  gap: 8px;
  max-width: 860px;
}

.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.2s;
}

.faq-item[open] { border-color: rgba(240,165,0,0.3); }

.faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  user-select: none;
  transition: color 0.18s;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  font-size: 22px;
  font-weight: 300;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform 0.25s ease;
  line-height: 1;
}

.faq-item[open] summary::after { transform: rotate(45deg); }

.faq-item summary:hover { color: var(--accent); }

.faq-item__body {
  padding: 0 24px 20px;
  border-top: 1px solid var(--border);
}

.faq-item__body p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
  margin: 16px 0 0;
}

/* ── Floating call button ── */
.fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 100;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  background: var(--accent);
  color: #000;
  border-radius: 50%;
  box-shadow: 0 8px 32px rgba(240,165,0,0.45);
  transition: transform 0.2s, box-shadow 0.2s;
}

.fab:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 40px rgba(240,165,0,0.6);
}

/* ── Responsive additions ── */
@media (max-width: 1040px) {
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .guarantee__inner { flex-wrap: wrap; gap: 20px; }
}

@media (max-width: 640px) {
  .stats-bar { grid-template-columns: repeat(2, 1fr); }
  .stats-bar__item { padding: 20px 16px; }

  .brands-bar { padding: 14px 14px; gap: 12px; }

  .guarantee { padding: 0 14px; }
  .guarantee__inner { padding: 24px 20px; gap: 16px; }
  .guarantee__icon { width: 46px; height: 46px; }
  .guarantee__text strong { font-size: 15px; }

  .faq-item summary { padding: 16px 18px; font-size: 15px; }
  .faq-item__body { padding: 0 18px 16px; }

  .fab { bottom: 20px; right: 16px; width: 50px; height: 50px; }
}

/* ── Reviews pagination ── */
.reviews__pagination {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.page-btn {
  min-width: 38px;
  height: 38px;
  padding: 0 12px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: color 0.18s, border-color 0.18s, background 0.18s;
}

.page-btn:hover {
  color: var(--text);
  border-color: var(--muted);
}

.page-btn.is-active {
  color: #000;
  background: var(--accent);
  border-color: var(--accent);
}
