/* Single-page: mini loader rental — Astana */
:root {
  --bg: #ffffff;
  --bg-elev: #f4f6f9;
  --bg-card: #ffffff;
  --border: rgba(15, 23, 42, 0.1);
  --text: #141922;
  --muted: #5a6570;
  --accent: #c78a0a;
  --accent-dim: #9a6d08;
  --accent-glow: rgba(199, 138, 10, 0.2);
  --font: "Onest", system-ui, sans-serif;
  --radius: 12px;
  --radius-sm: 8px;
  --header-h: 96px;
  --max: 1120px;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  color-scheme: light;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.55;
  color: var(--text);
  background: var(--bg);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -100px;
  z-index: 1000;
  padding: 0.75rem 1rem;
  background: var(--accent);
  color: #111;
  font-weight: 600;
  border-radius: var(--radius-sm);
  text-decoration: none;
}

.skip-link:focus {
  top: 12px;
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.narrow {
  max-width: 720px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: var(--header-h);
  height: auto;
  padding-block: 0.35rem;
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
}
.header-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem 0.75rem;
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--text);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  flex: 1 1 auto;
  min-width: 0;
}

.logo-img {
  height: 52px;
  width: auto;
  max-width: min(160px, 38vw);
  object-fit: contain;
  object-position: center;
  flex-shrink: 0;
  display: block;
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.12));
}
@media (max-width: 400px) {
  .logo-img {
    height: 44px;
    max-width: 120px;
  }
}

.header-contacts {
  flex: 1 1 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.5rem 0.65rem;
}

.contact-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.4rem 0.85rem;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 999px;
  border: 1px solid var(--border);
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.contact-chip--phone {
  color: var(--text);
  background: var(--bg-elev);
}

.contact-chip--phone:hover,
.contact-chip--phone:focus-visible {
  border-color: var(--accent);
  background: #fff9e8;
}

.contact-chip--wa {
  color: #0a5c2e;
  background: rgba(37, 211, 102, 0.12);
  border-color: rgba(37, 211, 102, 0.35);
}

.contact-chip--wa:hover,
.contact-chip--wa:focus-visible {
  background: rgba(37, 211, 102, 0.2);
  border-color: rgba(37, 211, 102, 0.5);
}
@media (min-width: 901px) {
  .header-inner {
    flex-wrap: nowrap;
    gap: 1rem 1.25rem;
  }

  .logo {
    flex: 0 0 auto;
    order: 1;
  }

  .site-nav {
    order: 2;
    flex: 1 1 auto;
    display: flex;
    justify-content: center;
    min-width: 0;
  }

  .header-contacts {
    order: 3;
    flex: 0 0 auto;
    width: auto;
    justify-content: flex-end;
  }

  .nav-toggle {
    display: none !important;
  }
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.logo-accent {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.site-nav {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.25rem 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.15s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
}

.nav-cta {
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--accent);
  color: var(--accent) !important;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  background: rgba(199, 138, 10, 0.1);
  color: var(--accent) !important;
}
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg-card);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  position: relative;
}

.nav-toggle-bar {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  border-radius: 1px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

body.nav-open .nav-toggle .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

body.nav-open .nav-toggle .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

body.nav-open .nav-toggle .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 900px) {
  .nav-toggle {
    display: flex;
    flex: 0 0 44px;
    margin-left: auto;
    order: 2;
  }

  .logo {
    order: 1;
  }

  .header-contacts {
    order: 3;
  }

  .site-nav {
    order: 4;
    position: fixed;
    z-index: 40;
    inset: var(--header-h) 0 0 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: -8px 0 32px rgba(15, 23, 42, 0.08);
    padding: 1.5rem;    transform: translateX(100%);
    transition: transform 0.25s ease;
    align-items: flex-start;
    justify-content: flex-start;
  }

  .site-nav.is-open {
    transform: translateX(0);
  }

  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .site-nav a {
    font-size: 1.1rem;
  }
}

@media (min-width: 901px) {
  .site-nav {
    position: static;
    transform: none !important;
    background: transparent !important;
    padding: 0 !important;
    align-items: center;
    justify-content: center;
  }

  .nav-list {
    flex-direction: row;
  }
}

