/* ================================================================
   IMPULSOCORP EMPRESARIAL — styles.css
   Paleta: Azul oscuro (#0d2240), Verde (#1db954), Blanco, Gris
   Tipografía: Montserrat (títulos) + Lato (cuerpo)
================================================================ */

/* ---------------------------------------------------------------
   1. VARIABLES & RESET
--------------------------------------------------------------- */
:root {
  --navy: #0d2240;
  --navy-light: #1a3a6b;
  --navy-deep: #07131f;
  --green: #1db954;
  --green-dark: #15963f;
  --green-light: #4ade80;
  --white: #ffffff;
  --gray-bg: #f4f6f9;
  --gray-mid: #8a9ab5;
  --gray-dark: #3a4a60;
  --text: #1e2e45;
  --shadow-sm: 0 4px 16px rgba(13, 34, 64, 0.09);
  --shadow-md: 0 8px 36px rgba(13, 34, 64, 0.13);
  --shadow-lg: 0 20px 60px rgba(13, 34, 64, 0.18);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --transition: all 0.35s cubic-bezier(.4, 0, .2, 1);
}

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

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

body {
  padding-top: 130px;
  font-family: 'Lato', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: 'Montserrat', sans-serif;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

/* ---------------------------------------------------------------
   2. UTILITIES
--------------------------------------------------------------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.section-light {
  background: var(--white);
  padding: 90px 5vw;
}

.section-dark {
  background: linear-gradient(135deg, var(--navy) 0%, #0c2e18 100%);
  padding: 90px 5vw;
}

.section-gray {
  background: var(--gray-bg);
  padding: 90px 5vw;
}

.section-header {
  margin-bottom: 58px;
}

.section-header.center {
  text-align: center;
}

.section-header.center .section-sub {
  margin: 0 auto;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(29, 185, 84, 0.1);
  border: 1px solid rgba(29, 185, 84, 0.28);
  color: var(--green);
  font-family: 'Montserrat', sans-serif;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 40px;
  margin-bottom: 14px;
}

.tag-light {
  background: rgba(29, 185, 84, 0.18);
  border-color: rgba(29, 185, 84, 0.45);
}

.section-title {
  font-size: clamp(26px, 3.5vw, 44px);
  font-weight: 900;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 16px;
}

.section-title.light {
  color: var(--white);
}

.section-title em {
  font-style: normal;
  color: var(--green);
}

.section-sub {
  color: var(--gray-mid);
  font-size: clamp(15px, 1.3vw, 17px);
  max-width: 600px;
  line-height: 1.75;
}

.section-sub.light {
  color: rgba(255, 255, 255, 0.68);
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ---------------------------------------------------------------
   3. BUTTONS
--------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 14px;
  padding: 14px 26px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  border: none;
  text-decoration: none;
}

.btn-green {
  background: var(--green);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(29, 185, 84, 0.35);
}

.btn-green:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(29, 185, 84, 0.5);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.35);
}

.btn-outline:hover {
  border-color: var(--green);
  color: var(--green);
  transform: translateY(-2px);
}

.btn-green-outline {
  background: transparent;
  color: var(--green-light);
  border: 2px solid rgba(29, 185, 84, 0.55);
  padding: 12px 22px;
}

.btn-green-outline:hover {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--green-dark);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.18);
}

.btn-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.25);
}

.btn-white-small {
  display: inline-flex;
  align-items: center;
  background: var(--white);
  color: var(--navy);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 13px;
  padding: 10px 20px;
  border-radius: 8px;
  white-space: nowrap;
  transition: var(--transition);
  flex-shrink: 0;
}

.btn-white-small:hover {
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2.5px solid rgba(255, 255, 255, 0.55);
  padding: 14px 26px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 14px;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  gap: 9px;
  transition: var(--transition);
}

.btn-outline-white:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}

/* ---------------------------------------------------------------
   4. NAVBAR
--------------------------------------------------------------- */
#mainNav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(13, 34, 64, 0.97);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 2px 24px rgba(13, 34, 64, 0.3);
  transition: var(--transition);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5vw;
  height: 100 px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 11px;
  flex-shrink: 0;
}

