/* ============================================================
   XRM inc. Smart Logistics — Main Stylesheet
   Version: 2.0 (GoDaddy production build)
   ============================================================ */

/* ============================================================
   DESIGN TOKENS
============================================================ */
:root {
  --navy:      #0A1E35;
  --navy-mid:  #0A4F78;
  --ocean:     #0E9DD1;
  --sky:       #7FD4F0;
  --amber:     #F5A623;
  --orange:    #E8610A;
  --offwhite:  #F2F5F7;
  --white:     #FFFFFF;
  --muted:     rgba(242,245,247,0.55);
  --card-bg:   rgba(255,255,255,0.04);
  --card-border: rgba(255,255,255,0.08);
  --ease-spring: cubic-bezier(0.32,0.72,0,1);
  --ease-out:    cubic-bezier(0.16,1,0.3,1);
}

/* ============================================================
   RESET & BASE
============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; overflow-x: hidden; max-width: 100%; }

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--navy);
  color: var(--offwhite);
  overflow-x: hidden;
}

img, video { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ============================================================
   NOISE GRAIN OVERLAY (fixed, pointer-none)
============================================================ */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 200;
  pointer-events: none;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px;
}

/* ============================================================
   SCROLL REVEAL — GPU-safe: transform + opacity only
============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease-out),
              transform 0.8s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }
.reveal-d5 { transition-delay: 0.5s; }

/* ============================================================
   FLOATING NAVBAR
============================================================ */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  justify-content: center;
  padding: 20px 16px;
  pointer-events: none;
}

.nav-pill {
  pointer-events: all;
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(10, 30, 53, 0.7);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid var(--card-border);
  border-radius: 100px;
  padding: 8px 8px 8px 20px;
  width: 100%;
  max-width: 960px;
  box-shadow: 0 4px 40px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.08);
  transition: background 0.4s var(--ease-spring), box-shadow 0.4s var(--ease-spring);
}
.nav-pill.scrolled {
  background: rgba(10, 30, 53, 0.92);
  box-shadow: 0 8px 48px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.06);
}

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav-logo img { height: 32px; width: auto; }
.nav-logo svg { height: 32px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: auto;
  margin-right: 12px;
}
.nav-links a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  padding: 8px 14px;
  border-radius: 100px;
  transition: color 0.25s var(--ease-spring), background 0.25s var(--ease-spring);
}
.nav-links a i { font-size: 15px; opacity: 0.75; }
.nav-links a:hover {
  color: var(--white);
  background: rgba(255,255,255,0.07);
}
.nav-links a:hover i { opacity: 1; }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 100px;
  transition: background 0.25s var(--ease-spring), transform 0.25s var(--ease-spring);
  white-space: nowrap;
  margin-left: auto; /* pushes CTA to the right */
}
.nav-cta:hover {
  background: #c94e06;
  transform: translateY(-1px);
}
.nav-cta:active { transform: scale(0.98); }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 100px;
  border: none;
  background: rgba(255,255,255,0.07);
  cursor: pointer;
  gap: 5px;
  position: relative;
  margin-left: auto;
}
.nav-hamburger span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.4s var(--ease-spring), opacity 0.3s ease;
  transform-origin: center;
  position: absolute;
}
.nav-hamburger span:nth-child(1) { transform: translateY(-5px); }
.nav-hamburger span:nth-child(2) { transform: translateY(0); }
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { transform: rotate(-45deg); }

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(10, 30, 53, 0.97);
  backdrop-filter: blur(32px);
  -webkit-backdrop-filter: blur(32px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease-spring);
}
.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}
.mobile-menu a {
  font-size: clamp(28px, 8vw, 48px);
  font-weight: 700;
  color: var(--offwhite);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out), color 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-align: center;
  padding: 8px 24px;
}
.mobile-menu a i { font-size: 0.72em; opacity: 0.6; }
.mobile-menu a:hover { color: var(--orange); }
.mobile-menu.open a { opacity: 1; transform: translateY(0); }
.mobile-menu.open a:nth-child(1) { transition-delay: 0.08s; }
.mobile-menu.open a:nth-child(2) { transition-delay: 0.13s; }
.mobile-menu.open a:nth-child(3) { transition-delay: 0.18s; }
.mobile-menu.open a:nth-child(4) { transition-delay: 0.23s; }
.mobile-menu-cta {
  margin-top: 24px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s var(--ease-out) 0.3s, transform 0.5s var(--ease-out) 0.3s;
}
.mobile-menu.open .mobile-menu-cta {
  opacity: 1;
  transform: translateY(0);
}
.mobile-menu-cta a {
  font-size: 16px !important;
  background: var(--orange);
  color: var(--white) !important;
  padding: 14px 36px !important;
  border-radius: 100px;
  font-weight: 700 !important;
  opacity: 1 !important;
  transform: none !important;
}

