/* ============================================================
   IBENEFIT — PIXEL PERFECT CLONE
   Colors: bg #0a0a0a | orange #D4500A (#FF9A3C light)
   Fonts: Syne (headings) + DM Sans (body)
   ============================================================ */

/* ---- INTRO SECTION ---- */
.intro-section {
  min-height: 100vh;
  background-color: #0a0a0a;
  background-image: linear-gradient(to bottom, rgba(10,10,10,0.72) 0%, rgba(10,10,10,0.88) 100%), url('https://images.unsplash.com/photo-1571019613454-1cb2f99b2d8b?w=1920');
  background-size: cover;
  background-position: center top;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  padding-top: clamp(40px, 8vh, 80px);
}
.intro-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.intro-logo {
  width: clamp(200px, 38vw, 400px);
  height: auto;
  mix-blend-mode: screen;
}
@media (min-width: 769px) {
  .intro-logo { width: min(60vw, 60vh); }
}
.intro-uvp {
  font-family: var(--font-body);
  font-size: clamp(28px, 5vw, 56px);
  font-weight: 700;
  color: rgba(255,255,255,0.88);
  text-align: center;
  max-width: 680px;
  line-height: 1.55;
  margin: 0 16px;
}
.intro-section .measure-tagline {
  font-size: 15px;
  margin-top: 8px;
}
.intro-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  color: #555;
  animation: introScrollBounce 1.6s ease-in-out infinite;
  transition: color 0.2s;
}
.intro-scroll-hint:hover { color: #FF9A3C; }
@media (max-width: 768px) {
  .intro-section {
    min-height: 100vh;
    background-size: cover;
    background-position: center center;
    padding-top: clamp(24px, 5vw, 48px);
    padding-bottom: clamp(48px, 10vw, 80px);
  }
}
@keyframes introScrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

:root {
  --bg: #0a0a0a;
  --bg-card: #111111;
  --bg-card2: #161616;
  --orange: #D4500A;
  --orange-light: #FF9A3C;
  --orange-gradient: linear-gradient(135deg, #D4500A 0%, #FF9A3C 100%);
  --white: #ffffff;
  --muted: #888888;
  --border: #222222;
  --text: #e8e8e8;
  --font-head: 'CameraPlain', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --font-mono: 'Space Mono', monospace;
  --max-w: 1200px;
  --nav-h: 72px;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  max-width: 100%;
}

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

/* ---- UTILITIES ---- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 32px; }
.text-orange { color: var(--orange-light); }
.text-muted { color: var(--muted); }
.text-center { text-align: center; }

/* ---- FADE UP ANIMATION ---- */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s ease calc(var(--delay, 0s)), transform 0.65s ease calc(var(--delay, 0s));
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-block;
  background: var(--orange-gradient);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.03em;
  padding: 14px 28px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.15s;
  white-space: nowrap;
}
.btn-primary:hover { opacity: 0.9; transform: translateY(-1px); }
.btn-primary:active { transform: translateY(0); }
.btn-primary:disabled { opacity: 0.4; cursor: not-allowed; transform: none; }
.btn-full { width: 100%; text-align: center; font-size: 18px; padding: 16px 24px; }
.btn-large { font-size: 18px; padding: 18px 40px; }

/* ---- NAVBAR ---- */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  gap: 48px;
}
.nav-logo {
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-logo img {
  height: 56px;
  width: auto;
  display: block;
  transform: scale(0.8);
  transform-origin: center center;
}
.intro-content .nav-logo img { height: 1022px; width: auto; }
.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
  flex: 1;
}
.nav-links a {
  font-size: 14px;
  color: var(--muted);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }
.nav-cta { margin-left: auto; flex-shrink: 0; padding: 8px 20px !important; font-size: 18px !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: all 0.3s; }
.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 16px 32px 24px;
  gap: 12px;
  border-top: 1px solid var(--border);
}
.mobile-menu a { font-size: 15px; color: var(--muted); padding: 8px 0; }
.mobile-menu a.btn-primary { color: #fff; margin-top: 8px; text-align: center; }
.mobile-menu.open { display: flex; }

/* ---- HERO ---- */
.hero {
  padding-top: calc(var(--nav-h) + 60px);
  padding-bottom: 80px;
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid var(--orange);
  color: var(--orange-light);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 400;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}
.badge-pill--mono {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  margin-bottom: 32px;
}
.hero-title {
  font-family: var(--font-head);
  font-size: clamp(36px, 5vw, 70px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 24px;
}
.hero-desc {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 560px;
}
.hero-form-box {
  background: #111111;
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 28px;
  position: relative;
  box-shadow: 0 0 40px rgba(212, 80, 10, 0.25);
}
.hero-form-box::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, #D4500A, #FF9A3C);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.form-title {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--orange-light);
  margin-bottom: 20px;
}
.signup-form { display: flex; flex-direction: column; gap: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.signup-form input[type="text"],
.signup-form input[type="email"],
.signup-form input[type="tel"],
.modal-form input[type="text"],
.modal-form input[type="email"],
.modal-form input[type="tel"] {
  background: #1a1a1a;
  border: 1px solid #1f1f1f;
  border-radius: 8px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  padding: 14px 16px;
  width: 100%;
  outline: none;
  transition: border-color 0.2s;
}
.signup-form input:focus,
.modal-form input:focus { border-color: var(--orange); }
.signup-form input::placeholder { color: #555; }
.form-guide-nudge {
  font-size: 13px;
  color: var(--orange-light);
  text-align: center;
  line-height: 1.5;
  padding: 10px 12px;
  border: 1px solid rgba(212, 80, 10, 0.3);
  border-radius: 8px;
  background: rgba(212, 80, 10, 0.07);
}
.form-guide-nudge strong { color: #fff; }
.field-wrap { display: flex; flex-direction: column; }
.field-wrap input { width: 100%; }
.form-submit-error {
  font-size: 13px;
  color: #ff5a5a;
  text-align: center;
  padding: 10px 12px;
  border: 1px solid rgba(229, 62, 62, 0.35);
  border-radius: 8px;
  background: rgba(229, 62, 62, 0.07);
  font-family: var(--font-body);
  line-height: 1.4;
}
.input-error { border-color: #e53e3e !important; }
.input-error:focus { border-color: #e53e3e !important; }
.field-error-msg {
  font-size: 11px;
  color: #ff5a5a;
  font-family: var(--font-body);
  margin-top: 5px;
  line-height: 1.3;
}
.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--muted);
  cursor: pointer;
  line-height: 1.5;
}
.checkbox-label input[type="checkbox"] {
  width: 16px;
  height: 16px;
  min-width: 16px;
  margin-top: 1px;
  accent-color: var(--orange);
  cursor: pointer;
}
.link-orange { color: var(--orange-light); text-decoration: underline; }
.form-micro {
  font-size: 12px;
  color: var(--muted);
  text-align: center;
  margin-top: 4px;
}
.trust-badges { display: flex; flex-wrap: wrap; gap: 10px; }
.trust-badge {
  font-size: 12px;
  font-family: var(--font-mono);
  color: var(--muted);
  border: 1px solid var(--border);
  padding: 6px 12px;
  border-radius: 999px;
}
.hero-right {}
.hero-img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  border-radius: 16px;
  filter: brightness(0.9);
}

/* ---- SECTIONS SHARED ---- */
section { padding: 100px 0; }
.section-headline {
  font-family: var(--font-head);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 20px;
}
.section-sub {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 680px;
  margin: 0 auto 56px;
}

/* ---- PROBLEM ---- */
.problem-section { background: #0a0a0a; }
.problem-image-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}
.problem-image-item {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
}
.problem-image-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  filter: brightness(0.5);
  display: block;
}
.problem-image-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 16px 16px;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 100%);
  font-family: var(--font-head);
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  text-align: center;
  line-height: 1.3;
}
.problem-quote {
  font-family: var(--font-head);
  font-size: clamp(16px, 2vw, 24px);
  font-weight: 600;
  color: var(--white);
  font-style: italic;
  line-height: 1.3;
  text-align: center;
  margin-bottom: 64px;
  opacity: 0.85;
}
@media (max-width: 768px) {
  .problem-image-grid { grid-template-columns: 1fr; gap: 12px; }
  .problem-image-item img { height: 220px; }
}
.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.pain-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  transition: border-color 0.25s;
}
.pain-card:hover { border-color: #444; }
.pain-icon { font-size: 28px; margin-bottom: 14px; }
.pain-card h3 {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 10px;
}
.pain-card p { font-size: 14px; color: #b0b0b0; line-height: 1.6; }

/* ---- SOLUTION ---- */
.solution-section { background: var(--bg); }
.solution-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
}
.solution-step {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 28px;
  position: relative;
  text-align: center;
}
.step-icon { font-size: 36px; margin-bottom: 16px; }
.solution-step h3 {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 12px;
}
.solution-step p { font-size: 14px; color: #b0b0b0; line-height: 1.6; }
.step-arrow {
  position: absolute;
  top: 50%; right: -20px;
  transform: translateY(-50%);
  font-size: 24px;
  color: var(--orange);
  z-index: 1;
}

/* ---- HOW IT WORKS ---- */
.how-section { background: var(--bg-card); }
.steps-list { display: flex; flex-direction: column; gap: 0; max-width: 760px; margin: 0 auto; }
.step-item {
  display: flex;
  gap: 32px;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}
.step-item:last-child { border-bottom: none; }
.step-number {
  font-family: var(--font-mono);
  font-size: 36px;
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
  min-width: 60px;
}
.step-content h3 {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 8px;
}
.step-content p { font-size: 15px; color: #b0b0b0; line-height: 1.6; }

/* ---- BENEFITS ---- */
.benefits-section { background: var(--bg); }
.benefits-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.benefits-list { list-style: none; margin: 28px 0 36px; display: flex; flex-direction: column; gap: 14px; }
.benefits-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--text);
}
.check { color: var(--orange-light); font-weight: 700; flex-shrink: 0; }
.benefits-right img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  border-radius: 16px;
}

