/* ============================================
   CRESPOGAS — Identidad visual
   Profesional · Familiar · Moderno
   ============================================ */

@font-face {
  font-family: 'OpenSans Condensed';
  src: url('../fonts/OpenSans_Condensed-Regular.ttf') format('truetype');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'OpenSans Condensed';
  src: url('../fonts/OpenSans_Condensed-SemiBold.ttf') format('truetype');
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'OpenSans Condensed';
  src: url('../fonts/OpenSans_Condensed-SemiBoldItalic.ttf') format('truetype');
  font-weight: 600; font-style: italic; font-display: swap;
}
@font-face {
  font-family: 'OpenSans SemiCondensed';
  src: url('../fonts/OpenSans_SemiCondensed-Bold.ttf') format('truetype');
  font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'OpenSans SemiCondensed';
  src: url('../fonts/OpenSans_SemiCondensed-BoldItalic.ttf') format('truetype');
  font-weight: 700; font-style: italic; font-display: swap;
}

:root {
  --azul: #27326d;
  --azul-oscuro: #1a234d;
  --azul-claro: #3a4a8f;
  --rojo: #E10629;
  --rojo-oscuro: #b80520;
  --naranja: #F6A320;
  --cian: #26A1BE;
  --blanco: #ffffff;
  --gris-50: #f8f9fb;
  --gris-100: #eef0f4;
  --gris-200: #d9dde5;
  --gris-400: #8b92a3;
  --gris-600: #4a5163;
  --gris-900: #1a1d28;

  --font-display: 'OpenSans SemiCondensed', 'Open Sans', sans-serif;
  --font-body: 'OpenSans Condensed', 'Open Sans', sans-serif;

  --container: 1240px;

  --shadow-sm: 0 2px 8px rgba(39, 50, 109, 0.06);
  --shadow-md: 0 8px 24px rgba(39, 50, 109, 0.10);
  --shadow-lg: 0 20px 50px rgba(39, 50, 109, 0.15);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--gris-900);
  background: var(--blanco);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
svg { flex-shrink: 0; }
a { color: inherit; text-decoration: none; transition: color 0.3s var(--ease); }
button { font: inherit; cursor: pointer; border: none; background: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--azul);
}
h1 { font-size: clamp(2.4rem, 5.5vw, 4.5rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.6rem); }
p { color: var(--gris-600); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rojo);
  margin-bottom: 1rem;
}
.eyebrow::before { content: ""; width: 28px; height: 2px; background: var(--rojo); }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2.5rem);
}

section { padding: clamp(4rem, 8vw, 7rem) 0; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 16px 30px;
  border-radius: 4px;
  transition: all 0.35s var(--ease);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}
.btn svg {
  width: 18px;
  height: 18px;
  max-width: 18px;
  max-height: 18px;
  flex-shrink: 0;
}
.btn-primary { background: var(--rojo); color: var(--blanco); }
.btn-primary:hover { background: var(--rojo-oscuro); transform: translateY(-2px); box-shadow: 0 12px 30px rgba(225, 6, 41, 0.35); }
.btn-secondary { background: var(--azul); color: var(--blanco); }
.btn-secondary:hover { background: var(--azul-oscuro); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--azul); border: 2px solid var(--azul); }
.btn-ghost:hover { background: var(--azul); color: var(--blanco); }
.btn .arrow { transition: transform 0.35s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

/* HEADER */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: all 0.4s var(--ease);
}
.header.scrolled { border-bottom: 1px solid var(--gris-100); box-shadow: var(--shadow-sm); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.logo { display: flex; align-items: center; gap: 12px; height: 50px; }
.logo img { height: 100%; width: auto; transition: transform 0.4s var(--ease); }
.logo:hover img { transform: scale(1.04); }

.nav { display: flex; align-items: center; gap: 32px; }
.nav a {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--azul);
  position: relative;
  padding: 6px 0;
  white-space: nowrap;
}
.nav a::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--rojo);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s var(--ease);
}
.nav a:hover::after, .nav a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta { display: flex; align-items: center; gap: 18px; }
.phone-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--azul);
  font-size: 1.05rem;
  white-space: nowrap;
  flex-shrink: 0;
}
.phone-link svg { flex-shrink: 0; width: 20px; height: 20px; fill: var(--rojo); }
.header-cta .btn { white-space: nowrap; flex-shrink: 0; }

@media (max-width: 1180px) {
  .header-cta .phone-link span { display: none; }
}