/* Hero */
.hero {
  position: relative;
  padding: clamp(3rem, 8vw, 5.5rem) 0 clamp(4rem, 10vw, 6rem);
  overflow: hidden;
  min-height: min(70vh, 38rem);
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-color: #1a1d22;
  background-image:
    linear-gradient(
      105deg,
      rgba(0, 0, 0, 0.55) 0%,
      rgba(0, 0, 0, 0.35) 26%,
      rgba(0, 0, 0, 0.12) 48%,
      rgba(0, 0, 0, 0.04) 68%,
      transparent 85%
    ),
    linear-gradient(90deg, transparent 0%, transparent 50%, rgba(255, 255, 255, 0.04) 100%),
    url("img/hero-bg.jpg");
  background-size: cover;
  background-position: 58% center;
  background-repeat: no-repeat;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.2;
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 1;
}

.hero-panel {
  max-width: 42rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 1.5rem 1.5rem 1.55rem;
  background: rgba(12, 14, 20, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  box-shadow:
    0 8px 40px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.hero-panel .hero-eyebrow {
  margin: 0;
}

.hero-panel .hero-title {
  margin: 0;
}

.hero-panel .hero-lead {
  margin: 0;
}

.hero-panel .hero-tags {
  margin: 0;
}

.hero-panel .hero-actions {
  margin: 0;
}

.hero-eyebrow {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #ffd073;
}

.hero-title {
  font-size: clamp(1.85rem, 5vw, 2.85rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.03em;
  max-width: none;
  color: #ffffff;
}

.hero .text-highlight {
  color: #ffb24d;
}

.hero-lead {
  max-width: none;
  color: #e8eef5;
  font-size: 1.125rem;
  line-height: 1.62;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
}

.hero-tags li {
  padding: 0.4rem 0.8rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: #f0f4f8;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-actions .btn-ghost {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.06);
}

.hero-actions .btn-ghost:hover,
.hero-actions .btn-ghost:focus-visible {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.16);
}

@media (max-width: 640px) {
  .hero-bg {
    background-image:
      linear-gradient(180deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.28) 40%, rgba(0, 0, 0, 0.08) 75%),
      linear-gradient(105deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.22) 50%, transparent 78%),
      url("img/hero-bg.jpg");
    background-position: 55% center;
  }

  .hero-panel {
    padding: 1.2rem 1.15rem 1.35rem;
    gap: 1.1rem;
    max-width: none;
  }

  .hero-lead {
    font-size: 1.05rem;
  }
}

@media (prefers-reduced-transparency: reduce) {
  .hero-panel {
    background: rgba(12, 14, 20, 0.96);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.35rem;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease, transform 0.1s ease;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: var(--accent);
  color: #141210;
  border-color: var(--accent);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: #f0b435;
  border-color: #f0b435;
  color: #141210;
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  border-color: rgba(15, 23, 42, 0.25);
  background: var(--bg-elev);
}
.btn-lg {
  padding: 1rem 1.5rem;
  font-size: 1.05rem;
}

/* Strip */
.strip {
  border-block: 1px solid var(--border);
  background: var(--bg-elev);
}

.strip-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding: 1.25rem 0;
}

.strip-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.strip-item strong {
  color: var(--text);
  font-size: 0.95rem;
}

@media (max-width: 640px) {
  .strip-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

/* Sections */
.section {
  padding: clamp(3rem, 6vw, 4.5rem) 0;
}

.section-alt {
  background: var(--bg-elev);
}

.section-head {
  margin-bottom: 2rem;
  max-width: 640px;
}

.section-head h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
}

.section-sub {
  margin: 0;
  color: var(--muted);
}

/* «Что делаем» — акцентная секция */
.section-services {
  position: relative;
  background:
    radial-gradient(1200px 400px at 12% -10%, rgba(199, 138, 10, 0.09), transparent 55%),
    radial-gradient(900px 360px at 88% 110%, rgba(15, 23, 42, 0.04), transparent 50%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-elev) 42%, var(--bg) 100%);
}

.section-services::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(15, 23, 42, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.03) 1px, transparent 1px);
  background-size: 56px 56px;
  opacity: 0.45;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(180deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.section-head-services {
  position: relative;
  z-index: 1;
  margin-inline: auto;
  text-align: center;
  max-width: 38rem;
}

.section-head-services h2 {
  position: relative;
  display: inline-block;
}

.section-head-services h2::after {
  content: "";
  display: block;
  width: 3rem;
  height: 3px;
  margin: 0.65rem auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), rgba(199, 138, 10, 0.15));
}

