/* ===== RESET & TOKENS ===== */
:root {
  --bg: #080b12;
  --bg2: #0d1120;
  --surface: rgba(255, 255, 255, 0.04);
  --surface2: rgba(255, 255, 255, 0.07);
  --border: rgba(255, 255, 255, 0.08);
  --border2: rgba(255, 255, 255, 0.14);
  --blue: #2563eb;
  --blue-dim: rgba(37, 99, 235, 0.18);
  --blue-glow: rgba(37, 99, 235, 0.35);
  --text: #f0f0f2;
  --muted: #8a909e;
  --muted2: #636876;
  --radius: 12px;
  --mono: "JetBrains Mono", "Courier New", monospace;
  --display: "Barlow Condensed", sans-serif;
  --body: "Barlow", sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(
      ellipse 800px 600px at -10% -5%,
      rgba(37, 99, 235, 0.14) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse 600px 400px at 110% 15%,
      rgba(37, 99, 235, 0.08) 0%,
      transparent 55%
    ),
    radial-gradient(
      ellipse 900px 700px at 50% 100%,
      rgba(37, 99, 235, 0.06) 0%,
      transparent 65%
    );
  animation: bg-drift 12s ease-in-out infinite alternate;
}
@keyframes bg-drift {
  0% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(-2%, -1%, 0);
  }
  100% {
    transform: translate3d(2%, 2%, 0);
  }
}

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

.mono {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.05em;
}

/* ===== LAYOUT ===== */
.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
@media (max-width: 768px) {
  .section-container {
    padding: 0 20px;
  }
}

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  background: rgba(8, 11, 18, 0.72);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-img {
  height: 36px;
  width: auto;
  border-radius: 50%;
}
.logo-img--sm {
  height: 28px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-family: var(--body);
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s;
  letter-spacing: 0.01em;
}
.nav-link:hover {
  color: var(--text);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  background: var(--blue);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  border-radius: 8px;
  transition:
    opacity 0.2s,
    transform 0.15s;
}
.nav-cta:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px 40px 0;
  max-width: 1200px;
  margin: 0 auto;
  overflow: visible;
}

.hero-bg-grid {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(
    ellipse 80% 80% at 50% 0%,
    black 20%,
    transparent 80%
  );
}

.hero-accent-line {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 120px;
  background: linear-gradient(to bottom, transparent, var(--blue), transparent);
  border-radius: 2px;
  display: none;
}

.hero-content {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: start;
  padding-bottom: 60px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--muted);
  margin-bottom: 20px;
}
.eyebrow-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--blue);
}

.hero-h1 {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(52px, 7vw, 92px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.h1-line {
  display: block;
  overflow: hidden;
}
.h1-line--accent {
  color: var(--blue);
}

.hero-lead {
  margin-top: 24px;
  font-size: 17px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 52ch;
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  background: var(--blue);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  border-radius: 10px;
  transition:
    transform 0.15s,
    box-shadow 0.15s,
    opacity 0.15s;
  box-shadow: 0 0 0 0 rgba(37, 99, 235, 0);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(37, 99, 235, 0.4);
}
.btn-primary--large {
  padding: 16px 28px;
  font-size: 16px;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  border: 1px solid var(--border2);
  background: var(--surface);
  color: var(--text);
  font-weight: 600;
  font-size: 15px;
  border-radius: 10px;
  transition:
    border-color 0.2s,
    background 0.2s,
    transform 0.15s;
}
.btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.28);
  background: var(--surface2);
  transform: translateY(-1px);
}

.hero-stats {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.stat-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--muted);
}
.stat-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
}

/* Audit card */
.audit-card {
  border: 1px solid var(--border2);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 16px;
  padding: 28px;
  backdrop-filter: blur(8px);
  position: relative;
  overflow: hidden;
}
.audit-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 300px 200px at 80% -20%,
    rgba(37, 99, 235, 0.18),
    transparent 60%
  );
  pointer-events: none;
}
.audit-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.audit-label {
  color: var(--muted);
}
.audit-badge {
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.15);
  border: 1px solid rgba(37, 99, 235, 0.3);
  color: #93bbff;
  letter-spacing: 0.04em;
}
.audit-desc {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 20px;
}
.audit-items {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}
.audit-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  color: var(--text);
}
.audit-num {
  color: var(--blue);
  font-size: 11px;
  flex-shrink: 0;
}
.audit-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  justify-content: center;
  padding: 13px;
  background: var(--blue);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  border-radius: 10px;
  transition:
    opacity 0.2s,
    transform 0.15s;
}
.audit-cta:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}
.audit-note {
  text-align: center;
  color: var(--muted2);
  margin-top: 12px;
}