.nav-logo-emblem {
  width: 150px;
  height: 150px;
  object-fit: contain;
  background: linear-gradient(135deg, var(--green) 30%, var(--navy-light) 100%);

  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 16px;
  color: var(--white);
  overflow: visible;
}

.nav-logo-text {
  line-height: 1.1;
}

.brand-name {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 14.5px;
  color: var(--white);
  letter-spacing: 1.5px;
}

.brand-sub {
  display: block;
  font-size: 9.5px;
  color: var(--green);
  letter-spacing: 2.5px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 26px;
  list-style: none;
  flex: 1;
  justify-content: center;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2px;
  transition: var(--transition);
  position: relative;
  padding-bottom: 3px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--green);
  transform: scaleX(0);
  transition: var(--transition);
}

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

.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-cta {
  background: var(--green);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 12.5px;
  padding: 9px 18px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: var(--transition);
  flex-shrink: 0;
}

.nav-cta:hover {
  background: var(--green-dark);
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 68px;
  left: 0;
  right: 0;
  background: var(--navy);
  z-index: 999;
  padding: 16px 5vw 24px;
  flex-direction: column;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.mobile-menu.open {
  display: flex;
}

.mobile-link {
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  font-weight: 500;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  transition: var(--transition);
}

.mobile-link:hover {
  color: var(--green);
  padding-left: 6px;
}

.mobile-link.wa-link {
  color: #25d366;
  font-weight: 700;
  margin-top: 10px;
  border-bottom: none;
}

/* ---------------------------------------------------------------
   5. HERO
--------------------------------------------------------------- */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #081624 0%, #0d2240 50%, #0a2515 100%);
  display: flex;
  align-items: center;
  padding: 100px 5vw 70px;
  position: relative;
  overflow: hidden;
}

/* Background decorative shapes */
.hero-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.shape {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(29, 185, 84, 0.07) 0%, transparent 70%);
}

.shape-1 {
  width: 700px;
  height: 700px;
  top: -200px;
  right: -150px;
}

.shape-2 {
  width: 500px;
  height: 500px;
  bottom: -200px;
  left: -100px;
  background: radial-gradient(circle, rgba(26, 58, 107, 0.3) 0%, transparent 70%);
}

.shape-3 {
  width: 300px;
  height: 300px;
  top: 40%;
  right: 10%;
  background: radial-gradient(circle, rgba(29, 185, 84, 0.05) 0%, transparent 70%);
}

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

/* Hero left */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(29, 185, 84, 0.14);
  border: 1px solid rgba(29, 185, 84, 0.35);
  padding: 6px 16px;
  border-radius: 40px;
  margin-bottom: 22px;
  animation: fadeUp 0.7s ease both;
}

.hero-badge i {
  color: var(--green);
  font-size: 12px;
}

.hero-badge span {
  color: var(--green);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.hero-title {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 16px;
  animation: fadeUp 0.8s ease 0.1s both;
}

.hero-title em {
  font-style: normal;
  color: var(--green);
}

.hero-impulso {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(18px, 2.5vw, 30px);
  font-weight: 900;
  background: linear-gradient(90deg, var(--green), var(--green-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-bottom: 18px;
  animation: fadeUp 0.8s ease 0.2s both;
}

.hero-sub {
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(15px, 1.4vw, 17.5px);
  line-height: 1.75;
  margin-bottom: 34px;
  animation: fadeUp 0.8s ease 0.3s both;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  animation: fadeUp 0.8s ease 0.4s both;
}

.hero-trust-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 32px;
  animation: fadeUp 0.8s ease 0.5s both;
}

.trust-chip {
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.8);
  font-size: 12.5px;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 40px;
}

.trust-chip i {
  color: var(--green);
  font-size: 11px;
}

/* Hero right: card */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  animation: fadeLeft 1s ease 0.3s both;
}

.hero-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  width: 100%;
  max-width: 420px;
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--green-light));
}

.hero-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-card-header>i {
  font-size: 22px;
  color: var(--green);
  flex-shrink: 0;
}

