:root {
  --orange: #f6681e;
  --orange-2: #ff8a4c;
  --green: #009804;
  --green-2: #14c41a;
  --bg: #07090d;
  --bg-2: #0c1118;
  --bg-3: #121a24;
  --line: rgba(255, 255, 255, 0.08);
  --text: #eef2f5;
  --muted: #9aa7b3;
  --white: #ffffff;
  --radius: 22px;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  --font: "Outfit", system-ui, sans-serif;
  --display: "Syne", "Outfit", sans-serif;
  --header: 92px;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; color-scheme: dark; }

html, body { margin: 0; padding: 0; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}

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

a { color: inherit; text-decoration: none; }

button, input, select, textarea {
  font: inherit;
  color: inherit;
}

button { cursor: pointer; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--orange);
  color: #fff;
  padding: 10px 16px;
  z-index: 10000;
}
.skip-link:focus { left: 12px; }

.wrap {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--orange);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
  margin: 0 0 12px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), var(--green));
}

h1, h2, h3, .brand span {
  font-family: var(--display);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

h1 { font-size: clamp(2.3rem, 5vw, 4.6rem); margin: 0 0 18px; }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.8rem); margin: 0 0 16px; }
h3 { font-size: 1.15rem; margin: 0 0 10px; }
p { margin: 0 0 14px; color: var(--muted); }

