/* ============================================================
   FitFix — Gym Equipment Repair & Maintenance
   Theme: Black + Red + White (from logo)
   ============================================================ */

:root {
  --black: #0a0a0a;
  --black-2: #121212;
  --black-3: #1a1a1a;
  --red: #e10600;
  --red-dark: #b30500;
  --white: #ffffff;
  --gray: #b3b3b3;
  --gray-2: #8a8a8a;
  --border: rgba(255, 255, 255, 0.08);
  --radius: 16px;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  --shadow-red: 0 12px 35px rgba(225, 6, 0, 0.35);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --container: 1280px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: "Inter", system-ui, sans-serif;
  background: var(--black);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== Vector Icons ===== */
.icon-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.icon {
  width: 1em; height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  vertical-align: -0.15em;
  flex-shrink: 0;
}

.container { width: min(94%, var(--container)); margin-inline: auto; }
.text-red { color: var(--red); }

h1, h2, h3, .nav__brand-text, .preloader__text {
  font-family: "Teko", "Inter", sans-serif;
  letter-spacing: 0.5px;
  line-height: 1.05;
}

/* ===== Buttons ===== */
.btn {
  --pad: 14px 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: var(--pad);
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s;
  position: relative;
  overflow: hidden;
}
.btn--primary { background: var(--red); color: #fff; box-shadow: var(--shadow-red); }
.btn--primary:hover { transform: translateY(-3px); box-shadow: 0 18px 45px rgba(225,6,0,0.5); }
.btn--ghost { border-color: var(--border); color: #fff; background: transparent; }
.btn--ghost:hover { border-color: var(--red); color: var(--red); transform: translateY(-3px); }
.btn--full { width: 100%; }

/* ===== Preloader ===== */
.preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--black);
  display: grid; place-content: center; justify-items: center; gap: 18px;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.preloader.hide { opacity: 0; visibility: hidden; }

.preloader__logo { position: relative; width: 150px; height: 150px; display: grid; place-items: center; }
.preloader__logo img {
  width: 76%; position: relative; z-index: 2; border-radius: 14px;
  filter: drop-shadow(0 0 16px rgba(225, 6, 0, 0.55));
  animation: logoPulse 1.8s var(--ease) infinite;
}
.preloader__ring {
  position: absolute; inset: 0; border-radius: 50%;
  border: 3px solid transparent; border-top-color: var(--red); border-right-color: var(--red);
  animation: spin 1.6s linear infinite;
}
.preloader__ring--2 {
  inset: -14px; border-top-color: transparent; border-right-color: transparent;
  border-bottom-color: rgba(225, 6, 0, 0.4); border-left-color: rgba(225, 6, 0, 0.4);
  animation: spin 2.6s linear infinite reverse;
}
@keyframes logoPulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.08); } }