/* ============================================================
   EYEBROW TAG
============================================================ */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(14,157,209,0.12);
  border: 1px solid rgba(14,157,209,0.25);
  color: var(--ocean);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.eyebrow.amber {
  background: rgba(245,166,35,0.1);
  border-color: rgba(245,166,35,0.25);
  color: var(--amber);
}

/* ============================================================
   HERO SECTION — Full-bleed video, text overlay on right
============================================================ */
#inicio {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #ffffff;
}

/* Hero background — scroll-driven frame canvas */
.hero-canvas-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #ddf0f9; /* shown until first frame loads */
  overflow: hidden;
}

#heroCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}

/* Shown while frames preload */
.hero-fallback-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #ddf0f9 0%, #b3e0f5 100%);
}

/* Gradient overlay: right transparent → left navy semi-transparent (text panel) */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to left,
    rgba(10,30,53,0)    0%,
    rgba(10,30,53,0)    18%,
    rgba(10,30,53,0.52) 36%,
    rgba(10,30,53,0.72) 54%,
    rgba(10,30,53,0.78) 100%
  );
}

/* Ambient glow behind text — soft ocean tint, now on the LEFT (text side) */
.hero-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(14,157,209,0.06) 0%, transparent 70%);
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 2;
}

/* Content wrapper — anchors text to LEFT half */
.hero-content-wrap {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: flex-start;
}

/* Text block — sits over the white overlay on the left */
.hero-content {
  width: 50%;
  padding: 120px 32px 80px 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-h1 {
  font-size: clamp(40px, 7vw, 88px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--white);
  max-width: 780px;
  margin-bottom: 24px;
}
.hero-h1 em {
  font-style: normal;
  color: var(--sky);
}
.hero-h1 .accent-line {
  display: block;
  color: var(--sky);
}

.hero-p {
  font-size: clamp(16px, 2.2vw, 20px);
  font-weight: 400;
  line-height: 1.7;
  color: rgba(242,245,247,0.82);
  max-width: 540px;
  margin-bottom: 44px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--orange);
  color: var(--white);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: background 0.3s var(--ease-spring), transform 0.25s var(--ease-spring), box-shadow 0.3s var(--ease-spring);
  box-shadow: 0 4px 24px rgba(232,97,10,0.32);
}
.btn-primary .btn-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s var(--ease-spring), background 0.3s ease;
  flex-shrink: 0;
}
.btn-primary:hover {
  background: #c94e06;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(232,97,10,0.44);
}
.btn-primary:hover .btn-icon {
  transform: translate(2px, -1px) scale(1.1);
  background: rgba(255,255,255,0.22);
}
.btn-primary:active { transform: scale(0.98); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--offwhite);
  font-size: 15px;
  font-weight: 600;
  padding: 14px 24px;
  border-radius: 100px;
  border: 1px solid var(--card-border);
  background: var(--card-bg);
  transition: border-color 0.25s ease, background 0.25s ease, color 0.25s ease;
}
.btn-ghost:hover {
  border-color: rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.06);
  color: var(--white);
}

/* Hero ghost button — light variant for dark/navy hero background */
.hero-content .btn-ghost {
  color: var(--offwhite);
  border-color: rgba(242,245,247,0.28);
  background: rgba(242,245,247,0.08);
}
.hero-content .btn-ghost:hover {
  border-color: rgba(242,245,247,0.5);
  background: rgba(242,245,247,0.14);
  color: var(--white);
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 64px;
  padding-top: 40px;
  border-top: 1px solid rgba(242,245,247,0.18);
  width: 100%;
  flex-wrap: wrap;
}
.hero-stat-val {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1;
}
.hero-stat-val span { color: var(--sky); }
.hero-stat-label {
  font-size: 13px;
  font-weight: 500;
  color: rgba(242,245,247,0.6);
  margin-top: 4px;
}