.ico { display: inline-flex; width: 1.15em; height: 1.15em; }
.ico svg { width: 100%; height: 100%; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 999px;
  padding: 14px 24px;
  font-weight: 600;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  position: relative;
  overflow: hidden;
}
.btn .ico { width: 18px; height: 18px; }
.btn-primary {
  background: linear-gradient(120deg, var(--orange), #ff7a33 55%, var(--green));
  background-size: 180% 180%;
  color: #fff;
  box-shadow: 0 10px 30px rgba(246, 104, 30, 0.28);
  animation: gradient-shift 6s ease infinite;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 40px rgba(246, 104, 30, 0.4); }
.btn-ghost {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  color: var(--text);
}
.btn-ghost:hover { border-color: var(--orange); color: #fff; }

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

.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--bg);
  display: grid;
  place-items: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.preloader.is-done { opacity: 0; visibility: hidden; }
.preloader-inner { text-align: center; }
.preloader-inner img { width: 84px; margin: 0 auto 18px; animation: pulse 1.4s ease-in-out infinite; }
.preloader-inner p { letter-spacing: 0.3em; font-size: 12px; }
.preloader-bar {
  width: 160px;
  height: 3px;
  background: #1c2430;
  margin: 0 auto 14px;
  overflow: hidden;
  border-radius: 99px;
}
.preloader-bar span {
  display: block;
  height: 100%;
  width: 40%;
  background: linear-gradient(90deg, var(--orange), var(--green));
  animation: load 1s ease-in-out infinite;
}
@keyframes load {
  0% { transform: translateX(-120%); }
  100% { transform: translateX(380%); }
}
@keyframes pulse {
  0%, 100% { transform: scale(1); filter: drop-shadow(0 0 0 transparent); }
  50% { transform: scale(1.05); filter: drop-shadow(0 0 18px rgba(246,104,30,.45)); }
}

.cursor, .cursor-dot {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9998;
  mix-blend-mode: difference;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.cursor {
  width: 38px; height: 38px;
  border: 1px solid #fff;
  transition: width 0.2s, height 0.2s, background 0.2s;
}
.cursor.is-hover { width: 64px; height: 64px; background: rgba(255,255,255,0.08); }
.cursor-dot { width: 6px; height: 6px; background: var(--orange); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(18px);
  background: rgba(7, 9, 13, 0.78);
  border-bottom: 1px solid transparent;
  transition: background 0.3s, border-color 0.3s;
}
.site-header.is-scrolled { border-bottom-color: var(--line); background: rgba(7,9,13,0.92); }

.topbar {
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}
.topbar-inner {
  display: flex;
  gap: 22px;
  justify-content: space-between;
  padding: 8px 0;
}
.topbar-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  min-width: 0;
}
.topbar-item span { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.topbar-item:hover { color: var(--orange); }
.topbar-socials {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.topbar-socials a {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  border: 1px solid var(--line);
  color: #fff;
}
.topbar-socials a:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 74px;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}
.brand img { width: 52px; height: 52px; object-fit: contain; }
.brand span { font-size: 15px; line-height: 1.05; color: #fff; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-link {
  padding: 10px 12px;
  color: var(--muted);
  font-weight: 500;
  border-radius: 999px;
  background: transparent;
  border: 0;
}
.nav-link:hover, .nav-link.is-active, .nav-drop.is-active .nav-drop-btn { color: #fff; }
.nav-cta { margin-left: 8px; padding: 11px 18px; }

.nav-drop { position: relative; }
.nav-drop-btn { display: inline-flex; align-items: center; gap: 4px; }
.nav-drop-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 280px;
  background: #101820;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 8px;
  display: none;
  box-shadow: var(--shadow);
}
.nav-drop:hover .nav-drop-menu,
.nav-drop.is-open .nav-drop-menu { display: grid; }
.nav-drop-menu a {
  padding: 10px 12px;
  border-radius: 10px;
  color: var(--muted);
}
.nav-drop-menu a:hover { background: rgba(246,104,30,0.12); color: #fff; }

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  color: #fff;
  width: 44px; height: 44px;
  border-radius: 12px;
}

.hero {
  position: relative;
  min-height: calc(100vh - 40px);
  display: grid;
  place-items: center;
  overflow: hidden;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.08);
  opacity: 0;
  transition: opacity 1s ease;
  animation: kenburns 18s ease-in-out infinite alternate;
}
.hero-slide.is-on { opacity: 1; }
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(246,104,30,0.22), transparent 28%),
    radial-gradient(circle at 80% 80%, rgba(0,152,4,0.18), transparent 30%),
    linear-gradient(180deg, rgba(7,9,13,0.35), rgba(7,9,13,0.88));
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: radial-gradient(circle at center, #000 30%, transparent 75%);
  animation: grid-move 22s linear infinite;
  z-index: 1;
}
@keyframes grid-move {
  to { background-position: 70px 70px; }
}
@keyframes kenburns {
  from { transform: scale(1.05) translate(0,0); }
  to { transform: scale(1.16) translate(-2%, -1%); }
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 90px 0 80px;
  max-width: 920px;
}
.hero h1 span {
  background: linear-gradient(90deg, #fff, var(--orange-2), var(--green-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero p.lead {
  font-size: clamp(1rem, 2vw, 1.2rem);
  max-width: 680px;
  margin: 0 auto 28px;
}
.hero-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.hero-scan {
  position: absolute;
  left: 0; right: 0;
  height: 120px;
  background: linear-gradient(180deg, transparent, rgba(246,104,30,0.12), transparent);
  animation: scan 5.5s linear infinite;
  z-index: 1;
  pointer-events: none;
}
@keyframes scan {
  from { top: -120px; }
  to { top: 110%; }
}
.hero-dots {
  position: absolute;
  z-index: 3;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}
.hero-dots button {
  width: 10px; height: 10px;
  border-radius: 99px;
  border: 0;
  background: #fff4;
}
.hero-dots button.is-on { background: var(--orange); width: 28px; }

.marquee {
  border-block: 1px solid var(--line);
  background: #0a1016;
  overflow: hidden;
  padding: 14px 0;
}
.marquee-track {
  display: flex;
  gap: 42px;
  width: max-content;
  animation: marquee 28s linear infinite;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 13px;
}
.marquee-track span { white-space: nowrap; }
.marquee b { color: var(--orange); font-weight: 700; }
@keyframes marquee {
  to { transform: translateX(-50%); }
}

.section { padding: 92px 0; position: relative; }
.section-head { max-width: 680px; margin-bottom: 42px; }
.section.alt { background: linear-gradient(180deg, #0a1017, #07090d); }

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: -48px;
  position: relative;
  z-index: 4;
}
.stat {
  background: rgba(18, 26, 36, 0.9);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  backdrop-filter: blur(12px);
}
.stat strong {
  display: block;
  font-family: var(--display);
  font-size: 2rem;
  color: #fff;
}
.stat span { color: var(--muted); font-size: 14px; }

.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
.checklist { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 18px; margin: 22px 0; }
.check-list, .checklist { list-style: none; padding: 0; }
.check-list li, .checklist li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--text);
  margin: 0 0 8px;
}
.check-list .ico, .checklist .ico { color: var(--green); margin-top: 3px; flex: 0 0 auto; }