.menu-toggle { display: none; width: 44px; height: 44px; position: relative; }
.menu-toggle span {
  position: absolute;
  left: 10px; right: 10px;
  height: 2px;
  background: var(--azul);
  transition: all 0.4s var(--ease);
}
.menu-toggle span:nth-child(1) { top: 14px; }
.menu-toggle span:nth-child(2) { top: 21px; }
.menu-toggle span:nth-child(3) { top: 28px; }
.menu-toggle.active span:nth-child(1) { top: 21px; transform: rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { top: 21px; transform: rotate(-45deg); }

/* HERO HOME */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 120px;
  padding-bottom: 60px;
  overflow: hidden;
  background: linear-gradient(135deg, #f8f9fb 0%, #eef1f7 100%);
}
.hero::before {
  content: "";
  position: absolute;
  top: -10%; right: -15%;
  width: 65%; height: 130%;
  background: linear-gradient(135deg, var(--azul) 0%, var(--azul-oscuro) 100%);
  clip-path: polygon(20% 0, 100% 0, 100% 100%, 0% 100%);
  z-index: 0;
}
.hero::after {
  content: "";
  position: absolute;
  top: 30%; right: 8%;
  width: 320px; height: 320px;
  background: var(--rojo);
  border-radius: 50%;
  opacity: 0.18;
  filter: blur(80px);
  z-index: 0;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-content { animation: fadeInUp 1s var(--ease) 0.1s both; }
.hero-title {
  font-family: var(--font-display);
  font-weight: 700;
  margin-bottom: 1.8rem;
  line-height: 1.02;
}
.hero-title .highlight { color: var(--rojo); position: relative; display: inline-block; }
.hero-title .highlight::after {
  content: "";
  position: absolute;
  bottom: 4px; left: -4px; right: -4px;
  height: 14px;
  background: var(--rojo);
  opacity: 0.15;
  z-index: -1;
  transform: skewX(-12deg);
}
.hero-subtitle {
  font-size: 1.15rem;
  line-height: 1.6;
  margin-bottom: 2.2rem;
  color: var(--gris-600);
  max-width: 540px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 3rem; }
.hero-stats { display: flex; gap: 40px; padding-top: 2rem; border-top: 1px solid var(--gris-200); }
.stat-item .stat-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--azul);
  line-height: 1;
}
.stat-item .stat-label {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gris-400);
  margin-top: 6px;
}

.hero-visual { position: relative; animation: fadeInUp 1s var(--ease) 0.3s both; }
.hero-visual-card {
  position: relative;
  background: var(--blanco);
  border-radius: 16px;
  padding: 48px 40px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.hero-visual-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--azul) 0%, var(--azul) 50%, var(--rojo) 50%, var(--rojo) 100%);
}
.hero-visual-card .iso-bg {
  position: absolute;
  bottom: -40px; right: -40px;
  width: 280px;
  opacity: 0.06;
  z-index: 0;
}
.hero-visual-card-content { position: relative; z-index: 1; }
.hero-visual-card h3 { font-size: 1.4rem; margin-bottom: 1.8rem; color: var(--azul); }

.feature-list { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-family: var(--font-body);
  color: var(--gris-900);
  font-weight: 600;
}
.feature-list .check {
  flex-shrink: 0;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--azul);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.feature-list .check svg { width: 13px; height: 13px; fill: var(--blanco); }

.hero-since {
  position: absolute;
  top: -28px; left: -28px;
  background: var(--rojo);
  color: var(--blanco);
  padding: 18px 24px;
  border-radius: 12px;
  font-family: var(--font-display);
  font-weight: 700;
  box-shadow: var(--shadow-md);
  transform: rotate(-6deg);
  z-index: 2;
}
.hero-since .since-label { font-size: 0.7rem; letter-spacing: 0.16em; opacity: 0.85; display: block; margin-bottom: 2px; }
.hero-since .since-year { font-size: 1.5rem; letter-spacing: 0.04em; display: block; line-height: 1; }

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* PAGE HERO (interior) */
.page-hero {
  position: relative;
  padding: 180px 0 90px;
  background: linear-gradient(135deg, var(--azul) 0%, var(--azul-oscuro) 100%);
  color: var(--blanco);
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  top: 50%; right: -10%;
  width: 600px; height: 600px;
  background: var(--rojo);
  border-radius: 50%;
  opacity: 0.15;
  filter: blur(120px);
  transform: translateY(-50%);
}
.page-hero::after {
  content: "";
  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: 60px 60px;
  opacity: 0.5;
}
.page-hero-content { position: relative; z-index: 1; max-width: 820px; }
.page-hero h1 { color: var(--blanco); margin-bottom: 1rem; }
.page-hero p { color: rgba(255, 255, 255, 0.85); font-size: 1.2rem; max-width: 640px; line-height: 1.55; }
.page-hero .eyebrow { color: var(--blanco); }
.page-hero .eyebrow::before { background: var(--rojo); }

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1.6rem;
  color: rgba(255,255,255,0.6);
  flex-wrap: wrap;
}
.breadcrumbs a { color: rgba(255,255,255,0.85); transition: color 0.3s var(--ease); }
.breadcrumbs a:hover { color: var(--blanco); }
.breadcrumbs .sep { color: rgba(255,255,255,0.4); }
.breadcrumbs .current { color: var(--blanco); }

