/* ============================================================
   VARIABLES & RESET
   ============================================================ */
:root {
  --dark:      #080808;
  --dark-card: #0f0f0f;
  --white:     #ffffff;
  --text-w:    #ffffff;
  --text-b:    #0f0f0f;
  --muted-w:   #888888;
  --muted-b:   #555555;
  --dim-w:     #444444;
  --border-w:  rgba(255,255,255,0.07);
  --border-b:  rgba(0,0,0,0.09);
  --r:         12px;
  --r-lg:      20px;
  --ease:      cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out:  cubic-bezier(0.76, 0, 0.24, 1);
  --font:      'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  background: var(--dark);
  color: var(--text-w);
  font-family: var(--font);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a   { text-decoration: none; color: inherit; }

::-webkit-scrollbar         { width: 4px; }
::-webkit-scrollbar-track   { background: var(--dark); }
::-webkit-scrollbar-thumb   { background: #282828; border-radius: 4px; }

/* ============================================================
   PRELOADER
   ============================================================ */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 99999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.pl-logo-area {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(8px);
}

.pl-logo {
  height: 44px;
  width: auto;
  filter: brightness(0) invert(1);
}

.pl-brand {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

.pl-text { text-align: center; }

.pl-line-wrap {
  overflow: hidden;
  line-height: 1.15;
}

.pl-line {
  display: block;
  font-size: clamp(22px, 4.5vw, 52px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.03em;
  transform: translateY(110%);
}

.pl-prog {
  width: 150px;
  height: 1px;
  background: rgba(255,255,255,.1);
  overflow: hidden;
}

.pl-bar {
  height: 100%;
  width: 0%;
  background: white;
}

/* ============================================================
   NOISE
   ============================================================ */
.noise {
  position: fixed;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.028;
  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.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: nm .25s steps(2) infinite;
  will-change: transform;
}

@keyframes nm {
  0%   { transform: translate(0,0); }
  25%  { transform: translate(-5%,-8%); }
  50%  { transform: translate(-12%,6%); }
  75%  { transform: translate(6%,-14%); }
  100% { transform: translate(0,4%); }
}

/* ============================================================
   LAYOUT
   ============================================================ */
.container { max-width: 1100px; margin: 0 auto; padding: 0 44px; }

.s-white { background: var(--white); color: var(--text-b); }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  padding: 18px 0;
  transition: background .4s var(--ease), backdrop-filter .4s;
}

.nav.scrolled {
  background: rgba(8,8,8,0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-w);
}

.nav-inner  { display: flex; align-items: center; justify-content: space-between; }
.nav-logo   { display: flex; align-items: center; }

.nav-logo-img {
  height: 32px;
  width: auto;
  filter: brightness(0) invert(1);
}

.logo-text { font-size: 12px; font-weight: 800; letter-spacing: .18em; color: #fff; }

/* ============================================================
   BUTTONS — wipe fill
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 7px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .10em;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  background-size: 202% 100%;
  transition: background-position .45s var(--ease-out), color .45s var(--ease-out), border-color .3s;
}

.btn-sm { padding: 10px 22px; font-size: 11px; }

.btn-white {
  background-image: linear-gradient(to right, #111 50%, #fff 50%);
  background-position: 100% 0;
  color: #000;
  border-color: #fff;
}
.btn-white:hover { background-position: 0% 0; color: #fff; border-color: #222; }

.btn-ghost {
  background-image: linear-gradient(to right, #fff 50%, transparent 50%);
  background-position: 100% 0;
  color: #fff;
  border-color: rgba(255,255,255,.3);
}
.btn-ghost:hover { background-position: 0% 0; color: #000; border-color: #fff; }

.btn-black {
  background-image: linear-gradient(to right, #f0f0f0 50%, #0a0a0a 50%);
  background-position: 100% 0;
  color: #fff;
  border-color: #0a0a0a;
}
.btn-black:hover { background-position: 0% 0; color: #0a0a0a; border-color: #ddd; }

/* ============================================================
   HERO
   ============================================================ */
.s-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse 60% 45% at 72% 38%, rgba(255,255,255,.013) 0%, transparent 68%),
    var(--dark);
}

#hero-canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none; z-index: 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  padding-top: 112px;
  padding-bottom: 90px;
  position: relative; z-index: 2;
}

.hero-heading {
  font-size: clamp(40px, 5.2vw, 70px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -.028em;
  margin-bottom: 22px;
}

.hero-heading .ln   { display: block; overflow: hidden; }
.hero-heading .ln-i { display: block; transform: translateY(110%); }
.ln-muted .ln-i     { color: var(--muted-w); }

.hero-punch {
  font-size: clamp(17px, 1.9vw, 23px);
  font-weight: 700;
  letter-spacing: -.015em;
  margin-bottom: 18px;
}

.hero-body {
  font-size: 15px;
  line-height: 1.72;
  color: var(--muted-w);
  margin-bottom: 12px;
  max-width: 500px;
}

.hero-body strong { color: rgba(255,255,255,.85); font-weight: 600; }

.hero-tagline {
  font-size: 13px;
  color: var(--dim-w);
  font-style: italic;
  letter-spacing: .02em;
  margin-bottom: 34px;
}

.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.will-fade    { opacity: 0; }

/* Hero social proof */
.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
}

.hsp-avatars {
  display: flex;
  align-items: center;
}

.hsp-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 2px solid var(--dark);
  object-fit: cover;
  margin-left: -10px;
  flex-shrink: 0;
  position: relative;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s, z-index 0s;
  cursor: pointer;
}

