/* ═══════════════════════════════════════════════════
   DARKSYNC — styles.css
   Dark cinematic agency website
═══════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

/* ── Reset & Base ─────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --black:        #080808;
  --black-soft:   #0f0f0f;
  --black-card:   #111111;
  --red-main:     #c2410c;
  --red-bright:   #ea580c;
  --red-glow:     rgba(234, 88, 12, 0.18);
  --red-glow-md:  rgba(234, 88, 12, 0.35);
  --amber:        #92400e;
  --amber-light:  #b45309;
  --white:        #ffffff;
  --white-80:     rgba(255,255,255,0.80);
  --white-50:     rgba(255,255,255,0.50);
  --white-20:     rgba(255,255,255,0.20);
  --white-08:     rgba(255,255,255,0.08);
  --white-04:     rgba(255,255,255,0.04);
  --glass-bg:     rgba(255,255,255,0.04);
  --glass-border: rgba(255,255,255,0.08);
  --font-main:    'Space Grotesk', sans-serif;
  --font-display: 'Space Grotesk', sans-serif;
  --nav-h:        72px;
  --radius:       12px;
  --radius-lg:    20px;
  --transition:   0.3s cubic-bezier(0.4,0,0.2,1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--black);
  color: var(--white);
  font-family: var(--font-main);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Fade-in on scroll ──────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Shared layout helpers ──────────────────── */
.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  line-height: 1.1;
}

.section-subtitle {
  color: var(--white-50);
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ══════════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: background var(--transition), backdrop-filter var(--transition), border-color var(--transition);
  border-bottom: 1px solid transparent;
}

.navbar.scrolled {
  background: rgba(8, 8, 8, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--glass-border);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: var(--white);
  flex-shrink: 0;
}
.nav-logo span { color: var(--red-bright); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  margin: 0 auto;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--white-80);
  transition: color var(--transition);
  letter-spacing: 0.01em;
}
.nav-link:hover { color: var(--white); }

.btn-nav {
  flex-shrink: 0;
  padding: 9px 20px;
  border: 1.5px solid var(--red-bright);
  color: var(--red-bright);
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 8px;
  transition: background var(--transition), color var(--transition);
  white-space: nowrap;
}
.btn-nav:hover {
  background: var(--red-bright);
  color: var(--white);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile menu ──────────────────────────── */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(8, 8, 8, 0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}
.mobile-menu ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.mobile-link {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white-80);
  transition: color var(--transition);
}
.mobile-link:hover { color: var(--red-bright); }
.mobile-cta { display: block; }

/* ══════════════════════════════════════════════
   HERO
══════════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--nav-h);
}

/* ── Full-screen video background ─────────── */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 0;
}

/* ── Directional dark overlay ──────────────── */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.88) 0%,
    rgba(0, 0, 0, 0.65) 45%,
    rgba(0, 0, 0, 0.20) 75%,
    rgba(0, 0, 0, 0.05) 100%
  );
  /* Extra bottom fade so scroll indicator is readable */
  -webkit-mask-image: none;
}

/* Bottom fade overlay layer */
.hero-overlay::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(8, 8, 8, 0.7) 0%,
    transparent 35%
  );
}

/* ── Content container ─────────────────────── */
.hero-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}

/* ── Hero Left ─────────────────────────────── */
.hero-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 560px;
}

.hero-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red-bright);
  background: rgba(234, 88, 12, 0.12);
  border: 1px solid rgba(234, 88, 12, 0.3);
  padding: 6px 14px;
  border-radius: 100px;
  width: fit-content;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.hero-heading {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5.5vw, 4.75rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--white);
  text-shadow: 0 2px 40px rgba(0, 0, 0, 0.5);
}

.hero-desc {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.70);
  line-height: 1.75;
  max-width: 440px;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.6);
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  padding: 14px 28px;
  background: linear-gradient(135deg, var(--red-main), var(--red-bright));
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 10px;
  transition: opacity var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 0 24px rgba(234, 88, 12, 0.35);
}
.btn-primary:hover {
  opacity: 0.88;
  transform: translateY(-2px);
  box-shadow: 0 4px 32px rgba(234, 88, 12, 0.5);
}

.btn-outline {
  padding: 14px 28px;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  color: var(--white-80);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 10px;
  transition: border-color var(--transition), color var(--transition), background var(--transition);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.btn-outline:hover {
  border-color: rgba(255, 255, 255, 0.65);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

/* ── Hero Stats (inside hero-left) ────────── */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 40px;
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.stat-number {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.stat-label {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.50);
  letter-spacing: 0.02em;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.18);
}

/* ── Scroll indicator ──────────────────────── */
.scroll-indicator {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.scroll-arrow {
  animation: scrollBounce 1.8s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(8px); }
}

/* ══════════════════════════════════════════════
   BRANDS TICKER
══════════════════════════════════════════════ */
.brands-section {
  padding: 60px 0 70px;
  background: #0a0a0a;
  overflow: hidden;
}

.brands-label {
  text-align: center;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.35);
  margin-bottom: 40px;
}

