/* ═══════════════════════════════════════════════════════
   RT MARKETING — DESIGN SYSTEM
   ═══════════════════════════════════════════════════════ */

/* ─── TOKENS ─── */
:root {
  --cream:       #FAF6ED;
  --cream-2:     #F2EBD9;
  --gold:        #C8A84B;
  --gold-light:  #D9BC6A;
  --gold-dark:   #A88930;
  --black:       #0E0D0B;
  --dark:        #181614;
  --dark-2:      #1E1B17;
  --dark-card:   #252118;
  --text:        #2A2520;
  --text-muted:  #6B6055;
  --border:      rgba(200,168,75,0.2);
  --white:       #ffffff;
  --font-sans:   'Inter', sans-serif;
  --font-serif:  'Playfair Display', serif;
  --radius:      16px;
  --radius-sm:   10px;
  --radius-lg:   24px;
  --shadow:      0 8px 32px rgba(0,0,0,0.10);
  --shadow-gold: 0 8px 40px rgba(200,168,75,0.25);
}

/* ─── RESET & BASE ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -webkit-text-size-adjust: 100%; }
body { 
  font-family: var(--font-sans); background: var(--cream); color: var(--text);
  line-height: 1.6; overflow-x: hidden; width: 100%; max-width: 100%;
}
img { max-width: 100%; display: block; height: auto; }
a { text-decoration: none; color: inherit; }
svg { max-width: 100%; height: auto; }

/* ─── TYPOGRAPHY ─── */
h1,h2,h3,h4 { line-height: 1.15; word-break: break-word; }
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 900; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 800; }
h3 { font-size: clamp(1.1rem, 2.2vw, 1.5rem); font-weight: 700; }
h4 { font-size: 1rem; font-weight: 700; }
em { font-family: var(--font-serif); font-style: italic; color: var(--gold); font-weight: 700; }
p { color: var(--text-muted); line-height: 1.7; word-break: break-word; overflow-wrap: break-word; }

/* ─── LAYOUT ─── */
.container { 
  max-width: 1200px; margin: 0 auto; padding: 0 40px;
  width: 100%; box-sizing: border-box;
}
section { padding: 100px 0; width: 100%; overflow: hidden; }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px; border-radius: 60px;
  font-weight: 700; font-size: 0.95rem; letter-spacing: .02em;
  cursor: pointer; border: none; transition: all .3s ease;
  white-space: nowrap;
}
.btn-lg { padding: 18px 36px; font-size: 1rem; }
.btn-full { width: 100%; justify-content: center; }
.btn-dark { background: var(--black); color: var(--white); }
.btn-dark:hover { background: var(--dark-2); transform: translateY(-2px); box-shadow: 0 12px 30px rgba(0,0,0,0.3); }
.btn-gold { background: var(--gold); color: var(--black); }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: var(--shadow-gold); }
.btn-gold-outline { border: 2px solid var(--gold); color: var(--gold); background: transparent; }
.btn-gold-outline:hover { background: var(--gold); color: var(--black); }

/* ─── SECTION TAGS ─── */
.section-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.75rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  padding: 8px 18px; border-radius: 60px; margin-bottom: 20px;
  background: var(--cream-2); color: var(--gold-dark); border: 1px solid var(--border);
}
.tag-dark { background: rgba(255,255,255,0.1); color: var(--gold); border-color: rgba(200,168,75,0.3); }
.tag-gold { background: rgba(200,168,75,0.15); color: var(--gold-light); border-color: rgba(200,168,75,0.4); }
.section-title { margin-bottom: 16px; }
.section-title.light { color: var(--white); }
.section-title.light em { color: var(--gold-light); }
.section-sub { font-size: 1.05rem; max-width: 100%; margin: 0 auto; text-align: center; }
.section-sub.light { color: rgba(255,255,255,0.6); }

/* ─── OVERFLOW PROTECTION ─── */
/* Prevent horizontal overflow on all responsive layouts */
.hero-layout,
.identify-layout,
.mechanism-layout,
.about-layout,
.cta-layout,
.footer-layout,
.pillars-grid,
.bento-grid,
.proof-layout,
.service-row {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  box-sizing: border-box;
}

/* ═══════════════════════════════════════════════════════
   PREMIUM ANIMATION SYSTEM
   ═══════════════════════════════════════════════════════ */

/* ─── Old reveal (preserved for existing sections) ─── */
.reveal, .reveal-right, .reveal-up {
  opacity: 0; transition: opacity .8s cubic-bezier(.16,1,.3,1), transform .8s cubic-bezier(.16,1,.3,1);
  transition-delay: var(--delay, 0s);
}
.reveal { transform: translateX(-48px); }
.reveal-right { transform: translateX(48px); }
.reveal-up { transform: translateY(40px); }
.revealed { opacity: 1 !important; transform: none !important; }

/* ─── Hero animations (fire on pageload) ─── */
.anim-fade-up {
  opacity: 0; transform: translateY(32px);
  animation: fadeUp .9s cubic-bezier(.16,1,.3,1) forwards;
  animation-delay: var(--ad, 0s);
}
.anim-fade-right {
  opacity: 0; transform: translateX(-48px);
  animation: fadeRight .9s cubic-bezier(.16,1,.3,1) forwards;
  animation-delay: var(--ad, 0s);
}
.anim-fade-left {
  opacity: 0; transform: translateX(48px);
  animation: fadeLeft .9s cubic-bezier(.16,1,.3,1) forwards;
  animation-delay: var(--ad, 0s);
}
.anim-card-in {
  opacity: 0; transform: translateY(40px) scale(.96);
  animation: cardIn .9s cubic-bezier(.16,1,.3,1) forwards;
  animation-delay: var(--ad, 0s);
}
@keyframes fadeUp {
  to { opacity: 1; transform: none; }
}
@keyframes fadeRight {
  to { opacity: 1; transform: none; }
}
@keyframes fadeLeft {
  to { opacity: 1; transform: none; }
}
@keyframes cardIn {
  to { opacity: 1; transform: none; }
}

/* ─── Scroll-triggered animations ─── */
.sc-fade-up {
  opacity: 0; transform: translateY(44px);
  transition: opacity .85s cubic-bezier(.16,1,.3,1), transform .85s cubic-bezier(.16,1,.3,1);
  transition-delay: var(--sd, 0s);
}
.sc-fade-left {
  opacity: 0; transform: translateX(-50px);
  transition: opacity .85s cubic-bezier(.16,1,.3,1), transform .85s cubic-bezier(.16,1,.3,1);
  transition-delay: var(--sd, 0s);
}
.sc-fade-right {
  opacity: 0; transform: translateX(50px);
  transition: opacity .85s cubic-bezier(.16,1,.3,1), transform .85s cubic-bezier(.16,1,.3,1);
  transition-delay: var(--sd, 0s);
}
.sc-scale-in {
  opacity: 0; transform: scale(.93);
  transition: opacity .9s cubic-bezier(.16,1,.3,1), transform .9s cubic-bezier(.16,1,.3,1);
  transition-delay: var(--sd, 0s);
}
.sc-visible { opacity: 1 !important; transform: none !important; }

/* ─── Word-split headline animation ─── */
.word-reveal .word {
  display: inline-block;
  overflow: hidden; vertical-align: bottom;
}
.word-reveal .word-inner {
  display: inline-block;
  transform: translateY(110%);
  transition: transform .75s cubic-bezier(.16,1,.3,1);
  transition-delay: var(--wi, 0s);
}
.word-reveal.sc-visible .word-inner { transform: none; }

/* ─── Version label ─── */
.hero-version-label {
  position: absolute; top: 90px; right: 20px;
  background: rgba(200,168,75,.9); color: var(--black);
  font-size: 0.7rem; font-weight: 800; letter-spacing: .08em;
  text-transform: uppercase; padding: 5px 14px; border-radius: 60px;
  z-index: 50; backdrop-filter: blur(10px);
}

/* ════════════════════════════════════════════
   HERO V1 FIX — Better grid proportions
════════════════════════════════════════════ */
.hero-v1 .hero-layout {
  grid-template-columns: 1.15fr 1fr;
  gap: 40px;
}
.hero-v1 .hero-headline {
  font-size: clamp(1.7rem, 3.6vw, 2.7rem);
}
.hero-v1 .hero-person-wrap {
  width: 380px; height: 460px;
}
.hero-v1 .hero-person-img {
  height: 450px;
}

