/* =========================================
   G&R ASOCIADOS – STYLES.CSS
   Design System & Full Responsive Layout
   ========================================= */

/* ---- CSS Custom Properties ---- */
:root {
  --color-primary: #0a1f5c;
  --color-primary-mid: #1a3a8f;
  --color-accent: #1a73e8;
  --color-accent-light: #60aeff;
  --color-accent-hover: #1558b0;
  --color-white: #ffffff;
  --color-bg-light: #f4f6f9;
  --color-bg-card: #ffffff;
  --color-text-dark: #1a1a2e;
  --color-text-body: #4a5568;
  --color-text-muted: #718096;
  --color-border: #e2e8f0;
  --color-whatsapp: #25d366;
  --color-whatsapp-dark: #128c7e;

  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Open Sans', sans-serif;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;

  --shadow-sm: 0 1px 3px rgba(0, 0, 0, .08), 0 1px 2px rgba(0, 0, 0, .05);
  --shadow-md: 0 4px 16px rgba(10, 31, 92, .10);
  --shadow-lg: 0 8px 40px rgba(10, 31, 92, .16);
  --shadow-xl: 0 20px 60px rgba(10, 31, 92, .20);

  --transition: all .3s cubic-bezier(.4, 0, .2, 1);
  --transition-fast: all .18s ease;
}

/* ---- Reset & Base ---- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--color-text-dark);
  background: var(--color-white);
  line-height: 1.7;
  overflow-x: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input,
textarea,
select {
  font-family: var(--font-body);
}

/* ---- Container ---- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* =========================================
   BUTTONS
   ========================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-xl);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: .9rem;
  letter-spacing: .4px;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-lg {
  padding: 15px 32px;
  font-size: 1rem;
}

.btn-primary {
  background: var(--color-accent);
  color: var(--color-white);
  border-color: var(--color-accent);
  box-shadow: 0 4px 20px rgba(26, 115, 232, .35);
}

.btn-primary:hover {
  background: var(--color-accent-hover);
  border-color: var(--color-accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(26, 115, 232, .45);
}

.btn-outline {
  background: transparent;
  color: var(--color-white);
  border-color: var(--color-white);
}

.btn-outline:hover {
  background: var(--color-white);
  color: var(--color-primary);
  transform: translateY(-2px);
}

.btn-block {
  width: 100%;
  justify-content: center;
}

/* =========================================
   LOGO IMAGE
   ========================================= */
.logo-img {
  width: 240px;
  height: auto;
  max-width: 100%;
  border-radius: 0;
  border: none;
  box-shadow: none;
  transition: var(--transition);
  display: block;
  object-fit: contain;
}

.logo-img:hover {
  box-shadow: none;
  transform: scale(1.03);
}

.footer-logo-img {
  width: 280px;
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
  margin-bottom: 16px;
}

/* =========================================
   HEADER
   ========================================= */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0;
  background: rgba(255, 255, 255, .97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(10, 31, 92, .12);
  box-shadow: 0 2px 16px rgba(10, 31, 92, .08);
  transition: var(--transition);
}

.header.scrolled {
  background: rgba(255, 255, 255, 1);
  box-shadow: 0 2px 20px rgba(10, 31, 92, .15);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 16px;
}

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: .88rem;
  color: var(--color-primary);
  transition: var(--transition-fast);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--color-accent);
  border-radius: 2px;
  transition: var(--transition-fast);
}

.nav-link:hover {
  color: var(--color-accent);
}

.nav-link:hover::after {
  width: 60%;
}

.nav-link.active {
  color: var(--color-accent);
}

.nav-link.active::after {
  width: 60%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-cta {
  padding: 9px 20px;
  font-size: .85rem;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
}

.hamburger span {
  display: block;
  height: 2px;
  background: var(--color-primary);
  border-radius: 2px;
  transition: var(--transition);
  transform-origin: center;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* =========================================
   HERO
   ========================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding-top: 0;
}

/* ── Video background ── */
.hero-video-wrapper {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: linear-gradient(135deg, #050e32 0%, #0a1f5c 55%, #080e28 100%);
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
}

.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 20, 60, 0.65);
}

