/* ============================================================
   Vault Marketing — style.css
   Separated from index.html for caching & maintainability
   ============================================================ */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg: #F5F2EC;
  --black: #0D0D0D;
  --white: #e9e9e9;
  --accent: #FF4D1C;
  /* Fixed: was #8A8A7A (3.6:1 contrast) → now 4.6:1 on --bg */
  --muted: #5E5E50;
  --surface: #EDEAE2;
  --border: rgba(13,13,13,0.1);
  --font-display: 'Clash Display', sans-serif;
  --font-body: 'Cabinet Grotesk', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--black);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}

/* ── ACCESSIBILITY: FOCUS STYLES ── */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ── CURSOR ── */
.cursor {
  width: 10px; height: 10px;
  background: var(--accent); border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 99999;
  transition: transform 0.15s ease;
  mix-blend-mode: multiply;
}
.cursor-follower {
  width: 36px; height: 36px;
  border: 1.5px solid var(--black); border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 99998;
  transition: all 0.12s ease;
  mix-blend-mode: multiply;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1200;
  padding: 24px 60px;
  display: flex; align-items: center; justify-content: space-between;
  transition: background 0.4s, backdrop-filter 0.4s, padding 0.3s;
}
nav.scrolled {
  background: rgba(245,242,236,0.94);
  backdrop-filter: blur(16px);
  padding: 16px 60px;
  border-bottom: 1px solid var(--border);
}
.logo {
  font-family: var(--font-display); font-size: 22px; font-weight: 700;
  letter-spacing: -0.02em; color: var(--black); text-decoration: none;
}
.logo span { color: var(--accent); }
.nav-links { display: flex; gap: 40px; list-style: none; }
.nav-links a {
  font-size: 14px; font-weight: 500; color: var(--black);
  text-decoration: none; opacity: 0.7;
  transition: opacity 0.2s, color 0.2s;
}
.nav-links a:hover { opacity: 1; color: var(--accent); }
.nav-cta {
  background: var(--black) !important; color: var(--white) !important;
  opacity: 1 !important; padding: 10px 24px; border-radius: 100px;
  font-weight: 600 !important;
  transition: background 0.2s, transform 0.2s !important;
}
.nav-cta:hover { background: var(--accent) !important; transform: scale(1.04); }

/* Hamburger — hidden on desktop */
.hamburger { display: none; }

/* Mobile menu — hidden on desktop, shown via media query */
.mobile-menu { display: none; }

