/* ═══════════════════════════════════════════
   SERMIELEC — Landing Page Styles
   Archetype: Mouse-Reactive Gradient (05)
   Adapted: Navy + Gold · Montserrat
   Build: 20260616
═══════════════════════════════════════════ */

/* ─── Custom Properties ─────────────────── */
:root {
  /* Colors — Navy / Gold palette */
  --navy:        #0b1a2e;
  --navy-2:      #0f2240;
  --navy-3:      #162d52;
  --navy-card:   #0d1f38;
  --gold:        #f5c200;
  --gold-2:      #e6b300;
  --gold-dim:    rgba(245, 194, 0, 0.12);
  --gold-glow:   rgba(245, 194, 0, 0.2);

  /* Text */
  --white:       #ffffff;
  --off-white:   rgba(255, 255, 255, 0.85);
  --muted:       rgba(255, 255, 255, 0.55);
  --ink:         #0b1a2e;
  --ink-soft:    #2a3a52;
  --ink-muted:   #6b7a92;

  /* Light sections */
  --bg-light:    #f5f8fc;
  --bg-card:     #ffffff;
  --border:      rgba(11, 26, 46, 0.08);

  /* Spacing */
  --space-xs:    0.5rem;
  --space-sm:    1rem;
  --space-md:    1.5rem;
  --space-lg:    2.5rem;
  --space-xl:    4rem;
  --space-2xl:   6rem;
  --space-3xl:   8rem;

  /* Typography */
  --font:        'Montserrat', system-ui, -apple-system, sans-serif;
  --radius:      12px;
  --radius-lg:   20px;
  --radius-full: 9999px;

  /* Motion */
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.45, 0, 0.55, 1);
  --transition:  0.3s var(--ease-out);

  /* Nav height */
  --nav-h:       72px;
}

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

html {
  overflow-x: clip; /* clip NOT hidden — preserves sticky */
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font);
  font-weight: 400;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg-light);
  overflow-x: clip;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* Defensive CSS — prevent invisible split+reveal conflicts */
.reveal[data-split] {
  opacity: 1;
  transform: none;
}

/* ─── Container ─────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}

@media (min-width: 768px) {
  .container { padding-inline: 2rem; }
}
@media (min-width: 1200px) {
  .container { padding-inline: 2.5rem; }
}

/* ─── Scroll Reveal ──────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

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

/* Staggered reveals */
.why-card:nth-child(2) .reveal,
.why-card:nth-child(2) { transition-delay: 0.1s; }
.why-card:nth-child(3) { transition-delay: 0.2s; }
.why-card:nth-child(4) { transition-delay: 0.3s; }
.why-card:nth-child(5) { transition-delay: 0.4s; }

/* ─── Buttons ────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius-full);
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  transition: var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.12);
  opacity: 0;
  transition: opacity 0.25s;
}
.btn:hover::before { opacity: 1; }

.btn svg {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

.btn-gold {
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 4px 20px rgba(245, 194, 0, 0.35);
}
.btn-gold:hover {
  background: var(--gold-2);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(245, 194, 0, 0.45);
}
.btn-gold:active { transform: translateY(0); }

.btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
}

.btn-nav {
  background: var(--gold);
  color: var(--navy);
  padding: 0.65rem 1.5rem;
  font-size: 0.82rem;
  box-shadow: 0 3px 12px rgba(245, 194, 0, 0.3);
}
.btn-nav:hover {
  background: var(--gold-2);
  transform: translateY(-1px);
}

.btn-lg {
  padding: 1.1rem 2.5rem;
  font-size: 1rem;
}

/* ─── Section Common ─────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.section-kicker {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  padding-left: 1.25rem;
  position: relative;
}
.section-kicker::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0.75rem;
  height: 2px;
  background: var(--gold);
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--ink);
  text-wrap: balance;
  max-width: 22ch;
  margin-inline: auto;
  margin-bottom: 1rem;
}
.section-title em {
  font-style: normal;
  color: var(--navy);
  position: relative;
}
.section-title em::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
}

/* Em en secciones con fondo oscuro → texto dorado */
.services .section-title em,
.value-strip .section-title em {
  color: var(--gold);
}

