/* ===== FUNKY BARBERSHOP THEME ===== */
:root {
  --red: #E63946;
  --blue: #2B4CFF;
  --orange: #FF6B35;
  --white: #FFFFFF;
  --black: #0D0D0D;
  --dark: #141420;
  --dark-card: #1C1C2E;
  --gray: #8888AA;
  --light: #F0F0F5;
  --gradient-1: linear-gradient(135deg, var(--red), var(--orange));
  --gradient-2: linear-gradient(135deg, var(--blue), #6366F1);
  --gradient-3: linear-gradient(135deg, var(--orange), #FBBF24);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Outfit', 'Space Grotesk', system-ui, sans-serif;
  background: var(--dark);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.container.narrow { max-width: 700px; }
.container-wide { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

h1, h2, h3 { font-family: 'Space Grotesk', sans-serif; font-weight: 800; }

/* ===== NAV ===== */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13, 13, 13, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 107, 53, 0.15);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--white);
  text-decoration: none;
}

.brand-icon {
  position: relative;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transform: rotate(45deg);
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.brand-icon svg {
  width: 100%;
  height: 100%;
  color: var(--orange);
}

.brand-icon .scissor-top {
  transition: transform 0.3s ease;
}

.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.25s;
}
.nav-links a:hover { color: var(--orange); }

/* ===== BUTTONS ===== */

/* WhatsApp button */
.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.8rem 1.6rem;
  border-radius: 50px;
  background: #25D366; /* WhatsApp green */
  color: #fff;            /* teks putih */
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  z-index: 20;            /* di atas video background */
  position: relative;
}

.btn-wa:hover {
  background: #1ebd5b; /* sedikit lebih gelap saat hover */
}

.wa-icon { fill: #fff; width: 18px; height: 18px; }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.8rem 1.6rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
}

.btn-primary {
  background: var(--gradient-1);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(230, 57, 70, 0.4);
}
.btn-primary:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 30px rgba(230, 57, 70, 0.55);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.25);
}
.btn-outline:hover {
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-2px);
}

.btn-nav {
  padding: 0.5rem 1.2rem;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 1rem 2.2rem;
  font-size: 1.05rem;
}

.btn-icon { font-size: 1.15rem; }

.btn-wa-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: #fff;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  overflow: hidden;
  display: block;
  background: var(--black);
  padding: 1rem 0 6rem;
}

/* Video background — Ken Burns zoom + pan */
.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 0;
  animation: heroZoomPan 30s ease-in-out infinite alternate;
}

@keyframes heroZoomPan {
  0% {
    transform: translate(-50%, -50%) scale(1) translate(0, 0);
  }
  25% {
    transform: translate(-50%, -50%) scale(1.08) translate(-2%, -1%);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.12) translate(-3%, -2%);
  }
  75% {
    transform: translate(-50%, -50%) scale(1.08) translate(-1%, -1%);
  }
  100% {
    transform: translate(-50%, -50%) scale(1) translate(0, 0);
  }
}

/* Animated background stripes */
.hero-stripes {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 80px,
    rgba(43, 76, 255, 0.03) 80px,
    rgba(43, 76, 255, 0.03) 82px,
    transparent 82px,
    transparent 160px,
    rgba(230, 57, 70, 0.03) 160px,
    rgba(230, 57, 70, 0.03) 162px
  );
  animation: stripesMove 20s linear infinite;
}

@keyframes stripesMove {
  0% { transform: translateX(0); }
  100% { transform: translateX(226px); }
}

/* Spinning background decorations */
.hero-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

/* Large decorative rings — gentle float */
.spin-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid;
  animation: driftFloat 14s ease-in-out infinite;
}

.spin-ring--1 {
  width: 260px; height: 260px;
  top: 8%; left: -4%;
  border-color: rgba(230, 57, 70, 0.12);
  animation-duration: 16s;
}