/* ── Floating particles ── */
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.hp {
  position: absolute;
  border-radius: 50%;
  background: rgba(61, 142, 255, 0.18);
  animation: hpFloat linear infinite;
}

.hp1 {
  width: 6px;
  height: 6px;
  top: 15%;
  left: 8%;
  animation-duration: 12s;
  animation-delay: 0s;
  opacity: .7;
}

.hp2 {
  width: 4px;
  height: 4px;
  top: 62%;
  left: 22%;
  animation-duration: 9s;
  animation-delay: 1s;
  opacity: .5;
}

.hp3 {
  width: 8px;
  height: 8px;
  top: 30%;
  left: 60%;
  animation-duration: 14s;
  animation-delay: 2s;
  opacity: .6;
}

.hp4 {
  width: 3px;
  height: 3px;
  top: 75%;
  left: 75%;
  animation-duration: 10s;
  animation-delay: 3s;
  opacity: .4;
}

.hp5 {
  width: 10px;
  height: 10px;
  top: 50%;
  left: 45%;
  animation-duration: 16s;
  animation-delay: 0.5s;
  opacity: .3;
  background: rgba(0, 212, 255, .18);
}

.hp6 {
  width: 5px;
  height: 5px;
  top: 20%;
  left: 80%;
  animation-duration: 11s;
  animation-delay: 4s;
  opacity: .6;
}

.hp7 {
  width: 7px;
  height: 7px;
  top: 85%;
  left: 35%;
  animation-duration: 13s;
  animation-delay: 2.5s;
  opacity: .5;
  background: rgba(0, 212, 255, .15);
}

.hp8 {
  width: 4px;
  height: 4px;
  top: 40%;
  left: 90%;
  animation-duration: 8s;
  animation-delay: 1.5s;
  opacity: .7;
}

@keyframes hpFloat {
  0% {
    transform: translateY(0) translateX(0);
    opacity: .4;
  }

  25% {
    transform: translateY(-30px) translateX(10px);
  }

  50% {
    transform: translateY(-14px) translateX(-8px);
    opacity: .8;
  }

  75% {
    transform: translateY(-40px) translateX(6px);
  }

  100% {
    transform: translateY(-80px) translateX(0);
    opacity: 0;
  }
}

/* ── Two-column inner layout ── */
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 56px;
  padding: 140px 24px 140px;
  min-height: 100vh;
}

/* ── Left: text column ── */
.hero-text-col {
  display: flex;
  flex-direction: column;
}

/* Keep legacy .hero-content for fallback */
.hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 24px 120px;
  max-width: 780px;
}

/* ── Badge ── */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(26, 115, 232, .18);
  border: 1px solid rgba(96, 174, 255, .3);
  color: var(--color-accent-light);
  padding: 8px 18px;
  border-radius: var(--radius-xl);
  font-size: .78rem;
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: .6px;
  margin-bottom: 28px;
  width: fit-content;
  text-transform: uppercase;
}

/* ── Headline ── */
.hero-title {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  line-height: 1.08;
  color: var(--color-white);
  margin-bottom: 22px;
  letter-spacing: -1.5px;
}

.hero-title-accent {
  background: linear-gradient(135deg, #60aeff 0%, #3d8eff 50%, #00d4ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Subtitle ── */
.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, .72);
  max-width: 520px;
  margin-bottom: 40px;
  line-height: 1.8;
}

/* ── CTA buttons ── */
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 15px 30px;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: .92rem;
  letter-spacing: .2px;
  cursor: pointer;
  border: none;
  white-space: nowrap;
  background: linear-gradient(130deg, #1a73e8 0%, #2563eb 55%, #1d4ed8 100%);
  color: #fff;
  box-shadow: 0 0 0 1px rgba(26, 115, 232, .5), 0 4px 24px rgba(26, 115, 232, .45), 0 0 40px rgba(26, 115, 232, .15);
  transition: all .3s ease;
  position: relative;
  overflow: hidden;
}

.btn-hero-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, .13) 0%, transparent 60%);
  border-radius: inherit;
}

