/* ===========================================================
   Sanjaya — AI Automation
   Faithful rebuild of Figma "sanjaya.framer.ai" import
   Sizes in vw relative to a 1920px design (1vw = 19.2px @1920)
   =========================================================== */

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

:root {
  --bg:     #010004;            /* near-black page */
  --text:   #ffffff;
  --gray:   #A8A8A8;            /* muted text */
  --card:   #1A1A1D;            /* card surface */
  --glass:  rgba(255, 255, 255, 0.10);
  --brand:  #4361EE;            /* brand accent (use sparingly on buttons/highlights) */
  --font:   'Geist', system-ui, -apple-system, sans-serif;
  --mono:   'Geist Mono', ui-monospace, monospace;
}

html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

img, .ph { display: block; }
/* generic placeholder label */
[data-img] { position: relative; }
[data-img]::after {
  content: attr(data-img);
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--mono);
  font-size: 0.6vw; letter-spacing: 0.1vw; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.18);
  pointer-events: none;
}

/* ===================== NAV ===================== */
.nav {
  position: absolute;            /* sits over the hero top, but scrolls away (not fixed) */
  top: 0; left: 0;
  width: 100%;
  height: 3.646vw;                /* 70px */
  background: transparent;                    /* no fill over the hero */
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
  z-index: 100;
  display: flex;
  align-items: center;
  transition: background 0.3s ease, backdrop-filter 0.3s ease;
}
.nav.nav--solid {                              /* denser frosted glass once scrolled */
  background: rgba(1, 0, 4, 0.65);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
}
.nav-logo {
  position: absolute;
  left: 17.708vw;                 /* 340px — aligned with the content grid's left margin */
  display: flex;
  align-items: center;
}
.nav-logo img { height: 0.95vw; width: auto; display: block; }
.nav-links {
  position: absolute;
  left: 44.53vw;                  /* first link at 855px */
  display: flex;
  gap: 2.03vw;                    /* ~39px between links */
}
.nav-links a {
  font-size: 0.833vw;             /* 16px */
  font-weight: 400;
  color: var(--gray);
  transition: color 0.2s ease;
}
.nav-links a:hover { color: var(--brand); }
.nav-cta {
  position: absolute;
  right: 17.708vw;                /* 340px — right margin matches the logo's left margin (grid) */
  display: inline-flex;
  align-items: center;
  height: 2.1875vw;               /* 42px */
  padding: 0 0.94vw;
  background: var(--brand);
  border-radius: 0.4167vw;        /* 8px */
  font-size: 0.729vw;             /* 14px */
  font-weight: 500;
  color: #fff;
}
.nav-cta, .cta-btn { gap: 0.45vw; }
.nav-cta .wa, .cta-btn .wa { width: 0.9vw; height: 0.9vw; flex-shrink: 0; }

/* ===================== HERO ===================== */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;                  /* full bleed — fill the viewport, never exceed it */
  height: 100dvh;                 /* dynamic viewport (handles mobile browser chrome) */
  background: var(--bg);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('img/new-hero.jpg') center / cover no-repeat;
}
/* subtle gradient — darkens the light sky (top) and the base for text legibility */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(1, 0, 4, 0.62) 0%,
    rgba(1, 0, 4, 0.22) 20%,
    rgba(1, 0, 4, 0.00) 42%,
    rgba(1, 0, 4, 0.00) 64%,
    rgba(1, 0, 4, 0.50) 100%
  );
}

/* eyebrow service tags (top-left) */
.hero-tags {
  position: absolute;
  left: 17.708vw; top: 5.26vw;    /* (340, ~101) */
  z-index: 3;
}
.hero-tags li {
  font-family: var(--mono);
  font-size: 0.625vw;             /* 12px */
  font-weight: 400;
  line-height: 1.23vw;            /* ~23.6px steps (106→130→153) */
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #fff;
}

/* description (top-right) */
.hero-desc {
  position: absolute;
  right: 18.07vw;                 /* lines end ~x=1573 → right margin 347 */
  top: 5.26vw;                    /* 101 */
  width: 15.26vw;                 /* ~293px */
  text-align: right;
  z-index: 3;
  font-size: 0.9375vw;            /* 18px */
  font-weight: 400;
  line-height: 1.3vw;
  color: #fff;
}

/* bottom-left: badge + headline */
.hero-bottom-left {
  position: absolute;
  left: 17.708vw; bottom: 5.5vw;   /* anchored to the bottom with breathing room */
  z-index: 3;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  height: 1.25vw;                 /* 24px */
  padding: 0 0.52vw;              /* text at +10px */
  background: var(--glass);
  border-radius: 0;
  border-left: 0.156vw solid var(--brand);   /* brand accent bar */
  font-family: var(--mono);
  font-size: 0.625vw;             /* 12px */
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
}
.hero-title {
  margin-top: 0.78vw;             /* headline at y=999 (badge 968+24) */
  font-size: 2.917vw;             /* 56px */
  font-weight: 400;
  line-height: 1.06;
  letter-spacing: -0.02em;
  color: #fff;
}

/* bottom-right: contact card */
.hero-card {
  position: absolute;
  left: 66.667vw; bottom: 5.5vw;   /* bottom-anchored, aligned with the headline block */
  width: 15.625vw;                /* 300px */
  background: var(--card);
  border-radius: 0.625vw;         /* 12px */
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 0.78vw;
  padding: 0.83vw;                /* 16px — equal on all sides */
}
.hero-card-avatar {
  width: 4.58vw; height: 4.58vw;  /* ~88px */
  flex-shrink: 0;
  border-radius: 0.42vw;
  background: url('img/primo.jpg') center / cover no-repeat, #15151a;
}
.hero-card-btn .wa { width: 0.95vw; height: 0.95vw; flex-shrink: 0; }
.hero-card-info {
  display: flex;
  flex-direction: column;
}
.hero-card-name {
  font-size: 0.9375vw;            /* 18px */
  font-weight: 400;
  color: #fff;
}
.hero-card-role {
  font-family: var(--mono);
  font-size: 0.625vw;             /* 12px */
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--gray);
  margin-top: 0.2vw;
}
.hero-card-btn .chev { font-size: 0.83vw; line-height: 1; }

/* ===================== LOGOS ===================== */
.logos {
  position: relative;
  width: 100%;
  background: var(--bg);
  padding-bottom: 4vw;
}
.logos-eyebrow {
  text-align: center;
  padding-top: 5.16vw;            /* heading at y≈1299 */
  font-family: var(--mono);
  font-size: 0.625vw;             /* 12px */
  letter-spacing: 0.12em;
  color: var(--gray);
}
.logos-grid {
  width: 64.58vw;                 /* 1240px */
  margin: 1.55vw auto 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}
.logo-cell {
  height: 5.73vw;                 /* ~110px */
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.logo-cell img { height: 1.5vw; width: auto; max-width: 55%; object-fit: contain; opacity: 0.5; }
.lm {
  font-size: 1.25vw;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.45);
}
.lm-bold  { font-weight: 800; letter-spacing: 0.02em; }
.lm-serif { font-family: Georgia, 'Times New Roman', serif; font-weight: 500; }
.lm-small { font-size: 0.78vw; font-weight: 700; letter-spacing: 0.08em; }

/* ===================== PAIN POINT ===================== */
.painpoint {
  position: relative;
  width: 100%;
  height: 180vh;                  /* scroll room — graphic pins (zoom anim is Framer JS) */
  background: var(--bg);
}
.pp-graphic {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}
.pp-ring {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 50%;
}
.pp-ring.r1 { width: 30vw; height: 30vw; }
.pp-ring.r2 { width: 46vw; height: 46vw; }
.pp-ring.r3 { width: 62vw; height: 62vw; }
.pp-title {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  font-size: 2.5vw;               /* 48px */
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: #fff;
}
.pp-label {
  position: absolute;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  gap: 0.3vw;
  font-size: 0.47vw;              /* 9px */
  font-weight: 400;
  color: #fff;
  white-space: nowrap;
}
.pp-label::before {
  content: '';
  width: 0.26vw; height: 0.26vw;
  border-radius: 50%;
  background: #fff;
}