/* ---- TEAM ---- */
.team-section { background: var(--bg-card); }
.tags-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-bottom: 32px; }
.tag {
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 7px 16px;
  font-size: 13px;
  color: var(--muted);
  background: var(--bg);
}
.collab-line {
  text-align: center;
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 48px;
}
.collab-line strong { color: var(--white); }
.founder-quote {
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 40px;
  font-style: italic;
  font-size: 17px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto;
}
.founder-quote strong { color: var(--white); font-style: normal; }

/* ---- STATS ---- */
.stats-section { background: var(--bg); }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 24px;
  justify-content: center;
}
.stat-item { text-align: center; }
.stat-number {
  font-family: var(--font-mono);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  color: var(--orange-light);
  line-height: 1.1;
  margin-bottom: 8px;
}
.stat-label { font-size: 14px; color: var(--muted); line-height: 1.5; }
.stats-source { text-align: center; font-size: 12px; color: #555; font-style: italic; }
.stat-source-tag { font-size: 10px; font-family: var(--font-mono); color: #555; margin-top: 8px; letter-spacing: 0.03em; line-height: 1.4; }
/* DEV WARNING — set display:none before going live */
.dev-warning { display: block; background: #ff9900; color: #000; font-weight: 700; font-size: 13px; text-align: center; padding: 10px 16px; border-radius: 6px; margin-bottom: 24px; }

/* ---- TESTIMONIALS ---- */
.testimonials-section { background: var(--bg-card); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
}
.testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--orange-gradient);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 18px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.testimonial-card blockquote {
  font-style: italic;
  font-size: 14px;
  color: #b0b0b0;
  line-height: 1.7;
  margin-bottom: 20px;
}
.testimonial-author strong { display: block; font-size: 14px; color: var(--white); font-weight: 600; }
.testimonial-author span { font-size: 12px; color: var(--muted); }

/* ---- CTA FORM SECTION ---- */
.cta-section { background: linear-gradient(180deg, var(--bg) 0%, #1a0a00 100%); }
.cta-form-box {
  background: #111111;
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 40px 48px;
  max-width: 560px;
  margin: 0 auto;
  position: relative;
  box-shadow: 0 0 40px rgba(212, 80, 10, 0.2);
}
.cta-form-box::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, #D4500A, #FF9A3C);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.progress-bar-section { margin-top: 0; margin-bottom: 28px; }
.progress-labels {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  margin-bottom: 10px;
}
.progress-label-main {
  font-size: 14px;
  color: var(--white);
}
.progress-label-remaining {
  font-size: 14px;
  font-weight: 700;
  color: var(--orange-light);
}
.progress-track {
  background: var(--border);
  border-radius: 999px;
  height: 10px;
  overflow: hidden;
}
.progress-fill {
  height: 100%;
  background: var(--orange-gradient);
  border-radius: 999px;
  transition: width 1s ease;
}

/* ---- CTA URGENCY TEXT ---- */
.cta-urgency-text {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--orange-light);
  text-align: center;
  letter-spacing: 0.04em;
  margin-bottom: 24px;
}

/* ---- HERO URGENCY ---- */
.hero-urgency {
  display: flex;
  align-items: center;
  margin-top: 16px;
}

/* ---- CENTERED BADGE PILL (CTA section header) ---- */
.text-center-pill {
  display: flex;
  justify-content: center;
  margin: 0 auto 20px;
}

/* ---- FAQ ---- */
.faq-section { background: var(--bg-card); }
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--bg-card2);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  text-align: left;
  padding: 20px 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--orange-light); }