/* SERVICIOS HOME */
.services { position: relative; background: var(--blanco); }
.section-head { text-align: center; max-width: 720px; margin: 0 auto 4rem; }
.section-head .eyebrow { justify-content: center; }
.section-head h2 { margin-bottom: 1rem; }
.section-head p { font-size: 1.1rem; line-height: 1.6; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.service-card {
  position: relative;
  padding: 40px 32px;
  background: var(--blanco);
  border: 1px solid var(--gris-100);
  border-radius: 12px;
  transition: all 0.45s var(--ease);
  overflow: hidden;
  display: block;
}
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--azul) 0%, var(--azul-oscuro) 100%);
  opacity: 0;
  transition: opacity 0.5s var(--ease);
  z-index: 0;
}
.service-card::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 3px;
  background: var(--rojo);
  transition: width 0.5s var(--ease);
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card:hover::before { opacity: 1; }
.service-card:hover::after { width: 100%; }
.service-card > * { position: relative; z-index: 1; }

.service-icon {
  width: 64px; height: 64px;
  border-radius: 14px;
  background: var(--gris-50);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.6rem;
  transition: all 0.5s var(--ease);
}
.service-card:hover .service-icon { background: var(--rojo); transform: rotate(-6deg) scale(1.05); }
.service-icon svg { width: 32px; height: 32px; stroke: var(--azul); fill: none; stroke-width: 1.6; transition: stroke 0.5s var(--ease); }
.service-card:hover .service-icon svg { stroke: var(--blanco); }
.service-card h3 { margin-bottom: 0.7rem; transition: color 0.5s var(--ease); }
.service-card:hover h3, .service-card:hover p { color: var(--blanco); }
.service-card p { font-size: 0.96rem; line-height: 1.55; margin-bottom: 1.2rem; transition: color 0.5s var(--ease); }
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--rojo);
  transition: color 0.5s var(--ease);
}
.service-card:hover .service-link { color: var(--blanco); }
.service-link svg { width: 18px; height: 18px; fill: currentColor; transition: transform 0.4s var(--ease); }
.service-card:hover .service-link svg { transform: translateX(4px); }

/* QUIÉNES SOMOS */
.about { background: var(--gris-50); position: relative; overflow: hidden; }
.about::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 50%; height: 100%;
  background-image: radial-gradient(circle at 20% 50%, rgba(39, 50, 109, 0.04) 0%, transparent 50%);
  z-index: 0;
}
.about-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 70px;
  align-items: center;
}
.about-visual { position: relative; }
.about-visual-main {
  background: var(--azul);
  border-radius: 16px;
  padding: 60px 50px;
  color: var(--blanco);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-visual-main::before {
  content: "";
  position: absolute;
  top: -50%; right: -50%;
  width: 100%; height: 100%;
  background: var(--rojo);
  opacity: 0.4;
  border-radius: 50%;
  filter: blur(60px);
}
.about-iso { position: relative; width: 60%; margin: 0 auto 30px; filter: brightness(0) invert(1); opacity: 0.95; }
.about-quote {
  position: relative;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.4;
  font-style: italic;
  text-align: center;
  margin-top: 2rem;
}
.about-quote::before, .about-quote::after {
  content: '"';
  font-family: serif;
  font-size: 3rem;
  opacity: 0.4;
  line-height: 0;
  position: relative;
  top: 12px;
}
.about-badge {
  position: absolute;
  bottom: -30px; right: -30px;
  background: var(--rojo);
  color: var(--blanco);
  width: 130px; height: 130px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  text-align: center;
  box-shadow: var(--shadow-lg);
  transform: rotate(-8deg);
  z-index: 2;
}
.about-badge .num { font-size: 2.4rem; line-height: 1; }
.about-badge .text { font-size: 0.65rem; letter-spacing: 0.14em; text-transform: uppercase; margin-top: 4px; opacity: 0.95; padding: 0 12px; }

.about-content h2 { margin-bottom: 1.4rem; }
.about-content p { font-size: 1.04rem; margin-bottom: 1.2rem; line-height: 1.7; }

.values-list {
  list-style: none;
  margin-top: 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.value-item { display: flex; align-items: flex-start; gap: 14px; }
.value-icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--blanco);
  border: 2px solid var(--rojo);
  display: flex;
  align-items: center;
  justify-content: center;
}
.value-icon svg { width: 20px; height: 20px; fill: var(--rojo); }
.value-text h4 { font-family: var(--font-display); font-size: 1.02rem; color: var(--azul); margin-bottom: 4px; }
.value-text p { font-size: 0.9rem; line-height: 1.45; margin: 0; }