.hero-card-header strong {
  display: block;
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
}

.hero-card-header span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  margin-left: auto;
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(29, 185, 84, 0.25);
  animation: pulse-dot 2s infinite;
}

/* Video Hero */
.hero-video-wrap {
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  box-shadow: 0 8px 36px rgba(0, 0, 0, 0.45);
  margin-bottom: 18px;
  border: 1px solid rgba(29, 185, 84, 0.25);
}

.hero-video-wrap iframe {
  width: 100%;
  height: 100%;
  display: block;
}

.hero-checklist {
  margin-bottom: 22px;
}

.hcheck {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.hcheck:last-child {
  border-bottom: none;
}

.hcheck i {
  color: var(--green);
  font-size: 13px;
  flex-shrink: 0;
}

.hcheck span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 13.5px;
}

.hero-card-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: 100%;
  background: var(--green);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 14px;
  padding: 13px;
  border-radius: 10px;
  transition: var(--transition);
}

.hero-card-cta:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
}

/* Floating pills */
.floating-pill {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 7px;
  background: var(--navy);
  border: 1px solid rgba(29, 185, 84, 0.3);
  color: rgba(255, 255, 255, 0.85);
  font-size: 12px;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 40px;
  white-space: nowrap;
  box-shadow: var(--shadow-md);
  animation: float 4s ease-in-out infinite;
}


/* ---------------------------------------------------------------
   6. NÓMINA SECTION
--------------------------------------------------------------- */
.nomina-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.nomina-features {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.nomina-feature-item {
  display: flex;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(13, 34, 64, 0.07);
  transition: var(--transition);
}

.nomina-feature-item:last-child {
  border-bottom: none;
}

.nomina-feature-item:hover {
  padding-left: 8px;
}

.nf-icon {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(29, 185, 84, 0.12), rgba(29, 185, 84, 0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.nf-icon i {
  color: var(--green);
  font-size: 20px;
}

.nomina-feature-item:hover .nf-icon {
  background: var(--green);
}

.nomina-feature-item:hover .nf-icon i {
  color: var(--white);
}

.nf-text h4 {
  font-size: 15.5px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 6px;
}

.nf-text p {
  color: var(--gray-mid);
  font-size: 13.5px;
  line-height: 1.65;
}

/* Nómina process card */
.nomina-card-wrap {
  position: sticky;
  top: 88px;
}

.nomina-process-card {
  background: linear-gradient(145deg, var(--navy), var(--navy-light));
  border-radius: var(--radius-md);
  padding: 32px 28px;
  box-shadow: var(--shadow-lg);
}

.nomina-process-card h3 {
  color: var(--white);
  font-size: 17px;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 26px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nomina-process-card h3 i {
  color: var(--green);
}

.nomina-steps {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 26px;
}

.ns {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: var(--transition);
}

.ns:last-child {
  border-bottom: none;
}

.ns:hover {
  padding-left: 6px;
}

.ns-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 13px;
  color: var(--white);
  flex-shrink: 0;
}

.ns-content strong {
  display: block;
  color: var(--white);
  font-size: 13.5px;
  font-weight: 700;
  margin-bottom: 3px;
}

.ns-content span {
  color: rgba(255, 255, 255, 0.55);
  font-size: 12.5px;
}

/* ---------------------------------------------------------------
   7. SEGURIDAD SOCIAL SECTION
--------------------------------------------------------------- */
.ss-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.ss-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  transition: var(--transition);
}

.ss-card:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(29, 185, 84, 0.35);
  transform: translateY(-5px);
}

.ss-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: rgba(29, 185, 84, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.ss-icon i {
  color: var(--green-light);
  font-size: 22px;
}

.ss-card h4 {
  color: var(--white);
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 10px;
}

.ss-card p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 13.5px;
  line-height: 1.65;
  margin-bottom: 16px;
}

.ss-list {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.ss-list li {
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
}

.ss-list li i {
  color: var(--green);
  font-size: 10px;
}

/* Highlighted PILA card */
.ss-highlight {
  background: rgba(29, 185, 84, 0.12);
  border-color: rgba(29, 185, 84, 0.4);
}

.ss-icon-light {
  background: rgba(29, 185, 84, 0.25);
}

.ss-list-light li {
  color: rgba(255, 255, 255, 0.78);
}

/* CTA card */
.ss-cta-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  background: rgba(255, 255, 255, 0.03);
  border-style: dashed;
}

.ss-big-icon {
  font-size: 40px;
  color: rgba(29, 185, 84, 0.45);
  margin-bottom: 14px;
}

.ss-cta-card h4 {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 12px;
}

.ss-cta-card p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 13.5px;
  line-height: 1.6;
  margin-bottom: 20px;
}