.hsp-avatars .hsp-avatar:first-child { margin-left: 0; }

.hsp-avatars .hsp-avatar:hover {
  transform: scale(1.18) translateY(-3px);
  z-index: 5;
  box-shadow: 0 4px 14px rgba(255,255,255,0.14), 0 0 0 2px rgba(255,255,255,0.18);
}

/* Hero social proof layout */
.hsp-top {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hsp-clients {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-left: 16px;
  border-left: 1px solid rgba(255,255,255,0.12);
}

.hsp-clients-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dim-w);
  white-space: nowrap;
}

.hsp-client-logo {
  height: 22px;
  width: auto;
  max-width: 90px;
  opacity: 0.55;
  filter: brightness(0) invert(1);
  object-fit: contain;
  transition: opacity 0.3s;
}

.hsp-client-logo:hover { opacity: 0.85; }

.hsp-label {
  font-size: 13px;
  color: var(--muted-w);
  line-height: 1.4;
}

.hsp-label strong { color: #fff; font-weight: 700; }

/* Metrics visual */
.hero-visual { display: flex; align-items: center; justify-content: center; }

.metrics-wrap { position: relative; width: 360px; height: 420px; }

.chart-bg {
  position: absolute; inset: 0;
  display: flex; align-items: flex-end; padding-bottom: 40px;
}
.chart-bg svg { width: 100%; }

.metric-card {
  position: absolute;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.11);
  border-radius: var(--r);
  padding: 18px 22px;
  backdrop-filter: blur(10px);
  min-width: 165px;
}

.mc-1 { top: 10px; left: 0; }
.mc-2 { top: 42%; right: 0; }
.mc-3 { bottom: 20px; left: 14%; }

.float-a { animation: float 4.8s ease-in-out infinite; }
.float-b { animation: float 5.4s ease-in-out infinite .6s; }
.float-c { animation: float 4.2s ease-in-out infinite 1.1s; }

@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

.mc-top   { display: flex; align-items: center; gap: 8px; margin-bottom: 10px; }
.mc-icon  { font-size: 15px; }
.mc-badge { font-size: 10px; font-weight: 600; letter-spacing: .07em; color: rgba(255,255,255,0.75); text-transform: uppercase; white-space: nowrap; }
.mc-val   { font-size: 26px; font-weight: 800; letter-spacing: -.03em; margin-bottom: 10px; font-variant-numeric: tabular-nums; }
.mc-bar   { height: 3px; background: rgba(255,255,255,.08); border-radius: 2px; overflow: hidden; }
.mc-fill  { height: 100%; width: 0%; background: rgba(255,255,255,.4); border-radius: 2px; }

.will-slide-right { opacity: 0; transform: translateX(40px); }

.hero-fade-bottom {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 200px;
  background: linear-gradient(transparent, var(--dark));
  pointer-events: none; z-index: 3;
}

/* ============================================================
   SECTION HEADER (shared)
   ============================================================ */
.section-head { margin-bottom: 52px; }
.section-head--center { text-align: center; }

.section-head h2 {
  font-size: clamp(24px, 2.8vw, 36px);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -.02em;
  margin-bottom: 12px;
}

