/* ============================================================
   Facilities Solutions Group FSG S.A
   style.css — Dark purple theme (Latana-inspired)
   Mobile-first, breakpoints 768px / 1200px
   ============================================================ */

/* ── Variables ──────────────────────────────────────────────── */
:root {
  --color-bg:          #080a1f;
  --color-bg-2:        #0d0f2a;
  --color-bg-card:     rgba(255,255,255,0.03);
  --color-primary:     #6142f5;
  --color-primary-dim: rgba(97,66,245,0.14);
  --color-accent:      #E94560;
  --color-border:      rgba(255,255,255,0.08);
  --color-border-p:    rgba(97,66,245,0.22);
  --color-text:        #ffffff;
  --color-muted:       rgba(255,255,255,0.57);
  --color-white:       #ffffff;

  --font-body:    'Inter', sans-serif;
  --font-heading: 'Manrope', sans-serif;

  --text-xs:   0.75rem;
  --text-sm:   0.875rem;
  --text-base: 1rem;
  --text-lg:   1.125rem;
  --text-xl:   1.25rem;
  --text-2xl:  1.5rem;
  --text-3xl:  1.875rem;
  --text-4xl:  2.25rem;
  --text-5xl:  3rem;
  --text-6xl:  3.75rem;

  --space-xs:  8px;
  --space-sm:  16px;
  --space-md:  24px;
  --space-lg:  48px;
  --space-xl:  80px;
  --space-xxl: 120px;

  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --radius-xl:   28px;
  --radius-pill: 9999px;

  --shadow-card: 0 4px 36px rgba(0,0,0,0.4);
  --shadow-glow: 0 0 60px rgba(97,66,245,0.18);

  --transition: 0.3s ease;
  --navbar-h:   220px;
}

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

html { scroll-behavior: smooth; scroll-padding-top: var(--navbar-h); }

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-text);
  line-height: 1.6;
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
}

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; }

/* ── Layout ─────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: var(--space-sm);
}

/* ── Section shared ──────────────────────────────────────────── */
.section-label {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(160,140,255,0.85);
  margin-bottom: var(--space-xs);
}

.section-label--light { color: rgba(160,140,255,0.7); }

.section-header {
  text-align: center;
  max-width: 660px;
  margin-inline: auto;
  margin-bottom: var(--space-lg);
}

.section-header h2 {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: 800;
  line-height: 1.15;
  color: var(--color-white);
  margin-bottom: var(--space-xs);
}

.section-header p {
  color: var(--color-muted);
  font-size: var(--text-lg);
  line-height: 1.65;
}

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  padding: 13px 28px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  transition:
    background var(--transition),
    color var(--transition),
    transform var(--transition),
    box-shadow var(--transition);
}

.btn--primary {
  background: var(--color-primary);
  color: var(--color-white);
  box-shadow: 0 4px 20px rgba(97,66,245,0.38);
}

.btn--primary:hover {
  background: #7258f7;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(97,66,245,0.55);
}

.btn--outline {
  background: transparent;
  color: var(--color-white);
  border: 1.5px solid rgba(255,255,255,0.28);
}

.btn--outline:hover {
  border-color: rgba(255,255,255,0.65);
  background: rgba(255,255,255,0.06);
  transform: translateY(-2px);
}

.btn--accent {
  background: var(--color-accent);
  color: var(--color-white);
  box-shadow: 0 4px 20px rgba(233,69,96,0.35);
}

.btn--accent:hover {
  background: #c73350;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(233,69,96,0.5);
}

.btn--full { width: 100%; border-radius: var(--radius-md); }

