/* =============================================================
   jungler-home.css — Custom styles for Jungler Dev landing page
   Bootstrap 5.3.3 compatible | WordPress page template
   ============================================================= */

/* ── RESET & VARIABLES ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --teal-rgb: 254, 187, 57;
  --teal: rgb(var(--teal-rgb));
  --aqua-rgb: 253, 232, 176;
  --aqua: rgb(var(--aqua-rgb));
  --navy-rgb: 60, 71, 41;
  --navy: rgb(var(--navy-rgb));
  --sky-rgb: 155, 172, 40;
  --sky: rgb(var(--sky-rgb));
  --teal-dark-rgb: 229, 166, 32;
  --teal-dark: rgb(var(--teal-dark-rgb));
  --navy-dark-rgb: 44, 52, 30;
  --navy-dark: rgb(var(--navy-dark-rgb));
  --teal-bg-rgb: 26, 20, 9;
  --teal-bg: rgb(var(--teal-bg-rgb));
  --background-rgb: 246, 248, 242;
  --background: rgb(var(--background-rgb));
  --highlight-rgb: 242, 249, 192;
  --highlight-rgb: 242, 249, 192;
  --white: #FFFFFF;
  --highlight: #F2F9C0;
  --gray: #707070;
  --neutral: #f0f4f8;
  --border: rgba(var(--navy-rgb), .18);
  --border-light: rgba(var(--aqua-rgb), .14);
  --text-secondary: #707070;
  --text-soft: rgba(255,255,255,.6);
  --whatsapp: #25D366;
  --whatsapp-dark: #1EAD53;
  --font-title: 'Space Grotesk', sans-serif;
  --font-sub: 'Sora', sans-serif;
  --font-body: 'Manrope', sans-serif;
  --r: 8px;
  --r-sm: 5px;
  --r-lg: 14px;
}

/* ── THEME INTEGRATION — cancel sticky-footer flex on landing page ── */
/* style.css sets body { display:flex; flex-direction:column; min-height:100vh }
   The .home-landing class (added via functions.php body_class filter) resets
   this so the snap-scroll layout can control its own sizing. */
body.home-landing {
  display: block;
  min-height: unset;
  flex-direction: unset;
}
body.home-landing .site-footer { display: none; } /* safety: footer rendered inside #contacto */

/* ── BASE ── */
html { scroll-behavior: auto; overflow-x: hidden; }
body { font-family: var(--font-body); background: var(--navy-dark); color: var(--white); overflow-x: hidden; }

/* Body scroll lock for snap — desktop only */
@media (min-width: 992px) {
  body { overflow: hidden; }
}

/* ── SCROLL CONTAINER (snap wrapper) ── */
.scroll-container {
  height: 100vh;
  overflow-y: scroll;
  scroll-behavior: smooth;
  scroll-snap-type: y mandatory;
}

/* On mobile: remove snap, let page scroll normally */
@media (max-width: 991px) {
  .scroll-container {
    height: auto;
    overflow-y: visible;
    scroll-snap-type: none;
  }
}

/* ── NAVIGATION ── */
nav#main-nav {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 48px);
  max-width: 1200px;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 26px;
  background: rgba(var(--teal-bg-rgb),.52);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-lg);
  transition: background .3s, opacity .3s;
}

nav#main-nav.scrolled { background: rgba(var(--teal-bg-rgb),.88); }

/* Nav left + right sides for flex balance */
.nav-side { display: flex; align-items: center; }
.nav-side-right { gap: 12px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,.7);
  text-decoration: none;
  transition: color .2s;
}
.nav-links a:hover { color: var(--teal); }

.nav-logo {
  font-family: var(--font-title);
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  letter-spacing: -.02em;
  white-space: nowrap;
}
.nav-logo span { color: var(--teal); }

.nav-cta {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  background: var(--teal);
  border: none;
  padding: 8px 18px;
  border-radius: var(--r-sm);
  cursor: pointer;
  text-decoration: none;
  transition: background .2s;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--teal-dark); color: #fff; }

/* ── HAMBURGER BUTTON ── */
.nav-hamburger {
  display: none;
  background: none;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 6px;
  padding: 7px 10px;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  transition: border-color .2s;
}
.nav-hamburger:hover { border-color: rgba(255,255,255,.5); }
.nav-hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all .3s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE DROPDOWN MENU ── */
.nav-mobile-menu {
  position: fixed;
  top: 74px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 48px);
  max-width: 1200px;
  background: rgba(var(--teal-bg-rgb),.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-lg);
  z-index: 9997;
  display: none;
  overflow: hidden;
}
.nav-mobile-menu.open { display: block; }
.nav-mobile-menu ul {
  list-style: none;
  margin: 0;
  padding: 8px 0;
}
.nav-mobile-menu ul li { border-bottom: 1px solid rgba(255,255,255,.06); }
.nav-mobile-menu ul li:last-child { border-bottom: none; }
.nav-mobile-menu ul li a {
  display: block;
  padding: 14px 22px;
  color: rgba(255,255,255,.75);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color .2s, background .2s;
}
.nav-mobile-menu ul li a:hover {
  color: var(--teal);
  background: rgba(255,255,255,.04);
}
.nav-mobile-menu .nav-mobile-cta {
  margin: 10px 22px 16px;
  display: block;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  background: var(--teal);
  padding: 12px;
  border-radius: var(--r-sm);
  text-decoration: none;
}
.nav-mobile-menu .nav-mobile-cta:hover { background: var(--teal-dark); color: #fff; }

/* Mobile: hide desktop links, show hamburger */
@media (max-width: 991px) {
  .nav-links { display: none !important; }
  .nav-cta { display: none !important; }
  .nav-hamburger { display: flex; }
}

/* ── HERO ── */
.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--navy-dark);
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

@media (max-width: 991px) {
  .hero { scroll-snap-align: none; }
}

