/* ════════════════════════════════════════════════════════════
   DMC GROUP — Main Stylesheet
   Colors: Black (#111), White (#fff), Orange (#fe6800)
   ════════════════════════════════════════════════════════════ */

/* ── CSS Variables ───────────────────────────────────────── */
:root {
  --dmc-black: #111111;
  --dmc-black-soft: #1a1a1a;
  --dmc-black-light: #2a2a2a;
  --dmc-white: #ffffff;
  --dmc-gray-50: #f8f8f8;
  --dmc-gray-100: #f0f0f0;
  --dmc-gray-200: #e0e0e0;
  --dmc-gray-300: #cccccc;
  --dmc-gray-400: #999999;
  --dmc-gray-500: #777777;
  --dmc-gray-600: #555555;
  --dmc-gray-700: #333333;
  --dmc-orange: #fe6800;
  --dmc-orange-hover: #e55d00;
  --dmc-orange-dark: #cc5500;
  --dmc-orange-light: rgba(254, 104, 0, 0.08);
  --dmc-orange-glow: rgba(254, 104, 0, 0.15);

  --font-body: 'Barlow', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-heading: 'Oswald', sans-serif;
  --font-ethno: 'Ethnocentric', sans-serif;

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-full: 999px;

  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
  --shadow-xl: 0 16px 60px rgba(0,0,0,0.16);

  --container-max: 1200px;
  --header-height: 72px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
  overflow-x: clip;
  max-width: 100vw;
}

body {
  font-family: var(--font-body);
  color: var(--dmc-gray-700);
  background: var(--dmc-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  overflow-x: clip;
  overscroll-behavior-x: none;
  max-width: 100vw;
}

/* ── Overflow wrapper (fixes mobile Safari horizontal scroll) ── */
.site-wrapper {
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
  position: relative;
}

/* Subtle grain texture overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.025;
  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)'/%3E%3C/svg%3E");
}

a { color: inherit; text-decoration: none; transition: color 0.2s ease; }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Container ───────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 20px;
}

@media (min-width: 768px) { .container { padding: 0 32px; } }
@media (min-width: 1200px) { .container { padding: 0 40px; } }

/* ── Utility ─────────────────────────────────────────────── */
.text-accent { color: var(--dmc-orange); }

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  background: var(--dmc-orange-light);
  border: 1px solid rgba(254, 104, 0, 0.15);
  color: var(--dmc-orange);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 48px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--dmc-black);
  margin-bottom: 16px;
  position: relative;
  display: inline-block;
}

.section-header .section-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 60px;
  height: 3px;
  border-radius: 3px;
  background: var(--dmc-orange);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.section-header.is-visible .section-title::after,
.reveal.is-visible .section-title::after {
  transform: translateX(-50%) scaleX(1);
}

.section-desc {
  font-size: 16px;
  line-height: 1.7;
  color: var(--dmc-gray-500);
}

/* ══════════════════════════════════════════════════════════
   PRELOADER
   ══════════════════════════════════════════════════════════ */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--dmc-black);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
  overflow: hidden;
}

.preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.preloader__logo {
  width: 240px;
  height: auto;
  animation: preloaderPulse 1.6s ease-in-out infinite;
  will-change: transform, opacity;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

@keyframes preloaderPulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}

.preloader__bar {
  width: 200px;
  height: 3px;
  background: var(--dmc-black-light);
  border-radius: 3px;
  overflow: hidden;
}

.preloader__progress {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--dmc-orange), #ff8c33);
  border-radius: 3px;
  animation: preloaderBar 1.8s ease-in-out forwards;
}

@keyframes preloaderBar {
  0% { width: 0%; }
  40% { width: 60%; }
  80% { width: 90%; }
  100% { width: 100%; }
}

