/* ============================================
   PIXELCRAFT — styles.css
   Paleta: Navy #0d1b4b | Yellow #f5c842
   Tipografía: Bricolage Grotesque + Plus Jakarta Sans
   ============================================ */

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

:root {
  --navy:       #0d1b4b;
  --navy2:      #111e52;
  --navy-light: #1a2d6e;
  --yellow:     #f5c842;
  --yellow-dark:#d4a82e;
  --white:      #ffffff;
  --off-white:  #f4f6ff;
  --muted:      #8b9ac8;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--navy);
  color: var(--white);
  overflow-x: hidden;
}

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 5vw;
  background: rgba(13, 27, 75, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  z-index: 200;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

/* Logo PNG — alto fijo, ancho automático */
.logo-img {
  height: 40px;
  width: auto;
  display: block;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  align-items: center;
}

nav ul a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 500;
  transition: color 0.2s;
}

nav ul a:hover { color: var(--white); }

.nav-cta {
  background: var(--yellow) !important;
  color: var(--navy) !important;
  padding: 0.5rem 1.3rem;
  border-radius: 100px;
  font-weight: 700 !important;
  transition: transform 0.15s, box-shadow 0.15s !important;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(245, 200, 66, 0.35) !important;
}

/* Hamburger (mobile) */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
nav ul.mobile-open {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 65px; left: 0; right: 0;
  background: var(--navy);
  padding: 1.5rem 5vw 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  gap: 1.2rem;
}

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 9rem 5vw 5rem;
  position: relative;
  overflow: hidden;
}

.hero-bg-circle {
  position: absolute;
  right: -10%; top: 50%;
  transform: translateY(-50%);
  width: 700px; height: 700px;
  border-radius: 50%;
  background: var(--yellow);
  opacity: 0.05;
  pointer-events: none;
}

.hero-bg-circle2 {
  position: absolute;
  left: -5%; bottom: -20%;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: var(--yellow);
  opacity: 0.03;
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 5rem;
  position: relative;
  z-index: 1;
}

.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245, 200, 66, 0.12);
  border: 1px solid rgba(245, 200, 66, 0.3);
  border-radius: 100px;
  padding: 0.4rem 1rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--yellow);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.chip-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--yellow);
  animation: blink 2s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}

.hero h1 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: clamp(2.8rem, 5.5vw, 4.8rem);
  line-height: 1.0;
  letter-spacing: -2.5px;
  margin-bottom: 1.5rem;
}

.hero h1 .accent { color: var(--yellow); }

.hero p {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.75;
  max-width: 460px;
  margin-bottom: 2.5rem;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ─── BUTTONS ─── */
.btn-yellow {
  background: var(--yellow);
  color: var(--navy);
  padding: 0.9rem 2rem;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform 0.15s, box-shadow 0.15s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-yellow:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(245, 200, 66, 0.35);
}

.btn-ghost {
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  padding: 0.9rem 2rem;
  border-radius: 100px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: border-color 0.2s, background 0.2s;
}

.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.06);
}

/* ─── BROWSER MOCK ─── */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.mock-wrap {
  position: relative;
  width: 100%;
  max-width: 460px;
}

.mock-glow {
  position: absolute;
  inset: -20px;
  background: var(--yellow);
  border-radius: 30px;
  opacity: 0.07;
  filter: blur(40px);
}

.browser {
  background: #162060;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  animation: floatY 4s ease-in-out infinite;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
}

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}

.browser-top {
  background: #0d1b4b;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.bdot {
  width: 9px; height: 9px;
  border-radius: 50%;
}
.bdot:nth-child(1) { background: #ff5f57; }
.bdot:nth-child(2) { background: #febc2e; }
.bdot:nth-child(3) { background: #28c840; }

.burl {
  flex: 1;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 6px;
  padding: 4px 12px;
  font-size: 11px;
  color: var(--muted);
  margin-left: 8px;
}

.browser-body {
  background: linear-gradient(160deg, #0d1b4b 0%, #162060 100%);
  min-height: 300px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.mc {
  position: absolute;
  border-radius: 50%;
}
.mc1 { width: 180px; height: 180px; background: var(--yellow); opacity: 0.08; top: -60px; right: -50px; }
.mc2 { width: 100px;  height: 100px;  background: var(--yellow); opacity: 0.05; bottom: 20px; left: -30px; }

.mock-nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  position: relative;
  z-index: 1;
}

.mock-logo-text {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--white);
}
.mock-logo-text span { color: var(--yellow); }

.mock-nav-links { display: flex; gap: 10px; }
.mock-nav-links span { font-size: 9px; color: var(--muted); font-weight: 500; }

.mock-hero-area {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 20px 18px 16px;
  position: relative;
  z-index: 1;
}

.mock-tag-pill {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--yellow);
  background: rgba(245, 200, 66, 0.12);
  border: 1px solid rgba(245, 200, 66, 0.25);
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 10px;
}

.mock-h1 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 1.35rem;
  line-height: 1.15;
  letter-spacing: -0.8px;
  color: var(--white);
  margin-bottom: 8px;
}
.mock-h1 span { color: var(--yellow); }

.mock-p {
  font-size: 8.5px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 14px;
  max-width: 220px;
}

.mock-cta {
  background: var(--yellow);
  color: var(--navy);
  font-size: 9px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 100px;
}

.mock-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 0 18px 18px;
  position: relative;
  z-index: 1;
}