.hero-video-bg { position: absolute; inset: 0; z-index: 0; }
.hero-video-bg video { width: 100%; height: 100%; object-fit: cover; opacity: .35; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom,rgba(5,8,13,.15),rgba(5,8,13,.6));
  z-index: 1;
}
.hero-content {
  position: relative; z-index: 3;
  text-align: center; max-width: 940px;
  padding: 0 24px;
}
.hero-title {
  font-family: var(--font-title);
  font-size: clamp(42px, 7vw, 94px);
  font-weight: 700; line-height: 1.0;
  letter-spacing: -.03em; margin-bottom: 22px;
}
.hero-title em { font-style: normal; color: var(--teal); }
.hero-subtitle {
  font-family: var(--font-sub);
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 300; color: rgba(255,255,255,.6);
  max-width: 560px; margin: 0 auto 40px; line-height: 1.65;
}
.hero-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.btn-primary {
  font-size: 15px; font-weight: 600; color: #fff;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 20%, var(--teal) 100%);
  border: none; padding: 14px 32px; border-radius: var(--r-sm);
  cursor: pointer; text-decoration: none; display: inline-block;
  transition: opacity .2s, transform .15s;
  box-shadow: 0 4px 20px rgba(var(--teal-rgb),.35);
}
.btn-primary:hover { opacity: .88; transform: translateY(-2px); color: #fff; }

.btn-outline {
  font-size: 15px; font-weight: 600; color: #fff;
  background: transparent;
  border: 1.5px solid rgba(255,255,255,.3);
  padding: 14px 32px; border-radius: var(--r-sm);
  cursor: pointer; text-decoration: none; display: inline-block;
  transition: border-color .2s, color .2s, transform .15s;
}
.btn-outline:hover { border-color: var(--teal); color: var(--teal); transform: translateY(-2px); }

.hero-scroll-hint {
  position: absolute; bottom: 34px; left: 50%; transform: translateX(-50%);
  z-index: 3; display: flex; flex-direction: column;
  align-items: center; gap: 7px; opacity: .38;
  animation: float 2.5s ease-in-out infinite;
}
.hero-scroll-hint span { font-size: 10px; letter-spacing: .1em; text-transform: uppercase; }
.scroll-arrow {
  width: 17px; height: 17px;
  border-right: 1.5px solid #fff; border-bottom: 1.5px solid #fff;
  transform: rotate(45deg);
}
@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ── HORIZONTAL / ABOUT SECTION ── */
.horizontal-section {
  height: 100vh; width: 100%;
  position: relative; overflow: hidden;
  background: #fff; flex-shrink: 0;
  scroll-snap-align: start; scroll-snap-stop: always;
}

@media (max-width: 991px) {
  .horizontal-section {
    height: auto;
    scroll-snap-align: none;
    overflow: visible;
  }
}

/* Kaleido backgrounds */
.kaleido-base {
  position: absolute; inset: -18%;
  background: conic-gradient(from 0deg,rgba(255,255,255,.995),rgba(255,255,255,.992),rgba(244,247,250,.97),rgba(var(--aqua-rgb),.10),rgba(var(--highlight-rgb),.09),rgba(255,255,255,.994),rgba(var(--sky-rgb),.06),rgba(255,255,255,.995));
  filter: blur(92px) saturate(103%); z-index: 0; opacity: .98;
}
.kaleido-soft {
  position: absolute; inset: -10%;
  background: radial-gradient(circle at 20% 25%,rgba(var(--aqua-rgb),.16),transparent 28%),radial-gradient(circle at 75% 20%,rgba(var(--highlight-rgb),.15),transparent 24%),radial-gradient(circle at 78% 70%,rgba(var(--sky-rgb),.08),transparent 30%),radial-gradient(circle at 28% 74%,rgba(var(--teal-rgb),.06),transparent 26%),radial-gradient(circle at 55% 45%,rgba(255,255,255,.84),transparent 34%);
  filter: blur(44px); z-index: 0; opacity: .82;
}
.h-blob { position: absolute; border-radius: 50%; filter: blur(90px); pointer-events: none; z-index: 1; }
.h-blob-1 { width: 520px; height: 520px; background: rgba(var(--teal-rgb),.1); top: -120px; right: -100px; }
.h-blob-2 { width: 420px; height: 420px; background: rgba(var(--sky-rgb),.08); bottom: -80px; left: -80px; }
.h-blob-3 { width: 320px; height: 320px; background: rgba(var(--aqua-rgb),.12); top: 50%; left: 32%; transform: translateY(-50%); }
.h-blob-4 { width: 360px; height: 360px; background: rgba(var(--highlight-rgb),.18); top: 10%; left: 8%; filter: blur(100px); }
.h-blob-5 { width: 300px; height: 300px; background: rgba(var(--highlight-rgb),.16); bottom: 12%; right: 18%; filter: blur(95px); }

.h-counter {
  position: absolute; top: 26px; right: 40px;
  font-family: var(--font-title); font-size: 13px;
  color: rgba(var(--navy-rgb),.32); font-weight: 500;
  z-index: 10; letter-spacing: .04em;
}

/* Horizontal track — desktop slides */
.horizontal-track {
  display: flex; height: 100%; width: 300vw;
  transition: transform .72s cubic-bezier(.77,0,.175,1);
  position: relative; z-index: 2;
}
.h-slide {
  width: 100vw; height: 100%; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  padding: 88px 80px 82px;
}
.h-slide-inner {
  max-width: 1140px; width: 100%;
  display: grid;
  grid-template-columns: minmax(320px,1fr) minmax(420px,1fr);
  gap: 72px; align-items: center;
}

/* Mobile: stack slides vertically, disable slider */
@media (max-width: 991px) {
  .horizontal-track {
    flex-direction: column;
    width: 100% !important;
    transform: none !important;
    transition: none;
    height: auto;
  }
  .h-slide {
    width: 100%;
    height: auto;
    padding: 80px 24px 60px;
  }
  .h-slide-inner {
    grid-template-columns: 1fr;
    gap: 32px;
    max-width: 700px;
    margin: 0 auto;
  }
  .h-nav { display: none; }
  .h-counter { display: none; }
}

@media (max-width: 576px) {
  .h-slide { padding: 72px 20px 48px; }
}

.slide-label {
  display: inline-block; font-size: 12px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 20px;
}
.slide-title {
  font-family: var(--font-title);
  font-size: clamp(36px,5.2vw,72px);
  font-weight: 700; color: var(--navy);
  letter-spacing: -.03em; line-height: 1.02; margin-bottom: 24px;
}
.slide-title em { font-style: normal; color: var(--teal); }
.slide-text { font-size: 18px; font-weight: 400; color: #556575; line-height: 1.8; margin-bottom: 14px; }
.slide-right { display: flex; flex-direction: column; gap: 14px; }

.h-nav {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  display: flex; align-items: center; gap: 18px; z-index: 10;
}
.h-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(var(--navy-rgb),.2); border: none; cursor: pointer;
  transition: all .3s;
}
.h-dot.active { width: 24px; border-radius: 4px; background: var(--navy); }
.h-arrow {
  background: none; border: 1px solid rgba(var(--navy-rgb),.22);
  border-radius: var(--r-sm); width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: var(--navy); font-size: 13px; transition: all .2s;
}
.h-arrow:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }

/* ── VISUAL CARDS (inside slides) ── */
.visual-stack { display: flex; flex-direction: column; gap: 16px; position: relative; }
.visual-hero-card {
  position: relative; min-height: 320px; border-radius: 22px;
  overflow: visible;
  background: linear-gradient(135deg,var(--navy-dark) 0%,var(--navy) 42%,var(--teal) 100%);
  box-shadow: 0 16px 42px rgba(var(--navy-rgb),.18);
  border: 1px solid rgba(255,255,255,.12);
  padding: 28px; display: flex; flex-direction: column; justify-content: space-between;
}
.visual-hero-title {
  font-family: var(--font-title); font-size: clamp(22px,2.3vw,36px);
  line-height: 1.02; letter-spacing: -.04em; color: #fff; max-width: 330px;
}
.visual-hero-sub {
  font-size: 15px; line-height: 1.65;
  color: rgba(255,255,255,.82); max-width: 360px; margin-top: 12px;
}
.floating-label {
  display: inline-flex; align-items: center; gap: 8px;
  width: max-content; padding: 10px 16px; border-radius: 999px;
  background: rgba(255,255,255,.14); color: #fff;
  font-size: 12px; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.08);
}

