/* ═══════════════════════════════════════
   TODO EN SAN LUIS — STYLESHEET
   Fuentes: Bebas Neue (títulos grandes) + Outfit (cuerpo) + JetBrains Mono (etiquetas)
═══════════════════════════════════════ */

:root {
  --red: #e84e1b;
  --red-dark: #c43a10;
  --red-bg: rgba(232, 78, 27, 0.1);
  --blue: #1a4fa0;
  --blue-light: #2563eb;
  --blue-bg: rgba(26, 79, 160, 0.1);
  --green: #16a34a;
  --green-bg: rgba(22, 163, 74, 0.1);

  --bg-dark: #0d0d0d;
  --bg-dark2: #141414;
  --bg-card: #1a1a1a;
  --bg-light: #f9f8f5;
  --bg-white: #ffffff;

  --text-white: #f5f2eb;
  --text-muted: rgba(245, 242, 235, 0.55);
  --text-dark: #1a1712;
  --text-body: #3a3530;

  --border-dark: rgba(255, 255, 255, 0.08);
  --border-light: #e5e2da;

  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'Outfit', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 4px 24px rgba(0,0,0,0.12);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.2);
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--bg-dark);
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ─── UTILITY ─── */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
  white-space: nowrap;
}
.btn--primary {
  background: var(--red);
  color: white;
}
.btn--primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232, 78, 27, 0.4);
}
.btn--ghost {
  background: transparent;
  color: var(--text-white);
  border: 1.5px solid rgba(245, 242, 235, 0.25);
}
.btn--ghost:hover {
  border-color: rgba(245, 242, 235, 0.6);
  background: rgba(245, 242, 235, 0.06);
}
.btn--ghost-light {
  background: transparent;
  color: var(--text-white);
  border: 1.5px solid rgba(245, 242, 235, 0.3);
  padding: 10px 22px;
  font-size: 14px;
}
.btn--ghost-light:hover {
  background: rgba(255,255,255,0.08);
}
.btn--blue {
  background: var(--blue-light);
  color: white;
}
.btn--blue:hover {
  background: #1d4ed8;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.4);
}

/* ══════════════════════════════
   URGENCY BAR
══════════════════════════════ */
.urgency-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 500;
  color: white;
  flex-wrap: wrap;
  transition: transform 0.3s ease;
}
.urgency-bar.hidden { transform: translateY(-100%); }
.urgency-bar__pulse {
  width: 8px; height: 8px;
  background: white;
  border-radius: 50%;
  display: inline-block;
  animation: pulse 1.5s infinite;
  flex-shrink: 0;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}
.urgency-bar__text { flex-shrink: 0; }
.urgency-bar__btn {
  background: white;
  color: var(--red);
  padding: 5px 16px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 12px;
  transition: all 0.2s;
  flex-shrink: 0;
}
.urgency-bar__btn:hover { background: #ffe0d6; }
.urgency-bar__close {
  background: none;
  border: none;
  color: rgba(255,255,255,0.7);
  cursor: pointer;
  font-size: 14px;
  padding: 4px;
  margin-left: auto;
  line-height: 1;
  transition: color 0.2s;
}
.urgency-bar__close:hover { color: white; }

/* ══════════════════════════════
   NAV
══════════════════════════════ */
.nav {
  position: fixed;
  top: 40px; left: 0; right: 0;
  z-index: 999;
  transition: top 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}
.nav.bar-hidden { top: 0; }
.nav.scrolled {
  background: rgba(13, 13, 13, 0.95);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}
.nav__inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Logo */
.nav__logo {
  display: flex;
  align-items: baseline;
  gap: 3px;
  text-decoration: none;
}
.footer__logo {
  display: flex;
  align-items: baseline;
  gap: 3px;
  margin-bottom: 12px;
}
.logo-todo {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.05em;
  color: var(--text-white);
}
.logo-en {
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 300;
  margin: 0 2px;
}
.logo-sl {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.05em;
  color: var(--red);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.nav__links a {
  color: rgba(245,242,235,0.7);
  font-size: 14px;
  font-weight: 500;
  padding: 7px 14px;
  border-radius: 8px;
  transition: all 0.2s;
}
.nav__links a:hover { color: var(--text-white); background: rgba(255,255,255,0.06); }
.nav__cta {
  background: var(--red) !important;
  color: white !important;
  padding: 8px 18px !important;
  border-radius: 50px !important;
}
.nav__cta:hover { background: var(--red-dark) !important; }

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__hamburger span {
  width: 24px; height: 2px;
  background: var(--text-white);
  border-radius: 2px;
  transition: all 0.3s;
  display: block;
}

/* ══════════════════════════════
   HERO
══════════════════════════════ */
.hero {
  min-height: 100vh;
  background: var(--bg-dark);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
  padding: 140px 80px 80px;
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
}
.hero__bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black, transparent);
}

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
}
.dot--green {
  background: #4ade80;
  box-shadow: 0 0 8px #4ade80;
  animation: pulse 2s infinite;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(56px, 7vw, 88px);
  line-height: 0.95;
  letter-spacing: 0.02em;
  color: var(--text-white);
  margin-bottom: 20px;
}
.hero__title em {
  color: var(--red);
  font-style: normal;
}

