/* ============================================================
   COXIPÓ CONTAINER — institutional landing
   Palette: deep petrol blue + orange CTA + neutral whites/grays
   Type:    Barlow Condensed (display) / Barlow (body) / JetBrains Mono (labels)
   ============================================================ */

:root {
  --blue-950: #08192a;
  --blue-900: #0f2a3b;
  --blue-800: #143548;
  --blue-700: #1b4660;
  --blue-600: #245d80;
  --orange:   #f47b20;
  --orange-d: #d8651a;
  --amber:    #fbbf24;

  --ink:      #0b1620;
  --ink-2:    #2a3845;
  --ink-3:    #586876;

  --paper:    #ffffff;
  --paper-2:  #f6f7f9;
  --paper-3:  #eceff3;
  --line:     #dfe4ea;

  --wa-green: #25d366;
  --wa-green-d: #128c7e;

  --radius:   14px;
  --radius-sm: 8px;
  --shadow-sm: 0 1px 2px rgba(8,25,42,.06), 0 2px 6px rgba(8,25,42,.04);
  --shadow:    0 4px 14px rgba(8,25,42,.08), 0 1px 3px rgba(8,25,42,.06);
  --shadow-lg: 0 20px 50px rgba(8,25,42,.18), 0 6px 18px rgba(8,25,42,.10);

  --font-display: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  --font-body:    'Barlow', system-ui, -apple-system, sans-serif;
  --font-mono:    'JetBrains Mono', ui-monospace, monospace;

  --container: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ============== HEADER ============== */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(180%) blur(10px);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .2s ease, border-color .2s ease, background .2s ease;
}
.site-header.scrolled {
  box-shadow: 0 6px 20px rgba(8,25,42,.08);
  border-color: var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 70px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.brand-logo {
  display: block;
  height: 46px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
}
.brand-logo--footer {
  height: 52px;
  max-width: 260px;
}
.brand-mark {
  display: inline-flex;
  flex-direction: column;
  gap: 3px;
  padding: 8px;
  background: var(--blue-900);
  border-radius: 6px;
}
.brand-bar {
  display: block;
  width: 22px;
  height: 3px;
  background: var(--paper);
  border-radius: 2px;
}
.brand-bar:nth-child(2) { background: var(--orange); width: 16px; }
.brand-bar:nth-child(3) { width: 22px; }
.brand--footer .brand-mark { background: rgba(255,255,255,.08); }
.brand--footer .brand-bar { background: rgba(255,255,255,.85); }
.brand--footer .brand-bar:nth-child(2) { background: var(--orange); }

.brand-text {
  display: inline-flex;
  flex-direction: column;
  line-height: 1;
}
.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: .01em;
  color: var(--blue-900);
  text-transform: uppercase;
}
.brand-name strong {
  color: var(--orange);
  font-weight: 800;
}
.brand-sub {
  margin-top: 4px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: .14em;
  color: var(--ink-3);
  text-transform: uppercase;
}
.brand--footer .brand-name { color: var(--paper); }
.brand--footer .brand-sub  { color: rgba(255,255,255,.55); }

.nav {
  display: flex;
  gap: 4px;
  margin-left: auto;
}
.nav a {
  position: relative;
  padding: 10px 14px;
  font-weight: 600;
  font-size: 15px;
  color: var(--ink-2);
  border-radius: 6px;
  transition: color .15s ease, background .15s ease;
}
.nav a:hover {
  color: var(--blue-900);
  background: var(--paper-2);
}
.nav-cta-mobile { display: none; }

.header-cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
  padding: 0;
}
.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--blue-900);
  transition: transform .2s ease, opacity .2s ease;
}
.menu-toggle.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ============== BUTTONS ============== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .01em;
  padding: 12px 20px;
  border-radius: 8px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .12s ease, box-shadow .15s ease, background .15s ease, color .15s ease, border-color .15s ease;
  text-align: center;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-sm { padding: 9px 14px; font-size: 14px; }
.btn-lg { padding: 16px 26px; font-size: 17px; border-radius: 10px; }

