/*
 * AFG Segment / Role Page Stylesheet
 * Shared by all 7 /for-[role] pages.
 * Variables, typography, and component patterns match index.html exactly.
 */

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

:root {
  --bg:          #0a0a0c;
  --surface:     #111116;
  --surface2:    #18181f;
  --surface3:    #1c1c25;
  --border:      rgba(255,255,255,0.07);
  --border-mid:  rgba(255,255,255,0.10);
  --text:        #f0ede6;
  --text-dim:    rgba(240,237,230,0.78);
  --text-faint:  rgba(240,237,230,0.55);
  --gold:        #c9a84c;
  --gold-dim:    rgba(201,168,76,0.15);
  --gold-border: rgba(201,168,76,0.25);
  --radius:      6px;
  --radius-lg:   12px;
  --max:         1280px;
  --cover-placeholder: #1c1c25;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden; /* prevent any stray element from creating horizontal scroll */
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Urbanist', sans-serif;
  font-size: 18px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden; /* belt-and-suspenders: kill horizontal scroll on mobile */
}

.clash { font-family: 'Clash Display', sans-serif; font-weight: 600; }

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: rgba(10,10,12,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1600px;
  margin: 0 auto;
  padding: 10px 28px;
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.nav-logo {
  font-family: 'Clash Display', sans-serif;
  font-weight: 600;
  font-size: 17px;
  letter-spacing: 0.04em;
  color: var(--text);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-roles {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 2px 2px;
  flex: 0 1 auto; overflow-x: auto; scrollbar-width: none;
  min-width: 0;
}
.nav-roles a {
  font-size: clamp(13px, 1.05vw, 15px);
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--text-dim);
  text-decoration: none;
  padding: 6px 7px;
  border-radius: var(--radius);
  white-space: nowrap;
  transition: color 0.15s, background 0.15s;
}
.nav-roles a:hover { color: var(--text); background: rgba(255,255,255,0.05); }
.nav-roles a.is-active { color: var(--gold); }
.nav-end {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.nav-end a {
  font-size: clamp(13px, 1.05vw, 15px);
  font-weight: 500;
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.15s;
  white-space: nowrap;
}
.nav-end a:hover { color: var(--text); }
.nav-end a.is-active { color: var(--gold); }
.nav-end .btn-nav {
  background: var(--gold);
  color: #0a0a0c;
  padding: 8px 18px;
  border-radius: var(--radius);
  font-size: clamp(13px, 1.05vw, 15px);
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: background 0.15s;
}
.nav-end .btn-nav:hover { background: #d4b566; color: #0a0a0c; }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  padding-top: 60px;
}
/* Inner grid wrapper — constrains both columns to centered max-width
   while .hero-bg stays full-bleed behind it (matches index.html pattern) */
.hero-inner {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% center;
  display: block;
  opacity: 0.68;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right,
      rgba(10,10,12,0.97) 0%,
      rgba(10,10,12,0.88) 38%,
      rgba(10,10,12,0.45) 62%,
      rgba(10,10,12,0.18) 100%),
    linear-gradient(to top,
      rgba(10,10,12,0.92) 0%,
      rgba(10,10,12,0.30) 30%,
      transparent 55%);
}
/* Gradient fallback when no city image is available */
.hero-bg-gradient {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.hero-left {
  position: relative;
  z-index: 10;
  padding: 88px 48px 56px 56px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 22px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}
.hero-pain {
  font-size: clamp(19px, 1.9vw, 24px);
  font-weight: 500;
  color: var(--text-dim);
  line-height: 1.4;
  margin-bottom: 22px;
  max-width: 500px;
}
.hero-pain em { font-style: normal; color: var(--text); font-weight: 600; }
.hero-headline {
  font-family: 'Clash Display', sans-serif;
  font-weight: 600;
  font-size: clamp(46px, 5.6vw, 80px);
  line-height: 1.02;
  letter-spacing: -0.027em;
  color: var(--text);
  margin-bottom: 24px;
  white-space: pre-line;
}
.hero-headline em { font-style: normal; color: var(--gold); }
.hero-payoff {
  font-size: clamp(17px, 1.6vw, 20px);
  font-weight: 400;
  color: var(--text-dim);
  line-height: 1.6;
  max-width: 440px;
  margin-bottom: 18px;
}
.hero-secondary-paid {
  font-size: 16px;
  color: var(--text-faint);
  line-height: 1.55;
}
.hero-secondary-paid a,
.text-link-gold {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid var(--gold-border);
  transition: border-color 0.15s;
}
.hero-secondary-paid a:hover,
.text-link-gold:hover { border-color: var(--gold); }
.hero-right {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 80px 56px 64px 32px;
}
.hero-capture {
  background: rgba(10,10,12,0.90);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  padding: 36px 36px 32px;
  max-width: 420px;
  width: 100%;
  margin-left: auto;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 28px 72px rgba(0,0,0,0.55), 0 0 0 1px rgba(201,168,76,0.08);
}
.capture-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.capture-title {
  font-family: 'Clash Display', sans-serif;
  font-weight: 600;
  font-size: clamp(28px, 3vw, 36px);
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.1;
  letter-spacing: -0.018em;
}
.capture-sub {
  font-size: 16px;
  color: var(--text-dim);
  line-height: 1.6;
  margin-bottom: 20px;
}
.capture-bridge {
  font-size: 14px;
  color: var(--text-faint);
  margin-bottom: 14px;
  font-style: italic;
}
.capture-form { display: flex; flex-direction: column; gap: 10px; }
.capture-form input[type="email"] {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-mid);
  border-radius: var(--radius);
  padding: 13px 16px;
  font-family: 'Urbanist', sans-serif;
  font-size: 16px;
  color: var(--text);
  outline: none;
  transition: border-color 0.15s;
  width: 100%;
}
.capture-form input[type="email"]::placeholder { color: var(--text-faint); }
.capture-form input[type="email"]:focus { border-color: var(--gold); }
.btn-primary {
  background: var(--gold);
  color: #0a0a0c;
  border: none;
  border-radius: var(--radius);
  padding: 13px 20px;
  font-family: 'Urbanist', sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 0.15s, transform 0.1s;
  text-align: center;
  width: 100%;
  display: block;
}
.btn-primary:hover { background: #d4b566; transform: translateY(-1px); }
.btn-primary:active { transform: translateY(0); }
.capture-fine {
  font-size: 13px;
  color: var(--text-faint);
  text-align: center;
  margin-top: 4px;
}
.form-success-msg {
  display: none;
  font-size: 14px;
  color: var(--gold);
  padding: 14px;
  text-align: center;
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  background: var(--gold-dim);
  margin-top: 6px;
}

/* ── SHARED SECTIONS ── */
section { position: relative; }
.section-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 96px 40px;
}
.section-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.section-label::before {
  content: '';
  display: block;
  width: 22px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}
.section-heading {
  font-family: 'Clash Display', sans-serif;
  font-weight: 600;
  font-size: clamp(28px, 3vw, 46px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 14px;
}
.section-sub {
  font-size: 18px;
  color: var(--text-dim);
  max-width: 540px;
  line-height: 1.65;
}
.divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(201,168,76,0.22) 50%, transparent 100%);
}

