/* ElitePro — чёрный + жёлтый CMYK C0 M22 Y100 K0 */
:root {
  --color-black: #000000;
  --color-yellow: #FFC700;
  --color-yellow-hover: #E6B300;
  --color-yellow-soft: rgba(255, 199, 0, 0.15);
  --color-yellow-muted: rgba(255, 199, 0, 0.08);
  --color-bg: #ffffff;
  --color-surface: #ffffff;
  --color-text: #000000;
  --color-text-muted: rgba(0, 0, 0, 0.55);
  --color-dark: #000000;
  --color-ink: #000000;
  --color-accent: #FFC700;
  --color-accent-hover: #E6B300;
  --color-accent-soft: rgba(255, 199, 0, 0.15);
  --color-border: rgba(0, 0, 0, 0.12);
  --font-sans: 'Plus Jakarta Sans', system-ui, sans-serif;
  --radius: 20px;
  --radius-sm: 12px;
  --radius-xs: 8px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 24px 56px rgba(0, 0, 0, 0.14);
  --shadow-accent: 0 12px 32px rgba(255, 199, 0, 0.35);
  --header-h: 52px;
  --logo-yellow-filter: brightness(0) saturate(100%) invert(76%) sepia(97%) saturate(2476%) hue-rotate(3deg) brightness(101%) contrast(101%);
  --color-whatsapp: #25D366;
  --color-whatsapp-hover: #128C7E;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--color-text);
  background: var(--color-bg);
}

a {
  color: var(--color-black);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--color-yellow-hover);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.97);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 199, 0, 0.15);
  padding: 0;
}

.site-header .wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.site-header .logo img,
.site-footer .logo img {
  height: 36px;
  width: auto;
  display: block;
  -webkit-filter: var(--logo-yellow-filter);
  filter: var(--logo-yellow-filter);
}

.site-footer .logo img {
  height: 44px;
  margin-bottom: 14px;
}

.site-header .nav-instagram {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-xs);
  transition: background 0.2s;
}

.site-header .nav-instagram:hover {
  background: var(--color-yellow-muted);
}

.site-header .nav-instagram img {
  width: 20px;
  height: 20px;
  display: block;
  object-fit: contain;
}

.site-header .nav-main {
  display: flex;
  align-items: center;
  gap: 2px;
}

.site-header .nav-main a {
  color: rgba(255, 255, 255, 0.88);
  padding: 6px 12px;
  border-radius: var(--radius-xs);
  font-weight: 600;
  font-size: 0.88rem;
}

.site-header .nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: nowrap;
}

.site-header .nav-actions a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.82rem;
  font-weight: 500;
}

.site-header .nav-main a:hover,
.site-header .nav-main a.active {
  color: var(--color-yellow);
  background: var(--color-yellow-muted);
}

.site-header .nav-actions a:hover {
  color: var(--color-yellow);
}

.site-header .btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  background: var(--color-yellow);
  color: var(--color-black) !important;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.82rem;
  box-shadow: none;
}

.site-header .btn-wa:hover {
  background: var(--color-yellow-hover);
  color: var(--color-black) !important;
  transform: none;
}

.site-header .btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  background: var(--color-yellow);
  color: var(--color-black) !important;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: var(--shadow-accent);
}

.site-header .btn-cta:hover {
  background: var(--color-yellow-hover);
  color: var(--color-black) !important;
}

.site-header .menu-toggle {
  display: none;
  background: none;
  border: none;
  padding: 6px;
  cursor: pointer;
  color: #fff;
}

.site-header .menu-toggle svg {
  width: 26px;
  height: 26px;
}

@media (max-width: 992px) {
  .site-header .nav-main,
  .site-header .nav-actions .phone-link,
  .site-header .nav-actions .email-link {
    display: none;
  }

  .site-header .menu-toggle {
    display: block;
  }
}

/* Mobile menu */
.nav-mobile {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: min(340px, 100%);
  height: 100vh;
  background: var(--color-surface);
  box-shadow: -12px 0 40px rgba(0, 0, 0, 0.15);
  z-index: 1001;
  padding: 24px;
  overflow-y: auto;
}