.brands-track-wrapper {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 12%, black 88%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 12%, black 88%, transparent 100%);
}

.brands-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: ticker 35s linear infinite;
}
.brands-track:hover {
  animation-play-state: paused;
}

@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.brand-item {
  flex-shrink: 0;
  width: 160px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
}
.brand-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: screen;
  opacity: 0.55;
  filter: grayscale(100%);
  transition: opacity 0.3s ease;
}
.brand-item img:hover {
  opacity: 0.9;
}

/* ══════════════════════════════════════════════
   SERVICES
══════════════════════════════════════════════ */
.services-section {
  padding: 120px 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.service-card:hover {
  border-color: rgba(234, 88, 12, 0.35);
  box-shadow: 0 0 32px rgba(234, 88, 12, 0.08), inset 0 0 32px rgba(234, 88, 12, 0.03);
  transform: translateY(-4px);
}

.service-icon {
  width: 48px;
  height: 48px;
  color: var(--red-bright);
  flex-shrink: 0;
}
.service-icon svg { width: 100%; height: 100%; }

.service-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--white);
}

.service-desc {
  font-size: 0.9rem;
  color: var(--white-50);
  line-height: 1.7;
}

/* ══════════════════════════════════════════════
   PRODUCTS
══════════════════════════════════════════════ */
.products-section {
  padding: 120px 0;
  background: linear-gradient(180deg, transparent, rgba(15,10,8,0.6) 50%, transparent);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.product-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
}

.product-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(234,88,12,0.04) 0%, transparent 60%);
  pointer-events: none;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

.product-card--featured {
  border-color: rgba(234, 88, 12, 0.3);
  box-shadow: 0 0 0 1px rgba(234,88,12,0.1),
              0 8px 40px rgba(234, 88, 12, 0.12);
}
.product-card--featured:hover {
  border-color: rgba(234, 88, 12, 0.5);
  box-shadow: 0 0 0 1px rgba(234,88,12,0.2),
              0 20px 60px rgba(234, 88, 12, 0.18);
}

/* Badges */
.product-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
  width: fit-content;
}
.product-badge--active {
  background: rgba(234, 88, 12, 0.15);
  border: 1px solid rgba(234, 88, 12, 0.4);
  color: var(--red-bright);
}
.product-badge--soon {
  border: 1px solid var(--white-20);
  color: var(--white-50);
}
.product-badge--star {
  border: 1px solid rgba(234, 88, 12, 0.35);
  color: var(--red-bright);
  opacity: 0.9;
}

.product-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--white);
}

.product-desc {
  font-size: 0.9rem;
  color: var(--white-50);
  line-height: 1.7;
}

.product-price {
  padding: 20px 0;
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}
.price-amount {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  display: block;
  line-height: 1;
}
.price-amount--tbd {
  font-size: 1.1rem;
  color: var(--white-50);
  font-weight: 600;
}
.price-period {
  font-size: 0.82rem;
  color: var(--white-50);
  margin-top: 4px;
  display: block;
}

.product-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.product-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--white-80);
}

.feature-check {
  width: 16px;
  height: 16px;
  color: var(--red-bright);
  flex-shrink: 0;
}
.feature-check--dim {
  color: var(--white-20);
}

/* Product buttons */
.btn-product {
  display: block;
  width: 100%;
  text-align: center;
  padding: 14px 20px;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: all var(--transition);
  margin-top: auto;
}
.btn-product--filled {
  background: linear-gradient(135deg, var(--red-main), var(--red-bright));
  color: var(--white);
  box-shadow: 0 0 24px rgba(234, 88, 12, 0.3);
}
.btn-product--filled:hover {
  opacity: 0.88;
  transform: translateY(-2px);
  box-shadow: 0 4px 32px rgba(234, 88, 12, 0.45);
}
.btn-product--disabled {
  border: 1.5px solid var(--white-20);
  color: var(--white-20);
  cursor: not-allowed;
  opacity: 0.7;
  background: transparent;
}

/* ══════════════════════════════════════════════
   FAQ
══════════════════════════════════════════════ */
.faq-section {
  padding: 120px 0;
}

.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid var(--glass-border);
}
.faq-item:first-child { border-top: 1px solid var(--glass-border); }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 0;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: var(--white-80);
  transition: color var(--transition);
  background: transparent;
}
.faq-question:hover { color: var(--white); }
.faq-question[aria-expanded="true"] { color: var(--red-bright); }