/* ── Reveal animations ───────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── NAVBAR ──────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--navbar-h);
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
}

.navbar.scrolled {
  background: rgba(8, 10, 31, 0.94);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.navbar__logo { display: flex; align-items: center; }

.logo-img {
  height: 210px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  transition: opacity var(--transition);
}

.logo-img:hover { opacity: 0.85; }
.logo-img--footer { filter: brightness(0) invert(1); opacity: 0.85; }

.navbar__links {
  display: none;
  align-items: center;
  gap: var(--space-md);
}

.navbar__links a {
  font-size: var(--text-sm);
  font-weight: 500;
  color: rgba(255,255,255,0.78);
  transition: color var(--transition);
}

.navbar__links a:hover { color: var(--color-white); }

.navbar__login {
  border: 1.5px solid rgba(255,255,255,0.25) !important;
  padding: 7px 14px;
  border-radius: var(--radius-pill);
  color: rgba(255,255,255,0.85) !important;
  font-size: 11.5px !important;
  white-space: nowrap;
}

.navbar__login:hover {
  border-color: rgba(255,255,255,0.55) !important;
  background: rgba(255,255,255,0.06);
  color: var(--color-white) !important;
}

.navbar__cta-link {
  background: var(--color-accent);
  color: var(--color-white) !important;
  padding: 9px 22px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  box-shadow: 0 3px 14px rgba(233,69,96,0.35);
}

.navbar__cta-link:hover {
  background: #c73350 !important;
  color: var(--color-white) !important;
}

.navbar__toggle {
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}

.navbar__toggle:hover { background: rgba(255,255,255,0.1); }
.navbar__toggle svg { width: 24px; height: 24px; }

.navbar.menu-open .navbar__links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: absolute;
  top: var(--navbar-h);
  left: 0; right: 0;
  background: rgba(8, 10, 31, 0.98);
  backdrop-filter: blur(20px);
  padding: var(--space-sm) var(--space-sm) var(--space-md);
  gap: var(--space-sm);
  box-shadow: 0 8px 24px rgba(0,0,0,0.5);
}

/* ── HERO ────────────────────────────────────────────────────── */
.hero {
  position: relative;
  background: linear-gradient(145deg, #07031a 0%, #0e073a 45%, #0b0d38 100%);
  color: var(--color-white);
  padding-block: calc(var(--navbar-h) + var(--space-xl)) var(--space-xl);
  overflow: hidden;
  min-height: 100svh;
  display: flex;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 72% 42%, rgba(97,66,245,0.22) 0%, transparent 52%),
    radial-gradient(ellipse at 18% 65%, rgba(233,69,96,0.08) 0%, transparent 45%);
  pointer-events: none;
}

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

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(97,66,245,0.12);
  border: 1px solid rgba(97,66,245,0.32);
  color: rgba(170,150,255,0.9);
  font-size: var(--text-xs);
  font-weight: 600;
  padding: 7px 16px;
  border-radius: var(--radius-pill);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.badge svg { width: 14px; height: 14px; }

.hero__title {
  font-family: var(--font-heading);
  font-size: var(--text-4xl);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.hero__title .grad {
  background: linear-gradient(135deg, #c4b5fd 0%, #a5b4fc 50%, #93c5fd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__sub {
  font-size: var(--text-lg);
  color: var(--color-muted);
  max-width: 520px;
  margin-inline: auto;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  justify-content: center;
}

.hero__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 100%;
  max-width: 560px;
}

.hero__img-frame {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(97,66,245,0.28);
  box-shadow:
    0 0 0 1px rgba(97,66,245,0.1),
    0 24px 80px rgba(0,0,0,0.65),
    0 0 60px rgba(97,66,245,0.14);
  width: 100%;
  aspect-ratio: 16/11;
}

.hero__img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
  filter: contrast(1.25) saturate(1.35) brightness(0.82);
  transition: filter 0.6s ease, transform 0.6s ease;
}

.hero__img-frame:hover img {
  filter: contrast(1.15) saturate(1.5) brightness(0.9);
  transform: scale(1.03);
}

/* Overlay morado dramático sobre la foto */
.hero__img-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(97,66,245,0.22) 0%, transparent 55%),
    linear-gradient(to bottom, transparent 40%, rgba(7,3,26,0.55) 100%);
  z-index: 1;
  pointer-events: none;
}

