/* ─────────────────────────────────────────────────────────────────────────────
   INOVACRED — INSTITUTIONAL WEBSITE
   Navy corporate · Gold accent · Syne + Inter
───────────────────────────────────────────────────────────────────────────── */

/* ── VARIABLES ── */
:root {
  --bg:        #0A1526;
  --bg-2:      #0E1C33;
  --bg-3:      #13253F;
  --bg-card:   #0F2038;
  --gold:      #B8923D;
  --gold-lt:   #D7B96A;
  --gold-dk:   #8C6B28;
  --blue:      #274B78;
  --blue-lt:   #3E6797;
  --text:      #FFFFFF;
  --text-2:    rgba(255,255,255,.64);
  --text-3:    rgba(255,255,255,.32);
  --border:    rgba(184,146,61,.22);
  --border-2:  rgba(255,255,255,.08);
  --r:         6px;
  --ease:      cubic-bezier(.25,.46,.45,.94);
  --ease-out:  cubic-bezier(0,.55,.45,1);
  --font-d:    'Syne', sans-serif;
  --font-b:    'Inter', sans-serif;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-b);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { border: none; background: none; cursor: pointer; font: inherit; color: inherit; }

/* ── VIDEO PLACEHOLDER ── */
.video-placeholder {
  position: absolute; inset: 0;
  background:
    linear-gradient(to bottom,
      #1a2a3a 0%,
      #2d4a6b 25%,
      #3d6b8a 45%,
      #2a3d2a 55%,
      #1a2a1a 100%);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.video-placeholder::before {
  content: '';
  position: absolute;
  bottom: 38%; left: 0; right: 0;
  height: 1px;
  background: rgba(255,255,255,.06);
}
.video-placeholder::after {
  content: '';
  position: absolute;
  bottom: 38%;
  left: 0; right: 0;
  height: 40%;
  background:
    radial-gradient(ellipse 60% 30% at 30% 100%, #1a3a1a 0%, transparent 70%),
    radial-gradient(ellipse 40% 20% at 70% 100%, #152a15 0%, transparent 60%),
    radial-gradient(ellipse 80% 40% at 50% 100%, #0d1f0d 0%, transparent 80%);
  pointer-events: none;
}
.vp-sun {
  position: absolute;
  top: 22%; left: 50%;
  transform: translateX(-50%);
  width: 48px; height: 48px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,220,100,.9) 0%, rgba(255,180,50,.6) 40%, transparent 70%);
  box-shadow: 0 0 60px 20px rgba(255,200,60,.15), 0 0 120px 40px rgba(255,160,30,.08);
}
.vp-mountains {
  position: absolute;
  bottom: 38%; left: 0; right: 0;
  height: 120px;
  pointer-events: none;
}
.vp-play {
  position: relative; z-index: 2;
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  border: 1.5px solid rgba(255,255,255,.3);
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(6px);
  transition: background .3s, transform .3s;
  cursor: pointer;
}
.vp-play svg { margin-left: 4px; }
.vp-play:hover { background: rgba(255,255,255,.2); transform: scale(1.08); }

/* ── CUSTOM SCROLLBAR ── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }

/* ── CURSOR ── */
.cursor {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%,-50%);
  transition: transform .1s var(--ease), opacity .3s;
  mix-blend-mode: difference;
}
.cursor-ring {
  width: 36px; height: 36px;
  border: 1px solid rgba(184,146,61,.5);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%,-50%);
  transition: transform .18s var(--ease), width .3s var(--ease), height .3s var(--ease), opacity .3s;
}
.cursor-ring.hovered { width: 56px; height: 56px; border-color: var(--gold); opacity: .6; }
@media (hover: none) { .cursor, .cursor-ring { display: none; } }


/* ── LAYOUT ── */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 40px;
}
section { position: relative; }

/* ── TYPOGRAPHY ── */
.h2 {
  font-family: var(--font-d);
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -.01em;
  color: var(--text);
}
.h2 em {
  font-style: italic;
  color: var(--gold);
}
.label {
  font-family: var(--font-b);
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex; align-items: center; gap: 10px;
}
.label::before {
  content: '';
  display: block; width: 24px; height: 1px;
  background: var(--gold);
}
.body-text {
  font-size: clamp(.875rem, 1.1vw, 1.05rem);
  color: var(--text-2);
  line-height: 1.8;
  margin-bottom: 20px;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px;
  font-family: var(--font-b);
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  border-radius: var(--r);
  transition: all .35s var(--ease);
  cursor: pointer; position: relative; overflow: hidden;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; transition: transform .3s var(--ease); }