/* PILA warning bar */
.pila-bar {
  display: flex;
  align-items: center;
  gap: 20px;
  background: rgba(29, 185, 84, 0.12);
  border: 1px solid rgba(29, 185, 84, 0.35);
  border-radius: var(--radius-md);
  padding: 22px 28px;
  margin-top: 36px;
  flex-wrap: wrap;
}

.pila-bar-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(245, 158, 11, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pila-bar-icon i {
  color: #f59e0b;
  font-size: 22px;
}

.pila-bar-text {
  flex: 1;
  min-width: 200px;
}

.pila-bar-text strong {
  display: block;
  color: var(--white);
  font-size: 14.5px;
  font-weight: 700;
  margin-bottom: 4px;
}

.pila-bar-text span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
}

/* ---------------------------------------------------------------
   8. OTHER SERVICES
--------------------------------------------------------------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.service-card {
  background: var(--white);
  border: 1px solid rgba(13, 34, 64, 0.07);
  border-radius: var(--radius-md);
  padding: 34px 28px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green), var(--green-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 58px;
  height: 58px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(29, 185, 84, 0.12), rgba(29, 185, 84, 0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: var(--transition);
}

.service-icon i {
  color: var(--green);
  font-size: 22px;
}

.service-card:hover .service-icon {
  background: var(--green);
}

.service-card:hover .service-icon i {
  color: var(--white);
}

.service-card h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
}

.service-card p {
  color: var(--gray-mid);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.svc-list {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.svc-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gray-dark);
  font-size: 13.5px;
}

.svc-list li i {
  color: var(--green);
  font-size: 11px;
}

/* ---------------------------------------------------------------
   9. BENEFITS
--------------------------------------------------------------- */
.benefits-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.benefit-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(13, 34, 64, 0.06);
  transition: var(--transition);
}

.benefit-row:last-child {
  border-bottom: none;
}

.benefit-row:hover {
  padding-left: 8px;
}

.br-icon {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  border-radius: 12px;
  background: rgba(29, 185, 84, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.br-icon i {
  color: var(--green);
  font-size: 18px;
}

.benefit-row:hover .br-icon {
  background: var(--green);
}

.benefit-row:hover .br-icon i {
  color: var(--white);
}

.benefit-row h4 {
  font-size: 15px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 5px;
}

.benefit-row p {
  color: var(--gray-mid);
  font-size: 13.5px;
  line-height: 1.6;
}

/* Metrics card */
.metrics-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(13, 34, 64, 0.06);
  margin-bottom: 20px;
}

.metrics-card h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 24px;
}

.metric-item {
  margin-bottom: 18px;
}

.metric-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.metric-label span {
  color: var(--gray-dark);
  font-size: 13.5px;
}

.metric-label strong {
  color: var(--green);
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 15px;
}

.metric-bar {
  height: 8px;
  background: rgba(13, 34, 64, 0.08);
  border-radius: 40px;
  overflow: hidden;
}

.metric-fill {
  height: 100%;
  width: var(--w);
  background: linear-gradient(90deg, var(--green), var(--green-light));
  border-radius: 40px;
  animation: growBar 1.5s ease forwards;
  transform-origin: left;
}

.impulso-quote-box {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: var(--radius-md);
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
}

.iq-icon {
  color: rgba(29, 185, 84, 0.25);
  font-size: 48px;
  line-height: 1;
  margin-bottom: 12px;
}

.impulso-quote-box p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 12px;
}