.nav-mobile.open {
  display: block;
}

.nav-mobile .close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  color: var(--color-text);
  font-size: 1.25rem;
}

.nav-mobile .nav-main {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  margin-top: 48px;
}

.nav-mobile .nav-main a:hover,
.nav-mobile .nav-main a.active {
  color: var(--color-black);
  background: var(--color-yellow-soft);
}

.nav-mobile .nav-main a {
  padding: 16px 0;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-text);
  font-weight: 600;
}

.nav-mobile .nav-actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  margin-top: 24px;
  gap: 12px;
}

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1000;
}

.nav-overlay.open {
  display: block;
}

/* Layout */
.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 72px 0;
}

.section-dark {
  background: var(--color-ink);
  color: #fff;
}

.section-dark .section-title {
  color: #fff;
}

.section-dark .section-subtitle {
  color: rgba(255, 255, 255, 0.72);
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 800;
  color: var(--color-dark);
  margin: 0 0 12px;
  text-align: center;
  letter-spacing: -0.02em;
}

.section-subtitle {
  text-align: center;
  color: var(--color-text-muted);
  margin: 0 0 48px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.05rem;
}

/* Hero showcase — кастомный слайдер полиграфии */
.hero-showcase {
  position: relative;
  background: var(--color-black);
  color: #fff;
  overflow: visible;
  min-height: 0;
}

.hero-showcase__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  border-radius: 0;
}

.hero-showcase__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 199, 0, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 199, 0, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, #000 20%, transparent 100%);
}

.hero-showcase__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
}

.hero-showcase__blob--1 {
  width: 360px;
  height: 360px;
  background: var(--color-yellow);
  top: -120px;
  right: 10%;
}

.hero-showcase__blob--2 {
  width: 280px;
  height: 280px;
  background: var(--color-yellow);
  bottom: -80px;
  left: 5%;
  opacity: 0.2;
}

.hero-showcase__slides {
  position: relative;
  padding-bottom: 56px;
}

.hero-slide-panel {
  display: none;
  padding: 28px 0 24px;
}

.hero-slide-panel.active {
  display: block;
  animation: heroFadeIn 0.55s ease;
}

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

.hero-showcase__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  min-height: 320px;
  position: relative;
  z-index: 3;
}

.hero-showcase__content {
  position: relative;
  z-index: 5;
}

.hero-showcase__tag {
  display: inline-block;
  padding: 6px 14px;
  background: var(--color-yellow);
  color: var(--color-black);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: 4px;
  margin-bottom: 18px;
}

.hero-showcase__title {
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.1;
  margin: 0 0 16px;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.hero-showcase__title span {
  color: var(--color-yellow);
}

.hero-showcase__lead {
  margin: 0 0 20px;
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
  max-width: 480px;
}

.hero-showcase__chips {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-showcase__chips li {
  padding: 6px 12px;
  border: 1px solid rgba(255, 199, 0, 0.35);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

.hero-showcase__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  position: relative;
  z-index: 10;
}

.hero-showcase__actions .btn {
  padding: 14px 22px;
  font-size: 0.9rem;
  font-weight: 700;
  border-radius: 10px;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.45);
}

.hero-showcase__actions .btn-primary {
  background: var(--color-yellow);
  color: var(--color-black);
  border: 2px solid var(--color-yellow);
}

.hero-showcase__actions .btn-primary:hover {
  background: var(--color-yellow-hover);
  border-color: var(--color-yellow-hover);
  color: var(--color-black);
}

.btn-ghost {
  background: var(--color-black);
  color: var(--color-yellow);
  border: 2px solid var(--color-yellow);
}

.btn-ghost:hover {
  background: var(--color-yellow);
  color: var(--color-black);
}

.hero-showcase__visual--single {
  min-height: 280px;
  border-radius: 14px;
  overflow: hidden;
  border: 2px solid rgba(255, 199, 0, 0.3);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
}

.hero-showcase__visual--single img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  display: block;
}