/* ============================================================
   TRUST MARQUEE
============================================================ */
#marquee {
  background: #ffffff;
  border-top: 1px solid rgba(10,30,53,0.08);
  border-bottom: 1px solid rgba(10,30,53,0.08);
  padding: 18px 0;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 0;
  animation: marquee-scroll 28s linear infinite;
  width: max-content;
}
.marquee-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 36px;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy-mid);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
}
.marquee-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--ocean);
  flex-shrink: 0;
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================================
   ORANGE ACCENT BAND
============================================================ */
.orange-band {
  width: 100%;
  height: 6px;
  background: var(--orange);
  display: block;
  flex-shrink: 0;
}

/* ============================================================
   SECTIONS — BASE
============================================================ */
.section-light {
  background: var(--offwhite);
  color: #0A1E35;
}
.section-dark {
  background: var(--navy);
  color: var(--offwhite);
}
.section-mid {
  background: #0d2540;
  color: var(--offwhite);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-pad { padding: 100px 0; }

.section-header {
  margin-bottom: 64px;
}
.section-title {
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--white);
  max-width: 640px;
}
.section-title.dark { color: #0A1E35; }
.section-title em {
  font-style: normal;
  color: var(--ocean);
}
.section-subtitle {
  font-size: clamp(15px, 1.8vw, 17px);
  font-weight: 400;
  line-height: 1.7;
  color: var(--muted);
  max-width: 500px;
  margin-top: 16px;
}
.section-subtitle.dark { color: rgba(10,30,53,0.6); }

/* ============================================================
   ABOUT SECTION — Editorial Split
============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-body {
  font-size: 17px;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 32px;
}
.about-body strong { color: var(--white); font-weight: 600; }

.about-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}
.about-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(14,157,209,0.1);
  border: 1px solid rgba(14,157,209,0.2);
  color: var(--sky);
  font-size: 13px;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: 100px;
}

/* About image / placeholder side */
.about-visual {
  position: relative;
}
.about-img-shell {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--card-border);
  border-radius: 24px;
  padding: 8px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.3);
}
.about-img-inner {
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
}
.about-img-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* Floating accent card on about image */
.about-float-card {
  position: absolute;
  bottom: -20px;
  left: -24px;
  background: var(--ocean);
  border-radius: 16px;
  padding: 16px 20px;
  box-shadow: 0 12px 40px rgba(14,157,209,0.35);
}
.about-float-card .val {
  font-size: 28px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.about-float-card .lbl {
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  margin-top: 4px;
}

/* ============================================================
   IMAGE PLACEHOLDER (reusable)
============================================================ */
.img-placeholder {
  width: 100%;
  background: rgba(14,157,209,0.05);
  border: 1.5px dashed rgba(14,157,209,0.25);
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: rgba(14,157,209,0.5);
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.04em;
  padding: 24px 16px;
  overflow: hidden;
}
.img-placeholder .ph-icon { font-size: 28px; opacity: 0.5; }
.img-placeholder .ph-label { color: var(--ocean); opacity: 0.7; font-size: 13px; }
.img-placeholder .ph-size { font-size: 11px; opacity: 0.4; }

.section-light .img-placeholder {
  background: rgba(10,79,120,0.05);
  border-color: rgba(10,79,120,0.2);
  color: rgba(10,79,120,0.45);
}
.section-light .img-placeholder .ph-label { color: var(--navy-mid); }

/* ============================================================
   SERVICES — Bento Grid
============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card:first-child { grid-column: 1 / -1; }

.service-card {
  background: var(--white);
  border: 1px solid rgba(10,30,53,0.08);
  border-radius: 24px;
  overflow: hidden;
  transition: transform 0.4s var(--ease-spring), box-shadow 0.4s var(--ease-spring);
  box-shadow: 0 2px 16px rgba(10,30,53,0.06);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(10,30,53,0.12);
}

.service-card-img { width: 100%; overflow: hidden; }
.service-card-img img {
  width: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.6s var(--ease-spring);
}
.service-card:hover .service-card-img img { transform: scale(1.04); }
.service-card:first-child .service-card-img img { aspect-ratio: 21/9; }
.service-card:not(:first-child) .service-card-img img { aspect-ratio: 4/3; }
.service-card-img .img-placeholder { border-radius: 0; border: none; border-bottom: 1.5px dashed rgba(10,79,120,0.2); }
.service-card:first-child .service-card-img .img-placeholder { aspect-ratio: 16/7; }
.service-card:not(:first-child) .service-card-img .img-placeholder { aspect-ratio: 4/3; }

.service-card-body { padding: 24px 28px 28px; }
.service-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(14,157,209,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--ocean);
  font-size: 22px;
}
.service-title {
  font-size: 18px;
  font-weight: 700;
  color: #0A1E35;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.service-desc {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(10,30,53,0.58);
}

/* ============================================================
   INDUSTRIES SECTION
============================================================ */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.industry-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.4s var(--ease-spring), border-color 0.3s ease;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}
.industry-card:hover {
  transform: translateY(-5px);
  border-color: rgba(14,157,209,0.3);
}
.industry-card-img img {
  width: 100%;
  display: block;
  aspect-ratio: 3/2;
  object-fit: cover;
  transition: transform 0.6s var(--ease-spring);
}
.industry-card:hover .industry-card-img img { transform: scale(1.05); }
.industry-card-img .img-placeholder {
  border-radius: 0;
  border: none;
  border-bottom: 1px solid var(--card-border);
  aspect-ratio: 3/2;
}
.industry-card-body { padding: 20px 22px 24px; }
.industry-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.industry-desc {
  font-size: 13px;
  line-height: 1.6;
  color: var(--muted);
}