.faq-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: transform var(--transition);
  color: var(--white-50);
}
.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(180deg);
  color: var(--red-bright);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
}
.faq-answer.open { grid-template-rows: 1fr; }

.faq-answer > p {
  overflow: hidden;
  padding-bottom: 0;
  font-size: 0.95rem;
  color: var(--white-50);
  line-height: 1.75;
  transition: padding-bottom 0.35s ease;
}
.faq-answer.open > p { padding-bottom: 24px; }

/* ══════════════════════════════════════════════
   CTA FINAL
══════════════════════════════════════════════ */
.cta-section {
  position: relative;
  padding: 140px 24px;
  overflow: hidden;
  background: var(--black-soft);
  border-top: 1px solid var(--glass-border);
}

.cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 500px;
  background: radial-gradient(ellipse at center,
    rgba(194, 65, 12, 0.18) 0%,
    rgba(234, 88, 12, 0.08) 40%,
    transparent 70%
  );
  pointer-events: none;
}

.cta-container {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.cta-subtitle {
  font-size: 1.1rem;
  color: var(--white-50);
  line-height: 1.7;
}

.btn-cta {
  display: inline-block;
  padding: 18px 40px;
  background: linear-gradient(135deg, var(--red-main), var(--red-bright));
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  border-radius: 12px;
  transition: all var(--transition);
  box-shadow: 0 0 32px rgba(234, 88, 12, 0.35);
}
.btn-cta:hover {
  opacity: 0.88;
  transform: translateY(-3px);
  box-shadow: 0 8px 48px rgba(234, 88, 12, 0.5);
}

.cta-contacts {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 8px;
}

.cta-contact-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--white-50);
  transition: color var(--transition);
}
.cta-contact-link:hover { color: var(--red-bright); }
.cta-contact-link svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* ══════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════ */
.footer {
  background: var(--black);
  border-top: 1px solid var(--glass-border);
  padding: 48px 24px 32px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--glass-border);
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: var(--white);
}
.footer-logo span { color: var(--red-bright); }

.footer-nav {
  display: flex;
  gap: 28px;
}
.footer-nav a {
  font-size: 0.85rem;
  color: var(--white-50);
  transition: color var(--transition);
}
.footer-nav a:hover { color: var(--white); }

.footer-socials {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
}
.footer-socials a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--glass-border);
  border-radius: 8px;
  color: var(--white-50);
  transition: all var(--transition);
}
.footer-socials a:hover {
  border-color: var(--red-bright);
  color: var(--red-bright);
}
.footer-socials svg { width: 18px; height: 18px; }

.footer-bottom {
  max-width: 1200px;
  margin: 24px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: var(--white-20);
}
.footer-terms {
  font-size: 0.8rem;
  color: var(--white-20);
  transition: color var(--transition);
}
.footer-terms:hover { color: var(--white-50); }

/* ══════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid .product-card:last-child { grid-column: span 1; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .btn-nav:not(.mobile-cta) { display: none; }
  .hamburger { display: flex; }

  /* Hero: tighter padding on mobile */
  .hero-container {
    padding: 0 24px;
  }

  .hero-overlay {
    background: linear-gradient(
      to right,
      rgba(0, 0, 0, 0.92) 0%,
      rgba(0, 0, 0, 0.80) 60%,
      rgba(0, 0, 0, 0.55) 100%
    );
  }

  .hero-left {
    max-width: 100%;
    gap: 20px;
  }

  .hero-heading {
    font-size: clamp(2.4rem, 8vw, 3.2rem);
  }

  .hero-stats {
    gap: 24px;
  }

  .brands-section {
    padding: 40px 0;
  }

  .services-grid {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    padding: 0 20px 20px;
    -webkit-overflow-scrolling: touch;
  }
  .services-grid::-webkit-scrollbar {
    display: none;
  }
  .service-card {
    flex: 0 0 80vw;
    scroll-snap-align: start;
  }

  .products-grid { grid-template-columns: 1fr; }
  .products-grid .product-card:last-child { grid-column: span 1; }

  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-nav { justify-content: center; flex-wrap: wrap; }
  .footer-socials { justify-content: center; }
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }
  .btn-primary, .btn-outline {
    width: 100%;
    text-align: center;
  }

  .cta-contacts {
    flex-direction: column;
    gap: 16px;
  }

  .section-title { font-size: 1.75rem; }
}

/* ── Small utilities ─────────────────────── */
::selection {
  background: rgba(234, 88, 12, 0.35);
  color: var(--white);
}

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb {
  background: var(--red-main);
  border-radius: 3px;
}