/* PROCESO */
.process { background: var(--blanco); position: relative; }
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; }
.process-steps::before {
  content: "";
  position: absolute;
  top: 32px; left: 8%; right: 8%;
  height: 2px;
  background-image: linear-gradient(90deg, var(--gris-200) 50%, transparent 50%);
  background-size: 14px 2px;
  z-index: 0;
}
.step { position: relative; text-align: center; z-index: 1; }
.step-num {
  width: 64px; height: 64px;
  margin: 0 auto 1.4rem;
  background: var(--blanco);
  border: 2px solid var(--azul);
  color: var(--azul);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  transition: all 0.4s var(--ease);
}
.step:hover .step-num { background: var(--rojo); border-color: var(--rojo); color: var(--blanco); transform: scale(1.08); }
.step h3 { font-size: 1.15rem; margin-bottom: 0.6rem; }
.step p { font-size: 0.93rem; line-height: 1.5; }

/* CTA */
.cta { position: relative; background: var(--azul); color: var(--blanco); overflow: hidden; }
.cta::before {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: 50%; height: 100%;
  background: linear-gradient(135deg, transparent 30%, rgba(225, 6, 41, 0.3) 100%);
  clip-path: polygon(30% 0, 100% 0, 100% 100%, 0% 100%);
}
.cta::after {
  content: "";
  position: absolute;
  bottom: -100px; left: -50px;
  width: 400px; height: 400px;
  background: var(--rojo);
  border-radius: 50%;
  opacity: 0.2;
  filter: blur(100px);
}
.cta-content { position: relative; z-index: 1; text-align: center; max-width: 700px; margin: 0 auto; }
.cta h2 { color: var(--blanco); margin-bottom: 1.2rem; }
.cta p { color: rgba(255, 255, 255, 0.85); font-size: 1.15rem; margin-bottom: 2.4rem; }
.cta-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.cta-actions .btn { white-space: nowrap; min-width: 200px; }
.cta-actions .btn svg {
  width: 18px !important;
  height: 18px !important;
  flex-shrink: 0;
}
.cta .btn-primary { background: var(--rojo); }
.cta .btn-secondary { background: var(--blanco); color: var(--azul); }
.cta .btn-secondary:hover { background: var(--gris-100); }

/* FAQ */
.faq { background: var(--blanco); }
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--gris-200); padding: 0; }
.faq-item:first-child { border-top: 1px solid var(--gris-200); }
.faq-question {
  width: 100%;
  text-align: left;
  padding: 26px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--azul);
  transition: color 0.3s var(--ease);
}
.faq-question:hover { color: var(--rojo); }
.faq-icon {
  flex-shrink: 0;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--gris-50);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--ease);
}
.faq-icon svg { width: 14px; height: 14px; stroke: var(--azul); stroke-width: 2.5; fill: none; transition: transform 0.4s var(--ease); }
.faq-item.active .faq-icon { background: var(--rojo); }
.faq-item.active .faq-icon svg { stroke: var(--blanco); transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.5s var(--ease); }
.faq-item.active .faq-answer { max-height: 400px; }
.faq-answer p { padding: 0 0 26px; font-size: 1rem; line-height: 1.65; }

/* FOOTER */
.footer {
  background: var(--gris-900);
  color: rgba(255, 255, 255, 0.75);
  padding: 80px 0 0;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--azul) 0%, var(--azul) 50%, var(--rojo) 50%, var(--rojo) 100%);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 50px;
  margin-bottom: 60px;
}
.footer-brand img { height: 70px; width: auto; margin-bottom: 1.4rem; }
.footer-brand p { font-size: 0.95rem; line-height: 1.6; color: rgba(255, 255, 255, 0.6); margin-bottom: 1.6rem; max-width: 360px; }
.social-links { display: flex; gap: 12px; }
.social-links a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--ease);
}
.social-links a:hover { background: var(--rojo); transform: translateY(-3px); }
.social-links svg { width: 18px; height: 18px; fill: var(--blanco); }