.section-head p { font-size: 15px; color: var(--muted-w); line-height: 1.65; }

/* ============================================================
   COMPARE
   ============================================================ */
.s-compare { padding: 60px 0 120px; }

.compare-wrap {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.compare-vs {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .2em;
  color: var(--dim-w);
  padding: 0 28px;
  text-align: center;
}

.compare-card {
  border-radius: var(--r-lg);
  padding: 40px;
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s;
}

.compare-bad {
  background: rgba(255,255,255,.025);
  border-color: rgba(255,255,255,.055);
}

.compare-good {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.13);
  isolation: isolate;
}

/* Sweep shine effect on hover */
.compare-good::before {
  content: '';
  position: absolute;
  top: -50%; left: -110%;
  width: 70%; height: 200%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.07), transparent);
  transform: skewX(-20deg);
  transition: left .7s var(--ease-out);
  pointer-events: none;
  z-index: 0;
}

.compare-good > * { position: relative; z-index: 1; }

.compare-good:hover {
  transform: scale(1.025);
  box-shadow:
    0 0 0 1.5px rgba(255,255,255,0.28),
    0 20px 70px rgba(255,255,255,0.06);
}

.compare-good:hover::before { left: 120%; }

.cc-glow {
  position: absolute;
  top: -50px; right: -50px;
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(255,255,255,.05) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.cc-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted-w);
  margin-bottom: 28px;
}