/* Ticker */
.hero-ticker {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  overflow: hidden;
  margin-top: auto;
}
.ticker-track {
  display: flex;
  gap: 24px;
  white-space: nowrap;
  animation: ticker 28s linear infinite;
  width: max-content;
}
.ticker-track span {
  font-family: var(--display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.ticker-sep {
  color: var(--blue) !important;
}

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

/* ===== SECTIONS ===== */
.section {
  padding: 100px 0;
}
.section--alt {
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-header {
  margin-bottom: 56px;
}
.section-header--inline {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

.section-label {
  color: var(--blue);
  margin-bottom: 12px;
  display: block;
}

.section-title {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(36px, 5vw, 58px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.section-title em {
  font-style: normal;
  color: var(--blue);
}

.section-sub {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
  max-width: 56ch;
  margin-top: 14px;
}
.section-sub--right {
  text-align: right;
  margin-top: 0;
  max-width: 36ch;
}

/* ===== SERVICES ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.service-card {
  padding: 36px 32px;
  border: none;
  background: var(--surface);
  position: relative;
  transition: background 0.2s;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.service-card + .service-card {
  border-left: 1px solid var(--border);
}
.services-grid .service-card:nth-child(3),
.services-grid .service-card:nth-child(4) {
  border-top: 1px solid var(--border);
}
.services-grid .service-card:nth-child(4) {
  border-left: 1px solid var(--border);
}
.service-card:hover {
  background: var(--surface2);
}

.service-card--featured {
  background: rgba(37, 99, 235, 0.06);
}
.service-card--featured:hover {
  background: rgba(37, 99, 235, 0.1);
}

.service-num {
  color: var(--blue);
  font-size: 11px;
  margin-bottom: 16px;
}

.service-body {
  flex: 1;
}
.service-body h3 {
  font-family: var(--display);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.service-body p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 16px;
}

.service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.service-list li {
  font-size: 13px;
  color: var(--text);
  padding-left: 16px;
  position: relative;
  opacity: 0.85;
}
.service-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--blue);
  font-size: 11px;
}

.service-footer {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.service-tag {
  font-family: var(--mono);
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.15);
  border: 1px solid rgba(37, 99, 235, 0.3);
  color: #93bbff;
}

/* ===== SERVICE PRECIO ===== */
.service-footer--price {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.service-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.service-price {
  font-family: var(--display);
  font-weight: 800;
  font-size: 18px;
  color: var(--text);
  letter-spacing: -0.01em;
}
.service-delivery {
  font-size: 11px;
  color: var(--muted2);
  letter-spacing: 0.06em;
}

/* ===== PROCESS ===== */
.process-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.process-line {
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  height: 1px;
  background: linear-gradient(to right, var(--blue), rgba(37, 99, 235, 0.2));
  z-index: 0;
}

.process-step {
  position: relative;
  z-index: 1;
  padding: 0 20px;
}

.process-dot {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--blue-glow);
  background: var(--bg2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--blue);
  position: relative;
}
.process-dot::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid rgba(37, 99, 235, 0.12);
}

.process-content h3 {
  font-family: var(--display);
  font-weight: 800;
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.process-content p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}

/* ===== ABOUT ===== */
.about-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: start;
}

.about-text {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
  margin-top: 20px;
  max-width: 60ch;
}

.about-pillars {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pillar {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
}
.pillar-icon {
  color: var(--blue);
  font-size: 14px;
}

.about-card {
  border: 1px solid var(--border2);
  background: var(--surface);
  border-radius: 16px;
  padding: 28px;
  margin-bottom: 16px;
}
.about-card-label {
  color: var(--muted);
  display: block;
  margin-bottom: 16px;
}
.about-quote {
  font-family: var(--display);
  font-weight: 800;
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 14px;
  quotes: none;
}
.about-card-text {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
}

.about-coords {
  display: flex;
  gap: 16px;
  color: var(--muted2);
  flex-wrap: wrap;
}

/* ===== CTA FINAL ===== */
.cta-section {
  padding: 100px 0;
}
.cta-block {
  position: relative;
  border: 1px solid rgba(37, 99, 235, 0.3);
  border-radius: 20px;
  padding: 80px 60px;
  overflow: hidden;
  background: radial-gradient(
    ellipse 700px 400px at 50% 0%,
    rgba(37, 99, 235, 0.14),
    transparent 60%
  );
}
.cta-bg-text {
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--display);
  font-weight: 900;
  font-size: 180px;
  line-height: 1;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: rgba(37, 99, 235, 0.05);
  user-select: none;
  white-space: nowrap;
}
.cta-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
}
.cta-title {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin: 16px 0 20px;
}
.cta-sub {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 50ch;
}

/* ===== FOOTER ===== */
.footer {
  padding: 28px 0;
  border-top: 1px solid var(--border);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-info {
  display: flex;
  gap: 10px;
  color: var(--muted2);
  flex-wrap: wrap;
  align-items: center;
}
.footer-sep {
  color: var(--border2);
}
.footer-contact {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
  transition: color 0.2s;
}
.footer-contact:hover {
  color: var(--text);
}

/* ===== TRABAJOS ===== */
.works-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 16px;
}

.work-card {
  border: 1px solid var(--border2);
  border-radius: 16px;
  overflow: hidden;
  background: var(--surface);
  transition: border-color 0.25s, background 0.25s;
}
.work-card:hover {
  border-color: rgba(37, 99, 235, 0.4);
  background: var(--surface2);
}

.work-card-preview {
  padding: 16px 16px 0;
  background: rgba(0, 0, 0, 0.2);
  border-bottom: 1px solid var(--border);
}
.work-browser {
  border: 1px solid var(--border2);
  border-radius: 10px 10px 0 0;
  overflow: hidden;
}
.work-browser-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid var(--border);
}
.work-browser-dots {
  display: flex;
  gap: 5px;
  flex-shrink: 0;
}
.work-browser-dots span {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border2);
}
.work-browser-dots span:first-child  { background: rgba(255, 95, 87, 0.6); }
.work-browser-dots span:nth-child(2) { background: rgba(255, 189, 46, 0.6); }
.work-browser-dots span:nth-child(3) { background: rgba(40, 201, 64, 0.6); }
.work-browser-url {
  font-size: 11px;
  color: var(--muted2);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.work-browser-screen {
  height: 180px;
  overflow: hidden;
}
.work-browser-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
  transition: transform 0.5s;
}
.work-card:hover .work-browser-screen img {
  transform: scale(1.04);
}

.work-card-body {
  padding: 24px 24px 28px;
}
.work-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.work-num {
  color: var(--blue);
  font-size: 11px;
}
.work-badge {
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.15);
  border: 1px solid rgba(37, 99, 235, 0.3);
  color: #93bbff;
  letter-spacing: 0.04em;
}
.work-title {
  font-family: var(--display);
  font-weight: 800;
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}
.work-desc {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 16px;
}
.work-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.work-tag {
  font-family: var(--mono);
  font-size: 11px;
  padding: 3px 10px;
  border-radius: 999px;
  border: 1px solid var(--border2);
  color: var(--muted);
}
.work-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--blue);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  border-radius: 8px;
  transition: opacity 0.2s, transform 0.15s;
}
.work-link:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