.footer-col h4 {
  font-family: var(--font-display);
  color: var(--blanco);
  font-size: 0.92rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1.4rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 0.95rem; color: rgba(255, 255, 255, 0.6); transition: color 0.3s var(--ease); }
.footer-col a:hover { color: var(--blanco); }

.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.7);
}
.footer-contact-item svg {
  flex-shrink: 0;
  width: 18px !important;
  height: 18px !important;
  max-width: 18px;
  max-height: 18px;
  fill: var(--rojo);
  margin-top: 3px;
}
.footer-contact-item a:hover { color: var(--blanco); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 26px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
}
.footer-bottom-links { display: flex; gap: 24px; }

/* PROYECTOS - tarjetas en home */
.projects { background: var(--gris-50); }
.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.project-card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  display: block;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-md);
  transition: all 0.5s var(--ease);
}
.project-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.project-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.project-card:hover img { transform: scale(1.06); }
.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(26, 35, 77, 0.85) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px 26px;
  color: var(--blanco);
}
.project-label {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blanco);
  background: var(--rojo);
  padding: 6px 12px;
  border-radius: 4px;
  margin-bottom: 12px;
  align-self: flex-start;
}
.project-overlay h3 {
  color: var(--blanco);
  font-size: 1.4rem;
  margin-bottom: 6px;
}
.project-overlay p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.92rem;
  margin: 0;
}

/* PROYECTOS - página completa con detalle */
.projects-detail { background: var(--blanco); padding: 5rem 0 6rem; }
.projects-detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 40px;
}
.project-card-detail {
  background: var(--blanco);
  border: 1px solid var(--gris-100);
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.4s var(--ease);
}
.project-card-detail:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.project-img-wrap {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--gris-100);
}
.project-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.project-card-detail:hover .project-img-wrap img { transform: scale(1.05); }
.project-info { padding: 26px 28px 30px; }
.project-info .project-label {
  display: inline-block;
  background: var(--gris-50);
  color: var(--rojo);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 4px;
  margin-bottom: 12px;
}
.project-info h3 { font-size: 1.25rem; margin-bottom: 6px; }
.project-info .project-location {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gris-400);
  margin-bottom: 14px;
}
.project-info p { font-size: 0.96rem; line-height: 1.55; }

/* PÁGINAS LEGALES */
.legal-section { padding: 5rem 0 6rem; background: var(--blanco); }
.legal-content {
  max-width: 820px;
  margin: 0 auto;
}
.legal-intro {
  font-size: 1.1rem;
  line-height: 1.65;
  margin-bottom: 2.4rem;
  padding: 22px 24px;
  background: var(--gris-50);
  border-left: 3px solid var(--rojo);
  border-radius: 6px;
  color: var(--gris-900);
}
.legal-content h2 {
  font-size: 1.4rem;
  margin: 2.4rem 0 1rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--gris-100);
}
.legal-content h2:first-of-type { border-top: none; padding-top: 0; }
.legal-content p { font-size: 1rem; line-height: 1.7; margin-bottom: 1rem; }
.legal-content a { color: var(--rojo); font-weight: 600; }
.legal-content a:hover { text-decoration: underline; }
.legal-list { list-style: none; margin: 1rem 0 1.4rem; }
.legal-list li {
  padding: 8px 0 8px 22px;
  position: relative;
  line-height: 1.6;
}
.legal-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 18px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--rojo);
}
.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.4rem 0 2rem;
  font-size: 0.93rem;
  border: 1px solid var(--gris-200);
  border-radius: 8px;
  overflow: hidden;
}
.legal-table th, .legal-table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--gris-200);
}
.legal-table th {
  background: var(--azul);
  color: var(--blanco);
  font-family: var(--font-display);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.legal-table tbody tr:last-child td { border-bottom: none; }
.legal-table tbody tr:nth-child(even) { background: var(--gris-50); }
.legal-note {
  background: rgba(246, 163, 32, 0.12);
  border-left: 3px solid var(--naranja);
  padding: 14px 18px;
  border-radius: 6px;
  font-size: 0.92rem;
  color: var(--gris-600);
  font-style: italic;
  margin: 1rem 0 1.6rem;
}
.legal-update {
  margin-top: 3rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--gris-200);
  font-size: 0.88rem;
  color: var(--gris-400);
  font-style: italic;
}