.btn-hero-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 0 1px rgba(26, 115, 232, .7), 0 8px 32px rgba(26, 115, 232, .6), 0 0 60px rgba(26, 115, 232, .25);
}

.btn-hero-outline {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 30px;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: .92rem;
  letter-spacing: .2px;
  cursor: pointer;
  white-space: nowrap;
  background: rgba(255, 255, 255, .07);
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, .35);
  backdrop-filter: blur(8px);
  transition: all .3s ease;
}

.btn-hero-outline:hover {
  background: rgba(255, 255, 255, .15);
  border-color: rgba(255, 255, 255, .65);
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, .2);
}

/* ── Hero trust row ── */
.hero-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 36px;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, .6);
  font-size: .78rem;
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: .2px;
}

.hero-trust-item svg {
  color: #00d4ff;
  flex-shrink: 0;
}

/* ── Right: visual column ── */
.hero-visual-col {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── Fintech illustration container ── */
.fintech-illustration {
  position: relative;
  width: 100%;
  max-width: 500px;
  min-height: 420px;
}

/* Neon glow backdrop */
.fi-glow {
  position: absolute;
  width: 340px;
  height: 340px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(61, 142, 255, .22) 0%, rgba(0, 212, 255, .07) 55%, transparent 75%);
  animation: fiGlowPulse 4s ease-in-out infinite;
  pointer-events: none;
}

@keyframes fiGlowPulse {

  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: .8;
  }

  50% {
    transform: translate(-50%, -50%) scale(1.12);
    opacity: 1;
  }
}

/* ── Panel base ── */
.fi-panel {
  position: absolute;
  background: rgba(8, 20, 64, .82);
  border: 1px solid rgba(61, 142, 255, .28);
  border-radius: 16px;
  padding: 16px 18px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 0 0 1px rgba(61, 142, 255, .07), 0 8px 32px rgba(0, 0, 0, .5), 0 0 40px rgba(61, 142, 255, .07);
}

/* ── Float animations ── */
@keyframes fiFloatA {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes fiFloatB {

  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }

  50% {
    transform: translateY(-8px) rotate(.4deg);
  }
}

@keyframes fiFloatC {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-6px);
  }
}

@keyframes fiFloatD {

  0%,
  100% {
    transform: translateY(0px) scale(1);
  }

  50% {
    transform: translateY(-12px) scale(1.03);
  }
}

@keyframes fiFloatE {

  0%,
  100% {
    transform: scale(1);
    opacity: .9;
  }

  50% {
    transform: scale(1.4);
    opacity: .3;
  }
}

.fi-float-a {
  animation: fiFloatA 6s ease-in-out infinite;
}

.fi-float-b {
  animation: fiFloatB 7s ease-in-out infinite 0.8s;
}

.fi-float-c {
  animation: fiFloatC 5s ease-in-out infinite 1.6s;
}

.fi-float-d {
  animation: fiFloatD 8s ease-in-out infinite 0.4s;
}

.fi-float-e {
  animation: fiFloatE 3s ease-in-out infinite;
}

/* ── KPI row panel ── */
.fi-kpi-row {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  width: max-content;
  padding: 14px 16px;
}

.fi-kpi {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  min-width: 76px;
  padding: 10px 10px;
  border-radius: 10px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .07);
}

.fi-kpi-icon {
  font-size: 1rem;
  line-height: 1;
}

.fi-kpi-green .fi-kpi-icon {
  color: #4ade80;
}

.fi-kpi-blue .fi-kpi-icon {
  color: #60aeff;
}

.fi-kpi-cyan .fi-kpi-icon {
  color: #00d4ff;
}

.fi-kpi-label {
  font-size: .6rem;
  color: rgba(255, 255, 255, .48);
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: .4px;
  text-transform: uppercase;
}

.fi-kpi-value {
  font-size: .88rem;
  color: #fff;
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1;
}

.fi-kpi-delta {
  font-size: .65rem;
  font-family: var(--font-heading);
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 20px;
}

.fi-kpi-green .fi-kpi-delta {
  color: #4ade80;
  background: rgba(74, 222, 128, .12);
}