/* ══════════════════════════════════════════════════════════
   HEADER
   ══════════════════════════════════════════════════════════ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  background: rgba(17, 17, 17, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.35s ease;
}

@media (min-width: 768px) {
  .header { background: transparent; backdrop-filter: none; -webkit-backdrop-filter: none; }
}

.header.is-scrolled {
  background: rgba(17, 17, 17, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.header__logo-img {
  height: 52px;
  width: auto;
  transition: transform 0.2s ease;
}

.header__logo:hover .header__logo-img {
  transform: scale(1.02);
}

.header__nav {
  display: none;
}

.header__menu {
  display: flex;
  gap: 4px;
}

.header__link {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  color: rgba(255,255,255,0.75);
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s ease;
}

.header__link:hover,
.header__link--active {
  color: var(--dmc-white);
  background: rgba(255,255,255,0.08);
}

.header__link--active {
  color: var(--dmc-orange);
}

.header__cta {
  display: none;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: var(--radius-full);
  background: var(--dmc-orange);
  color: var(--dmc-white);
  font-size: 13px;
  font-weight: 700;
  transition: all 0.25s ease;
}

.header__cta:hover {
  background: var(--dmc-orange-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(254, 104, 0, 0.3);
}

/* Burger */
.header__burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  padding: 4px;
}

.header__burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--dmc-white);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.header__burger.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.header__burger.is-active span:nth-child(2) {
  opacity: 0;
}

.header__burger.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Nav */
.header__nav.is-open {
  display: flex;
  position: absolute;
  top: 100%;          /* start right below the header */
  left: 0;
  right: 0;
  height: calc(100vh - var(--header-height));
  height: calc(100svh - var(--header-height));
  background: var(--dmc-black);
  padding: 32px 20px;
  z-index: 999;
  overflow-y: auto;
}