.btn:hover svg { transform: translateX(4px); }
.btn-gold {
  background: var(--gold);
  color: #ffffff;
}
.btn-gold::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.15) 0%, transparent 60%);
  opacity: 0; transition: opacity .3s;
}
.btn-gold:hover { background: var(--gold-lt); box-shadow: 0 0 40px rgba(184,146,61,.35); }
.btn-gold:hover::before { opacity: 1; }
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1px solid rgba(255,255,255,.2);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-lg { padding: 17px 36px; font-size: .8rem; }
.btn-xl { padding: 20px 44px; font-size: .85rem; gap: 14px; }
.btn-xl svg { width: 22px; height: 22px; }

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 24px 0;
  transition: padding .4s var(--ease), background .4s var(--ease), border-color .4s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  padding: 16px 0;
  background: rgba(10,21,38,.92);
  backdrop-filter: blur(20px);
  border-bottom-color: var(--border);
}
.nav-inner {
  max-width: 1240px; margin: 0 auto; padding: 0 40px;
  display: flex; align-items: center; gap: 48px;
}
.nav-logo { flex-shrink: 0; }
.logo-main {
  display: block;
  font-family: var(--font-d);
  font-size: 1.15rem;
  font-weight: 400;
  letter-spacing: .04em;
  color: var(--text);
  line-height: 1.2;
}
.logo-sub {
  display: block;
  font-family: var(--font-b);
  font-size: .6rem;
  font-weight: 400;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
}
.nav-links {
  display: flex; gap: 36px; margin-left: auto;
}
.nav-link {
  font-size: .75rem;
  font-weight: 400;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-2);
  transition: color .3s;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute; bottom: -4px; left: 0; right: 100%;
  height: 1px; background: var(--gold);
  transition: right .3s var(--ease);
}
.nav-link:hover { color: var(--text); }
.nav-link:hover::after { right: 0; }
.nav-cta { margin-left: 16px; }
.hamburger {
  display: none; flex-direction: column; gap: 6px;
  width: 28px; margin-left: auto;
}
.hamburger span {
  display: block; height: 1px; background: var(--text);
  transition: transform .3s var(--ease), opacity .3s, width .3s var(--ease);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE MENU ── */
.mobile-overlay {
  position: fixed; inset: 0;
  z-index: 999;
  background: rgba(10,21,38,.97);
  backdrop-filter: blur(20px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: opacity .5s var(--ease), visibility .5s;
}
.mobile-overlay.open { opacity: 1; visibility: visible; }
.mobile-menu {
  display: flex; flex-direction: column; align-items: center; gap: 32px;
  text-align: center;
}
.mobile-link {
  font-family: var(--font-d);
  font-size: 2rem;
  font-weight: 300;
  color: var(--text-2);
  transition: color .3s;
  letter-spacing: .02em;
  transform: translateY(20px); opacity: 0;
  transition: transform .4s var(--ease), opacity .4s, color .3s;
}
.mobile-overlay.open .mobile-link {
  transform: translateY(0); opacity: 1;
}
.mobile-overlay.open .mobile-link:nth-child(1) { transition-delay: .1s; }
.mobile-overlay.open .mobile-link:nth-child(2) { transition-delay: .15s; }
.mobile-overlay.open .mobile-link:nth-child(3) { transition-delay: .2s; }
.mobile-overlay.open .mobile-link:nth-child(4) { transition-delay: .25s; }
.mobile-link:hover { color: var(--text); }
.mobile-link-cta {
  margin-top: 8px;
  font-family: var(--font-b) !important;
  font-size: .8rem !important;
  font-weight: 500 !important;
  letter-spacing: .1em !important;
  transition-delay: .3s !important;
}

/* ── TOPOLOGIC DECORATIONS ── */
.topo-hero {
  position: absolute;
  right: -80px; top: 50%;
  transform: translateY(-50%);
  width: 500px; height: 500px;
  opacity: .7;
  pointer-events: none;
  z-index: 0;
  animation: topoRotate 60s linear infinite;
}
.topo-method {
  position: absolute;
  right: -60px; top: 50%;
  transform: translateY(-50%);
  width: 600px; height: 600px;
  opacity: .5;
  pointer-events: none;
  z-index: 0;
  animation: topoRotate 80s linear infinite reverse;
}
.topo-svg { width: 100%; height: 100%; }
@keyframes topoRotate {
  from { transform: translateY(-50%) rotate(0deg); }
  to   { transform: translateY(-50%) rotate(360deg); }
}

/* ── HERO INSTITUTIONAL ── */
.hero {
  padding: 148px 0 100px;
  position: relative;
  overflow: hidden;
}
.hero-glow {
  position: absolute;
  width: 1000px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(184,146,61,.07) 0%, transparent 70%);
  top: 40%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.hero-grid-lines {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
}
.hero-noise {
  position: absolute; inset: 0;
  opacity: .03;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}
.hero-inst-grid {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 72px;
  align-items: center;
}
.hero-copy {
  display: flex; flex-direction: column;
  align-items: flex-start; gap: 22px;
  opacity: 0;
  animation: fadeUp .9s .1s var(--ease) forwards;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 18px;
  border: 1px solid var(--border);
  border-radius: 100px;
  background: rgba(184,146,61,.05);
  font-size: .7rem; font-weight: 500;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--gold);
}
.badge-pulse {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s ease infinite;
}
.hero-title {
  font-family: var(--font-d);
  font-size: clamp(2.3rem, 3.8vw, 3.6rem);
  font-weight: 300;
  line-height: 1.14;
  letter-spacing: -.02em;
  color: var(--text);
}
.hero-title em { font-style: italic; color: var(--gold); }
.hero-desc {
  font-size: clamp(.9rem, 1.2vw, 1.05rem);
  color: var(--text-2);
  line-height: 1.75;
  max-width: 520px;
}
.hero-cta-row {
  display: flex; align-items: center; gap: 16px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.hero-trust {
  display: flex; align-items: center; gap: 10px;
  flex-wrap: wrap;
  margin-top: 4px;
}
.hero-trust span {
  display: flex; align-items: center; gap: 5px;
  font-size: .75rem; color: var(--text-3);
}
.hero-trust span svg { color: var(--gold); flex-shrink: 0; }
.hero-trust-dot { font-size: .5rem; color: var(--text-3); }

/* Hero photo */
.hero-photo-wrap {
  position: relative;
  opacity: 0;
  animation: fadeUp .9s .3s var(--ease) forwards;
}
.hero-photo-frame {
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
  aspect-ratio: 4/5;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(184,146,61,.35);
  box-shadow:
    0 0 0 1px rgba(184,146,61,.08),
    0 0 80px rgba(184,146,61,.12),
    0 40px 100px rgba(0,0,0,.5);
  background: #0A1526;
  position: relative;
}
.hero-photo-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.hero-photo-accent {
  position: absolute; top: -16px; right: calc(50% - 220px - 16px);
  width: 100px; height: 100px;
  border-top: 1px solid var(--gold);
  border-right: 1px solid var(--gold);
  pointer-events: none;
}
.hero-photo-badge {
  position: absolute; bottom: 24px; left: 50%;
  transform: translateX(calc(-50% - 0px));
  max-width: 380px;
  width: calc(100% - 40px);
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 14px 20px;
  text-align: left;
}
.hero-photo-badge strong { display: block; font-size: .95rem; font-weight: 600; color: var(--text); }
.hero-photo-badge span { font-size: .72rem; color: var(--gold); letter-spacing: .04em; }

/* ── MARQUEE ── */
.marquee-wrap {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-2);
  overflow: hidden;
  padding: 16px 0;
}
.marquee-track { display: flex; }
.marquee-inner {
  display: flex; align-items: center; gap: 32px;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--text-3);
  flex-shrink: 0;
}
.mq-dot { color: var(--gold-dk); font-size: .5rem; }