.section-services .container {
  position: relative;
  z-index: 1;
}

.cards {
  display: grid;
  gap: 1rem;
}

.cards-4 {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.card {
  padding: 1.35rem 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.card--media {
  padding: 0;
  overflow: hidden;
}

.card-media {
  position: relative;
  aspect-ratio: 16 / 10;
  background: var(--bg-elev);
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card-body {
  padding: 1.1rem 1.2rem 1.25rem;
}

.card:hover {
  border-color: rgba(199, 138, 10, 0.45);
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.08);
}
.card-title {
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--accent);
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

/* «Что делаем»: сетка карточек с фото (10 услуг) */
.cards-services-grid {
  position: relative;
  z-index: 1;
  grid-template-columns: 1fr;
  gap: 1.35rem;
}

@media (min-width: 520px) {
  .cards-services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 768px) {
  .cards-services-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.3rem 1.2rem;
  }
}

@media (min-width: 1100px) {
  .cards-services-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1.25rem 1.1rem;
  }
}

.section-services .service-card {
  background: linear-gradient(165deg, #ffffff 0%, #f8fafc 55%, #f4f6f9 100%);
  border: 1px solid rgba(15, 23, 42, 0.1);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 10px 40px rgba(15, 23, 42, 0.08);
}

.section-services .service-card:hover {
  border-color: rgba(199, 138, 10, 0.45);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 18px 48px rgba(15, 23, 42, 0.12);
}

.section-services .service-card .card-media {
  aspect-ratio: 5 / 4;
  position: relative;
}

.section-services .service-card .card-media::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 38%;
  background: linear-gradient(to top, rgba(12, 14, 20, 0.45), transparent);
  pointer-events: none;
  opacity: 0.85;
}

.section-services .service-card .card-body {
  padding: 1rem 1rem 1.15rem;
  text-align: center;
}

.section-services .service-card .card-title {
  margin: 0;
  font-size: clamp(0.88rem, 1.35vw, 1.05rem);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: var(--text);
  text-wrap: balance;
}

.section-services .service-card.card-showcase::before {
  height: 5px;
  background: linear-gradient(90deg, var(--accent-dim), var(--accent) 40%, #f5d78a);
}

@media (prefers-reduced-motion: reduce) {
  .section-services .service-card .card-media::after {
    opacity: 0.55;
  }
}

.card-showcase {
  position: relative;
  border-radius: 16px;
  border: 1px solid var(--border);
  box-shadow: 0 6px 28px rgba(15, 23, 42, 0.07);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.18s ease;
}

.card-showcase::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  right: 0;
  height: 4px;
  border-radius: 16px 16px 0 0;
  background: linear-gradient(90deg, var(--accent), #f0b435);
  z-index: 2;
  pointer-events: none;
}

.card-showcase .card-media img {
  transition: transform 0.4s ease;
}

.card-showcase:hover {
  transform: translateY(-5px);
  border-color: rgba(199, 138, 10, 0.42);
  box-shadow: 0 16px 44px rgba(15, 23, 42, 0.12);
}

.card-showcase:hover .card-media img {
  transform: scale(1.045);
}

.card-showcase .card-body {
  padding: 1.2rem 1.3rem 1.35rem;
}

.card-showcase .card-title {
  font-size: 1.18rem;
}

@media (prefers-reduced-motion: reduce) {
  .card-showcase,
  .card-showcase .card-media img,
  .adv-card {
    transition: none !important;
  }

  .card-showcase:hover,
  .adv-card:hover {
    transform: none;
  }

  .card-showcase:hover .card-media img {
    transform: none;
  }
}

.work-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 0.65rem 1.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.work-list li {
  position: relative;
  padding-left: 1.35rem;
  color: var(--muted);
}

.work-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--accent);
  opacity: 0.85;
}

.equipment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 0.75rem;
}

.equipment-grid--media {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

/* Навесное: ровно 5 позиций в ряд на широком экране */
.equipment-grid--5 {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.85rem 1rem;
}

@media (max-width: 900px) {
  .equipment-grid--5 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .equipment-grid--5 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
  }
}

@media (max-width: 360px) {
  .equipment-grid--5 {
    grid-template-columns: 1fr;
  }
}