/* BANNER DE COOKIES */
.cookie-banner {
  position: fixed;
  bottom: 20px; left: 20px; right: 20px;
  z-index: 200;
  background: var(--blanco);
  border-radius: 12px;
  padding: 20px 24px;
  box-shadow: 0 20px 50px rgba(26, 35, 77, 0.25);
  border: 1px solid var(--gris-100);
  max-width: 720px;
  margin: 0 auto;
  animation: cookieSlideUp 0.5s var(--ease);
}
.cookie-banner[hidden] { display: none; }
.cookie-banner-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.cookie-banner-text { flex: 1; min-width: 240px; }
.cookie-banner-text strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.92rem;
  color: var(--azul);
  margin-bottom: 4px;
}
.cookie-banner-text p {
  font-size: 0.88rem;
  line-height: 1.5;
  margin: 0;
}
.cookie-banner-text a { color: var(--rojo); font-weight: 600; }
.cookie-banner-text a:hover { text-decoration: underline; }
.cookie-banner-actions { flex-shrink: 0; }
.cookie-banner-actions .btn { padding: 12px 22px; font-size: 0.85rem; }
@keyframes cookieSlideUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (max-width: 720px) {
  .cookie-banner { left: 12px; right: 12px; bottom: 12px; padding: 16px 18px; }
  .cookie-banner-inner { gap: 14px; }
  .cookie-banner-actions { width: 100%; }
  .cookie-banner-actions .btn { width: 100%; justify-content: center; }
}

/* PÁGINAS DE SERVICIO */
.service-detail { padding: 6rem 0; background: var(--blanco); }
.service-detail-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 70px;
  align-items: start;
}
.service-detail-content h2 { margin-bottom: 1.4rem; }
.service-detail-content > p { font-size: 1.08rem; line-height: 1.7; margin-bottom: 1.4rem; }
.service-detail-content h3 { font-size: 1.4rem; margin: 2.4rem 0 1rem; }

.bullet-list { list-style: none; display: flex; flex-direction: column; gap: 14px; margin: 1.6rem 0 2rem; }
.bullet-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 1rem;
  line-height: 1.55;
  color: var(--gris-900);
  font-weight: 600;
}
.bullet-list .check {
  flex-shrink: 0;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--rojo);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}
.bullet-list .check svg { width: 13px; height: 13px; fill: var(--blanco); }

.service-detail-aside {
  position: sticky;
  top: 110px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.aside-card {
  background: var(--gris-50);
  border-radius: 14px;
  padding: 32px 28px;
  border: 1px solid var(--gris-100);
}
.aside-card.dark {
  background: linear-gradient(135deg, var(--azul) 0%, var(--azul-oscuro) 100%);
  color: var(--blanco);
  border: none;
  position: relative;
  overflow: hidden;
}
.aside-card.dark::before {
  content: "";
  position: absolute;
  top: -30%; right: -30%;
  width: 200px; height: 200px;
  background: var(--rojo);
  border-radius: 50%;
  opacity: 0.3;
  filter: blur(50px);
}
.aside-card.dark > * { position: relative; z-index: 1; }
.aside-card h3 { font-size: 1.15rem; margin-bottom: 1rem; color: var(--azul); }
.aside-card.dark h3 { color: var(--blanco); }
.aside-card p { font-size: 0.95rem; line-height: 1.55; margin-bottom: 1.2rem; }
.aside-card.dark p { color: rgba(255,255,255,0.85); }
.aside-card .btn { width: 100%; justify-content: center; }

.aside-services-list { list-style: none; }
.aside-services-list li { border-bottom: 1px solid var(--gris-200); }
.aside-services-list li:last-child { border-bottom: none; }
.aside-services-list a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--azul);
  transition: all 0.3s var(--ease);
}
.aside-services-list a:hover { color: var(--rojo); padding-left: 6px; }
.aside-services-list a.active { color: var(--rojo); }
.aside-services-list svg { width: 14px; height: 14px; fill: currentColor; }

/* CONTACTO */
.contact-section { padding: 5rem 0 6rem; background: var(--blanco); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: start;
}
.contact-info h2 { margin-bottom: 1rem; }
.contact-info > p { font-size: 1.08rem; line-height: 1.65; margin-bottom: 2.4rem; }

.contact-blocks { display: flex; flex-direction: column; gap: 24px; margin-bottom: 2.4rem; }
.contact-block {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 22px;
  background: var(--gris-50);
  border-radius: 12px;
  border-left: 3px solid var(--rojo);
  transition: all 0.3s var(--ease);
}
.contact-block:hover { transform: translateX(4px); box-shadow: var(--shadow-sm); }
.contact-block-icon {
  flex-shrink: 0;
  width: 48px; height: 48px;
  border-radius: 10px;
  background: var(--blanco);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.contact-block-icon svg {
  width: 22px !important;
  height: 22px !important;
  max-width: 22px;
  max-height: 22px;
  fill: var(--azul);
  flex-shrink: 0;
}
.contact-block-info h4 {
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gris-400);
  margin-bottom: 4px;
}
.contact-block-info p, .contact-block-info a {
  font-family: var(--font-display);
  font-size: 1.08rem;
  color: var(--azul);
  font-weight: 700;
  line-height: 1.3;
}
.contact-block-info a:hover { color: var(--rojo); }