.spin-ring--2 {
  width: 180px; height: 180px;
  bottom: 12%; right: 6%;
  border-color: rgba(43, 76, 255, 0.12);
  animation-duration: 18s;
  animation-direction: reverse;
}

.spin-ring--3 {
  width: 120px; height: 120px;
  top: 45%; left: 42%;
  border-color: rgba(255, 107, 53, 0.1);
  animation-duration: 13s;
}

/* ===== DIAGONAL SPIRAL — smooth infinite looping ===== */
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Diagonal spiral dot — combine diagonal drift with circular orbit */
.spin-dot {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  animation: spiralDot linear infinite;
}

.spin-dot--1 {
  top: 15%; left: 5%;
  background: var(--red);
  box-shadow: 0 0 14px var(--red);
  animation-duration: 14s;
}

.spin-dot--2 {
  top: 70%; right: 8%;
  background: var(--blue);
  box-shadow: 0 0 14px var(--blue);
  animation-duration: 16s;
  animation-direction: reverse;
}

.spin-dot--3 {
  top: 40%; left: 30%;
  background: var(--orange);
  box-shadow: 0 0 14px var(--orange);
  animation-duration: 12s;
  animation-delay: 2s;
}

/* Diagonal spiral diamonds */
.spin-diamond {
  position: absolute;
  width: 14px;
  height: 14px;
  animation: spiralDiamond linear infinite;
}

.spin-diamond--1 {
  top: 20%; left: 15%;
  background: var(--red);
  opacity: 0.35;
  animation-duration: 15s;
  animation-delay: 1s;
}

.spin-diamond--2 {
  bottom: 20%; right: 15%;
  background: var(--blue);
  opacity: 0.35;
  animation-duration: 17s;
  animation-delay: 3s;
}

/* Smooth diagonal spiral — true infinite loop (0% == 100%) */
@keyframes spiralDot {
  0% {
    transform: translate(0, 0) rotate(0deg) scale(1);
    opacity: 1;
  }
  10% {
    transform: translate(20px, -20px) rotate(72deg) scale(1.1);
    opacity: 0.95;
  }
  20% {
    transform: translate(48px, -8px) rotate(144deg) scale(1);
    opacity: 1;
  }
  30% {
    transform: translate(72px, 12px) rotate(216deg) scale(0.95);
    opacity: 0.85;
  }
  40% {
    transform: translate(96px, 16px) rotate(288deg) scale(1);
    opacity: 1;
  }
  50% {
    transform: translate(120px, 0) rotate(360deg) scale(1.1);
    opacity: 0.9;
  }
  60% {
    transform: translate(144px, -16px) rotate(432deg) scale(1);
    opacity: 1;
  }
  70% {
    transform: translate(168px, -24px) rotate(504deg) scale(0.95);
    opacity: 0.85;
  }
  80% {
    transform: translate(192px, -8px) rotate(576deg) scale(1);
    opacity: 1;
  }
  90% {
    transform: translate(216px, 12px) rotate(648deg) scale(1.05);
    opacity: 0.95;
  }
  100% {
    transform: translate(0, 0) rotate(0deg) scale(1);
    opacity: 1;
  }
}

@keyframes spiralDiamond {
  0% {
    transform: translate(0, 0) rotate(0deg) scale(1);
    opacity: 0.4;
  }
  10% {
    transform: translate(18px, -18px) rotate(40deg) scale(1.15);
    opacity: 0.5;
  }
  20% {
    transform: translate(40px, -6px) rotate(80deg) scale(1);
    opacity: 0.45;
  }
  30% {
    transform: translate(62px, 10px) rotate(120deg) scale(0.85);
    opacity: 0.35;
  }
  40% {
    transform: translate(80px, 14px) rotate(160deg) scale(1);
    opacity: 0.4;
  }
  50% {
    transform: translate(100px, 0) rotate(200deg) scale(1.15);
    opacity: 0.5;
  }
  60% {
    transform: translate(120px, -14px) rotate(240deg) scale(1);
    opacity: 0.45;
  }
  70% {
    transform: translate(140px, -20px) rotate(280deg) scale(0.85);
    opacity: 0.35;
  }
  80% {
    transform: translate(160px, -6px) rotate(320deg) scale(1);
    opacity: 0.4;
  }
  90% {
    transform: translate(180px, 10px) rotate(360deg) scale(1.05);
    opacity: 0.45;
  }
  100% {
    transform: translate(0, 0) rotate(0deg) scale(1);
    opacity: 0.4;
  }
}