/* ============================================================
   BENEFITS / PROCESS
============================================================ */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
}
.benefits-grid::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(10,79,120,0.2), transparent);
  z-index: 0;
}
.benefit-step {
  position: relative;
  z-index: 1;
  padding: 0 16px;
  text-align: center;
}
.benefit-num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid rgba(14,157,209,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 18px;
  font-weight: 800;
  color: var(--ocean);
  box-shadow: 0 4px 20px rgba(10,30,53,0.08);
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s var(--ease-spring);
}
.benefit-step:hover .benefit-num {
  background: var(--ocean);
  color: var(--white);
  border-color: var(--ocean);
  transform: scale(1.08);
}
.benefit-title {
  font-size: 15px;
  font-weight: 700;
  color: #0A1E35;
  margin-bottom: 8px;
}
.benefit-desc {
  font-size: 13px;
  line-height: 1.6;
  color: rgba(10,30,53,0.55);
}

/* ============================================================
   FAQ SECTION
============================================================ */
.faq-list {
  max-width: 780px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--card-border);
}
.faq-item:first-child {
  border-top: 1px solid var(--card-border);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  color: var(--white);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
  letter-spacing: -0.01em;
  line-height: 1.4;
  transition: color 0.2s ease;
}
.faq-question:hover { color: var(--sky); }
.faq-question i {
  font-size: 22px;
  color: var(--ocean);
  flex-shrink: 0;
  transition: transform 0.35s var(--ease-spring);
}
.faq-item.open .faq-question i { transform: rotate(45deg); }
.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.45s var(--ease-out);
}
.faq-answer-inner {
  padding: 0 0 28px;
  font-size: 15px;
  line-height: 1.8;
  color: var(--muted);
  max-width: 680px;
}
.faq-item.open .faq-answer { max-height: 500px; }