.hero-showcase__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: 48px;
  height: 48px;
  border: 2px solid var(--color-yellow);
  border-radius: 50%;
  background: #000;
  color: var(--color-yellow);
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
  transition: background 0.2s, color 0.2s, transform 0.2s;
}

.hero-showcase__arrow:hover {
  background: var(--color-yellow);
  color: var(--color-black);
  transform: translateY(-50%) scale(1.05);
}

.hero-showcase__arrow--prev { left: 12px; }
.hero-showcase__arrow--next { right: 12px; }

/* Product stage — витрина брендированной продукции */
.hero-showcase__visual {
  position: relative;
  min-height: 300px;
}

.product-stage {
  position: relative;
  width: 100%;
  height: 320px;
}

.product-card {
  position: absolute;
  margin: 0;
  background: #111;
  border-radius: 14px;
  overflow: hidden;
  border: 2px solid rgba(255, 199, 0, 0.25);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
  opacity: 0;
  will-change: transform, opacity;
}

.product-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-card figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 8px 12px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-yellow);
}

.product-card--main {
  width: 58%;
  height: 72%;
  top: 14%;
  left: 22%;
  z-index: 3;
}

.product-card--s1 {
  width: 32%;
  height: 38%;
  top: 0;
  left: 0;
  z-index: 2;
}

.product-card--s2 {
  width: 30%;
  height: 36%;
  top: 8%;
  right: 0;
  z-index: 2;
}

.product-card--s3 {
  width: 34%;
  height: 40%;
  bottom: 0;
  left: 8%;
  z-index: 4;
}

.hero-slide-panel.active .product-card--main {
  animation:
    cardRevealMain 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards,
    floatMain 5s ease-in-out 0.8s infinite;
}

.hero-slide-panel.active .product-card--s1 {
  animation:
    cardRevealS1 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.12s forwards,
    floatS1 6s ease-in-out 0.87s infinite;
}

.hero-slide-panel.active .product-card--s2 {
  animation:
    cardRevealS2 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.22s forwards,
    floatS2 5.5s ease-in-out 0.97s infinite;
}

.hero-slide-panel.active .product-card--s3 {
  animation:
    cardRevealS3 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.34s forwards,
    floatS3 6.5s ease-in-out 1.14s infinite;
}

@keyframes cardRevealMain {
  from {
    opacity: 0;
    transform: translateX(90px) scale(0.82) rotate(5deg);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1) rotate(0deg);
  }
}

@keyframes cardRevealS1 {
  from {
    opacity: 0;
    transform: translate(-70px, -50px) scale(0.65) rotate(-12deg);
  }
  to {
    opacity: 1;
    transform: translateY(0) rotate(-2deg);
  }
}

@keyframes cardRevealS2 {
  from {
    opacity: 0;
    transform: translate(70px, -45px) scale(0.65) rotate(12deg);
  }
  to {
    opacity: 1;
    transform: translateY(0) rotate(2deg);
  }
}

@keyframes cardRevealS3 {
  from {
    opacity: 0;
    transform: translateY(80px) scale(0.7) rotate(-6deg);
  }
  to {
    opacity: 1;
    transform: translateY(0) rotate(1deg);
  }
}

@keyframes floatMain {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(0.5deg); }
}

@keyframes floatS1 {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-8px) rotate(-1deg); }
}

@keyframes floatS2 {
  0%, 100% { transform: translateY(0) rotate(2deg); }
  50% { transform: translateY(-12px) rotate(3deg); }
}

@keyframes floatS3 {
  0%, 100% { transform: translateY(0) rotate(1deg); }
  50% { transform: translateY(-6px) rotate(-1deg); }
}

/* Footer слайдера */
.hero-showcase__footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  border-top: 1px solid rgba(255, 199, 0, 0.15);
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  z-index: 5;
}

.hero-showcase__footer-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  gap: 16px;
}

.hero-showcase__dots {
  display: flex;
  gap: 8px;
}

.hero-showcase__dot {
  width: 24px;
  height: 4px;
  border: none;
  border-radius: 2px;
  padding: 0;
  background: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: background 0.25s, width 0.25s;
}

.hero-showcase__dot.active {
  background: var(--color-yellow);
  width: 48px;
}