.section-desc {
  font-size: 1.05rem;
  color: var(--ink-muted);
  max-width: 55ch;
  margin-inline: auto;
}


/* ═══════════════════════════════════════════
   NAV
═══════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  height: var(--nav-h);
  transition: background 0.4s var(--ease-out), box-shadow 0.4s;
}

.nav.is-solid {
  background: rgba(9, 20, 40, 0.97);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06), 0 4px 24px rgba(0,0,0,0.3);
}

.nav-inner {
  height: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  max-height: var(--nav-h);
  overflow: hidden;
}

.nav-logo-img {
  display: block;
  height: 52px;
  max-height: 52px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
  filter: drop-shadow(0 1px 3px rgba(0,0,0,0.3));
}

@media (max-width: 480px) {
  .nav-logo-img {
    height: 40px;
    max-width: 120px;
  }
}

.nav-links {
  display: none;
  align-items: center;
  gap: 0.25rem;
  margin-left: auto;
}

@media (min-width: 900px) {
  .nav-links { display: flex; }
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius);
  transition: color 0.25s, background 0.25s;
}
.nav-link:hover {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}

.btn-nav {
  margin-left: 0.5rem;
}

/* Hide CTA on mobile */
@media (max-width: 899px) {
  .nav-inner > .btn-nav { display: none; }
}

/* Hamburger */
.nav-hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-left: auto;
  padding: 0.5rem;
}
@media (min-width: 900px) {
  .nav-hamburger { display: none; }
}

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

.nav-hamburger.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.is-active span:nth-child(2) { opacity: 0; }
.nav-hamburger.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: rgba(9, 20, 40, 0.98);
  backdrop-filter: blur(20px);
  padding: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}

.nav-mobile.is-open { display: block; }

.nav-mobile ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.nav-mobile .nav-link {
  display: block;
  padding: 0.85rem 1rem;
  font-size: 1rem;
  border-radius: var(--radius);
}

.nav-mobile .btn {
  display: flex;
  justify-content: center;
  margin-top: 0.5rem;
}


/* ═══════════════════════════════════════════
   HERO
═══════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--nav-h);
}

/* Background image */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: saturate(0.9);
}

.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(11, 26, 46, 0.92) 0%,
    rgba(11, 26, 46, 0.75) 50%,
    rgba(11, 26, 46, 0.88) 100%
  );
}

/* Mouse-reactive gradient (signature effect) */
.hero-gradient {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle 700px at var(--mx, 50%) var(--my, 40%),
      rgba(245, 194, 0, 0.10) 0%,
      rgba(245, 194, 0, 0.03) 40%,
      transparent 65%),
    radial-gradient(circle 500px at calc(100% - var(--mx, 30%)) calc(100% - var(--my, 30%)),
      rgba(21, 60, 120, 0.12) 0%,
      transparent 60%);
  pointer-events: none;
  transition: background 0.08s linear;
}

/* Grid pattern overlay */
.hero-grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
  mask-image: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.5) 30%, rgba(0,0,0,0.5) 70%, transparent 100%);
}

/* Content */
.hero-inner {
  position: relative;
  z-index: 2;
  padding-block: var(--space-2xl) var(--space-xl);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(245, 194, 0, 0.1);
  border: 1px solid rgba(245, 194, 0, 0.25);
  border-radius: var(--radius-full);
  padding: 0.45rem 1rem;
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulseDot 2s ease-in-out infinite;
}

@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.75); }
}

.hero-title {
  font-size: clamp(2.6rem, 6.5vw, 5.2rem);
  font-weight: 800;
  line-height: 1.05;
  color: var(--white);
  text-wrap: balance;
  max-width: 16ch;
}

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

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--off-white);
  max-width: 50ch;
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Stats strip */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 1rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.hero-stat-num {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.72rem;
  color: var(--muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.12);
  flex-shrink: 0;
}