.hero__sub {
  color: var(--text-muted);
  font-size: 17px;
  max-width: 460px;
  margin-bottom: 36px;
  line-height: 1.6;
}

.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero__stats {
  display: flex;
  align-items: center;
  gap: 24px;
}
.stat { text-align: left; }
.stat__num {
  display: block;
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: 0.04em;
  color: var(--text-white);
  line-height: 1;
}
.stat__label {
  font-size: 11px;
  color: var(--text-muted);
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.stat__divider {
  width: 1px; height: 32px;
  background: rgba(255,255,255,0.1);
}

/* Hero floating cards */
.hero__visual {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-left: 24px;
}
.hero__card {
  background: var(--bg-card);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
}
.hero__card:hover {
  border-color: rgba(232, 78, 27, 0.4);
  background: rgba(232, 78, 27, 0.06);
  transform: translateX(6px);
}
.hero__card--1 { animation: float1 4s ease-in-out infinite; }
.hero__card--2 { animation: float2 4s ease-in-out infinite 0.5s; }
.hero__card--3 { animation: float3 4s ease-in-out infinite 1s; }

@keyframes float1 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-6px)} }
@keyframes float2 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-4px)} }
@keyframes float3 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }

.hcard__icon { font-size: 28px; flex-shrink: 0; }
.hcard__label {
  color: var(--text-white);
  font-weight: 600;
  font-size: 15px;
}
.hcard__sub {
  color: var(--text-muted);
  font-size: 12px;
  font-family: var(--font-mono);
  margin-top: 2px;
}

/* ══════════════════════════════
   SECTIONS GENERAL
══════════════════════════════ */
.section {
  padding: 96px 0;
  background: var(--bg-light);
}
.section--dark {
  background: var(--bg-dark2);
}

.section__header {
  text-align: center;
  margin-bottom: 56px;
}
.section__tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}
.section__tag--red { background: var(--red-bg); color: var(--red); border: 1px solid rgba(232,78,27,0.25); }
.section__tag--blue { background: var(--blue-bg); color: var(--blue-light); border: 1px solid rgba(37,99,235,0.25); }
.section__tag--green { background: var(--green-bg); color: var(--green); border: 1px solid rgba(22,163,74,0.25); }

.section__title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  letter-spacing: 0.03em;
  line-height: 1.1;
  color: var(--text-dark);
  margin-bottom: 14px;
}
.section--dark .section__title { color: var(--text-white); }

.section__sub {
  font-size: 16px;
  color: var(--text-body);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}
.section--dark .section__sub { color: var(--text-muted); }

/* ══════════════════════════════
   SERVICES GRID
══════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-decoration: none;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.service-card:hover {
  border-color: rgba(232,78,27,0.35);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.3);
}
.service-card--urgency {
  border-color: rgba(232,78,27,0.2);
  background: linear-gradient(135deg, rgba(232,78,27,0.08) 0%, var(--bg-card) 60%);
}
.service-card--urgency::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--red);
}

.service-card__badge {
  display: inline-block;
  background: var(--red);
  color: white;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  padding: 3px 9px;
  border-radius: 4px;
  width: fit-content;
}
.service-card__icon { font-size: 32px; }
.service-card__title {
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 700;
  color: var(--text-white);
  line-height: 1.3;
}
.service-card__desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  flex: 1;
}
.service-card__cta {
  font-size: 13px;
  font-weight: 600;
  color: var(--red);
  margin-top: 4px;
  transition: gap 0.2s;
}
.service-card:hover .service-card__cta { letter-spacing: 0.02em; }

/* CTA Banner */
.cta-banner {
  background: linear-gradient(135deg, rgba(232,78,27,0.12), rgba(232,78,27,0.04));
  border: 1px solid rgba(232,78,27,0.25);
  border-radius: var(--radius);
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cta-banner__text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: var(--text-white);
  font-size: 15px;
}
.cta-banner__text strong { font-weight: 700; }
.cta-banner__text span { color: var(--text-muted); font-size: 14px; }

