/* ============================================================
   ControlRuta GPS — Landing Page Design System
   Profesional, moderno, orientado a conversión
   ============================================================ */

@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800;900&display=swap");

/* ── Variables ────────────────────────────────────────────── */
:root {
  --navy:      #061028;
  --navy-2:    #0d1b3e;
  --navy-3:    #1e3a8a;
  --blue:      #2563eb;
  --blue-lt:   #3b82f6;
  --blue-xlt:  #93c5fd;
  --silver:    #94a3b8;
  --white:     #ffffff;
  --bg:        #f8fafc;
  --bg-2:      #eef2ff;
  --txt:       #0f172a;
  --txt-2:     #334155;
  --txt-3:     #64748b;
  --border:    #e2e8f0;
  --success:   #16a34a;
  --warning:   #f59e0b;

  --r-sm:  6px;
  --r-md:  10px;
  --r-lg:  16px;
  --r-xl:  24px;
  --r-2xl: 32px;

  --shadow-sm:  0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md:  0 4px 16px rgba(0,0,0,.10), 0 2px 6px rgba(0,0,0,.07);
  --shadow-lg:  0 12px 40px rgba(0,0,0,.15), 0 4px 12px rgba(0,0,0,.10);
  --shadow-xl:  0 24px 64px rgba(0,0,0,.20);
  --shadow-blue: 0 8px 32px rgba(37,99,235,.30);
}

/* ── Reset ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 15px; }
body {
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  background: var(--white);
  color: var(--txt);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font: inherit; }
ul { list-style: none; }

/* ── Utilities ────────────────────────────────────────────── */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--blue);
  background: var(--bg-2);
  padding: 4px 12px;
  border-radius: 99px;
  border: 1px solid rgba(37,99,235,.2);
  margin-bottom: 14px;
}
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 52px;
}
.section-header h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--txt);
  letter-spacing: -.5px;
  line-height: 1.2;
  margin-bottom: 14px;
}
.section-header p {
  font-size: 1rem;
  color: var(--txt-3);
  line-height: 1.7;
}

/* ── Navbar ───────────────────────────────────────────────── */
.ln-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all .3s ease;
}
.ln-nav.scrolled {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border), var(--shadow-sm);
  padding: 10px 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav-logo img {
  height: 38px;
  width: auto;
  background: rgba(255,255,255,.92);
  border-radius: 10px;
  padding: 5px;
  box-shadow: 0 0 0 1px rgba(255,255,255,.2), 0 4px 16px rgba(255,255,255,.15);
  transition: box-shadow .3s;
}
.ln-nav.scrolled .nav-logo img {
  background: transparent;
  box-shadow: none;
  padding: 0;
}
.nav-logo-text {
  font-size: .95rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.3px;
  transition: color .3s;
}
.ln-nav.scrolled .nav-logo-text { color: var(--navy-2); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}
.nav-link {
  font-size: .85rem;
  font-weight: 600;
  color: rgba(255,255,255,.85);
  padding: 7px 12px;
  border-radius: var(--r-sm);
  transition: all .2s;
}
.nav-link:hover { color: var(--white); background: rgba(255,255,255,.1); }
.ln-nav.scrolled .nav-link { color: var(--txt-2); }
.ln-nav.scrolled .nav-link:hover { color: var(--blue); background: var(--bg-2); }

.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.btn-clientes {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .82rem;
  font-weight: 700;
  color: var(--white);
  background: var(--blue);
  padding: 9px 20px;
  border-radius: var(--r-md);
  transition: all .2s;
  box-shadow: var(--shadow-blue);
}
.btn-clientes:hover {
  background: #1d4ed8;
  transform: translateY(-1px);
  box-shadow: 0 10px 36px rgba(37,99,235,.4);
}
.btn-clientes svg { width: 13px; height: 13px; }

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  border-radius: var(--r-sm);
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all .3s;
}
.ln-nav.scrolled .nav-toggle span { background: var(--txt); }
.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--navy-2);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.nav-mobile.open { display: flex; }
.nav-mobile .nav-link {
  font-size: 1.3rem;
  color: var(--white);
  padding: 12px 24px;
  width: 100%;
  max-width: 320px;
  text-align: left;
}
.nav-mobile .btn-clientes {
  align-self: flex-start;
  margin-left: max(24px, calc(50% - 136px));
}
.nav-mobile-close {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 1.5rem;
  color: var(--white);
  cursor: pointer;
  padding: 8px;
}

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 50%, #0a1f5e 100%);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 70% 60%, rgba(37,99,235,.15) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 30%, rgba(96,165,250,.08) 0%, transparent 60%);
  pointer-events: none;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
  z-index: 2;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--blue-xlt);
  background: rgba(59,130,246,.12);
  border: 1px solid rgba(59,130,246,.25);
  padding: 5px 14px;
  border-radius: 99px;
  margin-bottom: 22px;
}
.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--blue-lt);
  animation: pulse-dot 2s infinite;
}
.hero-content h1 {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}
.hero-content h1 .accent {
  color: var(--blue-lt);
}
.hero-slider-wrap {
  display: block;
  overflow: hidden;
  height: 1.2em;
}
.hero-slider {
  display: flex;
  flex-direction: column;
  animation: slideWords 10s steps(1) infinite;
}
.hero-slider span {
  display: block;
  height: 1.2em;
  color: var(--blue-lt);
  white-space: nowrap;
}
@keyframes slideWords {
  0%   { transform: translateY(0);     }
  20%  { transform: translateY(-1.2em); }
  40%  { transform: translateY(-2.4em); }
  60%  { transform: translateY(-3.6em); }
  80%  { transform: translateY(-4.8em); }
  100% { transform: translateY(0);     }
}