.contact-form-wrap {
  background: var(--blanco);
  border-radius: 16px;
  padding: 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gris-100);
}
.contact-form-wrap h3 { font-size: 1.5rem; margin-bottom: 0.4rem; }
.contact-form-wrap > p { font-size: 0.95rem; margin-bottom: 1.8rem; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.form-group { display: flex; flex-direction: column; margin-bottom: 18px; }
.form-group label {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gris-600);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 14px 16px;
  border: 1.5px solid var(--gris-200);
  border-radius: 8px;
  background: var(--blanco);
  color: var(--gris-900);
  transition: all 0.3s var(--ease);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--azul);
  box-shadow: 0 0 0 4px rgba(39, 50, 109, 0.08);
}
.form-group textarea { resize: vertical; min-height: 120px; }

.form-check {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 1.6rem;
  font-size: 0.88rem;
  line-height: 1.45;
  color: var(--gris-600);
}
.form-check input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--rojo); }

.contact-form .btn { width: 100%; justify-content: center; padding: 18px 30px; }
.contact-form .btn:disabled { opacity: 0.7; cursor: not-allowed; }

/* Honeypot anti-spam — invisible para humanos */
.form-honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* Aviso del formulario */
.form-alert {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 20px;
  border-radius: 10px;
  margin-bottom: 1.6rem;
  animation: alertSlide 0.4s var(--ease);
}
.form-alert[hidden] { display: none; }
.form-alert svg { flex-shrink: 0; margin-top: 2px; }
.form-alert strong {
  font-family: var(--font-display);
  font-size: 1rem;
  display: block;
  margin-bottom: 4px;
}
.form-alert p { font-size: 0.92rem; line-height: 1.45; margin: 0; }
.form-alert--success {
  background: #e8f5ec;
  border-left: 3px solid #2c9c4a;
  color: #1e6e34;
}
.form-alert--success svg { color: #2c9c4a; }
.form-alert--success strong { color: #1e6e34; }
.form-alert--success p { color: #2c5736; }
.form-alert--error {
  background: #fce8ea;
  border-left: 3px solid var(--rojo);
  color: #8b1320;
}
.form-alert--error svg { color: var(--rojo); }
.form-alert--error strong { color: #8b1320; }
.form-alert--error p { color: #6b1018; }
@keyframes alertSlide {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

.map-section { padding-bottom: 6rem; }
.map-wrap {
  width: 100%;
  height: 460px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gris-100);
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; }

/* TIMELINE V2 - más visual con zigzag */
.timeline-section { background: var(--gris-50); position: relative; overflow: hidden; }
.timeline-section::before {
  content: "";
  position: absolute;
  top: 0; right: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(225, 6, 41, 0.04) 0%, transparent 70%);
  border-radius: 50%;
}

.timeline-v2 {
  position: relative;
  max-width: 1080px;
  margin: 0 auto;
  padding: 20px 0;
}
.timeline-line {
  position: absolute;
  top: 60px; bottom: 60px;
  left: 50%;
  width: 3px;
  background: linear-gradient(180deg, var(--azul) 0%, var(--rojo) 100%);
  border-radius: 3px;
  transform: translateX(-50%);
  z-index: 0;
}

.timeline-item-v2 {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 50px;
  min-height: 120px;
  z-index: 2;
}
.timeline-item-v2:last-child { margin-bottom: 0; }
.timeline-item-v2[data-side="left"] { justify-content: flex-start; }
.timeline-item-v2[data-side="right"] { justify-content: flex-end; }

.timeline-card {
  background: var(--blanco);
  border-radius: 14px;
  padding: 30px 28px;
  box-shadow: var(--shadow-md);
  position: relative;
  border: 1px solid var(--gris-100);
  transition: all 0.4s var(--ease);
  width: calc(50% - 60px);
}
.timeline-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.timeline-card::before {
  content: "";
  position: absolute;
  top: 36px;
  width: 16px; height: 16px;
  background: var(--blanco);
  border: 1px solid var(--gris-100);
  border-bottom: none;
  border-left: none;
}
.timeline-item-v2[data-side="left"] .timeline-card::before {
  right: -9px;
  transform: rotate(45deg);
}
.timeline-item-v2[data-side="right"] .timeline-card::before {
  left: -9px;
  transform: rotate(-135deg);
}

/* Icono central: ABSOLUTE sobre la línea */
.timeline-icon {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--blanco);
  border: 3px solid var(--rojo);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--rojo);
  z-index: 3;
  box-shadow: 0 4px 14px rgba(225, 6, 41, 0.25);
  transition: all 0.4s var(--ease);
}
.timeline-icon svg { width: 26px; height: 26px; }
.timeline-item-v2:hover .timeline-icon {
  background: var(--rojo);
  color: var(--blanco);
  transform: translate(-50%, -50%) scale(1.08);
}

/* Item especial "Hoy" */
.timeline-item-v2--current .timeline-icon {
  background: var(--rojo);
  color: var(--blanco);
  border-color: var(--rojo);
  animation: pulseDot 2.4s infinite;
}
.timeline-item-v2--current .timeline-card {
  background: linear-gradient(135deg, var(--azul) 0%, var(--azul-oscuro) 100%);
  color: var(--blanco);
  border-color: transparent;
}
.timeline-item-v2--current .timeline-card::before {
  background: var(--azul-oscuro);
  border-color: transparent;
}
.timeline-item-v2--current .timeline-card h3,
.timeline-item-v2--current .timeline-card .timeline-year-big {
  color: var(--blanco);
}
.timeline-item-v2--current .timeline-card p { color: rgba(255, 255, 255, 0.85); }

@keyframes pulseDot {
  0%, 100% {
    box-shadow: 0 4px 14px rgba(225, 6, 41, 0.25), 0 0 0 0 rgba(225, 6, 41, 0.5);
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    box-shadow: 0 4px 14px rgba(225, 6, 41, 0.25), 0 0 0 12px rgba(225, 6, 41, 0);
    transform: translate(-50%, -50%) scale(1);
  }
}

.timeline-year-big {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.4rem;
  color: var(--rojo);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 0.6rem;
}
.timeline-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.7rem;
}
.timeline-card p {
  font-size: 0.96rem;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 760px) {
  .timeline-line { left: 30px; }
  .timeline-item-v2,
  .timeline-item-v2[data-side="left"],
  .timeline-item-v2[data-side="right"] {
    justify-content: flex-start;
    padding-left: 70px;
    margin-bottom: 36px;
  }
  .timeline-card {
    width: 100%;
  }
  .timeline-card::before,
  .timeline-item-v2[data-side="left"] .timeline-card::before,
  .timeline-item-v2[data-side="right"] .timeline-card::before {
    left: -9px;
    right: auto;
    transform: rotate(-135deg);
  }
  .timeline-icon {
    left: 30px;
    top: 36px;
    transform: translate(-50%, 0);
    width: 56px;
    height: 56px;
  }
  .timeline-item-v2:hover .timeline-icon {
    transform: translate(-50%, 0) scale(1.08);
  }
  @keyframes pulseDot {
    0%, 100% {
      box-shadow: 0 4px 14px rgba(225, 6, 41, 0.25), 0 0 0 0 rgba(225, 6, 41, 0.5);
      transform: translate(-50%, 0);
    }
    50% {
      box-shadow: 0 4px 14px rgba(225, 6, 41, 0.25), 0 0 0 12px rgba(225, 6, 41, 0);
      transform: translate(-50%, 0);
    }
  }
  .timeline-year-big { font-size: 2rem; }
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero-grid, .about-grid, .service-detail-grid, .contact-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .service-detail-aside { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 40px 24px; }
  .process-steps::before { display: none; }
}
@media (max-width: 720px) {
  .nav, .header-cta .phone-link, .header-cta .btn { display: none; }
  .menu-toggle { display: block; }
  .nav.mobile-open {
    display: flex;
    position: fixed;
    top: 80px; left: 0; right: 0;
    background: var(--blanco);
    flex-direction: column;
    padding: 30px 24px;
    gap: 20px;
    box-shadow: var(--shadow-lg);
    border-top: 1px solid var(--gris-100);
  }
  .hero { padding-top: 100px; text-align: center; }
  .hero-actions, .cta-actions { justify-content: center; }
  .hero-stats { justify-content: space-around; gap: 20px; }
  .stat-item .stat-num { font-size: 1.8rem; }
  .hero-since { top: -16px; left: 50%; transform: translateX(-50%) rotate(-6deg); }
  .values-list, .footer-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .about-badge { width: 100px; height: 100px; bottom: -20px; right: -10px; }
  .about-badge .num { font-size: 1.8rem; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px 22px; }
  .page-hero { padding: 140px 0 70px; }
}

.reveal { transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.js-on .reveal { opacity: 0; transform: translateY(30px); }
.js-on .reveal.visible { opacity: 1; transform: translateY(0); }