.mockup-window {
  position: absolute; right: -30px; top: -52px;
  width: 252px; border-radius: 18px; overflow: hidden;
  background: #fff; border: 1px solid rgba(255,255,255,.24);
  box-shadow: 0 20px 44px rgba(5,8,13,.24);
  animation: floatCard 4.4s ease-in-out infinite;
}
@keyframes floatCard { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.mockup-topbar {
  height: 30px; background: #d4dbe1;
  display: flex; align-items: center; gap: 7px; padding: 0 14px;
  border-bottom: 1px solid rgba(var(--navy-rgb),.08);
}
.mockup-dot { width: 8px; height: 8px; border-radius: 50%; background: #aab7c2; }
.mockup-body { padding: 14px; background: #fff; }
.mockup-line { height: 11px; border-radius: 999px; background: #e9f0f5; margin-bottom: 10px; }
.mockup-line.navy { background: var(--navy); }
.mockup-line.short { width: 58%; }
.mockup-line.mid   { width: 76%; }
.mockup-line.long  { width: 100%; }
.mockup-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 12px; }
.mockup-box { height: 54px; border-radius: 12px; background: var(--background); border: 1px solid rgba(var(--navy-rgb),.08); overflow: hidden; position: relative; }
.mockup-box img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Collapse mockup on mobile to avoid overflow issues */
@media (max-width: 991px) {
  .mockup-window { position: relative; right: auto; top: auto; width: 100%; margin-top: 18px; animation: none; }
  .visual-hero-card { min-height: auto; gap: 18px; }
}

.check-list-card {
  background: #fff; border: 1px solid rgba(var(--navy-rgb),.12);
  border-radius: 16px; padding: 18px 18px 16px;
  box-shadow: 0 6px 18px rgba(var(--navy-rgb),.05);
}
.check-list-title {
  font-family: var(--font-sub); font-size: 11px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 12px;
}
.visual-checklist { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.visual-checklist li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; line-height: 1.5; color: var(--navy); }
.visual-check {
  width: 22px; height: 22px; border-radius: 50%;
  background: rgba(var(--teal-rgb),.1); border: 1px solid rgba(var(--teal-rgb),.18);
  color: var(--teal); display: flex; align-items: center; justify-content: center;
  font-size: 10px; flex-shrink: 0; margin-top: 1px;
}
.badge-row { display: flex; flex-wrap: wrap; gap: 10px; }
.visual-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 12px; border-radius: 999px;
  background: #fff; border: 1px solid rgba(var(--navy-rgb),.12);
  color: var(--navy); font-size: 12px; font-weight: 600;
  box-shadow: 0 4px 12px rgba(var(--navy-rgb),.04);
}
.visual-badge i { color: var(--teal); font-size: 12px; }

.info-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 576px) { .info-grid-2 { grid-template-columns: 1fr; } }

.info-panel {
  background: #fff; border: 1px solid rgba(var(--navy-rgb),.12);
  border-radius: 16px; padding: 18px 18px 16px;
  box-shadow: 0 6px 18px rgba(var(--navy-rgb),.05);
}
.info-panel-icon {
  width: 36px; height: 36px; border-radius: 10px;
  background: rgba(var(--teal-rgb),.08); border: 1px solid rgba(var(--teal-rgb),.18);
  color: var(--teal); display: flex; align-items: center;
  justify-content: center; font-size: 14px; margin-bottom: 12px;
}
.info-panel h4 { font-family: var(--font-title); font-size: 17px; line-height: 1.1; letter-spacing: -.02em; color: var(--navy); margin-bottom: 8px; }
.info-panel p  { font-size: 14px; line-height: 1.6; color: #556575; }

.profile-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 576px) { .profile-grid { grid-template-columns: 1fr; } }

.profile-card {
  position: relative; min-height: 138px; border-radius: 16px;
  overflow: hidden; border: 1px solid rgba(var(--navy-rgb),.12);
  box-shadow: 0 6px 18px rgba(var(--navy-rgb),.05); cursor: pointer; background: #dfe9ef;
}
.profile-card::before {
  content: ""; position: absolute; inset: 0;
  background-image: var(--card-image); background-size: cover; background-position: center;
  transition: filter .35s ease, opacity .35s ease; filter: saturate(96%); opacity: 1;
}
.profile-card::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg,rgba(var(--navy-dark-rgb),.58) 0%,rgba(var(--navy-dark-rgb),.64) 55%,rgba(var(--navy-dark-rgb),.78) 100%);
  transition: background .22s ease, opacity .22s ease;
}
.profile-card:hover::after { background: linear-gradient(180deg,rgba(255,255,255,.92) 0%,rgba(255,255,255,.94) 100%); }
.profile-card-inner { position: relative; z-index: 2; height: 100%; padding: 16px; }
.profile-front, .profile-back { position: absolute; inset: 16px; display: flex; flex-direction: column; justify-content: flex-end; }
.profile-front { opacity: 1; transition: opacity .22s ease; }
.profile-back  { opacity: 0; transition: opacity .22s ease; }
.profile-icon {
  width: 34px; height: 34px; border-radius: 10px;
  background: rgba(255,255,255,.16); border: 1px solid rgba(255,255,255,.22);
  color: #fff; display: flex; align-items: center;
  justify-content: center; font-size: 13px; margin-bottom: 10px;
  backdrop-filter: blur(6px);
}
.profile-front h4 { font-family: var(--font-title); font-size: 16px; line-height: 1.12; color: #fff; margin-bottom: 0; letter-spacing: -.02em; }
.profile-hint { position: absolute; top: 14px; right: 14px; display: inline-flex; align-items: center; justify-content: center; color: var(--highlight); opacity: .98; text-shadow: 0 2px 8px rgba(var(--navy-dark-rgb),.32); transition: opacity .2s ease; }
.profile-hint i { font-size: 13px; color: var(--highlight); }
.profile-card.intro-shake { animation: cardShake .9s ease-in-out 1; }
@keyframes cardShake {
  0%,100%{ transform:translateX(0); } 15%{ transform:translateX(-7px); }
  30%{ transform:translateX(7px); } 45%{ transform:translateX(-5px); }
  60%{ transform:translateX(5px); } 75%{ transform:translateX(-3px); }
  90%{ transform:translateX(3px); }
}
.profile-back h4 { font-family: var(--font-title); font-size: 16px; line-height: 1.12; color: var(--navy); margin-bottom: 8px; letter-spacing: -.02em; }
.profile-back p  { font-size: 13px; line-height: 1.5; color: #556575; margin: 0; }
.profile-card:hover .profile-front { opacity: 0; }
.profile-card:hover .profile-hint  { opacity: 0; }
.profile-card:hover .profile-back  { opacity: 1; }

/* ── SERVICES SECTION ── */
.services-section {
  height: 100vh; width: 100%;
  scroll-snap-align: start; position: relative; z-index: 10;
  padding: 0 32px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; overflow: hidden;
}

@media (max-width: 991px) {
  .services-section {
    height: auto;
    min-height: 100svh;
    padding: 100px 24px 60px;
    scroll-snap-align: none;
    overflow: visible;
  }
}
@media (max-width: 576px) {
  .services-section { padding: 88px 16px 48px; }
}

.svc-bg { position: absolute; inset: 0; z-index: 0; background: var(--background); }
.svc-blob { position: absolute; border-radius: 50%; filter: blur(80px); pointer-events: none; }
.svc-blob-1 { width: 600px; height: 500px; background: rgba(var(--teal-rgb),.18); top: -80px; left: -100px; }
.svc-blob-2 { width: 500px; height: 500px; background: rgba(var(--aqua-rgb),.22); top: 10%; right: -80px; }
.svc-blob-3 { width: 450px; height: 400px; background: rgba(var(--highlight-rgb),.28); bottom: -60px; left: 20%; }
.svc-blob-4 { width: 350px; height: 350px; background: rgba(var(--sky-rgb),.12); bottom: 10%; right: 15%; }

.svc-inner { position: relative; z-index: 1; width: 100%; max-width: 1240px; display: flex; flex-direction: column; align-items: center; }
.section-label { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--teal); margin-bottom: 10px; }
.section-title {
  font-family: var(--font-title);
  font-size: clamp(22px,3vw,40px);
  font-weight: 700; color: var(--navy);
  letter-spacing: -.03em; text-align: center;
  margin-bottom: 6px; line-height: 1.0;
}
.section-title em { font-style: normal; color: var(--teal); }
.section-subtitle { font-family: var(--font-sub); font-size: 14px; font-weight: 300; color: var(--text-secondary); text-align: center; max-width: 460px; margin: 0 auto 20px; line-height: 1.6; }

.svc-toggle {
  display: inline-flex; align-items: center;
  background: rgba(var(--navy-rgb),.08);
  border: 1px solid rgba(var(--navy-rgb),.12);
  border-radius: 999px; padding: 4px; margin-bottom: 24px;
  backdrop-filter: blur(8px);
}
.svc-toggle-btn {
  font-family: var(--font-body); font-size: 12px; font-weight: 600;
  padding: 7px 20px; border-radius: 999px; border: none; cursor: pointer;
  transition: all .25s; color: rgba(var(--navy-rgb),.55);
  background: transparent; white-space: nowrap;
}
.svc-toggle-btn.active { background: #fff; color: var(--navy); box-shadow: 0 2px 8px rgba(var(--navy-rgb),.12); }
.svc-toggle-btn .svc-badge {
  display: inline-block; font-size: 9px; font-weight: 700;
  letter-spacing: .04em; text-transform: uppercase;
  background: var(--teal); color: #fff;
  padding: 2px 6px; border-radius: 999px; margin-left: 6px;
}

/* Services grid — responsive */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px; width: 100%;
  align-items: stretch;
}
@media (max-width: 1199px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 575px)  { .services-grid { grid-template-columns: 1fr; } }

.service-card {
  background: rgba(255,255,255,.88); backdrop-filter: blur(12px);
  border: 1px solid rgba(var(--navy-rgb),.1); border-radius: 18px;
  padding: 20px 18px 16px; display: flex; flex-direction: column;
  transition: border-color .25s, box-shadow .25s, transform .25s;
  position: relative; overflow: hidden;
}
.service-card:hover { border-color: rgba(var(--teal-rgb),.45); box-shadow: 0 12px 32px rgba(var(--navy-rgb),.12); transform: translateY(-3px); }
.service-card.featured { background: rgba(255,255,255,.96); border-color: var(--teal); box-shadow: 0 8px 28px rgba(var(--teal-rgb),.18); }
.service-featured-tag { position: absolute; top: 12px; right: 12px; font-size: 9px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: #fff; background: var(--teal); padding: 3px 8px; border-radius: 999px; }
.service-tier { font-family: var(--font-body); font-size: 11px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--text-secondary); margin-bottom: 6px; }
.service-name { font-family: var(--font-title); font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 2px; letter-spacing: -.02em; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.service-tagline { font-family: var(--font-sub); font-size: 11px; color: var(--teal); margin-bottom: 12px; }
.service-price { font-size: 11px; font-weight: 500; color: var(--text-secondary); margin-bottom: 14px; display: flex; align-items: baseline; gap: 3px; }
.service-price strong { font-family: var(--font-title); font-size: 26px; font-weight: 700; color: var(--navy); letter-spacing: -.04em; }
.service-divider { height: 1px; background: rgba(var(--navy-rgb),.1); margin-bottom: 12px; }
.service-features { list-style: none; margin-bottom: 12px; flex: 1; padding: 0; }
.service-features li { font-size: 12px; color: #4a5a6a; padding: 3px 0; display: flex; align-items: flex-start; gap: 8px; line-height: 1.4; }
.service-features li.dimmed { opacity: .38; }
.feature-check { color: var(--teal); font-size: 10px; margin-top: 2px; flex-shrink: 0; }
.feature-x { color: rgba(var(--navy-rgb),.3); font-size: 10px; margin-top: 2px; flex-shrink: 0; }

.service-card.full-pkg { background: var(--navy); border-color: rgba(var(--highlight-rgb),.15); color: #fff; }
.service-card.full-pkg .service-tier { color: rgba(255,255,255,.5); }
.service-card.full-pkg .service-name { color: #fff; }
.service-card.full-pkg .service-tagline { color: var(--aqua); }
.service-card.full-pkg .service-price strong { color: #fff; }
.service-card.full-pkg .service-price { color: rgba(255,255,255,.5); }
.service-card.full-pkg .service-divider { background: rgba(255,255,255,.12); }
.service-card.full-pkg .service-features li { color: rgba(255,255,255,.8); }
.service-card.full-pkg .feature-check { color: var(--highlight); }
.service-card.full-pkg .addon-trigger { color: rgba(255,255,255,.7); border-top-color: rgba(255,255,255,.12); }
.service-card.full-pkg .addon-dot { background: var(--highlight); box-shadow: 0 0 0 2px rgba(var(--highlight-rgb),.2); }
.service-card.full-pkg .addon-list li { color: rgba(255,255,255,.55); }
.service-card.full-pkg .addon-list li i { color: var(--highlight); }
.service-card.full-pkg:hover { border-color: rgba(var(--highlight-rgb),.35); box-shadow: 0 12px 40px rgba(var(--teal-rgb),.2); }
.full-pkg-badge { display: inline-flex; align-items: center; gap: 6px; background: var(--highlight); color: var(--navy); font-family: var(--font-body); font-size: 10px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; padding: 4px 10px; border-radius: 999px; margin-bottom: 14px; width: fit-content; }
.full-pkg-badge i { font-size: 9px; }

.service-card.retainer { background: rgba(255,255,255,.96); border-color: rgba(var(--navy-rgb),.1); }
.service-card.retainer .service-name { font-size: 17px; }
.service-card.retainer .service-price strong { font-size: 24px; }

.btn-whatsapp {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  font-size: 12px; font-weight: 700; color: #fff;
  background: var(--whatsapp); border: none; padding: 11px 14px;
  border-radius: 10px; cursor: pointer; text-decoration: none;
  transition: all .2s; margin-top: auto;
}
.btn-whatsapp:hover { background: var(--whatsapp-dark); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(37,211,102,.35); color: #fff; }
.wa-icon { width: 14px; height: 14px; fill: #fff; flex-shrink: 0; }

.addon-trigger {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 10px; font-weight: 700; color: var(--navy);
  letter-spacing: .05em; text-transform: uppercase;
  padding: 12px 0; border-top: 1px solid rgba(var(--navy-rgb),.1);
  cursor: pointer; user-select: none; opacity: .75; transition: opacity .2s; gap: 8px;
}
.addon-trigger:hover { opacity: 1; }
.addon-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--teal); flex-shrink: 0; box-shadow: 0 0 0 2px rgba(var(--teal-rgb),.2); animation: dotPulse 2.2s ease-in-out infinite; }
@keyframes dotPulse { 0%,100%{ box-shadow: 0 0 0 2px rgba(var(--teal-rgb),.2); } 50%{ box-shadow: 0 0 0 5px rgba(var(--teal-rgb),0); } }
.addon-trigger i { font-size: 9px; transition: transform .25s; flex-shrink: 0; }
.addon-panel { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.addon-panel.open { max-height: 200px; }
.addon-list { list-style: none; padding: 4px 0 8px; }
.addon-list li { font-size: 11px; color: var(--text-secondary); padding: 3px 0; display: flex; align-items: center; gap: 7px; line-height: 1.35; }
.addon-list li i { color: var(--teal); font-size: 9px; }
.addon-trigger.open .addon-dot { background: var(--navy); box-shadow: none; animation: none; }

.svc-panel { width: 100%; }
.svc-panel.hidden { display: none; }
.svc-panel.fading-in { animation: svcFadeIn .38s ease forwards; }
@keyframes svcFadeIn { from{ opacity:0; transform:translateY(10px); } to{ opacity:1; transform:translateY(0); } }

/* ── PORTFOLIO SECTION ── */
.portfolio-section {
  height: 100vh; width: 100%;
  scroll-snap-align: start;
  background: var(--navy-dark);
  display: flex; overflow: hidden;
}

@media (max-width: 991px) {
  .portfolio-section {
    height: auto;
    min-height: 100svh;
    scroll-snap-align: none;
    overflow: visible;
  }
}

.portfolio-shell { width: 100%; height: 100%; display: grid; grid-template-columns: 300px 1fr; }

@media (max-width: 991px) {
  .portfolio-shell { grid-template-columns: 1fr; height: auto; }
}

.portfolio-left {
  display: flex; flex-direction: column; justify-content: center;
  border-right: 1px solid rgba(255,255,255,.08);
  /*background: linear-gradient(160deg,var(--teal) 0%,var(--navy) 55%,var(--navy-dark) 100%);*/
  height: 100%; overflow: hidden; position: relative;
}
.portfolio-left::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 20% 80%,rgba(var(--teal-rgb),.18),transparent 60%),radial-gradient(ellipse at 80% 10%,rgba(var(--sky-rgb),.12),transparent 50%);
  pointer-events: none;
}
.portfolio-left-inner {
  padding: 36px 32px; display: flex; flex-direction: column;
  align-items: center; height: 100%; justify-content: space-between;
  position: relative; z-index: 1;
}

@media (max-width: 991px) {
  .portfolio-left { display: none; }
}

/* Mobile portfolio header */
.portfolio-mobile-header {
  display: none;
  background: linear-gradient(160deg,var(--teal) 0%,var(--navy) 100%);
  padding: 90px 24px 32px;
  position: relative; z-index: 1;
}
@media (max-width: 991px) {
  .portfolio-mobile-header { display: block; }
}
.portfolio-mobile-header .portfolio-section-label { font-size: 10px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.55); margin-bottom: 6px; }
.portfolio-mobile-header .portfolio-section-title { font-family: var(--font-title); font-size: 36px; font-weight: 700; color: #fff; letter-spacing: -.04em; line-height: .95; margin-bottom: 20px; text-transform: uppercase; }
.portfolio-mobile-cats { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.portfolio-mobile-cats .portfolio-cat-btn {
  font-family: var(--font-title); font-size: 11px; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  color: rgba(255,255,255,.55); border: 1px solid rgba(255,255,255,.2);
  background: transparent; border-radius: 999px; padding: 7px 14px;
  cursor: pointer; transition: all .2s;
}
.portfolio-mobile-cats .portfolio-cat-btn.active { color: #fff; background: rgba(255,255,255,.15); border-color: rgba(255,255,255,.5); }
.portfolio-mobile-ctas { display: flex; gap: 10px; flex-wrap: wrap; }

.port-logo { font-family: var(--font-title); font-size: 17px; font-weight: 700; color: #fff; text-decoration: none; letter-spacing: -.02em; display: block; align-self: flex-start; }
.port-logo span { color: var(--highlight); }
.port-mid { display: flex; flex-direction: column; align-items: center; width: 100%; }
.portfolio-section-label { font-size: 10px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.55); margin-bottom: 6px; text-align: center; }
.portfolio-section-title { font-family: var(--font-title); font-size: clamp(26px,3vw,42px); font-weight: 700; color: #fff; letter-spacing: -.04em; line-height: .95; margin-bottom: 24px; text-transform: uppercase; text-align: center; }
.portfolio-categories { list-style: none; width: 100%; padding: 0; margin: 0; }
.portfolio-categories li { border-top: 1px solid rgba(255,255,255,.1); }
.portfolio-categories li:last-child { border-bottom: 1px solid rgba(255,255,255,.1); }
.portfolio-cat-btn { display: block; width: 100%; padding: 13px 0; border: none; background: transparent; cursor: pointer; text-align: center; font-family: var(--font-title); font-size: 12px; font-weight: 600; letter-spacing: .08em; color: rgba(255,255,255,.38); transition: color .2s; text-transform: uppercase; }
.portfolio-cat-btn:hover { color: rgba(255,255,255,.8); }
.portfolio-cat-btn.active { color: #fff; }
.port-ctas { display: flex; flex-direction: column; gap: 10px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.12); width: 100%; }
.port-cta-btn { display: flex; align-items: center; justify-content: center; gap: 8px; font-family: var(--font-body); font-size: 11px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; padding: 10px 14px; border-radius: var(--r-sm); text-decoration: none; cursor: pointer; transition: all .2s; }
.port-cta-primary { background: linear-gradient(135deg, var(--sky) 0%, var(--sky) 20%, var(--teal) 100%); color: #fff; border: none; box-shadow: 0 4px 16px rgba(var(--teal-rgb),.3); }
.port-cta-primary:hover { opacity: .88; transform: translateY(-1px); color: #fff; }
.port-cta-outline { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.55); }
.port-cta-outline:hover { border-color: #fff; background: rgba(255,255,255,.08); color: #fff; }

.portfolio-right {
  height: 100%; overflow-y: scroll;
  padding: 72px 0; display: flex;
  flex-direction: column; align-items: center;
  background: var(--background);
}
.portfolio-right::-webkit-scrollbar { width: 3px; }
.portfolio-right::-webkit-scrollbar-thumb { background: rgba(var(--navy-rgb),.2); border-radius: 2px; }
.portfolio-inner-wrap { width: 100%; max-width: 720px; padding: 0 32px 40px; }

@media (max-width: 991px) {
  .portfolio-right { height: auto; overflow-y: visible; padding: 32px 0 60px; }
  .portfolio-inner-wrap { max-width: 100%; padding: 0 24px 40px; }
}
@media (max-width: 576px) {
  .portfolio-inner-wrap { padding: 0 16px 40px; }
}

.portfolio-category-group { margin-bottom: 60px; }
.portfolio-group-label { font-family: var(--font-title); font-size: clamp(16px,2vw,22px); font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: var(--navy); margin-bottom: 20px; display: block; padding-bottom: 12px; border-bottom: 2px solid var(--navy); border-left: 4px solid var(--teal); padding-left: 12px; text-align: left; }
.portfolio-item { margin-bottom: 36px; }
.portfolio-item-label { font-family: var(--font-sub); font-size: 15px; font-weight: 400; color: var(--navy); margin-bottom: 10px; opacity: .7; }
.portfolio-thumb { width: 100%; aspect-ratio: 16/8; border-radius: var(--r); position: relative; overflow: hidden; border: 1px solid rgba(var(--navy-rgb),.12); cursor: pointer; box-shadow: 0 8px 28px rgba(var(--navy-rgb),.1); background: rgba(var(--navy-rgb),.08); }
.portfolio-thumb .scroll-preview { position: absolute; inset: 0; width: 100%; background-size: 100% auto; background-position: top center; background-repeat: no-repeat; transition: background-position 0s; will-change: background-position; }
.portfolio-thumb:hover .scroll-preview { background-position: bottom center; transition: background-position 4s linear; }
.portfolio-thumb .preview-overlay { position: absolute; inset: 0; z-index: 2; display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity .25s; background: rgba(var(--navy-rgb),.12); }
.portfolio-thumb:hover .preview-overlay { opacity: 1; }
.portfolio-thumb .preview-link-btn { width: 46px; height: 46px; border-radius: 50%; background: rgba(var(--teal-rgb),.9); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 15px; backdrop-filter: blur(4px); box-shadow: 0 4px 16px rgba(var(--teal-rgb),.4); transition: transform .2s; }
.portfolio-thumb:hover .preview-link-btn { transform: scale(1.08); }
.portfolio-thumb.cat-catalogo   { background: linear-gradient(135deg,rgba(var(--teal-rgb),.14),rgba(var(--teal-rgb),.06)); }
.portfolio-thumb.cat-redesign   { background: linear-gradient(135deg,rgba(var(--navy-rgb),.10),rgba(var(--navy-rgb),.04)); }
.portfolio-thumb.cat-nuevo      { background: linear-gradient(135deg,rgba(var(--sky-rgb),.14),rgba(var(--sky-rgb),.06)); }
.portfolio-thumb.cat-informativo{ background: linear-gradient(135deg,rgba(var(--aqua-rgb),.55),rgba(var(--aqua-rgb),.30)); }
.portfolio-item-meta { margin-top: 8px; font-size: 11px; color: rgba(var(--navy-rgb),.4); }

/* ── WHY SECTION ── */
.why-section {
  min-height: 100vh; width: 100%; position: relative;
  display: flex; align-items: center; justify-content: center;
  padding: 64px 48px; overflow: hidden;
  scroll-snap-align: start; scroll-snap-stop: always;
  background:
    linear-gradient(135deg,rgba(var(--navy-dark-rgb),.92) 0%,rgba(var(--navy-rgb),.88) 42%,rgba(var(--teal-rgb),.70) 100%),
    linear-gradient(180deg,rgba(var(--navy-rgb),.35),rgba(var(--navy-rgb),.72)),
    url('https://img.freepik.com/free-photo/still-life-graphic-design-office_23-2151345408.jpg') center/cover no-repeat;
}
.why-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 18% 22%,rgba(var(--highlight-rgb),.14),transparent 28%),radial-gradient(circle at 82% 78%,rgba(var(--aqua-rgb),.16),transparent 24%);
  pointer-events: none;
}
.why-shell {
  position: relative; z-index: 1; width: min(1140px,100%);
  display: grid;
  grid-template-columns: minmax(300px,430px) minmax(320px,1fr);
  gap: 48px; align-items: center;
}
.why-copy { max-width: 420px; text-align: center; justify-self: center; }
.why-copy .section-label { color: rgba(255,255,255,.88); margin-bottom: 12px; text-align: center; }
.why-copy .section-title { color: var(--white); margin-bottom: 16px; text-align: center; }
.why-copy .section-title em { color: var(--highlight); }
.why-text { font-family: var(--font-body); font-size: 16px; line-height: 1.75; color: rgba(255,255,255,.78); text-align: center; }
.why-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 18px; }
.why-card {
  background: rgba(255,255,255,.92); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.22); border-radius: 18px;
  padding: 24px 20px; min-height: 190px;
  box-shadow: 0 10px 30px rgba(5,8,13,.18);
  display: flex; flex-direction: column; justify-content: flex-start;
}
.why-card-icon { width: 44px; height: 44px; border-radius: 12px; background: rgba(var(--teal-rgb),.08); border: 1px solid rgba(var(--teal-rgb),.14); display: flex; align-items: center; justify-content: center; color: var(--teal); font-size: 16px; margin-bottom: 14px; }
.why-card h3 { font-family: var(--font-title); font-size: 18px; line-height: 1.15; letter-spacing: -.02em; color: var(--navy); margin-bottom: 10px; }
.why-card p  { font-family: var(--font-body); font-size: 14px; line-height: 1.65; color: var(--text-secondary); }

@media (max-width: 991px) {
  .why-section { padding: 80px 24px 60px; scroll-snap-align: none; }
  .why-shell { grid-template-columns: 1fr; gap: 28px; }
  .why-copy { max-width: none; }
}
@media (max-width: 576px) {
  .why-section { padding: 64px 20px 48px; }
  .why-grid { grid-template-columns: 1fr; }
  .why-card { min-height: auto; }
}

/* ── FAQ SECTION ── */
.faq-section {
  height: 100vh; width: 100%; background: var(--background);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; padding: 0;
  position: relative; z-index: 10;
  scroll-snap-align: start; scroll-snap-stop: always;
}
.faq-shell { width: min(100%,980px); height: 100%; margin: 0 auto; display: flex; flex-direction: column; justify-content: center; padding: 0; }
.faq-top { padding: 0 24px 28px; display: flex; flex-direction: column; align-items: center; flex-shrink: 0; }
.faq-label { font-size: 10px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--teal); font-family: 'Manrope',sans-serif; margin-bottom: 10px; }
.faq-title { font-family: 'Space Grotesk',sans-serif; font-size: clamp(26px,3.5vw,44px); font-weight: 700; color: var(--navy); letter-spacing: -.03em; line-height: 1.05; margin-bottom: 10px; text-align: center; }
.faq-title em { font-style: normal; color: var(--teal); }
.faq-subtitle { font-family: 'Sora',sans-serif; font-size: 14px; font-weight: 300; color: var(--gray); line-height: 1.7; text-align: center; max-width: 500px; }

.faq-body { width: min(100%,980px); margin: 0 auto; position: relative; padding: 0 24px 0 306px; overflow: visible; }
.faq-sidebar { width: 210px; padding: 18px 0 0; display: flex; flex-direction: column; gap: 2px; overflow: visible; position: absolute; left: 24px; top: 10px; }
.faq-sidebar-label { font-family: 'Manrope',sans-serif; font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: rgba(var(--navy-rgb),.3); padding: 0 0 10px 10px; margin-bottom: 6px; }
.faq-tab { display: flex; align-items: center; gap: 10px; font-family: 'Manrope',sans-serif; font-size: 13px; font-weight: 500; color: rgba(var(--navy-rgb),.4); padding: 9px 10px; border-radius: 8px; border: none; background: transparent; cursor: pointer; transition: all .18s; text-align: left; width: 100%; white-space: nowrap; }
.faq-tab span { white-space: nowrap; }
.faq-tab-long { font-size: 12.5px; }
.faq-tab i { font-size: 11px; width: 14px; text-align: center; color: rgba(var(--navy-rgb),.2); transition: color .18s; flex-shrink: 0; }
.faq-tab:hover { background: rgba(var(--navy-rgb),.05); color: var(--navy); }
.faq-tab:hover i { color: var(--teal); }
.faq-tab.active { background: #fff; color: var(--navy); font-weight: 700; box-shadow: 0 2px 8px rgba(var(--navy-rgb),.07); border: 1px solid rgba(var(--navy-rgb),.08); }
.faq-tab.active i { color: var(--teal); }
.faq-sidebar-divider { width: 100%; height: 1px; background: rgba(var(--navy-rgb),.12); margin: 16px 0 14px; }
.faq-sidebar-cta-copy { font-family: 'Manrope',sans-serif; font-size: 13px; font-weight: 600; color: var(--navy); line-height: 1.45; margin-bottom: 6px; text-align: center; }
.faq-contact-btn { display: flex; align-items: center; justify-content: center; margin-top: 6px; width: 100%; font-size: 13px; font-weight: 600; color: #fff; background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 20%, var(--teal) 100%); border: none; padding: 11px 16px; border-radius: var(--r-sm); cursor: pointer; text-decoration: none; transition: opacity .2s, transform .15s; box-shadow: 0 4px 20px rgba(var(--teal-rgb),.35); text-align: center; }
.faq-contact-btn:hover { opacity: .88; transform: translateY(-2px); color: #fff; }
.faq-list-wrap { padding: 10px 0 0; overflow: visible; min-height: 320px; display: block; }
.faq-list { display: flex; flex-direction: column; gap: 8px; max-width: 690px; width: 100%; }
.faq-list.fading { opacity: 0; transform: translateY(4px); transition: opacity .15s,transform .15s; }
.faq-list.visible { opacity: 1; transform: translateY(0); transition: opacity .2s,transform .2s; }
.faq-item { background: #fff; border: 1px solid rgba(var(--navy-rgb),.09); border-radius: 12px; overflow: hidden; transition: border-color .2s, box-shadow .2s; flex-shrink: 0; }
.faq-item:hover { border-color: rgba(var(--teal-rgb),.3); box-shadow: 0 3px 10px rgba(var(--navy-rgb),.06); }
.faq-item.open { border-color: rgba(var(--teal-rgb),.5); box-shadow: 0 4px 16px rgba(var(--teal-rgb),.09); }
.faq-q { display: flex; align-items: center; justify-content: space-between; padding: 15px 18px; cursor: pointer; gap: 14px; user-select: none; }
.faq-q-text { font-family: 'Manrope',sans-serif; font-size: 13.5px; font-weight: 600; color: var(--navy); line-height: 1.4; }
.faq-icon-wrap { width: 24px; height: 24px; border-radius: 50%; border: 1.5px solid rgba(var(--navy-rgb),.15); display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--navy); font-size: 9px; transition: all .25s; }
.faq-item.open .faq-icon-wrap { background: var(--teal); border-color: var(--teal); color: #fff; transform: rotate(45deg); }
.faq-a { font-family: 'Manrope',sans-serif; font-size: 13px; color: var(--gray); line-height: 1.78; display: none; opacity: 0; padding: 0 18px 0; }
.faq-item.open .faq-a { display: block; opacity: 1; padding: 0 18px 16px; animation: faqAnswerFade .16s ease; }
@keyframes faqAnswerFade { from{ opacity:0; transform:translateY(-2px); } to{ opacity:1; transform:translateY(0); } }

@media (max-width: 991px) {
  .faq-section { height: auto; min-height: 100svh; scroll-snap-align: none; padding: 80px 0 60px; }
  .faq-shell { height: auto; justify-content: flex-start; padding-top: 0; }
  .faq-body { padding: 0 24px; display: grid; grid-template-columns: 1fr; gap: 12px; }
  .faq-sidebar { width: auto; padding-top: 0; position: static; }
  .faq-list { max-width: none; }
}
@media (max-width: 576px) {
  .faq-top { padding: 0 20px 24px; }
  .faq-body { padding: 0 20px; }
}

/* ── CONTACT SECTION ── */
.contact-section {
  height: 100vh; width: 100%; background: var(--background);
  scroll-snap-align: start; scroll-snap-stop: always;
  position: relative; z-index: 50;
  display: flex; align-items: center; justify-content: center;
  padding: 22px 24px 18px; overflow: hidden;
}
.contact-bg-circle { position: absolute; border-radius: 50%; pointer-events: none; filter: blur(10px); opacity: .24; }
.contact-bg-circle.c1 { width: 320px; height: 320px; background: radial-gradient(circle at 30% 30%,rgba(var(--teal-rgb),.30),rgba(var(--teal-rgb),0)); top: 6%; left: 3%; animation: contactFloatOne 13s ease-in-out infinite; }
.contact-bg-circle.c2 { width: 420px; height: 420px; background: radial-gradient(circle at 50% 50%,rgba(var(--navy-rgb),.14),rgba(var(--navy-rgb),0)); bottom: -10%; right: 2%; animation: contactFloatTwo 16s ease-in-out infinite; }
.contact-bg-circle.c3 { width: 220px; height: 220px; background: radial-gradient(circle at 50% 50%,rgba(var(--aqua-rgb),.58),rgba(var(--aqua-rgb),0)); top: 24%; right: 24%; animation: contactFloatThree 11s ease-in-out infinite; }
.contact-bg-circle.c4 { width: 260px; height: 260px; background: radial-gradient(circle at 50% 50%,rgba(var(--teal-rgb),.22),rgba(var(--teal-rgb),0)); bottom: 18%; left: 18%; animation: contactFloatFour 14s ease-in-out infinite; }
.contact-bg-circle.c5 { width: 300px; height: 300px; background: radial-gradient(circle at 50% 50%,rgba(162,222,140,.24),rgba(162,222,140,0)); top: 10%; right: 8%; animation: contactFloatFive 15s ease-in-out infinite; }
.contact-bg-circle.c6 { width: 180px; height: 180px; background: radial-gradient(circle at 50% 50%,rgba(120,209,156,.26),rgba(120,209,156,0)); bottom: 10%; right: 34%; animation: contactFloatSix 12s ease-in-out infinite; }
@keyframes contactFloatOne   { 0%,100%{ transform:translate3d(0,0,0) scale(1); } 50%{ transform:translate3d(18px,-22px,0) scale(1.06); } }
@keyframes contactFloatTwo   { 0%,100%{ transform:translate3d(0,0,0) scale(1); } 50%{ transform:translate3d(-20px,18px,0) scale(1.04); } }
@keyframes contactFloatThree { 0%,100%{ transform:translate3d(0,0,0) scale(1); } 50%{ transform:translate3d(10px,16px,0) scale(1.08); } }
@keyframes contactFloatFour  { 0%,100%{ transform:translate3d(0,0,0) scale(1); } 50%{ transform:translate3d(16px,12px,0) scale(1.05); } }
@keyframes contactFloatFive  { 0%,100%{ transform:translate3d(0,0,0) scale(1); } 50%{ transform:translate3d(-12px,-18px,0) scale(1.07); } }
@keyframes contactFloatSix   { 0%,100%{ transform:translate3d(0,0,0) scale(1); } 50%{ transform:translate3d(8px,-14px,0) scale(1.06); } }

.contact-shell {
  position: relative; z-index: 2; width: min(100%,980px);
  max-height: calc(100vh - 84px);
  background: #FFFFFF; border-radius: 24px;
  box-shadow: 0 18px 46px rgba(var(--navy-rgb),.08);
  padding: 28px 30px 18px; overflow: hidden;
}
.contact-top { display: grid; grid-template-columns: minmax(0,1fr) 390px; gap: 28px; align-items: center; margin-bottom: 18px; }
.contact-copy-label { font-family: var(--font-body); font-size: 10px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--teal); margin-bottom: 10px; }
.contact-title { font-family: var(--font-title); font-size: clamp(28px,3.6vw,42px); font-weight: 700; color: var(--navy); letter-spacing: -.04em; line-height: 1.02; margin-bottom: 12px; }
.contact-title em { font-style: normal; color: var(--teal); }
.contact-copy-text { font-family: var(--font-sub); font-size: 13px; font-weight: 300; color: var(--gray); line-height: 1.65; max-width: 390px; margin-bottom: 16px; }
.contact-points { display: flex; flex-direction: column; gap: 10px; }
.contact-point { display: flex; align-items: flex-start; gap: 14px; }
.contact-point-icon { width: 36px; height: 36px; border-radius: 10px; background: rgba(var(--teal-rgb),.08); border: 1px solid rgba(var(--teal-rgb),.14); display: flex; align-items: center; justify-content: center; color: var(--teal); flex-shrink: 0; font-size: 13px; }
.contact-point-copy small { display: block; font-family: var(--font-body); font-size: 11px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: rgba(var(--navy-rgb),.42); margin-bottom: 4px; }
.contact-point-copy span, .contact-point-copy a { font-family: var(--font-body); font-size: 14px; color: var(--navy); text-decoration: none; line-height: 1.45; }
.contact-card { background: #FFFFFF; border: 1px solid rgba(var(--navy-rgb),.08); border-radius: 18px; box-shadow: 0 14px 32px rgba(var(--navy-rgb),.08); padding: 16px 16px 14px; }
.contact-form { display: flex; flex-direction: column; gap: 10px; }
.contact-field label { display: block; font-family: var(--font-body); font-size: 11px; font-weight: 600; color: var(--navy); margin-bottom: 5px; }
.contact-field input, .contact-field select, .contact-field textarea { width: 100%; border: 1px solid rgba(var(--navy-rgb),.08); background: var(--background); border-radius: 12px; padding: 11px 13px; font-family: var(--font-body); font-size: 13px; color: var(--navy); outline: none; transition: border-color .18s, box-shadow .18s; -webkit-appearance: none; appearance: none; }
.contact-field input, .contact-field select { min-height: 42px; }
.contact-field textarea { min-height: 84px; resize: none; }
.contact-field select { background-image: linear-gradient(45deg,transparent 50%,var(--navy) 50%),linear-gradient(135deg,var(--navy) 50%,transparent 50%); background-position: calc(100% - 18px) calc(50% - 2px),calc(100% - 13px) calc(50% - 2px); background-size: 5px 5px,5px 5px; background-repeat: no-repeat; padding-right: 34px; }
.contact-field input::placeholder, .contact-field textarea::placeholder { color: #8E98A3; }
.contact-field input:focus, .contact-field select:focus, .contact-field textarea:focus { border-color: rgba(var(--teal-rgb),.5); box-shadow: 0 0 0 3px rgba(var(--teal-rgb),.10); }
.contact-submit { margin-top: 2px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 42px; width: 100%; border: none; border-radius: 14px; background: linear-gradient(135deg,var(--navy) 0%,var(--teal) 100%); color: #FFFFFF; font-family: var(--font-body); font-size: 12px; font-weight: 700; cursor: pointer; box-shadow: 0 10px 24px rgba(var(--navy-rgb),.16); transition: transform .18s, box-shadow .18s; }
.contact-submit:hover { transform: translateY(-1px); box-shadow: 0 14px 28px rgba(var(--navy-rgb),.2); }

/* Footer-inside-contact */
.contact-foot { border-top: 1px solid rgba(var(--navy-rgb),.08); padding-top: 14px; display: grid; grid-template-columns: 1.1fr .9fr .9fr .9fr; gap: 18px; align-items: start; }
.contact-brand { max-width: 200px; }
.contact-brand-name { font-family: var(--font-title); font-size: 20px; font-weight: 700; color: var(--navy); margin-bottom: 8px; letter-spacing: -.03em; }
.contact-brand-name span { color: var(--teal); }
.contact-brand p { font-family: var(--font-body); font-size: 12px; color: var(--gray); line-height: 1.55; margin-bottom: 10px; }
.contact-socials { display: flex; gap: 10px; }
.contact-socials a { width: 30px; height: 30px; border-radius: 999px; display: flex; align-items: center; justify-content: center; text-decoration: none; background: var(--background); color: var(--navy); border: 1px solid rgba(var(--navy-rgb),.08); }
.contact-col h4 { font-family: var(--font-body); font-size: 13px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.contact-col ul { list-style: none; display: flex; flex-direction: column; gap: 7px; padding: 0; }
.contact-col li, .contact-col a, .contact-col span { font-family: var(--font-body); font-size: 12px; color: var(--gray); text-decoration: none; line-height: 1.45; }
.contact-bottom { margin-top: 12px; padding-top: 12px; border-top: 1px solid rgba(var(--navy-rgb),.06); text-align: center; font-family: var(--font-body); font-size: 11px; color: #8A8A8A; }

@media (max-width: 991px) {
  .contact-section { height: auto; min-height: 100svh; scroll-snap-align: none; padding: 80px 18px 40px; }
  .contact-shell { max-height: none; padding: 24px 22px 16px; overflow: visible; }
  .contact-top { grid-template-columns: 1fr; gap: 18px; }
  .contact-foot { grid-template-columns: 1fr 1fr; gap: 16px; }
}
@media (max-width: 576px) {
  .contact-section { padding: 72px 16px 32px; }
  .contact-shell { padding: 22px 18px 16px; }
  .contact-foot { grid-template-columns: 1fr; gap: 14px; }
  .contact-copy-text { max-width: none; }
}

/* ══════════════════════════════════════════════════════════
   GRAVITY FORMS — Contact card skin
   Scoped to .contact-card so it only affects the landing
   page form and doesn't touch GF forms elsewhere on the site.
══════════════════════════════════════════════════════════ */
 
/* Reset GF wrapper chrome */
.contact-card .gform_wrapper,
.contact-card .gform_wrapper * {
  box-sizing: border-box;
}
.contact-card .gform_wrapper {
  margin: 0;
  padding: 0;
  background: transparent;
  font-family: var(--font-body);
}
 
/* Form body — same as .contact-form */
.contact-card .gform_body {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
 
/* Fields list — remove GF default spacing */
.contact-card .gform_fields {
  display: flex;
  flex-direction: column;
  gap: 10px !important;
  padding: 0;
  margin: 0;
}
 
/* Individual field — same as .contact-field */
.contact-card .gfield {
  margin: 0;
  padding: 0;
}
 
/* Labels */
.contact-card .gfield_label,
.contact-card .gfield_label.gform-field-label {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 3px;
  padding: 0;
}
 
/* Hide required asterisk text, keep it accessible */
.contact-card .gfield_required {
  display: none;
}
 
/* All inputs, selects, textareas */
.contact-card .gform_wrapper input[type="text"],
.contact-card .gform_wrapper input[type="email"],
.contact-card .gform_wrapper input[type="tel"],
.contact-card .gform_wrapper select.gfield_select,
.contact-card .gform_wrapper textarea {
  width: 100%;
  border: 1px solid rgba(var(--navy-rgb), .08);
  background: var(--background);
  border-radius: 10px;
  padding: 8px 12px !important;
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--navy);
  outline: none;
  transition: border-color .18s, box-shadow .18s;
  -webkit-appearance: none;
  appearance: none;
  box-shadow: none;
  margin: 0;
  max-width: 100%;
}
 
.contact-card .gform_wrapper input[type="text"],
.contact-card .gform_wrapper input[type="email"],
.contact-card .gform_wrapper input[type="tel"],
.contact-card .gform_wrapper select.gfield_select {
  min-height: 38px !important;
  height: auto !important;      /* override any fixed height GF sets */
  line-height: 1.4 !important;  /* prevent text clipping inside select */
}
 
.contact-card .gform_wrapper textarea {
  min-height: 68px;
  padding: 8px 12px;
  resize: none;
}
 
/* Select — custom arrow; suppress GF's own icon via variable override */
.contact-card .gform_wrapper {
  --gf-icon-ctrl-select: none; /* neutralise GF's injected arrow */
}
.contact-card .gform_wrapper select.gfield_select {
  background-image:
    linear-gradient(45deg, transparent 50%, var(--navy) 50%),
    linear-gradient(135deg, var(--navy) 50%, transparent 50%) !important;
  background-position:
    calc(100% - 16px) calc(50% - 1px),
    calc(100% - 11px) calc(50% - 1px) !important;
  background-size: 5px 5px, 5px 5px !important;
  background-repeat: no-repeat !important;
  background-color: var(--background) !important;
  padding-right: 32px;
  cursor: pointer;
}
 
/* Placeholders */
.contact-card .gform_wrapper input::placeholder,
.contact-card .gform_wrapper textarea::placeholder {
  color: #8E98A3;
}
 
/* Focus states */
.contact-card .gform_wrapper input:focus,
.contact-card .gform_wrapper select:focus,
.contact-card .gform_wrapper textarea:focus {
  border-color: rgba(var(--teal-rgb), .5);
  box-shadow: 0 0 0 3px rgba(var(--teal-rgb), .10);
  background: var(--background);
  outline: none;
}
 
/* Name field — GF wraps in a complex container */
.contact-card .ginput_complex.ginput_container--name {
  display: block;
  margin: 0;
  padding: 0;
}
.contact-card .ginput_complex .name_first {
  display: block;
  width: 100%;
  padding: 0;
}
.contact-card .ginput_complex .name_first input {
  width: 100%;
}
.contact-card .gform-field-label--type-sub {
  display: none;
}
 
/* Character counter */
.contact-card .charleft.ginput_counter {
  font-family: var(--font-body);
  font-size: 10px;
  color: #8E98A3;
  text-align: right;
  margin-top: 4px;
  padding: 0;
  background: transparent;
  border: none;
}
 
/* Submit button — matches .contact-submit */
.contact-card .gform_footer {
  padding: 0;
  margin-top: 2px;
}

.contact-card .gform_button.button:focus,
.contact-card .gform_button.button:target,
.contact-card .gform_button.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 42px;
  width: 100%;
  border: none;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 20%, var(--teal) 100%);
  color: #FFFFFF;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(var(--navy-rgb), .16);
  transition: transform .18s, box-shadow .18s;
  text-transform: none;
  letter-spacing: normal;
  padding: 0 20px;
}
.contact-card .gform_button.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(var(--navy-rgb), .2);
}
 
/* Validation — field error state */
.contact-card .gfield_error input,
.contact-card .gfield_error select,
.contact-card .gfield_error textarea {
  border-color: rgba(220, 53, 69, .4);
  background: #fff8f8;
}
.contact-card .gfield_error input:focus,
.contact-card .gfield_error select:focus,
.contact-card .gfield_error textarea:focus {
  border-color: rgba(220, 53, 69, .6);
  box-shadow: 0 0 0 3px rgba(220, 53, 69, .08);
}
 
/* Validation messages */
.contact-card .validation_message,
.contact-card .gfield_description.validation_message {
  font-family: var(--font-body);
  font-size: 11px;
  color: #dc3545;
  margin-top: 4px;
  padding: 0;
  background: transparent;
  border: none;
}
 
/* Top-level form error banner */
.contact-card .validation_error {
  font-family: var(--font-body);
  font-size: 12px;
  color: #dc3545;
  background: rgba(220, 53, 69, .06);
  border: 1px solid rgba(220, 53, 69, .2);
  border-radius: 10px;
  padding: 10px 14px;
  margin-bottom: 10px;
  text-align: center;
}
 
/* AJAX confirmation message */
.contact-card .gform_confirmation_message {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--navy);
  background: rgba(var(--teal-rgb), .08);
  border: 1px solid rgba(var(--teal-rgb), .25);
  border-radius: 12px;
  padding: 18px 20px;
  text-align: center;
  line-height: 1.6;
}

.contact-card .gform_validation_errors,
.contact-card .form_heading {display:none !important;}
 
/* Spinner shown during AJAX submit */
.contact-card .gform_ajax_spinner {
  display: inline-block;
  margin-left: 8px;
  vertical-align: middle;
}