.preloader__text { font-size: 2.4rem; font-weight: 700; color: #fff; animation: fadeUp 0.8s var(--ease); }
.preloader__text span { color: var(--red); }
@keyframes fadeUp { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

.preloader__bar { width: 160px; height: 3px; background: rgba(255, 255, 255, 0.08); border-radius: 3px; overflow: hidden; }
.preloader__bar span { display: block; height: 100%; width: 35%; background: var(--red); border-radius: 3px; animation: barMove 1.3s ease-in-out infinite; }
@keyframes barMove { 0% { transform: translateX(-120%); } 100% { transform: translateX(380%); } }

/* ===== Navbar ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 18px 0;
  transition: background 0.4s, padding 0.4s, box-shadow 0.4s;
}
.nav.scrolled {
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(12px);
  padding: 10px 0;
  box-shadow: 0 8px 30px rgba(0,0,0,0.4);
  border-bottom: 1px solid var(--border);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; }
.nav__brand { display: flex; align-items: center; gap: 10px; }
.nav__logo { width: 76px; height: 76px; object-fit: cover; border-radius: 12px; transition: width 0.4s, height 0.4s; }
.nav.scrolled .nav__logo { width: 58px; height: 58px; }
.nav__brand-text { font-size: 1.7rem; font-weight: 700; color: #fff; }
.nav__brand-text span { color: var(--red); }

.nav__menu { display: flex; align-items: center; gap: 8px; }
.nav__link {
  padding: 8px 16px; border-radius: 30px; font-weight: 500; font-size: 0.95rem;
  color: var(--gray); transition: color 0.3s, background 0.3s; position: relative;
}
.nav__link:hover { color: #fff; }
.nav__link.active-link { color: var(--red); }
.nav__link--btn { background: var(--red); color: #fff !important; box-shadow: var(--shadow-red); }
.nav__link--btn:hover { transform: translateY(-2px); }

.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 6px; z-index: 1100; }
.nav__toggle span { width: 26px; height: 3px; background: #fff; border-radius: 3px; transition: transform 0.35s var(--ease), opacity 0.3s; }
.nav__toggle.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav__toggle.active span:nth-child(2) { opacity: 0; }
.nav__toggle.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ===== Hero ===== */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; padding: 120px 0 60px; overflow: hidden; }
.hero__bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(225,6,0,0.18), transparent 45%),
    radial-gradient(circle at 10% 90%, rgba(225,6,0,0.10), transparent 40%),
    var(--black);
  z-index: -2;
}
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(var(--border) 1px, transparent 1px), linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 60px 60px; opacity: 0.35; mask-image: radial-gradient(circle at 50% 40%, #000 0%, transparent 75%);
}
.hero__glow { position: absolute; width: 500px; height: 500px; right: -100px; top: -100px; background: var(--red); filter: blur(180px); opacity: 0.25; border-radius: 50%; z-index: -1; animation: float 8s ease-in-out infinite; }

/* ---- Floating particles ---- */
.hero__particles { position: absolute; inset: 0; overflow: hidden; z-index: -1; pointer-events: none; }
.particle {
  position: absolute; bottom: -30px; border-radius: 50%;
  background: radial-gradient(circle, rgba(225,6,0,0.9), rgba(225,6,0,0) 72%);
  animation: particleFloat linear infinite;
}
@keyframes particleFloat {
  0% { transform: translateY(0) translateX(0); opacity: 0; }
  12% { opacity: 0.9; }
  85% { opacity: 0.4; }
  100% { transform: translateY(-720px) translateX(var(--drift, 30px)); opacity: 0; }
}

.hero__inner { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 50px; align-items: center; }
.hero__tag { display: inline-block; padding: 7px 16px; border: 1px solid var(--red); border-radius: 30px; color: var(--red); font-size: 0.8rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 20px; }
.hero__title { font-size: clamp(2.8rem, 6vw, 5rem); font-weight: 700; margin-bottom: 18px; }
.hero__title--anim .word {
  display: inline-block; opacity: 0; transform: translateY(100%) rotate(4deg);
  animation: wordUp 0.8s var(--ease) forwards;
  animation-delay: calc(var(--i) * 0.09s + 0.15s);
}
@keyframes wordUp { to { opacity: 1; transform: translateY(0) rotate(0); } }
.hero__sub { color: var(--gray); max-width: 520px; margin-bottom: 30px; font-size: 1.05rem; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 45px; }
.hero__stats { display: flex; gap: 36px; flex-wrap: wrap; }
.hero__stat { display: flex; flex-direction: column; }
.hero__stat .counter { font-family: "Teko"; font-size: 2.6rem; font-weight: 700; color: var(--red); line-height: 1; }
.hero__stat small { color: var(--gray-2); font-size: 0.82rem; }

.hero__visual { position: relative; display: grid; place-items: center; }