/* ============================================================
   CLIENTS LOGOS
============================================================ */
#clientes {
  background: var(--offwhite);
  border-top: 1px solid rgba(10,30,53,0.08);
  border-bottom: 1px solid rgba(10,30,53,0.08);
}
#clientes .section-title { color: var(--navy); }
#clientes .eyebrow { background: rgba(14,157,209,0.1); border-color: rgba(14,157,209,0.2); color: var(--ocean); }
.clients-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.client-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.client-logo {
  width: 100%;
  background: var(--white);
  border: 1px solid rgba(10,30,53,0.1);
  border-radius: 14px;
  aspect-ratio: 3/2;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.client-logo:hover {
  border-color: rgba(10,30,53,0.2);
  box-shadow: 0 4px 16px rgba(10,30,53,0.08);
}
.client-logo img {
  max-width: 75%;
  max-height: 65%;
  object-fit: contain;
  opacity: 0.82;
  transition: opacity 0.3s ease;
}
.client-item:hover .client-logo img { opacity: 1; }
.client-name {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(10,30,53,0.45);
  text-align: center;
}

/* ============================================================
   TESTIMONIALS
============================================================ */
/* ── Carousel outer — positions arrows absolutely on sides ── */
.testi-carousel-outer {
  position: relative;
  max-width: 1060px;
  margin: 0 auto;
}

/* Clipping window — hides overflow of the sliding track */
.testi-slider {
  overflow: hidden;
}

/* Flex row — all 6 cards side by side; JS moves it with px translateX */
.testi-track {
  display: flex;
  will-change: transform;
}

/* ── Each card occupies 1/3 of slider width; gap via inner padding ── */
.testi-card {
  flex: 0 0 33.333%;
  box-sizing: border-box;
  padding: 0 10px;          /* creates the visual gap between cards */
}

/* ── Actual white card box ── */
.testi-card-inner {
  background: var(--white);
  border: 1px solid rgba(10,30,53,0.07);
  border-radius: 20px;
  padding: 28px 28px 24px;
  box-shadow: 0 6px 36px rgba(5,20,45,0.18);
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* Opening quote mark */
.testi-quote {
  font-size: 44px;
  line-height: 1;
  color: var(--ocean);
  opacity: 0.28;
  margin-bottom: 8px;
  font-family: Georgia, serif;
  user-select: none;
  flex-shrink: 0;
}

/* Quote body — grows to fill card height */
.testi-text {
  flex: 1;
  margin-bottom: 20px;
}
.testi-text p {
  font-size: 14px;
  line-height: 1.78;
  color: rgba(10,30,53,0.65);
  font-style: italic;
  margin-bottom: 10px;
}
.testi-text p:last-child { margin-bottom: 0; }

/* Author — pinned at bottom with a hairline separator */
.testi-author {
  border-top: 1px solid rgba(10,30,53,0.08);
  padding-top: 14px;
  flex-shrink: 0;
}
.testi-name {
  font-size: 13px;
  font-weight: 400;
  color: rgba(10,30,53,0.5);
}
.testi-company {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  margin-top: 2px;
}

/* ── Arrow buttons — absolute on sides of outer container ── */
.testi-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(10,79,120,0.85);
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--white);
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease;
  backdrop-filter: blur(4px);
}
.testi-prev { left: -22px; }
.testi-next { right: -22px; }
.testi-btn:hover { background: var(--navy-mid); }

/* ── Dot indicators (pill style) ── */
.testi-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 7px;
  margin-top: 28px;
}
.testi-dot {
  height: 7px;
  width: 7px;
  border-radius: 100px;
  background: rgba(255,255,255,0.28);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.3s ease, width 0.3s ease;
}
.testi-dot.active {
  background: var(--white);
  width: 22px;
}

/* Testimonials section — #0A4F78 dark background */
#testimonios .section-title { color: var(--white); }
#testimonios .section-title em { color: var(--sky); }
#testimonios .eyebrow { background: rgba(127,212,240,0.12); border-color: rgba(127,212,240,0.22); color: var(--sky); }

/* ============================================================
   CTA SECTION — frame animation + right-aligned text (mirrors hero)
============================================================ */
#cta {
  background: #ffffff;
  position: relative;
  overflow: hidden;
  min-height: 580px;
  display: flex;
  align-items: stretch;
}

/* Full-bleed canvas layer */
.cta-canvas-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: #ffffff;
}
#ctaCanvas {
  width: 100%;
  height: 100%;
  display: block;
}
/* Fallback shown before first frame loads */
.cta-fallback-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: #f0f6fa;
}

/* Gradient overlay: transparent left → white right (same as hero) */
.cta-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to right,
    rgba(255,255,255,0)    0%,
    rgba(255,255,255,0)    26%,
    rgba(255,255,255,0.68) 44%,
    rgba(255,255,255,0.94) 60%,
    rgba(255,255,255,0.99) 100%
  );
  pointer-events: none;
}