/* Scroll cue */
.hero-scroll-cue {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, rgba(245,194,0,0.8), transparent);
  margin: 0 auto;
  animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
  0% { opacity: 1; transform: scaleY(1); transform-origin: top; }
  100% { opacity: 0; transform: scaleY(0.2); transform-origin: bottom; }
}


/* ═══════════════════════════════════════════
   WHY US
═══════════════════════════════════════════ */
.why-us {
  background: var(--bg-light);
  padding-block: var(--space-3xl);
  position: relative;
}

.why-us::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--navy), var(--gold), var(--navy));
}

.why-us .container {
  max-width: 1400px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

@media (max-width: 1023px) {
  .why-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 639px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 420px) {
  .why-grid { grid-template-columns: 1fr; }
}

.why-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 2.25rem 1.75rem 2.5rem;
  border: 1px solid var(--border);
  transition:
    transform 0.55s cubic-bezier(0.23, 1, 0.32, 1),
    box-shadow 0.55s cubic-bezier(0.23, 1, 0.32, 1),
    border-color 0.4s ease;
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(11, 26, 46, 0.1);
  border-color: rgba(245, 194, 0, 0.3);
}

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

.why-card-icon {
  width: 58px;
  height: 58px;
  background: var(--gold-dim);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.4rem;
  color: var(--gold);
  transition: background 0.3s, color 0.3s;
}

.why-card:hover .why-card-icon {
  background: var(--gold);
  color: var(--navy);
}

.why-card-icon svg {
  width: 28px;
  height: 28px;
}

.why-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.why-card-desc {
  font-size: 0.92rem;
  color: var(--ink-muted);
  line-height: 1.65;
}


/* ═══════════════════════════════════════════
   SERVICES CAROUSEL
═══════════════════════════════════════════ */
.services {
  background: var(--navy);
  padding-block: var(--space-3xl);
  position: relative;
  overflow: hidden;
}

/* Background decoration */
.services::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 50%;
  height: 70%;
  background: radial-gradient(circle, rgba(245,194,0,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.services .section-kicker {
  color: var(--gold);
}

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

.services .section-title em::after {
  background: var(--gold);
}

.services .section-desc {
  color: var(--muted);
}

/* Carousel wrapper */
.carousel-wrapper {
  position: relative;
  display: flex;
  align-items: stretch;
  gap: 0;
}

/* Navigation buttons */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(245, 194, 0, 0.15);
  border: 1.5px solid rgba(245, 194, 0, 0.3);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s, transform 0.25s, opacity 0.25s;
  opacity: 0.7;
}

.carousel-btn:hover {
  background: var(--gold);
  color: var(--navy);
  opacity: 1;
  transform: translateY(-50%) scale(1.08);
}

.carousel-btn:disabled {
  opacity: 0.2;
  pointer-events: none;
}

.carousel-btn svg {
  width: 20px;
  height: 20px;
}

.carousel-btn--prev {
  left: -24px;
}

.carousel-btn--next {
  right: -24px;
}

@media (max-width: 767px) {
  .carousel-btn--prev { left: 0; }
  .carousel-btn--next { right: 0; }
  .carousel-btn { display: none; } /* hide on mobile, use swipe */
}

/* Track */
.carousel-track {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding-block: 0.5rem;
  padding-inline: 0.25rem;
  /* Hide scrollbar */
  scrollbar-width: none;
  -ms-overflow-style: none;
  overflow-y: visible; /* allow card shadow to show */
}

.carousel-track::-webkit-scrollbar { display: none; }

/* Service cards */
.service-card {
  flex: 0 0 calc(33.333% - 0.85rem);
  min-width: 0;
  scroll-snap-align: start;
  background: var(--navy-card);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.07);
  overflow: hidden;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out), border-color 0.35s;
  cursor: pointer;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(245,194,0,0.3);
  border-color: rgba(245,194,0,0.3);
}