/* ── HERO ── */
.hero {
  min-height: 100vh; display: flex; flex-direction: column;
  justify-content: space-between;
  padding: 140px 60px 80px;
  position: relative; overflow: hidden;
}
/* Radial orange glow behind "Revenue" */
.hero-glow {
  position: absolute;
  bottom: 0; left: -100px;
  width: 700px; height: 500px;
  background: radial-gradient(ellipse at 30% 80%, rgba(255,77,28,0.13) 0%, transparent 65%);
  pointer-events: none;
  z-index: 0;
}
/* Premium badge pill */
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(13,13,13,0.06);
  border: 1px solid rgba(13,13,13,0.12);
  border-radius: 100px;
  padding: 8px 18px 8px 12px;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--black); width: fit-content;
  backdrop-filter: blur(8px);
  animation: fadeUp 0.6s 0.1s both;
}
.hero-badge-dot {
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
  flex-shrink: 0;
}
.hero-bg-text {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: clamp(120px,18vw,260px); font-weight: 700;
  color: rgba(13,13,13,0.04); white-space: nowrap;
  pointer-events: none; letter-spacing: -0.04em; user-select: none;
  z-index: 0;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 28px;
  animation: fadeUp 0.8s 0.2s both;
}
.hero-tag-dot {
  width: 6px; height: 6px; background: var(--accent);
  border-radius: 50%; animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)}50%{opacity:0.5;transform:scale(0.7)} }
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(52px,8vw,118px); font-weight: 700;
  line-height: 0.95; letter-spacing: -0.04em;
  margin-bottom: 0; max-width: 900px;
  animation: fadeUp 0.8s 0.25s both;
  position: relative; z-index: 1;
}
.hero h1 em {
  font-style: normal; color: var(--accent);
  position: relative; display: inline-block;
}
.hero h1 em::after {
  content: ''; position: absolute; bottom: 4px; left: 0; right: 0;
  height: 4px; background: var(--accent);
  transform: scaleX(0); transform-origin: left;
  animation: underlineIn 0.6s 1.1s cubic-bezier(0.16,1,0.3,1) forwards;
}
@keyframes underlineIn { to { transform: scaleX(1); } }
.hero-bottom {
  display: flex; align-items: flex-end;
  justify-content: space-between;
  animation: fadeUp 0.8s 0.45s both;
  position: relative; z-index: 1;
}
.hero-desc { font-size: 18px; color: var(--muted); max-width: 420px; font-weight: 400; line-height: 1.7; }
.hero-stats { display: flex; gap: 0; }
.hero-stats > div {
  padding: 20px 36px;
  border-left: 1px solid var(--border);
  text-align: center;
}
.hero-stats > div:first-child { border-left: none; }
.hero-stat-val {
  font-family: var(--font-display); font-size: 36px;
  font-weight: 700; letter-spacing: -0.03em; color: var(--black);
}
.hero-stat-label { font-size: 12px; color: var(--muted); margin-top: 2px; text-transform: uppercase; letter-spacing: 0.1em; }
.hero-cta-row { display: flex; gap: 16px; margin-top: 40px; animation: fadeUp 0.8s 0.6s both; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--black); color: var(--white);
  padding: 16px 36px; border-radius: 100px;
  font-size: 15px; font-weight: 600; text-decoration: none; border: none;
  transition: background 0.2s, transform 0.2s; cursor: pointer;
}
.btn-primary:hover { background: var(--accent); transform: scale(1.03); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent; color: var(--black);
  padding: 16px 36px; border-radius: 100px;
  font-size: 15px; font-weight: 600; text-decoration: none;
  border: 1.5px solid rgba(13,13,13,0.2);
  transition: border-color 0.2s, transform 0.2s; cursor: pointer;
}
.btn-secondary:hover { border-color: var(--black); transform: scale(1.03); }
.scroll-line {
  position: absolute; bottom: 40px; right: 60px;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  animation: fadeUp 0.8s 0.8s both;
}
.scroll-line span {
  font-size: 10px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--muted); writing-mode: vertical-rl;
}
.scroll-line::after {
  content: ''; width: 1px; height: 60px;
  background: linear-gradient(to bottom, var(--black), transparent);
  animation: scrollPulse 2s infinite;
}
@keyframes scrollPulse { 0%,100%{opacity:0.4}50%{opacity:1} }

/* ── MARQUEE ── */
.marquee-wrap {
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 18px 0; overflow: hidden; background: var(--black);
}
.marquee-track {
  display: flex;
  animation: marquee var(--marquee-speed, 20s) linear infinite;
  white-space: nowrap;
}
.marquee-item {
  display: inline-flex; align-items: center; gap: 20px; padding: 0 40px;
  font-family: var(--font-display); font-size: 14px; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.5);
}
.marquee-item .dot { color: var(--accent); font-size: 20px; }
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ── SHARED ── */
.section-tag { font-size: 11px; font-weight: 600; letter-spacing: 0.25em; text-transform: uppercase; color: var(--accent); margin-bottom: 16px; }
.section-title { font-family: var(--font-display); font-size: clamp(36px,5vw,64px); font-weight: 700; letter-spacing: -0.03em; line-height: 1.0; max-width: 500px; }
.section-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 80px; }
.section-desc { font-size: 16px; color: var(--muted); max-width: 340px; line-height: 1.7; font-weight: 400; }

