@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,700&family=Poppins:wght@300;400;500;600;700&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500;9..40,600&display=swap');

/* ===== VARIABLES ===== */
:root {
  --dark:         #0e1b12;
  --green-dark:   #1F7A4D;
  --green-bright: #2d7a45;
  --green-grey:   #515C57;
  --gold:         #F2B705;
  --gold-light:   #e0b828;
  --white:        #ffffff;
  --off-white:    #f7f6f3;
  --gray-light:   #eeece9;
  --text-dark:    #1a1a1a;
  --text-body:    #3d3d3d;
  --text-muted:   #6b6b6b;
  --radius:       4px;
  --shadow:       0 4px 24px rgba(0,0,0,0.12);
  --shadow-lg:    0 12px 48px rgba(0,0,0,0.18);
  --transition:   0.35s cubic-bezier(0.4,0,0.2,1);
}

/* ===== SR-ONLY (SEO h1 oculto visualmente) ===== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

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

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5 {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.01em;
}
.label-tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ===== UTILITY — PESOS TIPOGRÁFICOS ===== */
.t-thin       { font-weight: 300; color: var(--white); }
.t-bold-white { font-weight: 900; color: var(--white); }
.t-gradient {
  font-weight: 900;
  background: linear-gradient(to right, var(--green-bright) 20%, var(--gold) 60%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
@supports not (-webkit-background-clip: text) {
  .t-gradient { background: none; color: var(--green-bright); }
}

/* ===== UTILITY CLASSES ===== */
.text-gradient {
  background: linear-gradient(to right, var(--green-bright) 20%, var(--gold) 60%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
.section-title-sm { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
.body-text { font-size: 0.95rem; color: var(--text-body); line-height: 1.75; margin-bottom: 24px; }
.body-text-light { font-size: 0.92rem; color: rgba(255,255,255,0.75); line-height: 1.75; margin-bottom: 24px; }
.body-text-muted { font-size: 0.95rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 32px; }

/* ===== FLOATING BUTTONS ===== */
.float-buttons { position: fixed; bottom: 28px; right: 24px; z-index: 999; display: flex; flex-direction: column; gap: 12px; align-items: center; }
.float-btn { width: 48px; height: 48px; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; border: none; box-shadow: 0 4px 16px rgba(0,0,0,0.25); transition: transform 0.2s, box-shadow 0.2s; }
.float-btn:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.3); }
.float-whatsapp { background: #25D366; color: white; }
.float-top { background: var(--green-dark); color: white; opacity: 0; pointer-events: none; transition: opacity 0.3s, transform 0.2s, box-shadow 0.2s; }
.float-top.visible { opacity: 1; pointer-events: auto; }
.float-top .material-icons { font-size: 22px; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 16px; left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  width: calc(100% - 48px);
  max-width: 1100px;
  padding: 0 0 0 24px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--green-dark);
  border-radius: 40px;
  transition: background var(--transition), box-shadow var(--transition), top var(--transition);
  box-shadow: 0 4px 24px rgba(0,0,0,0.25);
}
.navbar.scrolled { background: var(--green-dark); box-shadow: 0 4px 32px rgba(0,0,0,0.4); top: 10px; }
.nav-logo img { height: 30px; transition: height var(--transition); }
.navbar.scrolled .nav-logo img { height: 26px; }
.nav-links { display: flex; gap: 4px; align-items: center; }
.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 0.92rem; font-weight: 500;
  padding: 8px 16px; border-radius: 8px;
  transition: color var(--transition), background var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 5px; left: 16px; right: 16px;
  height: 1.5px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--transition);
}
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.06); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: var(--gold); }
.nav-cta {
  background: var(--gold) !important;
  color: var(--dark) !important;
  font-weight: 700 !important;
  padding: 11px 24px !important;
  border-radius: 30px !important;
  font-family: 'Barlow Condensed', sans-serif !important;
  font-size: 1.05rem !important;
  letter-spacing: 0.03em !important;
  transition: background var(--transition), transform 0.2s, box-shadow 0.2s !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  background: var(--gold-light) !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 6px 20px rgba(200,160,32,0.4) !important;
}
.hamburger {
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
  color: var(--white);
  width: 36px;
  height: 36px;
}
.hamburger .material-icons { font-size: 22px; color: var(--white); transition: opacity var(--transition); }
.hamburger .icon-close { display: none; }
.hamburger.open .icon-menu { display: none; }
.hamburger.open .icon-close { display: block; }