.impulso-quote-box strong {
  color: var(--green);
  font-family: 'Montserrat', sans-serif;
}

.impulso-quote-box span {
  color: rgba(255, 255, 255, 0.4);
  font-size: 12px;
}

/* ---------------------------------------------------------------
   10. PROCESS
--------------------------------------------------------------- */
.process-track {
  position: relative;
  margin-bottom: 48px;
}

.process-line {
  position: absolute;
  left: 39px;
  top: 40px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--green), rgba(29, 185, 84, 0.1));
}

.process-step {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 0 0 40px 0;
}

.process-step:last-child {
  padding-bottom: 0;
}

.ps-num {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border: 3px solid var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(13, 34, 64, 0.2);
  transition: var(--transition);
  position: relative;
  z-index: 1;
}

.ps-num i {
  color: var(--green);
  font-size: 26px;
}

.process-step:hover .ps-num {
  background: var(--green);
  box-shadow: 0 8px 28px rgba(29, 185, 84, 0.4);
}

.process-step:hover .ps-num i {
  color: var(--white);
}

.ps-body {
  padding-top: 14px;
}

.ps-tag {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--green);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.ps-body h3 {
  font-size: 18px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}

.ps-body p {
  color: var(--gray-mid);
  font-size: 14px;
  line-height: 1.7;
  max-width: 500px;
}

.process-cta {
  text-align: center;
}

/* ---------------------------------------------------------------
   11. TESTIMONIALS
--------------------------------------------------------------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.t-card {
  background: var(--white);
  border: 1px solid rgba(13, 34, 64, 0.06);
  border-radius: var(--radius-md);
  padding: 30px 26px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.t-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(29, 185, 84, 0.2);
}

.t-stars {
  color: #f59e0b;
  font-size: 15px;
  letter-spacing: 3px;
  margin-bottom: 16px;
}

.t-text {
  color: #5a6a7a;
  font-size: 14.5px;
  line-height: 1.78;
  font-style: italic;
  margin-bottom: 22px;
}

.t-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.t-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 16px;
  color: var(--green);
  flex-shrink: 0;
}

.t-author strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
}

.t-author span {
  font-size: 12px;
  color: var(--gray-mid);
}

/* ---------------------------------------------------------------
   12. FAQ
--------------------------------------------------------------- */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 960px;
  margin: 0 auto;
}

.faq-item {
  background: var(--white);
  border: 1.5px solid rgba(13, 34, 64, 0.08);
  border-radius: var(--radius-sm);
  padding: 22px 24px;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.faq-item:hover {
  border-color: rgba(29, 185, 84, 0.3);
}

.faq-item.open {
  border-color: var(--green);
}

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--navy);
}

.faq-q i {
  color: var(--green);
  font-size: 13px;
  flex-shrink: 0;
  transition: var(--transition);
}

.faq-item.open .faq-q i {
  transform: rotate(180deg);
}

.faq-a {
  display: none;
  color: var(--gray-dark);
  font-size: 13.5px;
  line-height: 1.72;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(13, 34, 64, 0.07);
}

.faq-item.open .faq-a {
  display: block;
}

/* ---------------------------------------------------------------
   13. ABOUT
--------------------------------------------------------------- */
.about-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.about-desc {
  color: rgba(255, 255, 255, 0.72);
  font-size: 15.5px;
  line-height: 1.8;
}

.about-vision {
  display: flex;
  gap: 16px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  padding: 22px 20px;
  margin-top: 28px;
  margin-bottom: 22px;
}

.about-vision>i {
  color: var(--green);
  font-size: 24px;
  flex-shrink: 0;
  margin-top: 2px;
}

.about-vision strong {
  display: block;
  color: var(--green);
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 6px;
}

.about-vision p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  line-height: 1.7;
}

.brand-statement {
  background: rgba(29, 185, 84, 0.12);
  border-left: 4px solid var(--green);
  border-radius: 0 12px 12px 0;
  padding: 18px 20px;
}

.brand-statement p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  line-height: 1.65;
}

.brand-statement strong {
  color: var(--green);
  font-family: 'Montserrat', sans-serif;
}