/* ════════════════════════════════════════════
   HERO V2 — ANIMATED GRADIENT ORBS (CENTERED)
════════════════════════════════════════════ */
.hero-v2 {
  background: #08070a;
  overflow: hidden;
}

/* Orbs */
.orb {
  position: absolute; border-radius: 50%;
  filter: blur(90px); pointer-events: none; will-change: transform;
}
.orb-1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(200,168,75,0.35) 0%, transparent 70%);
  top: -200px; right: -200px;
  animation: orbFloat1 12s ease-in-out infinite;
}
.orb-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(80,40,120,0.3) 0%, transparent 70%);
  bottom: -150px; left: -100px;
  animation: orbFloat2 15s ease-in-out infinite;
}
.orb-3 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(200,168,75,0.12) 0%, transparent 70%);
  top: 50%; left: 40%; transform: translate(-50%,-50%);
  animation: orbFloat3 18s ease-in-out infinite;
}
@keyframes orbFloat1 {
  0%,100% { transform: translate(0,0) scale(1); }
  33% { transform: translate(-80px,-60px) scale(1.1); }
  66% { transform: translate(40px,80px) scale(0.95); }
}
@keyframes orbFloat2 {
  0%,100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(120px,-100px) scale(1.15); }
}
@keyframes orbFloat3 {
  0%,100% { transform: translate(-50%,-50%) scale(1); }
  50% { transform: translate(-50%,-50%) scale(1.3); }
}

/* Noise texture overlay */
.hero-noise {
  position: absolute; inset: 0; opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-v2-inner {
  position: relative; z-index:5;
  display: flex; flex-direction: column; align-items: center; text-align: center;
  padding-top: 140px; padding-bottom: 100px;
}
.hero-v2-badge { margin-bottom: 28px; }
.hero-v2-headline {
  font-size: clamp(2.2rem, 5vw, 4rem); font-weight: 900;
  color: var(--white); line-height: 1.1;
  margin-bottom: 24px; max-width: 820px;
}
.hero-v2-em {
  font-family: var(--font-serif); font-style: italic;
  color: var(--gold);
}
.hero-v2-number {
  font-family: var(--font-serif);
  color: var(--gold); font-weight: 900;
  font-size: 1.15em;
}
.hero-v2-number .pct { font-size: 0.7em; vertical-align: super; }
.hero-v2-sub {
  max-width: 560px; font-size: 1.1rem; color: rgba(255,255,255,0.55);
  margin-bottom: 36px;
}
.hero-v2-cta { margin-bottom: 80px; }

/* Floating pills */
.v2-pill {
  position: absolute; display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(16px); border-radius: 60px;
  padding: 10px 18px; font-size: 0.82rem; font-weight: 600; color: rgba(255,255,255,0.8);
  white-space: nowrap; z-index: 6;
}
.v2-pill--1 { top: 200px; left: 5%; animation: float1 5s ease-in-out infinite; }
.v2-pill--2 { top: 240px; right: 4%; animation: float2 6s ease-in-out infinite .5s; }
.v2-pill--3 { bottom: 200px; left: 8%; animation: float1 7s ease-in-out infinite 1s; }

/* Proof bar at bottom */
.hero-v2-proof {
  display: flex; gap: 40px; align-items: center; flex-wrap: wrap; justify-content: center;
  padding: 24px 40px; border-top: 1px solid rgba(255,255,255,0.1);
  position: relative; z-index: 5; width: 100%;
}
.v2-proof-item { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.v2-proof-item strong { font-size: 1.6rem; font-weight: 900; color: var(--white); }
.v2-proof-item span { font-size: 0.75rem; color: rgba(255,255,255,0.45); }
.v2-proof-sep { width: 1px; height: 40px; background: rgba(255,255,255,0.1); }

/* ════════════════════════════════════════════
   HERO V3 — FLOATING MOCK CARDS
════════════════════════════════════════════ */
.hero-v3 {
  background: var(--dark);
  min-height: 100vh;
}
.hero-v3-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
  padding-top: 120px; padding-bottom: 80px;
}
.hero-v3-text { position: relative; z-index: 2; }
.hero-v3-headline {
  font-size: clamp(1.8rem, 3.5vw, 3rem); color: var(--white);
  font-weight: 900; margin: 20px 0;
}
.hero-v3-headline em { font-family: var(--font-serif); font-style: italic; color: var(--gold); }
.hero-v3-sub {
  color: rgba(255,255,255,0.55); font-size: 1rem;
  margin-bottom: 32px; max-width: 480px;
}
.hero-v3-ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 28px; }
.v3-proof-row {
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
  font-size: 0.78rem; font-weight: 600;
  color: rgba(255,255,255,0.35);
}
.v3-proof-dot { color: rgba(200,168,75,0.5); }

/* Cards stack */
.hero-v3-cards {
  position: relative; height: 560px;
}
.mock-card {
  position: absolute; background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius); backdrop-filter: blur(20px);
  padding: 18px; transition: transform .4s ease, box-shadow .4s;
}
.mock-card:hover { transform: translateY(-6px) scale(1.02) !important; box-shadow: 0 24px 60px rgba(0,0,0,0.4); }