.btn-primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 6px 18px rgba(244,123,32,.32);
}
.btn-primary:hover { background: var(--orange-d); box-shadow: 0 10px 24px rgba(244,123,32,.36); }

.btn-ghost {
  background: rgba(255,255,255,.08);
  color: #fff;
  border-color: rgba(255,255,255,.32);
}
.btn-ghost:hover { background: rgba(255,255,255,.16); border-color: rgba(255,255,255,.5); }

.btn-outline {
  background: transparent;
  color: var(--blue-900);
  border-color: var(--blue-900);
}
.btn-outline:hover { background: var(--blue-900); color: #fff; }

.btn-outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.4);
}
.btn-outline-light:hover { background: rgba(255,255,255,.12); border-color: #fff; }

.btn-whatsapp {
  background: var(--wa-green);
  color: #fff;
  box-shadow: 0 6px 18px rgba(37,211,102,.32);
}
.btn-whatsapp:hover { background: var(--wa-green-d); }

/* ============== HERO ============== */
.hero {
  position: relative;
  padding: 130px 0 0;
  color: #fff;
  overflow: hidden;
  background: var(--blue-950);
  isolation: isolate;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.hero-photo {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, #11334a 0%, #0a1d2e 60%, #061522 100%);
  overflow: hidden;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .55;
  filter: saturate(1.05);
}
.hero-corrugated {
  position: absolute;
  top: 50%;
  left: 40%;
  width: 140%;
  height: 280px;
  transform: translateY(-50%) rotate(-3deg);
  background:
    repeating-linear-gradient(
      90deg,
      rgba(255,255,255,.04) 0 6px,
      rgba(255,255,255,.10) 6px 7px,
      rgba(0,0,0,.18) 7px 14px
    ),
    linear-gradient(180deg, #1d4866 0%, #0e2c41 100%);
  border-top: 3px solid rgba(0,0,0,.4);
  border-bottom: 3px solid rgba(0,0,0,.4);
  opacity: .65;
}
.hero-corrugated--2 {
  top: 30%;
  left: 55%;
  height: 180px;
  transform: translateY(-50%) rotate(-3deg);
  background:
    repeating-linear-gradient(
      90deg,
      rgba(255,255,255,.04) 0 6px,
      rgba(255,255,255,.10) 6px 7px,
      rgba(0,0,0,.20) 7px 14px
    ),
    linear-gradient(180deg, var(--orange) 0%, #a04812 100%);
  opacity: .55;
}
.hero-corrugated--3 {
  top: 72%;
  left: 25%;
  height: 200px;
  background:
    repeating-linear-gradient(
      90deg,
      rgba(255,255,255,.04) 0 6px,
      rgba(255,255,255,.10) 6px 7px,
      rgba(0,0,0,.20) 7px 14px
    ),
    linear-gradient(180deg, #2a5a7c 0%, #15364e 100%);
  opacity: .5;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(80% 60% at 20% 30%, rgba(8,25,42,.2) 0%, rgba(8,25,42,.85) 100%),
    linear-gradient(180deg, rgba(8,25,42,.5) 0%, rgba(8,25,42,.92) 100%);
}
.photo-label {
  position: absolute;
  bottom: 16px;
  right: 16px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(255,255,255,.35);
  letter-spacing: .1em;
  text-transform: lowercase;
}

.hero-inner {
  position: relative;
  padding: 40px 24px 90px;
  max-width: 1100px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 100px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
}
.hero-eyebrow .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 4px rgba(244,123,32,.25);
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(40px, 7vw, 84px);
  line-height: .98;
  letter-spacing: -.005em;
  margin: 22px 0 18px;
  text-transform: uppercase;
  text-wrap: balance;
}
.hl { color: var(--orange); }
.hl-orange { color: var(--orange); }
.hl-blue   { color: var(--blue-700); }

.hero-sub {
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 500;
  max-width: 740px;
  margin: 0 0 14px;
  color: rgba(255,255,255,.92);
  text-wrap: pretty;
}
.hero-support {
  font-size: 16px;
  max-width: 680px;
  margin: 0 0 30px;
  color: rgba(255,255,255,.72);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 36px;
}

.hero-seals {
  display: flex;
  flex-wrap: wrap;
  gap: 22px 28px;
  padding: 0;
  margin: 0;
  list-style: none;
  font-size: 14px;
  color: rgba(255,255,255,.85);
}
.hero-seals li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}
.seal-check {
  display: inline-flex;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
}

.hero-phone {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-top: 32px;
  margin-bottom: 28px;
  padding: 24px 36px;
  background: rgba(244,123,32,.12);
  border: 2px solid var(--orange);
  border-radius: var(--radius);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 0 40px rgba(244,123,32,.15), inset 0 0 30px rgba(244,123,32,.05);
}
.hero-phone-link {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(36px, 5vw, 56px);
  color: #fff;
  letter-spacing: .03em;
  text-transform: uppercase;
  transition: color .15s ease, text-shadow .15s ease;
}
.hero-phone-link:hover {
  color: var(--orange);
  text-shadow: 0 0 30px rgba(244,123,32,.5);
}
.hero-phone-link svg {
  flex-shrink: 0;
  width: clamp(28px, 4vw, 42px);
  height: clamp(28px, 4vw, 42px);
  color: var(--orange);
  animation: phonePulse 2s ease-in-out infinite;
}
@keyframes phonePulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.15) rotate(-8deg); }
}
.hero-phone-label {
  font-size: 16px;
  color: rgba(255,255,255,.8);
  font-weight: 600;
}