.hero__img-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7,3,26,0.5) 0%, transparent 50%);
  pointer-events: none;
  z-index: 2;
}

/* ── CLIENTS / TRUST BAR ─────────────────────────────────────── */
.clients {
  padding-block: var(--space-md);
  background: var(--color-bg-2);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  overflow: hidden;
}


.clients__track-wrapper {
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(to right, transparent 0%, black 12%, black 88%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 12%, black 88%, transparent 100%);
}

.clients__track {
  display: flex;
  gap: 16px;
  align-items: center;
  animation: scroll-logos 32s linear infinite;
  width: max-content;
}

.clients__track:hover { animation-play-state: paused; }

@keyframes scroll-logos {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.client-logo {
  height: 200px;
  width: 260px;
  object-fit: cover;
  object-position: center;
  flex-shrink: 0;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  opacity: 0.85;
  transition: opacity var(--transition), transform var(--transition), border-color var(--transition);
}

.client-logo:hover {
  opacity: 1;
  transform: scale(1.03);
  border-color: rgba(97,66,245,0.4);
}

/* ── STATS ───────────────────────────────────────────────────── */
.stats {
  background: var(--color-bg);
  padding-block: var(--space-lg);
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.stat-card {
  background: var(--color-bg-2);
  text-align: center;
  padding: var(--space-md) var(--space-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.stat-card__number {
  font-family: var(--font-heading);
  font-size: var(--text-4xl);
  font-weight: 800;
  color: var(--color-white);
  line-height: 1;
}

.stat-card__plus {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
  margin-left: 2px;
}

.stat-card__label {
  font-size: var(--text-xs);
  color: var(--color-muted);
  letter-spacing: 0.03em;
}

/* ── FEATURE SPOTLIGHT ───────────────────────────────────────── */
.feature-spotlight {
  padding-block: var(--space-xl);
  background: var(--color-bg);
}

.feature-spotlight__inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
  align-items: center;
}

.feature-spotlight__visual {
  position: relative;
  width: 400px;
  height: 400px;
  flex-shrink: 0;
}

.orbit-ring {
  position: absolute;
  inset: 0;
  border: 1.5px solid rgba(97,66,245,0.2);
  border-radius: 50%;
  animation: orbit-spin 20s linear infinite;
}

.orbit-ring--inner {
  inset: 58px;
  border-style: dashed;
  border-color: rgba(97,66,245,0.13);
  animation-duration: 14s;
  animation-direction: reverse;
}

@keyframes orbit-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.orbit-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 220px;
  height: 220px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(97,66,245,0.5);
  box-shadow: 0 0 55px rgba(97,66,245,0.3), 0 0 0 10px rgba(97,66,245,0.06);
  z-index: 2;
}

.orbit-center img { width: 100%; height: 100%; object-fit: cover; }

.orbit-tag {
  position: absolute;
  background: rgba(13,15,42,0.95);
  border: 1px solid rgba(97,66,245,0.38);
  border-radius: var(--radius-pill);
  padding: 7px 16px;
  font-size: 12px;
  font-weight: 700;
  color: rgba(170,150,255,0.9);
  white-space: nowrap;
  box-shadow: 0 4px 18px rgba(0,0,0,0.45);
  z-index: 3;
  letter-spacing: 0.03em;
}

.orbit-tag:nth-child(3) { top: 5px;    left: 50%; transform: translateX(-50%); }
.orbit-tag:nth-child(4) { top: 25%;    right: -26px; }
.orbit-tag:nth-child(5) { bottom: 19%; right: -18px; }
.orbit-tag:nth-child(6) { bottom: 2px; left: 50%; transform: translateX(-50%); }
.orbit-tag:nth-child(7) { top: 27%;    left: -38px; }

.feature-spotlight__content { max-width: 520px; }

.feature-spotlight__category {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(160,140,255,0.75);
  margin-bottom: var(--space-sm);
}

.feature-spotlight__title {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: var(--space-md);
  line-height: 1.2;
}

.feature-list { display: flex; flex-direction: column; }

.feature-item {
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--color-border);
  cursor: pointer;
}

.feature-item:last-child { border-bottom: none; }

.feature-item__name {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--color-muted);
  transition: color var(--transition);
}