.media-frame {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
}
.media-frame img { width: 100%; height: 100%; object-fit: cover; min-height: 360px; object-position: center 28%; }
.media-frame.is-team img { min-height: 420px; aspect-ratio: 4 / 3; }
.media-frame::after {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(246,104,30,0.35);
  border-radius: 18px;
  pointer-events: none;
}
.orb {
  position: absolute;
  width: 180px; height: 180px;
  border-radius: 50%;
  filter: blur(30px);
  z-index: -1;
  animation: float 8s ease-in-out infinite;
}
.orb.o1 { background: rgba(246,104,30,0.35); top: -30px; left: -20px; }
.orb.o2 { background: rgba(0,152,4,0.28); bottom: -20px; right: -10px; animation-delay: -3s; }
@keyframes float {
  50% { transform: translateY(-16px); }
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  perspective: 1200px;
}
.cards.four { grid-template-columns: repeat(4, 1fr); }
.service-card { transform-style: preserve-3d; }
.service-card, .glass-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.015));
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}
.service-card:hover, .glass-card:hover {
  transform: translateY(-8px);
  border-color: rgba(246,104,30,0.45);
  box-shadow: 0 20px 50px rgba(246,104,30,0.12);
}
.service-card img { height: 180px; width: 100%; object-fit: cover; }
.service-card .body { padding: 20px 20px 24px; }
.service-card .icon-badge {
  width: 48px; height: 48px;
  border-radius: 14px;
  display: grid; place-items: center;
  background: rgba(246,104,30,0.12);
  color: var(--orange);
  margin-bottom: 12px;
}
.service-card p {
  font-size: 14.5px;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.service-card .more { color: var(--orange); font-weight: 600; display: inline-flex; align-items: center; gap: 6px; }
.service-card.is-featured {
  border-color: rgba(246,104,30,0.5);
  box-shadow: 0 12px 36px rgba(246,104,30,0.1);
}
.service-card.is-featured .icon-badge {
  background: rgba(0,152,4,0.14);
  color: #4adf5a;
}
.service-lead {
  font-size: 1.12rem;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 18px;
}
.offer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 8px 0 28px;
}
.offer-grid p { margin: 0; font-size: 14.5px; }
.service-main > p { margin-bottom: 16px; }

.glass-card { padding: 22px; }

.steps {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 0;
}
.steps li, .process li {
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 22px;
  background: #0e151d;
}
.steps span, .process span {
  font-family: var(--display);
  color: var(--orange);
  font-size: 1.4rem;
}
.steps h3, .process h3 { color: #fff; margin: 8px 0 6px; }
.steps-title { margin: 28px 0 14px; }
.process { list-style: none; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }

.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.gallery a {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  min-height: 180px;
}
.gallery img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery a:hover img { transform: scale(1.08); }
.gallery figcaption, .gallery .cap {
  position: absolute;
  inset: auto 10px 10px 10px;
  background: rgba(7,9,13,0.72);
  backdrop-filter: blur(8px);
  padding: 10px 12px;
  border-radius: 12px;
  font-size: 13px;
}
.gallery .cap small { display: block; color: var(--orange); }

.video-block { margin-bottom: 56px; }
.video-deck { display: grid; gap: 16px; }
.video-protect {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background: #000;
  border: 1px solid var(--line);
  user-select: none;
}
.video-protect video {
  width: 100%;
  display: block;
  background: #000;
}
.video-deck--landscape .video-protect video { aspect-ratio: 16 / 9; object-fit: contain; }
.video-deck--portrait .video-stage { max-width: 420px; margin-inline: auto; }
.video-deck--portrait .video-protect video { aspect-ratio: 9 / 16; max-height: 72vh; object-fit: contain; margin-inline: auto; }
.video-brand {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}
.video-brand::after {
  content: "NOURHMA GROUP";
  position: absolute;
  inset: 18% 8%;
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-size: clamp(1.1rem, 4vw, 2.4rem);
  font-weight: 800;
  letter-spacing: 0.18em;
  color: #fff;
  opacity: 0.14;
  transform: rotate(-16deg);
  text-align: center;
}
.video-logo-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(7, 9, 13, 0.78);
  border: 1px solid rgba(246, 104, 30, 0.45);
  border-radius: 999px;
  padding: 6px 12px 6px 6px;
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.04em;
}
.video-logo-tag img { width: 28px; height: 28px; object-fit: contain; }
.video-watermark {
  position: absolute;
  right: 14px;
  bottom: 52px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}