.hero-strip {
  position: relative;
  margin-top: 70px;
  background: var(--blue-900);
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 4px solid var(--orange);
}
.hero-strip-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 24px 24px;
}
.hero-strip-inner > div {
  padding: 6px 24px;
  border-left: 1px solid rgba(255,255,255,.1);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero-strip-inner > div:first-child { border-left: 0; padding-left: 0; }
.hero-strip-inner strong {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: .01em;
  color: var(--orange);
  text-transform: uppercase;
}
.hero-strip-inner span {
  font-size: 13px;
  color: rgba(255,255,255,.75);
}

/* ============== SECTIONS BASE ============== */
.section {
  padding: 90px 0;
  position: relative;
}
.section-light { background: var(--paper); }
.section-soft  { background: var(--paper-2); }
.section-dark  {
  background: var(--blue-900);
  color: #fff;
}
.section-contact {
  background: linear-gradient(180deg, var(--blue-900) 0%, var(--blue-950) 100%);
  color: #fff;
}
.section-form {
  background:
    linear-gradient(180deg, var(--paper-2) 0%, var(--paper) 100%);
}

.section-head {
  max-width: 760px;
  margin: 0 0 50px;
}
.section-head--light { color: #fff; }
.section-eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
  padding-bottom: 6px;
  border-bottom: 2px solid var(--orange);
}
.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(34px, 4.5vw, 56px);
  line-height: 1;
  text-transform: uppercase;
  margin: 0 0 16px;
  letter-spacing: -.005em;
  text-wrap: balance;
}
.section-lead {
  font-size: 18px;
  margin: 0;
  color: var(--ink-2);
  max-width: 680px;
  text-wrap: pretty;
}
.section-head--light .section-lead { color: rgba(255,255,255,.78); }

/* ============== GRID UTILS ============== */
.grid { display: grid; gap: 22px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* ============== BENEFIT CARDS ============== */
.card-benefit {
  padding: 28px 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform .15s ease, box-shadow .2s ease, border-color .15s ease;
}
.card-benefit:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: var(--blue-700);
}
.icon-box {
  display: inline-flex;
  width: 52px;
  height: 52px;
  border-radius: 10px;
  background: var(--blue-900);
  color: var(--orange);
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.icon-box svg { width: 26px; height: 26px; }
.card-benefit h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  text-transform: uppercase;
  margin: 0 0 6px;
  color: var(--blue-900);
  letter-spacing: .01em;
}
.card-benefit p {
  margin: 0;
  color: var(--ink-2);
  font-size: 15px;
}