.fi-kpi-blue .fi-kpi-delta {
  color: #60aeff;
  background: rgba(96, 174, 255, .12);
}

.fi-kpi-cyan .fi-kpi-delta {
  color: #00d4ff;
  background: rgba(0, 212, 255, .12);
}

/* ── Line chart panel ── */
.fi-line-panel {
  bottom: 20%;
  left: -4%;
  width: 62%;
}

.fi-panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.fi-panel-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: .76rem;
  color: rgba(255, 255, 255, .88);
  letter-spacing: .3px;
}

.fi-panel-badge {
  font-size: .62rem;
  font-family: var(--font-heading);
  font-weight: 700;
  color: #60aeff;
  background: rgba(96, 174, 255, .12);
  padding: 3px 8px;
  border-radius: 20px;
  border: 1px solid rgba(96, 174, 255, .2);
}

.fi-badge-green {
  color: #4ade80 !important;
  background: rgba(74, 222, 128, .1) !important;
  border-color: rgba(74, 222, 128, .2) !important;
}

.fi-linechart {
  width: 100%;
  height: 76px;
  display: block;
}

/* ── Bar chart panel ── */
.fi-bar-panel {
  bottom: 6%;
  right: -5%;
  width: 50%;
}

.fi-bars {
  display: flex;
  align-items: flex-end;
  gap: 7px;
  height: 66px;
}

.fi-bar-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  justify-content: flex-end;
}

.fi-bar {
  width: 100%;
  height: var(--h);
  background: linear-gradient(to top, rgba(61, 142, 255, .5), rgba(61, 142, 255, .22));
  border-radius: 4px 4px 2px 2px;
  position: relative;
  border: 1px solid rgba(61, 142, 255, .25);
}

.fi-bar.fi-bar-active {
  background: linear-gradient(to top, #3d8eff, rgba(0, 212, 255, .75));
  border-color: rgba(0, 212, 255, .5);
  box-shadow: 0 0 14px rgba(61, 142, 255, .4), 0 0 4px rgba(0, 212, 255, .3);
}

.fi-bar span {
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  font-size: .52rem;
  color: rgba(255, 255, 255, .4);
  font-family: var(--font-heading);
  font-weight: 600;
  white-space: nowrap;
}

/* ── Growth pill ── */
.fi-growth-pill {
  position: absolute;
  top: 34%;
  right: -3%;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(8, 20, 64, .88);
  border: 1px solid rgba(0, 212, 255, .3);
  padding: 10px 15px;
  border-radius: 40px;
  backdrop-filter: blur(14px);
  box-shadow: 0 0 20px rgba(0, 212, 255, .15), 0 4px 16px rgba(0, 0, 0, .45);
  color: rgba(255, 255, 255, .9);
  font-family: var(--font-heading);
  font-size: .76rem;
  font-weight: 600;
  white-space: nowrap;
}

.fi-growth-pill strong {
  color: #00d4ff;
}

/* ── Pulse dot ── */
.fi-pulse-dot {
  position: absolute;
  top: 52%;
  left: 42%;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #00d4ff;
  animation: fiPulseRing 2.5s ease-out infinite;
}

@keyframes fiPulseRing {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 212, 255, .7);
  }

  70% {
    box-shadow: 0 0 0 16px rgba(0, 212, 255, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(0, 212, 255, 0);
  }
}

/* ── Legacy .hero-bg / old particles (kept for backwards compat) ── */
.hero-bg {
  display: none;
}

.hero-overlay {
  display: none;
}

.particle {
  display: none;
}

/* ── Trust Strip ── */
.trust-strip {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, .05);
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(255, 255, 255, .1);
  z-index: 3;
}

.trust-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
  padding: 16px 24px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, .85);
  font-size: .82rem;
  font-family: var(--font-heading);
  font-weight: 600;
  padding: 6px 18px;
}

.trust-icon {
  color: #4ade80;
  flex-shrink: 0;
}

.trust-divider {
  width: 1px;
  height: 22px;
  background: rgba(255, 255, 255, .18);
}