.header__nav.is-open .header__menu {
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.header__nav.is-open .header__link {
  font-size: 18px;
  padding: 16px 20px;
  border-radius: var(--radius-md);
}

@media (min-width: 900px) {
  .header__nav {
    display: flex !important;
    position: static;
    background: none;
    backdrop-filter: none;
    padding: 0;
  }

  .header__nav .header__menu {
    flex-direction: row;
  }

  .header__cta { display: inline-flex; }
  .header__burger { display: none; }
}

/* ══════════════════════════════════════════════════════════
   BUTTONS
   ══════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 28px;
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: all 0.28s ease;
  white-space: nowrap;
}

.btn--primary {
  background: var(--dmc-orange);
  color: var(--dmc-white);
  box-shadow: 0 4px 16px rgba(254, 104, 0, 0.25);
}

.btn--primary:hover {
  background: var(--dmc-orange-hover);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 6px 24px rgba(254, 104, 0, 0.35), 0 0 40px rgba(254, 104, 0, 0.15);
}

.btn--outline {
  background: transparent;
  color: var(--dmc-white);
  border: 2px solid rgba(255,255,255,0.3);
}

.btn--outline:hover {
  border-color: var(--dmc-white);
  background: rgba(255,255,255,0.08);
  transform: translateY(-2px);
}

.btn--white {
  background: var(--dmc-white);
  color: var(--dmc-orange);
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

.btn--white:hover {
  background: var(--dmc-gray-50);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0,0,0,0.18);
}

.btn--outline-white {
  background: transparent;
  color: var(--dmc-white);
  border: 2px solid rgba(255,255,255,0.35);
}

.btn--outline-white:hover {
  border-color: var(--dmc-white);
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}

.btn--lg {
  padding: 16px 36px;
  font-size: 15px;
}

/* ══════════════════════════════════════════════════════════
   LANDING SCREEN (hero + partners = viewport on mobile)
   ══════════════════════════════════════════════════════════ */
.landing-screen {
  display: flex;
  flex-direction: column;
  height: 100vh;
  height: 100svh;
}

/* ══════════════════════════════════════════════════════════
   HERO (Homepage — mobile-first, zero extra padding)
   ══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  flex: 1;
  min-height: 0;
  display: flex;
  align-items: stretch;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.hero__bg picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% center;
  filter: brightness(0.4);
  will-change: transform;
}

@media (min-width: 768px) {
  .hero__bg-img { object-position: center center; }
}

@keyframes heroZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.15); }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.1) 25%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.85) 75%, rgba(0,0,0,0.92) 100%),
    radial-gradient(ellipse at 20% 80%, rgba(254, 104, 0, 0.08) 0%, transparent 60%);
  z-index: 1;
}

@media (min-width: 768px) {
  .hero__overlay {
    background:
      linear-gradient(180deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.3) 40%, rgba(0,0,0,0.6) 100%),
      radial-gradient(ellipse at 20% 50%, rgba(254, 104, 0, 0.1) 0%, transparent 60%);
  }
}

.hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--header-height) + 40px) 16px 20px;
  max-width: 800px;
  width: 100%;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 8px;
  padding: 7px 16px;
  border-radius: var(--radius-full);
  background: var(--dmc-orange-light);
  border: 1px solid rgba(254, 104, 0, 0.2);
  color: var(--dmc-orange);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
  animation: fadeInUp 0.6s ease both;
  animation-delay: 0.2s;
}

.hero__badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--dmc-orange);
  animation: badgePulse 2s ease-in-out infinite;
}

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

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(34px, 9vw, 44px);
  font-weight: 900;
  line-height: 1.1;
  color: var(--dmc-white);
  margin-bottom: 16px;
  animation: fadeInUp 0.6s ease both;
  animation-delay: 0.35s;
}

.hero__title--accent {
  color: var(--dmc-orange);
  position: relative;
  background: linear-gradient(90deg, var(--dmc-orange) 0%, #ff9a44 40%, var(--dmc-orange) 80%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: textShimmer 4s ease-in-out infinite;
}

@keyframes textShimmer {
  0%, 100% { background-position: 0% center; }
  50% { background-position: 100% center; }
}

.hero__subtitle {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255,255,255,0.7);
  margin-bottom: 24px;
  max-width: 600px;
  animation: fadeInUp 0.6s ease both;
  animation-delay: 0.5s;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
  animation: fadeInUp 0.6s ease both;
  animation-delay: 0.65s;
}

.hero .btn--lg {
  padding: 14px 24px;
  font-size: 14px;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin-top: 20px;
  animation: fadeInUp 0.6s ease both;
  animation-delay: 0.8s;
}

.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.6);
  font-size: 12px;
  font-weight: 600;
}

.hero__trust-item svg {
  color: var(--dmc-orange);
  flex-shrink: 0;
  width: 16px;
  height: 16px;
}

/* ── Scroll-down hint arrow ── */
.hero__scroll-hint {
  display: flex;
  justify-content: center;
  margin-top: 24px;
  animation: fadeInUp 0.6s ease both;
  animation-delay: 1s;
}

.hero__scroll-hint svg {
  width: 28px;
  height: 28px;
  color: rgba(255,255,255,0.5);
  animation: scrollBounce 2s ease-in-out infinite;
  filter: drop-shadow(0 0 6px rgba(254, 104, 0, 0.3));
}

@keyframes scrollBounce {
  0%, 100% {
    transform: translateY(0);
    color: rgba(255,255,255,0.4);
  }
  50% {
    transform: translateY(10px);
    color: var(--dmc-orange);
  }
}

/* ── Hero & landing-screen — desktop restore ── */
@media (min-width: 768px) {
  .landing-screen { display: block; height: auto; }
  .hero { min-height: 100vh; flex: none; align-items: center; }
  .hero__inner { display: block; padding: 120px 0 80px; }
  .hero__badge { gap: 10px; padding: 8px 20px; font-size: 12px; letter-spacing: 0.1em; margin-bottom: 28px; }
  .hero__title { font-size: clamp(32px, 5.5vw, 64px); margin-bottom: 24px; }
  .hero__subtitle { font-size: clamp(15px, 2vw, 18px); line-height: 1.7; margin-bottom: 36px; }
  .hero__actions { gap: 16px; margin-bottom: 48px; }
  .hero .btn--lg { padding: 16px 36px; font-size: 15px; }
  .hero__trust { gap: 24px; }
  .hero__trust-item { font-size: 13px; gap: 10px; color: rgba(255,255,255,0.5); font-weight: 500; }
  .hero__trust-item svg { width: 20px; height: 20px; }
  .hero__scroll-hint { margin-top: 40px; }
  .hero__scroll-hint svg { width: 32px; height: 32px; }
}

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

/* ══════════════════════════════════════════════════════════
   SERVICES GRID (Homepage)
   ══════════════════════════════════════════════════════════ */
.services {
  padding: 80px 0;
  background: var(--dmc-gray-50);
}

@media (min-width: 768px) { .services { padding: 100px 0; } }

.services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 600px) { .services__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .services__grid { grid-template-columns: repeat(3, 1fr); } }

.svc-card {
  background: var(--dmc-white);
  border: 1px solid var(--dmc-gray-200);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.svc-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--dmc-orange), #ff8c33, var(--dmc-orange));
  background-size: 200% 100%;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.svc-card:hover::before {
  transform: scaleX(1);
}