/* ── ABOUT ── */
.about {
  padding: 140px 0;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}
.about-visual { position: relative; }
.about-alt { background: var(--bg-2); }
.about-alt .about-copy { order: 1; }
.about-alt .about-visual { order: 2; }
.about-frame { position: relative; display: inline-block; width: 100%; }
.about-photo {
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: var(--r);
  position: relative;
}
.about-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.photo-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #13253F 0%, #0F2038 50%, #0A1526 100%);
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.photo-initials {
  font-family: var(--font-d);
  font-size: 6rem;
  font-weight: 300;
  color: rgba(184,146,61,.15);
  letter-spacing: .2em;
}
.photo-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(10,21,38,.6) 100%);
}
.about-accent {
  position: absolute; top: -16px; left: -16px;
  width: 120px; height: 120px;
  border-top: 1px solid var(--gold);
  border-left: 1px solid var(--gold);
  pointer-events: none;
}
.about-omni-badge {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 16px 20px;
  display: flex; align-items: center; gap: 12px;
}
.omni-icon {
  font-size: 1.2rem;
  color: var(--gold);
}
.omni-text strong { display: block; font-size: .8rem; color: var(--text); font-weight: 500; }
.omni-text span { font-size: .7rem; color: var(--text-3); letter-spacing: .08em; }
.about-copy { display: flex; flex-direction: column; gap: 0; }
.creds { display: flex; flex-direction: column; gap: 20px; margin-top: 16px; }
.cred {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 16px 20px;
  border: 1px solid var(--border-2);
  border-radius: var(--r);
  background: rgba(255,255,255,.02);
  transition: border-color .3s, background .3s;
}
.cred:hover { border-color: var(--border); background: rgba(184,146,61,.05); }
.cred-diamond { color: var(--gold); font-size: .6rem; margin-top: 5px; flex-shrink: 0; }
.cred strong { display: block; font-size: .85rem; font-weight: 500; color: var(--text); margin-bottom: 4px; }
.cred span { font-size: .75rem; color: var(--text-3); line-height: 1.5; }