/* ---- Orbit visual ---- */
.orbit {
  position: relative; width: min(440px, 90vw); aspect-ratio: 1;
  display: grid; place-items: center;
}
/* soft red glow behind */
.orbit::before {
  content: ""; position: absolute; width: 58%; height: 58%; border-radius: 50%;
  background: radial-gradient(circle, rgba(225,6,0,0.45), transparent 70%);
  filter: blur(40px); animation: pulseGlow 4s ease-in-out infinite;
}
@keyframes pulseGlow { 0%,100%{ transform: scale(1); opacity: 0.7; } 50%{ transform: scale(1.12); opacity: 1; } }

/* dashed rotating rings */
.orbit__ring { position: absolute; border-radius: 50%; }
.orbit__ring--1 { width: 66%; height: 66%; border: 1px dashed rgba(255,255,255,0.14); animation: spin 22s linear infinite; }
.orbit__ring--2 { width: 100%; height: 100%; border: 1px dashed rgba(225,6,0,0.30); animation: spin 32s linear infinite reverse; }

/* center medallion with logo */
.orbit__core {
  position: relative; z-index: 3; width: 46%; aspect-ratio: 1; border-radius: 50%;
  background: linear-gradient(150deg, var(--black-3), #060606);
  border: 1px solid var(--border); display: grid; place-items: center;
  box-shadow: var(--shadow), inset 0 0 35px rgba(0,0,0,0.7);
  animation: floatY 6s ease-in-out infinite;
}
.orbit__core::after { /* rotating accent ring around core */
  content: ""; position: absolute; inset: -7px; border-radius: 50%;
  border: 2px solid transparent; border-top-color: var(--red); border-right-color: var(--red);
  animation: spin 4s linear infinite;
}
.orbit__core img { width: 88%; position: relative; z-index: 2; }
.orbit__core--noimg { background: radial-gradient(circle, rgba(225,6,0,0.25), var(--black)); }
.orbit__core--noimg img { display: none; }

/* orbiting icon paths — parent rotates, icon counter-rotates to stay upright */
.orbit__path { position: absolute; border-radius: 50%; pointer-events: none; }
.orbit__path--a { width: 100%; height: 100%; animation: spin 16s linear infinite; }
.orbit__path--b { width: 66%;  height: 66%;  animation: spin 16s linear infinite; animation-delay: -4s; }
.orbit__path--c { width: 100%; height: 100%; animation: spin 16s linear infinite; animation-delay: -8s; }
.orbit__path--d { width: 66%;  height: 66%;  animation: spin 16s linear infinite; animation-delay: -12s; }

.orbit__icon {
  position: absolute; top: 0; left: 50%; transform: translate(-50%, -50%);
  width: 52px; height: 52px; display: grid; place-items: center; font-size: 1.5rem;
  background: rgba(18,18,18,0.92); border: 1px solid var(--border); border-radius: 16px;
  box-shadow: var(--shadow); backdrop-filter: blur(6px); color: var(--red);
}
.orbit__path--a .orbit__icon { animation: spin 16s linear infinite reverse; }
.orbit__path--b .orbit__icon { animation: spin 16s linear infinite reverse; animation-delay: -4s; }
.orbit__path--c .orbit__icon { animation: spin 16s linear infinite reverse; animation-delay: -8s; }
.orbit__path--d .orbit__icon { animation: spin 16s linear infinite reverse; animation-delay: -12s; }

@keyframes spin { to { transform: rotate(360deg); } }
@keyframes floatY { 0%,100%{ transform: translateY(0); } 50%{ transform: translateY(-12px); } }

/* floating info chips */
.hero__chip {
  position: absolute; z-index: 4; background: rgba(18,18,18,0.9); border: 1px solid var(--border);
  backdrop-filter: blur(8px); padding: 10px 16px; border-radius: 30px; font-size: 0.85rem;
  font-weight: 600; box-shadow: var(--shadow); display: flex; align-items: center; gap: 8px;
}
.hero__chip .icon { color: var(--red); font-size: 1.1rem; }
.hero__chip--1 { top: 8%; left: -6px; animation: floatY 5s ease-in-out infinite; }
.hero__chip--2 { bottom: 10%; right: -6px; animation: floatY 5s ease-in-out infinite 1.5s; }
.hero__dot { width: 9px; height: 9px; border-radius: 50%; background: #22c55e; box-shadow: 0 0 0 0 rgba(34,197,94,0.6); animation: blink 1.6s ease-out infinite; }
@keyframes blink { 0%{ box-shadow: 0 0 0 0 rgba(34,197,94,0.6); } 100%{ box-shadow: 0 0 0 8px rgba(34,197,94,0); } }

.hero__scroll { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); width: 26px; height: 42px; border: 2px solid var(--gray-2); border-radius: 20px; display: grid; justify-items: center; padding-top: 7px; }
.hero__scroll span { width: 4px; height: 8px; background: var(--red); border-radius: 4px; animation: scrollDot 1.6s infinite; }
@keyframes scrollDot { 0%{opacity:0; transform:translateY(0)} 40%{opacity:1} 80%{opacity:0; transform:translateY(14px)} }

/* ===== Marquee ===== */
.marquee { background: var(--red); padding: 14px 0; overflow: hidden; white-space: nowrap; border-block: 2px solid var(--black); }
.marquee__track { display: inline-flex; gap: 24px; animation: marquee 22s linear infinite; font-family: "Teko"; font-size: 1.5rem; font-weight: 600; letter-spacing: 2px; }
.marquee__track span { color: #fff; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ===== Sections ===== */
.section { padding: 100px 0; }
.section--alt { background: var(--black-2); }
.section__head { text-align: center; max-width: 640px; margin: 0 auto 60px; }
.section__kicker { color: var(--red); font-weight: 600; letter-spacing: 2px; text-transform: uppercase; font-size: 0.8rem; }
.section__title { font-size: clamp(2.2rem, 5vw, 3.4rem); font-weight: 700; margin: 6px 0 14px; }
.section__lead { color: var(--gray); }

/* ===== Grid / Cards ===== */
.grid { display: grid; gap: 24px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

/* ===== Industries (tag pills) ===== */
.tag-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }
.tag-pill {
  padding: 12px 22px; border-radius: 30px; font-weight: 600; font-size: 0.95rem;
  background: var(--black-3); border: 1px solid var(--border); color: #fff;
  transition: transform 0.3s var(--ease), border-color 0.3s, color 0.3s;
}
.tag-pill:hover { transform: translateY(-3px); border-color: var(--red); color: var(--red); }

/* ===== Brands ===== */
.brand-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(170px, 1fr)); gap: 18px; }
.brand-card {
  display: flex; align-items: center; justify-content: center;
  height: 110px; padding: 22px 24px; border-radius: var(--radius); position: relative; overflow: hidden;
  background: #f5f5f5; border: 1px solid var(--border);
  transition: transform 0.35s var(--ease), border-color 0.35s, box-shadow 0.35s, background 0.35s;
}
.brand-card::before {
  content: ""; position: absolute; inset: 0; opacity: 0; transition: opacity 0.35s; pointer-events: none;
  box-shadow: inset 0 0 0 2px var(--red);
  border-radius: inherit;
}
.brand-card:hover { transform: translateY(-6px); border-color: rgba(225,6,0,0.45); box-shadow: var(--shadow-red); background: #ffffff; }
.brand-card:hover::before { opacity: 1; }
.brand-card img {
  max-width: 100%; max-height: 100%; width: auto; height: auto; object-fit: contain;
  position: relative; z-index: 1; transition: transform 0.35s var(--ease);
}
.brand-card:hover img { transform: scale(1.06); }

.brand-note {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  margin-top: 34px; color: var(--gray); font-size: 0.9rem;
}
.brand-note .icon { color: var(--red); flex-shrink: 0; }

/* ===== Clients ===== */
.client-showcase { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.client-cat {
  background: linear-gradient(160deg, var(--black-3), var(--black-2));
  border: 1px solid var(--border); border-radius: var(--radius); padding: 30px 28px;
}
.client-cat__title {
  display: flex; align-items: center; gap: 10px; font-size: 1.3rem; font-weight: 700;
  color: #fff; margin-bottom: 20px; padding-bottom: 16px; border-bottom: 1px solid var(--border);
}
.client-cat__title .icon { color: var(--red); font-size: 1.3rem; }
.client-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.client-chip {
  display: inline-flex; align-items: center; gap: 7px; padding: 9px 16px 9px 12px;
  border-radius: 30px; background: rgba(255,255,255,0.04); border: 1px solid var(--border);
  color: var(--gray); font-size: 0.88rem; font-weight: 500;
  transition: transform 0.3s var(--ease), border-color 0.3s, color 0.3s, background 0.3s;
}
.client-chip .icon { color: var(--red); font-size: 0.8rem; }
.client-chip:hover { transform: translateY(-2px); border-color: rgba(225,6,0,0.45); color: #fff; background: rgba(225,6,0,0.08); }

.card {
  background: linear-gradient(160deg, var(--black-3), var(--black-2));
  border: 1px solid var(--border); border-radius: var(--radius); padding: 34px 28px;
  transition: transform 0.35s var(--ease), border-color 0.4s, box-shadow 0.4s; position: relative; overflow: hidden;
  transform-style: preserve-3d; will-change: transform;
}
.card::before { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 3px; background: var(--red); transform: scaleX(0); transform-origin: left; transition: transform 0.4s var(--ease); z-index: 2; }
.card::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
  background: radial-gradient(480px circle at var(--mx, 50%) var(--my, 50%), rgba(225,6,0,0.20), transparent 45%);
  opacity: 0; transition: opacity 0.35s;
}
.card:hover { transform: translateY(-6px); border-color: rgba(225,6,0,0.4); box-shadow: var(--shadow); }
.card:hover::before { transform: scaleX(1); }
.card:hover::after { opacity: 1; }
.card:hover::before { transform: scaleX(1); }
.card__icon { width: 60px; height: 60px; display: grid; place-items: center; font-size: 1.7rem; background: rgba(225,6,0,0.12); border-radius: 14px; margin-bottom: 18px; transition: transform 0.4s var(--ease); color: var(--red); }
.card:hover .card__icon { transform: scale(1.1) rotate(-8deg); }
.card__title { font-size: 1.5rem; margin-bottom: 8px; }
.card p { color: var(--gray); font-size: 0.95rem; }

/* ===== Why Us ===== */
.why__grid, .about__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.why__imgwrap { aspect-ratio: 4/3; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow); position: relative; }
.why__imgwrap img { width: 100%; height: 100%; object-fit: cover; }
.why__imgwrap--logo { background: radial-gradient(circle at 50% 40%, rgba(225,6,0,0.18), var(--black)); display: grid; place-items: center; }
.why__imgwrap--logo img { object-fit: contain; padding: 18px; }
.why__imgwrap--noimg { background: radial-gradient(circle at 50% 40%, rgba(225,6,0,0.25), var(--black-2)); }
.why__list { margin: 22px 0 28px; display: grid; gap: 14px; }
.why__list li { padding-left: 32px; position: relative; color: var(--gray); }
.why__list li::before { content: "✓"; position: absolute; left: 0; top: 0; width: 22px; height: 22px; background: var(--red); color: #fff; border-radius: 50%; display: grid; place-items: center; font-size: 0.7rem; font-weight: 700; }
.why__list strong { color: #fff; }

/* ===== Steps ===== */
.step { text-align: center; padding: 30px 20px; border: 1px solid var(--border); border-radius: var(--radius); transition: transform 0.4s var(--ease), border-color 0.4s; }
.step:hover { transform: translateY(-6px); border-color: rgba(225,6,0,0.4); }
.step__num { font-family: "Teko"; font-size: 3rem; font-weight: 700; color: var(--red); line-height: 1; opacity: 0.85; }
.step h3 { font-size: 1.4rem; margin: 6px 0; }
.step p { color: var(--gray); font-size: 0.92rem; }

/* ===== About stats ===== */
.about__stats { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.statbox { background: var(--black-3); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px 20px; text-align: center; transition: transform 0.4s var(--ease), border-color 0.4s; }
.statbox:hover { transform: translateY(-6px); border-color: rgba(225,6,0,0.4); }
.statbox .counter { font-family: "Teko"; font-size: 3rem; font-weight: 700; color: var(--red); line-height: 1; }
.statbox small { color: var(--gray); display: block; margin-top: 4px; }

/* ===== Contact ===== */
.contact__grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 40px; }
.contact__form { background: var(--black-2); border: 1px solid var(--border); border-radius: var(--radius); padding: 34px; }
.field { position: relative; margin-bottom: 22px; }
.field input, .field textarea {
  width: 100%; background: var(--black-3); border: 1px solid var(--border); border-radius: 10px;
  padding: 16px 14px 8px; color: #fff; font-family: inherit; font-size: 0.95rem; resize: vertical; transition: border-color 0.3s;
}
.field textarea { padding-top: 18px; }
.field label { position: absolute; left: 14px; top: 14px; color: var(--gray-2); pointer-events: none; transition: 0.25s var(--ease); font-size: 0.95rem; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--red); }
.field input:focus + label, .field input:not(:placeholder-shown) + label,
.field textarea:focus + label, .field textarea:not(:placeholder-shown) + label {
  top: 4px; font-size: 0.7rem; color: var(--red);
}
.form__note { margin-top: 14px; color: #4ade80; font-weight: 600; }
.form__note:not([hidden]) { display: flex; align-items: center; gap: 8px; }
.form__note--error { color: #f87171; font-weight: 500; font-size: 0.88rem; }

.contact__info { background: linear-gradient(160deg, var(--red), var(--red-dark)); border-radius: var(--radius); padding: 36px; box-shadow: var(--shadow-red); }
.contact__info h3 { font-size: 1.8rem; }
.contact__info > p { opacity: 0.9; margin-bottom: 20px; }
.contact__list { display: grid; gap: 14px; margin-bottom: 24px; }
.contact__list li { display: flex; align-items: center; gap: 12px; font-weight: 500; }
.contact__list span { width: 34px; height: 34px; background: rgba(0,0,0,0.25); border-radius: 8px; display: grid; place-items: center; font-size: 1.05rem; flex-shrink: 0; }
.contact__social { display: flex; gap: 10px; }
.contact__social a { width: 40px; height: 40px; background: rgba(0,0,0,0.25); border-radius: 10px; display: grid; place-items: center; font-weight: 700; font-size: 1.15rem; transition: background 0.3s, transform 0.3s; }
.contact__social a:hover { background: rgba(0,0,0,0.5); transform: translateY(-3px); }

/* ===== Footer ===== */
.footer { background: var(--black-2); border-top: 1px solid var(--border); padding: 50px 0 30px; }
.footer__inner { display: flex; flex-direction: column; align-items: center; gap: 10px; text-align: center; }
.footer__text { color: var(--gray); }
.footer__text a { color: var(--gray); transition: color 0.3s; }
.footer__text a:hover { color: var(--red); }
.footer__copy { color: var(--gray-2); font-size: 0.85rem; }

/* ===== WhatsApp floating button ===== */
.whatsapp-fab {
  position: fixed; bottom: 84px; right: 24px; width: 54px; height: 54px;
  background: #25d366; border-radius: 50%; display: grid; place-items: center;
  box-shadow: 0 10px 30px rgba(37,211,102,0.45); z-index: 900;
  transition: transform 0.35s var(--ease);
}
.whatsapp-fab::after {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  border: 2px solid #25d366; animation: waPulse 2s ease-out infinite;
}
.whatsapp-fab:hover { transform: scale(1.1); }
@keyframes waPulse { 0%{ transform: scale(1); opacity: 0.7; } 100%{ transform: scale(1.6); opacity: 0; } }

/* ===== Back to top ===== */
.to-top { position: fixed; bottom: 24px; right: 24px; width: 48px; height: 48px; background: var(--red); color: #fff; border-radius: 50%; display: grid; place-items: center; font-size: 1.2rem; box-shadow: var(--shadow-red); opacity: 0; visibility: hidden; transform: translateY(20px); transition: 0.4s var(--ease); z-index: 900; }
.to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { transform: translateY(-4px); }

/* ===== Scroll reveal ===== */
[data-reveal] { opacity: 0; transform: translateY(40px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
[data-reveal].in { opacity: 1; transform: none; }
[data-delay="1"] { transition-delay: 0.12s; }
[data-delay="2"] { transition-delay: 0.24s; }
[data-delay="3"] { transition-delay: 0.36s; }

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .hero__inner, .why__grid, .about__grid, .client-showcase { grid-template-columns: 1fr; }
  .hero__visual { order: -1; max-width: 360px; margin-inline: auto; }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .contact__grid { grid-template-columns: 1fr; }
  .why__media { max-width: 480px; margin-inline: auto; }
}

@media (max-width: 720px) {
  .nav__toggle { display: flex; }
  .nav__menu {
    position: fixed; inset: 0 0 0 auto; width: min(78%, 320px); height: 100vh;
    flex-direction: column; align-items: flex-start; justify-content: center; gap: 18px;
    background: var(--black-2); padding: 80px 32px; transform: translateX(100%);
    transition: transform 0.45s var(--ease); border-left: 1px solid var(--border);
  }
  .nav__menu.open { transform: translateX(0); }
  .nav__link { font-size: 1.2rem; }
  .nav__link--btn { width: 100%; text-align: center; margin-top: 10px; }
  .hero__stats { gap: 24px; }
  .hero__stat .counter { font-size: 2.1rem; }

  /* mobile: hide circular orbit animation */
  .hero__visual { display: none; }
  .hero { min-height: auto; }
}

@media (max-width: 520px) {
  .section { padding: 70px 0; }
  .grid--2, .grid--3, .grid--4, .about__stats { grid-template-columns: 1fr; }
  .hero { padding-top: 110px; }
  .contact__form, .contact__info { padding: 26px 20px; }
  .hero__chip { display: none; }
}

/* ===== Confetti burst (form success) ===== */
.confetti-piece {
  position: fixed; width: 8px; height: 8px; border-radius: 2px; pointer-events: none; z-index: 10000;
  animation: confettiBurst 0.9s ease-out forwards;
}
@keyframes confettiBurst {
  0% { transform: translate(0, 0) rotate(0deg); opacity: 1; }
  100% { transform: translate(var(--dx), var(--dy)) rotate(360deg); opacity: 0; }
}

/* ===== Custom wrench cursor ===== */
.cursor-fx {
  position: fixed; top: 0; left: 0; z-index: 10001; pointer-events: none;
  width: 30px; height: 30px; margin: -15px 0 0 -15px;
  opacity: 0; will-change: transform; transition: opacity 0.25s ease;
}
.cursor-fx.is-visible { opacity: 1; }
.cursor-fx__inner {
  width: 100%; height: 100%; color: var(--red);
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.5));
  will-change: transform; transition: color 0.25s;
}
.cursor-fx__inner .icon { width: 100%; height: 100%; stroke-width: 1.5; }
.cursor-fx.is-active .cursor-fx__inner {
  animation: cursorWiggle 0.5s ease-in-out infinite;
  color: #fff; filter: drop-shadow(0 0 7px rgba(225,6,0,0.95));
}
@keyframes cursorWiggle { 0%, 100% { transform: rotate(-18deg) scale(1.3); } 50% { transform: rotate(8deg) scale(1.3); } }
body.custom-cursor * { cursor: none !important; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  [data-reveal] { opacity: 1; transform: none; }
  .hero__title--anim .word { opacity: 1; transform: none; }
  .cursor-fx { display: none !important; }
}

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