/* ── LOSS-FRAME BRIDGE ── */
.loss-frame-section {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.loss-frame-inner {
  max-width: 640px;
  margin: 0 auto;
  padding: 48px 40px;
}
.loss-frame-text {
  font-size: 18px;
  color: var(--text-dim);
  line-height: 1.7;
}
.loss-frame-text strong { color: var(--text); font-weight: 600; }

/* ── GUIDES SECTION ── */
.guides-section { background: var(--bg); }
.guides-header { margin-bottom: 56px; }

/* Bundle card */
.bundle-card-wrapper { margin-bottom: 64px; }
.bundle-card {
  background: var(--surface2);
  border: 1px solid var(--gold-border);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  max-width: 780px;
}
.bundle-card-header { margin-bottom: 20px; }
.bundle-tool-tags {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 10px;
}
.bundle-card-name {
  font-family: 'Clash Display', sans-serif;
  font-weight: 600;
  font-size: clamp(22px, 2.4vw, 32px);
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.1;
}
.bundle-card-tagline {
  font-size: 16px;
  color: var(--text-dim);
  line-height: 1.6;
}
.bundle-card-price-row {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 12px;
}
.bundle-price {
  font-family: 'Clash Display', sans-serif;
  font-weight: 600;
  font-size: clamp(32px, 3.5vw, 48px);
  color: var(--gold);
  line-height: 1;
}
.bundle-list-price {
  font-size: 14px;
  color: var(--text-faint);
  text-decoration: line-through;
}
.bundle-savings {
  font-size: 13px;
  color: var(--gold);
  font-weight: 600;
}
.bundle-card-meta {
  font-size: 12px;
  color: var(--text-faint);
  margin-bottom: 24px;
}
.btn-bundle {
  width: auto;
  display: inline-block;
  padding: 13px 28px;
  font-size: 14px;
  margin-bottom: 12px;
}
.bundle-detail-link {
  display: block;
  font-size: 16px;
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.15s;
  margin-top: 4px;
}
.bundle-detail-link:hover { color: var(--text); }

/* Tool groups */
.tool-group { margin-bottom: 56px; }
.tool-group:last-child { margin-bottom: 0; }
.tool-group-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--border);
}
.tool-label {
  font-family: 'Clash Display', sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 4px 10px;
  border: 1px solid var(--gold-border);
  border-radius: 4px;
  background: var(--gold-dim);
}
.tool-descriptor {
  font-size: 16px;
  color: var(--text-dim);
  line-height: 1.6;
}