/* ── METHOD ── */
.method {
  padding: 140px 0;
  background: var(--bg-2);
  overflow: hidden;
}
.method-bg-texture {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 0% 100%, rgba(184,146,61,.07) 0%, transparent 50%),
    radial-gradient(ellipse at 100% 0%, rgba(184,146,61,.05) 0%, transparent 50%);
  pointer-events: none;
}
.method-header {
  text-align: center;
  margin-bottom: 80px;
}
.method-sub {
  font-size: clamp(.875rem, 1.1vw, 1rem);
  color: var(--text-2);
  line-height: 1.8;
  margin-top: 24px;
}
.pillars {
  display: flex; align-items: stretch; gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
}
.pillar {
  flex: 1; padding: 52px 40px;
  background: var(--bg-card);
  position: relative;
  transition: background .4s;
}
.pillar:hover { background: rgba(184,146,61,.05); }
.pillar-arrow {
  display: flex; align-items: center; justify-content: center;
  padding: 0 4px;
  font-size: 1.2rem;
  color: var(--border);
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  width: 48px;
  flex-shrink: 0;
}
.pillar-top {
  display: flex; align-items: flex-end; gap: 12px; margin-bottom: 28px;
}
.pillar-num {
  font-size: .65rem;
  font-weight: 500;
  letter-spacing: .15em;
  color: var(--text-3);
}
.pillar-letter {
  font-family: var(--font-d);
  font-size: 4.5rem;
  font-weight: 300;
  line-height: 1;
  color: var(--gold);
  opacity: .25;
}
.pillar-title {
  font-family: var(--font-d);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 16px;
}
.pillar-desc {
  font-size: .85rem;
  color: var(--text-2);
  line-height: 1.75;
}
.pillar-line {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s var(--ease);
}
.pillar:hover .pillar-line { transform: scaleX(1); }
.method-footer {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 64px;
  padding: 40px;
  border: 1px solid var(--border);
  border-radius: var(--r);
  background: var(--bg-card);
  gap: 32px;
  flex-wrap: wrap;
}
.method-highlight {
  display: flex; align-items: center; gap: 24px;
}
.mh-number {
  font-family: var(--font-d);
  font-size: 5rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}
.mh-text strong { display: block; font-size: 1rem; color: var(--text); font-weight: 500; }
.mh-text span { font-size: .8rem; color: var(--text-3); margin-top: 4px; display: block; }

/* ── SERVICES ── */
.services { padding: 140px 0; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  margin-top: 56px;
}
.svc-card {
  background: var(--bg-card);
  padding: 52px 40px;
  position: relative;
  transition: background .4s;
  display: flex; flex-direction: column; gap: 20px;
}
.svc-card + .svc-card { border-left: 1px solid var(--border); }
.svc-card:hover { background: rgba(255,255,255,.02); }
.svc-featured { background: rgba(184,146,61,.06); }
.svc-featured:hover { background: rgba(184,146,61,.1); }
.svc-badge {
  position: absolute; top: 24px; right: 24px;
  font-size: .6rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: #ffffff;
  background: var(--blue);
  padding: 4px 10px;
  border-radius: 100px;
}
.svc-num {
  font-size: .65rem;
  font-weight: 500;
  letter-spacing: .15em;
  color: var(--text-3);
}
.svc-icon {
  width: 48px; height: 48px;
  color: var(--gold);
}
.svc-icon svg { width: 48px; height: 48px; }
.svc-title {
  font-family: var(--font-d);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--text);
  line-height: 1.2;
}
.svc-text {
  font-size: .85rem;
  color: var(--text-2);
  line-height: 1.75;
  flex: 1;
}
.svc-tags {
  display: flex; gap: 8px; flex-wrap: wrap;
}
.svc-tags span {
  font-size: .65rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-3);
  padding: 5px 10px;
  border: 1px solid var(--border-2);
  border-radius: 100px;
}
.svc-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 8px;
  transition: gap .3s var(--ease);
}
.svc-link svg { width: 14px; height: 14px; }
.svc-link:hover { gap: 14px; }