.hero-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,.72);
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 480px;
}
.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue);
  color: var(--white);
  font-size: .9rem;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: var(--r-md);
  transition: all .25s;
  box-shadow: var(--shadow-blue);
}
.btn-hero-primary:hover {
  background: #1d4ed8;
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(37,99,235,.45);
}
.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.85);
  font-size: .9rem;
  font-weight: 600;
  padding: 14px 24px;
  border-radius: var(--r-md);
  border: 1px solid rgba(255,255,255,.2);
  transition: all .25s;
}
.btn-hero-secondary:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.4);
  color: var(--white);
}
.hero-trust {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.hero-trust span {
  font-size: .78rem;
  color: rgba(255,255,255,.55);
  display: flex;
  align-items: center;
  gap: 5px;
}
.hero-trust span::before {
  content: '✓';
  color: var(--blue-lt);
  font-weight: 800;
}

/* GPS Mockup visual */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.mockup-wrap {
  position: relative;
  animation: floatUp 6s ease-in-out infinite;
}
.mockup-card {
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-xl);
  overflow: hidden;
  width: 380px;
  box-shadow: 0 32px 80px rgba(0,0,0,.4), inset 0 1px 0 rgba(255,255,255,.1);
}
.mockup-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: rgba(0,0,0,.2);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.mockup-dot { width: 10px; height: 10px; border-radius: 50%; }
.mockup-dot.r { background: #ff5f57; }
.mockup-dot.a { background: #febc2e; }
.mockup-dot.g { background: #28c840; }
.mockup-title-bar {
  flex: 1;
  text-align: center;
  font-size: .72rem;
  font-weight: 600;
  color: rgba(255,255,255,.5);
}
.live-badge {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: .65rem;
  font-weight: 700;
  color: #28c840;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.live-badge::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #28c840;
  animation: pulse-dot 1.5s infinite;
}

.mockup-map {
  position: relative;
  height: 200px;
  background:
    linear-gradient(135deg, #0a1628 0%, #0f2044 100%);
  overflow: hidden;
}
.map-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(37,99,235,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37,99,235,.08) 1px, transparent 1px);
  background-size: 28px 28px;
}
.map-road {
  position: absolute;
  background: rgba(255,255,255,.06);
  border-radius: 2px;
}
.map-road.h1 { left: 0; right: 0; top: 45%; height: 8px; }
.map-road.v1 { top: 0; bottom: 0; left: 30%; width: 8px; }
.map-road.h2 { left: 0; right: 0; top: 70%; height: 6px; }
.map-road.v2 { top: 0; bottom: 0; left: 70%; width: 6px; }

.gps-pin {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  z-index: 2;
}
.gps-pin.p1 { left: 28%; top: 30%; animation: movePin1 12s ease-in-out infinite; }
.gps-pin.p2 { left: 55%; top: 50%; animation: movePin2 15s ease-in-out infinite; }
.gps-pin.p3 { left: 75%; top: 25%; animation: movePin3 10s ease-in-out infinite; }

.pin-icon {
  width: 28px; height: 28px;
  background: var(--blue);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(37,99,235,.5);
  position: relative;
}
.pin-icon::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50% 50% 50% 0;
  border: 2px solid rgba(255,255,255,.3);
  animation: ping-pin 2s ease-out infinite;
}
.pin-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--white);
  transform: rotate(45deg);
}
.pin-label {
  margin-top: 4px;
  background: rgba(0,0,0,.7);
  color: var(--white);
  font-size: .6rem;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 4px;
  white-space: nowrap;
  backdrop-filter: blur(4px);
}