/* Hero content layout */
.hero-inner {
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 100%;
  text-align: center;
}

.hero-content .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(230, 57, 70, 0.12);
  border: 1px solid rgba(230, 57, 70, 0.3);
  border-radius: 50px;
  color: var(--red);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}

.hero-title {
  font-size: clamp(2.6rem, 7vw, 4.2rem);
  line-height: 1.05;
  margin-bottom: 1.2rem;
}

.title-line {
  display: block;
}

.title-line:first-child { color: var(--white); }
.title-line.accent-text {
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.title-line:last-child {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.75em;
}

.hero-lead {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.55);
  max-width: 42ch;
  margin: 0 auto 2rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  gap: 4rem;
  justify-content: center;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.stat { display: flex; flex-direction: column; align-items: center; }
.stat strong {
  font-size: 2rem;
  font-weight: 800;
  background: var(--gradient-1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}
.stat span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 0.35rem;
  letter-spacing: 0.02em;
}

/* ===== SECTIONS ===== */
.section { padding: clamp(4rem, 10vw, 7rem) 0; }
.section-dark { background: var(--dark); }
.section-light { background: var(--white); }
.section-light h2,
.section-light h3,
.section-light p { color: var(--dark); }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 50px;
  margin-bottom: 0.3rem;
}

.section-dark .section-label {
  background: rgba(255, 107, 53, 0.1);
  color: var(--orange);
  border: 1px solid rgba(255, 107, 53, 0.25);
}

.section-light .section-label {
  background: rgba(43, 76, 255, 0.08);
  color: var(--blue);
  border: 1px solid rgba(43, 76, 255, 0.2);
}

.label-spin {
  display: inline-block;
  animation: spin 4s linear infinite;
}

/* Film grain overlay */
.about-showcase::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1;
  opacity: 0.5;
}

/* ===== SERVICE ICON ===== */
.service-icon {
  font-size: 2.8rem;
  text-align: center;
  padding-top: 1.2rem;
  padding-bottom: 0.5rem;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.08));
}

/* ===== SERVICE CARDS ===== */
.services-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 1.5rem;
}

.service-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.service-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 0.75rem;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
  z-index: 2;
}

.service-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: var(--light);
  border: 2px solid rgba(0,0,0,0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

.service-content {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.service-content h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0;
  color: var(--dark);
}

.service-content p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.5;
  flex-grow: 1;
}

.service-price {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--accent-color);
  font-family: 'Space Grotesk', sans-serif;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(0,0,0,0.06);
}

.service-card:hover {
  border-color: var(--accent-color);
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

/* Responsive */
@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

/* ===== CTA CINEMATIC ===== */
.cta-panel {
  position: relative;
  overflow: hidden;
  padding: 5rem 3rem;
  border-radius: 24px;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(230,57,70,0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 50% 100%, rgba(43,76,255,0.1) 0%, transparent 60%),
    linear-gradient(180deg, var(--dark-card) 0%, var(--dark) 100%);
  border: 1px solid rgba(255,107,53,0.15);
  box-shadow:
    0 30px 80px rgba(0,0,0,0.4),
    inset 0 1px 0 rgba(255,255,255,0.05);
}

.cta-panel::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, transparent, rgba(230,57,70,0.05), transparent, rgba(43,76,255,0.05), transparent);
  animation: ctaGlow 12s linear infinite;
}