/* ── TESTIMONIALS / ATLAS ── */
.testimonials {
  padding: 140px 0;
  background: var(--bg-2);
  overflow: hidden;
}
.testimonials-glow {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(184,146,61,.05) 0%, transparent 60%);
  pointer-events: none;
}
.testi-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
  margin-bottom: 48px;
}
.testi-nav {
  display: flex; align-items: center; gap: 16px;
  flex-shrink: 0;
}
.testi-btn {
  width: 44px; height: 44px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-2);
  transition: border-color .3s, color .3s, background .3s;
  cursor: pointer;
}
.testi-btn svg { width: 18px; height: 18px; }
.testi-btn:hover { border-color: var(--gold); color: var(--gold); background: rgba(184,146,61,.08); }
.testi-counter {
  font-size: .75rem; font-weight: 500;
  color: var(--text-3); letter-spacing: .08em;
  min-width: 36px; text-align: center;
}
#testiCurrent { color: var(--gold); }
.testi-sep { margin: 0 2px; }
/* Atlas track */
.atlas-track-wrap { position: relative; overflow: hidden; }
.atlas-track {
  display: flex;
  transition: transform .7s cubic-bezier(.4,0,.2,1);
}
.atlas-slide {
  min-width: 100%;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 52px;
  align-items: center;
}
.atlas-video {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: var(--r);
  overflow: hidden;
  background: var(--bg-3);
  border: 1px solid var(--border);
}
.atlas-video iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: none;
}
.atlas-info {
  display: flex; flex-direction: column; gap: 28px;
}
.atlas-quote {
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  font-weight: 300;
  color: var(--text);
  line-height: 1.78;
  position: relative;
  padding-left: 20px;
}
.atlas-quote::before {
  content: '';
  position: absolute; left: 0; top: 4px; bottom: 4px;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), var(--blue));
  border-radius: 2px;
}
.atlas-author {
  display: flex; align-items: center; gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--border-2);
}
.testi-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-dk), var(--blue));
  display: flex; align-items: center; justify-content: center;
  font-size: .75rem; font-weight: 600;
  color: #fff; flex-shrink: 0;
}
.testi-info { flex: 1; }
.testi-info strong { display: block; font-size: .85rem; font-weight: 500; color: var(--text); }
.testi-info span { font-size: .75rem; color: var(--text-3); }
.testi-stars { font-size: .75rem; color: var(--gold); letter-spacing: 3px; }
.atlas-dots {
  display: flex; gap: 8px; justify-content: center;
  margin-top: 36px;
}
.atlas-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--border-2);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: background .3s, transform .3s, border-color .3s;
}
.atlas-dot.active { background: var(--gold); border-color: var(--gold); transform: scale(1.5); }

/* ── CTA ── */
.cta-sec {
  padding: 160px 0;
  overflow: hidden;
}
.cta-glow {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(184,146,61,.1) 0%, transparent 60%),
    radial-gradient(ellipse at 50% 50%, rgba(184,146,61,.05) 0%, transparent 80%);
  pointer-events: none;
}
.cta-inner {
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 28px;
}
.cta-title {
  font-family: var(--font-d);
  font-size: clamp(3rem, 6vw, 6rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--text);
}
.cta-title em { font-style: italic; color: var(--gold); }
.cta-desc {
  font-size: clamp(.875rem, 1.1vw, 1rem);
  color: var(--text-2);
  line-height: 1.8;
  max-width: 520px;
}
.cta-avail {
  display: flex; align-items: center; gap: 8px;
  font-size: .75rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-3);
}
.avail-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #4ade80;
  animation: pulse 2s ease infinite;
}