.mockup-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255,255,255,.08);
}
.m-stat {
  padding: 12px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.06);
}
.m-stat:last-child { border-right: none; }
.m-stat-val {
  display: block;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
}
.m-stat-lbl {
  display: block;
  font-size: .6rem;
  color: rgba(255,255,255,.4);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-top: 2px;
}

/* Floating cards around mockup */
.float-card {
  position: absolute;
  background: rgba(255,255,255,.95);
  border-radius: var(--r-md);
  padding: 8px 12px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  font-size: .72rem;
  font-weight: 600;
  color: var(--txt);
}
.fc-alert {
  top: -16px; left: -40px;
  animation: floatCard1 5s ease-in-out infinite;
}
.fc-signal {
  bottom: 30px; right: -50px;
  animation: floatCard2 6s ease-in-out infinite;
}
.fc-dot { width: 8px; height: 8px; border-radius: 50%; }
.fc-dot.green { background: var(--success); }
.fc-dot.amber { background: var(--warning); }

/* ── Stats bar ────────────────────────────────────────────── */
.stats-bar {
  background: var(--blue);
  padding: 40px 0;
}
.stats-bar .container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.stat-bar-item {
  text-align: center;
  padding: 10px;
  position: relative;
}
.stat-bar-item::after {
  content: '';
  position: absolute;
  right: 0; top: 20%; bottom: 20%;
  width: 1px;
  background: rgba(255,255,255,.2);
}
.stat-bar-item:last-child::after { display: none; }
.stat-bar-num {
  display: block;
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -1px;
  line-height: 1;
}
.stat-bar-lbl {
  display: block;
  font-size: .75rem;
  color: rgba(255,255,255,.72);
  margin-top: 5px;
  font-weight: 500;
}

/* ── Services ─────────────────────────────────────────────── */
.section-services {
  padding: 100px 0;
  background: var(--bg);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 32px 20px;
  text-align: center;
  transition: all .3s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--blue);
  transform: scaleX(0);
  transition: transform .3s;
  transform-origin: left;
}
.service-card:hover {
  border-color: rgba(37,99,235,.25);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 64px; height: 64px;
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.8rem;
}
.service-icon.c1 { background: #dbeafe; }
.service-icon.c2 { background: #dcfce7; }
.service-icon.c3 { background: #fef3c7; }
.service-icon.c4 { background: #ede9fe; }
.service-icon.c5 { background: #fce7f3; }
.service-title {
  font-size: .9rem;
  font-weight: 800;
  color: var(--txt);
  margin-bottom: 8px;
}
.service-desc {
  font-size: .78rem;
  color: var(--txt-3);
  line-height: 1.6;
}

/* ── Features ─────────────────────────────────────────────── */
.section-features {
  padding: 100px 0;
  background: var(--navy-2);
  position: relative;
  overflow: hidden;
}
.section-features::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
}
.section-features .section-header h2 { color: var(--white); }
.section-features .section-header p  { color: rgba(255,255,255,.6); }
.section-features .section-tag { background: rgba(59,130,246,.15); border-color: rgba(59,130,246,.3); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1;
}
.feature-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  transition: all .3s;
}
.feature-card:hover {
  background: rgba(255,255,255,.08);
  border-color: rgba(37,99,235,.4);
  transform: translateY(-2px);
}
.feature-icon {
  width: 44px; height: 44px;
  background: rgba(37,99,235,.2);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  color: var(--blue-xlt);
}
.feature-icon svg { width: 20px; height: 20px; }
.feature-title {
  font-size: .9rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.feature-desc {
  font-size: .78rem;
  color: rgba(255,255,255,.55);
  line-height: 1.65;
}

/* ── How it works ─────────────────────────────────────────── */
.section-how {
  padding: 100px 0;
  background: var(--white);
}
.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}
.how-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(100%/6);
  right: calc(100%/6);
  height: 2px;
  background: linear-gradient(90deg, var(--blue) 0%, var(--blue-lt) 100%);
  z-index: 0;
}
.how-step {
  text-align: center;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}
.step-num {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-size: 1.4rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: var(--shadow-blue);
  border: 4px solid var(--white);
  outline: 2px solid var(--blue);
}
.step-title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--txt);
  margin-bottom: 10px;
}
.step-desc {
  font-size: .82rem;
  color: var(--txt-3);
  line-height: 1.65;
}