.equipment-card {
  margin: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.equipment-card:hover {
  border-color: rgba(199, 138, 10, 0.45);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}
.equipment-media {
  aspect-ratio: 4 / 3;
  background: var(--bg-elev);
}

.equipment-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.equipment-title {
  margin: 0;
  padding: 0.85rem 1rem;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  color: var(--text);
}

.note {
  margin: 1.25rem 0 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.section-head-adv {
  max-width: 40rem;
}

.advantages {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
}

.advantages-showcase {
  grid-template-columns: 1fr;
  gap: 1.1rem;
}

@media (min-width: 720px) {
  .advantages-showcase {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1100px) {
  .advantages-showcase {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.2rem;
  }
}

.adv {
  padding: 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.adv-card {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 1rem 1.1rem;
  padding: 1.35rem 1.35rem 1.4rem 1.25rem;
  border-radius: 16px;
  background: linear-gradient(145deg, #ffffff 0%, var(--bg-elev) 100%);
  border: 1px solid rgba(15, 23, 42, 0.09);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.85) inset,
    0 10px 32px rgba(15, 23, 42, 0.07);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.18s ease;
}

.adv-card::after {
  content: "";
  position: absolute;
  inset: auto -40% -55% auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(199, 138, 10, 0.12), transparent 68%);
  pointer-events: none;
}

.adv-card:hover {
  transform: translateY(-3px);
  border-color: rgba(199, 138, 10, 0.35);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 16px 40px rgba(15, 23, 42, 0.11);
}

.adv-badge {
  display: grid;
  place-items: center;
  width: 2.85rem;
  height: 2.85rem;
  flex-shrink: 0;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #1a1206;
  background: linear-gradient(145deg, #f0b435, var(--accent));
  border-radius: 12px;
  box-shadow: 0 6px 18px var(--accent-glow);
}

.adv-body {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  min-width: 0;
}

.adv-body strong {
  font-size: 1.06rem;
  color: var(--text);
  line-height: 1.25;
}

.adv-body span {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.5;
}

.adv-num {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.08em;
}

.adv strong {
  font-size: 1.05rem;
  color: var(--text);
}

.adv span:last-child {
  font-size: 0.9rem;
  color: var(--muted);
}

.about p {
  color: var(--muted);
  margin: 0 0 1rem;
}

.about p:last-child {
  margin-bottom: 0;
}

.container.narrow.about-seo-inner {
  max-width: min(100% - 2rem, 46rem);
}

.section-head-about {
  margin-bottom: 1.5rem;
}

.about-seo-copy p {
  color: var(--muted);
  margin: 0 0 1.05rem;
  font-size: 1.02rem;
  line-height: 1.62;
}

.about-seo-copy p:last-child {
  margin-bottom: 0;
}

.about-seo-copy a {
  color: var(--accent-dim);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(199, 138, 10, 0.35);
  transition: color 0.15s ease, border-color 0.15s ease;
}

.about-seo-copy a:hover,
.about-seo-copy a:focus-visible {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

/* CTA */
.cta-band {
  padding: clamp(2.5rem, 5vw, 3.5rem) 0;
  background: linear-gradient(135deg, rgba(199, 138, 10, 0.1) 0%, var(--bg-elev) 50%, var(--bg) 100%);
  border-top: 1px solid var(--border);
}
.cta-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.cta-title {
  margin: 0 0 0.5rem;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  color: var(--text);
}
.cta-text {
  margin: 0;
  color: var(--muted);
  max-width: 36ch;
}

.cta-contact {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}

@media (max-width: 640px) {
  .cta-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-contact {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-contact .btn {
    width: 100%;
    text-align: center;
  }
}

/* Footer */
.site-footer {
  padding: 2rem 0 2.5rem;
  border-top: 1px solid var(--border);
  background: var(--bg);
}

.footer-inner {
  text-align: center;
}

.footer-brand {
  margin: 0 0 0.5rem;
  font-weight: 600;
}

.footer-contact {
  margin: 0 0 0.65rem;
  font-size: 1rem;
  font-weight: 600;
}

.footer-contact a {
  color: var(--accent);
  text-decoration: none;
}

.footer-contact a:hover,
.footer-contact a:focus-visible {
  text-decoration: underline;
}

.footer-sep {
  margin: 0 0.45rem;
  color: var(--muted);
  font-weight: 400;
}

.footer-meta {
  margin: 0 0 1rem;
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.5;
}

.footer-copy {
  margin: 0;
  font-size: 0.8rem;
  color: var(--muted);
  opacity: 0.85;
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}