/* ===== HERO BANNER ===== */
.hero-banner { position: relative; width: 100%; height: 100vh; min-height: 580px; overflow: hidden; }
.hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.1s ease; pointer-events: none; }
.hero-slide.active { opacity: 1; pointer-events: auto; }
.hero-slide-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transform: scale(1.05); transition: transform 7s ease; }
.hero-slide.active .hero-slide-bg { transform: scale(1); }
.hero-slide-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to left, rgba(6,14,9,0.72) 0%, rgba(6,14,9,0.38) 50%, rgba(6,14,9,0.15) 100%);
}
.hero-content {
  position: absolute; z-index: 2;
  right: 0; bottom: 100px;
  padding: 0 60px 0 40px;
  max-width: 680px; text-align: right;
  transform: translateY(18px); opacity: 0;
  transition: transform 0.9s ease 0.35s, opacity 0.9s ease 0.35s;
}
.hero-slide.active .hero-content { transform: translateY(0); opacity: 1; }
.hero-title {
  font-size: clamp(2rem, 4.5vw, 3.8rem);
  font-weight: 900; color: var(--white);
  text-transform: uppercase; line-height: 0.93;
  margin-bottom: 20px; letter-spacing: -0.01em;
}
.hero-subtitle-box {
  display: inline-block; width: 600px;
  background: rgba(10,20,14,0.42);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  border-radius: 12px; padding: 16px 24px; text-align: right;
}
.hero-subtitle-box p {
  color: rgba(255,255,255,0.88);
  font-size: 0.95rem; line-height: 1.65;
  padding-right: 12px; position: relative;
}
.hero-subtitle-box p::after {
  content: ''; position: absolute;
  right: 0; top: 0; bottom: 0; width: 4px;
  background: linear-gradient(to bottom, var(--green-bright) 20%, var(--gold) 60%);
}
.hero-indicators {
  position: absolute; bottom: 28px; left: 50%;
  transform: translateX(-50%); z-index: 10;
  display: flex; gap: 10px; align-items: center;
}
.hero-dot { width: 32px; height: 5px; background: rgba(255,255,255,0.3); border-radius: 3px; cursor: pointer; transition: background 0.35s, width 0.35s; }
.hero-dot.active { background: var(--gold); width: 48px; }
.hero-line {
  position: absolute; right: 16px; top: 50%; transform: translateY(-50%);
  z-index: 5; display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.hero-line-text { color: rgba(255,255,255,0.55); font-size: 0.68rem; font-weight: 500; letter-spacing: 0.14em; writing-mode: vertical-lr; transform: rotate(180deg); text-transform: uppercase; }
.hero-line-bar { width: 1.5px; height: 48px; background: var(--gold); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 1.05rem; letter-spacing: 0.04em;
  padding: 13px 28px; border-radius: var(--radius);
  border: none; cursor: pointer;
  transition: background var(--transition), transform 0.2s, box-shadow 0.2s;
  text-transform: uppercase;
}
.btn-primary { background: var(--gold); color: var(--dark); }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(200,160,32,0.35); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.5); }
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.1); transform: translateY(-2px); }
.btn-green { background: var(--green-dark); color: var(--white); }
.btn-green:hover { background: var(--green-bright); transform: translateY(-2px); }
.btn-lg { padding: 16px 36px; font-size: 1.15rem; }
.btn .material-icons { font-size: 18px; flex-shrink: 0; }

/* ===== CLIENTS TICKER ===== */
.ticker-section { position: relative; padding: 0; overflow: hidden; }
.clients-bar { background: var(--green-grey); height: 52px; overflow: hidden; display: flex; align-items: center; }
.ticker-wrap { display: flex; width: max-content; animation: ticker 22s linear infinite; }
.ticker-wrap:hover { animation-play-state: paused; }
.ticker-item { display: flex; align-items: center; padding: 0 80px 0 0; gap: 80px; white-space: nowrap; flex-shrink: 0; }
.ticker-item img { height: 28px; width: auto; filter: brightness(0) invert(1); opacity: 0.75; transition: opacity 0.3s; }
.ticker-item img:hover { opacity: 1; }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }


/* ===== CLIENTS TICKER ===== */
.ticker-section-experiencia { position: relative; padding: 0; overflow: hidden; }
.clients-bar-experiencia { background: var(--gold); height: 52px; overflow: hidden; display: flex; align-items: center; }
.ticker-wrap-experiencia { display: flex; width: max-content; animation: ticker-exp 22s linear infinite; }

@keyframes ticker-exp {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.ticker-wrap-experiencia:hover { animation-play-state: paused; }
.ticker-item-experiencia { display: flex; align-items: center; padding: 0 80px 0 0; gap: 80px; white-space: nowrap; flex-shrink: 0; }
.ticker-item-experiencia img { height: 28px; width: auto; filter: brightness(0) invert(1); opacity: 0.75; transition: opacity 0.3s; }
.ticker-item-experiencia img:hover { opacity: 1; }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }


/* ===== SECTIONS ===== */
.section { padding: 96px 64px; }
.section-sm { padding: 64px 64px; }
.container { max-width: 1200px; margin: 0 auto; }
.section-tag { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; display: block; }
.section-title { font-size: clamp(2.2rem, 4.5vw, 3.5rem); color: var(--text-dark); margin-bottom: 20px; text-transform: uppercase; }
.section-title em { font-style: normal; color: var(--green-bright); }
.section-title-inicio { font-size: clamp(2.2rem, 4.5vw, 3.5rem); color: var(--text-dark); text-transform: uppercase; }
.section-title-inicio em { font-style: normal; background: linear-gradient(to right, var(--green-bright), var(--gold)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;}
.section-title-servicio {font-weight: 700; font-size: clamp(2.2rem, 4.5vw, 3.5rem); margin-bottom: 20px; text-transform: uppercase; text-align: center; }
.section-tag-servicio { text-align: center; font-size: 0.9rem;  letter-spacing: 0.18em;  margin-bottom: 70px; display: block; }

.section-title.light { color: var(--white); }
.section-title.light em { color: var(--gold); }
.section-sub { font-size: 1rem; color: var(--text-muted); max-width: 520px; line-height: 1.7; }
.section-sub.light { color: rgba(255,255,255,0.7); }

/* ===== METHODOLOGY HEADER ===== */
.method-header { display:flex; align-items:center; justify-content:flex-end; gap:24px; margin-bottom:0; text-align: right; }
.method-header-tag { font-size:22px; color:#666; font-weight:400; display:block; }
.method-header-title { font-size:clamp(2rem, 4vw, 3.2rem); text-transform:uppercase; line-height:1.1; margin:0; color:var(--text-dark); }
.method-header-title .regular { font-weight:400; }
.method-header-title .bold { font-weight:800; }
.method-header-title .gold { font-weight:800; color:var(--gold); }
.method-header-truck { width:clamp(200px, 30vw, 380px); object-fit:contain; flex-shrink:0; }

@media (max-width: 768px) {
  .method-header { flex-direction:column; align-items:flex-start; text-align:left; }
  .method-header-truck { display:none; }
}

/* ===== SPECIALISTS ===== */
.word-thin { font-weight: 300; color: var(--text-body); -webkit-text-fill-color: var(--text-body); background: none; }
.word-dark { font-weight: 800; -webkit-text-fill-color: var(--text-dark); background: none; }
.specialists-title { text-align: right; }
.specialists-subtitle { font-weight: 300; font-size: 3rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-dark); }
.specialists-section { padding: 56px 64px 32px; background: var(--white); }
.specialists-header { display: flex; align-items: center; justify-content: center; max-width: 1200px; margin: 0 auto; gap: 48px; }
.specialists-truck img { height: 180px; width: auto; }

/* ===== STATS ===== */
.stats-section { background: var(--white); padding: 64px 64px; border-bottom: 1px solid var(--gray-light); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; max-width: 1200px; margin: 0 auto; }
.stat-item { padding: 32px 40px; border-right: 1px solid var(--gray-light); text-align: center; position: relative; transition: background 0.3s; }
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: var(--off-white); }
.stat-number { font-size: 4rem; font-weight: 900; color: var(--green-dark); line-height: 1; margin-bottom: 4px; }
.stat-number sup { font-size: 2rem; vertical-align: super; color: var(--gold); }
.stat-label { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--green-bright); margin-bottom: 6px; }
.stat-desc { font-size: 0.82rem; color: var(--text-muted); }