.feature-item:hover .feature-item__name,
.feature-item.active .feature-item__name { color: var(--color-white); }

.feature-item__desc {
  font-size: var(--text-sm);
  color: var(--color-muted);
  margin-top: 6px;
  line-height: 1.6;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.feature-item.active .feature-item__desc { max-height: 100px; }

.feature-item__link {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-primary);
  margin-top: 8px;
  display: none;
  align-items: center;
  gap: 4px;
  transition: gap var(--transition);
}

.feature-item.active .feature-item__link { display: flex; }
.feature-item__link:hover { gap: 8px; color: #a78bfa; }

/* ── SERVICES ────────────────────────────────────────────────── */
.services {
  padding-block: var(--space-xl);
  background: var(--color-bg-2);
}

.services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-sm);
}

.service-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border-p);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition), background var(--transition);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: rgba(97,66,245,0.42);
  background: rgba(97,66,245,0.06);
}

.service-card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary-dim);
  border-radius: var(--radius-md);
  color: rgba(170,150,255,0.9);
  margin-bottom: 4px;
}

.service-card__icon svg { width: 22px; height: 22px; }

.service-card h3 {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-white);
  line-height: 1.3;
}

.service-card p {
  font-size: var(--text-sm);
  color: var(--color-muted);
  line-height: 1.65;
  flex: 1;
}

.service-card__link {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-primary);
  margin-top: var(--space-xs);
  transition: color var(--transition), gap var(--transition);
  display: flex;
  align-items: center;
  gap: 4px;
}

.service-card__link:hover { color: #a78bfa; gap: 8px; }

/* ── FULL-WIDTH BANNER ───────────────────────────────────────── */
.fullwidth-banner {
  position: relative;
  height: 460px;
  overflow: hidden;
}

.fullwidth-banner__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  display: block;
  filter: contrast(1.22) saturate(1.3) brightness(0.8);
  transform: scale(1.02);
}

.fullwidth-banner__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(7,3,26,0.38) 0%, rgba(7,3,26,0.72) 100%),
    linear-gradient(135deg, rgba(97,66,245,0.12) 0%, transparent 50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-lg) var(--space-md);
}

.fullwidth-banner__overlay h2 {
  font-family: var(--font-heading);
  font-size: var(--text-4xl);
  font-weight: 800;
  color: var(--color-white);
  max-width: 640px;
  line-height: 1.1;
  margin-bottom: var(--space-sm);
}

.fullwidth-banner__sub {
  font-size: var(--text-xl);
  color: rgba(255,255,255,0.7);
  max-width: 480px;
  font-style: italic;
  line-height: 1.5;
}

/* ── WHY US ──────────────────────────────────────────────────── */
.why-us {
  padding-block: var(--space-xl);
  background: var(--color-bg);
}

.why-us__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

.differentiator {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.differentiator:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
  border-color: rgba(97,66,245,0.3);
}

.differentiator__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(233,69,96,0.1);
  border-radius: var(--radius-md);
  color: var(--color-accent);
  margin-bottom: 4px;
}

.differentiator__icon svg { width: 22px; height: 22px; }

.differentiator h3 {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-white);
}

.differentiator p {
  font-size: var(--text-sm);
  color: var(--color-muted);
  line-height: 1.65;
}

/* ── PROCESS ─────────────────────────────────────────────────── */
.process {
  padding-block: var(--space-xl);
  background: var(--color-bg-2);
}