/* ── SERVICES ── */
.services { padding: 120px 60px; }
.services-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 2px; background: var(--border);
  border: 1px solid var(--border); border-radius: 20px; overflow: hidden;
}
.service-card {
  background: var(--bg); padding: 52px 44px;
  transition: background 0.3s; position: relative; overflow: hidden;
}
.service-card:hover { background: var(--black); }
.service-card:hover .service-num,
.service-card:hover .service-name,
.service-card:hover .service-desc { color: var(--white); }
.service-card:hover .service-icon { background: var(--accent); }
.service-card:hover .service-arrow { opacity: 1; transform: translate(0,0); }
.service-icon {
  width: 48px; height: 48px; background: var(--surface);
  border-radius: 12px; display: flex; align-items: center;
  justify-content: center; font-size: 22px; margin-bottom: 36px;
  transition: background 0.3s;
}
.service-num { font-size: 11px; font-weight: 600; letter-spacing: 0.2em; color: var(--muted); margin-bottom: 14px; transition: color 0.3s; }
.service-name { font-family: var(--font-display); font-size: 28px; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 16px; transition: color 0.3s; }
.service-desc { font-size: 15px; color: var(--muted); line-height: 1.7; transition: color 0.3s; }
.service-arrow { position: absolute; bottom: 44px; right: 44px; font-size: 24px; opacity: 0; transform: translate(-6px,6px); transition: all 0.3s; color: var(--accent); }

/* ── RESULTS ── */
.results { padding: 120px 60px; background: var(--black); color: var(--white); position: relative; overflow: hidden; }
.results::before {
  content: ''; position: absolute; top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,77,28,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.results .section-tag { color: var(--accent); }
.results .section-title { color: var(--white); }
.results .section-desc { color: rgba(255,255,255,0.5); }
.results-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; margin-top: 60px; }
.result-card {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px; padding: 44px 40px;
  position: relative; overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}
.result-card:hover { border-color: rgba(255,77,28,0.4); transform: translateY(-4px); }
.result-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--accent); transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
}
.result-card:hover::before { transform: scaleX(1); }
.result-industry { font-size: 11px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent); margin-bottom: 24px; }
.result-metric { font-family: var(--font-display); font-size: 56px; font-weight: 700; letter-spacing: -0.04em; color: var(--white); line-height: 1; margin-bottom: 8px; }
.result-metric-label { font-size: 14px; color: rgba(255,255,255,0.5); margin-bottom: 28px; }
.result-divider { height: 1px; background: rgba(255,255,255,0.08); margin-bottom: 24px; }
.result-detail { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.6; }
.result-detail strong { color: rgba(255,255,255,0.85); font-weight: 600; }

/* ── LEAD MAGNET BANNER ── */
.lead-magnet-banner {
  margin: 60px 0 0;
  background: linear-gradient(135deg, rgba(255,77,28,0.12), rgba(255,77,28,0.04));
  border: 1px solid rgba(255,77,28,0.3);
  border-radius: 20px; padding: 44px 52px;
  display: flex; align-items: center; justify-content: space-between; gap: 40px;
  position: relative; overflow: hidden;
}
.lead-magnet-banner::before {
  content: '📄'; position: absolute; right: 52px; top: 50%;
  transform: translateY(-50%);
  font-size: 100px; opacity: 0.06; pointer-events: none;
}
.lm-tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--accent); color: var(--white);
  font-size: 11px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 100px; margin-bottom: 16px;
}
.lm-title { font-family: var(--font-display); font-size: 28px; font-weight: 700; color: var(--white); letter-spacing: -0.02em; margin-bottom: 10px; }
.lm-desc { font-size: 15px; color: rgba(255,255,255,0.5); max-width: 480px; }
.lm-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--white); color: var(--black);
  padding: 16px 36px; border-radius: 100px;
  font-size: 15px; font-weight: 700; border: none; cursor: pointer;
  transition: transform 0.2s, background 0.2s; white-space: nowrap; flex-shrink: 0;
}
.lm-btn:hover { background: var(--accent); color: var(--white); transform: scale(1.04); }

/* ── PROCESS ── */
.process { padding: 120px 60px; }
.process-steps { margin-top: 80px; display: flex; flex-direction: column; border: 1px solid var(--border); border-radius: 20px; overflow: hidden; }
.process-step {
  display: grid; grid-template-columns: 80px 1fr 1fr;
  align-items: center; padding: 44px 52px;
  border-bottom: 1px solid var(--border);
  transition: background 0.25s;
}
.process-step:last-child { border-bottom: none; }
.process-step:hover { background: var(--surface); }
.step-num { font-family: var(--font-display); font-size: 48px; font-weight: 700; color: rgba(13,13,13,0.08); letter-spacing: -0.04em; line-height: 1; }
.step-name { font-family: var(--font-display); font-size: 24px; font-weight: 700; letter-spacing: -0.02em; padding-right: 40px; }
.step-desc { font-size: 15px; color: var(--muted); line-height: 1.65; }