/* ============== SOLUTION CARDS ============== */
.solutions-grid { gap: 20px; }
.card-solution {
  background: var(--paper);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .18s ease, box-shadow .2s ease;
  display: flex;
  flex-direction: column;
}
.section-dark .card-solution { color: var(--ink); }
.card-solution:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.card-photo {
  position: relative;
  height: 180px;
  overflow: hidden;
  background: var(--paper-3);
}

/* ============== CARD CAROUSEL ============== */
.card-carousel {
  position: relative;
  height: 180px;
  overflow: hidden;
  background: var(--paper-3);
}
.carousel-track {
  display: flex;
  height: 100%;
  transition: transform .45s cubic-bezier(.22, .61, .36, 1);
  will-change: transform;
}
.carousel-slide {
  position: relative;
  flex: 0 0 100%;
  height: 100%;
}
.carousel-slide .corrugated,
.carousel-slide .corrugated--blue,
.carousel-slide .corrugated--gray,
.carousel-slide .corrugated--orange {
  position: absolute;
  inset: 0;
}
.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, .92);
  color: var(--blue-900);
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .25);
  opacity: 0;
  transition: opacity .2s ease, background .15s;
  z-index: 2;
  padding: 0 0 2px;
}
.carousel-arrow:hover { background: #fff; }
.carousel-prev { left: 8px; }
.carousel-next { right: 8px; }
.card-carousel:hover .carousel-arrow,
.card-carousel:focus-within .carousel-arrow {
  opacity: 1;
}
.carousel-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 2;
}
.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .5);
  border: 0;
  padding: 0;
  cursor: pointer;
  transition: background .15s, transform .15s;
}
.carousel-dot.is-active {
  background: var(--orange);
  transform: scale(1.3);
}
.carousel-counter {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(0, 0, 0, .55);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 11px;
  padding: 3px 8px;
  border-radius: 100px;
  letter-spacing: .04em;
  z-index: 2;
}
.corrugated {
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      90deg,
      rgba(0,0,0,.10) 0 8px,
      rgba(255,255,255,.04) 8px 10px,
      rgba(0,0,0,.18) 10px 20px
    ),
    linear-gradient(180deg, #355d7c 0%, #1d3f59 100%);
  border-top: 2px solid rgba(0,0,0,.3);
  border-bottom: 2px solid rgba(0,0,0,.3);
}
.corrugated--blue {
  background:
    repeating-linear-gradient(
      90deg,
      rgba(0,0,0,.10) 0 8px,
      rgba(255,255,255,.04) 8px 10px,
      rgba(0,0,0,.18) 10px 20px
    ),
    linear-gradient(180deg, #1c4865 0%, #0d2b40 100%);
}
.corrugated--gray {
  background:
    repeating-linear-gradient(
      90deg,
      rgba(0,0,0,.10) 0 8px,
      rgba(255,255,255,.06) 8px 10px,
      rgba(0,0,0,.18) 10px 20px
    ),
    linear-gradient(180deg, #5a6773 0%, #353e47 100%);
}
.corrugated--orange {
  background:
    repeating-linear-gradient(
      90deg,
      rgba(0,0,0,.10) 0 8px,
      rgba(255,255,255,.06) 8px 10px,
      rgba(0,0,0,.20) 10px 20px
    ),
    linear-gradient(180deg, #e87015 0%, #a04812 100%);
}
.card-photo-label {
  position: absolute;
  bottom: 10px;
  left: 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(255,255,255,.65);
  letter-spacing: .05em;
  padding: 4px 8px;
  background: rgba(0,0,0,.35);
  border-radius: 4px;
}
.card-body {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 10px;
}
.card-body h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  margin: 0;
  text-transform: uppercase;
  color: var(--blue-900);
  letter-spacing: .01em;
  line-height: 1.05;
}
.card-body p {
  margin: 0;
  color: var(--ink-2);
  font-size: 15px;
  flex: 1;
}
.card-cta {
  margin-top: 6px;
  font-weight: 700;
  color: var(--orange);
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color .15s ease, gap .15s ease;
}
.card-cta:hover { color: var(--orange-d); gap: 10px; }

/* ============== SPLIT SECTIONS ============== */
.split {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}
.split-section--reverse .split { grid-template-columns: 1fr 1.1fr; }
.split-section--reverse .split-visual { order: -1; }

.split-text p {
  font-size: 17px;
  color: var(--ink-2);
  max-width: 540px;
  margin: 16px 0 26px;
}
.split-text .section-title { margin-bottom: 12px; }

.check-list {
  display: grid;
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
  gap: 10px 22px;
}
.check-list.two-col {
  grid-template-columns: 1fr 1fr;
}
.check-list li {
  position: relative;
  padding-left: 28px;
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
}
.check-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 2px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--blue-900);
}
.check-list li::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 7px;
  width: 8px;
  height: 4px;
  border-left: 2px solid var(--orange);
  border-bottom: 2px solid var(--orange);
  transform: rotate(-45deg);
}