.faq-arrow { color: var(--orange); font-size: 18px; transition: transform 0.3s; flex-shrink: 0; }
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s;
}
.faq-answer p {
  padding: 0 24px 20px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
}
.faq-item.open .faq-answer { max-height: 300px; }

/* ---- BOTTOM CTA ---- */
.bottom-cta-section { background: var(--bg); }
.bottom-cta-title {
  font-family: var(--font-head);
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 24px;
}
.micro-text { font-size: 13px; color: var(--muted); margin-top: 16px; }
.measure-tagline {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--muted);
  margin-top: 48px;
}

/* ---- LEGAL ACCORDION ---- */
.legal-accordion-section {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 0 32px;
}
.legal-accordion__item {
  border-bottom: 1px solid var(--border);
}
.legal-accordion__item:first-child {
  border-top: none;
}
.legal-accordion__title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--muted);
  cursor: pointer;
  list-style: none;
  user-select: none;
}
.legal-accordion__title::-webkit-details-marker { display: none; }
.legal-accordion__title::after {
  content: '▾';
  font-size: 14px;
  transition: transform 0.2s;
}
.legal-accordion__item[open] > .legal-accordion__title::after {
  transform: rotate(180deg);
}
.legal-accordion__content {
  padding: 0 0 28px;
  color: var(--text);
  font-size: 14px;
  line-height: 1.75;
}

/* ---- FOOTER ---- */
.footer {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  padding: 48px 32px 0;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding-bottom: 32px;
  text-align: center;
}
.footer-logo { height: 102px; width: auto; }
.footer-links { display: flex; align-items: center; gap: 12px; font-size: 14px; color: var(--muted); }
.footer-links a:hover { color: var(--white); }
.footer-copy { font-size: 13px; color: var(--muted); }
.footer-social { display: flex; align-items: center; gap: 12px; }
.footer-social__link { display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; border: 1px solid var(--border); border-radius: 8px; color: var(--muted); transition: color 0.2s, border-color 0.2s; }
.footer-social__link:hover { color: var(--white); border-color: var(--orange-light); }
.footer-bar {
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  max-width: var(--max-w);
  margin: 0 auto;
  font-size: 13px;
  color: var(--muted);
}
.footer-bar a { color: var(--orange-light); font-weight: 600; }