/* ── INDUSTRIES ── */
.industries { padding: 120px 60px; background: var(--surface); }
.industries-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; margin-top: 60px; }
.industry-card {
  background: var(--bg); border-radius: 20px; padding: 52px 48px;
  border: 1px solid var(--border); display: flex; flex-direction: column; gap: 20px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.industry-card:hover { transform: translateY(-6px); box-shadow: 0 24px 60px rgba(13,13,13,0.08); }
.industry-emoji { font-size: 40px; }
.industry-name { font-family: var(--font-display); font-size: 32px; font-weight: 700; letter-spacing: -0.03em; }
.industry-proof { font-size: 14px; color: var(--muted); line-height: 1.6; }
.industry-badge { display: inline-flex; align-items: center; gap: 6px; background: rgba(255,77,28,0.08); color: var(--accent); font-size: 12px; font-weight: 600; padding: 6px 14px; border-radius: 100px; align-self: flex-start; }

/* ── TESTIMONIALS ── */
.testimonials-section { padding: 120px 60px; background: var(--bg); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}
.tcard {
  background: var(--surface);
  border-radius: 20px;
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  border: 1px solid var(--border);
  transition: transform 0.3s, box-shadow 0.3s;
}
.tcard:hover { transform: translateY(-4px); box-shadow: 0 20px 48px rgba(13,13,13,0.07); }
.tcard-quote-mark {
  font-family: var(--font-display);
  font-size: 64px; color: var(--accent);
  line-height: 0.6; opacity: 0.25;
}
.tcard-text {
  font-family: var(--font-display);
  font-size: clamp(16px, 1.4vw, 20px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.4;
  flex: 1;
}
.tcard-author { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--black); }
.tcard-role { font-size: 12px; color: var(--muted); margin-top: 3px; }
.tcard-result {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,77,28,0.08); color: var(--accent);
  font-size: 12px; font-weight: 700;
  padding: 6px 14px; border-radius: 100px;
  align-self: flex-start;
}

/* ── CTA ── */
.cta { padding: 120px 60px; background: var(--black); text-align: center; position: relative; overflow: hidden; }
.cta::before {
  content: ''; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%); width: 800px; height: 400px;
  background: radial-gradient(ellipse, rgba(255,77,28,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.cta-title { font-family: var(--font-display); font-size: clamp(48px,7vw,100px); font-weight: 700; letter-spacing: -0.04em; color: var(--white); line-height: 0.95; margin-bottom: 32px; position: relative; z-index: 1; }
.cta-title span { color: var(--accent); }
.cta-sub { font-size: 18px; color: rgba(255,255,255,0.4); margin-bottom: 56px; position: relative; z-index: 1; }
.cta-form { display: flex; gap: 12px; justify-content: center; max-width: 520px; margin: 0 auto; position: relative; z-index: 1; }
.cta-input {
  flex: 1; background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.12); border-radius: 100px;
  padding: 16px 28px; font-size: 15px; color: var(--white);
  font-family: var(--font-body); outline: none; transition: border-color 0.2s;
}
.cta-input::placeholder { color: rgba(255,255,255,0.3); }
.cta-input:focus { border-color: var(--accent); }
/* Honeypot: hidden from humans */
.hp-field { display: none !important; visibility: hidden; }
.cta-btn {
  background: var(--accent); color: var(--white); border: none;
  padding: 16px 32px; border-radius: 100px; font-size: 15px;
  font-weight: 600; font-family: var(--font-body); cursor: pointer;
  transition: transform 0.2s, opacity 0.2s; white-space: nowrap;
}
.cta-btn:hover { transform: scale(1.04); opacity: 0.9; }
.cta-note { font-size: 13px; color: rgba(255,255,255,0.25); margin-top: 20px; position: relative; z-index: 1; }

/* ── FOOTER ── */
footer {
  padding: 60px; background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 20px;
}
.footer-logo { font-family: var(--font-display); font-size: 20px; font-weight: 700; color: var(--white); letter-spacing: -0.02em; }
.footer-logo span { color: var(--accent); }
.footer-links { display: flex; gap: 32px; list-style: none; flex-wrap: wrap; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,0.4); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }
.footer-copy { font-size: 13px; color: rgba(255,255,255,0.25); }