.process__steps {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.process-step {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  text-align: center;
  width: 100%;
  max-width: 300px;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.process-step:hover {
  border-color: rgba(97,66,245,0.32);
  box-shadow: 0 0 30px rgba(97,66,245,0.1);
}

.process-step__num {
  font-family: var(--font-heading);
  font-size: var(--text-xs);
  font-weight: 800;
  color: var(--color-primary);
  letter-spacing: 0.12em;
  margin-bottom: var(--space-xs);
}

.process-step__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary-dim);
  border-radius: 50%;
  color: rgba(170,150,255,0.9);
  margin-inline: auto;
  margin-bottom: var(--space-sm);
}

.process-step__icon svg { width: 26px; height: 26px; }

.process-step h3 {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: var(--space-xs);
}

.process-step p {
  font-size: var(--text-sm);
  color: var(--color-muted);
  line-height: 1.65;
}

.process-step__connector {
  width: 2px;
  height: 36px;
  background: linear-gradient(to bottom, var(--color-primary), rgba(233,69,96,0.45));
  border-radius: 2px;
}

/* ── SECTORS ─────────────────────────────────────────────────── */
.sectors {
  padding-block: var(--space-xl);
  background: var(--color-bg);
}

.sectors__grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  justify-content: center;
}

.sector-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  background: var(--color-bg-card);
  border: 1px solid var(--color-border-p);
  border-radius: var(--radius-pill);
  padding: 12px 22px;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.sector-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 22px rgba(97,66,245,0.2);
  border-color: rgba(97,66,245,0.4);
}

.sector-badge svg { width: 20px; height: 20px; color: rgba(170,150,255,0.8); }

/* ── TESTIMONIALS ────────────────────────────────────────────── */
.testimonials {
  padding-block: var(--space-xl);
  background: var(--color-bg-2);
}

.testimonials__logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 36px;
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid var(--color-border);
}

.testimonial-logo {
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 800;
  color: rgba(255,255,255,0.22);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  transition: color var(--transition);
}

.testimonial-logo:hover { color: rgba(255,255,255,0.55); }

.testimonials__featured { max-width: 820px; margin-inline: auto; }

.testimonial-quote {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border-p);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  position: relative;
  overflow: hidden;
}

.testimonial-quote::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--color-primary), rgba(97,66,245,0));
}

.testimonial-quote__mark {
  font-family: Georgia, serif;
  font-size: 72px;
  line-height: 1;
  color: var(--color-primary);
  opacity: 0.35;
  display: block;
  margin-bottom: -16px;
}

.testimonial-quote > p {
  font-size: var(--text-xl);
  color: var(--color-white);
  line-height: 1.7;
  font-style: italic;
}

.testimonial-quote__author {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.testimonial-quote__avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--color-primary-dim);
  border: 2px solid rgba(97,66,245,0.4);
  color: rgba(170,150,255,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: var(--text-sm);
  flex-shrink: 0;
}

.testimonial-quote__name {
  display: block;
  font-weight: 700;
  color: var(--color-white);
  font-size: var(--text-sm);
}

.testimonial-quote__role {
  display: block;
  font-size: var(--text-xs);
  color: var(--color-muted);
  margin-top: 2px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.testimonial-quote__role-tag {
  background: rgba(97,66,245,0.18);
  border: 1px solid rgba(97,66,245,0.25);
  border-radius: var(--radius-pill);
  padding: 2px 8px;
  font-size: 10px;
  color: rgba(170,150,255,0.85);
  font-weight: 600;
}

.testimonials__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: var(--space-md);
}

.testimonials__dots span {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--color-border);
  cursor: pointer;
  transition: background var(--transition), width var(--transition), border-radius var(--transition);
}

.testimonials__dots span.active {
  background: var(--color-primary);
  width: 24px;
  border-radius: 4px;
}

/* ── CASES SECTION ───────────────────────────────────────────── */
.cases {
  padding-block: var(--space-xl);
  background: var(--color-bg);
}