/* ── @keyframes float (legacy – kept for JS anim refs) ── */
@keyframes float {

  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-20px) scale(1.05);
  }
}

/* =========================================
   SECTION HEADERS (reusable)
   ========================================= */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-tag {
  display: inline-block;
  background: rgba(26, 115, 232, .1);
  color: var(--color-accent);
  padding: 6px 18px;
  border-radius: var(--radius-xl);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: .75rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.section-tag.light {
  background: rgba(255, 255, 255, .12);
  color: var(--color-accent-light);
}

.section-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--color-primary);
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}

.section-title.light {
  color: var(--color-white);
}

.section-divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-accent-light));
  border-radius: 2px;
  margin: 0 auto 20px;
}

.section-divider.light {
  background: linear-gradient(90deg, var(--color-accent-light), rgba(255, 255, 255, .4));
}

.section-subtitle {
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
}

.section-subtitle.dark {
  color: var(--color-text-body);
}

.section-subtitle.light {
  color: rgba(255, 255, 255, .75);
}

/* =========================================
   QUIÉNES SOMOS
   ========================================= */
.about {
  padding: 110px 0;
  background: var(--color-white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.about-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: visible;
}

.about-image-placeholder {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.about-image-placeholder svg {
  width: 100%;
  height: auto;
}

.about-video-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.about-video {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-lg);
}

.about-illustration {
  width: 100%;
  border-radius: var(--radius-lg);
}

.about-badge-experience {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--color-primary);
  color: var(--color-white);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.badge-number {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 2.2rem;
  line-height: 1;
  color: var(--color-accent-light);
}

.badge-text {
  font-size: .75rem;
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.3;
  opacity: .85;
  text-align: center;
}

.about-text-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 8px;
}

.mission-card {
  display: flex;
  gap: 18px;
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
  transition: var(--transition);
}

.mission-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: rgba(26, 115, 232, .2);
}

.mission-card-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, #e8f0fe, #c8dbfc);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.mission-card-icon svg {
  width: 26px;
  height: 26px;
  color: var(--color-accent);
}

.mission-card-content h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--color-primary);
  margin-bottom: 10px;
}

.mission-card-content p {
  font-size: .9rem;
  color: var(--color-text-body);
  line-height: 1.75;
}

/* =========================================
   VALORES CORPORATIVOS
   ========================================= */
.values {
  padding: 110px 0;
  background: var(--color-primary);
  position: relative;
  overflow: hidden;
}

.values::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26, 115, 232, .15) 0%, transparent 70%);
  pointer-events: none;
}

.values::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26, 115, 232, .1) 0%, transparent 70%);
  pointer-events: none;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1;
}

/* Row 1: 3 cards, each spans 2 of 6 columns */
.value-card:nth-child(1) {
  grid-column: span 2;
}

.value-card:nth-child(2) {
  grid-column: span 2;
}

.value-card:nth-child(3) {
  grid-column: span 2;
}

/* Row 2: 2 cards centered (cols 2-3 and 4-5) */
.value-card:nth-child(4) {
  grid-column: 2 / span 2;
}

.value-card:nth-child(5) {
  grid-column: 4 / span 2;
}

.value-card {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
  backdrop-filter: blur(4px);
}

.value-card:hover {
  background: rgba(26, 115, 232, .15);
  border-color: rgba(96, 174, 255, .4);
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(26, 115, 232, .2);
}

.value-icon {
  width: 60px;
  height: 60px;
  background: rgba(26, 115, 232, .2);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  transition: var(--transition);
}

.value-card:hover .value-icon {
  background: var(--color-accent);
}

.value-icon svg {
  width: 28px;
  height: 28px;
  color: var(--color-accent-light);
}

.value-card:hover .value-icon svg {
  color: var(--color-white);
}

.value-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-white);
  margin-bottom: 10px;
}

.value-desc {
  font-size: .875rem;
  color: rgba(255, 255, 255, .65);
  line-height: 1.65;
}

/* =========================================
   NUESTROS SERVICIOS
   ========================================= */