/* ── Pricing ──────────────────────────────────────────────── */
.section-pricing {
  padding: 100px 0;
  background: var(--bg);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.price-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--r-xl);
  padding: 36px 28px;
  position: relative;
  transition: all .3s;
}
.price-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.price-card.featured {
  border-color: var(--blue);
  box-shadow: var(--shadow-blue);
  transform: scale(1.03);
}
.price-card.featured:hover { transform: scale(1.03) translateY(-4px); }
.price-badge-pop {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: var(--white);
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 4px 14px;
  border-radius: 99px;
  white-space: nowrap;
}
.price-tier {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--blue);
  margin-bottom: 8px;
}
.price-name {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--txt);
  margin-bottom: 4px;
}
.price-desc {
  font-size: .78rem;
  color: var(--txt-3);
  margin-bottom: 20px;
  line-height: 1.5;
}
.price-amount {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 6px;
}
.price-currency { font-size: 1rem; font-weight: 700; color: var(--txt-2); }
.price-num {
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--txt);
  letter-spacing: -2px;
  line-height: 1;
}
.price-per { font-size: .78rem; color: var(--txt-3); }
.price-devices {
  font-size: .72rem;
  color: var(--txt-3);
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.price-features { margin-bottom: 28px; }
.price-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .82rem;
  color: var(--txt-2);
  padding: 7px 0;
  border-bottom: 1px solid var(--bg);
}
.price-feature::before {
  content: '✓';
  color: var(--success);
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 1px;
}
.price-feature.missing { color: var(--silver); }
.price-feature.missing::before { content: '–'; color: var(--silver); }
.btn-price {
  display: block;
  text-align: center;
  padding: 13px;
  border-radius: var(--r-md);
  font-size: .87rem;
  font-weight: 700;
  transition: all .25s;
}
.btn-price.outline {
  border: 2px solid var(--blue);
  color: var(--blue);
}
.btn-price.outline:hover { background: var(--bg-2); }
.btn-price.filled {
  background: var(--blue);
  color: var(--white);
  box-shadow: var(--shadow-blue);
}
.btn-price.filled:hover {
  background: #1d4ed8;
  transform: translateY(-1px);
  box-shadow: 0 10px 36px rgba(37,99,235,.4);
}

/* ── Contact ──────────────────────────────────────────────── */
.section-contact {
  padding: 100px 0;
  background: var(--white);
}
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 60px;
  align-items: start;
}
.contact-info h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--txt);
  margin-bottom: 12px;
}
.contact-info p {
  font-size: .88rem;
  color: var(--txt-3);
  line-height: 1.7;
  margin-bottom: 32px;
}
.contact-detail {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.contact-detail:first-of-type { border-top: 1px solid var(--border); }
.contact-detail-icon {
  width: 40px; height: 40px;
  background: var(--bg-2);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--blue);
}
.contact-detail-icon svg { width: 18px; height: 18px; }
.contact-detail-label { font-size: .7rem; color: var(--txt-3); font-weight: 600; text-transform: uppercase; letter-spacing: .05em; }
.contact-detail-val   { font-size: .87rem; color: var(--txt); font-weight: 600; }