/* ══════════════════════════════
   WEB / PORTFOLIO
══════════════════════════════ */
.web-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.web-services {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.web-service-item {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--border-light);
}
.web-service-item:first-child { padding-top: 0; }
.web-service-item__num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--blue-light);
  font-weight: 500;
  margin-top: 3px;
  flex-shrink: 0;
}
.web-service-item__body h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.web-service-item__body p {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.6;
}
.web-services .btn { margin-top: 28px; align-self: flex-start; }

/* Portfolio card */
.portfolio__label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-body);
  margin-bottom: 12px;
}
.portfolio-card {
  background: var(--bg-dark);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.portfolio-card__header {
  background: #1e1e1e;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid var(--border-dark);
}
.portfolio-card__dot {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.portfolio-card__dot.red { background: #ff5f57; }
.portfolio-card__dot.yellow { background: #febc2e; }
.portfolio-card__dot.green { background: #28c840; }
.portfolio-card__url {
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  margin-left: 8px;
}

/* PC Mockup inside portfolio */
.portfolio-card__preview { padding: 16px; }
.pc-mockup {
  background: #f0ede5;
  border-radius: 6px;
  overflow: hidden;
  font-size: 0;
}
.pc-mockup__nav {
  background: white;
  padding: 8px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #e5e2da;
}
.pc-nav-logo {
  font-family: var(--font-display);
  font-size: 13px;
  letter-spacing: 0.1em;
  color: #1a1712;
}
.pc-nav-links {
  display: flex;
  gap: 12px;
}
.pc-nav-links span {
  font-family: var(--font-body);
  font-size: 10px;
  color: #8a8680;
}
.pc-mockup__hero {
  display: flex;
  padding: 16px 12px;
  gap: 12px;
  background: linear-gradient(135deg, #1a1712 60%, #2a2420);
  align-items: center;
}
.pc-hero-tag {
  font-family: var(--font-mono);
  font-size: 8px;
  color: var(--red);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.pc-hero-title {
  font-family: var(--font-display);
  font-size: 22px;
  color: white;
  line-height: 1;
  margin-bottom: 8px;
}
.pc-hero-btn {
  background: var(--red);
  color: white;
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 20px;
  display: inline-block;
}
.pc-hero-img { flex: 1; display: flex; justify-content: center; }
.pc-img-block {
  width: 60px; height: 64px;
  background: linear-gradient(135deg, rgba(232,78,27,0.4), rgba(232,78,27,0.1));
  border-radius: 6px;
  border: 1px solid rgba(232,78,27,0.3);
}
.pc-mockup__products {
  display: flex;
  gap: 8px;
  padding: 12px;
  background: white;
}
.pc-product {
  flex: 1;
  height: 40px;
  background: #f0ede5;
  border-radius: 4px;
  border: 1px solid #e5e2da;
}

.portfolio-card__footer {
  padding: 14px 16px;
  border-top: 1px solid var(--border-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.portfolio-card__tags { display: flex; gap: 6px; flex-wrap: wrap; }
.ptag {
  background: rgba(37,99,235,0.1);
  color: #60a5fa;
  font-family: var(--font-mono);
  font-size: 10px;
  padding: 3px 8px;
  border-radius: 4px;
  border: 1px solid rgba(37,99,235,0.2);
}
.portfolio-card__result {
  font-size: 12px;
  color: var(--green);
  font-weight: 600;
  font-family: var(--font-mono);
}

/* ══════════════════════════════
   REVIEWS
══════════════════════════════ */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: all 0.2s;
}
.review-card:hover {
  border-color: rgba(255,255,255,0.12);
  transform: translateY(-3px);
}
.review-card__stars { color: #f59e0b; font-size: 15px; letter-spacing: 2px; }
.review-card__text {
  color: rgba(245,242,235,0.8);
  font-size: 14px;
  line-height: 1.7;
  font-style: italic;
  flex: 1;
}
.review-card__author {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 14px;
  border-top: 1px solid var(--border-dark);
}
.review-card__avatar {
  width: 36px; height: 36px;
  background: var(--red);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 15px;
  flex-shrink: 0;
}
.review-card__name { font-size: 13px; font-weight: 600; color: var(--text-white); }
.review-card__service { font-size: 11px; color: var(--text-muted); font-family: var(--font-mono); }

.review-card--cta {
  border-style: dashed;
  border-color: rgba(255,255,255,0.1);
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 16px;
}
.review-cta__icon { font-size: 32px; }
.review-cta__text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ══════════════════════════════
   CONTACT
══════════════════════════════ */
.contact-section { background: var(--bg-dark); }
.contact-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.contact-info__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 52px);
  letter-spacing: 0.03em;
  color: var(--text-white);
  line-height: 1.05;
  margin: 16px 0 16px;
}
.contact-info__sub {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 28px;
}
.contact-info__detail { display: flex; flex-direction: column; gap: 10px; }
.contact-detail-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(245,242,235,0.7);
}
.contact-detail-item__icon { font-size: 16px; }

.contact-actions { display: flex; flex-direction: column; gap: 12px; }
.contact-btn {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  border-radius: var(--radius);
  border: 1px solid var(--border-dark);
  background: var(--bg-card);
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
}
.contact-btn:hover { transform: translateX(6px); }
.contact-btn--urgency:hover { border-color: rgba(232,78,27,0.4); background: rgba(232,78,27,0.08); }
.contact-btn--web:hover { border-color: rgba(37,99,235,0.4); background: rgba(37,99,235,0.08); }
.contact-btn--general:hover { border-color: rgba(255,255,255,0.2); }

.contact-btn__icon { font-size: 24px; flex-shrink: 0; }
.contact-btn__body { flex: 1; display: flex; flex-direction: column; gap: 2px; }
.contact-btn__body strong { color: var(--text-white); font-size: 15px; }
.contact-btn__body span { color: var(--text-muted); font-size: 12px; font-family: var(--font-mono); }
.contact-btn__arrow { color: var(--text-muted); font-size: 18px; }
.contact-btn:hover .contact-btn__arrow { color: var(--text-white); }

/* ══════════════════════════════
   FOOTER
══════════════════════════════ */
.footer {
  background: #080808;
  border-top: 1px solid var(--border-dark);
  padding: 56px 0 32px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}
.footer__brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  max-width: 300px;
  margin-bottom: 16px;
  line-height: 1.6;
}
.footer__phone {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--green);
  text-decoration: none;
  transition: color 0.2s;
}
.footer__phone:hover { color: #4ade80; }
.footer__links { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.footer__col h4 {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  margin-bottom: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.footer__col ul { display: flex; flex-direction: column; gap: 8px; }
.footer__col ul li a {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color 0.2s;
}
.footer__col ul li a:hover { color: rgba(255,255,255,0.8); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--border-dark);
  font-size: 12px;
  color: rgba(255,255,255,0.25);
  flex-wrap: wrap;
  gap: 8px;
  font-family: var(--font-mono);
}

/* ══════════════════════════════
   WHATSAPP FLOAT
══════════════════════════════ */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 998;
  width: 58px; height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
  transition: all 0.25s ease;
  text-decoration: none;
}
.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.6);
}
.wa-float__tooltip {
  position: absolute;
  right: 68px;
  background: var(--bg-dark);
  color: var(--text-white);
  font-size: 13px;
  font-weight: 500;
  padding: 7px 14px;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
  border: 1px solid var(--border-dark);
}
.wa-float:hover .wa-float__tooltip { opacity: 1; }

/* ══════════════════════════════
   SCROLL ANIMATIONS
══════════════════════════════ */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: none;
}

/* ══════════════════════════════
   RESPONSIVE
══════════════════════════════ */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    padding: 130px 40px 64px;
    text-align: center;
  }
  .hero__sub { margin-left: auto; margin-right: auto; }
  .hero__actions { justify-content: center; }
  .hero__stats { justify-content: center; }
  .hero__visual {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    padding: 0;
    gap: 12px;
  }
  .hero__card { flex-direction: column; text-align: center; gap: 8px; }

  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .web-split { grid-template-columns: 1fr; gap: 40px; }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-split { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  .nav__links {
    position: fixed;
    top: 0; right: 0;
    width: 280px; height: 100vh;
    background: rgba(13,13,13,0.98);
    backdrop-filter: blur(24px);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 32px 32px;
    gap: 4px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 998;
    border-left: 1px solid var(--border-dark);
  }
  .nav__links.open { transform: translateX(0); }
  .nav__links a { font-size: 18px; padding: 12px 0; width: 100%; }
  .nav__hamburger { display: flex; z-index: 999; position: relative; }

  .hero { padding: 120px 20px 56px; }
  .hero__visual { grid-template-columns: 1fr; }
  .hero__card { flex-direction: row; text-align: left; }

  .section { padding: 72px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; gap: 32px; }
  .footer__links { grid-template-columns: 1fr 1fr; }

  .urgency-bar { font-size: 12px; padding: 8px 16px; gap: 8px; }
  .urgency-bar__text { display: none; }
}

@media (max-width: 480px) {
  .hero__title { font-size: 52px; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { justify-content: center; }
  .contact-split { gap: 32px; }
  .footer__links { grid-template-columns: 1fr; }
  .cta-banner { flex-direction: column; text-align: center; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, .hero__card, .dot--green { animation: none !important; transition: none !important; }
}