/* WhatsApp chat card */
.mock-chat {
  width: 260px; top: 0px; left: 0px;
  transform: rotate(-2deg);
  animation: mockFloat1 6s ease-in-out infinite;
}
@keyframes mockFloat1 {
  0%,100% { transform: rotate(-2deg) translateY(0); }
  50% { transform: rotate(-2deg) translateY(-10px); }
}
.mock-header { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; padding-bottom: 10px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.mock-avatar { width: 30px; height: 30px; background: rgba(37,211,102,0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.mock-header strong { font-size: 0.82rem; font-weight: 700; color: var(--white); display: block; line-height: 1.2; }
.mock-online { font-size: 0.68rem; color: #25D366; }
.mock-msg {
  font-size: 0.75rem; padding: 8px 12px; border-radius: 10px;
  margin-bottom: 6px; max-width: 85%; line-height: 1.4;
}
.mock-recv { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.75); align-self: flex-start; border-bottom-left-radius: 3px; }
.mock-sent { background: rgba(37,211,102,0.15); color: rgba(255,255,255,0.75); margin-left: auto; border-bottom-right-radius: 3px; }
.mock-typing { display: flex; gap: 4px; align-items: center; padding: 8px 12px; margin-top: 4px; }
.mock-typing span { width: 6px; height: 6px; background: rgba(255,255,255,0.3); border-radius: 50%; animation: typingDot 1.4s ease-in-out infinite; }
.mock-typing span:nth-child(2) { animation-delay: .2s; }
.mock-typing span:nth-child(3) { animation-delay: .4s; }
@keyframes typingDot {
  0%,60%,100% { transform: translateY(0); opacity:.3; }
  30% { transform: translateY(-5px); opacity:1; }
}

/* Metric chart card */
.mock-metric {
  width: 200px; bottom: 50px; left: -10px;
  transform: rotate(2deg);
  animation: mockFloat2 7s ease-in-out infinite 1s;
}
@keyframes mockFloat2 {
  0%,100% { transform: rotate(2deg) translateY(0); }
  50% { transform: rotate(2deg) translateY(-12px); }
}
.mock-metric-label { font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: rgba(255,255,255,0.4); margin-bottom: 4px; }
.mock-metric-num { font-size: 2rem; font-weight: 900; color: var(--gold); line-height: 1; margin-bottom: 14px; }
.mock-bars { display: flex; align-items: flex-end; gap: 4px; height: 50px; margin-bottom: 8px; }
.mock-bars span { flex: 1; background: rgba(255,255,255,0.15); border-radius: 3px 3px 0 0; transition: height .3s; }
.mock-bars .bar-gold { background: var(--gold); }
.mock-metric-caption { font-size: 0.68rem; color: rgba(255,255,255,0.4); }
.mock-up { color: #25D366; font-weight: 700; }

/* Leads pipeline card */
.mock-leads-card {
  width: 220px; bottom: 15px; right: 25px;
  transform: rotate(1.5deg);
  animation: mockFloat1 8s ease-in-out infinite 0.5s;
}
.mock-leads-header { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: rgba(255,255,255,0.5); margin-bottom: 12px; border-bottom: 1px solid rgba(255,255,255,0.07); padding-bottom: 8px; }
.mock-lead-row { display: flex; align-items: center; gap: 8px; margin-bottom: 8px; font-size: 0.8rem; color: rgba(255,255,255,0.7); }
.mock-lead-row strong { margin-left: auto; font-weight: 800; color: var(--white); }
.lead-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.ld-green { background: #25D366; }
.ld-gold { background: var(--gold); }
.ld-blue { background: #60a5fa; }
.mock-conversion-rate { font-size: 0.72rem; color: rgba(255,255,255,0.4); margin-top: 10px; padding-top: 8px; border-top: 1px solid rgba(255,255,255,0.07); }
.mock-conversion-rate b { color: var(--gold); }

/* ROI badge */
.mock-roi {
  width: 130px; top: 150px; right: 40px;
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 6px;
  padding: 20px 16px;
  transform: rotate(-2deg);
  animation: mockFloat2 5s ease-in-out infinite 2s;
}
.mock-roi-label { font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .07em; color: rgba(255,255,255,0.4); }
.mock-roi-num { font-size: 2.2rem; font-weight: 900; color: var(--white); line-height: 1; }

/* ════════════════════════════════════════════
   HERO V4 — EDITORIAL BOLD
════════════════════════════════════════════ */
.hero-v4 {
  background: #0B0A08;
  min-height: 100vh; overflow: hidden;
}

/* Background decorative huge number */
.v4-deco-num {
  position: absolute; right: -40px; top: 50%;
  transform: translateY(-50%);
  font-size: clamp(180px, 25vw, 340px);
  font-weight: 900; font-family: var(--font-serif);
  color: rgba(200,168,75,0.04); line-height: 1;
  user-select: none; pointer-events: none;
  letter-spacing: -0.05em;
}
.v4-accent-line {
  position: absolute; top: 0; left: 80px;
  width: 3px; height: 100%;
  background: linear-gradient(to bottom, transparent 0%, var(--gold) 30%, var(--gold) 70%, transparent 100%);
  opacity: 0.4;
}

.hero-v4-inner {
  position: relative; z-index: 5;
  padding-top: 100px; padding-bottom: 0;
}

/* Top metadata strip */
.v4-top-strip {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 0 24px; border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 40px;
}
.v4-strip-left, .v4-strip-right {
  display: flex; align-items: center; gap: 12px;
  font-size: 0.78rem; font-weight: 600; color: rgba(255,255,255,0.4);
  text-transform: uppercase; letter-spacing: .08em;
}
.v4-location { color: var(--gold); }
.v4-strip-sep { color: rgba(200,168,75,0.4); }

/* Main layout: side-label | headline | stats */
.v4-layout {
  display: grid; grid-template-columns: 60px 1fr 180px;
  gap: 40px; align-items: center; min-height: 70vh;
}

/* Rotated side label */
.v4-side-label {
  display: flex; align-items: center; justify-content: center;
}
.v4-side-label span {
  writing-mode: vertical-lr; transform: rotate(180deg);
  font-size: 0.65rem; font-weight: 700; letter-spacing: .2em;
  text-transform: uppercase; color: rgba(255,255,255,0.25);
}

/* Center: headline */
.v4-main { padding: 0 20px; }
.v4-eyebrow {
  font-size: 0.72rem; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 20px;
}
.v4-headline {
  display: flex; flex-direction: column;
  gap: 0; margin-bottom: 28px;
  font-size: clamp(2.8rem, 6vw, 5.2rem); font-weight: 900;
  line-height: 1; letter-spacing: -0.03em;
  color: var(--white);
}
.v4-line { display: block; }
.v4-line--1 { font-size: 0.5em; color: rgba(255,255,255,0.5); letter-spacing: normal; }
.v4-line--2 { font-size: 0.55em; color: rgba(255,255,255,0.6); }
.v4-line--3 { font-family: var(--font-serif); font-style: italic; color: var(--gold-light); }
.v4-line--4 { font-family: var(--font-serif); font-style: italic; color: var(--gold); }
.v4-line--5 { font-size: 0.8em; }
.v4-line--6 { font-size: 0.55em; color: rgba(255,255,255,0.6); }
.v4-gold-big { color: var(--gold); }
.v4-sub { color: rgba(255,255,255,0.45); font-size: 0.92rem; max-width: 400px; margin-bottom: 28px; }
.v4-cta {}

/* Right: Stats column */
.v4-stats {
  display: flex; flex-direction: column; gap: 0;
  border-left: 1px solid rgba(255,255,255,0.08); padding-left: 32px;
}
.v4-stat { padding: 20px 0; }
.v4-stat-divider { width: 40px; height: 1px; background: rgba(200,168,75,0.2); }
.v4-stat-num {
  font-size: 1.8rem; font-weight: 900; color: var(--white); line-height: 1;
  display: block; margin-bottom: 6px;
}
.v4-stat-num small { font-size: 0.55em; color: var(--gold); font-weight: 700; }
.v4-stat-label { font-size: 0.72rem; color: rgba(255,255,255,0.35); line-height: 1.5; }

/* Bottom bar */
.v4-bottom-bar {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 0; border-top: 1px solid rgba(255,255,255,0.08); margin-top: 20px;
  position: relative; z-index: 5;
}
.v4-bottom-bar p { font-size: 0.8rem; color: rgba(255,255,255,0.25); letter-spacing: .03em; }
.v4-scroll-btn {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.82rem; font-weight: 700; color: var(--gold);
  transition: gap .3s;
}
.v4-scroll-btn:hover { gap: 14px; }

/* ─── Responsive: new heroes ─── */
@media (max-width: 1024px) {
  .hero-v1 .hero-layout { grid-template-columns: 1fr; }
  .hero-v3-inner { grid-template-columns: 1fr; }
  .hero-v3-cards { display: none; }
  .hero-v2-inner { padding: 100px 20px 60px; }
  .v2-pill { display: none; }
  .v4-layout { grid-template-columns: 0 1fr; gap: 20px; }
  .v4-side-label { display: none; }
  .v4-stats { display: none; }
  .v4-headline { font-size: clamp(2.4rem, 8vw, 3.8rem); }
}


/* ════════════════════════════════════════════
   NAVBAR
════════════════════════════════════════════ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 16px 0; transition: all .4s ease;
  background: transparent;
}
.navbar.scrolled {
  background: rgba(250,246,237,0.92);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
  padding: 10px 0;
}
.nav-inner { display: flex; align-items: center; gap: 40px; }
.nav-logo { display: flex; align-items: center; justify-content: flex-start; transition: opacity .3s; }
.nav-logo:hover { opacity: 0.8; }
.navbar.scrolled .brand-logo { filter: brightness(0); }
.brand-logo { height: 32px; width: auto; object-fit: contain; transition: filter .3s ease; }
.brand-logo--sm { height: 24px; }
.nav-links { display: flex; gap: 32px; margin-left: auto; }
.nav-links a { font-size: 0.9rem; font-weight: 500; color: rgba(255,255,255,0.8); transition: color .3s; }
.nav-links a:hover { color: var(--gold); }
.navbar.scrolled .nav-links a { color: var(--text-muted); }
.navbar.scrolled .nav-links a:hover { color: var(--gold); }
.navbar.scrolled .btn-dark { background: var(--black); }
.navbar .btn-dark { color: var(--white); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 6px; margin-left: auto; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: all .3s; }
.navbar.scrolled .hamburger span { background: var(--black); }
.mobile-menu { display: none; flex-direction: column; gap: 8px; padding: 20px 40px; background: var(--cream); border-top: 1px solid var(--border); max-height: calc(100vh - 60px); overflow-y: auto; }
.mobile-menu.open { display: flex; }
.mobile-menu a { padding: 12px 0; font-weight: 600; border-bottom: 1px solid var(--cream-2); color: var(--text); }

/* ════════════════════════════════════════════
   HERO
════════════════════════════════════════════ */
.hero {
  min-height: 100vh; background: var(--dark);
  padding: 0; position: relative; overflow: hidden;
  display: flex; align-items: center;
}

/* Grid background pattern */
.hero-grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(200,168,75,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200,168,75,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-grid-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 70% at 55% 50%, rgba(200,168,75,0.08) 0%, transparent 70%);
}

.hero-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
  padding-top: 100px; padding-bottom: 80px; width: 100%;
}

/* LEFT */
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.75rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--gold); background: rgba(200,168,75,0.1);
  border: 1px solid rgba(200,168,75,0.3); border-radius: 60px;
  padding: 8px 18px; margin-bottom: 24px;
}
.badge-dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--gold);
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%,100% { opacity:1; transform:scale(1); }
  50% { opacity:0.5; transform:scale(1.4); }
}
.hero-headline { color: var(--white); margin-bottom: 20px; }
.hero-highlight {
  color: var(--gold); text-decoration: underline; text-decoration-color: var(--gold);
  text-underline-offset: 6px;
}
.hero-sub { color: rgba(255,255,255,0.6); max-width: 480px; font-size: 1.05rem; margin-bottom: 36px; }
.hero-cta { margin-bottom: 48px; }