@keyframes ctaGlow {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.section h2 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  margin-bottom: 1.2rem;
  color: var(--white);
}

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



/* ===== CTA SECTION ===== */
.section-cta {
  background: var(--black);
  position: relative;
  overflow: hidden;
}

.cta-panel {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.section-cta h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 1rem;
}

.section-cta p {
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

.cta-note {
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.35);
}

/* CTA background decorations */
.cta-decoration {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.cta-deco--1 {
  width: 300px;
  height: 300px;
  top: -100px;
  left: -80px;
  background: radial-gradient(circle, rgba(230, 57, 70, 0.12), transparent 70%);
  animation: driftFloat 10s ease-in-out infinite;
}

.cta-deco--2 {
  width: 250px;
  height: 250px;
  bottom: -80px;
  right: -60px;
  background: radial-gradient(circle, rgba(43, 76, 255, 0.12), transparent 70%);
  animation: driftFloat 12s ease-in-out infinite reverse;
}

.cta-deco--3 {
  width: 150px;
  height: 150px;
  top: 30%;
  right: 10%;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.08), transparent 70%);
  animation: driftFloat 8s ease-in-out infinite 2s;
}

@keyframes driftFloat {
  0%, 100% { transform: translate(0, 0); }
  33% { transform: translate(20px, -25px); }
  66% { transform: translate(-15px, 15px); }
}

/* ===== FOOTER ===== */
.footer {
  padding: 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.3);
  background: var(--black);
}

/* ===== HAMBURGER BUTTON ===== */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 6px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 200;
}

.hamburger-line {
  display: block;
  width: 100%;
  height: 2.5px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}

/* Hamburger → X animation */
.hamburger.active .hamburger-line:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
  background: var(--orange);
}

.hamburger.active .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.active .hamburger-line:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
  background: var(--orange);
}

/* ===== MOBILE NAV OVERLAY ===== */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 150;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.mobile-nav.open {
  pointer-events: auto;
  opacity: 1;
  visibility: visible;
}

.mobile-nav-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(13, 13, 13, 0.7);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
}

.mobile-nav-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
}

.mobile-nav-link {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.8rem, 6vw, 2.5rem);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  padding: 0.8rem 0;
  text-align: center;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease, color 0.25s ease;
}

.mobile-nav.open .mobile-nav-link {
  opacity: 1;
  transform: translateY(0);
}

.mobile-nav.open .mobile-nav-link:nth-child(1) { transition-delay: 0.1s; }
.mobile-nav.open .mobile-nav-link:nth-child(2) { transition-delay: 0.18s; }
.mobile-nav.open .mobile-nav-link:nth-child(3) { transition-delay: 0.26s; }

.mobile-nav-link:hover {
  color: var(--orange);
}

.mobile-nav-link--cta {
  margin-top: 1.2rem;
  padding: 1rem 2.5rem;
  background: var(--gradient-1);
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white) !important;
  box-shadow: 0 4px 20px rgba(230, 57, 70, 0.4);
}

.mobile-nav-link--cta:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 30px rgba(230, 57, 70, 0.55);
}

/* ===== SPIN UTILITY ===== */
.spin-slow {
  display: inline-block;
  animation: spin 6s linear infinite;
}

/* ===== SCROLL FADE-IN ===== */
.fade-section {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-section.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  /* Hide desktop nav links, show hamburger */
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .hero-inner { padding-top: 1rem; }
  .hero-content { max-width: 100%; }
  .hero-lead { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }

  .services-grid { grid-template-columns: 1fr; max-width: 360px; margin-left: auto; margin-right: auto; }
}

@media (max-width: 480px) {
  .hero-stats { flex-direction: column; gap: 1rem; align-items: center; }
  .hero-actions { flex-direction: column; align-items: center; }
}