.cases__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.case-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.case-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: rgba(97,66,245,0.32);
}

.case-card__img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}

.case-card__tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  background: rgba(97,66,245,0.18);
  color: rgba(170,150,255,0.9);
  margin: var(--space-sm) var(--space-sm) 0;
  width: fit-content;
}

.case-card__body {
  padding: var(--space-xs) var(--space-sm) var(--space-sm);
}

.case-card h3 {
  font-family: var(--font-heading);
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 6px;
  line-height: 1.3;
}

.case-card p {
  font-size: var(--text-sm);
  color: var(--color-muted);
  line-height: 1.6;
}

.cases__more { text-align: center; }

/* ── CTA SECTION ─────────────────────────────────────────────── */
.cta-section {
  padding-block: var(--space-xl);
  background: linear-gradient(145deg, #070318 0%, #160a3e 60%, #0c1a3e 100%);
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(97,66,245,0.16) 0%, transparent 68%);
  pointer-events: none;
}

.cta-section__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  align-items: start;
}

.cta-section__copy h2 {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: var(--space-sm);
}

.cta-section__copy p {
  color: var(--color-muted);
  font-size: var(--text-lg);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.cta-section__benefits {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cta-section__benefits li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: var(--text-base);
  color: rgba(255,255,255,0.85);
}

.cta-section__benefits svg { width: 20px; height: 20px; color: #4ade80; flex-shrink: 0; }

.cta-section__form {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(97,66,245,0.22);
  border-radius: var(--radius-xl);
  padding: var(--space-md);
  backdrop-filter: blur(12px);
}

/* ── FORM ────────────────────────────────────────────────────── */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: var(--space-sm);
}

.form-group label {
  font-size: var(--text-sm);
  font-weight: 600;
  color: rgba(255,255,255,0.78);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-white);
  background: rgba(255,255,255,0.05);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
  -webkit-appearance: none;
}

.form-group select option {
  background: #0d0f2a;
  color: var(--color-white);
}

.form-group 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='%23ffffff60' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 40px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(97,66,245,0.65);
  box-shadow: 0 0 0 3px rgba(97,66,245,0.14);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.3); }

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(233,69,96,0.1);
}

.form-error {
  font-size: var(--text-xs);
  color: var(--color-accent);
  font-weight: 500;
  min-height: 16px;
}

.form-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.btn--wa {
  background: #25d366;
  color: #fff;
  border-color: transparent;
}

.btn--wa:hover {
  background: #1fba59;
  transform: translateY(-2px);
}

.form-disclaimer {
  text-align: center;
  font-size: var(--text-xs);
  color: var(--color-muted);
  margin-top: var(--space-xs);
}

textarea { resize: vertical; min-height: 80px; }

/* ── FOOTER ──────────────────────────────────────────────────── */
.footer {
  background: #04010f;
  color: rgba(255,255,255,0.58);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  padding-block: var(--space-xl);
}

.footer__brand p {
  font-size: var(--text-sm);
  margin-top: var(--space-sm);
  max-width: 260px;
  line-height: 1.65;
}

.footer__newsletter { margin-top: var(--space-sm); }

.footer__newsletter p {
  font-size: var(--text-xs);
  color: var(--color-muted);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  color: rgba(255,255,255,0.4);
}

.newsletter-form { display: flex; gap: 8px; }

.newsletter-form input {
  flex: 1;
  padding: 10px 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  outline: none;
  transition: border-color var(--transition);
}

.newsletter-form input:focus { border-color: rgba(97,66,245,0.5); }
.newsletter-form input::placeholder { color: rgba(255,255,255,0.28); }

.newsletter-form button {
  background: var(--color-accent);
  color: var(--color-white);
  border: none;
  padding: 10px 18px;
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background var(--transition);
}

.newsletter-form button:hover { background: #c73350; }

.footer__nav h4,
.footer__contact h4 {
  font-family: var(--font-heading);
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--color-white);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-sm);
}