/* Proof strip */
.hero-proof {
  display: flex; gap: 32px; align-items: center;
  padding: 24px 28px; background: rgba(255,255,255,0.05);
  border: 1px solid rgba(200,168,75,0.2); border-radius: var(--radius);
  backdrop-filter: blur(10px);
}
.proof-item { display: block; text-align: left; }
.proof-num { font-size: 2.4rem; font-weight: 900; color: var(--white); line-height: 1; margin-right: 4px; }
.proof-unit { color: var(--gold); font-weight: 800; font-size: 1.4rem; }
.proof-item p { font-size: 0.85rem; color: rgba(255,255,255,0.6); margin: 6px 0 0 0; line-height: 1.4; }
.proof-divider { width: 1px; height: 52px; background: rgba(200,168,75,0.2); flex-shrink: 0; margin: 0 16px; }

/* RIGHT: Visual */
.hero-visual { position: relative; display: flex; align-items: center; justify-content: center; }
.hero-person-wrap { position: relative; width: 440px; height: 520px; }
.hero-circle-bg {
  position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 380px; height: 380px; border-radius: 50%;
  background: radial-gradient(circle, rgba(200,168,75,0.15) 0%, transparent 70%);
  border: 1px solid rgba(200,168,75,0.2);
}
.hero-person-img {
  position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  height: 510px; width: auto; object-fit: contain; object-position: bottom;
  filter: drop-shadow(0 20px 60px rgba(0,0,0,0.5));
}

/* Floating badges */
.float-badge {
  position: absolute; display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(200,168,75,0.3);
  border-radius: 60px; padding: 10px 16px; backdrop-filter: blur(10px);
  font-size: 0.8rem; font-weight: 600; color: var(--white); white-space: nowrap;
}
.float-badge--tl { top: 60px; left: -20px; animation: float1 4s ease-in-out infinite; }
.float-badge--tr { top: 20px; right: -40px; animation: float2 5s ease-in-out infinite; }
.float-badge--br { bottom: 100px; right: -60px; animation: float1 4.5s ease-in-out infinite .5s; }
.float-badge--bl { bottom: 60px; left: -40px; animation: float2 3.5s ease-in-out infinite .3s; }

@keyframes float1 {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes float2 {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* Floating icons */
.hero-float-icon {
  position: absolute; padding: 12px; border-radius: 14px;
  background: rgba(200,168,75,0.12); border: 1px solid rgba(200,168,75,0.25);
  color: var(--gold); backdrop-filter: blur(8px);
}
.hero-float-icon--1 { top: 30%; right: -80px; animation: float1 6s ease-in-out infinite; }
.hero-float-icon--2 { bottom: 30%; left: -70px; animation: float2 5s ease-in-out infinite; }

/* Scroll indicator */
.scroll-indicator {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  width: 24px; height: 40px; border: 2px solid rgba(200,168,75,0.4);
  border-radius: 12px; display: flex; justify-content: center; padding-top: 8px;
}
.scroll-dot {
  width: 4px; height: 8px; background: var(--gold); border-radius: 4px;
  animation: scroll-anim 2s ease-in-out infinite;
}
@keyframes scroll-anim {
  0%,100% { transform: translateY(0); opacity:1; }
  70% { transform: translateY(12px); opacity:.3; }
}

/* ════════════════════════════════════════════
   IDENTIFICAÇÃO
════════════════════════════════════════════ */
.section-identify { background: var(--cream); }
.identify-layout {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: center;
}
.identify-pains { display: flex; flex-direction: column; gap: 0; }
.pain-item {
  display: flex; align-items: flex-start; gap: 32px;
  padding: 32px 0; border-bottom: 1px solid rgba(0,0,0,0.06);
  position: relative; transition: all .3s;
}
.pain-item:last-child { border-bottom: none; }
.pain-item:hover { transform: translateX(8px); }
.pain-num {
  font-size: 3.5rem; font-weight: 900; color: var(--gold);
  font-family: var(--font-serif); line-height: 0.8; flex-shrink: 0;
  opacity: 0.8; transition: all .3s; min-width: 60px;
}
.pain-item:hover .pain-num { opacity: 1; color: var(--gold-dark); }
.pain-content {
  display: flex; gap: 24px; align-items: flex-start;
}
.pain-icon-3d {
  width: 64px; height: 64px; flex-shrink: 0; object-fit: contain;
  transition: transform .4s cubic-bezier(.16,1,.3,1);
  mix-blend-mode: multiply;
}
.pain-item:hover .pain-icon-3d { transform: scale(1.15) rotate(5deg); }
.pain-content h4 { font-size: 1.15rem; margin-bottom: 6px; color: var(--black); line-height: 1.3; }
.pain-content p { font-size: 0.95rem; color: rgba(0,0,0,0.65); line-height: 1.5; margin-bottom: 0; }


/* ════════════════════════════════════════════
   PROBLEM (DARK)
════════════════════════════════════════════ */
.section-problem {
  background: var(--dark); padding: 100px 0;
}
.problem-top { text-align: center; margin-bottom: 64px; }
.problem-overline {
  text-transform: uppercase; letter-spacing: .1em; font-size: 0.75rem;
  color: var(--gold); font-weight: 700; margin-bottom: 16px;
}
.problem-headline {
  font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 900;
  color: var(--white); line-height: 1.2;
}
.problem-headline-em {
  font-family: var(--font-serif); font-style: italic; color: var(--gold);
}

/* Pipeline visual */
.pipeline-flow {
  display: flex; align-items: center; justify-content: center;
  gap: 0; margin-bottom: 64px; flex-wrap: nowrap;
}
.pipeline-step {
  flex: 1; max-width: 280px; padding: 36px 28px; border-radius: var(--radius);
  text-align: center; position: relative; transition: transform .3s;
}
.pipeline-step:hover { transform: translateY(-4px); }
.pipeline-step--neutral {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
}
.pipeline-step--danger {
  background: rgba(220,60,60,0.12); border: 1px solid rgba(220,60,60,0.3);
}
.pipeline-step--loss {
  background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.07);
  opacity: 0.6;
}
.pipeline-step h4 { color: var(--white); margin: 16px 0 8px; font-size: 1.05rem; }
.pipeline-step p { font-size: 0.85rem; color: rgba(255,255,255,0.5); }
.pipeline-icon {
  width: 64px; height: 64px; border-radius: 50%; margin: 0 auto;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.7);
}
.pipeline-icon--danger {
  background: rgba(220,60,60,0.2); border-color: rgba(220,60,60,0.4); color: #f87171;
}
.pipeline-icon--loss {
  background: rgba(255,255,255,0.04); color: rgba(255,255,255,0.4);
}
.pipeline-danger-badge {
  display: inline-block; margin-top: 14px;
  background: #dc3c3c; color: white; font-size: 0.7rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase; padding: 4px 12px; border-radius: 60px;
}
.pipeline-arrow {
  flex-shrink: 0; padding: 0 8px; color: rgba(255,255,255,0.2);
}

.problem-cta { text-align: center; }
.problem-cta-text {
  color: rgba(255,255,255,0.65); font-size: 1.05rem; max-width: 520px;
  margin: 0 auto 28px; line-height: 1.7;
}
.problem-cta-text strong { color: var(--white); }

/* ════════════════════════════════════════════
   MECHANISM (SPLIT)
════════════════════════════════════════════ */
.section-mechanism {
  background: var(--cream); padding: 100px 0;
}
.mechanism-header { margin-bottom: 64px; }
.mechanism-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: flex-start;
}

/* Image side */
.mechanism-image { position: sticky; top: 120px; }
.mechanism-img-wrap { position: relative; }
.mechanism-img-wrap img {
  width: 100%; border-radius: var(--radius-lg);
  box-shadow: 0 24px 80px rgba(0,0,0,0.2);
}
.mechanism-badge {
  position: absolute; display: flex; align-items: center; gap: 10px;
  background: var(--white); border-radius: var(--radius);
  padding: 12px 16px; box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}