.mock-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 10px;
}

.mock-card-icon {
  width: 20px; height: 20px;
  border-radius: 6px;
  background: var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  margin-bottom: 5px;
}

.mock-card-title { font-size: 8.5px; font-weight: 700; color: var(--white); margin-bottom: 2px; }
.mock-card-sub   { font-size: 7.5px; color: var(--muted); }

/* ─── STATS ─── */
.stats {
  background: var(--yellow);
  padding: 2rem 5vw;
  display: flex;
  flex-wrap: wrap;
}

.stat-item {
  flex: 1;
  min-width: 140px;
  text-align: center;
  padding: 0.5rem 1rem;
  border-right: 1px solid rgba(13, 27, 75, 0.15);
}
.stat-item:last-child { border-right: none; }

.stat-n {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 2.2rem;
  color: var(--navy);
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 4px;
}

.stat-l {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(13, 27, 75, 0.6);
}

/* ─── SECTIONS BASE ─── */
section {
  padding: 6rem 5vw;
  position: relative;
  z-index: 1;
}

.s-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 1rem;
}

.s-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: -1.5px;
  line-height: 1.05;
  margin-bottom: 1rem;
  color: var(--white);
}

.s-sub {
  font-size: 1rem;
  color: var(--muted);
  max-width: 480px;
  line-height: 1.75;
}

/* ─── SERVICIOS ─── */
#servicios { background: var(--navy2); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 3.5rem;
  align-items: stretch;
}

.svc-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 2rem;
  transition: transform 0.3s, border-color 0.3s, background 0.3s;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.svc-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.svc-card:hover {
  transform: translateY(-6px);
  border-color: rgba(245, 200, 66, 0.25);
  background: rgba(255, 255, 255, 0.07);
}

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

/* Tarjeta destacada */
.svc-card.hl { background: var(--yellow); border-color: transparent; }
.svc-card.hl::after { display: none; }
.svc-card.hl .svc-h   { color: var(--navy); }
.svc-card.hl .svc-p   { color: rgba(13, 27, 75, 0.65); }
.svc-card.hl .svc-tag { color: var(--navy); border-color: rgba(13, 27, 75, 0.2); }
.svc-card.hl .svc-img-wrap { border-radius: 20px 20px 0 0; }

/* Imagen superior de la tarjeta */
.svc-img-wrap {
  width: calc(100% + 4rem);
  margin: -2rem -2rem 1.5rem -2rem;
  height: 180px;
  overflow: hidden;
  border-radius: 24px 24px 0 0;
  flex-shrink: 0;
}

.svc-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.5s ease;
}

.svc-card:hover .svc-img {
  transform: scale(1.05);
}

/* Contenido bajo la imagen */
.svc-body {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.svc-h {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 0.6rem;
  letter-spacing: -0.3px;
}

.svc-p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.65;
  flex: 1;
}

.svc-tag {
  display: block;
  margin-top: 1.3rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-align: center;
  color: var(--yellow);
  border: 1px solid rgba(245, 200, 66, 0.3);
  padding: 0.55rem 1rem;
  border-radius: 100px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  cursor: pointer;
}

.svc-tag:hover {
  background: var(--yellow);
  color: var(--navy);
  border-color: var(--yellow);
}

/* Tarjeta destacada overrides */
.svc-card.hl .svc-tag {
  color: var(--navy);
  border-color: rgba(13, 27, 75, 0.3);
}

.svc-card.hl .svc-tag:hover {
  background: var(--navy);
  color: var(--yellow);
  border-color: var(--navy);
}

/* ─── CATÁLOGO ─── */
#catalogo { background: var(--navy); }

.port-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.port-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.3s, border-color 0.3s;
}

.port-card:hover {
  transform: translateY(-6px);
  border-color: rgba(245, 200, 66, 0.3);
}

/* ─── PORTFOLIO CARDS ─── */
.port-preview-link {
  display: block;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

/* La imagen llena toda la tarjeta */
.port-thumb {
  width: 100%;
  aspect-ratio: 16 / 10;
  position: relative;
  overflow: hidden;
  background: var(--navy2);
}

.port-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.5s ease;
}

.port-preview-link:hover .port-thumb img {
  transform: scale(1.04);
}

/* Overlay hover */
.port-thumb-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13, 27, 75, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.port-preview-link:hover .port-thumb-overlay {
  opacity: 1;
}

.port-visit {
  background: var(--yellow);
  color: var(--navy);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.6rem 1.4rem;
  border-radius: 100px;
  letter-spacing: 0.3px;
  transform: translateY(6px);
  transition: transform 0.3s ease;
}

.port-preview-link:hover .port-visit {
  transform: translateY(0);
}