/* ── MODAL ── */
.modal-overlay {
  position: fixed; inset: 0; z-index: 9000;
  background: rgba(13,13,13,0.8); backdrop-filter: blur(10px);
  display: flex; align-items: center; justify-content: center; padding: 24px;
  opacity: 0; pointer-events: none; transition: opacity 0.3s ease;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal {
  background: var(--bg); border-radius: 24px;
  width: 100%; max-width: 520px; padding: 52px 48px;
  position: relative;
  transform: translateY(32px) scale(0.97);
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1);
  box-shadow: 0 40px 100px rgba(0,0,0,0.35);
}
.modal-overlay.open .modal { transform: translateY(0) scale(1); }
.modal-close {
  position: absolute; top: 20px; right: 20px;
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--surface); border: none; font-size: 18px;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: background 0.2s; color: var(--black);
}
.modal-close:hover { background: #e0dcd4; }
.modal-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,77,28,0.1); color: var(--accent);
  font-size: 11px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 100px; margin-bottom: 20px;
}
.modal-title { font-family: var(--font-display); font-size: 32px; font-weight: 700; letter-spacing: -0.03em; line-height: 1.1; margin-bottom: 10px; }
.modal-title span { color: var(--accent); }
.modal-sub { font-size: 15px; color: var(--muted); line-height: 1.6; margin-bottom: 28px; }
.modal-preview {
  background: var(--black); border-radius: 12px; padding: 20px 24px;
  margin-bottom: 28px; display: flex; align-items: center; gap: 16px;
}
.modal-preview-icon { font-size: 32px; flex-shrink: 0; }
.modal-preview-name { font-family: var(--font-display); font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.modal-preview-meta { font-size: 12px; color: rgba(255,255,255,0.4); }
.modal-form { display: flex; flex-direction: column; gap: 14px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-label { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); }
.form-input {
  background: var(--surface); border: 1.5px solid transparent;
  border-radius: 12px; padding: 14px 18px;
  font-size: 15px; font-family: var(--font-body);
  color: var(--black); outline: none; transition: border-color 0.2s, background 0.2s;
}
.form-input:focus { border-color: var(--accent); background: var(--white); }
.form-input::placeholder { color: rgba(13,13,13,0.3); }
.form-input.error { border-color: #e52222; animation: shake 0.3s ease; }
.form-error-msg { font-size: 11px; color: #e52222; margin-top: 2px; display: none; }
.form-input.error + .form-error-msg { display: block; }
@keyframes shake { 0%,100%{transform:translateX(0)} 25%{transform:translateX(-6px)} 75%{transform:translateX(6px)} }
.form-submit {
  background: var(--black); color: var(--white); border: none;
  border-radius: 12px; padding: 16px;
  font-size: 16px; font-weight: 700; font-family: var(--font-body);
  cursor: pointer; margin-top: 8px;
  transition: background 0.2s, transform 0.2s;
  display: flex; align-items: center; justify-content: center; gap: 10px;
}
.form-submit:hover { background: var(--accent); transform: scale(1.02); }
.form-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.form-privacy { font-size: 12px; color: var(--muted); text-align: center; line-height: 1.5; }

/* ── SUCCESS ── */
.modal-success {
  text-align: center; padding: 20px 0;
  display: none; flex-direction: column; align-items: center; gap: 16px;
}
.success-icon {
  width: 80px; height: 80px; border-radius: 50%;
  background: rgba(16,185,129,0.1);
  display: flex; align-items: center; justify-content: center; font-size: 36px;
}
.success-title { font-family: var(--font-display); font-size: 30px; font-weight: 700; letter-spacing: -0.02em; }
.success-sub { font-size: 15px; color: var(--muted); max-width: 320px; line-height: 1.6; }
.success-download {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--black); color: var(--white);
  padding: 16px 36px; border-radius: 100px;
  font-size: 15px; font-weight: 700; text-decoration: none; margin-top: 8px;
  transition: background 0.2s, transform 0.2s;
}
.success-download:hover { background: var(--accent); transform: scale(1.03); }
.success-note { font-size: 13px; color: var(--muted); }

/* ── FLOATING WHATSAPP BUTTON ── */
.wa-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 9999;
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  text-decoration: none;
  transition: transform 0.25s cubic-bezier(0.16,1,0.3,1), box-shadow 0.25s;
  cursor: pointer;
}
.wa-float:hover {
  transform: scale(1.12);
  box-shadow: 0 10px 36px rgba(37,211,102,0.55);
}
/* Pulsing ring */
.wa-float::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,0.5);
  animation: waPulse 2s ease-out infinite;
}
@keyframes waPulse {
  0%   { transform: scale(1);   opacity: 0.8; }
  100% { transform: scale(1.5); opacity: 0; }
}
/* Tooltip */
.wa-tooltip {
  position: absolute;
  right: 70px;
  background: var(--black);
  color: var(--white);
  font-size: 12px; font-weight: 600;
  padding: 6px 12px;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0; pointer-events: none;
  transition: opacity 0.2s;
}
.wa-float:hover .wa-tooltip { opacity: 1; }
@media (max-width: 900px) {
  .wa-float { bottom: 20px; right: 16px; width: 52px; height: 52px; }
  .wa-tooltip { display: none; }
}