@media (max-width: 900px) {
  .hero-showcase__inner {
    grid-template-columns: 1fr;
    gap: 28px;
    min-height: auto;
  }

  .hero-showcase__visual {
    min-height: 240px;
  }

  .product-stage {
    height: 240px;
  }

  .hero-showcase__lead {
    max-width: none;
  }
}

@media (max-width: 768px) {
  .hero-showcase__slides {
    padding-bottom: 0;
  }

  .hero-showcase {
    min-height: auto;
    overflow: hidden;
  }

  .hero-slide-panel {
    position: relative;
    overflow: hidden;
    padding: 0 0 28px;
  }

  .hero-showcase__inner {
    display: block;
    position: relative;
    min-height: auto;
    padding-top: 12px;
    padding-bottom: 0;
  }

  .hero-showcase__visual {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 100vw;
    margin-left: -50vw;
    min-height: 100%;
    z-index: 0;
  }

  .product-stage {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }

  .product-card,
  .product-card--s1,
  .product-card--s2,
  .product-card--s3 {
    display: none !important;
    animation: none !important;
  }

  .product-card--main {
    display: block !important;
    position: absolute;
    inset: 0;
    width: 100% !important;
    height: 100% !important;
    top: 0 !important;
    left: 0 !important;
    margin: 0;
    border: none;
    border-radius: 0;
    box-shadow: none;
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }

  .product-card--main img {
    width: 100%;
    height: 100%;
    min-height: 100%;
    object-fit: cover;
  }

  .product-card--main figcaption {
    display: none;
  }

  .hero-showcase__inner::before {
    content: "";
    position: absolute;
    inset: 0;
    left: 50%;
    width: 100vw;
    margin-left: -50vw;
    z-index: 1;
    background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.9) 0%,
      rgba(0, 0, 0, 0.7) 42%,
      rgba(0, 0, 0, 0.85) 100%
    );
    pointer-events: none;
  }

  .hero-showcase__content {
    position: relative;
    z-index: 2;
  }

  .hero-showcase__tag {
    margin-bottom: 10px;
  }

  .hero-showcase__title {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }

  .hero-showcase__lead {
    margin-bottom: 12px;
    font-size: 0.92rem;
    line-height: 1.5;
  }

  .hero-showcase__title,
  .hero-showcase__lead {
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.55);
  }

  .hero-showcase__chips {
    margin-bottom: 10px;
    gap: 6px;
  }

  .hero-showcase__chips li {
    font-size: 0.72rem;
    padding: 4px 10px;
    background: rgba(0, 0, 0, 0.35);
  }

  .hero-showcase__actions {
    gap: 0;
    margin-bottom: 0;
  }

  .hero-showcase__actions .btn-ghost {
    display: none;
  }

  .hero-showcase__actions .btn {
    width: 100%;
    justify-content: center;
    text-align: center;
    padding: 11px 16px;
  }

  .hero-showcase__footer-inner {
    padding: 6px 16px;
  }

  .hero-showcase__arrow {
    display: none;
  }

  .hero-showcase__dots {
    flex-wrap: wrap;
    justify-content: center;
    max-width: 200px;
  }

  .hero-showcase__dot {
    width: 20px;
  }

  .hero-showcase__dot.active {
    width: 28px;
  }

  .hero-showcase__visual--single img {
    min-height: 100%;
  }
}

/* Legacy hero-banner (unused) */
.hero-banner {
  display: none;
}

.hero-banner img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
}

.hero-banner__cta {
  position: absolute;
  bottom: 14px;
  right: 16px;
  z-index: 2;
  display: flex;
  gap: 8px;
}