/* Content wrapper — pushes text to right half (mirrors hero) */
.cta-content-wrap {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

/* Text block — right side, dark on white */
.cta-content {
  width: 50%;
  padding: 100px 0 80px 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.cta-title {
  font-size: clamp(32px, 4.5vw, 58px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.08;
  color: var(--navy);
  margin-bottom: 20px;
}
.cta-title em { font-style: normal; color: var(--ocean); }
.cta-sub {
  font-size: 17px;
  color: rgba(10,30,53,0.62);
  line-height: 1.7;
  margin-bottom: 44px;
}
.cta-actions {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  flex-wrap: wrap;
}
.cta-contact-strip {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 28px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(10,30,53,0.1);
  flex-wrap: wrap;
}
.cta-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(10,30,53,0.5);
  transition: color 0.2s ease;
}
.cta-contact-item:hover { color: var(--navy); }
.cta-contact-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(14,157,209,0.08);
  border: 1px solid rgba(14,157,209,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ocean);
  font-size: 16px;
  flex-shrink: 0;
}

/* ============================================================
   CONTACT FORM SECTION
============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.contact-info-title {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 16px;
}
.contact-info-sub {
  font-size: 16px;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 40px;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.contact-detail-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(14,157,209,0.1);
  border: 1px solid rgba(14,157,209,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ocean);
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-detail-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--ocean);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}
.contact-detail-value {
  font-size: 15px;
  font-weight: 500;
  color: var(--white);
}
.contact-detail-value a {
  color: var(--white);
  transition: color 0.2s ease;
}
.contact-detail-value a:hover { color: var(--sky); }

/* Form Card */
.form-shell {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--card-border);
  border-radius: 28px;
  padding: 10px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06), 0 24px 80px rgba(0,0,0,0.25);
}
.form-inner {
  background: rgba(10,30,53,0.6);
  border-radius: 20px;
  padding: 36px 32px;
  border: 1px solid rgba(255,255,255,0.05);
}
.form-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group { margin-bottom: 18px; }
.form-group.full { grid-column: 1 / -1; }
.form-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 13px 16px;
  color: var(--white);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 14px;
  font-weight: 400;
  outline: none;
  transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
  appearance: none;
}
.form-input::placeholder,
.form-textarea::placeholder { color: rgba(255,255,255,0.25); }
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--ocean);
  background: rgba(14,157,209,0.05);
  box-shadow: 0 0 0 3px rgba(14,157,209,0.12);
}
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237FD4F0' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
  cursor: pointer;
}
.form-select option { background: #0d2540; color: var(--white); }
.form-textarea { resize: vertical; min-height: 110px; line-height: 1.6; }
.form-submit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--ocean);
  color: var(--white);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  padding: 15px 28px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: background 0.3s var(--ease-spring), transform 0.25s var(--ease-spring), box-shadow 0.3s ease;
  box-shadow: 0 4px 24px rgba(14,157,209,0.3);
  margin-top: 8px;
}
.form-submit .btn-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s var(--ease-spring);
}
.form-submit:hover {
  background: #0e8ab8;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(14,157,209,0.4);
}
.form-submit:hover .btn-icon { transform: translate(2px, -1px) scale(1.1); }
.form-submit:active { transform: scale(0.98); }
.form-submit:disabled { opacity: 0.65; cursor: not-allowed; transform: none; }

.form-note {
  font-size: 12px;
  color: var(--muted);
  text-align: center;
  margin-top: 14px;
  opacity: 0.6;
}
/* Hide reCAPTCHA badge — disclosure text shown near submit button instead */
.grecaptcha-badge { visibility: hidden !important; }

/* Form error state */
.form-input.error,
.form-select.error,
.form-textarea.error {
  border-color: #e85d5d;
  box-shadow: 0 0 0 3px rgba(232,93,93,0.1);
}