@media (max-width: 1023px) {
  .service-card { flex: 0 0 calc(50% - 0.625rem); }
}
@media (max-width: 639px) {
  .service-card { flex: 0 0 calc(85vw); }
}

/* Card header (with background image) */
.service-card-header {
  padding: 2rem 1.75rem 1.5rem;
  background-color: var(--navy-2);
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
}

.service-card-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius);
  background: rgba(245,194,0,0.15);
  border: 1px solid rgba(245,194,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-bottom: 1rem;
  transition: background 0.3s, border-color 0.3s;
}

.service-card:hover .service-card-icon {
  background: rgba(245,194,0,0.25);
  border-color: rgba(245,194,0,0.6);
}

.service-card-icon svg {
  width: 26px;
  height: 26px;
}

.service-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}

/* Card body */
.service-card-body {
  padding: 1.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.service-card-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.service-card-list li {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  padding-left: 1rem;
  position: relative;
  line-height: 1.4;
}

.service-card-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
}

.service-card-cta {
  display: inline-flex;
  align-items: center;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--gold);
  text-transform: uppercase;
  transition: gap 0.25s, color 0.25s;
  gap: 0.25rem;
}

.service-card-cta:hover {
  gap: 0.5rem;
  color: #fff;
}

/* Dots */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.75rem;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.25s, transform 0.25s;
}

.carousel-dot.is-active {
  background: var(--gold);
  transform: scale(1.3);
}


/* ═══════════════════════════════════════════
   VALUE STRIP
═══════════════════════════════════════════ */
.value-strip {
  position: relative;
  padding-block: var(--space-3xl);
  overflow: hidden;
  background: var(--navy-2);
}

/* Diagonal accent */
.value-strip-diagonal {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(245,194,0,0.04) 0%,
    transparent 40%,
    rgba(245,194,0,0.02) 100%
  );
  pointer-events: none;
}

.value-strip::before {
  content: '';
  position: absolute;
  top: 0;
  left: -5%;
  right: -5%;
  height: 100%;
  background: repeating-linear-gradient(
    -55deg,
    transparent,
    transparent 40px,
    rgba(255,255,255,0.012) 40px,
    rgba(255,255,255,0.012) 41px
  );
  pointer-events: none;
}

.value-strip .container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-xl);
}

.value-strip-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.8;
}

.value-strip-headline {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  text-wrap: balance;
  max-width: 22ch;
}

.value-strip-headline em {
  font-style: normal;
  color: var(--gold);
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  width: 100%;
}

.value-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  text-align: left;
  transition: background 0.3s, border-color 0.3s;
}

.value-item:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(245,194,0,0.2);
}

.value-item-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  background: var(--gold-dim);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.value-item-icon svg {
  width: 20px;
  height: 20px;
}

.value-item-title {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.2rem;
}

.value-item-desc {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.4;
}


/* ═══════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════ */
.contact {
  background: var(--bg-light);
  padding-block: var(--space-3xl);
  position: relative;
}

.contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--navy), var(--gold), var(--navy));
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 900px) {
  .contact-inner {
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
  }
}

/* Contact info */
.contact-info .section-title {
  text-align: left;
  margin-inline: 0;
}

.contact-info .section-desc {
  text-align: left;
  margin-inline: 0;
  margin-bottom: 2rem;
}

.contact-data {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
  color: var(--ink);
}

.contact-item:hover {
  border-color: rgba(245,194,0,0.4);
  transform: translateX(4px);
  box-shadow: 0 4px 16px rgba(11,26,46,0.08);
}

.contact-item-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: var(--gold-dim);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
}

.contact-item-icon svg { width: 20px; height: 20px; }

.contact-item > div {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.contact-item strong {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  text-transform: uppercase;
}

.contact-item span {
  font-size: 0.9rem;
  color: var(--ink);
}

/* Form */
.contact-form-wrapper {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 2.5rem;
  box-shadow: 0 8px 40px rgba(11,26,46,0.08);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 639px) {
  .form-row { grid-template-columns: 1fr; }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--ink-soft);
  text-transform: uppercase;
}