.video-now {
  margin: 10px 0 0;
  color: var(--text);
  font-weight: 600;
}
.video-strip {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 8px;
  scroll-snap-type: x mandatory;
}
.video-pick {
  flex: 0 0 auto;
  scroll-snap-align: start;
  max-width: 260px;
  text-align: left;
  background: #0e151d;
  border: 1px solid var(--line);
  color: var(--muted);
  border-radius: 14px;
  padding: 12px 14px 12px 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.video-deck--portrait .video-pick { max-width: 180px; }
.video-pick.is-on, .video-pick:hover {
  border-color: var(--orange);
  color: #fff;
}
.video-pick-play {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 7px 0 7px 12px;
  border-color: transparent transparent transparent var(--orange);
  flex-shrink: 0;
}
video::-webkit-media-controls-overflow-button { display: none; }
video::-internal-media-controls-download-button { display: none !important; }

.cta-band {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  padding: 56px 40px;
  background:
    linear-gradient(120deg, rgba(246,104,30,0.16), rgba(0,152,4,0.16)),
    url("../img/carousel-2.jpg") center/cover;
  border: 1px solid var(--line);
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(7,9,13,0.72);
}
.cta-band .inner { position: relative; z-index: 1; display: flex; justify-content: space-between; gap: 24px; align-items: center; }
.cta-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 22px; }

.map-embed {
  border: 0;
  width: 100%;
  height: 420px;
  border-radius: 24px;
  filter: none;
  border: 1px solid var(--line);
}
.map-caption {
  margin-top: 12px;
  text-align: center;
  font-size: 14.5px;
}
.map-caption a { color: var(--text); }
.map-caption a:hover { color: var(--orange); }

.page-hero {
  position: relative;
  min-height: 340px;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  filter: saturate(1.05);
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7,9,13,0.35), rgba(7,9,13,0.88));
}
.page-hero-content { position: relative; z-index: 1; text-align: center; padding: 80px 0 50px; }
.crumbs { display: flex; gap: 8px; justify-content: center; color: var(--muted); font-size: 14px; }
.crumbs a:hover { color: var(--orange); }

.service-layout { display: grid; grid-template-columns: 280px 1fr; gap: 36px; }
.side-list { display: grid; gap: 8px; margin: 18px 0 22px; }
.side-list a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid var(--line);
  color: var(--muted);
}
.side-list a.is-active, .side-list a:hover {
  border-color: var(--orange);
  color: #fff;
  background: rgba(246,104,30,0.08);
}
.info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 24px 0; }

.form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  background: #0e151d;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 28px;
}
.form .full { grid-column: 1 / -1; }
.form label { display: block; font-size: 13px; color: var(--muted); margin-bottom: 6px; }
.form input, .form select, .form textarea {
  width: 100%;
  background: #0a1016;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 13px 14px;
  outline: none;
}
.form input:focus, .form select:focus, .form textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(246,104,30,0.15);
}
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; }
.alert {
  grid-column: 1 / -1;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(246,104,30,0.12);
  border: 1px solid rgba(246,104,30,0.35);
  color: #ffd9c2;
}
.legal { max-width: 760px; }
.legal h2 { margin-top: 32px; }