.work-card--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
  border-style: dashed;
  border-color: var(--border);
  background: transparent;
}
.work-card--placeholder:hover {
  border-color: rgba(37, 99, 235, 0.25);
  background: rgba(37, 99, 235, 0.03);
}
.work-placeholder-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--muted2);
}
.work-placeholder-inner p {
  font-family: var(--display);
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted2);
}

/* ===== ANIMATIONS ===== */
.reveal-line .h1-line-inner,
.reveal-line {
  animation: reveal-up 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}

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

.hero-h1 .h1-line:nth-child(1) { animation-delay: 0.05s; }
.hero-h1 .h1-line:nth-child(2) { animation-delay: 0.12s; }
.hero-h1 .h1-line:nth-child(3) { animation-delay: 0.19s; }
.hero-h1 .h1-line:nth-child(4) { animation-delay: 0.26s; }

.reveal-fade {
  animation: reveal-fade 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.hero-lead    { animation-delay: 0.38s; }
.hero-actions { animation-delay: 0.46s; }
.hero-stats   { animation-delay: 0.52s; }

@keyframes reveal-fade {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal-card {
  animation: reveal-card 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.2s both;
}
@keyframes reveal-card {
  from {
    opacity: 0;
    transform: translateY(28px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.io-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.io-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 980px) {
  .hero {
    padding: 90px 20px 0;
  }
  .hero-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-h1 {
    font-size: clamp(42px, 10vw, 72px);
  }

  .services-grid {
    grid-template-columns: 1fr;
  }
  .service-card + .service-card {
    border-left: none;
    border-top: 1px solid var(--border);
  }
  .services-grid .service-card:nth-child(4) {
    border-left: none;
  }

  .process-track {
    grid-template-columns: 1fr 1fr;
    gap: 32px 0;
  }
  .process-line {
    display: none;
  }
  .process-step {
    padding: 0;
  }

  .about-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .section-header--inline {
    flex-direction: column;
    gap: 16px;
  }
  .section-sub--right {
    text-align: left;
  }

  .cta-block {
    padding: 48px 28px;
  }
  .cta-bg-text {
    display: none;
  }

  .nav {
    gap: 16px;
  }
  .nav-link {
    display: none;
  }
  .nav-burger {
    display: flex;
  }

  /* trabajos responsive */
  .works-grid {
    grid-template-columns: 1fr;
  }
  .work-card--placeholder {
    min-height: 160px;
  }
}

@media (max-width: 600px) {
  .process-track {
    grid-template-columns: 1fr;
  }
  .hero-eyebrow {
    flex-wrap: wrap;
    gap: 8px;
  }
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .hero-actions {
    flex-direction: column;
  }
  .btn-primary,
  .btn-ghost {
    width: 100%;
    justify-content: center;
  }
  .header-inner {
    padding: 0 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  body::before {
    animation: none;
  }
  html {
    scroll-behavior: auto;
  }
}