.mechanism-badge strong { font-size: 1.1rem; font-weight: 800; color: var(--black); display: block; line-height: 1; }
.mechanism-badge span { font-size: 0.75rem; color: var(--text-muted); }
.mechanism-badge--1 { top: -20px; right: -20px; }
.mechanism-badge--2 { bottom: -20px; left: -20px; }

/* Steps side */
.mechanism-steps { display: flex; flex-direction: column; gap: 0; }
.mstep {
  display: flex; gap: 24px; padding: 28px 0;
  border-bottom: 1px solid var(--cream-2); position: relative;
}
.mstep:last-child { border-bottom: none; }
.mstep-num {
  font-size: 3.5rem; font-weight: 900; color: var(--gold);
  font-family: var(--font-serif); line-height: 0.8; flex-shrink: 0;
  opacity: 0.8; transition: all .3s; min-width: 60px;
  margin-top: 4px;
}
.mstep:hover .mstep-num { opacity: 1; color: var(--gold-dark); }
.mstep-body { flex: 1; }
.mstep-icon {
  width: 44px; height: 44px; background: var(--cream-2); border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); margin-bottom: 12px;
}
.mstep-body h3 { font-size: 1.1rem; margin-bottom: 8px; }
.mstep-body p { font-size: 0.9rem; }
.mstep-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.mstep-tags span {
  font-size: 0.75rem; font-weight: 600; color: var(--gold);
  background: rgba(200,168,75,0.1); border: 1px solid rgba(200,168,75,0.25);
  border-radius: 60px; padding: 4px 12px;
}
.mstep-callout {
  margin-top: 12px; font-size: 0.92rem; color: var(--text);
  background: var(--cream-2); padding: 10px 14px; border-radius: var(--radius-sm);
  border-left: 3px solid var(--gold);
}
.mstep-callout strong { color: var(--black); }

/* ════════════════════════════════════════════
   PILLARS (DARK STAGGERED)
════════════════════════════════════════════ */
.section-pillars {
  background: var(--dark); padding: 100px 0;
}
.pillars-header { text-align: center; margin-bottom: 64px; }
.pillars-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; align-items: start;
}

.pillar-card {
  background: var(--dark-2); border: 1px solid rgba(200,168,75,0.15);
  border-radius: var(--radius-lg); padding: 40px 36px;
  transition: transform .4s ease, box-shadow .4s ease, border-color .4s;
  cursor: default;
}
.pillar-card:hover {
  transform: translateY(-8px);
  border-color: rgba(200,168,75,0.4);
  box-shadow: 0 24px 60px rgba(200,168,75,0.1);
}
/* Staggered heights */
.pillar-card--1 { margin-top: 40px; }
.pillar-card--2 { margin-top: 0; }
.pillar-card--3 { margin-top: 40px; }

.pillar-card-icon {
  width: 64px; height: 64px; border-radius: var(--radius);
  background: rgba(200,168,75,0.12); border: 1px solid rgba(200,168,75,0.25);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); margin-bottom: 8px;
}
.pillar-num {
  font-size: 0.75rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: rgba(200,168,75,0.5); margin-bottom: 16px;
}
.pillar-card h3 { color: var(--white); font-size: 1.2rem; margin-bottom: 16px; }
.pillar-card p { color: rgba(255,255,255,0.55); font-size: 0.9rem; line-height: 1.7; }
.pillar-divider { border: none; border-top: 1px solid rgba(200,168,75,0.15); margin: 20px 0; }
.pillar-includes { font-size: 0.82rem; color: rgba(200,168,75,0.7) !important; font-style: italic; }
.pillar-callout { color: var(--gold-light) !important; font-weight: 600; font-size: 0.95rem; }
.pillar-callout strong { color: var(--white); }

/* Platform tags */
.pillar-platforms { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.platform-tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.75rem; font-weight: 600; color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 60px; padding: 5px 12px;
}

/* ════════════════════════════════════════════
   BENEFITS (BENTO GRID - LIGHT)
════════════════════════════════════════════ */
.section-benefits {
  background: var(--cream); padding: 120px 0;
}
.benefits-layout-new {
  display: flex; flex-direction: column; gap: 64px;
}
.benefits-header {
  text-align: center; max-width: 680px; margin: 0 auto;
}
.benefits-header .section-title { margin-bottom: 16px; color: var(--black); }
.benefits-header .section-title em { color: var(--gold-dark); }
.benefits-header .section-sub { color: rgba(0,0,0,0.65); margin: 0 auto; }

.bento-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto; gap: 24px;
}
.bento-card {
  background: var(--white); border-radius: 24px;
  padding: 40px;
  border: 1px solid rgba(0,0,0,0.04);
  box-shadow: 0 16px 40px rgba(0,0,0,0.02);
  display: flex; flex-direction: column;
  position: relative; overflow: hidden;
  transition: transform .4s cubic-bezier(.16,1,.3,1), box-shadow .4s;
}
.bento-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.06);
}
.bento-wide { grid-column: 1 / -1; flex-direction: row; align-items: center; justify-content: space-between; gap: 60px; }
.bento-content { max-width: 440px; }

.bento-icon {
  width: 52px; height: 52px; background: rgba(200,168,75,0.15);
  color: var(--gold-dark); border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
}
.bento-card h3 { font-size: 1.35rem; color: var(--black); margin-bottom: 12px; line-height: 1.2; }
.bento-card p { font-size: 0.92rem; color: rgba(0,0,0,0.6); margin-bottom: 0; line-height: 1.5; }

.bento-link {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 24px;
  font-size: 0.85rem; font-weight: 700; color: var(--gold-dark);
  text-transform: uppercase; letter-spacing: .05em; transition: gap .3s;
}
.bento-link:hover { gap: 12px; }

/* Visual block for Wide Card */
.bento-visual-area {
  flex: 1; height: 260px; background: var(--cream-2);
  border-radius: 16px; display: flex; align-items: flex-end; justify-content: center;
  padding: 24px; position: relative; border: 1px solid rgba(0,0,0,0.03);
}
.bento-bars { display: flex; gap: 12px; align-items: flex-end; width: 100%; height: 100%; justify-content: center; }
.bento-bars span { width: 40px; border-radius: 6px 6px 0 0; background: rgba(0,0,0,0.05); }
.bento-bars .bar-gold { background: var(--gold); }

/* Visual block for Chat Card */
.bento-visual-chat {
  margin-top: 32px; background: var(--cream-2); border-radius: 16px;
  padding: 24px; display: flex; flex-direction: column; gap: 12px;
  border: 1px solid rgba(0,0,0,0.03); flex: 1; justify-content: center;
}
.bento-bubble {
  padding: 10px 16px; border-radius: 16px; font-size: 0.82rem; font-weight: 600;
  max-width: 85%;
}
.bento-bubble-in { background: var(--white); color: rgba(0,0,0,0.7); align-self: flex-start; border-bottom-left-radius: 4px; box-shadow: 0 4px 12px rgba(0,0,0,0.03); }
.bento-bubble-out { background: rgba(200,168,75,0.15); color: var(--gold-dark); align-self: flex-end; border-bottom-right-radius: 4px; }

/* Visual block for Metrics Card */
.bento-visual-metrics {
  margin-top: 32px; background: var(--cream-2); border-radius: 16px;
  padding: 24px; display: flex; flex-direction: column; justify-content: center; gap: 16px;
  border: 1px solid rgba(0,0,0,0.03); flex: 1;
}
.b-metric { display: flex; align-items: center; justify-content: space-between; }
.b-metric span { font-size: 0.82rem; font-weight: 600; color: rgba(0,0,0,0.5); text-transform: uppercase; letter-spacing: .05em; }
.b-metric strong { font-size: 1.4rem; font-weight: 900; color: var(--black); }
.b-divider { height: 1px; background: rgba(0,0,0,0.06); width: 100%; }

@media (max-width: 900px) {
  .bento-grid { grid-template-columns: 1fr; }
  .bento-wide { flex-direction: column; text-align: left; gap: 32px; }
  .bento-content { max-width: 100%; }
  .bento-visual-area { width: 100%; height: 200px; }
  .bento-bars span { width: 30px; }
}