.split-visual {
  position: relative;
}
.split-photo {
  position: relative;
  height: 420px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.split-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.split-tag {
  position: absolute;
  top: 22px;
  left: 22px;
  background: var(--blue-900);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: .14em;
  font-size: 14px;
  padding: 8px 14px;
  border-radius: 6px;
}
.split-tag--orange { background: var(--orange); }
.floating-info {
  position: absolute;
  bottom: -22px;
  right: -22px;
  background: #fff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--orange);
  border-radius: 10px;
  padding: 16px 22px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 2px;
  max-width: 280px;
}
.floating-info strong {
  font-family: var(--font-display);
  font-size: 18px;
  text-transform: uppercase;
  color: var(--blue-900);
}
.floating-info span { font-size: 14px; color: var(--ink-3); }
.floating-info--alt { border-left-color: var(--blue-700); }

/* ============== MODIFICATIONS GRID ============== */
.mod-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 20px;
}
.mod-tile {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 18px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  color: rgba(255,255,255,.92);
  transition: background .15s, border-color .15s, transform .15s;
}
.mod-tile:hover {
  background: rgba(255,255,255,.08);
  border-color: var(--orange);
  transform: translateY(-2px);
}
.mod-num {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--orange);
  font-weight: 600;
}
.mod-cta {
  margin-top: 36px;
  text-align: center;
}

/* ============== CITY GRID ============== */
.city-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.city-tile {
  padding: 26px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  text-transform: uppercase;
  color: var(--blue-900);
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
  transition: transform .15s, box-shadow .15s, border-color .15s;
}
.city-tile small {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 13px;
  text-transform: none;
  color: var(--ink-3);
  letter-spacing: 0;
}
.city-tile:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  border-color: var(--blue-700);
}
.city-tile--primary {
  background: var(--blue-900);
  color: #fff;
  border-color: var(--blue-900);
  padding-left: 50px;
}
.city-tile--primary small { color: rgba(255,255,255,.7); }
.city-pin {
  position: absolute;
  left: 22px;
  top: 28px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 4px rgba(244,123,32,.3);
}
.city-tile--accent {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
}
.city-tile--accent small { color: rgba(255,255,255,.8); }

.city-callout {
  margin-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 28px;
  background: var(--paper-2);
  border-radius: var(--radius);
  border: 1px dashed var(--line);
  flex-wrap: wrap;
}
.city-callout span {
  font-weight: 600;
  font-size: 17px;
  color: var(--ink);
}

/* ============== FORM ============== */
.form-wrap { max-width: 1000px; margin: 0 auto; }
.form {
  background: var(--paper);
  padding: 36px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.field-wide { grid-column: 1 / -1; }
.field span {
  font-weight: 600;
  font-size: 13px;
  color: var(--ink-2);
  letter-spacing: .02em;
  text-transform: uppercase;
}
.field em {
  font-style: normal;
  color: var(--orange);
}
.field input,
.field select,
.field textarea {
  font-family: var(--font-body);
  font-size: 15px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
  transition: border-color .15s, box-shadow .15s;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--blue-700);
  box-shadow: 0 0 0 3px rgba(36,93,128,.15);
}
.field textarea { resize: vertical; min-height: 110px; }

