/* NAV */
.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-cta {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--border);
  padding: 6px 16px;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}

.nav-cta:hover {
  background: var(--amber-dim);
  border-color: var(--border);
}

/* HERO */
.sma-hero {
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding-top: 56px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.sma-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(200, 146, 42, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(200, 146, 42, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.sma-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 30%, rgba(200, 146, 42, 0.07) 0%, transparent 60%);
  pointer-events: none;
}

.sma-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 32px;
  position: relative;
  z-index: 1;
  width: 100%;
}

.sma-hero-headline {
  font-family: var(--font-display);
  font-size: clamp(64px, 10vw, 110px);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 0.92;
  letter-spacing: -0.01em;
  color: var(--fg);
  margin-bottom: 28px;
}

.sma-hero-accent {
  color: var(--accent);
}

.sma-hero-sub {
  font-size: 16px;
  color: var(--fg-muted);
  max-width: 560px;
  line-height: 1.75;
  margin-bottom: 32px;
}

.sma-hero-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.sma-hero-cta-note {
  font-size: 13px;
  color: var(--fg-muted);
  margin-top: 14px;
}

.sma-hero-cta-note a {
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.sma-hero-cta-note a:hover {
  color: var(--accent);
}

/* SHARED BUTTON */
.btn-primary {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 32px;
  background: var(--accent);
  color: var(--bg);
  border: 1px solid var(--accent);
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}

.btn-primary:hover {
  background: var(--amber);
  border-color: var(--amber);
}

/* OUTCOMES */
.sma-outcomes {
  padding: 100px 0;
  border-top: 1px solid var(--border-dim);
  background: var(--bg-alt);
}

.sma-outcomes-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.sma-outcomes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.sma-outcome-card {
  background: var(--bg-panel);
  border: 1px solid var(--border-dim);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sma-outcome-number {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--accent);
  font-weight: 700;
}

.sma-outcome-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--fg);
}

.sma-outcome-desc {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.75;
}

/* PROCESS */
.sma-process {
  padding: 100px 0;
  border-top: 1px solid var(--border-dim);
  background: var(--bg);
}

.sma-process-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

.sma-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 48px;
}

.sma-step {
  background: var(--bg-panel);
  border: 1px solid var(--border-dim);
  padding: 32px;
  position: relative;
}

.sma-step-num {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 800;
  color: var(--border);
  line-height: 1;
  margin-bottom: 16px;
}

.sma-step-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--fg);
  margin-bottom: 10px;
}

.sma-step-body {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* PROOF */
.sma-proof {
  padding: 100px 0;
  border-top: 1px solid var(--border-dim);
  background: var(--bg-alt);
}

.sma-proof-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 32px;
  text-align: center;
}

.sma-quote {
  font-size: 18px;
  font-style: italic;
  color: var(--fg);
  line-height: 1.75;
  margin-bottom: 20px;
  border-left: 3px solid var(--accent);
  padding-left: 28px;
  text-align: left;
}

.sma-quote-attr {
  font-size: 12px;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: var(--font-display);
  font-weight: 600;
  text-align: left;
  padding-left: 31px;
}

.sma-proof-link {
  margin-top: 28px;
  font-size: 13px;
}

.sma-proof-link a {
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.sma-proof-link a:hover {
  color: var(--accent);
}

.sma-proof-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  margin-top: 48px;
  padding-top: 48px;
  border-top: 1px solid var(--border-dim);
}

.sma-stat-value {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  color: var(--accent);
  display: block;
}

.sma-stat-label {
  font-size: 12px;
  color: var(--fg-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: block;
}

/* CLOSING CTA */
.sma-cta {
  padding: 100px 0;
  border-top: 1px solid var(--border-dim);
  background: var(--bg);
}

.sma-cta-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 32px;
  text-align: center;
}

.sma-cta-body {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

.sma-cta-secondary {
  display: block;
  margin-top: 16px;
  font-size: 13px;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.sma-cta-secondary:hover {
  color: var(--accent);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .sma-outcomes-grid { grid-template-columns: 1fr; }
  .sma-steps { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .sma-hero-inner { padding: 60px 24px; }
  .sma-outcomes-inner,
  .sma-process-inner,
  .sma-proof-inner,
  .sma-cta-inner { padding: 0 24px; }
  .sma-outcomes,
  .sma-process,
  .sma-proof,
  .sma-cta { padding: 72px 0; }
}

/* EXIT-INTENT MODAL */
.sma-exit-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.sma-exit-modal[hidden] { display: none; }

.sma-exit-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 12, 15, 0.75);
  backdrop-filter: blur(2px);
}

.sma-exit-modal-card {
  position: relative;
  background: var(--bg-panel);
  border: 1px solid var(--border);
  padding: 36px 32px 32px;
  width: 100%;
  max-width: 440px;
  z-index: 1;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.55);
}

.sma-exit-modal-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent);
}

.sma-exit-modal-close {
  position: absolute;
  top: 10px;
  right: 14px;
  background: transparent;
  border: none;
  color: var(--fg-muted);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  padding: 4px 8px;
  transition: color 0.2s;
}

.sma-exit-modal-close:hover { color: var(--accent); }

.sma-exit-modal h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--fg);
  letter-spacing: 0.03em;
  line-height: 1.15;
  margin-bottom: 12px;
}

.sma-exit-modal-body {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.sma-exit-modal-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sma-exit-modal-form .btn-primary {
  border: none;
  cursor: pointer;
  text-align: center;
}

.sma-exit-msg {
  font-size: 14px;
  line-height: 1.6;
  padding: 16px;
  border: 1px solid var(--border-dim);
}

.sma-exit-success { color: #34c759; border-color: rgba(52,199,89,0.25); }
.sma-exit-error   { color: #ff453a; border-color: rgba(255,69,58,0.25); }

/* Defense-in-depth mobile gate */
@media (max-width: 767px) {
  .sma-exit-modal { display: none !important; }
}