.port-info { padding: 1.5rem; }

.port-h {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 0.4rem;
}

.port-p { font-size: 0.85rem; color: var(--muted); line-height: 1.6; }

.port-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 1rem; }

.ptag {
  font-size: 0.68rem;
  font-weight: 600;
  background: rgba(245, 200, 66, 0.1);
  border: 1px solid rgba(245, 200, 66, 0.2);
  color: var(--yellow);
  padding: 3px 10px;
  border-radius: 100px;
  letter-spacing: 0.5px;
}

/* ─── PROCESO ─── */
#proceso { background: var(--navy2); }

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  top: 1.6rem; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(245, 200, 66, 0.25), transparent);
}

.step-card { position: relative; padding-top: 0.5rem; }

.step-num-wrap {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--navy2);
  border: 2px solid var(--yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.step-num {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--yellow);
}

.step-h {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.step-p { font-size: 0.87rem; color: var(--muted); line-height: 1.65; }

/* ─── CONTACTO ─── */
#contacto {
  background: var(--off-white);
  color: var(--navy);
}

#contacto .s-label { color: rgba(13, 27, 75, 0.5); }
#contacto .s-title { color: var(--navy); }
#contacto .s-sub   { color: rgba(13, 27, 75, 0.6); }

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  margin-top: 3rem;
  align-items: start;
}

.cinfo p {
  font-size: 0.95rem;
  color: rgba(13, 27, 75, 0.6);
  line-height: 1.75;
  margin-bottom: 2rem;
}

.clinks { display: flex; flex-direction: column; gap: 1rem; }

.clink {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  padding: 1rem 1.25rem;
  background: var(--white);
  border: 1px solid rgba(13, 27, 75, 0.08);
  border-radius: 16px;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
  color: var(--navy);
}

.clink:hover {
  border-color: var(--yellow);
  transform: translateX(4px);
  box-shadow: 0 8px 24px rgba(13, 27, 75, 0.08);
}

.clink-icon {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.clink-body strong { display: block; font-weight: 700; font-size: 0.95rem; color: var(--navy); }
.clink-body span   { font-size: 0.8rem; color: rgba(13, 27, 75, 0.5); }

/* FORM */
.cform {
  background: var(--white);
  border: 1px solid rgba(13, 27, 75, 0.08);
  border-radius: 24px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: 0 20px 60px rgba(13, 27, 75, 0.08);
}

.form-title {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--navy);
  letter-spacing: -0.5px;
  margin-bottom: 0.1rem;
}

.form-sub { font-size: 0.85rem; color: rgba(13, 27, 75, 0.5); margin-bottom: 0.5rem; }

.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.ff { display: flex; flex-direction: column; gap: 6px; }

.ff label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.ff input,
.ff textarea,
.ff select {
  background: var(--off-white);
  border: 1.5px solid rgba(13, 27, 75, 0.1);
  border-radius: 12px;
  padding: 0.75rem 1rem;
  color: var(--navy);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  resize: none;
}

.ff input:focus,
.ff textarea:focus,
.ff select:focus {
  border-color: var(--yellow);
  box-shadow: 0 0 0 3px rgba(245, 200, 66, 0.15);
}

.ff input::placeholder,
.ff textarea::placeholder { color: rgba(13, 27, 75, 0.3); }

.ff select option { background: #fff; color: var(--navy); }

.btn-submit {
  background: var(--navy);
  color: var(--white);
  border: none;
  padding: 0.9rem 2rem;
  border-radius: 100px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.15s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 0.5rem;
}

.btn-submit:hover {
  background: var(--yellow);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(245, 200, 66, 0.3);
}

/* ─── FOOTER ─── */
footer {
  background: var(--navy);
  color: var(--muted);
  text-align: center;
  padding: 2.5rem 5vw;
  font-size: 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* Logo PNG en footer — más pequeño */
.footer-logo-img {
  height: 28px;
  width: auto;
  display: block;
  margin: 0 auto 0.75rem;
  /* Si tu PNG tiene fondo azul, podés usar filter para aclararlo */
  /* filter: brightness(0) invert(1); */
}

footer p { margin-top: 0.3rem; }

/* ─── SCROLL REVEAL ─── */
.sr {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.sr.on   { opacity: 1; transform: none; }
.sr-d1   { transition-delay: 0.1s; }
.sr-d2   { transition-delay: 0.2s; }
.sr-d3   { transition-delay: 0.3s; }
.sr-d4   { transition-delay: 0.4s; }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .hero-inner       { grid-template-columns: 1fr; gap: 3rem; }
  .hero-visual      { display: none; }
  .contact-inner    { grid-template-columns: 1fr; gap: 3rem; }
  .frow             { grid-template-columns: 1fr; }
  .steps::before    { display: none; }
  nav ul            { display: none; }
  .hamburger        { display: flex; }
}

@media (max-width: 600px) {
  .hero h1   { letter-spacing: -1.5px; }
  .s-title   { letter-spacing: -1px; }
  .stat-item { min-width: 50%; }
}