.form-actions {
  display: flex;
  gap: 14px;
  margin-top: 28px;
  flex-wrap: wrap;
}
.form-actions .btn { flex: 1; min-width: 240px; }
.form-note {
  margin: 16px 0 0;
  font-size: 13px;
  color: var(--ink-3);
}

/* ============== TRUST CARDS ============== */
.trust-grid { gap: 20px; }
.trust-card {
  position: relative;
  padding: 32px 28px 28px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-top: 4px solid var(--orange);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.trust-num {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--orange);
  margin-bottom: 12px;
  letter-spacing: .08em;
}
.trust-card h3 {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: 26px;
  font-weight: 800;
  margin: 0 0 10px;
  color: var(--blue-900);
}
.trust-card p {
  margin: 0 0 18px;
  color: var(--ink-2);
  font-size: 15px;
}
.bullet-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-top: 1px solid var(--line);
  padding-top: 14px;
}
.bullet-list li {
  position: relative;
  padding-left: 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-2);
}
.bullet-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 2px;
  background: var(--orange);
}

/* ============== CONTACT ============== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.contact-block {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.contact-label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--orange);
}
.contact-block p {
  margin: 0;
  font-size: 17px;
  color: rgba(255,255,255,.9);
}
.contact-phone {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 26px;
  letter-spacing: .02em;
  color: #fff;
  width: max-content;
}
.contact-phone + .contact-phone { margin-top: 2px; }
.contact-phone:hover { color: var(--orange); }
.contact-email {
  font-weight: 600;
  font-size: 17px;
  color: #fff;
  border-bottom: 1px dashed rgba(255,255,255,.4);
  width: max-content;
}
.contact-email:hover { color: var(--orange); border-color: var(--orange); }
.contact-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.contact-map { display: flex; }
.map-frame {
  position: relative;
  width: 100%;
  min-height: 420px;
  border-radius: var(--radius);
  overflow: hidden;
  background:
    linear-gradient(135deg, #143548 0%, #08192a 100%);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,.08);
}
.map-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 80px 80px, 80px 80px, 16px 16px, 16px 16px;
  background-position: 0 0, 0 0, 0 0, 0 0;
}
.map-pin {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.map-pin-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow:
    0 0 0 8px rgba(244,123,32,.25),
    0 0 0 20px rgba(244,123,32,.12);
  position: relative;
}
.map-pin-dot::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, -2px);
  width: 2px;
  height: 24px;
  background: linear-gradient(180deg, var(--orange), transparent);
}
.map-pin-label {
  margin-top: 36px;
  padding: 12px 16px;
  background: var(--paper);
  border-radius: 8px;
  color: var(--ink);
  display: flex;
  flex-direction: column;
  gap: 2px;
  box-shadow: var(--shadow);
}
.map-pin-label strong {
  font-family: var(--font-display);
  font-size: 16px;
  text-transform: uppercase;
  color: var(--blue-900);
}
.map-pin-label span { font-size: 13px; color: var(--ink-3); }
.map-label {
  position: absolute;
  bottom: 14px;
  right: 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(255,255,255,.4);
  letter-spacing: .08em;
}

/* ============== FOOTER ============== */
.site-footer {
  background: var(--blue-950);
  color: rgba(255,255,255,.78);
  padding-top: 70px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 50px;
}
.footer-col h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: #fff;
  margin: 0 0 16px;
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col a {
  color: rgba(255,255,255,.7);
  font-size: 15px;
  transition: color .15s;
}
.footer-col a:hover { color: var(--orange); }
.footer-col li { font-size: 15px; }
.footer-brand p {
  margin: 16px 0 0;
  font-size: 15px;
  color: rgba(255,255,255,.65);
  max-width: 320px;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0;
  font-size: 13px;
  color: rgba(255,255,255,.55);
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-meta { font-family: var(--font-mono); letter-spacing: .08em; }

/* ============== WHATSAPP FAB ============== */
.whatsapp-fab {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px 14px 14px;
  background: var(--wa-green);
  color: #fff;
  border-radius: 100px;
  font-weight: 700;
  font-size: 15px;
  box-shadow: 0 12px 28px rgba(37,211,102,.4), 0 4px 10px rgba(0,0,0,.15);
  transition: transform .18s ease, box-shadow .18s ease, background .18s;
}
.whatsapp-fab:hover {
  background: var(--wa-green-d);
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(37,211,102,.5), 0 4px 12px rgba(0,0,0,.18);
}
.whatsapp-fab svg { flex-shrink: 0; }
.whatsapp-fab-label { white-space: nowrap; }

/* ============== BACK TO TOP ============== */
.back-to-top {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 40;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--blue-700);
  background: var(--blue-900);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(8,25,42,.25);
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: opacity .3s ease, transform .3s ease, background .15s ease, border-color .15s ease;
}
.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.back-to-top:hover {
  background: var(--orange);
  border-color: var(--orange);
}
.back-to-top svg {
  flex-shrink: 0;
}