.footer__nav ul { display: flex; flex-direction: column; gap: 10px; }

.footer__nav a {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.48);
  transition: color var(--transition);
}

.footer__nav a:hover { color: var(--color-white); }

.footer__contact { display: flex; flex-direction: column; gap: var(--space-sm); }

.footer__contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.48);
  transition: color var(--transition);
}

.footer__contact-item:hover { color: var(--color-white); }
.footer__contact-item svg { width: 16px; height: 16px; flex-shrink: 0; }

.footer__social {
  display: flex;
  gap: 10px;
  margin-top: var(--space-sm);
}

.social-link {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.45);
  transition: all var(--transition);
}

.social-link:hover {
  background: rgba(97,66,245,0.2);
  border-color: rgba(97,66,245,0.4);
  color: var(--color-white);
}

.social-link svg { width: 16px; height: 16px; }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-block: var(--space-sm);
}

.footer__bottom-inner {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  text-align: center;
}

.footer__bottom p,
.footer__bottom a {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.3);
}

.footer__bottom a:hover { color: rgba(255,255,255,0.6); }

.footer__legal {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  justify-content: center;
}

/* ── WhatsApp FAB ─────────────────────────────────────────────── */
.whatsapp-fab {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 999;
  width: 56px; height: 56px;
  background: #25D366;
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: transform var(--transition), box-shadow var(--transition);
}

.whatsapp-fab:hover {
  transform: scale(1.12);
  box-shadow: 0 6px 28px rgba(37,211,102,0.65);
}

.whatsapp-fab svg { width: 28px; height: 28px; }

/* ── RESPONSIVE 768px ────────────────────────────────────────── */
@media (min-width: 768px) {
  :root { --navbar-h: 220px; }

  .navbar__toggle { display: none; }

  .logo-img { height: 210px; }

  .navbar__links {
    display: flex;
    flex-direction: row;
    position: static;
    background: none;
    padding: 0;
    box-shadow: none;
  }

  .hero { min-height: auto; }

  .hero__inner {
    flex-direction: row;
    text-align: left;
    justify-content: space-between;
    align-items: center;
  }

  .hero__content { max-width: 520px; }
  .hero__title { font-size: var(--text-5xl); }
  .hero__sub { margin-inline: 0; }
  .hero__actions { justify-content: flex-start; }
  .hero__visual { width: 46%; }

  .feature-spotlight__inner {
    flex-direction: row;
    align-items: center;
    gap: var(--space-xl);
  }

  .feature-spotlight__visual {
    width: 400px;
    height: 400px;
  }

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

  .process__steps {
    flex-direction: row;
    align-items: stretch;
    justify-content: center;
    gap: 0;
    flex-wrap: nowrap;
  }

  .process-step {
    max-width: 220px;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .process-step__connector {
    width: 48px; height: 2px;
    min-width: 48px;
    background: linear-gradient(to right, var(--color-primary), rgba(233,69,96,0.45));
    border-radius: 2px;
    align-self: center;
    flex-shrink: 0;
  }

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

  .cta-section__inner { grid-template-columns: 1fr 1fr; }

  .footer__inner { grid-template-columns: 2fr 1fr 1fr 1.5fr; }

  .footer__bottom-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }

  .fullwidth-banner { height: 500px; }

  .fullwidth-banner__overlay h2 { font-size: var(--text-5xl); }
}

/* ── RESPONSIVE 1200px ───────────────────────────────────────── */
@media (min-width: 1200px) {
  .container { padding-inline: var(--space-md); }

  .hero__title { font-size: var(--text-6xl); }

  .services__grid     { grid-template-columns: repeat(4, 1fr); }
  .why-us__grid       { grid-template-columns: repeat(4, 1fr); }
  .cases__grid        { grid-template-columns: repeat(4, 1fr); }
  .process-step       { max-width: 240px; flex: 1; }
}