.services {
  padding: 110px 0;
  background: var(--color-bg-light);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.service-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  border: 1px solid var(--color-border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-accent-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
  border-color: rgba(26, 115, 232, .15);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #e8f0fe, #c8dbfc);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: var(--transition);
}

.service-card:hover .service-icon {
  background: var(--color-accent);
}

.service-icon svg {
  width: 26px;
  height: 26px;
  color: var(--color-accent);
}

.service-card:hover .service-icon svg {
  color: var(--color-white);
}

.service-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-primary);
  margin-bottom: 10px;
}

.service-desc {
  font-size: .875rem;
  color: var(--color-text-body);
  line-height: 1.7;
}

.services-cta {
  text-align: center;
}

/* =========================================
   POR QUÉ ELEGIRNOS
   ========================================= */
.why-us {
  padding: 110px 0;
  background: linear-gradient(135deg, #0a1f5c 0%, #1a3a8f 50%, #1558b0 100%);
  position: relative;
  overflow: hidden;
}

.why-us::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M0 40L40 0H20L0 20M40 40V20L20 40'/%3E%3C/g%3E%3C/svg%3E");
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1;
}

.why-card {
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius-md);
  padding: 40px 24px;
  text-align: center;
  transition: var(--transition);
  backdrop-filter: blur(4px);
}

.why-card:hover {
  background: rgba(255, 255, 255, .12);
  transform: translateY(-8px);
  border-color: rgba(96, 174, 255, .4);
  box-shadow: 0 16px 50px rgba(0, 0, 0, .2);
}

.why-icon {
  width: 64px;
  height: 64px;
  background: rgba(26, 115, 232, .25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: var(--transition);
}

.why-card:hover .why-icon {
  background: var(--color-accent);
}

.why-icon svg {
  width: 30px;
  height: 30px;
  color: var(--color-accent-light);
}

.why-card:hover .why-icon svg {
  color: var(--color-white);
}

.why-number {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 2.8rem;
  color: var(--color-white);
  line-height: 1;
  margin-bottom: 10px;
  background: linear-gradient(135deg, #fff, var(--color-accent-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.why-label {
  font-size: .875rem;
  color: rgba(255, 255, 255, .7);
  line-height: 1.6;
  font-weight: 500;
}

/* =========================================
   TESTIMONIOS
   ========================================= */
.testimonials {
  padding: 110px 0;
  background: var(--color-bg-light);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  border: 1px solid var(--color-border);
  position: relative;
  transition: var(--transition);
}

.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 20px;
  right: 28px;
  font-size: 5rem;
  color: rgba(26, 115, 232, .1);
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}

.testimonial-stars {
  font-size: 1.1rem;
  margin-bottom: 16px;
  letter-spacing: 3px;
  color: #f59e0b;
}

.testimonial-text {
  font-size: .92rem;
  color: var(--color-text-body);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: .85rem;
  flex-shrink: 0;
}

.testimonial-info strong {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: .9rem;
  color: var(--color-primary);
}

.testimonial-info span {
  font-size: .8rem;
  color: var(--color-text-muted);
}

/* =========================================
   CONTACTO
   ========================================= */
.contact {
  padding: 110px 0;
  background: var(--color-white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: start;
}

.contact-info-card {
  background: var(--color-bg-light);
  border-radius: var(--radius-md);
  padding: 40px;
  border: 1px solid var(--color-border);
}

.contact-info-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--color-primary);
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--color-border);
}

.contact-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 22px;
}

.contact-item-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #e8f0fe, #c8dbfc);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-item-icon svg {
  width: 18px;
  height: 18px;
  color: var(--color-accent);
}

.contact-item strong {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: .85rem;
  color: var(--color-primary);
  margin-bottom: 3px;
}

.contact-item span {
  font-size: .88rem;
  color: var(--color-text-body);
  line-height: 1.6;
}

.btn-whatsapp-section {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--color-whatsapp);
  color: white;
  padding: 14px 24px;
  border-radius: var(--radius-xl);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: .9rem;
  transition: var(--transition);
  margin-top: 8px;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, .35);
}

.btn-whatsapp-section:hover {
  background: var(--color-whatsapp-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, .4);
}