.svc-card:hover {
  border-color: rgba(254, 104, 0, 0.2);
  box-shadow: 0 12px 40px rgba(254, 104, 0, 0.1), var(--shadow-lg);
  transform: translateY(-8px);
}

.svc-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: var(--dmc-orange-light);
  color: var(--dmc-orange);
  margin-bottom: 20px;
  transition: all 0.3s ease;
}

.svc-card:hover .svc-card__icon {
  background: var(--dmc-orange);
  color: var(--dmc-white);
}

.svc-card__emoji {
  font-size: 28px;
  line-height: 1;
}

.svc-card__num {
  font-family: var(--font-ethno);
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
  color: var(--dmc-orange);
  letter-spacing: 0.02em;
  transition: color 0.3s ease;
}

.svc-card:hover .svc-card__num {
  color: var(--dmc-white);
}

.svc-card__title {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 700;
  color: var(--dmc-black);
  margin-bottom: 10px;
  line-height: 1.3;
}

.svc-card__desc {
  font-size: 14px;
  line-height: 1.65;
  color: var(--dmc-gray-500);
  margin-bottom: 20px;
  flex: 1;
}

.svc-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--dmc-orange);
  font-size: 13px;
  font-weight: 700;
  margin-top: auto;
  transition: gap 0.2s ease;
}

.svc-card__link:hover { gap: 10px; }

.services__cta-wrap {
  text-align: center;
  margin-top: 48px;
}

/* ══════════════════════════════════════════════════════════
   ABOUT (Homepage)
   ══════════════════════════════════════════════════════════ */
.about {
  padding: 80px 0;
}

@media (min-width: 768px) { .about { padding: 100px 0; } }

.about__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
}

@media (min-width: 900px) {
  .about__inner {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 64px;
  }
}

.about__text {
  font-size: 15px;
  line-height: 1.75;
  color: var(--dmc-gray-600);
  margin-bottom: 16px;
}

.about__text strong { color: var(--dmc-black); }

.about__features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 28px;
}

@media (min-width: 600px) {
  .about__features { grid-template-columns: repeat(2, 1fr); }
}

.about__feature {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.about__feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--dmc-orange-light);
  color: var(--dmc-orange);
}

.about__feature h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--dmc-black);
  margin-bottom: 4px;
}

.about__feature p {
  font-size: 13px;
  line-height: 1.55;
  color: var(--dmc-gray-500);
}

/* About Visual */
.about__visual {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about__img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 1px solid var(--dmc-gray-200);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s ease, filter 0.5s ease;
}

@media (min-width: 600px) {
  .about__img {
    height: 300px;
  }
}

.about__img:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
  filter: brightness(1.05) contrast(1.05);
}

/* Stats */
.about__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 4px;
}

@media (min-width: 600px) {
  .about__stats {
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
  }
}

.stat-card {
  background: var(--dmc-black);
  border-radius: var(--radius-lg);
  padding: 24px 16px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
}

.stat-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  border: 1px solid transparent;
  background: linear-gradient(135deg, rgba(254,104,0,0.2) 0%, transparent 50%, rgba(254,104,0,0.1) 100%) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.stat-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 8px 30px rgba(254, 104, 0, 0.15);
}

.stat-card:hover::after {
  opacity: 1;
}

.stat-card__number {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 900;
  color: var(--dmc-orange);
  line-height: 1;
  margin-bottom: 8px;
  text-shadow: 0 0 20px rgba(254, 104, 0, 0.3);
  transition: text-shadow 0.3s ease;
}

.stat-card:hover .stat-card__number {
  text-shadow: 0 0 30px rgba(254, 104, 0, 0.5);
}

.stat-card__label {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.03em;
}

/* ══════════════════════════════════════════════════════════
   PARTNERS BAR (visible in landing viewport on mobile)
   ══════════════════════════════════════════════════════════ */
.partners-bar {
  padding: 40px 0;
  background: var(--dmc-black);
}

.partners-bar__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.partners-bar__title {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  text-align: center;
  white-space: nowrap;
}

.partners-bar__title span {
  color: var(--dmc-orange);
  opacity: 0.7;
}