.footer {
  position: relative;
  padding: 70px 0 120px;
  border-top: 1px solid var(--line);
  overflow: hidden;
}
.footer-glow {
  position: absolute;
  width: 420px; height: 420px;
  right: -80px; top: -80px;
  background: radial-gradient(circle, rgba(246,104,30,0.18), transparent 60%);
  pointer-events: none;
}
.footer-grid { display: grid; grid-template-columns: 1.4fr 0.8fr 1fr; gap: 36px; }
.footer h3 { color: #fff; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links a { color: var(--muted); display: inline-block; padding: 5px 0; }
.footer-links a:hover { color: var(--orange); }
.footer-contact p, .footer-contact a { display: flex; gap: 8px; align-items: flex-start; color: var(--muted); }
.socials {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}
.social {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: var(--orange);
  color: #fff;
  transition: transform 0.2s ease, background 0.2s ease;
}
.social:hover {
  transform: translateY(-3px);
  background: var(--green);
}
.footer-bottom { margin-top: 40px; border-top: 1px solid var(--line); }
.footer-bottom-inner { display: flex; justify-content: space-between; gap: 12px; padding: 18px 0; color: var(--muted); font-size: 14px; }
.footer-bottom a { color: var(--orange); }

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 28px;
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 8px;
  background: #25d366;
  color: #062b12;
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.35);
  animation: float 3.5s ease-in-out infinite;
}
.whatsapp-float .ico { width: 22px; height: 22px; color: #062b12; }

.mobile-dock {
  display: none;
  position: fixed;
  left: 12px; right: 12px; bottom: 12px;
  z-index: 80;
  background: rgba(12,17,24,0.94);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 8px;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 6px;
  backdrop-filter: blur(12px);
}
.mobile-dock a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  padding: 8px 4px;
  border-radius: 12px;
  color: #fff;
}
.mobile-dock a:nth-child(2) { color: #25d366; }
.mobile-dock a:nth-child(3) { color: var(--orange); }

.to-top {
  position: fixed;
  left: 22px;
  bottom: 28px;
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: #121a24;
  color: #fff;
  display: none;
  place-items: center;
  z-index: 80;
  transform: rotate(-90deg);
}
.to-top.is-on { display: grid; }

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.88);
  display: none;
  place-items: center;
  z-index: 200;
  padding: 24px;
}
.lightbox.is-on { display: grid; }
.lightbox img { max-width: min(1100px, 100%); max-height: 86vh; border-radius: 16px; }
.lightbox button {
  position: absolute;
  top: 18px; right: 18px;
  background: transparent;
  border: 0;
  color: #fff;
  font-size: 32px;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  animation: none;
  transition: opacity 0.7s ease var(--d, 0s), transform 0.7s ease var(--d, 0s);
}
.reveal.in { opacity: 1; transform: none; }

@media (hover: none), (pointer: coarse) {
  .cursor, .cursor-dot { display: none !important; }
}

@media (max-width: 980px) {
  .topbar { display: none; }
  .stats, .cards, .cards.four, .split, .steps, .process, .gallery, .service-layout, .info-grid, .footer-grid, .form, .offer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .split, .service-layout, .cta-band .inner, .footer-grid { grid-template-columns: 1fr; }
  .nav-toggle { display: grid; place-items: center; }
  .nav-menu {
    display: none;
    position: absolute;
    left: 0; right: 0; top: 100%;
    background: #0c1118;
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    padding: 12px 20px 20px;
  }
  .nav-menu.is-open { display: flex; }
  .nav-drop-menu { position: static; display: none; min-width: 0; box-shadow: none; }
  .nav-drop.is-open .nav-drop-menu { display: grid; }
  .nav-cta { margin: 8px 0 0; }
  .whatsapp-float span { display: none; }
  .mobile-dock { display: grid; }
  .whatsapp-float, .to-top { bottom: 86px; }
  .footer { padding-bottom: 140px; }
  .gallery { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .stats, .cards, .cards.four, .steps, .process, .form, .info-grid, .gallery, .checklist, .offer-grid {
    grid-template-columns: 1fr;
  }
  .video-pick { max-width: 220px; }
  .hero { min-height: 86vh; }
  .wrap { width: min(1180px, calc(100% - 28px)); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
  .reveal { opacity: 1; transform: none; }
}