/* ── FOOTER ── */
.footer {
  padding: 80px 0 40px;
  border-top: 1px solid var(--border);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--border-2);
}
.footer-name {
  font-family: var(--font-d);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 12px;
}
.footer-tagline {
  font-size: .8rem;
  color: var(--text-3);
  line-height: 1.7;
  margin-bottom: 24px;
}
.footer-socials { display: flex; gap: 12px; }
.social-btn {
  width: 36px; height: 36px;
  border: 1px solid var(--border-2);
  border-radius: var(--r);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-3);
  transition: border-color .3s, color .3s;
}
.social-btn svg { width: 16px; height: 16px; }
.social-btn:hover { border-color: var(--gold); color: var(--gold); }
.footer-col-title {
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 20px;
}
.footer-link {
  display: block;
  font-size: .82rem;
  color: var(--text-3);
  margin-bottom: 12px;
  transition: color .3s;
}
.footer-link:hover { color: var(--gold); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 28px;
  font-size: .72rem;
  color: var(--text-3);
  flex-wrap: wrap; gap: 12px;
}
.footer-cert {
  font-size: .68rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(184,146,61,.5);
}

/* ── REVEAL ANIMATIONS ── */
.reveal-up, .reveal-left {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal-left { transform: translateX(-32px); }
.reveal-up.visible, .reveal-left.visible {
  opacity: 1;
  transform: translate(0);
}
.d1 { transition-delay: .1s; }
.d2 { transition-delay: .2s; }
.d3 { transition-delay: .3s; }
.d4 { transition-delay: .4s; }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes slideUp {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}
@keyframes loadBar {
  from { width: 0; }
  to   { width: 100%; }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(184,146,61,.5); }
  50%       { opacity: .8; box-shadow: 0 0 0 6px rgba(184,146,61,0); }
}
@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ── MAGNETIC BUTTON JS SUPPORT ── */
.magnetic { transition: transform .4s var(--ease), background .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease); }

/* ── PAIN SECTION ── */
.pain { padding: 140px 0; }
.pain-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 100px; align-items: center;
}
.pain-items { display: flex; flex-direction: column; gap: 4px; }
.pain-item {
  display: flex; gap: 18px; align-items: flex-start;
  padding: 20px;
  border-bottom: 1px solid var(--border-2);
  transition: background .3s;
}
.pain-item:last-child { border-bottom: none; }
.pain-item:hover { background: rgba(184,146,61,.04); border-radius: var(--r); }
.pain-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  border: 1px solid var(--border);
  border-radius: var(--r);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  margin-top: 2px;
}
.pain-icon svg { width: 18px; height: 18px; }
.pain-item strong { display: block; font-size: .9rem; font-weight: 600; color: var(--text); margin-bottom: 5px; }
.pain-item span { font-size: .82rem; color: var(--text-2); line-height: 1.65; }

/* ── FOR WHOM ── */
.for-whom { padding: 140px 0; }
.whom-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  margin-top: 56px;
}
.whom-card {
  padding: 44px 40px;
  background: var(--bg-card);
  transition: background .4s;
  position: relative;
}
.whom-card:nth-child(1), .whom-card:nth-child(2) { border-bottom: 1px solid var(--border); }
.whom-card:nth-child(1), .whom-card:nth-child(3) { border-right: 1px solid var(--border); }
.whom-card:hover { background: rgba(184,146,61,.05); }
.whom-icon {
  width: 52px; height: 52px;
  color: var(--gold);
  margin-bottom: 20px;
}
.whom-icon svg { width: 52px; height: 52px; }
.whom-card h3 { font-size: 1.1rem; font-weight: 600; color: var(--text); margin-bottom: 12px; line-height: 1.3; }
.whom-card p { font-size: .85rem; color: var(--text-2); line-height: 1.75; }