.hero-banner__cta .btn-sm {
  padding: 8px 16px;
  font-size: 0.82rem;
  border-radius: 8px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hero-banner__cta .btn-wa-sm {
  background: var(--color-yellow);
  color: var(--color-black);
}

.hero-banner__cta .btn-wa-sm:hover {
  color: var(--color-black);
  background: var(--color-yellow-hover);
}

.hero-banner__cta .btn-call-sm {
  background: transparent;
  color: var(--color-yellow);
  border: 2px solid var(--color-yellow);
}

.hero-banner__cta .btn-call-sm:hover {
  background: var(--color-yellow);
  color: var(--color-black);
}

@media (max-width: 768px) {
  .hero-banner__cta {
    left: 12px;
    right: 12px;
    bottom: 10px;
    justify-content: center;
  }

  .hero-banner__cta .btn-call-sm {
    display: none;
  }
}

/* Legacy hero (inner pages) */
.hero {
  position: relative;
  min-height: min(88vh, 760px);
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.72) 45%, rgba(0, 0, 0, 0.55) 100%),
    url('../img/slide2.jpg') center / cover no-repeat;
}

.hero .wrap {
  position: relative;
  z-index: 1;
  padding-top: 48px;
  padding-bottom: 48px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 20px;
  backdrop-filter: blur(8px);
}

.hero-eyebrow .dot {
  width: 8px;
  height: 8px;
  background: var(--color-yellow);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  margin: 0 0 20px;
  letter-spacing: -0.03em;
  line-height: 1.12;
  max-width: 720px;
}

.hero h1 span {
  color: var(--color-yellow);
}

.hero .lead {
  font-size: clamp(1rem, 2vw, 1.2rem);
  opacity: 0.92;
  margin: 0 0 32px;
  max-width: 560px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 40px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
  text-decoration: none;
}

.btn-primary {
  background: var(--color-yellow);
  color: var(--color-black);
  box-shadow: var(--shadow-accent);
}

.btn-primary:hover {
  background: var(--color-yellow-hover);
  color: var(--color-black);
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(255, 199, 0, 0.4);
}

.btn-wa-lg {
  background: var(--color-yellow);
  color: var(--color-black);
  box-shadow: var(--shadow-accent);
}

.btn-wa-lg:hover {
  background: var(--color-yellow-hover);
  color: var(--color-black);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.65);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: #fff;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 40px;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-trust-item .num {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--color-yellow);
  line-height: 1;
}

.hero-trust-item .label {
  font-size: 0.85rem;
  opacity: 0.85;
  line-height: 1.35;
}

/* Stats strip */
.stats-strip {
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
  padding: 28px 0;
  margin-top: -1px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-item .value {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--color-black);
  margin-bottom: 4px;
  background: var(--color-yellow);
  display: inline-block;
  padding: 2px 12px;
  border-radius: 6px;
}

.stat-item .desc {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--color-surface);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.25s, box-shadow 0.25s;
  display: flex;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
  height: 100%;
  border: 1px solid transparent;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  color: inherit;
  border-color: var(--color-accent-soft);
}

.service-card .thumb {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.service-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s;
}

.service-card:hover .thumb img {
  transform: scale(1.08);
}

.service-card .badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 5px 12px;
  background: var(--color-yellow);
  color: var(--color-black);
  font-size: 0.72rem;
  font-weight: 700;
  border-radius: 999px;
  letter-spacing: 0.06em;
}

.service-card .body {
  padding: 22px 22px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card .body h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0 0 10px;
  color: var(--color-dark);
}

.service-card .body p {
  margin: 0 0 16px;
  font-size: 0.92rem;
  color: var(--color-text-muted);
  line-height: 1.55;
  flex: 1;
}

.service-card .link-arrow {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--color-black);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.service-card:hover .link-arrow {
  color: var(--color-yellow-hover);
}

/* Section bands — стилистика шапки */
.section-band {
  position: relative;
  overflow: hidden;
}

.section-band--dark {
  background: var(--color-black);
  color: #fff;
}

.section-band--dark .section-title {
  color: #fff;
}

.section-band--dark .section-subtitle {
  color: rgba(255, 255, 255, 0.65);
}

.section-band--compact {
  padding-top: 56px;
  padding-bottom: 56px;
}

.section-band--contacts {
  border-top: 1px solid rgba(255, 199, 0, 0.15);
}

.section-band__grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 199, 0, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 199, 0, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, #000 0%, transparent 100%);
  opacity: 0.8;
}

.section-band .wrap {
  position: relative;
  z-index: 1;
}