/* Contact Form */
.contact-form {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
}

.form-group {
  margin-bottom: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group label {
  display: block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: .82rem;
  color: var(--color-primary);
  margin-bottom: 8px;
  letter-spacing: .3px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-size: .9rem;
  color: var(--color-text-dark);
  background: var(--color-bg-light);
  transition: var(--transition-fast);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--color-accent);
  background: white;
  box-shadow: 0 0 0 4px rgba(26, 115, 232, .1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%234a5568' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

#submitBtn {
  margin-top: 8px;
}

.form-success {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  color: #065f46;
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  margin-top: 16px;
  font-weight: 600;
  font-size: .9rem;
}

/* =========================================
   FOOTER
   ========================================= */
.footer {
  background: var(--color-primary);
  color: var(--color-white);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 48px;
  padding: 72px 24px 56px;
}

.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.footer-slogan {
  font-family: var(--font-heading);
  font-style: italic;
  color: var(--color-accent-light);
  margin-bottom: 14px;
  font-size: .95rem;
  font-weight: 500;
}

.footer-desc {
  font-size: .875rem;
  color: rgba(255, 255, 255, .6);
  line-height: 1.75;
}

.footer-col-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--color-accent-light);
  margin-bottom: 20px;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav a {
  font-size: .88rem;
  color: rgba(255, 255, 255, .65);
  transition: var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-nav a::before {
  content: '→';
  opacity: 0;
  transition: var(--transition-fast);
  margin-left: -12px;
}

.footer-nav a:hover {
  color: var(--color-white);
  padding-left: 12px;
}

.footer-nav a:hover::before {
  opacity: 1;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, .65);
  font-size: .875rem;
  margin-bottom: 12px;
}

.footer-contact-item svg {
  flex-shrink: 0;
  color: var(--color-accent-light);
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.social-link {
  width: 38px;
  height: 38px;
  background: rgba(255, 255, 255, .08);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .7);
  transition: var(--transition);
}

.social-link:hover {
  background: var(--color-accent);
  color: white;
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  font-size: .8rem;
  color: rgba(255, 255, 255, .4);
}

.footer-bottom-center {
  text-align: center;
  color: rgba(255, 255, 255, .4);
  font-size: .8rem;
}

.footer-bottom-center a {
  color: rgba(255, 255, 255, .6);
  text-decoration: none;
  transition: color .2s ease;
}

.footer-bottom-center a:hover {
  color: var(--color-accent-light);
}

/* =========================================
   WHATSAPP FLOAT BUTTON
   ========================================= */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 60px;
  height: 60px;
  background: var(--color-whatsapp);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 4px 20px rgba(37, 211, 102, .4);
  transition: var(--transition);
  animation: pulse-whatsapp 2.5s ease infinite;
}

.whatsapp-float:hover {
  background: var(--color-whatsapp-dark);
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37, 211, 102, .5);
  animation: none;
}

@keyframes pulse-whatsapp {

  0%,
  100% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, .4), 0 0 0 0 rgba(37, 211, 102, .4);
  }

  50% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, .4), 0 0 0 12px rgba(37, 211, 102, 0);
  }
}

.whatsapp-tooltip {
  position: absolute;
  right: 70px;
  background: var(--color-primary);
  color: white;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  font-size: .8rem;
  font-family: var(--font-heading);
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-fast);
}

.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -6px;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-right: none;
  border-left-color: var(--color-primary);
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
}

/* =========================================
   BACK TO TOP
   ========================================= */
.back-to-top {
  position: fixed;
  bottom: 100px;
  right: 28px;
  z-index: 998;
  width: 44px;
  height: 44px;
  background: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
}

.back-to-top:hover {
  background: var(--color-accent);
  transform: translateY(-3px);
}

/* =========================================
   ANIMATIONS
   ========================================= */
.animate-fade-in {
  animation: fadeIn .8s ease forwards;
}

.animate-slide-up {
  animation: slideUp .8s ease forwards;
  opacity: 0;
}

.delay-1 {
  animation-delay: .2s;
}

.delay-2 {
  animation-delay: .4s;
}