.compare-good .cc-label { color: #fff; }

.cc-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.cc-dot--bad  { background: #3a3a3a; }
.cc-dot--good { background: rgba(255,255,255,0.7); }

.cc-list { list-style: none; display: flex; flex-direction: column; gap: 16px; }

.cc-list li {
  display: flex; align-items: center; gap: 12px;
  font-size: 14px; font-weight: 500; line-height: 1.4;
}

.compare-bad  .cc-list li { color: var(--muted-w); }
.compare-good .cc-list li { color: #fff; }

.cc-icon {
  width: 22px; height: 22px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.cc-icon svg { width: 11px; height: 11px; }
.cc-icon--bad  { background: rgba(255,255,255,.05); color: #555; }
.cc-icon--good { background: rgba(255,255,255,.15); color: rgba(255,255,255,.9); }

/* ============================================================
   REALITY COMPARISON — white
   ============================================================ */
.s-reality { padding: 120px 0 130px; }

.reality-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted-b);
  margin-bottom: 52px;
}

.reality-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  margin-bottom: 72px;
}

.reality-vs {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
}

.reality-vs span {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .2em;
  color: #bbb;
}

.reality-card {
  border-radius: var(--r-lg);
  padding: 36px;
  position: relative;
  overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}

.reality-card:hover {
  transform: scale(1.022);
}

.reality-bad:hover {
  box-shadow: 0 0 0 1.5px rgba(204,68,68,0.35), 0 16px 60px rgba(204,68,68,0.08);
}

.reality-good:hover {
  box-shadow: 0 0 0 1.5px rgba(255,255,255,0.28), 0 16px 60px rgba(255,255,255,0.07);
}

.reality-bad {
  background: #f7f7f7;
  border: 1px solid rgba(0,0,0,.08);
}

.reality-good {
  background: #0f0f0f;
  border: 1px solid rgba(255,255,255,.08);
  color: #fff;
}

.rc-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.rc-dot { width: 7px; height: 7px; border-radius: 50%; flex-shrink: 0; }
.rc-dot--bad  { background: #cc4444; }
.rc-dot--good { background: rgba(255,255,255,0.6); }

.rc-badge--bad  { color: #999; }
.rc-badge--good { color: rgba(255,255,255,.5); }

.rc-metrics { display: flex; flex-direction: column; gap: 0; margin-bottom: 24px; }

.rcm {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid;
}

.reality-bad  .rcm { border-color: rgba(0,0,0,.07); }
.reality-good .rcm { border-color: rgba(255,255,255,.07); }

.rcm:last-child { border-bottom: none; }

.rcm-label { font-size: 13px; font-weight: 500; }
.reality-bad  .rcm-label { color: #888; }
.reality-good .rcm-label { color: rgba(255,255,255,.45); }

.rcm-val {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -.02em;
  font-variant-numeric: tabular-nums;
}
.rcm-val--bad  { color: #cc4444; }
.rcm-val--good { color: #fff; }

.rc-chart-wrap {
  height: 56px;
  margin-bottom: 20px;
}

.rc-chart-wrap svg { width: 100%; height: 100%; }

/* Chart paths start invisible (JS sets dasharray/offset) */
.chart-path {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
}

.chart-fill { opacity: 0; }

.rc-note { font-size: 13px; font-weight: 600; }
.reality-bad  .rc-note { color: #aaa; }
.reality-good .rc-note { color: rgba(255,255,255,.6); }

.reality-close {
  font-size: clamp(18px, 2.2vw, 28px);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -.015em;
  color: var(--muted-b);
}

.reality-close strong { color: var(--text-b); font-weight: 800; }

/* ============================================================
   MISSION
   ============================================================ */
.s-mission { padding: 120px 0 130px; }

.mission-header { margin-bottom: 60px; }

.mission-note {
  font-size: 13px;
  font-weight: 500;
  color: var(--muted-w);
  margin-bottom: 14px;
}

.mission-header h2 {
  font-size: clamp(30px, 3.8vw, 50px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.03em;
}

.mission-list { border-top: 1px solid var(--border-w); }

.mi-row {
  display: grid;
  grid-template-columns: 52px 52px 1fr 28px;
  align-items: center;
  gap: 24px;
  padding: 36px 0;
  border-bottom: 1px solid var(--border-w);
  transition: background .28s var(--ease), padding-left .28s var(--ease), border-color .28s;
  cursor: default;
}

.mi-row:hover {
  background: rgba(255,255,255,.025);
  padding-left: 18px;
  border-radius: 10px;
  border-color: transparent;
}

.mi-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  color: var(--dim-w);
  transition: color .28s;
}

.mi-row:hover .mi-num { color: rgba(255,255,255,.4); }

.mi-icon-wrap {
  width: 48px; height: 48px;
  border: 1px solid var(--border-w);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  transition: background .28s, border-color .28s, transform .35s cubic-bezier(0.34,1.56,0.64,1);
}

.mi-row:hover .mi-icon-wrap {
  background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.18);
  transform: scale(1.1) rotate(8deg);
}

.mi-svg { width: 22px; height: 22px; color: rgba(255,255,255,.55); transition: color .28s; }
.mi-row:hover .mi-svg { color: #fff; }

.mi-body h3 {
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -.02em;
  margin-bottom: 5px;
  position: relative;
  display: inline-block;
}

/* Underline animation on heading hover */
.mi-body h3::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: rgba(255,255,255,.4);
  transition: width .35s var(--ease);
}

.mi-row:hover .mi-body h3::after { width: 100%; }

.mi-body p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--muted-w);
}

.mi-arrow {
  width: 26px; height: 26px;
  color: var(--dim-w);
  transition: color .28s, transform .28s;
}
.mi-arrow svg { width: 100%; height: 100%; }
.mi-row:hover .mi-arrow { color: #fff; transform: translateX(6px); }

/* ============================================================
   POSITIONING — white
   ============================================================ */
.s-position { padding: 120px 0; }

.pos-grid {
  display: grid;
  grid-template-columns: 1fr 40px 1fr;
  align-items: center;
}

.pos-divider {
  width: 1px;
  height: 70%;
  background: var(--border-b);
  margin: 0 auto;
  align-self: stretch;
  margin-top: 15%;
}

.pos-left { padding-right: 60px; }
.pos-right { padding-left: 60px; }

.pos-qualifier { font-size: 14px; color: var(--muted-b); line-height: 1.65; margin-bottom: 14px; }

.pos-reject {
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.025em;
  color: var(--text-b);
}

.pos-invite { font-size: 15px; color: var(--muted-b); line-height: 1.7; margin-bottom: 14px; }

.pos-strong {
  font-size: clamp(20px, 2.3vw, 30px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.02em;
  color: var(--text-b);
  margin-bottom: 28px;
}

/* ============================================================
   CONTACT
   ============================================================ */
.s-contact {
  padding: 110px 0 120px;
  background: var(--dark-card);
  border-top: 1px solid var(--border-w);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 72px;
  align-items: start;
}

.contact-tag {
  display: block;
  font-size: 10px; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--muted-w);
  margin-bottom: 18px;
}

.contact-info h2 {
  font-size: clamp(24px, 2.8vw, 36px);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -.025em;
  margin-bottom: 16px;
}

.contact-info p { font-size: 14px; color: var(--muted-w); line-height: 1.7; margin-bottom: 32px; }

.contact-promises { display: flex; flex-direction: column; gap: 12px; }

.cp-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; font-weight: 500; color: rgba(255,255,255,.7);
}
.cp-item svg { width: 17px; height: 17px; color: rgba(255,255,255,.4); flex-shrink: 0; }

/* Form */
.contact-form { display: flex; flex-direction: column; gap: 14px; }

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

.form-group { display: flex; flex-direction: column; gap: 6px; }

.form-group label {
  font-size: 10px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--muted-w);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--r);
  padding: 12px 15px;
  color: #fff;
  font-family: var(--font);
  font-size: 14px;
  outline: none;
  transition: border-color .2s, background .2s;
  -webkit-appearance: none;
  appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 13px center;
  background-size: 13px;
  padding-right: 38px;
  background-color: rgba(255,255,255,.04);
}

.form-group select option { background: #1a1a1a; color: #fff; }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(255,255,255,.26);
  background: rgba(255,255,255,.06);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: #444; }

.form-group textarea { resize: none; }

.form-submit { width: 100%; padding: 16px; font-size: 12px; margin-top: 4px; }

.wa-icon { width: 17px; height: 17px; }

.form-note { font-size: 11px; color: var(--dim-w); text-align: center; line-height: 1.6; }

/* ============================================================
   FEEDBACKS
   ============================================================ */
.s-feedback { padding: 120px 0 130px; }

.feedback-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.fb-card {
  background: #f6f6f6;
  border: 1px solid rgba(0,0,0,.06);
  border-radius: var(--r-lg);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: transform .38s var(--ease), box-shadow .38s var(--ease), border-color .38s;
  position: relative;
  will-change: transform;
}

.fb-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 52px rgba(0,0,0,0.09);
  border-color: rgba(0,0,0,0.1);
}

.fb-stars { font-size: 16px; color: #f0a500; letter-spacing: 2px; }

.fb-text {
  font-size: 14px;
  line-height: 1.72;
  color: #444;
  flex: 1;
}

.fb-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid rgba(0,0,0,.07);
}

.fb-avatar-img {
  width: 42px; height: 42px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid rgba(0,0,0,.07);
}

.fb-name { font-size: 14px; font-weight: 700; color: #111; line-height: 1.3; }

/* ============================================================
   WHATSAPP FLOAT
   ============================================================ */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 800;
  width: 58px; height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  color: #fff;
}

.wa-float:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 36px rgba(37,211,102,0.6);
}

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

/* ============================================================
   FOOTER
   ============================================================ */
.footer { padding: 40px 0; border-top: 1px solid var(--border-w); }

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 18px;
}

.footer-logo-img {
  height: 28px; width: auto;
  filter: brightness(0) invert(1);
  opacity: .55;
}

.footer-logo-text {
  font-size: 11px; font-weight: 800;
  letter-spacing: .18em; color: rgba(255,255,255,.3);
}

.footer-social { display: flex; align-items: center; gap: 14px; }

.footer-social-link {
  width: 34px; height: 34px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.4);
  transition: color .2s, border-color .2s, background .2s;
}