/* ============== RESPONSIVE ============== */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .mod-grid { grid-template-columns: repeat(3, 1fr); }
  .city-grid { grid-template-columns: repeat(3, 1fr); }
  .hero-strip-inner { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .hero-strip-inner > div:nth-child(3) { border-left: 0; padding-left: 0; }
  .split { grid-template-columns: 1fr; gap: 40px; }
  .split-section--reverse .split { grid-template-columns: 1fr; }
  .split-section--reverse .split-visual { order: 0; }
  .split-photo { height: 320px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 720px) {
  .section { padding: 70px 0; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .mod-grid { grid-template-columns: 1fr 1fr; }
  .city-grid { grid-template-columns: 1fr 1fr; }
  .form { padding: 24px; }
  .form-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-inner { grid-template-columns: 1fr; gap: 30px; padding-bottom: 30px; }
  .hero { padding-top: 100px; }
  .hero-inner { padding-bottom: 60px; }
  .header-inner { gap: 12px; }
  .nav {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    gap: 0;
    padding: 12px 16px 18px;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 14px 28px rgba(8,25,42,.12);
    transform: translateY(-110%);
    opacity: 0;
    pointer-events: none;
    transition: transform .2s ease, opacity .2s ease;
  }
  .nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav a {
    padding: 14px 12px;
    border-bottom: 1px solid var(--paper-3);
    font-size: 17px;
  }
  .nav a:last-child { border-bottom: 0; }
  .menu-toggle { display: inline-flex; }
  .header-cta .btn-sm { display: none; }
  .check-list.two-col { grid-template-columns: 1fr; }
  .floating-info { position: static; margin: -10px 0 0; max-width: none; }
  .whatsapp-fab-label { display: none; }
  .whatsapp-fab { padding: 14px; }
  .form-actions { flex-direction: column; }
  .form-actions .btn { width: 100%; min-width: 0; flex: none; white-space: normal; }
  .hero-phone { padding: 16px 20px; margin-top: 24px; margin-bottom: 20px; }
  .hero-phone-link { font-size: 28px; gap: 10px; white-space: nowrap; }
  .hero-phone-link svg { width: 24px; height: 24px; }
  .hero-phone-label { font-size: 13px; }
  .nav-cta-mobile {
    display: block !important;
    margin-top: 8px;
    padding: 14px 20px !important;
    background: var(--orange) !important;
    color: #fff !important;
    border-radius: 8px;
    font-weight: 700 !important;
    font-size: 16px !important;
    text-align: center;
    border-bottom: none !important;
  }
  .nav-cta-mobile:hover { background: var(--orange-d) !important; }
}

@media (max-width: 420px) {
  .city-grid { grid-template-columns: 1fr; }
  .mod-grid { grid-template-columns: 1fr; }
  .hero-strip-inner { grid-template-columns: 1fr; }
  .hero-strip-inner > div { border-left: 0; padding-left: 0; }
  .hero-phone { padding: 14px 16px; }
  .hero-phone-link { font-size: 24px; gap: 8px; }
  .hero-phone-link svg { width: 20px; height: 20px; }
}