/* ===================== shared bits ===================== */
.pill-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.3vw 0.7vw;
  background: var(--glass);
  border-radius: 0;
  border-left: 0.156vw solid var(--brand);   /* brand accent bar */
  font-family: var(--mono);
  font-size: 0.625vw;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: #fff;
}
.glass-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.42vw;
  padding: 0 0.94vw;
  height: 2.1875vw;               /* 42px */
  background: var(--glass);
  border-radius: 0.4167vw;
  font-size: 0.729vw;
  font-weight: 500;
  color: #fff;
  transition: background 0.2s ease, gap 0.2s ease;
}
.glass-cta:hover { gap: 0.7vw; }
.glass-cta .chev { font-size: 0.83vw; line-height: 1; }

/* ===================== OUR WORKS ===================== */
.works {
  position: relative;
  width: 100%;
  background: var(--bg);
  padding: 5.52vw 0 5vw;
  text-align: center;
}
.works-title {
  margin-top: 1vw;
  font-size: 2.5vw;               /* 48px */
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: #fff;
}
.works-sub {
  margin-top: 1.35vw;
  font-size: 0.833vw;             /* 16px */
  color: var(--gray);
}
.works-list {
  margin-top: 2.76vw;
  padding-bottom: 4vw;            /* hold for the sticky stack — sized for the 2 current cards (was 14vw for 4) */
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5vw;                     /* small gap so each card scrolls into the stack */
}
.work-card {
  position: sticky;               /* sticky-stacking: pins, next card overlaps it */
  width: 64.583vw;                /* 1240px */
  height: 41.667vw;               /* 800px */
  background: var(--card);
  border-radius: 0.625vw;
  overflow: hidden;
  display: grid;
  grid-template-columns: 30.625vw 1fr;   /* image 588 | content */
  text-align: left;
  box-shadow: 0 -0.6vw 2.4vw rgba(0, 0, 0, 0.55);   /* depth as cards stack */
}
/* incremental top offsets — each pinned card leaves a small edge of the previous one */
.work-card:nth-child(1) { top: 5.5vw; }
.work-card:nth-child(2) { top: 8.5vw; }
.work-card:nth-child(3) { top: 11.5vw; }
.work-card:nth-child(4) { top: 14.5vw; }
.work-media {
  background: linear-gradient(150deg, #2a2a30 0%, #15151a 55%, #0d0d11 100%);
}
.work-panel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.615vw 2.08vw 1.77vw 1.667vw;
}
.work-top { display: flex; flex-direction: column; gap: 0.7vw; }
.work-meta {
  font-family: var(--mono);
  font-size: 0.625vw;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #fff;
}
.work-meta .g { color: var(--gray); }
.work-brand {
  font-size: 1.04vw;
  color: rgba(255, 255, 255, 0.55);
}
.work-bottom { display: flex; flex-direction: column; align-items: flex-start; }
.work-name {
  font-size: 1.979vw;             /* 38px */
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: #fff;
  max-width: 26vw;
}
.work-desc {
  margin-top: 0.94vw;
  font-size: 0.833vw;             /* 16px */
  line-height: 1.5;
  color: var(--gray);
  max-width: 27vw;
}
.work-cta {
  /* hidden for now — cases are shown only in this section; re-enable when the cases detail page exists */
  display: none;
  margin-top: 1.4vw;
  align-items: center;
  gap: 0.42vw;
  padding: 0 0.94vw;
  height: 2.0vw;
  background: var(--glass);
  border-radius: 0.4167vw;
  font-size: 0.729vw;
  font-weight: 500;
  color: #fff;
}
.work-cta .chev { font-size: 0.83vw; line-height: 1; }
.work-stats {
  margin-top: 1.6vw;
  padding-top: 1.2vw;
  border-top: 1px solid rgba(255, 255, 255, 0.10);
  display: flex;
  align-self: stretch;
}
.work-stat { width: 16.15vw; }    /* 310px columns */
.work-stat strong {
  display: block;
  font-size: 1.979vw;             /* 38px */
  font-weight: 400;
  letter-spacing: -0.02em;
  color: #fff;
}
.work-stat span {
  display: block;
  margin-top: 0.3vw;
  font-family: var(--mono);
  font-size: 0.625vw;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--gray);
}
.works-all {
  display: inline-flex;
  align-items: center;
  gap: 0.42vw;
  margin-top: 3.33vw;
  padding: 0 0.94vw;
  height: 2.1875vw;
  background: var(--glass);
  border-radius: 0.4167vw;
  font-size: 0.729vw;
  font-weight: 500;
  color: #fff;
}
.works-all .chev { font-size: 0.83vw; line-height: 1; }

/* ===================== HOW IT WORKS ===================== */
.hiw {
  position: relative;
  width: 100%;
  background: var(--bg);
  padding: 5.52vw 0 4vw;
  text-align: center;
}
.hiw-title {
  margin-top: 1vw;
  font-size: 2.5vw; font-weight: 400; line-height: 1.12;
  letter-spacing: -0.01em; color: #fff;
}
.hiw-sub {
  margin: 1.35vw auto 0;
  max-width: 36vw;
  font-size: 0.833vw; line-height: 1.4; color: var(--gray);
}