.partners-bar__slider {
  position: relative;
  overflow: hidden;
  width: 100%;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.partners-bar__track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: partnerBarScroll 15s linear infinite;
}

.partners-bar__slider:hover .partners-bar__track {
  animation-play-state: paused;
}

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

.partners-bar__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 96px;
  height: 42px;
  padding: 4px 8px;
}

.partners-bar__logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  opacity: 0.85;
  transition: opacity 0.3s ease, filter 0.3s ease;
  filter: brightness(0) invert(1);
}

.partners-bar__logo:hover img {
  opacity: 1;
  filter: brightness(0) invert(1) drop-shadow(0 0 8px rgba(255,255,255,0.3));
}

@media (min-width: 768px) {
  .partners-bar {
    padding: 24px 0;
    border-top: none;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    background: var(--dmc-black);
  }
  .partners-bar__inner {
    flex-direction: row;
    gap: 32px;
  }
  .partners-bar__title {
    flex-shrink: 0;
    font-size: 11px;
    text-align: left;
    white-space: nowrap;
  }
  .partners-bar__logo {
    width: 120px;
    height: 50px;
    padding: 8px 14px;
  }
}

/* ══════════════════════════════════════════════════════════
   WORKS / PORTFOLIO CAROUSEL
   ══════════════════════════════════════════════════════════ */
.works {
  padding: 80px 0;
  background: var(--dmc-white);
}

.works__filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 40px;
}

.works__filter {
  padding: 10px 24px;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--dmc-gray-500);
  background: var(--dmc-gray-100);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
}

.works__filter:hover {
  color: var(--dmc-orange);
  background: var(--dmc-orange-light);
}

.works__filter.is-active {
  color: var(--dmc-white);
  background: var(--dmc-orange);
  border-color: var(--dmc-orange);
}

.works__carousel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.works__track {
  display: flex;
  gap: 16px;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: grab;
}

.works__track.is-dragging {
  cursor: grabbing;
  transition: none;
}

.works__slide {
  position: relative;
  flex: 0 0 calc(100% - 0px);
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16 / 10;
}

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

.works__slide:hover img {
  transform: scale(1.05);
}

.works__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 20px;
  background: linear-gradient(0deg, rgba(0,0,0,0.7) 0%, transparent 100%);
}

.works__cat {
  display: inline-block;
  padding: 4px 14px;
  border-radius: var(--radius-full);
  background: var(--dmc-orange);
  color: var(--dmc-white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.works__slide[data-hidden="true"] {
  display: none;
}

/* Arrows */
.works__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(0,0,0,0.5);
  color: var(--dmc-white);
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  z-index: 2;
  backdrop-filter: blur(8px);
}

.works__arrow:hover {
  background: var(--dmc-orange);
  transform: translateY(-50%) scale(1.1);
}

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

/* Dots */
.works__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.works__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--dmc-gray-300);
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  padding: 0;
}

.works__dot.is-active {
  background: var(--dmc-orange);
  transform: scale(1.2);
}

@media (min-width: 768px) {
  .works__slide {
    flex: 0 0 calc(50% - 8px);
  }
}

@media (min-width: 1024px) {
  .works__slide {
    flex: 0 0 calc(33.333% - 11px);
  }
}

/* ══════════════════════════════════════════════════════════
   AREAS (SEO Section)
   ══════════════════════════════════════════════════════════ */
.areas {
  padding: 80px 0;
  background: var(--dmc-gray-50);
}

@media (min-width: 768px) { .areas { padding: 100px 0; } }

.areas__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  max-width: 800px;
  margin: 0 auto;
}

.area-tag {
  display: inline-flex;
  align-items: center;
  padding: 10px 22px;
  border-radius: var(--radius-full);
  background: var(--dmc-white);
  border: 1px solid var(--dmc-gray-200);
  color: var(--dmc-gray-700);
  font-size: 14px;
  font-weight: 600;
  transition: all 0.2s ease;
}

.area-tag:hover {
  border-color: var(--dmc-orange);
  color: var(--dmc-orange);
  box-shadow: 0 2px 12px rgba(254, 104, 0, 0.1);
}