/* Guide card grid */
.guide-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.guide-card {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, transform 0.2s;
}
.guide-card:hover {
  border-color: var(--gold-border);
  transform: translateY(-2px);
}
.guide-card-cover-link { display: block; text-decoration: none; }
.guide-card-cover {
  position: relative;
  aspect-ratio: 2/3;
  background: var(--cover-placeholder);
  overflow: hidden;
}
.guide-card-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.2s;
}
.cover-gradient-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,12,0.40) 0%, transparent 50%);
}
.guide-card-body {
  padding: 16px 18px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.guide-card-title {
  font-family: 'Clash Display', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: var(--text);
  text-decoration: none;
  line-height: 1.25;
  margin-bottom: 8px;
  display: block;
}
.guide-card-title:hover { color: var(--gold); }
.guide-card-tagline {
  font-size: 16px;
  color: var(--text-dim);
  line-height: 1.6;
  margin-bottom: 14px;
  flex: 1;
}
.guide-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.tier-badge {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 3px 7px;
  border-radius: 3px;
}
.tier-free     { background: rgba(255,255,255,0.07); color: var(--text-dim); }
.tier-beginner { background: rgba(201,168,76,0.15);  color: var(--gold); border: 1px solid var(--gold-border); }
.tier-intermediate { background: rgba(120,100,200,0.12); color: #a090e0; border: 1px solid rgba(120,100,200,0.25); }
.tier-professional { background: rgba(200,80,80,0.10);  color: #d08080; border: 1px solid rgba(200,80,80,0.20); }
.guide-price {
  font-family: 'Clash Display', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: var(--text);
}
.btn-guide-buy {
  width: 100%;
  padding: 10px 14px;
  font-size: 12.5px;
  margin-bottom: 8px;
}
.btn-guide-free {
  display: block;
  text-align: center;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-dim);
  text-decoration: none;
  padding: 10px 14px;
  border: 1px solid var(--border-mid);
  border-radius: var(--radius);
  transition: border-color 0.15s, color 0.15s;
  margin-bottom: 8px;
}
.btn-guide-free:hover { border-color: var(--gold-border); color: var(--gold); }
.kindle-link {
  display: block;
  font-size: 11px;
  color: var(--text-faint);
  text-decoration: none;
  text-align: center;
  transition: color 0.15s;
}
.kindle-link:hover { color: var(--text-dim); }

/* Specialist sub-group (Business Owner only) */
.specialist-group {
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}
.specialist-group-label { margin-bottom: 32px; }
.specialist-desc {
  font-size: 16px;
  color: var(--text-dim);
  margin-top: 10px;
  max-width: 600px;
  line-height: 1.6;
}

/* Marketer tool lanes */
.marketer-tool-lanes {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 40px;
}
.tool-lane-card {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: border-color 0.2s;
  min-width: 0;
}
.tool-lane-card:hover { border-color: var(--gold-border); }
.tool-lane-range {
  font-size: 11px;
  color: var(--text-faint);
  display: block;
  margin-top: 4px;
}
.tool-lane-bundle-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}
/* Override global .bundle-price size inside lane cards so 5 lanes fit at 1024-1440px */
.tool-lane-bundle-price .bundle-price {
  font-size: clamp(22px, 2vw, 30px);
}
.bundle-label {
  font-size: 11px;
  color: var(--text-faint);
}
.tool-lane-guide-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.tool-lane-guide-list li {
  font-size: 11px;
  color: var(--text-dim);
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.guide-lane-title { flex: 1; min-width: 0; }
.tool-lane-or {
  font-size: 10px;
  color: var(--text-faint);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-align: center;
  padding: 4px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.tool-lane-individual {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.tool-lane-individual li { font-size: 11px; }
.text-link-dim {
  color: var(--text-dim);
  text-decoration: none;
  transition: color 0.15s;
}
.text-link-dim:hover { color: var(--gold); }
.marketer-stack-note {
  font-size: 14px;
  color: var(--text-faint);
  line-height: 1.6;
  max-width: 600px;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
}

/* ── PROOF SECTION ── */
.proof-section {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.proof-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 64px 40px;
  text-align: center;
}
.proof-stars {
  color: var(--gold);
  font-size: 18px;
  letter-spacing: 4px;
  margin-bottom: 20px;
}
.proof-quote {
  font-family: 'Clash Display', sans-serif;
  font-weight: 600;
  font-size: clamp(19px, 2.2vw, 28px);
  color: var(--text);
  line-height: 1.3;
  letter-spacing: -0.015em;
  margin-bottom: 18px;
  font-style: normal;
}
.proof-cite {
  font-size: 13px;
  color: var(--text-dim);
  font-style: normal;
  letter-spacing: 0.03em;
}
.proof-secondary {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.proof-quote-sm {
  font-size: clamp(15px, 1.6vw, 19px);
  color: var(--text-dim);
  line-height: 1.5;
  font-style: normal;
  margin-bottom: 12px;
  margin-top: 10px;
}

/* ── END CAPTURE ── */
.end-section {
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.end-inner {
  max-width: 660px;
  margin: 0 auto;
  padding: 96px 40px;
  text-align: center;
}
.end-inner .section-label { justify-content: center; }
.end-inner .section-label::before { display: none; }
.end-heading {
  font-family: 'Clash Display', sans-serif;
  font-weight: 600;
  font-size: clamp(28px, 3.4vw, 50px);
  line-height: 1.08;
  letter-spacing: -0.022em;
  color: var(--text);
  margin-bottom: 14px;
}
.end-heading em { font-style: normal; color: var(--gold); }
.end-sub {
  font-size: 18px;
  color: var(--text-dim);
  line-height: 1.65;
  margin-bottom: 40px;
}
.end-form {
  display: flex;
  gap: 10px;
  max-width: 440px;
  margin: 0 auto 14px;
}
.end-form input[type="email"] {
  flex: 1;
  background: var(--surface);
  border: 1px solid var(--border-mid);
  border-radius: var(--radius);
  padding: 13px 18px;
  font-family: 'Urbanist', sans-serif;
  font-size: 16px;
  color: var(--text);
  outline: none;
  transition: border-color 0.15s;
}
.end-form input[type="email"]::placeholder { color: var(--text-faint); }
.end-form input[type="email"]:focus { border-color: var(--gold); }
.end-form .btn-primary {
  width: auto;
  padding: 13px 22px;
  font-size: 13.5px;
  white-space: nowrap;
  display: inline-block;
}
.end-fine { font-size: 13px; color: var(--text-faint); }

/* ── FOOTER ── */
footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 56px 40px 40px;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-brand .footer-logo {
  font-family: 'Clash Display', sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.05em;
  color: var(--text);
  margin-bottom: 12px;
}
.footer-brand p {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.7;
  max-width: 230px;
}
.footer-col h4 {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 18px;
}
.footer-col a {
  display: block;
  font-size: 14px;
  color: var(--text-dim);
  text-decoration: none;
  margin-bottom: 10px;
  transition: color 0.15s;
}
.footer-col a:hover { color: var(--text); }
.footer-bottom {
  max-width: var(--max);
  margin: 0 auto;
  padding: 18px 40px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border);
  gap: 16px;
}
.footer-bottom p, .footer-bottom a {
  font-size: 11.5px;
  color: var(--text-faint);
  text-decoration: none;
}
.footer-bottom a:hover { color: var(--text-dim); }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .hero { min-height: auto; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-bg::after {
    background: linear-gradient(to bottom,
      rgba(10,10,12,0.88) 0%,
      rgba(10,10,12,0.60) 50%,
      rgba(10,10,12,0.96) 100%);
  }
  .hero-left { padding: 72px 28px 36px; min-height: 52vh; }
  .hero-right { padding: 0 28px 64px; justify-content: flex-start; }
  .hero-capture { margin-left: 0; max-width: 100%; }
  .nav-roles { display: none; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .bundle-card { padding: 28px 24px; }
  .marketer-tool-lanes { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
  .nav-inner { padding: 0 20px; }
  .section-inner { padding: 72px 24px; }
  .loss-frame-inner { padding: 40px 24px; }
  .end-form { flex-direction: column; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
  .guide-card-grid { grid-template-columns: 1fr 1fr; }
  .marketer-tool-lanes { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .marketer-tool-lanes { grid-template-columns: 1fr; }

  /* ── Mobile headline overflow fix ── */
  .hero-left { padding-left: 24px; padding-right: 24px; max-width: 100%; overflow: hidden; }
  .hero-headline {
    font-size: clamp(32px, 9vw, 46px);
    overflow-wrap: break-word;
    word-break: break-word;
    hyphens: auto;
    max-width: 100%;
    white-space: normal;
  }
  .hero-pain {
    overflow-wrap: break-word;
    word-break: break-word;
    hyphens: auto;
    max-width: 100%;
    white-space: normal;
  }
  .section-heading {
    overflow-wrap: break-word;
    word-break: normal;
    hyphens: auto;
    max-width: 100%;
  }
  .end-heading {
    overflow-wrap: break-word;
    word-break: normal;
    hyphens: auto;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  /* ── Tighter mobile: step down further to prevent mid-letter clip ── */
  .hero-headline {
    font-size: clamp(28px, 8vw, 38px);
  }
  .section-heading {
    font-size: clamp(22px, 7vw, 32px);
  }
  .hero-left { padding-left: 20px; padding-right: 20px; }
  .section-inner { padding-left: 20px; padding-right: 20px; }
  .end-inner { padding-left: 20px; padding-right: 20px; }
}