/* Server-side error banner */
.form-error-msg {
  display: none;
  margin-top: 14px;
  padding: 12px 16px;
  border-radius: 8px;
  background: rgba(232,93,93,0.1);
  border: 1px solid rgba(232,93,93,0.25);
  color: #f87171;
  font-size: 13px;
  line-height: 1.5;
  text-align: center;
}
.form-error-msg a { color: #f87171; text-decoration: underline; }
/* Success message */
.form-success {
  display: none;
  text-align: center;
  padding: 32px;
}
.form-success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(14,157,209,0.15);
  border: 2px solid rgba(14,157,209,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 28px;
  color: var(--ocean);
}
.form-success h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.form-success p {
  font-size: 14px;
  color: var(--muted);
}

/* ============================================================
   FLOATING ACTION BUTTONS (WhatsApp + Go-to-top)
============================================================ */
.fab-whatsapp {
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: 500;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: transform 0.3s var(--ease-spring), box-shadow 0.3s ease;
  text-decoration: none;
}
.fab-whatsapp:hover {
  transform: translateY(-3px) scale(1.06);
  box-shadow: 0 8px 28px rgba(37,211,102,0.55);
}

.fab-top {
  position: fixed;
  bottom: 96px;
  right: 24px;
  z-index: 500;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--offwhite);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0,0,0,0.35);
  transition: opacity 0.3s ease, transform 0.3s var(--ease-spring), background 0.25s ease;
  opacity: 0;
  pointer-events: none;
}
.fab-top.visible {
  opacity: 1;
  pointer-events: all;
}
.fab-top:hover {
  background: var(--ocean);
  transform: translateY(-3px);
}