.footer-social-link:hover {
  color: #fff;
  border-color: rgba(255,255,255,.3);
  background: rgba(255,255,255,.06);
}

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

.footer-bot { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; }

.footer-bot span,
.footer-bot a { font-size: 11px; color: var(--dim-w); }

.footer-bot a:hover { color: var(--muted-w); }

/* ============================================================
   SCROLL REVEAL — initial states
   ============================================================ */
.reveal-up    { opacity: 0; transform: translateY(34px); }
.reveal-left  { opacity: 0; transform: translateX(-34px); }
.reveal-right { opacity: 0; transform: translateX(34px); }
.reveal-scale { opacity: 0; transform: scale(0.94); }


/* ============================================================
   RESPONSIVE — 1024px
   ============================================================ */
@media (max-width: 1024px) {
  .hero-grid          { grid-template-columns: 1fr; text-align: center; gap: 52px; padding-top: 130px; }
  .hero-body          { max-width: 100%; margin: 0 auto 12px; }
  .hero-actions       { justify-content: center; }
  .hero-social-proof  { justify-content: center; }
  .hero-visual        { order: -1; }
  .metrics-wrap       { width: 340px; height: 390px; }
}

/* ============================================================
   RESPONSIVE — 900px
   ============================================================ */
@media (max-width: 900px) {
  .compare-wrap    { grid-template-columns: 1fr; gap: 12px; }
  .compare-vs      { padding: 6px 0; font-size: 10px; }
  .reality-grid    { grid-template-columns: 1fr; gap: 12px; margin-bottom: 52px; }
  .reality-vs      { padding: 8px 0; }
  .s-feedback      { padding: 90px 0 100px; }
  .feedback-grid   { grid-template-columns: 1fr; gap: 16px; }
  .pos-grid        { grid-template-columns: 1fr; }
  .pos-divider     { display: none; }
  .pos-left        { padding-right: 0; margin-bottom: 48px; }
  .pos-right       { padding-left: 0; }
  .contact-grid    { grid-template-columns: 1fr; gap: 44px; }
}