/* ── HOW IT WORKS ── */
.how { padding: 140px 0; background: var(--bg-2); overflow: hidden; }
.how-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(184,146,61,.05) 0%, transparent 50%);
  pointer-events: none;
}
.timeline { position: relative; margin-top: 72px; padding-left: 60px; }
.timeline-line {
  position: absolute; left: 20px; top: 8px; bottom: 8px;
  width: 1px;
  background: linear-gradient(to bottom, var(--gold), var(--blue), rgba(184,146,61,.1));
}
.tl-item {
  position: relative; display: flex; gap: 32px;
  padding-bottom: 64px;
  align-items: flex-start;
}
.tl-item:last-child { padding-bottom: 0; }
.tl-dot {
  position: absolute; left: -48px; top: 6px;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--gold);
  border: 2px solid var(--bg-2);
  box-shadow: 0 0 0 4px rgba(184,146,61,.2);
  flex-shrink: 0;
}
.tl-dot-final { background: var(--blue); box-shadow: 0 0 0 4px rgba(184,146,61,.25); }
.tl-num {
  font-family: var(--font-d);
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(184,146,61,.12);
  line-height: 1;
  flex-shrink: 0;
  width: 60px;
}
.tl-num-final { color: rgba(184,146,61,.15); font-size: 2.5rem; }
.tl-content { padding-top: 4px; }
.tl-content h3 { font-size: 1.15rem; font-weight: 600; color: var(--text); margin-bottom: 10px; }
.tl-content p { font-size: .88rem; color: var(--text-2); line-height: 1.75; max-width: 560px; }
.how-cta { margin-top: 64px; }

/* ── METHOD VS ── */
.method-vs {
  display: grid; grid-template-columns: 1fr 60px 1fr;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  margin-top: 56px;
}
.vs-col { padding: 44px 40px; }
.vs-old { background: rgba(255,255,255,.015); }
.vs-new { background: rgba(184,146,61,.06); }
.vs-label {
  font-size: .7rem; font-weight: 600;
  letter-spacing: .15em; text-transform: uppercase;
  margin-bottom: 24px;
  display: inline-flex; align-items: center; gap: 8px;
}
.vs-label::before { content: ''; display: block; width: 20px; height: 1px; }
.vs-label-off { color: var(--text-3); }
.vs-label-off::before { background: var(--text-3); }
.vs-label-on { color: var(--gold); }
.vs-label-on::before { background: var(--gold); }
.vs-list { display: flex; flex-direction: column; gap: 14px; list-style: none; }
.vs-list li { display: flex; gap: 10px; align-items: center; font-size: .88rem; line-height: 1.5; }
.vs-no { color: var(--text-3); }
.vs-no::before { content: '✕'; color: var(--text-3); font-size: .7rem; flex-shrink: 0; }
.vs-yes { color: var(--text); }
.vs-yes::before { content: '✓'; color: var(--gold); font-size: .75rem; flex-shrink: 0; }
.vs-divider {
  display: flex; align-items: center; justify-content: center;
  background: var(--bg-card);
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
}
.vs-vs {
  font-family: var(--font-d); font-size: 1rem; font-weight: 700;
  color: var(--text-3); letter-spacing: .1em;
}

/* ── CTA TOPO ── */
.cta-topo {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  pointer-events: none; opacity: .7;
}
.cta-topo svg { width: 100%; height: 100%; max-width: 800px; max-height: 800px; }
.cta-note {
  font-size: .78rem;
  color: var(--text-3);
  margin-top: -8px;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 60px; }
  .about-visual { max-width: 480px; }
  .atlas-slide { grid-template-columns: 1fr; gap: 32px; }
  .pain-grid { grid-template-columns: 1fr; gap: 60px; }
  .whom-grid { grid-template-columns: 1fr; }
  .whom-card:nth-child(1), .whom-card:nth-child(3) { border-right: none; }
  .whom-card:nth-child(1), .whom-card:nth-child(2), .whom-card:nth-child(3) { border-bottom: 1px solid var(--border); }
  .method-vs { grid-template-columns: 1fr; }
  .vs-divider { padding: 20px; border: none; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-brand { grid-column: 1 / -1; }
  .hero-inst-grid { grid-template-columns: 1fr; gap: 56px; }
  .hero-copy { align-items: center; text-align: center; }
  .hero-desc { max-width: 620px; }
  .hero-cta-row, .hero-trust { justify-content: center; }
  .hero-photo-frame { max-width: 380px; }
  .hero-photo-accent { display: none; }
  .topo-hero { right: 0; width: 320px; height: 320px; }
}
@media (max-width: 768px) {
  .container { padding: 0 24px; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .nav-inner { gap: 0; }
  .nav-logo { margin-right: auto; }
  .about, .method, .pain, .for-whom, .how, .testimonials, .cta-sec { padding: 100px 0; }
  .pillars { flex-direction: column; }
  .pillar-arrow { transform: rotate(90deg); padding: 8px 0; width: 100%; justify-content: center; border-top: 1px solid var(--border); border-bottom: none; border-left: none; border-right: none; }
  .method-footer { flex-direction: column; align-items: flex-start; }
  .hero { padding: 108px 0 60px; }
  .btn-xl { width: 100%; justify-content: center; }
  .btn-lg { width: 100%; justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .testi-header { flex-direction: column; align-items: flex-start; gap: 20px; }
  .topo-hero, .topo-method { display: none; }
  .timeline { padding-left: 40px; }
  .tl-num { font-size: 2.5rem; width: 44px; }
}
@media (max-width: 480px) {
  .hero-title { font-size: clamp(1.9rem, 8vw, 2.6rem); }
  .h2 { font-size: clamp(2.2rem, 8vw, 3rem); }
  .cta-title { font-size: clamp(2.2rem, 9vw, 3rem); }
  .atlas-slide { grid-template-columns: 1fr; }
  .hero-trust { flex-direction: column; gap: 6px; }
  .hero-trust-dot { display: none; }
  .hero-cta-row .btn { width: 100%; justify-content: center; }
}

/* ── VALUE STACK ── */
.value-stack {
  padding: 140px 0;
  background: var(--bg-2);
}
.vstack-header {
  text-align: center;
  margin-bottom: 64px;
}
.vstack-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
}
.vstack-item {
  background: var(--bg-card);
  padding: 36px 32px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  position: relative;
  transition: background .4s;
}
.vstack-item:hover { background: rgba(184,146,61,.04); }
.vstack-num {
  font-size: .6rem;
  font-weight: 600;
  letter-spacing: .15em;
  color: var(--text-3);
  flex-shrink: 0;
  margin-top: 3px;
  min-width: 20px;
}
.vstack-body { flex: 1; }
.vstack-body strong {
  display: block;
  font-size: .9rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.3;
}
.vstack-body span {
  font-size: .82rem;
  color: var(--text-2);
  line-height: 1.7;
}
.vstack-check {
  flex-shrink: 0;
  color: var(--gold);
  font-size: .85rem;
  font-weight: 700;
  margin-top: 2px;
}
.vstack-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-top: 56px;
}
.vstack-note {
  font-size: .75rem;
  color: var(--text-3);
  letter-spacing: .08em;
}