/* ── ANIMATIONS ── */
@keyframes fadeUp { from{opacity:0;transform:translateY(28px)}to{opacity:1;transform:translateY(0)} }
.reveal { opacity:0; transform:translateY(36px); transition:opacity 0.8s cubic-bezier(0.16,1,0.3,1), transform 0.8s cubic-bezier(0.16,1,0.3,1); }
.reveal.visible { opacity:1; transform:translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ── MOBILE ── */
@media (max-width: 900px) {

  /* Cursor off on touch */
  body { cursor: auto; }
  .cursor, .cursor-follower { display: none; }

  /* ── NAV ── */
  nav { padding: 18px 20px; }
  nav.scrolled { padding: 14px 20px; }
  .nav-links { display: none; }

  /* Show hamburger on mobile */
  .hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    z-index: 1200;
  }
  .hamburger span {
    display: block;
    width: 26px; height: 2.5px;
    background: var(--black);
    border-radius: 3px;
    transition: all 0.3s ease;
    transform-origin: center;
  }
  .hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

  /* Mobile fullscreen menu */
  .mobile-menu {
    display: flex;
    position: fixed;
    inset: 0;
    background: var(--bg);
    z-index: 1100;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 32px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
  }
  .mobile-menu.open { opacity: 1; pointer-events: all; }
  .mobile-menu a {
    font-family: var(--font-display);
    font-size: 34px; font-weight: 700;
    color: var(--black); text-decoration: none;
    letter-spacing: -0.02em;
  }
  .mobile-menu .menu-cta {
    background: var(--black); color: var(--white) !important;
    padding: 14px 40px; border-radius: 100px;
    font-size: 18px !important; margin-top: 8px;
  }

  /* ── HERO ── */
  .hero {
    min-height: 100svh;
    padding: 100px 20px 52px;
    justify-content: space-between;
    gap: 28px;
  }
  .hero-badge { font-size: 10px; padding: 7px 14px 7px 10px; letter-spacing: 0.08em; }
  .hero h1 { font-size: 38px; line-height: 1.02; letter-spacing: -0.03em; }
  .hero-bottom { flex-direction: column; gap: 28px; align-items: flex-start; }
  .hero-desc { font-size: 15px; max-width: 100%; line-height: 1.65; }
  .hero-cta-row { flex-direction: column; gap: 12px; width: 100%; }
  .btn-primary, .btn-secondary { width: 100%; justify-content: center; padding: 15px 24px; font-size: 15px; }
  .hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
  }
  .hero-stats > div {
    padding: 16px 10px;
    border-left: 1px solid var(--border);
    border-right: none;
    text-align: center;
  }
  .hero-stats > div:first-child { border-left: none; }
  .hero-stat-val { font-size: 18px; }
  .hero-stat-label { font-size: 8px; letter-spacing: 0.04em; }
  .scroll-line { display: none; }

  /* ── MARQUEE ── */
  .marquee-item { font-size: 12px; padding: 0 20px; }

  /* ── SECTION SHARED ── */
  .services, .results, .process, .industries, .testimonials-section, .cta { padding: 64px 20px; }
  .section-header { flex-direction: column; align-items: flex-start; gap: 16px; margin-bottom: 40px; }
  .section-title { font-size: 32px; max-width: 100%; }
  .section-desc { font-size: 14px; max-width: 100%; }

  /* ── SERVICES ── */
  .services-grid { grid-template-columns: 1fr; gap: 1px; }
  .service-card { padding: 36px 28px; }
  .service-icon { width: 40px; height: 40px; font-size: 18px; margin-bottom: 24px; }
  .service-name { font-size: 24px; }
  .service-desc { font-size: 14px; }
  .service-arrow { opacity: 1; transform: translate(0,0); bottom: 28px; right: 28px; font-size: 18px; }

  /* ── RESULTS ── */
  .results-grid { grid-template-columns: 1fr; gap: 16px; margin-top: 40px; }
  .result-card { padding: 32px 28px; }
  .result-metric { font-size: 44px; }

  /* ── LEAD MAGNET BANNER ── */
  .lead-magnet-banner {
    flex-direction: column;
    padding: 32px 24px;
    gap: 24px;
    margin-top: 40px;
  }
  .lead-magnet-banner::before { display: none; }
  .lm-title { font-size: 22px; }
  .lm-desc { font-size: 14px; }
  .lm-btn { width: 100%; justify-content: center; padding: 15px 24px; }

  /* ── PROCESS ── */
  .process-steps { border-radius: 16px; }
  .process-step {
    grid-template-columns: 44px 1fr;
    gap: 12px 16px;
    padding: 24px 20px;
  }
  .step-num { font-size: 32px; }
  .step-name { font-size: 18px; padding-right: 0; }
  /* FIX: Was `display:none` — now visible on mobile in smaller font */
  .step-desc {
    grid-column: 2 / -1;
    font-size: 13px;
    line-height: 1.55;
    color: var(--muted);
  }

  /* ── INDUSTRIES ── */
  .industries { padding: 64px 20px; }
  .industries-grid { grid-template-columns: 1fr; gap: 16px; margin-top: 40px; }
  .industry-card { padding: 36px 28px; gap: 16px; }
  .industry-name { font-size: 26px; }
  .industry-proof { font-size: 14px; }

  /* ── TESTIMONIALS ── */
  .testimonials-grid { grid-template-columns: 1fr; gap: 16px; margin-top: 40px; }
  .tcard { padding: 32px 24px; gap: 16px; }
  .tcard-text { font-size: 17px; }

  /* ── CTA ── */
  .cta-title { font-size: 40px; line-height: 1.0; margin-bottom: 20px; }
  .cta-sub { font-size: 15px; margin-bottom: 36px; }
  .cta-form { flex-direction: column; gap: 12px; }
  .cta-input { border-radius: 12px; text-align: center; }
  .cta-btn { border-radius: 12px; padding: 16px; width: 100%; }

  /* ── FOOTER ── */
  footer { padding: 40px 20px; flex-direction: column; gap: 24px; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; gap: 20px; }

  /* ── MODAL ── */
  .modal-overlay { align-items: flex-end; padding: 0; }
  .modal {
    border-radius: 24px 24px 0 0;
    padding: 36px 24px 48px;
    max-width: 100%;
    max-height: 92svh;
    overflow-y: auto;
    transform: translateY(100%);
  }
  .modal-overlay.open .modal { transform: translateY(0); }
  .modal-title { font-size: 26px; }
  .modal-sub { font-size: 14px; margin-bottom: 20px; }
  .modal-preview { padding: 16px; }
  .form-input { font-size: 16px; } /* prevent iOS zoom */
}