/* ---- MODAL ---- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.modal-overlay.visible { opacity: 1; pointer-events: all; }
.modal-box {
  background: #111111;
  border: 1px solid transparent;
  border-radius: 20px;
  padding: 40px;
  max-width: 520px;
  width: calc(100% - 48px);
  position: relative;
  transform: translateY(20px);
  transition: transform 0.3s;
  box-shadow: 0 0 40px rgba(212, 80, 10, 0.2);
}
.modal-box::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, #D4500A, #FF9A3C);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.modal-overlay.visible .modal-box { transform: translateY(0); }
.modal-close {
  position: absolute;
  top: 16px; right: 20px;
  background: none;
  border: none;
  color: var(--muted);
  font-size: 20px;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
}
.modal-close:hover { color: var(--white); }
.modal-title {
  font-family: var(--font-head);
  font-size: 26px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 14px;
}
.modal-sub { font-size: 15px; color: var(--muted); margin-bottom: 28px; line-height: 1.6; }
.modal-form { display: flex; flex-direction: column; gap: 14px; }

/* ---- SUCCESS STATE ---- */
.form-success {
  text-align: center;
  padding: 32px 0;
  display: none;
}
.form-success h3 { font-family: var(--font-head); font-size: 22px; color: var(--white); margin-bottom: 8px; }
.form-success p { color: var(--muted); font-size: 14px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .benefits-inner { grid-template-columns: 1fr; }
  .benefits-right { display: none; }
  .stats-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .pain-grid { grid-template-columns: repeat(2, 1fr); }
  .solution-steps { grid-template-columns: 1fr; }
  .step-arrow { display: none; }
  .testimonials-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --nav-h: 60px; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; margin-left: auto; }
  .container { padding: 0 20px; }
  .nav-inner { padding: 0 16px; gap: 16px; }
  .hero-inner { padding: 0 20px; }
  section { padding: 64px 0; }
  .hero { padding-top: calc(var(--nav-h) + 40px); padding-bottom: 60px; }
  .hero-title { font-size: clamp(30px, 8vw, 46px); }
  .form-row { grid-template-columns: 1fr; }
  .pain-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .cta-form-box { padding: 28px 20px; }
  .founder-quote { padding: 24px 28px; }
  .footer-inner { gap: 12px; }
  .footer-bar { flex-direction: column; gap: 8px; text-align: center; }
  .bottom-cta-title { font-size: clamp(28px, 7vw, 48px); }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .hero-form-box { padding: 20px 16px; }
  .cta-form-box { padding: 24px 16px; }
  .modal-box { padding: 28px 20px; }
}

/* ---- STICKY BOTTOM BAR (mobile only) ---- */
.sticky-bar {
  display: none; /* hidden on desktop by default */
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  background: var(--orange-gradient);
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  gap: 12px;
}
.sticky-bar.is-visible {
  transform: translateY(0);
}
.sticky-bar__text {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--white);
  font-size: 14px;
  letter-spacing: -0.02em;
  flex: 1;
}
.sticky-bar__btn {
  background: var(--white);
  color: var(--orange);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: -0.02em;
  padding: 8px 16px;
  border-radius: 6px;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: opacity 0.2s;
}
.sticky-bar__btn:hover { opacity: 0.85; }

@media (max-width: 768px) {
  .sticky-bar { display: flex; }
}

/* ---- EXIT INTENT POPUP (desktop only) ---- */
.exit-popup {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.exit-popup.is-open {
  opacity: 1;
  pointer-events: all;
}
.exit-popup__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
}
.exit-popup__modal {
  position: relative;
  max-width: 480px;
  width: 90%;
  background: var(--bg-card);
  border: 2px solid var(--orange);
  border-radius: 12px;
  padding: 32px;
  z-index: 1;
  box-shadow: 0 0 48px rgba(212, 80, 10, 0.3);
}
.exit-popup__close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 20px;
  cursor: pointer;
  line-height: 1;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.exit-popup__close:hover { opacity: 1; }
.exit-popup__title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.03em;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 12px;
  padding-right: 24px;
}
.exit-popup__body {
  color: rgba(255, 255, 255, 0.75);
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 24px;
}
.exit-popup__form {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.exit-popup__input {
  display: block;
  width: 100%;
  margin-bottom: 12px;
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s;
}
.exit-popup__input::placeholder { color: rgba(255, 255, 255, 0.35); }
.exit-popup__input:focus { border-color: var(--orange); }
.exit-popup__submit {
  display: block;
  width: 100%;
  padding: 14px;
  background: var(--orange-gradient);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.02em;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.15s;
  margin-top: 4px;
}
.exit-popup__submit:hover { opacity: 0.9; transform: translateY(-1px); }
.exit-popup__submit:active { transform: translateY(0); }

/* Desktop only — hide on mobile */
@media (max-width: 768px) {
  .exit-popup { display: none; }
}