/* ══════════════════════════════════════════════════════════
   CTA SECTION
   ══════════════════════════════════════════════════════════ */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--dmc-orange) 0%, #ff8c33 50%, var(--dmc-orange) 100%);
  background-size: 200% 200%;
  animation: ctaGradient 8s ease-in-out infinite;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 50%, rgba(0,0,0,0.1) 0%, transparent 50%);
  pointer-events: none;
}

@keyframes ctaGradient {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.cta-section__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 32px;
}

@media (min-width: 768px) {
  .cta-section__inner {
    flex-direction: row;
    text-align: left;
    justify-content: space-between;
  }
}

.cta-section__title {
  font-family: var(--font-heading);
  font-size: clamp(24px, 3.5vw, 36px);
  font-weight: 800;
  color: var(--dmc-white);
  line-height: 1.15;
  margin-bottom: 8px;
}

.cta-section__desc {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255,255,255,0.85);
}

.cta-section__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
}

@media (min-width: 500px) {
  .cta-section__actions { flex-direction: row; }
}

/* ══════════════════════════════════════════════════════════
   CONTACT
   ══════════════════════════════════════════════════════════ */
.contact {
  padding: 80px 0;
}

@media (min-width: 768px) { .contact { padding: 100px 0; } }

.contact__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 800px) {
  .contact__grid { grid-template-columns: 1fr 1.2fr; gap: 48px; }
}

.contact__info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact__item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact__item-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--dmc-orange-light);
  color: var(--dmc-orange);
}

.contact__item h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--dmc-black);
  margin-bottom: 4px;
}

.contact__item p,
.contact__item a {
  font-size: 14px;
  line-height: 1.55;
  color: var(--dmc-gray-500);
}

.contact__item a:hover { color: var(--dmc-orange); }

.contact__map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 300px;
  border: 1px solid var(--dmc-gray-200);
}

.contact__map iframe {
  border-radius: var(--radius-lg);
}

/* ══════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════ */
.footer {
  background: var(--dmc-black);
  padding: 60px 0 0;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding-bottom: 40px;
}

@media (min-width: 600px) {
  .footer__inner { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 900px) {
  .footer__inner { grid-template-columns: 1.5fr 1fr 1fr 1fr; }
}

.footer__logo {
  height: 56px;
  width: auto;
  margin-bottom: 16px;
}

.footer__tagline {
  font-size: 13px;
  line-height: 1.65;
  color: rgba(255,255,255,0.4);
  max-width: 280px;
}

.footer__links h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--dmc-orange);
  margin-bottom: 16px;
}

.footer__links li {
  margin-bottom: 10px;
}

.footer__links a,
.footer__links li {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s ease;
}

.footer__links a:hover {
  color: var(--dmc-white);
  padding-left: 4px;
}

.footer__links a {
  transition: color 0.2s ease, padding-left 0.3s ease;
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 20px 0;
}

.footer__bottom-inner {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  text-align: center;
}

@media (min-width: 768px) {
  .footer__bottom-inner {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer__bottom p {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}

.footer__seo {
  font-size: 11px !important;
  color: rgba(255,255,255,0.15) !important;
}

/* ══════════════════════════════════════════════════════════
   PAGE HERO (Servicii)
   ══════════════════════════════════════════════════════════ */
.page-hero {
  position: relative;
  padding: 140px 0 80px;
  overflow: hidden;
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, #0a0a0a 0%, #1a1a1a 50%, #111 100%);
  overflow: hidden;
}

.page-hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.35);
  will-change: transform;
}

.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 60%, rgba(254, 104, 0, 0.06) 0%, transparent 60%);
}

.page-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.page-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4.5vw, 48px);
  font-weight: 900;
  line-height: 1.1;
  color: var(--dmc-white);
  margin-bottom: 16px;
}

.page-hero__subtitle {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
}

/* Breadcrumb */
.breadcrumb {
  margin-bottom: 24px;
}

.breadcrumb ol {
  display: flex;
  gap: 8px;
  align-items: center;
}