.delay-3 {
  animation-delay: .6s;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Scroll animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}

.animate-on-scroll.in-view {
  opacity: 1;
  transform: translateY(0);
}

.animate-on-scroll.delay-1 {
  transition-delay: .15s;
}

.animate-on-scroll.delay-2 {
  transition-delay: .3s;
}

.animate-on-scroll.delay-3 {
  transition-delay: .45s;
}

/* =========================================
   VALUES GRID – nth-child reset for 6-col base
   ========================================= */
.value-card:nth-child(1),
.value-card:nth-child(2),
.value-card:nth-child(3),
.value-card:nth-child(4),
.value-card:nth-child(5) {
  grid-column: unset;
}

.value-card:nth-child(1) { grid-column: span 2; }
.value-card:nth-child(2) { grid-column: span 2; }
.value-card:nth-child(3) { grid-column: span 2; }
.value-card:nth-child(4) { grid-column: 2 / span 2; }
.value-card:nth-child(5) { grid-column: 4 / span 2; }

/* =========================================
   RESPONSIVE – TABLET (≤968px)
   ========================================= */
@media (max-width: 968px) {

  /* Hero two-column → stacked */
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 130px 24px 120px;
    text-align: center;
  }

  .hero-text-col {
    align-items: center;
  }

  .hero-badge {
    align-self: center;
  }

  .hero-subtitle {
    max-width: 600px;
  }

  .hero-ctas {
    justify-content: center;
  }

  .hero-trust-row {
    justify-content: center;
  }

  .hero-visual-col {
    display: none;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-badge-experience {
    bottom: -20px;
    right: 16px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  /* Values: revert to simple 2-col on tablet */
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .value-card:nth-child(1),
  .value-card:nth-child(2),
  .value-card:nth-child(3),
  .value-card:nth-child(4),
  .value-card:nth-child(5) {
    grid-column: span 1;
  }

  .value-card:nth-child(5) {
    grid-column: 1 / -1;
    max-width: 380px;
    margin: 0 auto;
  }
}

/* =========================================
   RESPONSIVE – MOBILE (≤640px)
   ========================================= */
@media (max-width: 640px) {
  .hero-inner {
    padding: 110px 16px 110px;
  }

  .hero-content {
    padding: 60px 16px 100px;
  }

  .hero-title {
    font-size: 2.1rem;
    letter-spacing: -1px;
  }

  .hero-subtitle {
    font-size: .98rem;
  }

  .btn-hero-primary,
  .btn-hero-outline {
    width: 100%;
    justify-content: center;
  }

  .hero-ctas {
    flex-direction: column;
  }

  .hero-ctas .btn {
    width: 100%;
    justify-content: center;
  }

  .trust-strip-inner {
    gap: 8px;
  }

  .trust-divider {
    display: none;
  }

  .trust-item {
    font-size: .78rem;
    padding: 4px 10px;
  }

  .nav-links {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(5, 14, 50, .98);
    backdrop-filter: blur(16px);
    padding: 24px;
    flex-direction: column;
    gap: 4px;
    transform: translateX(-100%);
    transition: var(--transition);
    border-top: 1px solid rgba(255, 255, 255, .08);
    z-index: 999;
  }

  .nav-links.open {
    transform: translateX(0);
  }

  .nav-link {
    text-align: left;
    padding: 12px 16px;
    font-size: 1rem;
    width: 100%;
  }

  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .about-image-placeholder {
    min-height: 240px;
  }

  .about-badge-experience {
    right: 8px;
    bottom: -16px;
    padding: 14px 18px;
  }

  .badge-number {
    font-size: 1.8rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .value-card:nth-child(5) {
    grid-column: auto;
    max-width: none;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-info-card {
    padding: 24px;
  }

  .contact-form {
    padding: 24px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom-inner {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .section-header {
    margin-bottom: 36px;
  }

  .about,
  .services,
  .testimonials,
  .contact,
  .values,
  .why-us {
    padding: 72px 0;
  }
}

/* =========================================
   FORM LOADING STATE
   ========================================= */
#submitBtn.loading {
  pointer-events: none;
  opacity: .75;
}