/* Values card */
.values-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 32px 28px;
}

.values-card h3 {
  color: var(--white);
  font-size: 19px;
  font-weight: 800;
  margin-bottom: 24px;
}

.value-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  transition: var(--transition);
}

.value-item:last-child {
  border-bottom: none;
}

.value-item:hover {
  padding-left: 6px;
}

.v-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 11px;
  background: rgba(29, 185, 84, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}

.v-icon i {
  color: var(--green);
  font-size: 17px;
}

.value-item strong {
  display: block;
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
}

.value-item span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  line-height: 1.6;
}

/* ---------------------------------------------------------------
   14. CONTACT
--------------------------------------------------------------- */
.contact-section {
  background: linear-gradient(135deg, var(--navy) 0%, #0c2e18 100%);
  padding: 90px 5vw;
}

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 14px;
  padding: 18px 20px;
  text-decoration: none;
  transition: var(--transition);
}

a.contact-card:hover {
  background: rgba(29, 185, 84, 0.15);
  border-color: rgba(29, 185, 84, 0.4);
  transform: translateX(5px);
}

.contact-card.no-hover {
  cursor: default;
}

.cc-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 12px;
  background: rgba(29, 185, 84, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cc-icon i {
  font-size: 20px;
  color: var(--green);
}

.contact-card strong {
  display: block;
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
}

.contact-card span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
}

.social-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(29, 185, 84, 0.1);
  border: 1px solid rgba(29, 185, 84, 0.25);
  border-radius: 14px;
  padding: 16px 20px;
}

.social-row p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 13.5px;
}

.social-icons {
  display: flex;
  gap: 8px;
}

.soc {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  transition: var(--transition);
}

.soc:hover {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
}

.soc.wa:hover {
  background: #25d366;
  border-color: #25d366;
  color: var(--white);
}

/* Contact Form */
.contact-form-box {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 38px 34px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.contact-form-box h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 26px;
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-field {
  margin-bottom: 16px;
}

.form-field label {
  display: block;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--gray-dark);
  letter-spacing: 0.3px;
  margin-bottom: 6px;
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: 12px 15px;
  border: 1.5px solid #e2e8f0;
  border-radius: var(--radius-sm);
  font-family: 'Lato', sans-serif;
  font-size: 14px;
  color: var(--text);
  background: #f9fafb;
  transition: var(--transition);
  outline: none;
  appearance: none;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-color: var(--green);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(29, 185, 84, 0.1);
}

.form-field textarea {
  resize: vertical;
  min-height: 100px;
}

.btn-submit {
  width: 100%;
  background: var(--green);
  color: var(--white);
  border: none;
  padding: 15px;
  border-radius: var(--radius-sm);
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: var(--transition);
  margin-top: 4px;
}

.btn-submit:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(29, 185, 84, 0.4);
}

/* ---------------------------------------------------------------
   15. FINAL CTA
--------------------------------------------------------------- */
.final-cta {
  background: linear-gradient(135deg, #0e7d32 0%, var(--green-dark) 50%, #0a6228 100%);
  padding: 90px 5vw;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(255, 255, 255, 0.06) 0%, transparent 70%);
}

.final-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
}

.final-cta h2 {
  font-size: clamp(24px, 4vw, 48px);
  font-weight: 900;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.2;
  margin-bottom: 14px;
}

.final-cta h2 span {
  color: var(--white);
}

.big-impulso {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(26px, 5vw, 60px);
  font-weight: 900;
  color: var(--white);
  margin: 10px auto 34px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
  letter-spacing: -1px;
}

.final-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------------------------------------------------------------
   16. FOOTER
--------------------------------------------------------------- */
footer {
  background: var(--navy-deep);
  padding: 60px 5vw 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-logo {
  margin-bottom: 16px;
  line-height: 1.1;
}

.fl-name {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 20px;
  color: var(--white);
  letter-spacing: 1px;
}

.fl-sub {
  display: block;
  color: var(--green);
  font-size: 10.5px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 13.5px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.fs-link {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  transition: var(--transition);
}

.fs-link:hover {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}

.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 13.5px;
  transition: var(--transition);
}

.footer-col ul li a:hover {
  color: var(--green);
  padding-left: 4px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 24px;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.3);
  font-size: 12.5px;
}