/* 4 Pilares cards — main-site structure, Sanjaya aesthetic */
.pilar-grid {
  width: 64.583vw;
  margin: 3vw auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.83vw;
  text-align: left;
}
.pilar-card {
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 0.625vw;
  padding: 1.46vw;
  min-height: 17.5vw;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.pilar-top { display: flex; align-items: flex-start; justify-content: space-between; }
.pilar-num {
  font-family: var(--mono); font-size: 0.625vw;
  text-transform: uppercase; letter-spacing: 0.04em; color: var(--gray);
}
.pilar-icon { width: 1.6vw; height: 1.6vw; flex-shrink: 0; color: rgba(255, 255, 255, 0.55); }
.pilar-name { font-size: 1.25vw; font-weight: 400; letter-spacing: -0.01em; color: #fff; margin-bottom: 0.6vw; }
.pilar-desc { font-size: 0.78vw; line-height: 1.55; color: var(--gray); }

.hiw-steps {
  width: 64.583vw;
  margin: 4.95vw auto 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  text-align: left;
}
.hiw-step { width: 20.677vw; }       /* 397px */
.hiw-step.s2 { margin-top: 2.604vw; }  /* +50px stagger */
.hiw-step.s3 { margin-top: 5.208vw; }  /* +100px stagger */
.hiw-media {
  width: 20.677vw; height: 19.74vw;  /* 397×379 */
  border-radius: 0.625vw;
  overflow: hidden;
  position: relative;
  background: linear-gradient(155deg, #26262b 0%, #131317 60%, #0c0c10 100%);
  display: flex; align-items: center; justify-content: center;
}
.hiw-step-title { margin-top: 1.25vw; font-size: 1.25vw; font-weight: 400; color: #fff; }
.hiw-step-desc  { margin-top: 0.4vw; font-size: 0.833vw; color: var(--gray); }

/* overlay mini-UIs */
.hiw-panel {
  width: 11vw; padding: 0.9vw;
  background: rgba(10,10,12,0.72);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 0.5vw;
}
.hiw-panel strong { display:block; font-size: 0.78vw; font-weight: 500; color:#fff; margin-bottom:0.4vw; }
.hiw-panel p { font-size: 0.68vw; line-height: 1.5; color: rgba(255,255,255,0.45); }
.hiw-prompt {
  display:flex; align-items:center; gap:0.4vw;
  padding: 0.7vw 0.9vw; width: 13vw;
  background: rgba(10,10,12,0.78);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 0.6vw;
  font-size: 0.83vw; color:#fff;
}
.hiw-prompt .spark { color:#fff; }
.hiw-prompt .caret { width:1px; height:0.95vw; background:#fff; display:inline-block; }
.hiw-stat {
  width: 14vw; padding: 0.9vw;
  background: rgba(12,12,15,0.92);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 0.6vw;
  position: absolute; right: 0; bottom: 0; transform: translate(8%, 12%);
}
.hiw-stat-dots { display:flex; gap:0.3vw; margin-bottom:0.7vw; }
.hiw-stat-dots i { width:0.42vw; height:0.42vw; border-radius:50%; background:#444; }
.hiw-stat-dots i:nth-child(1){ background:#e0564b; } .hiw-stat-dots i:nth-child(2){ background:#e0a93b; } .hiw-stat-dots i:nth-child(3){ background:#5fbf57; }
.hiw-stat-title { font-size:1vw; color:#fff; }
.hiw-stat-row { display:flex; justify-content:space-between; margin:0.5vw 0 0.7vw; font-size:0.6vw; color:var(--gray); }
.hiw-stat-bars { display:flex; align-items:flex-end; gap:0.25vw; height:4vw; }
.hiw-stat-bars b { flex:1; background:rgba(255,255,255,0.22); border-radius:1px; }
.hiw-stat-bars b:nth-child(1){height:35%}.hiw-stat-bars b:nth-child(2){height:55%}.hiw-stat-bars b:nth-child(3){height:42%}.hiw-stat-bars b:nth-child(4){height:70%}.hiw-stat-bars b:nth-child(5){height:50%}.hiw-stat-bars b:nth-child(6){height:80%}.hiw-stat-bars b:nth-child(7){height:60%}.hiw-stat-bars b:nth-child(8){height:45%}.hiw-stat-bars b:nth-child(9){height:75%}.hiw-stat-bars b:nth-child(10){height:55%}.hiw-stat-bars b:nth-child(11){height:90%}.hiw-stat-bars b:nth-child(12){height:65%}

/* ===================== INTEGRATION ===================== */
.integ {
  position: relative;
  width: 100%;
  background: var(--bg);
  padding: 5.21vw 0 5.5vw;
  text-align: center;
}
.integ-rows { display: flex; flex-direction: column; gap: 0.833vw; }
.integ-band {
  overflow: hidden;
  -webkit-mask: linear-gradient(90deg, transparent 0%, #000 22%, #000 78%, transparent 100%);
          mask: linear-gradient(90deg, transparent 0%, #000 22%, #000 78%, transparent 100%);
}
.integ-track {
  display: flex;
  gap: 0.833vw;                   /* 16px */
  width: max-content;
  animation: integ-scroll 40s linear infinite;
}
.integ-track--rev { animation-direction: reverse; }
@keyframes integ-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.itile {
  width: 4.583vw; height: 4.583vw;  /* 88px */
  flex-shrink: 0;
  background: var(--card);
  border-radius: 0.625vw;
  position: relative;
}
.itile::after {
  content: '';
  position: absolute; left:50%; top:50%; transform: translate(-50%,-50%) rotate(15deg);
  width: 1.6vw; height: 1.6vw;
  background: rgba(255,255,255,0.22);
  -webkit-mask: radial-gradient(circle at 30% 30%, #000 60%, transparent 62%);
  border-radius: 0.3vw 0.9vw;
}
.integ-head { margin-top: 2.5vw; }
.integ-title {
  margin-top: 1vw;
  font-size: 2.5vw; font-weight: 400; line-height: 1.12;
  letter-spacing: -0.01em; color: #fff;
}
.integ-sub {
  margin: 1.35vw auto 0;
  max-width: 40vw;
  font-size: 0.833vw; line-height: 1.4; color: var(--gray);
}

/* ===================== SERVICES ===================== */
.svc { position: relative; width: 100%; background: var(--bg); padding: 5.21vw 0; }
.svc-inner {
  width: 65.57vw;                 /* x340→1599 */
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
}
.svc-left {
  width: 26.77vw;                 /* 515px */
  flex-shrink: 0;
  position: sticky;
  top: 8vw;
}
.svc-title {
  margin-top: 1vw;
  font-size: 2.5vw; font-weight: 400; line-height: 1.1;
  letter-spacing: -0.01em; color: #fff;
}
.svc-sub {
  margin-top: 1.35vw;
  max-width: 21vw;
  font-size: 0.833vw; line-height: 1.5; color: var(--gray);
}
.svc-right {
  width: 38.75vw;                 /* 744px */
  display: flex;
  flex-direction: column;
  gap: 1.25vw;                    /* 24px */
}
.svc-card {
  background: var(--card);
  border-radius: 0.625vw;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 18.5vw;
}
/* scroll-reveal: cards slide in from the right (only when JS is active) */
.reveal-ready .svc-card {
  opacity: 0;
  transform: translateX(6vw);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}
.reveal-ready .svc-card.is-in { opacity: 1; transform: translateX(0); }
.reveal-ready .svc-card:nth-child(2).is-in { transition-delay: 0.1s; }
.reveal-ready .svc-card:nth-child(3).is-in { transition-delay: 0.2s; }
@media (prefers-reduced-motion: reduce) {
  .reveal-ready .svc-card { opacity: 1; transform: none; transition: none; }
}
.svc-card-content { padding: 1.46vw; display: flex; flex-direction: column; }
.svc-idx { font-family: var(--mono); font-size: 0.625vw; color: var(--gray); }
.svc-card-title {
  margin-top: 0.6vw;
  font-size: 1.667vw; font-weight: 400; line-height: 1.1;
  letter-spacing: -0.01em; color: #fff;
}
.svc-card-desc { margin-top: 0.6vw; font-size: 0.833vw; color: var(--gray); max-width: 16vw; }
.svc-feats { margin-top: 1.5vw; }
.svc-feats li {
  padding: 0.62vw 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-family: var(--mono);
  font-size: 0.625vw;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--gray);
}
.svc-card-media {
  margin: 0.625vw 0.625vw 0.625vw 0;
  border-radius: 0.5vw;
  background: linear-gradient(150deg, #2c2c32 0%, #16161b 60%, #0d0d11 100%);
}

/* ---- animated radar illustration (Tráfego e Mídia card) ---- */
.svc-card-media--radar {
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  background: rgba(1, 0, 4, 0.15);   /* site near-black (#010004) at 15% opacity */
}
.radar-scope {
  position: relative;
  width: 13vw;
  height: 13vw;
}
.radar-ring {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(67, 97, 238, 0.16);
  border-radius: 50%;
}
.radar-ring.r1 { width: 30%;  height: 30%;  }
.radar-ring.r2 { width: 55%;  height: 55%;  }
.radar-ring.r3 { width: 78%;  height: 78%;  }
.radar-ring.r4 { width: 100%; height: 100%; border-color: rgba(67, 97, 238, 0.22); }

/* rotating sweep wedge + bright leading arm — spin together, aligned at 3 o'clock */
.radar-sweep {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(from 90deg,
    rgba(67, 97, 238, 0.32) 0deg,
    rgba(67, 97, 238, 0)    8deg,
    rgba(67, 97, 238, 0)    312deg,
    rgba(67, 97, 238, 0.05) 352deg,
    rgba(67, 97, 238, 0.32) 360deg);
  animation: radar-spin 3.4s linear infinite;
}
.radar-arm {
  position: absolute;
  left: 50%; top: 50%;
  width: 50%; height: 0.1vw;
  transform-origin: 0% 50%;
  background: linear-gradient(90deg, rgba(67, 97, 238, 0.95), rgba(67, 97, 238, 0));
  animation: radar-spin 3.4s linear infinite;
}
.radar-core {
  position: absolute;
  left: 50%; top: 50%;
  width: 0.9vw; height: 0.9vw;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0.6vw rgba(67, 97, 238, 0.9), 0 0 1.6vw rgba(67, 97, 238, 0.55);
  animation: radar-core 2.4s ease-in-out infinite;
}
.radar-ping {
  position: absolute;
  left: 50%; top: 50%;
  width: 0.9vw; height: 0.9vw;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(67, 97, 238, 0.5);
  animation: radar-ping 3.4s ease-out infinite;
}
.radar-blip {
  position: absolute;
  width: 0.5vw; height: 0.5vw;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0.5vw rgba(67, 97, 238, 0.9);
  transform: translate(-50%, -50%);
  animation: radar-blip 3.4s ease-in-out infinite;
}
.radar-blip.b1 { left: 14%; top: 50%; animation-delay: 0.2s; }
.radar-blip.b2 { left: 74%; top: 24%; animation-delay: 1.5s; }
.radar-blip.b3 { left: 86%; top: 58%; animation-delay: 2.3s; }
.radar-blip.b4 { left: 42%; top: 82%; animation-delay: 0.9s; }

.radar-label {
  position: absolute;
  font-family: var(--mono);
  font-size: 0.625vw;
  letter-spacing: 0.08em;
  color: var(--brand);
  text-shadow: 0 0 0.4vw rgba(67, 97, 238, 0.45);
}
.radar-label.l-roi  { left: 0.9vw;  top: 50%; transform: translateY(-50%); }
.radar-label.l-lead { right: 1.1vw; top: 16%; }
.radar-label.l-ltv  { right: 0.9vw; top: 56%; transform: translateY(-50%); }
.radar-label.l-cac  { left: 50%; bottom: 1vw; transform: translateX(-50%); }

@keyframes radar-spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes radar-core {
  0%, 100% { box-shadow: 0 0 0.5vw rgba(67,97,238,0.8), 0 0 1.3vw rgba(67,97,238,0.45); }
  50%      { box-shadow: 0 0 0.9vw rgba(67,97,238,1),   0 0 2.4vw rgba(67,97,238,0.70); }
}
@keyframes radar-ping {
  0%   { width: 0.9vw; height: 0.9vw; opacity: 0.6; }
  70%  { opacity: 0; }
  100% { width: 13vw; height: 13vw; opacity: 0; }
}
@keyframes radar-blip {
  0%, 100% { opacity: 0.2; transform: translate(-50%, -50%) scale(0.8); }
  50%      { opacity: 1;   transform: translate(-50%, -50%) scale(1.15); }
}
@media (prefers-reduced-motion: reduce) {
  .radar-sweep, .radar-arm, .radar-core, .radar-ping, .radar-blip { animation: none; }
}

/* ---- animated landing-page / A-B mockup (Web & Landing Pages card) ---- */
.svc-card-media--web {
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  background: rgba(1, 0, 4, 0.15);   /* same near-black tint as the radar card */
}
.browser {
  width: 15.5vw;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 0.6vw;
  background: #08080c;
  overflow: hidden;
  box-shadow: 0 0.6vw 2vw rgba(0, 0, 0, 0.45);
}
.browser-bar {
  display: flex;
  align-items: center;
  gap: 0.5vw;
  padding: 0.5vw 0.6vw;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.browser-dots { display: flex; gap: 0.26vw; flex-shrink: 0; }
.browser-dots i { width: 0.42vw; height: 0.42vw; border-radius: 50%; display: block; }
.browser-dots i:nth-child(1) { background: #ff5f57; }
.browser-dots i:nth-child(2) { background: #febc2e; }
.browser-dots i:nth-child(3) { background: #28c840; }
.browser-url {
  flex: 1;
  height: 0.62vw;
  margin: 0 0.3vw;
  border-radius: 0.31vw;
  background: rgba(255, 255, 255, 0.10);
}
.browser-body { padding: 0.8vw 0.8vw 0.9vw; display: flex; flex-direction: column; }
.bw-line { height: 0.55vw; border-radius: 0.28vw; background: rgba(255, 255, 255, 0.14); }
.bw-line--title { width: 78%; }
.bw-line--sub   { width: 55%; margin-top: 0.5vw; background: rgba(255, 255, 255, 0.09); }
.bw-drop {
  margin-top: 0.8vw;
  height: 4.2vw;
  display: grid; place-items: center;
  border: 1px dashed rgba(67, 97, 238, 0.55);
  border-radius: 0.3vw;
  background: rgba(67, 97, 238, 0.06);
  animation: bw-drop-breathe 3.2s ease-in-out infinite;
}
.bw-img {
  width: 1.15vw; height: 1.15vw;
  border: 1px solid rgba(67, 97, 238, 0.85);
  border-radius: 0.18vw;
}
.bw-btn {
  position: relative;
  margin-top: 0.8vw;
  width: 6vw; height: 1.35vw;
  border-radius: 0.3vw;
  background: var(--brand);
  animation: bw-btn-glow 3.2s ease-in-out infinite;
}
.bw-btn::after {
  content: '';
  position: absolute;
  left: 0.8vw; top: 50%;
  transform: translateY(-50%);
  width: 2.4vw; height: 0.3vw;
  border-radius: 0.15vw;
  background: rgba(255, 255, 255, 0.85);
}
@keyframes bw-drop-breathe {
  0%, 100% { border-color: rgba(67, 97, 238, 0.35); background: rgba(67, 97, 238, 0.05); }
  50%      { border-color: rgba(67, 97, 238, 0.70); background: rgba(67, 97, 238, 0.10); }
}
@keyframes bw-btn-glow {
  0%, 100% { box-shadow: 0 0 0.2vw rgba(67, 97, 238, 0.30); }
  50%      { box-shadow: 0 0 1vw rgba(67, 97, 238, 0.70); }
}
@media (prefers-reduced-motion: reduce) {
  .bw-drop, .bw-btn { animation: none; }
}

/* ---- animated automation flow (AI & Automations card) ---- */
.svc-card-media--ai {
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  background: rgba(1, 0, 4, 0.15);
}
.ai-flow { width: 17vw; height: auto; }
.ai-flow .flow-base {
  stroke: rgba(67, 97, 238, 0.20);
  stroke-width: 2;
}
.ai-flow .flow-pulse {
  stroke: url(#ai-flowgrad);
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-dasharray: 15 85;
  filter: drop-shadow(0 0 2px rgba(67, 97, 238, 0.9));
  animation: ai-flow 2.6s linear infinite;
}
.ai-flow .p2 { animation-delay: 0.55s; }
.ai-flow .p3 { animation-delay: 1.1s; }
.ai-flow .ai-node { fill: #101016; stroke: rgba(255, 255, 255, 0.12); stroke-width: 1; }
.ai-flow .ai-node-text {
  fill: #fff;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 400;
}
.ai-flow .ai-check { fill: var(--brand); animation: ai-check-glow 2.6s ease-in-out infinite; }
.ai-flow .ai-check-mark { stroke: #fff; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
@keyframes ai-flow { from { stroke-dashoffset: 100; } to { stroke-dashoffset: 0; } }
@keyframes ai-check-glow {
  0%, 100% { filter: drop-shadow(0 0 1px rgba(67, 97, 238, 0.5)); }
  50%      { filter: drop-shadow(0 0 4px rgba(67, 97, 238, 1)); }
}
@media (prefers-reduced-motion: reduce) {
  .ai-flow .flow-pulse, .ai-flow .ai-check { animation: none; }
}

/* ---- animated social engagement post (Branding e Engajamento card) ---- */
.svc-card-media--social {
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  background: rgba(1, 0, 4, 0.15);
}
.post {
  width: 13.5vw;
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 0.6vw;
  background: #08080c;
  overflow: hidden;
  box-shadow: 0 0.6vw 2vw rgba(0, 0, 0, 0.45);
}
.post-head {
  display: flex;
  align-items: center;
  gap: 0.5vw;
  padding: 0.6vw 0.7vw;
}
.post-avatar {
  width: 1.5vw; height: 1.5vw;
  flex-shrink: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), #8aa9ff);
}
.post-id { display: flex; flex-direction: column; gap: 0.22vw; flex: 1; }
.post-name { font-size: 0.72vw; color: #fff; }
.post-handle { width: 3.2vw; height: 0.4vw; border-radius: 0.2vw; background: rgba(255, 255, 255, 0.12); }
.post-menu { color: var(--gray); font-size: 0.8vw; letter-spacing: 0.05em; }
.post-media {
  height: 5.6vw;
  background:
    radial-gradient(120% 120% at 20% 10%, rgba(67, 97, 238, 0.28), transparent 55%),
    linear-gradient(150deg, #1a1a22 0%, #101015 60%, #0b0b10 100%);
}
.post-eng {
  display: flex;
  align-items: center;
  gap: 1vw;
  padding: 0.6vw 0.7vw 0.7vw;
}
.post-eng svg { width: 0.85vw; height: 0.85vw; flex-shrink: 0; }
.eng-item {
  display: inline-flex;
  align-items: center;
  gap: 0.32vw;
  font-family: var(--mono);
  font-size: 0.7vw;
  color: var(--gray);
}
.ic-heart { fill: var(--brand); }
.ic-line { fill: none; stroke: rgba(255, 255, 255, 0.45); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.eng-like { color: #fff; }
.eng-like .ic-heart { transform-origin: center; animation: heart-pulse 1.8s ease-in-out infinite; }
.eng-num { display: inline-block; height: 1vw; overflow: hidden; vertical-align: bottom; }
.eng-reel { display: flex; flex-direction: column; animation: eng-reel 7s infinite; }
.eng-reel i { height: 1vw; line-height: 1vw; font-style: normal; }

.float-heart {
  position: absolute;
  bottom: 30%;
  width: 0.8vw; height: 0.8vw;
  opacity: 0;
  pointer-events: none;
}
.float-heart svg { width: 100%; height: 100%; fill: var(--brand); filter: drop-shadow(0 0 2px rgba(67, 97, 238, 0.8)); }
.float-heart.fh1 { left: 30%; animation: float-up 3.4s ease-in infinite; }
.float-heart.fh2 { left: 42%; animation: float-up 3.4s ease-in 1.1s infinite; }
.float-heart.fh3 { left: 36%; animation: float-up 3.4s ease-in 2.2s infinite; }

@keyframes heart-pulse {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.25); }
}
@keyframes eng-reel {
  0%, 15%   { transform: translateY(0); }
  20%, 35%  { transform: translateY(-1vw); }
  40%, 55%  { transform: translateY(-2vw); }
  60%, 75%  { transform: translateY(-3vw); }
  80%, 100% { transform: translateY(-4vw); }
}
@keyframes float-up {
  0%   { transform: translateY(0) scale(0.5);     opacity: 0; }
  20%  { opacity: 1; }
  75%  { opacity: 0.9; }
  100% { transform: translateY(-4.5vw) scale(1.05); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .eng-like .ic-heart, .eng-reel, .float-heart { animation: none; }
}

/* ===================== WHY US ===================== */
.why {
  position: relative;
  width: 100%;
  background: var(--bg);
  overflow: hidden;
  padding: 5.52vw 0 4.5vw;
  text-align: center;
}
.why-bg {
  position: absolute;
  left: 0; top: -5.2vw;
  width: 100%; height: 57vw;
  background:
    radial-gradient(120% 80% at 50% 0%, #14141a 0%, #06060a 55%, #010004 100%),
    linear-gradient(180deg, #0c0c11, #010004);
}
.why-head, .why-table { position: relative; z-index: 2; }
.why-title {
  margin-top: 1vw;
  font-size: 2.5vw; font-weight: 400; line-height: 1.12;
  letter-spacing: -0.01em; color: #fff;
}
.why-sub {
  margin: 1.35vw auto 0; max-width: 36vw;
  font-size: 0.833vw; line-height: 1.4; color: var(--gray);
}
.why-table {
  width: 62.5vw;                  /* 1200px */
  margin: 2.76vw auto 0;
  display: grid;
  grid-template-columns: 10.42vw 17.34vw 17.34vw 17.34vw;
}
.wt-cell {
  display: flex;
  align-items: center;
  min-height: 3.75vw;             /* 72px */
  padding: 0 1.25vw;
  font-size: 0.833vw;
  color: #fff;
  background: rgba(1, 1, 1, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.wt-corner { background: transparent; border-color: transparent; }
.wt-head { min-height: 4.22vw; font-size: 0.9375vw; }
.wt-hl { background: rgba(255, 255, 255, 0.10); }
.wt-brand { font-size: 1.04vw; color: #fff; }
.ic {
  width: 0.9vw; height: 0.9vw;
  margin-right: 0.55vw;
  flex-shrink: 0;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.ic-ok   { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='white' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M3 8.5l3 3 6-7'/%3E%3C/svg%3E"); }
.ic-x    { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23A8A8A8' stroke-width='1.6' stroke-linecap='round'%3E%3Cpath d='M4 4l8 8M12 4l-8 8'/%3E%3C/svg%3E"); }
.ic-warn { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23A8A8A8' stroke-width='1.4' stroke-linejoin='round' stroke-linecap='round'%3E%3Cpath d='M8 2.5L15 14H1z'/%3E%3Cpath d='M8 7v3'/%3E%3C/svg%3E"); }

/* ===================== TESTIMONIALS ===================== */
.test { position: relative; width: 100%; background: var(--bg); padding: 5.21vw 0 5vw; overflow: hidden; }
.test-head {
  width: 64.583vw; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: flex-end;
}
.test-title {
  margin-top: 1vw;
  font-size: 2.5vw; font-weight: 400; letter-spacing: -0.01em; color: #fff;
}
.test-arrows { display: flex; gap: 0.6vw; }
.test-arrow {
  width: 2.4vw; height: 2.4vw;
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 0.42vw;
  color: #fff; font-size: 1.1vw; line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
}
.test-arrow:hover:not(:disabled) { background: #242329; border-color: rgba(255, 255, 255, 0.22); }
.test-arrow:disabled { opacity: 0.35; cursor: default; }
.test-track {
  margin: 2.5vw 0 0 17.708vw;     /* starts at content left, overflows right */
  display: flex;
  gap: 1.25vw;                    /* 24px */
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}
.test-card {
  width: 37.135vw; min-height: 22.08vw;   /* 713×424 — grows for longer quotes */
  flex-shrink: 0;
  background: var(--card);
  border-radius: 0.625vw;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;   /* text-only — no photo column */
}
.test-card-content { padding: 1.875vw; display: flex; flex-direction: column; }
.test-brand { font-size: 1.04vw; color: rgba(255, 255, 255, 0.55); }
.test-quote {
  margin-top: 1.4vw;
  font-size: 1.25vw;              /* 24px */
  line-height: 1.32;
  letter-spacing: -0.01em;
  color: #fff;
  max-width: 30vw;
}
.test-person { margin-top: auto; display: flex; flex-direction: column; gap: 0.25vw; }
.test-name { font-size: 0.9375vw; color: #fff; }
.test-role { font-family: var(--mono); font-size: 0.625vw; text-transform: uppercase; letter-spacing: 0.03em; color: var(--gray); }
.test-stats {
  width: 62.5vw; margin: 2.71vw auto 0;
  display: grid; grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(255, 255, 255, 0.10);
}
.test-stat {
  display: flex; align-items: flex-start; gap: 0.4vw;
  padding: 1.46vw 1.46vw;
  border-left: 1px solid rgba(255, 255, 255, 0.10);
}
.test-stat:first-child { border-left: none; }
.ts-num { font-size: 2.917vw; line-height: 0.9; color: #fff; }
.ts-side { display: flex; flex-direction: column; padding-top: 0.2vw; }
.ts-unit { font-size: 1.667vw; line-height: 1; color: #fff; }
.ts-label { margin-top: 0.5vw; font-family: var(--mono); font-size: 0.625vw; text-transform: uppercase; letter-spacing: 0.03em; color: var(--gray); }

/* ===================== PRICING ===================== */
.pricing { position: relative; width: 100%; background: var(--bg); padding: 5.52vw 0 5vw; text-align: center; }
.pricing-title {
  margin-top: 1vw;
  font-size: 2.5vw; font-weight: 400; line-height: 1.12; letter-spacing: -0.01em; color: #fff;
}
.price-toggle {
  display: inline-flex; align-items: center; gap: 0.2vw;
  margin-top: 2.2vw; padding: 0.26vw;
  background: var(--card); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 0.5vw;
}
.pt-opt {
  display: inline-flex; align-items: center; gap: 0.4vw;
  padding: 0.5vw 1vw; border-radius: 0.35vw;
  font-size: 0.833vw; color: var(--gray);
}
.pt-opt.is-on { background: #fff; color: var(--bg); }
.pt-tag {
  font-family: var(--mono); font-size: 0.55vw; padding: 0.1vw 0.3vw;
  background: rgba(255,255,255,0.12); border-radius: 0.2vw; color: var(--gray);
}
.price-cards {
  width: 64.583vw; margin: 6vw auto 0;
  display: grid; grid-template-columns: repeat(3, 1fr);
  align-items: start; text-align: left;
}
.price-card { padding: 2vw 1.875vw; }
.price-card.popular {
  background: var(--card);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 0.75vw;
  margin-top: -4.17vw;
  padding-top: 6.17vw;
}
.price-ic {
  display: inline-flex; align-items: center; justify-content: center;
  width: 1.875vw; height: 1.875vw;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.10);
  border-radius: 0.42vw; font-size: 0.83vw; color: #fff;
  margin-bottom: 1.5vw;
}
.price-name { font-size: 1.25vw; font-weight: 400; color: #fff; }
.price-pop {
  font-family: var(--mono); font-size: 0.55vw; text-transform: uppercase; letter-spacing: 0.04em;
  background: rgba(255,255,255,0.12); padding: 0.18vw 0.45vw; border-radius: 0.3vw;
  vertical-align: middle; margin-left: 0.4vw; color: #fff;
}
.price-tag { margin-top: 0.4vw; font-size: 0.729vw; color: var(--gray); min-height: 2.2vw; }
.price-amount { margin-top: 0.8vw; font-size: 2.5vw; font-weight: 400; color: #fff; }
.price-amount span { font-size: 0.833vw; color: var(--gray); }
.price-btn {
  display: flex; align-items: center; justify-content: center;
  margin-top: 1.4vw; height: 2.5vw;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 0.42vw; font-size: 0.729vw; font-weight: 500; color: #fff;
}
.price-btn--light { background: #fff; color: var(--bg); border-color: #fff; }
.price-guarantee {
  display: flex; align-items: center; justify-content: center; gap: 0.4vw;
  margin-top: 0.9vw; padding-bottom: 1.3vw;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 0.729vw; color: var(--gray);
}
.price-feats { margin-top: 1.4vw; }
.price-feats li { display: flex; align-items: center; gap: 0.6vw; padding: 0.52vw 0; font-size: 0.833vw; color: #fff; }
.ic-shield { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23A8A8A8' stroke-width='1.3' stroke-linejoin='round' stroke-linecap='round'%3E%3Cpath d='M8 1.5l5.5 2v4c0 3.5-2.5 5.5-5.5 6.5C5 13 2.5 11 2.5 7.5v-4z'/%3E%3Cpath d='M5.8 8l1.6 1.6 3-3.1'/%3E%3C/svg%3E"); }

/* ===================== BLOG ===================== */
.blog { position: relative; width: 100%; background: var(--bg); padding: 5.2vw 0 4vw; }
.blog-head {
  width: 64.583vw; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: flex-end;
}
.blog-title { margin-top: 1vw; font-size: 2.5vw; font-weight: 400; letter-spacing: -0.01em; color: #fff; }
.blog-cards {
  width: 64.583vw; margin: 2.4vw auto 0;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25vw;
}
.blog-img {
  width: 100%; aspect-ratio: 397 / 223;
  border-radius: 0.625vw;
  background: linear-gradient(150deg, #2a2a30, #131317);
}
.blog-meta {
  margin-top: 1.25vw;
  font-family: var(--mono); font-size: 0.625vw;
  text-transform: uppercase; letter-spacing: 0.03em; color: var(--gray);
}
.blog-meta .dot-sep { margin: 0 0.3vw; }
.blog-card-title { margin-top: 0.6vw; font-size: 1.25vw; font-weight: 400; line-height: 1.2; color: #fff; }

/* ===================== FAQ ===================== */
.faq { position: relative; width: 100%; background: var(--bg); padding: 5.2vw 0 5vw; }
.faq-inner {
  width: 52.08vw; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: stretch;
}
.faq-left { width: 15.625vw; display: flex; flex-direction: column; justify-content: space-between; }
.faq-title { margin-top: 1vw; font-size: 2.5vw; font-weight: 400; line-height: 1.12; letter-spacing: -0.01em; color: #fff; }
.faq-contact {
  width: 100%; margin-top: 3vw;
  background: var(--card); border-radius: 0.625vw;
  display: flex; align-items: center; gap: 0.78vw; padding: 0.83vw;
}
.faq-contact-avatar {
  width: 4.06vw; height: 4.06vw; flex-shrink: 0;
  border-radius: 0.42vw;
  background: linear-gradient(135deg, #2a2a30, #15151a);
}
.faq-contact-info { display: flex; flex-direction: column; }
.faq-contact-name { font-size: 0.9375vw; color: #fff; }
.faq-contact-role { font-family: var(--mono); font-size: 0.625vw; text-transform: uppercase; letter-spacing: 0.02em; color: var(--gray); margin-top: 0.2vw; }
.faq-contact-btn {
  margin-top: 0.73vw;
  display: inline-flex; align-items: center; justify-content: center; gap: 0.3vw;
  height: 1.875vw; padding: 0 0.7vw;
  background: #fff; border-radius: 0.4167vw;
  font-size: 0.729vw; font-weight: 500; color: var(--bg);
}
.faq-contact-btn .chev { font-size: 0.83vw; line-height: 1; }
.faq-acc { width: 28.65vw; display: flex; flex-direction: column; gap: 0.625vw; }
.faq-item { background: var(--card); border-radius: 0.42vw; padding: 0.94vw 1.04vw; }
.faq-q {
  display: flex; justify-content: space-between; align-items: center; gap: 1vw;
  font-size: 0.9375vw; color: #fff;
}
.faq-tog { font-size: 1.1vw; color: var(--gray); line-height: 1; }
.faq-a { margin-top: 0.6vw; font-size: 0.833vw; line-height: 1.5; color: var(--gray); }

/* ===================== CTA ===================== */
.cta-sec {
  position: relative; width: 100%; height: 50vw;   /* 960px */
  overflow: hidden;
  display: flex; align-items: center; justify-content: center; text-align: center;
}
.cta-bg {
  position: absolute; inset: 0;
  background: url('img/hero.jpeg') center / cover no-repeat;
}
/* darkening layer so the centered text stays legible */
.cta-bg::after {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(55% 50% at 50% 50%, rgba(1,0,4,0.55) 0%, rgba(1,0,4,0.25) 55%, transparent 82%),
    linear-gradient(180deg,
      #010004 0%,
      rgba(1,0,4,0.45) 16%,
      rgba(1,0,4,0.28) 50%,
      rgba(1,0,4,0.45) 84%,
      #010004 100%);
}
.cta-content { position: relative; z-index: 2; }
.cta-heading {
  margin-top: 1vw;
  font-size: 2.7vw; font-weight: 400; line-height: 1.1; letter-spacing: -0.01em; color: #fff;
}
.cta-sub { margin-top: 1.4vw; font-size: 0.833vw; line-height: 1.5; color: rgba(255,255,255,0.72); }
.cta-btn {
  display: inline-flex; align-items: center; justify-content: center;
  margin-top: 1.8vw; height: 2.5vw; padding: 0 1.25vw;
  border-radius: 0.42vw;
  font-size: 0.729vw; font-weight: 500; color: #fff;
}

/* ===================== FOOTER ===================== */
.footer-sec { width: 100%; background: var(--bg); padding: 4vw 0 1.8vw; }
.footer-main {
  width: 64.583vw; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: flex-start;
}
.footer-brand-col { width: 22.08vw; }
.footer-tagline { font-size: 2.5vw; font-weight: 400; line-height: 1.12; letter-spacing: -0.01em; color: #fff; }
.footer-h {
  display: block;
  font-family: var(--mono); font-size: 0.625vw;
  text-transform: uppercase; letter-spacing: 0.06em; color: var(--gray);
  margin-bottom: 1.2vw;
}
.footer-nav { width: 26vw; display: flex; flex-direction: column; }
.footer-nav a { font-size: 0.833vw; color: var(--gray); margin-bottom: 0.7vw; transition: color 0.2s ease; }
.footer-nav a:hover { color: #fff; }
.footer-contact { width: 16.46vw; display: flex; flex-direction: column; gap: 1.5vw; }
.footer-socials { display: flex; gap: 0.42vw; }
.footer-socials a {
  width: 2.08vw; height: 2.08vw;
  background: var(--card); border-radius: 0.42vw;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
}
.footer-email { font-size: 1.667vw; color: #fff; }
.footer-phone { font-size: 0.9375vw; color: #fff; }
.footer-news {
  display: flex; align-items: center;
  background: var(--card); border-radius: 0.42vw;
  padding: 0.42vw 0.42vw 0.42vw 0.83vw;
}
.footer-news input {
  flex: 1; min-width: 0;
  background: transparent; border: none; outline: none;
  font-family: inherit; font-size: 0.729vw; color: #fff;
}
.footer-news input::placeholder { color: var(--gray); }
.footer-submit {
  flex-shrink: 0;
  background: #fff; border: none; border-radius: 0.32vw;
  padding: 0.5vw 0.8vw;
  font-family: inherit; font-size: 0.729vw; font-weight: 500; color: var(--bg);
  cursor: pointer;
}
.footer-bottom {
  width: 64.583vw; margin: 3.5vw auto 0;
  padding-top: 1.5vw;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex; justify-content: space-between;
  font-family: var(--mono); font-size: 0.625vw;
  text-transform: uppercase; letter-spacing: 0.04em; color: var(--gray);
}
.footer-madeby strong { color: #fff; font-weight: 500; }
.hero-card-btn {
  margin-top: 0.73vw;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 1.875vw;                /* 36px */
  padding: 0 0.7vw;
  font-size: 0.729vw;             /* 14px */
  font-weight: 500;
}

/* ===== Unified button style — dark with subtle border (ref: btn.png) ===== */
.nav-cta, .cta-btn, .hero-card-btn, .work-cta, .works-all, .glass-cta {
  background: #1B1A1E;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 0.4167vw;           /* 8px */
  color: #fff;
  transition: background 0.2s ease, border-color 0.2s ease, gap 0.2s ease;
}
.nav-cta:hover, .cta-btn:hover, .hero-card-btn:hover, .work-cta:hover, .works-all:hover, .glass-cta:hover {
  background: #242329;
  border-color: rgba(255, 255, 255, 0.22);
}

/* ===================== Floating WhatsApp button ===================== */
.wa-float {
  position: fixed;
  right: clamp(16px, 1.6vw, 30px);
  bottom: clamp(16px, 1.6vw, 30px);
  z-index: 200;
  width: clamp(52px, 3.4vw, 66px);
  height: clamp(52px, 3.4vw, 66px);
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  animation: wa-pop 0.5s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.wa-float svg { width: 56%; height: 56%; }
.wa-float::before {           /* pulsing attention ring */
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: 50%;
  background: #25D366;
  animation: wa-pulse 2.6s ease-out infinite;
}
.wa-float:hover {
  transform: scale(1.06);
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.45);
}
@keyframes wa-pop {
  from { transform: scale(0); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}
@keyframes wa-pulse {
  0%   { transform: scale(1);   opacity: 0.45; }
  70%  { transform: scale(1.7); opacity: 0; }
  100% { transform: scale(1.7); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .wa-float { animation: none; }
  .wa-float::before { animation: none; }
}

/* ===================== Scroll-reveal entrance (body blocks; hero excluded) ===================== */
.reveal-ready .reveal {
  opacity: 0;
  transform: translateY(1.8vw);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}
.reveal-ready .reveal-fade {       /* sticky elements: fade only, no transform */
  opacity: 0;
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity;
}
.reveal-ready .reveal.is-in { opacity: 1; transform: none; }
.reveal-ready .reveal-fade.is-in { opacity: 1; }

/* light stagger for the grids */
.reveal-ready .pilar-card:nth-child(2) { transition-delay: 0.08s; }
.reveal-ready .pilar-card:nth-child(3) { transition-delay: 0.16s; }
.reveal-ready .pilar-card:nth-child(4) { transition-delay: 0.24s; }
.reveal-ready .logo-cell:nth-child(2) { transition-delay: 0.06s; }
.reveal-ready .logo-cell:nth-child(3) { transition-delay: 0.12s; }
.reveal-ready .logo-cell:nth-child(4) { transition-delay: 0.18s; }
.reveal-ready .logo-cell:nth-child(5) { transition-delay: 0.24s; }

@media (prefers-reduced-motion: reduce) {
  .reveal-ready .reveal,
  .reveal-ready .reveal-fade { opacity: 1; transform: none; transition: none; }
}

/* =====================================================================
   MOBILE — reflow of the vw-based desktop layout (≤ 900px)
   ===================================================================== */
@media (max-width: 900px) {
  /* ---------- NAV ---------- */
  .nav { height: 58px; padding: 0 18px; justify-content: space-between; }
  .nav-logo { position: static; left: auto; }
  .nav-logo img { height: 17px; }
  .nav-links { display: none; }
  .nav-cta { position: static; left: auto; right: auto; height: 38px; padding: 0 14px; font-size: 13px; border-radius: 8px; }
  .nav-cta .wa, .cta-btn .wa, .hero-card-btn .wa { width: 16px; height: 16px; }

  /* ---------- HERO ---------- */
  .hero {
    height: auto;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 20px;
    padding: 92px 22px 44px;
  }
  .hero-tags, .hero-desc, .hero-bottom-left, .hero-card {
    position: static; left: auto; right: auto; top: auto; bottom: auto; width: auto;
  }
  .hero-tags { order: 1; }
  .hero-tags li { font-size: 11px; line-height: 1.9; }
  .hero-bottom-left { order: 2; margin-top: auto; }
  .hero-badge { height: auto; padding: 4px 10px; font-size: 11px; border-left-width: 3px; }
  .hero-title { margin-top: 12px; font-size: 30px; line-height: 1.12; }
  .hero-desc { order: 3; max-width: 36ch; font-size: 14px; line-height: 1.5; text-align: left; }
  .hero-card { order: 4; width: 100%; max-width: 340px; padding: 14px; gap: 12px; }
  .hero-card-avatar { width: 56px; height: 56px; border-radius: 8px; }
  .hero-card-name { font-size: 15px; }
  .hero-card-role { font-size: 10px; margin-top: 3px; }
  .hero-card-btn { height: 40px; padding: 0 14px; font-size: 13px; margin-top: 10px; }

  /* ---------- shared section headings ---------- */
  .pill-badge { font-size: 11px; padding: 4px 9px; border-left-width: 3px; }
  .works-title, .hiw-title, .svc-title, .test-title { font-size: 26px; line-height: 1.18; }
  .works-sub, .hiw-sub, .svc-sub { font-size: 14px; max-width: none; line-height: 1.5; }

  /* ---------- LOGOS ---------- */
  .logos { padding-bottom: 36px; }
  .logos-eyebrow { padding-top: 44px; font-size: 11px; }
  .logos-grid { width: 100%; margin-top: 22px; padding: 0 22px; display: flex; flex-wrap: wrap; justify-content: center; gap: 16px 10px; border: none; }
  .logo-cell { width: calc(33.333% - 10px); height: 60px; border: none; }
  .logo-cell img { height: 26px; max-width: 72%; }

  /* ---------- CASES ---------- */
  .works { padding: 52px 0; }
  .works-head { padding: 0 22px; }
  .works-sub { margin-top: 12px; }
  .works-list { margin-top: 28px; padding: 0 18px; gap: 20px; }
  .work-card { position: static; top: auto; width: 100%; height: auto; min-height: 0; grid-template-columns: 1fr; box-shadow: 0 0.6vw 2.4vw rgba(0,0,0,0.45); }
  .work-media { height: 190px; }
  .work-panel { padding: 22px; }
  .work-brand { font-size: 15px; }
  .work-name { font-size: 21px; max-width: none; }
  .work-desc { font-size: 14px; max-width: none; margin-top: 12px; }
  .work-stats { margin-top: 20px; }
  .work-stat { width: auto; flex: 1; }
  .work-stat strong { font-size: 22px; }
  .work-stat span { font-size: 11px; }

  /* ---------- 4 PILARES ---------- */
  .hiw { padding: 52px 0 44px; }
  .hiw-head { padding: 0 22px; }
  .hiw-sub { margin-top: 12px; }
  .pilar-grid { width: 100%; margin-top: 28px; padding: 0 18px; grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .pilar-card { min-height: 0; padding: 18px; border-radius: 12px; }
  .pilar-num { font-size: 11px; }
  .pilar-icon { width: 24px; height: 24px; }
  .pilar-name { font-size: 18px; margin: 14px 0 6px; }
  .pilar-desc { font-size: 13px; line-height: 1.55; }

  /* ---------- SERVICES ---------- */
  .svc { padding: 52px 0; }
  .svc-inner { flex-direction: column; width: 100%; padding: 0 18px; gap: 28px; }
  .svc-left { position: static; top: auto; width: 100%; }
  .svc-title { margin-top: 10px; }
  .svc-sub { margin-top: 12px; }
  .svc-right { width: 100%; gap: 16px; }
  .svc-card { grid-template-columns: 1fr; }
  .svc-card-content { padding: 22px; }
  .svc-idx { font-size: 12px; }
  .svc-card-title { font-size: 19px; margin-top: 8px; }
  .svc-card-desc { font-size: 14px; max-width: none; margin-top: 8px; }
  .svc-feats { margin-top: 16px; }
  .svc-feats li { font-size: 11px; padding: 10px 0; }

  /* services illustrations — rescaled for mobile */
  .svc-card-media { min-height: 200px; margin: 0 14px 14px; border-radius: 10px; }
  .svc-card-media--ai .ai-flow { width: 82%; }                     /* SVG scales crisply */
  .svc-card-media--web .browser { transform: scale(3.4); }         /* no text → scale is safe */
  .svc-card-media--radar { min-height: 250px; }
  .svc-card-media--radar .radar-scope { transform: scale(3.3); }   /* scope (no text) scales; labels handled below */
  .radar-label { font-size: 10px; right: auto; bottom: auto; }
  .radar-label.l-roi  { left: 50%; top: 50%; transform: translate(calc(-50% - 94px), -50%); }
  .radar-label.l-ltv  { left: 50%; top: 50%; transform: translate(calc(-50% + 94px), -8px); }
  .radar-label.l-lead { left: 50%; top: 50%; transform: translate(calc(-50% + 66px), -86px); }
  .radar-label.l-cac  { left: 50%; top: 50%; transform: translate(-50%, 98px); }
  /* post: sized in px (has text — avoid blurry transform scale); likes counter static */
  .svc-card-media--social .float-heart { display: none; }
  .post { width: min(86%, 300px); }
  .post-head { padding: 12px 14px; gap: 10px; }
  .post-avatar { width: 38px; height: 38px; }
  .post-name { font-size: 14px; }
  .post-handle { width: 64px; height: 7px; border-radius: 4px; }
  .post-menu { font-size: 16px; }
  .post-media { height: 120px; }
  .post-eng { padding: 12px 14px 14px; gap: 20px; }
  .post-eng svg { width: 17px; height: 17px; }
  .eng-item { gap: 6px; font-size: 13px; }
  .eng-num { height: 17px; }
  .eng-reel { animation: none; }
  .eng-reel i { height: 17px; line-height: 17px; font-size: 13px; }

  /* ---------- TESTIMONIALS ---------- */
  .test { padding: 52px 0; }
  .test-head { width: 100%; padding: 0 22px; }
  .test-title { margin-top: 8px; }
  .test-arrows { gap: 8px; }
  .test-arrow { width: 40px; height: 40px; font-size: 18px; border-radius: 8px; }
  .test-track { margin: 26px 0 0 22px; gap: 14px; }
  .test-card { width: 84vw; min-height: 0; border-radius: 12px; }
  .test-card-content { padding: 22px; }
  .test-brand { font-size: 15px; }
  .test-quote { margin-top: 16px; font-size: 16px; max-width: none; line-height: 1.4; }
  .test-person { margin-top: 18px; }
  .test-name { font-size: 14px; }
  .test-role { font-size: 11px; }

  /* ---------- CTA ---------- */
  .cta-sec { height: auto; padding: 64px 22px; }
  .cta-heading { font-size: 24px; margin-top: 10px; }
  .cta-sub { font-size: 14px; margin-top: 14px; }
  .cta-btn { height: 46px; padding: 0 18px; font-size: 14px; margin-top: 20px; }

  /* ---------- FOOTER ---------- */
  .footer-sec { padding: 48px 0 28px; }
  .footer-main { flex-direction: column; width: 100%; padding: 0 22px; gap: 30px; }
  .footer-brand-col, .footer-nav, .footer-contact { width: 100%; }
  .footer-tagline { font-size: 28px; }
  .footer-nav a { font-size: 15px; margin-bottom: 10px; }
  .footer-h { font-size: 11px; margin-bottom: 14px; }
  .footer-contact { flex-direction: row; flex-wrap: wrap; gap: 24px; }
  .footer-email { font-size: 20px; }
  .footer-phone { font-size: 16px; }
  .footer-socials a { width: 40px; height: 40px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 10px; width: 100%; padding: 20px 22px 0; margin-top: 28px; font-size: 11px; }

  /* ---------- floating WhatsApp ---------- */
  .wa-float { right: 16px; bottom: 16px; width: 54px; height: 54px; }
}

/* small phones */
@media (max-width: 540px) {
  .pilar-grid { grid-template-columns: 1fr; }
  .logo-cell { width: calc(50% - 10px); }
  .work-stats { flex-direction: column; gap: 14px; }
  .test-card { width: 86vw; }
  .hero-title { font-size: 27px; }
}