/* ============================================================
   FOOTER
============================================================ */
#footer {
  background: #060f1e;
  border-top: 1px solid var(--card-border);
}
.footer-top { padding: 64px 0 48px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
}
.footer-brand-logo img { height: 36px; width: auto; margin-bottom: 16px; }
.footer-brand-logo svg { height: 36px; width: auto; margin-bottom: 16px; }
.footer-tagline {
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
  max-width: 280px;
  margin-bottom: 28px;
}
.footer-social { display: flex; gap: 10px; }
.footer-social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--card-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 17px;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.footer-social-link:hover {
  background: rgba(14,157,209,0.12);
  color: var(--ocean);
  border-color: rgba(14,157,209,0.3);
}
.footer-col-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 14px;
  color: var(--muted);
  transition: color 0.2s ease;
}
.footer-links a:hover { color: var(--white); }
.footer-bottom {
  padding: 24px 0;
  border-top: 1px solid var(--card-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-copy { font-size: 13px; color: rgba(242,245,247,0.3); }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a {
  font-size: 13px;
  color: rgba(242,245,247,0.3);
  transition: color 0.2s ease;
}
.footer-legal a:hover { color: var(--muted); }

/* Website attribution strip */
.footer-attr {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 0 40px;
  border-top: 1px solid var(--card-border);
  font-size: 11px;
  color: rgba(242,245,247,0.40);
  letter-spacing: 0.03em;
}
.footer-attr a {
  display: inline-flex;
  align-items: center;
  opacity: 0.55;
  transition: opacity 0.2s ease;
}
.footer-attr a:hover { opacity: 0.90; }
.footer-attr img { height: 15px; width: auto; display: block; }

/* ============================================================
   LANGUAGE SWITCHER
============================================================ */
.nav-lang {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  margin-left: 8px;
  padding-left: 12px;
  border-left: 1px solid rgba(255,255,255,0.15);
  flex-shrink: 0;
}
.nav-lang-btn {
  color: rgba(255,255,255,0.4);
  transition: color 0.2s ease;
  text-decoration: none;
  padding: 2px 0;
}
.nav-lang-btn:hover { color: rgba(255,255,255,0.8); }
.nav-lang-btn.active { color: var(--sky); }
.nav-lang-sep { color: rgba(255,255,255,0.18); font-weight: 300; }

/* ============================================================
   RESPONSIVE — TABLET (≤ 991px)
============================================================ */
@media (max-width: 991px) {
  .section-pad { padding: 80px 0; }

  .hero-content { width: 60%; padding: 110px 24px 60px 0; }
  .hero-content-wrap { padding: 0 32px; }

  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-visual { order: -1; }
  .about-float-card { bottom: -16px; left: -12px; }

  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .service-card:first-child { grid-column: 1 / -1; }

  .industries-grid { grid-template-columns: repeat(2, 1fr); }

  .benefits-grid { grid-template-columns: repeat(3, 1fr); gap: 32px; }
  .benefits-grid::before { display: none; }

  /* Carousel tablet: 2 cards visible */
  .testi-card { flex: 0 0 50%; }

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

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }

  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  .clients-grid { grid-template-columns: repeat(3, 1fr); }

  /* CTA tablet — same right-aligned layout, slightly narrower content */
  .cta-content { width: 58%; padding: 90px 0 60px 24px; }
  .cta-content-wrap { padding: 0 32px; }
}

/* ============================================================
   RESPONSIVE — MOBILE (≤ 767px)
============================================================ */
@media (max-width: 767px) {
  .section-pad { padding: 64px 0; }
  .container { padding: 0 16px; }
  .section-header { margin-bottom: 40px; }

  /* Hero mobile — text first (top), video canvas below */
  #inicio {
    display: flex;
    flex-direction: column;
    min-height: auto;
    overflow: visible;
  }
  /* Text block comes first visually */
  .hero-content-wrap {
    order: -1;
    position: relative;
    /* Top padding clears the fixed navbar (~80px) + breathing room */
    padding: 96px 20px 40px;
    justify-content: flex-start;
    align-items: flex-start;
    min-height: auto;
    background: var(--navy);
  }
  /* Video canvas sits below the text */
  .hero-canvas-bg {
    order: 1;
    position: relative;
    inset: auto;
    width: 100%;
    height: 56vw;
    min-height: 200px;
    max-height: 320px;
    flex-shrink: 0;
  }
  .hero-overlay { display: none; }
  .hero-glow { display: none; }
  .hero-content {
    width: 100%;
    padding: 0;
  }
  .hero-h1 { font-size: clamp(32px, 9vw, 48px); }
  .hero-stats { gap: 20px; margin-top: 32px; padding-top: 24px; flex-wrap: wrap; }

  /* CTA mobile — stacked: canvas on top, text below */
  #cta {
    flex-direction: column;
    min-height: auto;
  }
  .cta-canvas-bg {
    position: relative;
    inset: auto;
    width: 100%;
    height: 52vw;
    min-height: 200px;
    max-height: 320px;
    flex-shrink: 0;
  }
  #ctaCanvas { width: 100%; height: 100%; display: block; }
  .cta-overlay { display: none; }
  .cta-content-wrap {
    position: relative;
    padding: 32px 20px 52px;
    justify-content: flex-start;
    align-items: flex-start;
    min-height: auto;
    background: #ffffff;
  }
  .cta-content { width: 100%; padding: 0; }

  .services-grid { grid-template-columns: 1fr; }
  .service-card:first-child { grid-column: 1 / -1; }
  .service-card:first-child .service-card-img img { aspect-ratio: 16/9; }

  .industries-grid { grid-template-columns: 1fr 1fr; gap: 12px; }

  .benefits-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }

  /* Carousel mobile: 1 card visible, no side arrows */
  .testi-card { flex: 0 0 100%; padding: 0; }
  .testi-btn { display: none; }

  .cta-actions { flex-direction: column; width: 100%; }
  .cta-actions .btn-primary,
  .cta-actions .btn-ghost { width: 100%; justify-content: center; }
  .cta-contact-strip { flex-direction: column; gap: 16px; }

  .form-row { grid-template-columns: 1fr; }
  .form-inner { padding: 24px 20px; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-grid > div:first-child { grid-column: 1; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-legal { justify-content: center; }

  .about-float-card { position: static; margin-top: 16px; display: inline-flex; flex-direction: row; align-items: center; gap: 12px; }

  .clients-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }

  .faq-question { font-size: 15px; }

  .fab-top {
    bottom: 28px;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
  }
  .fab-top.visible:hover {
    transform: translateX(-50%) translateY(-3px);
  }
}

/* ============================================================
   RESPONSIVE — TINY (≤ 478px)
============================================================ */
@media (max-width: 478px) {
  .industries-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .nav-pill { padding: 7px 7px 7px 16px; }
  .btn-primary,
  .btn-ghost { width: 100%; justify-content: center; }
  .hero-actions { width: 100%; }
}