/* ============================================================
   RESPONSIVE — 768px (tablet/mobile)
   ============================================================ */
@media (max-width: 768px) {
  .container { padding: 0 20px; }

  .nav-cta { display: none; }

  .pl-line { font-size: clamp(20px, 6vw, 36px); }

  .hero-grid    { padding-top: 120px; padding-bottom: 70px; gap: 40px; }

  /* metric cards — layout vertical no mobile para garantir visibilidade das labels */
  .metrics-wrap { width: 290px; height: 370px; }
  .metric-card  { padding: 14px 18px; min-width: 148px; }
  .mc-top       { flex-direction: column; align-items: flex-start; gap: 3px; margin-bottom: 6px; }
  .mc-icon      { font-size: 18px; line-height: 1; }
  .mc-val       { font-size: 22px; }
  .mc-badge     { font-size: 11px; }
  .mc-2         { top: 34%; }
  .mc-3         { bottom: 8px; }

  .s-compare   { padding: 50px 0 90px; }
  .compare-card { padding: 28px 22px; }

  .s-reality   { padding: 90px 0 100px; }
  .reality-card { padding: 28px 22px; }
  .rcm-val      { font-size: 20px; }

  .s-feedback  { padding: 80px 0 90px; }
  .feedback-grid { grid-template-columns: 1fr; gap: 16px; }
  .fb-card     { padding: 28px 22px; }

  .wa-float    { bottom: 18px; right: 18px; width: 52px; height: 52px; }
  .wa-float svg { width: 26px; height: 26px; }

  .s-mission   { padding: 80px 0 90px; }
  .mi-row      { grid-template-columns: 40px 44px 1fr; gap: 14px; padding: 26px 0; }
  .mi-arrow    { display: none; }
  .mi-body h3  { font-size: 20px; }
  .mi-body p   { font-size: 13px; }

  .s-position  { padding: 80px 0; }
  .s-contact   { padding: 72px 0; }

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

  .footer-brand,
  .footer-bot  { flex-direction: column; align-items: center; text-align: center; }
}

/* ============================================================
   RESPONSIVE — 480px (small mobile)
   ============================================================ */
@media (max-width: 480px) {
  .container { padding: 0 16px; }

  .pl-line { font-size: clamp(18px, 6vw, 28px); }

  .hero-grid    { padding-top: 108px; }
  .metrics-wrap { width: 250px; height: 325px; }
  .metric-card  { padding: 12px 15px; min-width: 132px; }
  .mc-val       { font-size: 20px; }
  .mc-badge     { font-size: 10px; }

  .compare-card { padding: 22px 18px; }
  .cc-list li   { font-size: 13px; }

  .reality-card { padding: 22px 18px; }
  .rcm-label    { font-size: 12px; }
  .rcm-val      { font-size: 18px; }

  .mi-row { grid-template-columns: 36px 1fr; gap: 12px; }
  .mi-icon-wrap { width: 40px; height: 40px; }
  .mi-num { display: none; }

  .mission-header h2 { font-size: 28px; }

  .pos-reject, .pos-strong { font-size: 24px; }
}

/* ============================================================
   RESPONSIVE — 375px (very small)
   ============================================================ */
@media (max-width: 375px) {
  .metrics-wrap { width: 220px; height: 290px; }
  .mc-val { font-size: 18px; }
  .mc-badge { font-size: 10px; }
  .metric-card { min-width: 118px; }
}