/* ===== MODEL COMPARISON ===== */
.model-section { padding: 96px 64px; background: var(--off-white); }
.model-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; max-width: 1200px; margin: 0 auto; align-items: center; }
.model-visual { position: relative; }
.model-card { background: var(--white); border-radius: 8px; padding: 28px 32px; margin-bottom: 16px; box-shadow: var(--shadow); border-left: 3px solid transparent; transition: border-color 0.3s, box-shadow 0.3s; }
.model-card.traditional { border-left-color: #e0e0e0; }
.model-card:hover { box-shadow: var(--shadow-lg); }
.model-card-tag { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 14px; display: flex; align-items: center; gap: 6px; }
.model-card-tag .material-icons { font-size: 15px; flex-shrink: 0; }
.model-card.traditional .model-card-tag { color: var(--text-muted); }
.model-card.flotatec .model-card-tag { color: var(--gold); }
.model-steps { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.model-step { display: flex; align-items: center; gap: 6px; }
.step-circle { width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.75rem; font-weight: 800; }
.traditional .step-circle { background: #f0f0f0; color: var(--text-muted); }
.flotatec .step-circle { background: var(--green-dark); color: var(--white); }
.step-arrow { color: #ccc; font-size: 0.7rem; }
.flotatec .step-arrow { color: var(--gold); }
.model-card-desc { font-size: 0.78rem; color: var(--text-muted); margin-top: 10px; }
.model-checks { margin-top: 20px; }
.model-check-item { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; color: var(--text-body); margin-bottom: 8px; }
.check-icon { width: 18px; height: 18px; border-radius: 50%; background: var(--green-bright); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.check-icon .material-icons { font-size: 13px; color: white; }
.why-icon .material-icons { font-size: 22px; color: var(--gold); }

/* ===== MODEL PROBLEM TEXT ===== */
.model-problem-tag { font-size: 1rem; font-weight: 300; letter-spacing: 0.15em; display: block; text-align: right; margin-bottom: 8px; }
.model-problem-title { font-size: clamp(2.2rem, 4.5vw, 3.5rem); text-transform: uppercase; text-align: right; line-height: 1.05; margin-bottom: 32px; }
.mpt-regular { font-weight: 400; color: var(--text-dark); }
.mpt-gold { font-weight: 800; color: var(--gold); }
.mpt-bold { font-weight: 800; color: var(--text-dark); }
.model-problem-body { font-size: 0.95rem; color: var(--text-body); line-height: 1.75; text-align: right; }

/* ===== DARK BAND ===== */
.dark-band { background: var(--dark); padding: 80px 64px; position: relative; overflow: hidden; text-align: center; }
.dark-band::before { content: ''; position: absolute; inset: 0; background-image: url('../images/foto_bombons.jpg'); background-size: cover; background-position: center; opacity: 0.4; }
.dark-band-title { font-size: clamp(2.5rem, 5vw, 4rem); color: var(--white); text-transform: uppercase; margin-bottom: 40px; position: relative; z-index: 1; }
.dark-band-title em { background: var(--gold); color: var(--dark); font-style: normal; padding: 4px 14px; border-radius: 8px; }
.dark-band-quote { font-size: clamp(0.9rem, 1.5vw, 1.1rem); font-weight: 300; font-style: italic; color: rgba(255,255,255,0.75); max-width: 560px; line-height: 1.8; margin: 0 auto; position: relative; z-index: 1; }

/* ===== DIFFERENTIATORS ===== */
.diff-section {
  padding: 96px 64px;
  background: var(--white);
}

.diff-header {
  max-width: 1200px;
  margin: 0 auto 56px;
}

.diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  max-width: 1200px;
  margin: 0 auto;
}

.diff-card {
  position: relative;
  overflow: hidden;
  padding: 40px 32px;
  margin: 0.2em;
  min-height: 240px;
  border-radius: 1.2em;
}

/* --- Tarjeta clara --- */
.diff-card--light {
  background: var(--off-white);
}

.diff-card--light .diff-img {
  display: none;
}

.diff-card--light .diff-title {
  color: var(--gold);
}

.diff-card--light .diff-desc {
  color: var(--text-body);
}

/* --- Tarjeta oscura --- */
.diff-card--dark {
  background: #1a1a1a;
}

.diff-card--dark .diff-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.45;
  z-index: 0;
}

.diff-card--dark .diff-num {
  color: var(--white);
}

.diff-card--dark .diff-title {
  color: var(--gold);
}

.diff-card--dark .diff-desc {
  color: rgba(255, 255, 255, 0.75);
}

/* --- Elementos comunes --- */
.diff-num {
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.diff-title {
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.diff-desc {
  font-size: 0.88rem;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

/* ===== PREVENTION CTA ===== */
.prev-cta { padding: 150px 64px;  position: relative; overflow: hidden; background: var(--dark)}
.prev-cta::before { content: ''; position: absolute; inset: 0; background-image: url('../images/mecanico_llave.jpg'); background-size: cover; background-position: center; opacity: 0.4; }
.prev-cta-inner { display: flex; align-items: center; justify-content: space-around; gap: 40px; max-width: 1200px; margin: 0 auto; position: relative; z-index: 1; }
.prev-cta-text h2 { font-size: clamp(2rem, 4vw, 3.2rem); text-transform: uppercase; margin-bottom: 8px; line-height: 1.15; }
.prev-cta-text p { color: rgba(255,255,255,0.65); font-size: 0.95rem; }
.prev-cta-years { display: flex; align-items: center;}
.years-num { font-size: 6rem; font-weight: 900; color: var(--white); line-height: 1; }
.years-label { font-size: 2rem; font-weight: 700; text-transform: uppercase; color: var(--off-white); line-height: 1.1;  }


/* ===== PAGE HERO ===== */
.page-hero { height: 35vh; min-height: 280px; position: relative; overflow: hidden; }
.page-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 1; }
.page-hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(0,0,0,0.10) 0%, rgba(0,0,0,0.60) 100%); z-index: 1; }
.page-hero-content { position: absolute; bottom: 48px; right: 64px; z-index: 2; display: flex; align-items: stretch; max-width: 600px; }

.page-hero-tagline {
  color: rgba(255,255,255,0.92);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  margin: 0;
  font-weight: 400;
  background: rgba(30,30,30,0.62);
  backdrop-filter: blur(6px);
  padding: 20px 24px;
  border-radius: 12px;
  text-align: right;
  position: relative;
}

.page-hero-tagline::after {
  content: '';
  position: absolute;
  right: 8px;
  top: 8px;
  bottom: 8px;
  width: 4px;
  background: linear-gradient(to bottom, var(--green-bright) 20%, var(--gold) 60%);
}
/* ===== SERVICES TABS ===== */
.services-section { padding: 96px 64px; background: var(--white); }
.tabs-nav { display: flex; gap: 4px; margin-bottom: 48px; border-bottom: 2px solid var(--gray-light); overflow-x: auto; scrollbar-width: none; }
.tabs-nav::-webkit-scrollbar { display: none; }
.tab-btn { font-size: 0.9rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; padding: 14px 24px; border: none; background: none; color: var(--text-muted); cursor: pointer; white-space: nowrap; position: relative; transition: color 0.3s; border-radius: var(--radius) var(--radius) 0 0; }
.tab-btn::after { content: ''; position: absolute; bottom: -2px; left: 0; right: 0; height: 2px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform 0.3s; }
.tab-btn:hover { color: var(--text-dark); background: var(--off-white); }
.tab-btn.active { color: var(--green-dark); }
.tab-btn.active::after { transform: scaleX(1); }
.tab-panel { display: none; animation: fadeIn 0.4s ease; }
.tab-panel.active { display: block; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.service-panel-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.service-panel-inner.reverse { direction: rtl; }
.service-panel-inner.reverse > * { direction: ltr; }
.service-img { border-radius: 8px; overflow: hidden; position: relative; }
.service-img img { width: 100%; height: 380px; object-fit: cover; transition: transform 0.6s ease; }
.service-img:hover img { transform: scale(1.04); }
.service-img-badge { position: absolute; bottom: 20px; left: 20px; background: var(--gold); color: var(--dark); font-size: 0.75rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; padding: 6px 14px; border-radius: var(--radius); }
.service-text h2 { font-size: clamp(2rem, 3.5vw, 2.8rem); text-transform: uppercase; color: var(--text-dark); margin-bottom: 16px; }
.service-text p { font-size: 0.95rem; color: var(--text-body); line-height: 1.75; margin-bottom: 24px; }
.service-checks { margin-bottom: 32px; }
.service-check { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 12px; font-size: 0.9rem; color: var(--text-body); }
.service-check .icon { width: 20px; height: 20px; border-radius: 50%; background: var(--green-dark); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 2px; }
.service-check .icon svg { width: 11px; height: 11px; stroke: white; fill: none; stroke-width: 2; }

/* ===== METHODOLOGY ===== */
.method-section { padding: 80px 64px; background: var(--off-white); }
.method-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; max-width: 1200px; margin: 48px auto 0; }
.method-step { padding: 32px 28px; border-right: 1px solid #ddd; position: relative; transition: background 0.3s; }
.method-step:last-child { border-right: none; }
.method-step:hover { background: var(--white); }
.method-step::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform 0.4s; }
.method-step:hover::before { transform: scaleX(1); }
.method-step-title { font-size: 1rem; font-weight: 800; text-transform: uppercase; color: var(--green-dark); margin-bottom: 10px; text-align: right; }
.method-step p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.65; text-align: right; }

/* ===== WHY US ===== */
.why-section { padding: 96px 64px; background: var(--white); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4px; max-width: 1200px; margin: 48px auto 0; }
.why-left { background: var(--green-dark); padding: 52px 48px; display: flex; flex-direction: column; justify-content: center; grid-row: span 2; }
.why-left h3 { font-size: clamp(1.8rem, 3vw, 2.6rem); color: var(--white); text-transform: uppercase; margin-bottom: 16px; }
.why-left h3 em { color: var(--gold-light); font-style: normal; }
.why-left p { color: rgba(255,255,255,0.7); font-size: 0.9rem; line-height: 1.7; }
.why-card { background: var(--off-white); padding: 36px 32px; display: flex; gap: 20px; align-items: flex-start; transition: background 0.3s, box-shadow 0.3s; }
.why-card:hover { background: var(--white); box-shadow: var(--shadow); }
.why-icon { width: 44px; height: 44px; border-radius: 6px; background: var(--green-dark); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.why-icon .material-icons { font-size: 22px; color: var(--gold); }
.why-card-title { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.why-card p { font-size: 0.85rem; color: var(--text-body); line-height: 1.65; }

/* ===== EXPERIENCE PAGE ===== */
.exp-intro { padding: 96px 64px; background: var(--white); }
.exp-intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; max-width: 1200px; margin: 0 auto; align-items: center; }

.nuevo-experiencia { display: grid; grid-template-columns: 0.5fr 4fr; gap: 12px; padding-bottom: 10px; }
.nuevo-experiencia img { width: 100%; height: 200px; object-fit: cover; border-radius: 6px; transition: transform 0.4s; }
.nuevo-experiencia img:hover { transform: scale(1.02); }

.nuevo-experiencia-abajo { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.nuevo-experiencia-abajo img { width: 100%; height: 200px; object-fit: cover; border-radius: 6px; transition: transform 0.4s; }
.nuevo-experiencia-abajo img:hover { transform: scale(1.02); }

.exp-applied { background: var(--green-dark); padding: 96px 64px; position: relative; overflow: hidden; }
.exp-applied::after { content: ''; position: absolute; left: -120px; bottom: -120px; width: 500px; height: 500px; border-radius: 50%; border: 1px solid rgba(200,160,32,0.15); pointer-events: none; }
.exp-applied-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; max-width: 1200px; margin: 0 auto; align-items: center; }
.exp-applied-img img { width: 100%; border-radius: 8px; object-fit: cover; }
.exp-method-title { font-size: 0.9rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin: 16px 0 ; }
.exp-checks { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.exp-check { display: flex; align-items: flex-start; gap: 10px; font-size: 0.85rem; color: rgba(255,255,255,0.8); }
.exp-check .icon { width: 18px; height: 18px; border-radius: 20%; background: var(--gold); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.exp-check .icon .material-icons { font-size: 12px; color: var(--dark); }
.exp-check .icon svg { width: 10px; height: 10px; stroke: var(--dark); fill: none; stroke-width: 2; }
.trajectory { padding: 80px 64px;  }
.traj-header { display: grid; grid-template-columns: auto 1fr; gap: 80px; max-width: 1200px; margin: 0 auto 48px; align-items: start; text-align: right; justify-items: center; }
.traj-title { font-size: clamp(2rem, 4vw, 3.2rem); }
.traj-title em { color: var(--green-bright); font-style: normal; }
.traj-sub { font-size: 0.9rem; color: var(--text-body); max-width: 320px; line-height: 1.65; }
.client-logos { display: flex; max-width: 1200px; margin: 0 auto; border: 1px solid #ddd; border-radius: 6px; overflow: hidden; }
.client-logo-item { flex: 1; padding: 28px 32px; display: flex; align-items: center; justify-content: center; border-right: 1px solid #ddd; transition: background 0.3s; background: var(--white); }
.client-logo-item:last-child { border-right: none; }
.client-logo-item:hover { background: var(--gray-light); }
.client-logo-item img { height: 36px; width: auto; object-fit: contain; }
.benefits-section { padding: 96px 64px; background: var(--white); }
.benefits-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; max-width: 1200px; margin: 0 auto; align-items: start; }
.benefits-list { display: flex; flex-direction: column; gap: 16px; padding-top: 55px; }
.benefits-text img { display: flex;   }

.benefit-item { display: flex; align-items: flex-start; gap: 16px; padding: 0px 24px; background: transparent; border-radius: 6px; border-left: none; transition: background 0.3s; }
.benefit-item:hover { background: var(--off-white); }
.benefit-dot { width: 22px; height: 22px; border-radius: 20%; background: var(--gold); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.benefit-dot .material-icons { font-size: 13px; color: white; }
.benefit-dot svg { width: 11px; height: 11px; stroke: white; fill: none; stroke-width: 2; }
.benefit-item p { font-size: 0.9rem; color: var(--text-body); line-height: 1.6; }
.team-section { padding: 0; overflow: hidden; }
.team-section img { width: 100%; height: 480px; object-fit: cover; object-position: center top; }

/* ── SECCIÓN PRINCIPAL ── */
.exp-applied-experiencia {
  position: relative;
  overflow: visible; /* ⬅️ permite que la foto sobresalga */
  min-height: 450px;
}

/* ── FONDO ── */
.exp-applied-bg-experiencia {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

/* ── OVERLAY OSCURO ── */
.exp-applied-overlay-experiencia {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: 1;
}

/* ── INNER: 2 COLUMNAS ── */
.exp-applied-inner-experiencia {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 380px 1fr; /* foto | texto */
  align-items: end;
  min-height: 450px;
}

/* ── COLUMNA PERSONA ── */
.exp-applied-person-experiencia {
  position: relative;
  align-self: stretch;
}

.exp-applied-person-experiencia img {
  position: absolute;
  bottom: 0;          /* anclada al piso */
  left: 0;
  height: 115%;       /* sobresale hacia arriba ⬆️ */
  width: auto;
  object-fit: contain;
  object-position: bottom;
  display: block;
}

/* ── COLUMNA TEXTO ── */
.exp-applied-text-experiencia {
  padding: 50px 40px 50px 20px;
  color: white;
}


@media (max-width: 1024px) {
  .exp-applied-experiencia { padding: 80px 32px; }
  .exp-applied-inner-experiencia { grid-template-columns: 300px 1fr; } /* ⬅️ achica la columna de la foto */
  .exp-applied-person-experiencia { margin-left: 0; }
}

.nuevo-experiencia img:first-child { width: 40%  !important; margin: auto;}
@media (max-width: 768px) {
  .exp-applied-experiencia { padding: 60px 24px; min-height: unset; }
  .exp-applied-inner-experiencia { grid-template-columns: 1fr; } /* ⬅️ una columna */
  .exp-applied-person-experiencia { display: none; }
  .exp-applied-text-experiencia { text-align: left; }
  .nuevo-experiencia img:first-child { height: 150px; margin: auto; }
}


/* ===== CONTACT PAGE ===== */
.contact-section { padding: 96px 64px; background: var(--white); }

.contact-grid { display: grid; grid-template-columns: 2fr 3fr; gap: 80px; max-width: 1200px; margin: 0 auto; }

.contact-info { background: var(--green-dark); padding: 48px 40px; border-radius: 8px; }
.contact-info h2 { font-size: clamp(2rem, 3.5vw, 3rem); text-transform: uppercase; margin-bottom: 16px; color: var(--white); }
.contact-info h2 em { color: var(--gold); font-style: italic; }
.contact-info > p { font-size: 0.95rem; color: rgba(255,255,255,0.75); line-height: 1.75; margin-bottom: 40px; text-align: center; }


.contact-cards { display: flex; flex-direction: column; gap: 16px; }
.contact-card { display: flex; align-items: flex-start; gap: 16px; padding: 20px 24px; background: var(--green-dark); border-radius: 6px; cursor: pointer; transition: filter 0.3s; }
.contact-card:hover { filter: brightness(1.15); }
.contact-card-icon { width: 40px; height: 40px; border-radius: 6px; background: rgba(200,160,32,0.15); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-card-icon .material-icons { font-size: 20px; color: var(--gold); }
.contact-card-title { font-size: 0.9rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.contact-card-sub { font-size: 0.82rem; color: rgba(255,255,255,0.65); line-height: 1.5; }
.contact-form-wrap { display: grid; align-items: center;}
.contact-form-wrap h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); text-transform: uppercase; color: var(--text-dark); margin-bottom: 8px; }
.contact-form-wrap > p { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 32px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px; }
.form-label { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-dark); }
.form-label span { color: var(--gold); }
.form-input, .form-select, .form-textarea { padding: 13px 16px; border: 1.5px solid var(--gray-light); border-radius: var(--radius); font-family: 'Barlow Condensed', sans-serif; font-size: 0.9rem; color: var(--text-dark); background: var(--white); transition: border-color 0.3s, box-shadow 0.3s; outline: none; -webkit-appearance: none; }
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--green-dark); box-shadow: 0 0 0 3px rgba(30,74,42,0.1); }
.form-input::placeholder, .form-textarea::placeholder { color: #bbb; }
.form-select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' fill='none' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; cursor: pointer; }
.form-textarea { resize: vertical; min-height: 130px; }
.form-submit { width: 100%; margin-top: 8px;justify-content: center; }
.form-success { display: none; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 2.5rem 1rem; gap: 16px; }
.form-success.show { display: flex; }
.success-circle { width: 64px; height: 64px; border-radius: 50%; background: #e8f5e9; border: 1.5px solid #a5d6a7; display: flex; align-items: center; justify-content: center; font-size: 28px; color: var(--green-dark); }
.success-title { font-size: 1.2rem; font-weight: 700; color: var(--text-dark); }
.success-sub { font-size: 0.9rem; color: var(--text-muted); max-width: 360px; line-height: 1.6; }
.btn-outline-dark { display: inline-block; margin-top: 8px; padding: 10px 24px; background: transparent; border: 1.5px solid var(--gray-light); border-radius: var(--radius); font-size: 0.85rem; font-weight: 600; color: var(--text-dark); cursor: pointer; font-family: 'Barlow Condensed', sans-serif; transition: background 0.2s; }
.btn-outline-dark:hover { background: var(--off-white); }

/* ── Validación de campos ── */
.field-footer { display: flex; justify-content: space-between; align-items: flex-start; min-height: 18px; margin-top: 4px; }
.error-msg { font-size: 0.7rem; color: #e24b4a; display: none; }
.error-msg.visible { display: block; }
.char-count { font-size: 0.7rem; color: var(--text-muted); margin-left: auto; white-space: nowrap; }
.char-count.warn { color: #ba7517; }
.char-count.over { color: #e24b4a; font-weight: 600; }
.form-input.error, .form-select.error, .form-textarea.error { border-color: #e24b4a; box-shadow: 0 0 0 3px rgba(226,75,74,0.12); }
.form-input.valid, .form-select.valid, .form-textarea.valid { border-color: var(--green-dark); box-shadow: 0 0 0 3px rgba(30,74,42,0.1); }

/* ── Toast ── */
.toast-notif { position: fixed; bottom: 32px; left: 50%; transform: translateX(-50%) translateY(20px); display: flex; align-items: center; gap: 12px; padding: 14px 20px; border-radius: 10px; font-size: 0.9rem; font-weight: 500; opacity: 0; pointer-events: none; transition: opacity 0.3s, transform 0.3s; white-space: nowrap; z-index: 9999; box-shadow: 0 8px 24px rgba(0,0,0,0.12); }
.toast-notif.show { opacity: 1; transform: translateX(-50%) translateY(0); pointer-events: auto; }
.toast-notif.success { background: var(--green-dark); color: var(--white); }
.toast-notif.fail { background: #fff0f0; color: #a32d2d; border: 1px solid #f7c1c1; }
.toast-notif .toast-icon { width: 22px; height: 22px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 13px; flex-shrink: 0; }
.toast-notif.success .toast-icon { background: rgba(255,255,255,0.2); }
.toast-notif.fail .toast-icon { background: #ffd5d5; color: #a32d2d; }

/* ===== OPTIMIZE CTA ===== */
.optimize-cta {
  background: #d6e8e0;
  overflow: hidden;
}
.optimize-cta-inner {
  display: flex;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.optimize-cta-truck-wrap {
  flex: 0 0 45%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}
.optimize-cta-truck {
  width: 100%;
  max-width: 420px;
  display: block;
}
.optimize-cta-content {
  flex: 0 0 55%;
  padding: 80px 64px 80px 0px;
  text-align: center;
}
.optimize-cta h2 {

    font-size: clamp(1.4rem, 3vw, 2.8rem);
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: 16px;
  line-height: 1.2;
}
.optimize-cta p {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 460px;
  margin: 0 auto 32px;
}

@media (max-width: 768px) {
  .optimize-cta-inner {
    flex-direction: column;
  }
  .optimize-cta-truck-wrap {
    flex: unset;
    width: 100%;
  }
  .optimize-cta-truck {
    max-width: 280px;
    margin: 0 auto;
  }
  .optimize-cta-content {
    flex: unset;
    width: 100%;
    padding: 32px 24px 64px;
  }
}

/* ===== FOOTER ===== */
.footer { background: var(--dark); padding: 56px 64px 32px; }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; max-width: 1200px; margin: 0 auto 48px; }
.footer-brand img { height: 32px; margin-bottom: 20px; }
.footer-brand p { font-size: 0.8rem; color: rgba(255,255,255,0.4); line-height: 1.7; max-width: 280px; text-transform: uppercase; letter-spacing: 0.04em; }
.footer-contact-title { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; }
.footer-contact-item { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; color: rgba(255,255,255,0.6); font-size: 0.85rem; transition: color 0.3s; cursor: pointer; }
.footer-contact-item:hover { color: var(--white); }
.footer-contact-item .material-icons { font-size: 16px; color: var(--gold); flex-shrink: 0; }
.footer-divider { height: 1px; background: rgba(255,255,255,0.08); max-width: 1200px; margin: 0 auto 24px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; max-width: 1200px; margin: 0 auto; }
.footer-copy { font-size: 0.75rem; color: rgba(255,255,255,0.3); letter-spacing: 0.05em; }

/* ===== ANIMATE ON SCROLL ===== */
.aos { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.aos.visible { opacity: 1; transform: translateY(0); }
.aos-delay-1 { transition-delay: 0.1s; }
.aos-delay-2 { transition-delay: 0.2s; }
.aos-delay-3 { transition-delay: 0.3s; }
.aos-delay-4 { transition-delay: 0.4s; }
.aos-delay-5 { transition-delay: 0.5s; }


.contact-form-wrap.aos {
  opacity: 1 !important;
  transform: translateY(0) !important;
}
/* ===== COUNTER ANIMATION ===== */
.count-up { display: inline-block; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .section, .dark-band, .diff-section, .prev-cta,
  .services-section, .method-section, .why-section,
  .exp-intro, .exp-applied, .trajectory, .benefits-section,
  .contact-section, .optimize-cta, .stats-section,
  .model-section, .footer { padding-left: 32px; padding-right: 32px; }
  .page-hero-content { right: 0; left: 16px; bottom: 32px; max-width: 100%; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-right: 1px solid var(--gray-light); }
  .exp-intro-grid, .exp-applied-grid,
  .benefits-grid, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .model-grid { display: flex; flex-direction: column-reverse; gap: 48px; }
  .diff-grid { grid-template-columns: repeat(2, 1fr); }
  .method-steps { grid-template-columns: repeat(2, 1fr); }
  .method-step:nth-child(2) { border-right: none; }
  .prev-cta-inner { flex-direction: column; text-align: center; }
  .why-grid { grid-template-columns: 1fr; }
  .why-left { grid-row: auto; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .service-panel-inner { grid-template-columns: 1fr; gap: 32px; }
  .service-panel-inner.reverse { direction: ltr; }
  .exp-checks { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .navbar { top: 10px; width: calc(100% - 24px); padding: 0 16px; border-radius: 28px; }
  .nav-links { display: none; position: fixed; top: 80px; left: 12px; right: 12px; background: var(--green-dark); border-radius: 12px; padding: 12px; flex-direction: column; gap: 0; box-shadow: 0 8px 32px rgba(0,0,0,0.4); }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 14px 16px; border-bottom: 1px solid rgba(255,255,255,0.06); width: 100%; border-radius: 0; }
  .nav-links a::after { display: none; }
  .nav-links a:last-child { border-bottom: none; }
  .nav-cta { margin-top: 8px !important; border-radius: 8px !important; text-align: center; }
  .hamburger { display: flex; }
  .hero-content { right: 0; left: 0; padding: 0 20px; text-align: left; bottom: 80px; max-width: 100%; }
  .hero-title { font-size: 2.8rem; text-align: right; }
  .hero-subtitle-box { text-align: left; width: 100%; }
  .hero-line { display: none; }
  .diff-grid { grid-template-columns: 1fr; }
  .method-steps { grid-template-columns: 1fr; }
  .method-step { border-right: none; border-bottom: 1px solid #ddd; }
  .method-step:last-child { border-bottom: none; }
  .client-logos { flex-direction: column; }
  .client-logo-item { border-right: none; border-bottom: 1px solid #ddd; }
  .client-logo-item:last-child { border-bottom: none; }
  .form-row { grid-template-columns: 1fr; }
  .traj-header { grid-template-columns: 1fr; gap: 24px; }
  .benefits-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .page-hero-content { right: 12px; left: auto; bottom: 28px; max-width: calc(100% - 24px); }
.page-hero-tagline { font-size: 0.9rem; padding: 14px 18px; }
.specialists-section { padding: 40px 20px 20px; }
  .specialists-header { flex-direction: column; text-align: center; }
  .specialists-title h2 { white-space: normal; }
  .specialists-truck img { height: 130px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}