.section-head {
  text-align: center;
  margin-bottom: 48px;
}

.section-head__tag {
  display: inline-block;
  padding: 5px 14px;
  background: var(--color-yellow);
  color: var(--color-black);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 4px;
  margin-bottom: 16px;
}

.section-band--dark .section-head .section-title {
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.section-band--dark .section-head .section-title::after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: var(--color-yellow);
  margin: 14px auto 0;
  border-radius: 2px;
}

/* Process */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
}

.process-grid::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 16%;
  right: 16%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-yellow), transparent);
  opacity: 0.4;
  z-index: 0;
}

.process-step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.process-step__num {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-black);
  border: 2px solid var(--color-yellow);
  color: var(--color-yellow);
  font-size: 1.35rem;
  font-weight: 800;
  border-radius: 50%;
  margin-bottom: 20px;
  box-shadow: 0 0 24px rgba(255, 199, 0, 0.15);
}

.process-step__body {
  background: #0d0d0d;
  border: 1px solid rgba(255, 199, 0, 0.2);
  border-radius: 14px;
  padding: 24px 20px;
  width: 100%;
  transition: border-color 0.25s, transform 0.25s;
}

.process-step:hover .process-step__body {
  border-color: var(--color-yellow);
  transform: translateY(-4px);
}

.process-step h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 10px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.process-step p {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .process-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .process-grid::before {
    display: none;
  }
}

/* Intro block */
.intro-block {
  background: #0d0d0d;
  border-radius: 16px;
  padding: 40px 44px;
  border: 1px solid rgba(255, 199, 0, 0.25);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4);
}

.intro-block h2 {
  font-size: clamp(1.4rem, 3vw, 1.85rem);
  font-weight: 800;
  margin: 0 0 20px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.intro-block p {
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.65;
}

.intro-block strong {
  color: var(--color-yellow);
  font-weight: 700;
}

.intro-block__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 32px;
  margin: 20px 0;
}

@media (max-width: 768px) {
  .intro-block__cols {
    grid-template-columns: 1fr;
  }

  .intro-block {
    padding: 28px 24px;
  }
}

.intro-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 199, 0, 0.15);
}

.intro-tags span {
  padding: 7px 14px;
  background: transparent;
  color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 199, 0, 0.4);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  transition: background 0.2s, color 0.2s;
}

.intro-tags span:hover {
  background: var(--color-yellow);
  color: var(--color-black);
}

/* Advantages */
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.advantage-card {
  background: #0d0d0d;
  border-radius: 14px;
  padding: 28px 22px;
  text-align: center;
  border: 1px solid rgba(255, 199, 0, 0.15);
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}

.advantage-card:hover {
  transform: translateY(-6px);
  border-color: var(--color-yellow);
  box-shadow: 0 16px 40px rgba(255, 199, 0, 0.1);
}

.advantage-card .icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 16px;
  background: var(--color-yellow);
  color: var(--color-black);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.advantage-card h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin: 0 0 10px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.advantage-card p {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.55;
}

@media (max-width: 992px) {
  .advantages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .advantages-grid {
    grid-template-columns: 1fr;
  }
}

/* Portfolio preview */
.portfolio-preview {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.portfolio-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 1;
  border: 2px solid rgba(255, 199, 0, 0.15);
  transition: border-color 0.3s, transform 0.3s;
}

.portfolio-item:hover {
  border-color: var(--color-yellow);
  transform: translateY(-4px);
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.portfolio-item:hover img {
  transform: scale(1.06);
}

.portfolio-item .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.92) 0%, transparent 55%);
  display: flex;
  align-items: flex-end;
  padding: 16px;
  opacity: 0;
  transition: opacity 0.3s;
}

.portfolio-item:hover .overlay {
  opacity: 1;
}