.breadcrumb li {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

.breadcrumb li + li::before {
  content: "›";
  margin-right: 8px;
  color: rgba(255,255,255,0.2);
}

.breadcrumb a {
  color: rgba(255,255,255,0.5);
  transition: color 0.2s ease;
}

.breadcrumb a:hover { color: var(--dmc-orange); }

.breadcrumb li[aria-current="page"] {
  color: var(--dmc-orange);
  font-weight: 600;
}

/* ══════════════════════════════════════════════════════════
   SERVICE DETAIL BLOCKS (Servicii page)
   ══════════════════════════════════════════════════════════ */
.svc-detail {
  padding: 60px 0 80px;
}

@media (min-width: 768px) { .svc-detail { padding: 80px 0 100px; } }

.svc-block {
  margin-bottom: 48px;
  padding: 36px 28px;
  border-radius: var(--radius-xl);
  background: var(--dmc-white);
  border: 1px solid var(--dmc-gray-200);
  transition: all 0.3s ease;
}

.svc-block:hover {
  border-color: rgba(254, 104, 0, 0.15);
  box-shadow: var(--shadow-md);
}

.svc-block--highlight {
  border-color: rgba(254, 104, 0, 0.2);
  background: linear-gradient(to bottom, rgba(254, 104, 0, 0.02) 0%, var(--dmc-white) 100%);
}

@media (min-width: 768px) {
  .svc-block { padding: 48px 40px; }
}

.svc-block__header {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 24px;
}

.svc-block__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  background: var(--dmc-orange-light);
  color: var(--dmc-orange);
}

.svc-block__emoji {
  font-size: 32px;
  line-height: 1;
}

.svc-block__num {
  font-family: var(--font-ethno);
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
  color: var(--dmc-orange);
  letter-spacing: 0.02em;
}

.svc-block__number {
  display: block;
  font-family: var(--font-ethno);
  font-size: 12px;
  font-weight: 400;
  color: var(--dmc-orange);
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}

.svc-block__title {
  font-family: var(--font-ethno);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 400;
  line-height: 1.15;
  color: var(--dmc-black);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.svc-block__body {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

@media (min-width: 768px) {
  .svc-block__body {
    grid-template-columns: 0.45fr 1fr;
    gap: 36px;
    align-items: start;
  }

  .svc-block:nth-child(even) .svc-block__body {
    grid-template-columns: 1fr 0.45fr;
  }

  .svc-block:nth-child(even) .svc-block__image {
    order: 2;
  }
}

.svc-block__image {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  aspect-ratio: 16 / 10;
}

.svc-block__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-md);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s ease;
}

@media (min-width: 768px) {
  .svc-block__image {
    aspect-ratio: 4 / 3;
  }
}

.svc-block:hover .svc-block__image img {
  transform: scale(1.05);
  filter: brightness(1.05);
}

.svc-block__content p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--dmc-gray-600);
  margin-bottom: 16px;
}

.svc-block__content strong { color: var(--dmc-black); }

.svc-block__content h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--dmc-black);
  margin: 24px 0 12px;
}

.svc-block__content ul {
  list-style: none;
  padding: 0;
}

.svc-block__content li {
  position: relative;
  padding-left: 24px;
  font-size: 14px;
  line-height: 1.65;
  color: var(--dmc-gray-600);
  margin-bottom: 8px;
}

.svc-block__content li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--dmc-orange-light);
  border: 2px solid var(--dmc-orange);
}

.svc-block__content li strong { color: var(--dmc-black); }

.svc-block__highlight-box {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  border-radius: var(--radius-md);
  background: var(--dmc-orange-light);
  border: 1px solid rgba(254, 104, 0, 0.15);
  margin: 20px 0;
  color: var(--dmc-orange);
}

.svc-block__highlight-box strong {
  color: var(--dmc-black) !important;
  font-size: 13px;
}

.svc-block__highlight-box a {
  color: var(--dmc-orange);
  font-size: 18px;
  font-weight: 800;
}

.svc-block__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--dmc-gray-100);
  grid-column: 1 / -1;
}

.svc-block__tags span {
  padding: 6px 14px;
  border-radius: var(--radius-full);
  background: var(--dmc-gray-50);
  border: 1px solid var(--dmc-gray-200);
  font-size: 12px;
  font-weight: 600;
  color: var(--dmc-gray-500);
}

/* ══════════════════════════════════════════════════════════
   WHY US (Servicii page)
   ══════════════════════════════════════════════════════════ */
.why-us {
  padding: 80px 0;
  background: var(--dmc-gray-50);
}

@media (min-width: 768px) { .why-us { padding: 100px 0; } }

.why-us__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 600px) { .why-us__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .why-us__grid { grid-template-columns: repeat(3, 1fr); } }