/* ── FAQ ── */
.faq-sec {
  padding: 140px 0;
}
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 100px;
  align-items: start;
}
.faq-left {
  position: sticky;
  top: 120px;
}
.faq-right {
  display: flex;
  flex-direction: column;
}
.faq-item {
  border-bottom: 1px solid var(--border-2);
}
.faq-item:first-child { border-top: 1px solid var(--border-2); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
  text-align: left;
  font-size: .92rem;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  transition: color .3s;
}
.faq-q:hover { color: var(--gold); }
.faq-icon {
  width: 18px; height: 18px;
  flex-shrink: 0;
  color: var(--text-3);
  transition: transform .35s var(--ease), color .3s;
}
.faq-q[aria-expanded="true"] .faq-icon {
  transform: rotate(180deg);
  color: var(--gold);
}
.faq-q[aria-expanded="true"] { color: var(--gold); }
.faq-a {
  overflow: hidden;
  transition: max-height .4s var(--ease);
}
.faq-a[hidden] { display: none; }
.faq-a p {
  font-size: .875rem;
  color: var(--text-2);
  line-height: 1.8;
  padding-bottom: 20px;
}

/* ── CTA TRUST ROW ── */
.cta-trust {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.cta-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .75rem;
  color: var(--text-3);
  letter-spacing: .06em;
}
.cta-trust-item svg { color: var(--gold); flex-shrink: 0; }
.cta-trust-sep { color: var(--text-3); font-size: .6rem; }

/* ── FLOATING WHATSAPP ── */
.float-wa {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 990;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px 14px 18px;
  background: #25D366;
  color: #fff;
  border-radius: 100px;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .06em;
  box-shadow: 0 8px 32px rgba(37,211,102,.3);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
}
.float-wa.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.float-wa:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(37,211,102,.45);
}
.float-wa svg { flex-shrink: 0; }

/* ── RESPONSIVE NEW SECTIONS ── */
@media (max-width: 1024px) {
  .vstack-grid { grid-template-columns: repeat(2, 1fr); }
  .faq-grid { grid-template-columns: 1fr; gap: 60px; }
  .faq-left { position: static; }
}
@media (max-width: 768px) {
  .value-stack, .faq-sec { padding: 100px 0; }
  .vstack-grid { grid-template-columns: 1fr; }
  .float-wa span { display: none; }
  .float-wa { padding: 16px; border-radius: 50%; bottom: 24px; right: 24px; }
  .cta-trust { gap: 8px; }
}