.portfolio-item .overlay span {
  color: var(--color-yellow);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

@media (max-width: 768px) {
  .portfolio-preview {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* CTA banner */
.cta-banner {
  position: relative;
  background: #0d0d0d;
  border-radius: 16px;
  padding: 48px 40px;
  text-align: center;
  color: #fff;
  border: 2px solid var(--color-yellow);
  overflow: hidden;
}

.cta-banner__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 199, 0, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 199, 0, 0.05) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

.cta-banner .section-head__tag {
  position: relative;
  margin-bottom: 20px;
}

.cta-banner h2 {
  position: relative;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  margin: 0 0 12px;
  color: #fff;
  text-transform: uppercase;
}

.cta-banner p {
  position: relative;
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.05rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.cta-banner .btn {
  position: relative;
}

/* Partners */
.partners-strip {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  align-items: center;
  justify-items: center;
  gap: 16px;
  padding: 32px 24px;
  background: #0d0d0d;
  border: 1px solid rgba(255, 199, 0, 0.15);
  border-radius: 14px;
}

.partners-strip img {
  width: 100%;
  max-width: 170px;
  height: 64px;
  object-fit: contain;
  padding: 12px 16px;
  background: #fff;
  border-radius: 10px;
  border: 1px solid rgba(255, 199, 0, 0.25);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  box-sizing: border-box;
}

.partners-strip img:hover {
  transform: translateY(-4px);
  border-color: var(--color-yellow);
  box-shadow: 0 10px 28px rgba(255, 199, 0, 0.22);
}

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.testimonial-card {
  background: #0d0d0d;
  border-radius: 14px;
  padding: 28px;
  border: 1px solid rgba(255, 199, 0, 0.15);
  display: flex;
  gap: 20px;
  align-items: flex-start;
  position: relative;
  transition: border-color 0.25s;
}

.testimonial-card:hover {
  border-color: rgba(255, 199, 0, 0.4);
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 8px;
  right: 20px;
  font-size: 4rem;
  line-height: 1;
  color: rgba(255, 199, 0, 0.08);
  font-family: Georgia, serif;
}

.testimonial-card .avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid var(--color-yellow);
}

.testimonial-card .stars {
  color: var(--color-yellow);
  font-size: 0.85rem;
  margin-bottom: 8px;
  letter-spacing: 2px;
}

.testimonial-card .name {
  font-weight: 700;
  margin: 0 0 4px;
  color: #fff;
}

.testimonial-card .text {
  margin: 0 0 8px;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
}

.testimonial-card .meta {
  font-size: 0.78rem;
  color: var(--color-yellow);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

@media (max-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

/* Contact section */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 24px;
  align-items: start;
}

.contact-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-card {
  background: #0d0d0d;
  border-radius: 12px;
  padding: 20px;
  border: 1px solid rgba(255, 199, 0, 0.15);
  transition: border-color 0.25s;
}

.contact-card:hover {
  border-color: rgba(255, 199, 0, 0.4);
}

.contact-card h3 {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-yellow);
  margin: 0 0 8px;
}

.contact-card p,
.contact-card a {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.5;
}

.contact-card a:hover {
  color: var(--color-yellow);
}

.contact-map {
  border-radius: 14px;
  overflow: hidden;
  border: 2px solid rgba(255, 199, 0, 0.25);
  min-height: 360px;
  background: #0d0d0d;
  grid-row: span 2;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-map {
    grid-row: auto;
  }

  .contact-info {
    grid-template-columns: 1fr;
  }
}

/* Page hero (inner) */
.page-hero {
  background: var(--color-black);
  color: #fff;
  padding: 56px 0;
  text-align: center;
  border-bottom: 3px solid var(--color-yellow);
}

.page-hero h1 {
  font-size: clamp(1.6rem, 3vw, 2.25rem);
  font-weight: 800;
  margin: 0 0 12px;
  color: var(--color-yellow);
}

.page-hero .lead {
  margin: 0;
  opacity: 0.9;
  font-size: 1.05rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Content cards */
.content-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}

.content-cards a.card {
  display: block;
  text-decoration: none;
  color: inherit;
}

.content-cards .card {
  background: var(--color-surface);
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
  border: none;
}

.content-cards .card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.content-cards .card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.content-cards .card .card-body {
  padding: 16px;
}

.content-cards .card .card-text {
  margin: 0;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-dark);
}

/* Footer */
.site-footer {
  background: var(--color-black);
  color: #fff;
  padding: 56px 0 28px;
  border-top: 3px solid var(--color-yellow);
}

.site-footer a {
  color: rgba(255, 255, 255, 0.85);
}

.site-footer a:hover {
  color: var(--color-yellow);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 36px;
  margin-bottom: 40px;
}

.footer-grid h4 {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin: 0 0 18px;
  color: var(--color-yellow);
}

.footer-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-grid ul li {
  margin-bottom: 10px;
}

.footer-grid ul a {
  font-size: 0.95rem;
}

.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.55);
}