.why-card {
  background: var(--dmc-white);
  border: 1px solid var(--dmc-gray-200);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all 0.3s ease;
}

.why-card:hover {
  border-color: rgba(254, 104, 0, 0.2);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.why-card__number {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 900;
  color: var(--dmc-orange);
  opacity: 0.3;
  margin-bottom: 16px;
  line-height: 1;
}

.why-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--dmc-black);
  margin-bottom: 10px;
}

.why-card p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--dmc-gray-500);
}

/* ══════════════════════════════════════════════════════════
   ANIMATIONS (scroll reveal + variants)
   ══════════════════════════════════════════════════════════ */

/* Base reveal — fade up (default) */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0) translateX(0) scale(1);
}

/* Reveal from left */
.reveal--left {
  opacity: 0;
  transform: translateX(-60px);
  transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reveal from right */
.reveal--right {
  opacity: 0;
  transform: translateX(60px);
  transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reveal scale up */
.reveal--scale {
  opacity: 0;
  transform: scale(0.85);
  transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reveal rotate in */
.reveal--rotate {
  opacity: 0;
  transform: translateY(30px) rotate(3deg);
  transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reveal blur in */
.reveal--blur {
  opacity: 0;
  filter: blur(8px);
  transform: translateY(20px);
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal--left.is-visible,
.reveal--right.is-visible,
.reveal--scale.is-visible,
.reveal--rotate.is-visible {
  opacity: 1;
  transform: none;
}

.reveal--blur.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

/* Stagger children */
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-stagger.is-visible > * {
  opacity: 1;
  transform: translateY(0);
}

.reveal-stagger.is-visible > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: 0.12s; }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: 0.19s; }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: 0.26s; }
.reveal-stagger.is-visible > *:nth-child(5) { transition-delay: 0.33s; }
.reveal-stagger.is-visible > *:nth-child(6) { transition-delay: 0.4s; }

/* Parallax layer (controlled by JS) */
[data-parallax] {
  will-change: transform;
  transition: transform 0.1s linear;
}

/* Horizontal parallax line decoration */
.section-divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--dmc-gray-200) 20%, var(--dmc-gray-200) 80%, transparent 100%);
  position: relative;
  overflow: hidden;
}

.section-divider::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60px;
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--dmc-orange), transparent);
  animation: dividerGlow 4s ease-in-out infinite;
}

@keyframes dividerGlow {
  0% { left: -10%; }
  100% { left: 110%; }
}

/* Floating animation for decorative elements */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

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

/* Magnetic hover (subtle scale on approach) */
.btn {
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255,255,255,0.15) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.btn:hover::after {
  opacity: 1;
}

/* Tilt shadow on hover for cards */
.svc-card:hover,
.why-card:hover {
  transform: translateY(-8px);
}

/* Orange glow line on contact items */
.contact__item-icon {
  transition: all 0.3s ease;
}

.contact__item:hover .contact__item-icon {
  background: var(--dmc-orange);
  color: var(--dmc-white);
  box-shadow: 0 4px 20px rgba(254, 104, 0, 0.3);
  transform: scale(1.05);
}

/* Area tag hover wave */
.area-tag {
  position: relative;
  overflow: hidden;
}

.area-tag::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: var(--dmc-orange-light);
  transform: translate(-50%, -50%);
  transition: width 0.5s ease, height 0.5s ease;
  z-index: -1;
}

.area-tag:hover::before {
  width: 200%;
  height: 200%;
}

/* ══════════════════════════════════════════════════════════
   WHATSAPP FLOATING BUTTON
   ══════════════════════════════════════════════════════════ */
.whatsapp-float {
  position: fixed;
  right: 16px;
  bottom: 16px;
  bottom: calc(16px + env(safe-area-inset-bottom));
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45), 0 0 0 4px rgba(37, 211, 102, 0.15);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

@media (min-width: 768px) {
  .whatsapp-float {
    right: 24px;
    bottom: 24px;
    width: 60px;
    height: 60px;
  }
}

.whatsapp-float:hover {
  background: #20bd5a;
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
  flex-shrink: 0;
}

.whatsapp-float__pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid #25d366;
  animation: whatsappPulse 2s ease-out infinite;
  pointer-events: none;
}

@keyframes whatsappPulse {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.5); opacity: 0; }
}