.contact-form-wrap {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-2xl);
  padding: 40px;
}
.contact-form-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--txt);
  margin-bottom: 6px;
}
.contact-form-sub {
  font-size: .82rem;
  color: var(--txt-3);
  margin-bottom: 28px;
}
.cf-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.cf-full  { grid-column: 1 / -1; }
.cf-label {
  display: block;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--txt-2);
  margin-bottom: 6px;
}
.cf-input {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  font: inherit;
  font-size: .85rem;
  background: var(--white);
  color: var(--txt);
  transition: border-color .2s;
  outline: none;
}
.cf-input:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(37,99,235,.1); }
.cf-input::placeholder { color: var(--silver); }
textarea.cf-input { resize: vertical; min-height: 110px; }
.cf-select.cf-input { appearance: none; 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='%2394a3b8' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 36px; }
.btn-submit {
  width: 100%;
  padding: 14px;
  background: var(--blue);
  color: var(--white);
  font-size: .9rem;
  font-weight: 700;
  border-radius: var(--r-md);
  transition: all .25s;
  box-shadow: var(--shadow-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 6px;
}
.btn-submit:hover {
  background: #1d4ed8;
  transform: translateY(-1px);
  box-shadow: 0 12px 36px rgba(37,99,235,.4);
}
.btn-submit svg { width: 16px; height: 16px; }
.form-success {
  display: none;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: var(--r-md);
  padding: 16px 18px;
  color: var(--success);
  font-size: .85rem;
  font-weight: 600;
  text-align: center;
  margin-top: 14px;
}
.form-error-msg {
  display: none;
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: var(--r-md);
  padding: 12px 16px;
  color: #dc2626;
  font-size: .82rem;
  margin-top: 12px;
}
/* Honeypot */
.hp-field { position: absolute; left: -9999px; opacity: 0; pointer-events: none; }

/* ── Footer ───────────────────────────────────────────────── */
.ln-footer {
  background: var(--navy);
  color: rgba(255,255,255,.65);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand { }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-logo img {
  height: 32px;
  background: rgba(255,255,255,.9);
  border-radius: 8px;
  padding: 4px;
  box-shadow: 0 0 0 1px rgba(255,255,255,.15);
}
.footer-tagline { font-size: .82rem; color: rgba(255,255,255,.5); line-height: 1.7; max-width: 280px; margin-bottom: 20px; }
.footer-social { display: flex; gap: 8px; }
.social-btn {
  width: 36px; height: 36px;
  border-radius: var(--r-sm);
  border: 1px solid rgba(255,255,255,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.5);
  font-size: .78rem;
  font-weight: 700;
  transition: all .2s;
}
.social-btn:hover { border-color: var(--blue); color: var(--blue-xlt); background: rgba(37,99,235,.1); }

.footer-col h4 {
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--white);
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-size: .82rem;
  color: rgba(255,255,255,.5);
  padding: 4px 0;
  transition: color .2s;
}
.footer-col a:hover { color: var(--blue-xlt); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  font-size: .75rem;
  color: rgba(255,255,255,.35);
  flex-wrap: wrap;
  gap: 12px;
}

/* ── Animations ───────────────────────────────────────────── */
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .6; transform: scale(.85); }
}
@keyframes ping-pin {
  0% { transform: scale(1); opacity: .8; }
  100% { transform: scale(2.2); opacity: 0; }
}
@keyframes floatUp {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}
@keyframes floatCard1 {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-8px) rotate(1deg); }
}
@keyframes floatCard2 {
  0%, 100% { transform: translateY(0) rotate(1deg); }
  50% { transform: translateY(-6px) rotate(-1deg); }
}
@keyframes movePin1 {
  0%, 100% { transform: translate(0, 0); }
  30% { transform: translate(24px, -14px); }
  60% { transform: translate(48px, 8px); }
  80% { transform: translate(20px, 18px); }
}
@keyframes movePin2 {
  0%, 100% { transform: translate(0, 0); }
  40% { transform: translate(-20px, 14px); }
  70% { transform: translate(16px, -10px); }
}
@keyframes movePin3 {
  0%, 100% { transform: translate(0, 0); }
  35% { transform: translate(-18px, 20px); }
  65% { transform: translate(10px, -8px); }
}

/* Fade-in on scroll */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 1100px) {
  .services-grid   { grid-template-columns: repeat(3, 1fr); }
  .footer-grid     { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 900px) {
  .hero-inner        { grid-template-columns: 1fr; text-align: center; }
  .hero-visual       { display: none; }
  .hero-btns         { justify-content: center; }
  .hero-trust        { justify-content: center; }
  .features-grid     { grid-template-columns: 1fr 1fr; }
  .pricing-grid      { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .price-card.featured { transform: none; }
  .contact-layout    { grid-template-columns: 1fr; }
  .stats-bar .container { grid-template-columns: 1fr 1fr; }
  .how-steps         { grid-template-columns: 1fr; gap: 32px; }
  .how-steps::before { display: none; }
  .nav-links         { display: none; }
  .nav-toggle        { display: flex; }
}
@media (max-width: 640px) {
  .services-grid  { grid-template-columns: 1fr 1fr; }
  .features-grid  { grid-template-columns: 1fr; }
  .cf-grid        { grid-template-columns: 1fr; }
  .footer-grid    { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 24px 18px; }
  .footer-bottom  { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
}

/* ── WhatsApp Floating Button ─────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 6px 24px rgba(37,211,102,.45), 0 2px 8px rgba(0,0,0,.15);
  transition: transform .25s, box-shadow .25s;
}
.wa-float:hover {
  transform: scale(1.12);
  box-shadow: 0 10px 36px rgba(37,211,102,.55), 0 4px 12px rgba(0,0,0,.18);
}
.wa-float::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25D366;
  animation: waPulse 2.5s ease-out infinite;
  z-index: -1;
}
@keyframes waPulse {
  0%   { transform: scale(1);   opacity: .6; }
  70%  { transform: scale(1.5); opacity: 0; }
  100% { transform: scale(1.5); opacity: 0; }
}
@media (max-width: 480px) {
  .wa-float { width: 52px; height: 52px; bottom: 20px; right: 20px; }
  .wa-float svg { width: 24px; height: 24px; }
}