/* ════════════════════════════════════════════
   SERVICES (ALTERNATING ROWS - DARK)
════════════════════════════════════════════ */
.section-services { background: var(--dark); color: var(--white); }
.services-header { text-align: center; margin-bottom: 64px; max-width: 740px; margin-left: auto; margin-right: auto; }
.services-header .section-tag { background: rgba(255,255,255,0.05); color: var(--gold-light); border-color: rgba(255,255,255,0.1); }
.services-header .section-title { margin-bottom: 16px; color: var(--white); }
.services-header .section-title em { color: var(--gold-light); }
.services-header p { color: rgba(255,255,255,0.6); }

.services-list { display: flex; flex-direction: column; gap: 0; }
.service-row {
  display: grid; grid-template-columns: 80px 1fr auto;
  gap: 32px; align-items: center; padding: 32px 36px;
  border-radius: var(--radius); transition: all .3s;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: background .3s, transform .3s;
}
.service-row:last-child { border-bottom: none; }
.service-row:hover { background: rgba(255,255,255,0.03); transform: translateX(8px); }
.service-row-icon {
  width: 68px; height: 68px; background: rgba(255,255,255,0.05);
  border-radius: var(--radius); display: flex; align-items: center;
  justify-content: center; color: var(--gold); flex-shrink: 0;
  transition: background .3s;
}
.service-row:hover .service-row-icon { background: rgba(200,168,75,0.15); }
.service-row-body { flex: 1; }
.service-num {
  font-size: 0.7rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--gold); display: block; margin-bottom: 6px;
}
.service-row-body h3 { font-size: 1.1rem; margin-bottom: 6px; color: var(--white); }
.service-row-body p { font-size: 0.88rem; color: rgba(255,255,255,0.5); }
.service-row-tag {
  font-size: 0.72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255,255,255,0.3); background: rgba(255,255,255,0.05);
  border-radius: 60px; padding: 6px 14px; flex-shrink: 0;
  transition: all .3s; border: 1px solid rgba(255,255,255,0.05);
}
.service-row:hover .service-row-tag { background: rgba(200,168,75,0.1); color: var(--white); border-color: rgba(200,168,75,0.3); }

/* ════════════════════════════════════════════
   COMPARISON TABLE (LIGHT)
════════════════════════════════════════════ */
.section-compare { background: var(--cream); }
.compare-header { text-align: center; margin-bottom: 56px; }