.form-label span { color: var(--gold); }

.form-input {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--bg-light);
  transition: border-color 0.25s, box-shadow 0.25s;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.form-input::placeholder { color: var(--ink-muted); }

.form-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(245,194,0,0.12);
  background: var(--white);
}

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236b7a92' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.85rem center;
  background-size: 16px;
  padding-right: 2.5rem;
  cursor: pointer;
}

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

/* Submit button */
.btn-form-submit {
  position: relative;
  overflow: hidden;
  font-size: 0.9rem;
  padding: 1rem 2rem;
  justify-content: center;
  width: 100%;
}

.btn-sending { display: none; }

.btn-form-submit.is-sending .btn-text { display: none; }
.btn-form-submit.is-sending .btn-sending { display: block; }

/* Success message */
.form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
  padding: 2rem;
  background: rgba(245,194,0,0.06);
  border: 1px solid rgba(245,194,0,0.2);
  border-radius: var(--radius);
  animation: fadeIn 0.5s var(--ease-out);
}

.form-success[hidden] { display: none; }

.form-success-icon {
  width: 56px;
  height: 56px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
}

.form-success-icon svg { width: 28px; height: 28px; }

.form-success strong {
  font-size: 1.1rem;
  color: var(--ink);
}

.form-success span {
  font-size: 0.9rem;
  color: var(--ink-muted);
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: none; }
}


/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
.footer {
  background: var(--navy);
  color: var(--off-white);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-block: var(--space-xl);
}

@media (min-width: 768px) {
  .footer-inner {
    grid-template-columns: 1.5fr 1fr;
    align-items: start;
  }
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  margin-bottom: 1rem;
  overflow: hidden;
}

.footer-logo-img {
  display: block;
  height: 56px;
  max-height: 56px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
}

@media (max-width: 480px) {
  .footer-logo-img {
    height: 44px;
    max-width: 140px;
  }
}

.footer-tagline {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.6;
  max-width: 42ch;
}

.footer-nav {
  display: flex;
  gap: 3rem;
}

.footer-nav-col strong {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.footer-nav-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-nav-col a {
  font-size: 0.875rem;
  color: var(--muted);
  transition: color 0.25s;
}

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

/* Footer bottom bar */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-block: 1.25rem;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-legal {
  font-size: 0.78rem;
  color: var(--muted);
}

.footer-back-top {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--off-white);
  flex-shrink: 0;
  transition: background 0.25s, transform 0.25s;
}

.footer-back-top:hover {
  background: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
}

.footer-back-top svg { width: 18px; height: 18px; }


/* ═══════════════════════════════════════════
   WHATSAPP FLOATING BUTTON
═══════════════════════════════════════════ */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 800;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
  animation: waFloat 3.5s ease-in-out 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 10px 36px rgba(37, 211, 102, 0.55);
  animation: none;
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
}

.whatsapp-tooltip {
  position: absolute;
  right: calc(100% + 0.75rem);
  background: var(--navy);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.45rem 0.9rem;
  border-radius: var(--radius);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transform: translateX(6px);
  transition: opacity 0.25s, transform 0.25s;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

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

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  transform: none;
}

@keyframes waFloat {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.07); }
}

@media (max-width: 767px) {
  .whatsapp-float { bottom: 1.25rem; right: 1.25rem; }
  .whatsapp-tooltip { display: none; }
}


/* ═══════════════════════════════════════════
   RESPONSIVE UTILITIES
═══════════════════════════════════════════ */
@media (max-width: 767px) {
  :root {
    --space-xl:  2.5rem;
    --space-2xl: 4rem;
    --space-3xl: 5rem;
  }

  .hero-stats {
    gap: 1.25rem;
  }

  .hero-stat-num {
    font-size: 1.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  /* Only gate intrusive animations — NOT micro-interactions */
  .badge-dot { animation: none; }
  .scroll-line { animation: none; }
  .whatsapp-float { animation: none; }
  html { scroll-behavior: auto; }
}