/* Breadcrumbs */
.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.65);
}

.breadcrumbs a {
  color: rgba(255, 255, 255, 0.85);
}

.breadcrumbs a:hover {
  color: var(--color-yellow);
}

.breadcrumbs__sep {
  opacity: 0.45;
  user-select: none;
}

.breadcrumbs__current {
  color: var(--color-yellow);
  font-weight: 600;
}

.section .breadcrumbs {
  color: rgba(0, 0, 0, 0.55);
}

.section .breadcrumbs a {
  color: var(--color-dark);
}

.section .breadcrumbs a:hover {
  color: var(--color-yellow-hover);
}

.section .breadcrumbs__current {
  color: var(--color-dark);
}

/* Articles */
.page-hero--compact {
  padding: 100px 0 40px;
}

.page-hero--compact h1 {
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.article-content {
  max-width: 800px;
  margin: 0 auto;
}

.article-content p {
  margin: 0 0 1.1em;
  line-height: 1.75;
  color: var(--color-text);
}

.article-content a {
  color: var(--color-dark);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: var(--color-yellow);
  text-underline-offset: 3px;
}

.article-content a:hover {
  color: var(--color-yellow-hover);
}

.article-cta {
  margin-top: 32px !important;
}

.articles-hub {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.articles-category .section-title {
  margin-bottom: 20px;
}

.articles-category .section-title a {
  color: var(--color-dark);
}

.articles-category .section-title a:hover {
  color: var(--color-yellow-hover);
}

.articles-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 10px 24px;
}

.articles-list a {
  display: block;
  padding: 8px 0;
  color: var(--color-text);
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.articles-list a:hover {
  color: var(--color-yellow-hover);
  padding-left: 4px;
}

/* Widgets */
.widget-row {
  padding: 20px 0;
  text-align: center;
}

.widget-row--dark {
  background: var(--color-black);
  border-top: 1px solid rgba(255, 199, 0, 0.1);
}

iframe {
  max-width: 100%;
  border: 0;
  border-radius: var(--radius-sm);
}

/* WhatsApp float */
@keyframes wa-float-bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
}

.whatsapp-float a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: var(--color-whatsapp);
  color: #fff;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
  transition: box-shadow 0.2s, background 0.2s;
  border: none;
  animation: wa-float-bounce 2.4s ease-in-out infinite;
}

.whatsapp-float a:hover {
  animation-play-state: paused;
  transform: scale(1.1);
  background: var(--color-whatsapp-hover);
  box-shadow: 0 14px 36px rgba(37, 211, 102, 0.55);
  color: #fff;
}

.whatsapp-float img {
  width: 34px;
  height: 34px;
}

/* Mobile sticky CTA */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 998;
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  padding: 12px 16px;
  gap: 10px;
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.08);
}

.mobile-cta-bar a {
  flex: 1;
  text-align: center;
  padding: 14px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.9rem;
}

.mobile-cta-bar .call-btn {
  background: var(--color-black);
  color: var(--color-yellow) !important;
  border: 2px solid var(--color-black);
}

.mobile-cta-bar .wa-btn {
  background: var(--color-yellow);
  color: var(--color-black) !important;
}

@media (max-width: 768px) {
  .mobile-cta-bar {
    display: flex;
  }

  .whatsapp-float {
    bottom: 80px;
  }

  .section {
    padding: 56px 0;
  }

  .intro-block {
    padding: 28px;
  }

  .cta-banner {
    padding: 32px 24px;
  }

  .hero-trust {
    gap: 20px;
  }
}

/* Utility */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mb-32 { margin-bottom: 32px; }