.compare-table {
  background: var(--white); border-radius: var(--radius-lg);
  border: 1px solid rgba(0,0,0,0.06); overflow: hidden;
  box-shadow: 0 12px 32px rgba(0,0,0,0.02);
}
.compare-row {
  display: grid; grid-template-columns: 180px 1fr 1.2fr;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.compare-row:last-child { border-bottom: none; }
.compare-row--header .compare-col { padding: 20px 28px; }
.compare-col { padding: 18px 28px; font-size: 0.9rem; display: flex; align-items: center; gap: 10px; color: var(--black); }
.compare-col--label { font-weight: 700; color: rgba(0,0,0,0.5); font-size: 0.85rem; border-right: 1px solid rgba(0,0,0,0.05); }
.compare-col--bad { color: rgba(0,0,0,0.4); text-decoration: line-through; text-decoration-color: rgba(0,0,0,0.2); border-right: 1px solid rgba(0,0,0,0.05); }
.compare-col--good { color: var(--black); font-weight: 600; background: rgba(200,168,75,0.05); }
.compare-row--header .compare-col--bad { font-weight: 700; font-size: 0.85rem; text-transform: uppercase; letter-spacing: .08em; color: rgba(0,0,0,0.4); text-decoration: none; }
.compare-good-label { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 0.95rem; color: var(--gold-dark); text-transform: uppercase; letter-spacing: .06em; }
.compare-row--header .compare-col--good { border-top: 3px solid var(--gold); }

.compare-note {
  text-align: center; margin-top: 40px;
  padding: 24px; background: rgba(200,168,75,0.1);
  border: 1px solid rgba(200,168,75,0.25); border-radius: var(--radius);
}
.compare-note p { color: rgba(0,0,0,0.6); font-size: 1rem; }
.compare-note strong { color: var(--gold-dark); }

/* ════════════════════════════════════════════
   PROOF SOCIAL (DARK + STAGGERED STATS)
════════════════════════════════════════════ */
.section-proof { background: var(--black); }
.proof-layout {
  display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 60px; margin-bottom: 80px; align-items: center;
}
.proof-story-text { font-size: 1.1rem; color: rgba(255,255,255,0.7); margin-bottom: 20px; }
.proof-story-detail { margin-bottom: 24px; }
.proof-story-detail p { color: rgba(255,255,255,0.55); margin-bottom: 8px; font-size: 0.92rem; }
.proof-story-detail strong { color: var(--white); }
.proof-tags { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 32px; }
.proof-tags span {
  font-size: 0.82rem; font-weight: 600;
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 60px; padding: 6px 16px; color: rgba(255,255,255,0.7);
}
.proof-quote {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(200,168,75,0.3);
  border-radius: var(--radius); padding: 28px; border-left: 4px solid var(--gold);
}
.proof-quote p { color: #ffffff !important; font-size: 1.05rem; font-style: italic; margin-top: 12px; }

/* Staggered stat cards — SEOX style */
.proof-stats {
  display: flex; gap: 16px; align-items: flex-end;
}
.stat-card {
  flex: 1; border-radius: var(--radius-lg); padding: 28px 20px;
  display: flex; flex-direction: column; justify-content: space-between;
  position: relative; overflow: hidden;
}
.stat-card::after {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.stat-card--1 { background: linear-gradient(145deg, #2d1a1a, #4a1f1f); height: 260px; }
.stat-card--2 { background: linear-gradient(145deg, #1a1a2e, #2a2a4a); height: 320px; }
.stat-card--3 { background: linear-gradient(145deg, #1a1f2e, #1e2a4a); height: 380px; }
.stat-card-label { font-size: 0.65rem; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,0.5); font-weight: 700; margin-bottom: 16px; }
.stat-card-title { font-size: 0.95rem; color: rgba(255,255,255,0.85); font-weight: 600; margin: 0; flex: 1; line-height: 1.4; }
.stat-card-num {
  font-size: 2.2rem; font-weight: 900; color: var(--white); line-height: 1;
  display: flex; align-items: flex-end; gap: 4px; margin-top: 24px;
}
.stat-card-num span { font-size: 1rem; font-weight: 700; color: var(--gold); padding-bottom: 4px; }

/* Testimonials */
.testimonials-row { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 56px; }
.testimonials-label {
  display: flex; align-items: center; gap: 10px; margin-bottom: 28px;
  font-size: 0.85rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .08em; color: rgba(255,255,255,0.5);
}
.testimonials-cards {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.testimonials-cards img {
  width: 100%; height: auto; display: block;
  border-radius: var(--radius-sm);
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
  border: 1px solid rgba(255,255,255,0.06);
  transition: transform 0.4s cubic-bezier(.16,1,.3,1), box-shadow 0.4s ease;
  object-fit: cover;
}
.testimonials-cards img:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}
@media (max-width: 1024px) {
  .testimonials-cards { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
}

/* ════════════════════════════════════════════
   ABOUT (IMAGE LEFT + TEXT RIGHT)
════════════════════════════════════════════ */
.section-about { background: var(--cream); }
.about-layout {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: flex-start;
}
.about-photos { margin-top: 54px; }
.about-photos-wrap { position: relative; }
.about-main-photo {
  width: 100%; border-radius: var(--radius-lg);
  box-shadow: 0 24px 60px rgba(0,0,0,0.15);
}
.about-badge {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--black); border-radius: var(--radius);
  padding: 16px 20px; display: flex; align-items: center; gap: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
}
.about-badge-icon {
  width: 44px; height: 44px; background: rgba(200,168,75,0.15);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
}
.about-badge strong { color: var(--white); font-size: 1.1rem; display: block; }
.about-badge span { color: rgba(255,255,255,0.5); font-size: 0.8rem; }

/* Text side */
.about-features { display: flex; flex-direction: column; gap: 0; margin: 32px 0; }
.about-feature {
  display: flex; gap: 16px; padding: 20px 0;
  border-bottom: 1px solid var(--cream-2);
}
.about-feature:last-child { border-bottom: none; }
.about-feature-icon {
  width: 40px; height: 40px; background: rgba(200,168,75,0.1);
  border-radius: var(--radius-sm); display: flex; align-items: center;
  justify-content: center; color: var(--gold); flex-shrink: 0;
}
.about-feature h4 { margin-bottom: 4px; font-size: 0.95rem; }
.about-feature p { font-size: 0.85rem; }
.about-stats { display: flex; gap: 32px; flex-wrap: wrap; }
.about-stat strong { font-size: 2rem; font-weight: 900; color: var(--black); }
.about-stat span { font-size: 1rem; font-weight: 700; color: var(--gold); }
.about-stat p { font-size: 0.78rem; color: var(--text-muted); margin-top: 2px; }

/* ════════════════════════════════════════════
   CTA FINAL
════════════════════════════════════════════ */
.section-cta {
  background: var(--dark); position: relative; overflow: hidden;
}
.cta-bg-gradient {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 20% 50%, rgba(200,168,75,0.08) 0%, transparent 60%);
}
.cta-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
  position: relative;
}
.cta-headline { color: var(--white); margin: 16px 0 20px; }
.cta-headline em { color: var(--gold-light); }
.cta-layout .cta-text p { color: rgba(255,255,255,0.6); margin-bottom: 28px; }
.cta-bullets { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.cta-bullets li {
  display: flex; align-items: center; gap: 10px;
  color: rgba(255,255,255,0.7); font-size: 0.92rem;
}

/* Form */
.cta-form-wrap {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(200,168,75,0.2);
  border-radius: var(--radius-lg); padding: 40px; backdrop-filter: blur(10px);
}
.form-header { margin-bottom: 28px; }
.form-header h3 { color: var(--white); font-size: 1.2rem; margin-bottom: 6px; }
.form-header p { color: rgba(255,255,255,0.5); font-size: 0.85rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 20px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label { font-size: 0.75rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: rgba(255,255,255,0.5); }
.form-field input {
  padding: 14px 16px; background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius-sm);
  color: var(--white); font-size: 0.95rem; font-family: var(--font-sans);
  transition: border-color .3s;
}
.form-field input::placeholder { color: rgba(255,255,255,0.3); }
.form-field input:focus { outline: none; border-color: var(--gold); }
.form-privacy {
  display: flex; align-items: center; gap: 8px; justify-content: center;
  font-size: 0.78rem; color: rgba(255,255,255,0.35); margin-top: 12px;
}
.form-success {
  text-align: center; padding: 40px 20px;
}
.form-success h3 { color: var(--white); margin: 16px 0 8px; }
.form-success p { color: rgba(255,255,255,0.5); }

/* ════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════ */
.footer {
  background: var(--black) url('footer-bg.png') no-repeat center center;
  background-size: cover;
  padding: 80px 0 40px;
  position: relative; overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-watermark {
  display: none; /* Removed as the background image is now doing this job */
}
.footer-watermark img { width: 500px; filter: grayscale(100%) contrast(200%); }

.footer-layout {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 60px;
  margin-bottom: 80px;
}
.footer-col { display: flex; flex-direction: column; }
.footer-logo { width: 220px; filter: brightness(0) invert(1); margin-bottom: 60px; }

.footer-social-wrap { display: flex; align-items: center; gap: 24px; margin-top: auto; }
.social-label { font-size: 0.85rem; color: rgba(255,255,255,0.4); font-weight: 600; }
.footer-socials { display: flex; gap: 16px; }
.footer-socials a { color: rgba(255,255,255,0.7); transition: color .3s; }
.footer-socials a:hover { color: var(--gold); }

.footer-heading {
  font-size: 0.85rem; font-weight: 700; color: rgba(255,255,255,0.4);
  letter-spacing: .05em; margin-bottom: 24px;
}
.footer-links { display: flex; flex-direction: column; gap: 16px; }
.footer-links a { font-size: 0.95rem; color: rgba(255,255,255,0.8); transition: color .3s; }
.footer-links a:hover { color: var(--gold); }

.footer-contact-info { display: flex; flex-direction: column; gap: 16px; }
.footer-contact-info p { font-size: 0.95rem; color: rgba(255,255,255,0.8); margin: 0; }

.footer-bottom {
  position: relative; z-index: 2;
  display: flex; justify-content: space-between; align-items: center;
  border-top: 1px solid rgba(255,255,255,0.08); padding-top: 24px;
}
.footer-privacy { font-size: 0.85rem; color: rgba(255,255,255,0.4); margin: 0; }
.footer-copy { font-size: 0.85rem; color: rgba(255,255,255,0.25); margin: 0; }

/* ════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-layout { grid-template-columns: 1fr; text-align: center; gap: 40px; padding-top: 130px; }
  .hero-text { display: flex; flex-direction: column; align-items: center; }
  .hero-proof { justify-content: center; }
  .hero-visual { display: none; }
  .identify-layout { grid-template-columns: 1fr; gap: 40px; }
  .mechanism-layout { grid-template-columns: 1fr; }
  .benefits-layout { grid-template-columns: 1fr; gap: 40px; }
  .benefits-right { flex-direction: column; }
  .benefit-card--short, .benefit-card--medium { width: 100%; }
  .pillars-grid { grid-template-columns: 1fr; }
  .pillar-card--1, .pillar-card--2, .pillar-card--3 { margin-top: 0; }
  .proof-layout { grid-template-columns: 1fr; gap: 48px; }
  .proof-stats { justify-content: center; }
  .about-layout { grid-template-columns: 1fr; }
  .about-photos { margin-top: 0; }
  .about-badge { right: 16px; bottom: -16px; }
  .cta-layout { grid-template-columns: 1fr; gap: 48px; }
  .compare-row { grid-template-columns: 120px 1fr 1fr; }
}

/* ════════════════════════════════════════════
   MOBILE (480px AND DOWN)
════════════════════════════════════════════ */
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  section { padding: 24px 0; }
  body { overflow-x: hidden; }
  
  h1 { font-size: 1.4rem; line-height: 1.2; }
  h2 { font-size: 1.15rem; line-height: 1.2; }
  h3 { font-size: 0.95rem; }
  h4 { font-size: 0.9rem; }
  p { font-size: 0.85rem; line-height: 1.6; }
  em { font-style: italic; }

  /* NAVBAR */
  .navbar { padding: 10px 0; position: fixed; top: 0; left: 0; right: 0; width: 100%; z-index: 999; background: white; box-shadow: 0 2px 4px rgba(0,0,0,0.05); }
  .nav-inner { gap: 10px; }
  .nav-logo img { max-width: 80px; filter: brightness(0); }
  .nav-links { display: none !important; }
  .btn.btn-dark { display: none !important; }
  .hamburger { display: flex !important; flex-direction: column; padding: 6px; gap: 4px; cursor: pointer; background: none; border: none; margin-left: auto; }
  .hamburger span { display: block; width: 18px; height: 2px; background: var(--black); border-radius: 2px; transition: all .3s; }
  .mobile-menu { display: none !important; flex-direction: column; gap: 8px; padding: 16px 14px; background: var(--cream); border-top: 1px solid var(--border); max-height: calc(100vh - 60px); overflow-y: auto; }
  .mobile-menu.open { display: flex !important; }
  .mobile-menu a { padding: 10px 0; font-size: 0.8rem; font-weight: 600; border-bottom: 1px solid var(--cream-2); color: var(--text); }
  .mobile-menu .btn { padding: 12px 18px; border: none; border-bottom: none; width: 100%; }

  /* HERO */
  .hero { padding: 16px 0; margin-top: 60px; min-height: auto; }
  .hero-grid-bg { display: none !important; }
  .hero-v3-cards { display: none !important; }
  .scroll-indicator { display: none !important; }
  .hero-layout { padding: 0; gap: 12px; flex-direction: column; }
  .hero-text { text-align: center; }
  .hero-headline { font-size: 1.25rem; margin-bottom: 8px; font-weight: 800; }
  .hero-sub { font-size: 0.75rem; margin-bottom: 10px; }
  .hero-proof { display: none !important; }
  .hero-cta { font-size: 0.75rem; padding: 8px 12px; width: 100%; }

  /* IDENTIFY */
  .identify-layout { flex-direction: column; gap: 16px; }
  .identify-pains { gap: 12px; flex-direction: column; }
  .pain-item { padding: 14px; gap: 12px; border-radius: 8px; background: rgba(200,168,75,0.05); }
  .pain-num { font-size: 1.6rem; font-weight: 900; }
  .pain-icon-3d { width: 36px; height: 36px; }
  .pain-content h4 { font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
  .pain-content p { font-size: 0.8rem; }

  /* PROBLEM */
  .pipeline-flow { gap: 12px; flex-direction: column; }
  .pipeline-step { padding: 14px; gap: 12px; border-radius: 8px; background: rgba(0,0,0,0.02); }
  .pipeline-arrow { display: none !important; }
  .pipeline-icon { width: 36px; height: 36px; }
  .pipeline-step h4 { font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
  .pipeline-step p { font-size: 0.8rem; }

  /* MECHANISM */
  .mechanism-layout { flex-direction: column; gap: 20px; }
  .mechanism-image { max-width: 100%; }
  .mechanism-image img { max-width: 100%; height: auto; }
  .mechanism-img-wrap { border-radius: 8px; overflow: hidden; max-width: 100%; }
  .mechanism-steps { width: 100%; }
  .mstep { gap: 12px; margin-bottom: 14px; padding: 12px; border-radius: 8px; background: rgba(200,168,75,0.05); }
  .mstep-num { font-size: 1.4rem; font-weight: 900; min-width: 40px; }
  .mstep-icon { width: 32px; height: 32px; flex-shrink: 0; }
  .mstep-body { width: 100%; }
  .mstep-body h4 { font-size: 0.95rem; font-weight: 700; margin-bottom: 4px; }
  .mstep-body p { font-size: 0.8rem; }

  /* PILLARS */
  .pillars-grid { gap: 16px; grid-template-columns: 1fr; }
  .pillar-card { padding: 16px; }
  .pillar-card-icon { width: 32px; height: 32px; }
  .pillar-num { font-size: 2rem; font-weight: 900; margin-bottom: 8px; }
  .pillar-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
  .pillar-card p { font-size: 0.8rem; }

  /* BENEFITS */
  .bento-grid { gap: 12px; grid-template-columns: 1fr; }
  .bento-card { padding: 16px; display: flex; flex-direction: column; }
  .bento-wide { grid-column: 1; }
  .bento-icon { width: 36px; height: 36px; margin-bottom: 8px; }
  .bento-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
  .bento-card p { font-size: 0.8rem; margin-bottom: 8px; }
  .bento-link { margin-top: 12px; font-size: 0.7rem; }
  .bento-visual-area { height: 80px; border-radius: 6px; overflow: hidden; }
  .bento-visual-chat { height: 60px; border-radius: 6px; }
  .bento-visual-metrics { height: 60px; border-radius: 6px; }

  /* SERVICES */
  .services-list { gap: 0; display: flex; flex-direction: column; }
  .service-row { display: flex; flex-direction: column; padding: 14px; gap: 10px; border-bottom: 1px solid rgba(0,0,0,0.08); align-items: flex-start; }
  .service-row-icon { width: 40px; height: 40px; flex-shrink: 0; }
  .service-row-icon svg { width: 100%; height: 100%; }
  .service-num { font-size: 1.2rem; font-weight: 900; color: var(--gold); margin-bottom: 4px; }
  .service-row-tag { display: none; }
  .service-row-body { width: 100%; }
  .service-row-body h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 4px; }
  .service-row-body p { font-size: 0.8rem; line-height: 1.5; }

  /* COMPARE TABLE */
  .compare-row { padding: 12px; border-bottom: 1px solid rgba(0,0,0,0.05); display: flex; flex-direction: column; gap: 6px; }
  .compare-row--header { display: none !important; }
  .compare-col { padding: 4px 0; }
  .compare-col--label { font-weight: 700; font-size: 0.8rem; margin-bottom: 6px; border: none; color: var(--text); }
  .compare-col--bad { background: transparent; text-decoration: line-through; font-size: 0.8rem; }
  .compare-col--good { background: rgba(200,168,75,0.1); padding: 8px; border-radius: 6px; font-size: 0.8rem; }
  .compare-col svg { width: 12px; height: 12px; margin-right: 4px; }

  /* PROOF */
  .proof-layout { flex-direction: column; gap: 20px; }
  .proof-story { text-align: center; }
  .proof-stats { display: flex; flex-direction: column; gap: 12px; width: 100%; }
  .stat-card { padding: 12px; border-radius: 6px; border: 1px solid rgba(0,0,0,0.05); text-align: center; }
  .stat-card-label { font-size: 0.7rem; text-transform: uppercase; color: var(--text-muted); }
  .stat-card-title { font-size: 0.8rem; font-weight: 600; margin: 4px 0; }
  .stat-card-num { font-size: 1.8rem; font-weight: 900; color: var(--gold); }

  /* ABOUT */
  .about-layout { flex-direction: column; gap: 16px; }
  .about-photos { width: 100%; }
  .about-photos-wrap { position: relative; width: 100%; }
  .about-main-photo { width: 100%; height: auto; border-radius: 8px; }
  .about-badge { position: relative; margin-top: 12px; padding: 12px; background: rgba(200,168,75,0.1); border-radius: 8px; }
  .about-stats { grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 12px; }
  .about-stat { text-align: center; padding: 10px; font-size: 0.8rem; }
  .about-stat strong { font-size: 1.4rem; display: block; color: var(--gold); }
  .about-text { width: 100%; }
  .about-text .section-tag { margin-bottom: 12px; }
  .about-text h2 { font-size: 1.3rem; margin-bottom: 12px; }
  .about-features { gap: 12px; }
  .about-feature { display: flex; gap: 8px; }
  .about-feature-icon { width: 20px; height: 20px; flex-shrink: 0; margin-top: 2px; }
  .about-feature h4 { font-size: 0.9rem; font-weight: 700; margin-bottom: 4px; }
  .about-feature p { font-size: 0.8rem; }

  /* TESTIMONIOS */
  .testimonials-row { margin-top: 16px; }
  .testimonials-label { font-size: 0.85rem; margin-bottom: 10px; display: flex; align-items: center; gap: 6px; }
  .testimonials-cards { display: flex; flex-direction: column; gap: 10px; }
  .testimonials-cards img { width: 100%; height: auto; border-radius: 6px; }

  /* CTA */
  .cta-layout { flex-direction: column; gap: 16px; }
  .cta-text { text-align: center; width: 100%; }
  .cta-headline { font-size: 1.15rem; margin-bottom: 8px; font-weight: 800; }
  .cta-text p { font-size: 0.8rem; }
  .cta-bullets { gap: 8px; justify-content: center; }
  .cta-bullets li { font-size: 0.8rem; gap: 6px; display: flex; align-items: center; }
  .cta-bullets svg { width: 14px; height: 14px; flex-shrink: 0; }
  .cta-form-wrap { padding: 14px; border-radius: 8px; }
  .form-header { margin-bottom: 12px; }
  .form-header h3 { font-size: 1rem; margin-bottom: 4px; }
  .form-header p { font-size: 0.8rem; }
  .form-grid { gap: 10px; margin-bottom: 10px; display: flex; flex-direction: column; }
  .form-field { width: 100%; }
  .form-field label { font-size: 0.75rem; display: block; margin-bottom: 4px; font-weight: 600; }
  .form-field input { padding: 8px 10px; font-size: 0.85rem; width: 100%; border: 1px solid rgba(0,0,0,0.1); border-radius: 6px; }
  .btn { padding: 10px 14px; font-size: 0.8rem; width: 100%; gap: 8px; }
  .form-privacy { font-size: 0.7rem; margin-top: 8px; display: flex; align-items: center; gap: 4px; }
  .form-privacy svg { width: 10px; height: 10px; flex-shrink: 0; }
  .form-success { text-align: center; padding: 12px; }
  .success-icon { margin-bottom: 8px; }
  .success-icon svg { width: 40px; height: 40px; }
  .form-success h3 { font-size: 1rem; margin-bottom: 4px; }
  .form-success p { font-size: 0.8rem; }

  /* FOOTER */
  .footer-watermark { display: none; }
  .footer-layout { flex-direction: column; gap: 12px; }
  .footer-logo { width: 80px; margin-bottom: 6px; }
  .footer-heading { margin-bottom: 4px; font-size: 0.75rem; }
  .footer-links { gap: 2px; }
  .footer-links a { font-size: 0.7rem; }
  .footer-contact-info p { font-size: 0.7rem; }
  .footer-socials { gap: 6px; }
  .footer-socials a svg { width: 14px; height: 14px; }

  /* SAFETY */
  * { box-sizing: border-box; }
  body, html { overflow-x: hidden; width: 100%; max-width: 100%; }
}