.footer-bottom a {
  color: var(--green);
}

.footer-seo {
  font-size: 11px !important;
  color: rgba(255, 255, 255, 0.2) !important;
}

/* ---------------------------------------------------------------
   17. WHATSAPP STICKY
--------------------------------------------------------------- */
.wa-sticky {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  background: #25d366;
  color: var(--white);
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.55);
  transition: var(--transition);
  animation: pulse-wa 2.5s infinite;
}

.wa-sticky:hover {
  background: #1da851;
  transform: scale(1.1);
  box-shadow: 0 10px 36px rgba(37, 211, 102, 0.7);
}

.wa-tooltip {
  position: absolute;
  right: 72px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--navy);
  color: var(--white);
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 12.5px;
  font-weight: 700;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.wa-tooltip::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 0 5px 7px;
  border-color: transparent transparent transparent var(--navy);
}

.wa-sticky:hover .wa-tooltip {
  opacity: 1;
}

/* ---------------------------------------------------------------
   18. ANIMATIONS
--------------------------------------------------------------- */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeLeft {
  from {
    opacity: 0;
    transform: translateX(36px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes pulse-dot {

  0%,
  100% {
    box-shadow: 0 0 0 3px rgba(29, 185, 84, 0.25);
  }

  50% {
    box-shadow: 0 0 0 6px rgba(29, 185, 84, 0.1);
  }
}

@keyframes pulse-wa {

  0%,
  100% {
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  }

  50% {
    box-shadow: 0 6px 40px rgba(37, 211, 102, 0.75);
  }
}

@keyframes growBar {
  from {
    width: 0;
  }

  to {
    width: var(--w);
  }
}

/* ---------------------------------------------------------------
   19. RESPONSIVE — TABLET (≤ 900px)
--------------------------------------------------------------- */
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    order: -1;
    margin-bottom: 10px;
  }

  .hero-card {
    max-width: 100%;
  }

  .floating-pill {
    display: none;
  }

  .nomina-showcase {
    grid-template-columns: 1fr;
  }

  .nomina-card-wrap {
    position: static;
  }

  .ss-grid {
    grid-template-columns: 1fr 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }

  .benefits-wrap {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .contact-wrap {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------------------------------------------------------------
   20. RESPONSIVE — MOBILE (≤ 640px)
--------------------------------------------------------------- */
@media (max-width: 640px) {
  .nav-links {
    display: none;
  }

  .nav-links.active {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #0d2240;
    /* El color azul de tu fondo */

    /* ESTO ES LO QUE BAJA EL MENÚ: Cámbialo a 10rem o 12rem según necesites */
    padding: 12rem 2rem 2rem;

    flex-direction: column;
    align-items: center;
    gap: 2rem;
    z-index: 999;
    overflow-y: auto;
    /* Para que puedas bajar con el dedo */
  }

  /* También ajusta el logo en móvil para que no sea tan gigante */
  .nav-logo-emblem {
    width: 60px !important;
    height: 60px !important;
  }

  .nav-inner {
    height: auto !important;
    padding: 10px 18px !important;
  }

  /* ------------------------ */

  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .section-light,
  .section-dark,
  .section-gray,
  .contact-section {
    padding: 64px 18px;
  }

  .hero {
    padding: 88px 18px 54px;
  }

  .hero-btns {
    flex-direction: column;
  }

  .hero-btns .btn {
    justify-content: center;
  }

  .hero-trust-row {
    gap: 8px;
  }

  .trust-chip {
    font-size: 11.5px;
  }

  .ss-grid {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .pila-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .process-line {
    left: 39px;
  }

  .form-row-2 {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .final-cta {
    padding: 64px 18px;
  }

  .final-btns {
    flex-direction: column;
    align-items: center;
  }

  .wa-sticky {
    bottom: 20px;
    right: 20px;
    width: 56px;
    height: 56px;
    font-size: 26px;
  }

  .wa-tooltip {
    display: none;
  }
}