/* ============================================================
   DEPLOYD — dark page styles
   Used by industry landing pages and blog pages.
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:           #080604;
  --bg-deep:      #050302;
  --surface:      #111009;
  --surface2:     #191510;
  --surface3:     #1f1a13;
  --border:       rgba(255,255,255,0.07);
  --border-soft:  rgba(255,255,255,0.04);
  --border-mid:   rgba(255,255,255,0.12);
  --accent:       #c4520a;
  --accent-warm:  #e0701f;
  --accent-dim:   rgba(196,82,10,0.15);
  --accent-ring:  rgba(196,82,10,0.4);
  --text:         #f0ebe2;
  --text-soft:    rgba(240,235,226,0.85);
  --muted:        rgba(240,235,226,0.55);
  --muted2:       rgba(240,235,226,0.35);
  --green:        #2dca72;
  --red:          #e05252;
  --amber:        #e0a14a;
}

html { scroll-behavior: auto; background: var(--bg); }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.55;
  min-height: 100vh;
}

h1, h2, h3, h4 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--text);
}

p { color: var(--text-soft); }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { cursor: pointer; border: none; background: none; font: inherit; color: inherit; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ─── GRAIN OVERLAY ──────────────────────────────────────────── */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  opacity: 0.03;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

/* ─── SCROLL PROGRESS ────────────────────────────────────────── */
#scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0%;
  background: var(--accent);
  z-index: 300;
  transition: width 0.05s linear;
}

/* ─── CURSOR ─────────────────────────────────────────────────── */
.cursor {
  position: fixed;
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease, width 0.2s ease, height 0.2s ease, opacity 0.2s ease;
}
.cursor-follower {
  position: fixed;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--accent-dim);
  border: 1px solid var(--accent-ring);
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: transform 0.12s ease, width 0.3s ease, height 0.3s ease, opacity 0.3s ease;
}
.cursor.expanded { width: 14px; height: 14px; }
.cursor-follower.expanded { width: 60px; height: 60px; }
@media (max-width: 768px) { .cursor, .cursor-follower { display: none; } }

/* ─── NAV ────────────────────────────────────────────────────── */
nav.dpd-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: rgba(8,6,4,0.78);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, background 0.3s ease;
}
nav.dpd-nav.scrolled {
  border-bottom-color: var(--border);
  background: rgba(8,6,4,0.92);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  padding: 0 32px;
  max-width: 1280px;
  margin: 0 auto;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.02em;
  color: var(--text);
}
.nav-logo img { height: 28px; width: auto; display: block; }
.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  align-items: center;
}
.nav-links > li { position: relative; }
.nav-links a {
  font-size: 14px;
  color: var(--muted);
  transition: color 0.2s ease;
  font-weight: 500;
}
.nav-links a:hover { color: var(--text); }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: var(--muted);
  font-weight: 500;
  cursor: pointer;
  transition: color 0.2s ease;
  background: none;
  border: none;
}
.nav-dropdown-trigger:hover { color: var(--text); }
.nav-dropdown-trigger .chev {
  display: inline-block;
  font-size: 10px;
  transition: transform 0.2s ease;
  opacity: 0.7;
}
.nav-dropdown:hover .nav-dropdown-trigger .chev,
.nav-dropdown.open .nav-dropdown-trigger .chev { transform: rotate(180deg); }
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(-4px);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 12px;
  min-width: 280px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown-menu a {
  display: block;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 13.5px;
  color: var(--text-soft);
  transition: background 0.15s ease, color 0.15s ease;
}
.nav-dropdown-menu a:hover {
  background: var(--surface2);
  color: var(--text);
}

.nav-actions { display: flex; align-items: center; gap: 12px; }

/* ─── MOBILE NAV: HAMBURGER + DRAWER ─────────────────────────── */
.nav-hamburger {
  display: none;            /* shown only on mobile via media query */
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  border-radius: 10px;
  border: 1px solid var(--border-mid);
  background: var(--surface);
  flex-shrink: 0;
}
.nav-hamburger span {
  display: block;
  width: 20px; height: 2px;
  border-radius: 2px;
  background: var(--text);
}
.dpd-mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 400;
  visibility: hidden;
  pointer-events: none;
}
.dpd-mobile-menu.open { visibility: visible; pointer-events: auto; }
.dpd-mobile-menu .mm-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.dpd-mobile-menu.open .mm-backdrop { opacity: 1; }
.dpd-mobile-menu .mm-panel {
  position: absolute;
  top: 0; right: 0;
  height: 100%;
  width: min(88vw, 372px);
  background: var(--surface);
  border-left: 1px solid var(--border);
  box-shadow: -24px 0 60px rgba(0,0,0,0.5);
  transform: translateX(100%);
  transition: transform 0.36s cubic-bezier(0.4,0,0.2,1);
  display: flex;
  flex-direction: column;
}
.dpd-mobile-menu.open .mm-panel { transform: translateX(0); }

/* header (pinned) */
.mm-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}
.mm-head .nav-logo img { height: 26px; }
.mm-close {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 10px;
  border: 1px solid var(--border-mid);
  background: var(--surface2);
  color: var(--text);
  font-size: 16px;
  line-height: 1;
}

/* scrollable body */
.mm-body {
  flex: 1 1 auto;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 8px 14px 16px;
}

/* link rows + accordion trigger share a look */
.mm-link, .mm-acc-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  padding: 15px 8px;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--text);
  background: none;
  border: none;
  border-bottom: 1px solid var(--border-soft);
  text-align: left;
  cursor: pointer;
}
.mm-link::after { content: '\2192'; color: var(--accent-warm); opacity: 0.55; font-size: 0.85em; }
.mm-link:active { color: var(--accent-warm); }

/* Industries dropdown (accordion) */
.mm-acc { border-bottom: 1px solid var(--border-soft); }
.mm-acc .mm-acc-trigger { border-bottom: none; }
.mm-chev { font-size: 12px; color: var(--accent-warm); transition: transform 0.3s ease; }
.mm-acc.open .mm-chev { transform: rotate(180deg); }
.mm-acc-panel { max-height: 0; overflow: hidden; transition: max-height 0.36s ease; }
.mm-acc.open .mm-acc-panel { max-height: 600px; }
.mm-industries {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 4px 0 14px;
}
.mm-industries a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 12px;
  border: 1px solid var(--border);
  border-radius: 12px;
  font-size: 12.5px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--text-soft);
  background: var(--surface2);
}
.mm-industries a:active { border-color: var(--accent-ring); color: var(--text); }
.mm-ind-emoji { font-size: 15px; flex-shrink: 0; }

/* footer CTAs (pinned) */
.mm-foot {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 14px 16px calc(16px + env(safe-area-inset-bottom));
  border-top: 1px solid var(--border);
  background: var(--surface);
}
.mm-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 52px;
  border-radius: 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
}
.mm-btn-primary { background: var(--accent); color: #fff; }
.mm-btn-primary:active { background: var(--accent-warm); }
.mm-btn-ghost { background: transparent; color: var(--text); border: 1px solid var(--border-mid); }

/* ─── BUTTONS ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  font-size: 14px;
  font-weight: 600;
  font-family: 'DM Sans', sans-serif;
  border-radius: 999px;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover { background: var(--accent-warm); transform: translateY(-1px); }
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-mid);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--text); }
.btn-lg { padding: 16px 28px; font-size: 15px; }
.btn-sm { padding: 8px 14px; font-size: 13px; }

/* Magnetic wrapper class for buttons */
.magnetic { transition: transform 0.2s ease; }

/* ─── SECTIONS ───────────────────────────────────────────────── */
section { position: relative; }
.section-pad { padding: 120px 0; }
.section-pad-sm { padding: 80px 0; }
@media (max-width: 768px) {
  .section-pad { padding: 80px 0; }
  .section-pad-sm { padding: 56px 0; }
  .container { padding: 0 20px; }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: var(--accent-dim);
  border: 1px solid var(--accent-ring);
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-warm);
}
.eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
}

.section-h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  margin-bottom: 24px;
  letter-spacing: -0.025em;
}
.section-sub {
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  color: var(--muted);
  max-width: 640px;
  line-height: 1.6;
}

/* ─── HERO ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  padding: 180px 0 120px;
  overflow: hidden;
}
.hero-glow {
  position: absolute;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 1000px;
  height: 600px;
  background: radial-gradient(ellipse at center, rgba(196,82,10,0.18), transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}
.hero h1 {
  font-size: clamp(2.6rem, 5.5vw, 4.6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.02;
  margin: 28px 0 24px;
}
.hero h1 .accent { color: var(--accent-warm); }
.hero-sub {
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  color: var(--muted);
  max-width: 720px;
  margin: 0 auto 36px;
  line-height: 1.6;
}
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}
.hero-trust {
  margin-top: 28px;
  font-size: 13px;
  color: var(--muted2);
}

/* ─── PROBLEM ────────────────────────────────────────────────── */
.problem-block { background: var(--bg-deep); }
.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.problem-paragraphs p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-soft);
  margin-bottom: 20px;
}
.problem-paragraphs p strong { color: var(--text); font-weight: 600; }
.problem-stat {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 32px;
  margin-bottom: 20px;
}
.problem-stat .accent { color: var(--accent-warm); font-weight: 600; }
.problem-stat-num {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--accent-warm);
  line-height: 1;
  margin-bottom: 8px;
}
.problem-stat-label {
  font-size: 14px;
  color: var(--muted);
}
@media (max-width: 900px) {
  .problem-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ─── SERVICE CARDS ──────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 28px;
  transition: border-color 0.3s ease, transform 0.3s ease, background 0.3s ease;
}
.service-card:hover {
  border-color: var(--accent-ring);
  transform: translateY(-2px);
  background: var(--surface2);
}
.service-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--accent-dim);
  border: 1px solid var(--accent-ring);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-warm);
  font-size: 20px;
  margin-bottom: 18px;
}
.service-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.015em;
}
.service-card p {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.6;
}
@media (max-width: 800px) {
  .services-grid { grid-template-columns: 1fr; }
}

/* ─── HOW IT WORKS ───────────────────────────────────────────── */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.step {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
}
.step-num {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.04em;
  opacity: 0.85;
}
.step-title {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 12px 0 8px;
  letter-spacing: -0.01em;
}
.step-desc {
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.6;
}
@media (max-width: 800px) {
  .steps { grid-template-columns: 1fr; }
}

/* ─── MOCKUP SECTION ─────────────────────────────────────────── */
.mockup-section { background: var(--bg-deep); }
.mockup-wrap {
  max-width: 1080px;
  margin: 56px auto 0;
  position: relative;
}
.mockup-frame {
  background: linear-gradient(180deg, var(--surface), var(--bg-deep));
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5),
              inset 0 1px 0 rgba(255,255,255,0.04);
  position: relative;
  overflow: hidden;
}
.mockup-frame::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 24px;
  padding: 1px;
  background: linear-gradient(180deg, rgba(196,82,10,0.25), transparent 40%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}
.mockup-titlebar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border-soft);
  margin-bottom: 18px;
}
.mockup-titlebar-left {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 600;
}
.mockup-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px rgba(45,202,114,0.6);
  animation: pulseDot 2s ease-in-out infinite;
}
@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.55; transform: scale(1.15); }
}
.mockup-window-dots { display: flex; gap: 6px; }
.mockup-window-dots span {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
}

/* Two-panel mockup: caller + transcript */
.mockup-body {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 22px;
  align-items: stretch;
}
@media (max-width: 860px) {
  .mockup-body { grid-template-columns: 1fr; }
}

.caller-card {
  background: var(--bg-deep);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.caller-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #6b2c08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: #fff;
  margin-bottom: 4px;
}
.caller-label { font-size: 11.5px; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted2); font-weight: 600; }
.caller-name { font-size: 1.05rem; font-weight: 600; color: var(--text); margin-top: 4px; }
.caller-meta {
  font-size: 13px;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.caller-meta span:before { content: '· '; color: var(--muted2); }
.caller-meta span:first-child:before { content: ''; }

.call-timer {
  margin-top: auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 14px;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.call-timer .live-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--red); display: inline-block;
  margin-right: 6px;
  animation: pulseDot 1.4s ease-in-out infinite;
}

.transcript {
  background: var(--bg-deep);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 360px;
}
.transcript-turn {
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-width: 86%;
}
.transcript-turn.caller { align-self: flex-start; }
.transcript-turn.ai { align-self: flex-end; align-items: flex-end; }
.transcript-speaker {
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted2);
  font-weight: 600;
}
.transcript-bubble {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-soft);
}
.transcript-turn.ai .transcript-bubble {
  background: var(--accent-dim);
  border-color: var(--accent-ring);
  color: var(--text);
}
.transcript-actions {
  margin-top: 6px;
  border-top: 1px dashed var(--border);
  padding-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.action-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
}
.action-row .check {
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--green);
  color: var(--bg);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 800;
  flex-shrink: 0;
}
.action-row strong { color: var(--text); font-weight: 600; }

.outcome-bar {
  margin-top: 18px;
  background: linear-gradient(90deg, rgba(45,202,114,0.12), transparent);
  border: 1px solid rgba(45,202,114,0.3);
  border-radius: 12px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13.5px;
  color: var(--text-soft);
}
.outcome-bar .check-lg {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--green);
  color: var(--bg);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 800;
}
.outcome-bar strong { color: var(--text); font-weight: 600; }

/* ─── BEFORE / AFTER ─────────────────────────────────────────── */
.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 56px;
}
.compare-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 32px;
}
.compare-card.after {
  background: linear-gradient(160deg, rgba(196,82,10,0.08), var(--surface) 70%);
  border-color: var(--accent-ring);
}
.compare-label {
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 10px;
}
.compare-card.after .compare-label { color: var(--accent-warm); }
.compare-card h3 {
  font-size: 1.4rem;
  margin-bottom: 22px;
  letter-spacing: -0.015em;
}
.compare-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.compare-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14.5px;
  color: var(--text-soft);
  line-height: 1.5;
}
.compare-list li .marker {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 800;
  margin-top: 2px;
}
.compare-card:not(.after) .marker {
  background: rgba(224,82,82,0.18);
  color: var(--red);
}
.compare-card.after .marker {
  background: var(--green);
  color: var(--bg);
}
@media (max-width: 800px) {
  .compare-grid { grid-template-columns: 1fr; }
}

/* ─── CTA BLOCK ──────────────────────────────────────────────── */
.cta-block {
  background: linear-gradient(160deg, var(--surface) 0%, var(--bg-deep) 100%);
  border-top: 1px solid var(--border);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-block::before {
  content: '';
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(196,82,10,0.12), transparent 60%);
  pointer-events: none;
}
.cta-block .container { position: relative; z-index: 1; }
.cta-block h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
}
.cta-block p {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 580px;
  margin: 0 auto 32px;
}

/* ─── ALSO BUILT FOR (industry footer cross-links) ───────────── */
.also-built {
  background: var(--bg-deep);
  padding: 64px 0;
  border-top: 1px solid var(--border-soft);
}
.also-built-label {
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted2);
  font-weight: 600;
  margin-bottom: 18px;
  text-align: center;
}
.also-built-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 820px;
  margin: 0 auto;
}
.also-built-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px;
  transition: border-color 0.2s ease, transform 0.2s ease;
  display: block;
  color: var(--text);
}
.also-built-card:hover {
  border-color: var(--accent-ring);
  transform: translateY(-2px);
}
.also-built-emoji { font-size: 22px; display: block; margin-bottom: 8px; }
.also-built-name { font-size: 14px; font-weight: 600; color: var(--text); }
.also-built-pain { font-size: 12.5px; color: var(--muted); margin-top: 4px; line-height: 1.4; }
@media (max-width: 700px) {
  .also-built-grid { grid-template-columns: 1fr; }
}

/* ─── FOOTER ─────────────────────────────────────────────────── */
footer.dpd-footer {
  background: var(--bg-deep);
  border-top: 1px solid var(--border);
  padding: 56px 0 36px;
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.footer-logo img { height: 24px; }
.footer-copy { font-size: 13px; color: var(--muted); }
.footer-links {
  list-style: none;
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-links a { font-size: 13.5px; color: var(--muted); transition: color 0.2s ease; }
.footer-links a:hover { color: var(--text); }

/* ─── REVEAL ANIMATIONS ──────────────────────────────────────── */
.reveal-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.16,1,0.3,1);
}
.reveal-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ─── MOBILE ─────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .nav-inner { padding: 0 16px; height: 60px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-actions { gap: 10px; }
  .nav-actions > .btn-ghost { display: none; }   /* Sign In moves into the drawer */
  .nav-actions > .btn-primary { padding: 9px 16px; font-size: 13px; }
  .hero { padding: 124px 0 72px; }
  .hero h1 { font-size: clamp(2.1rem, 8vw, 2.8rem); }
  .section-h2 { font-size: clamp(1.7rem, 6vw, 2.2rem); }
  .hero-cta { flex-direction: column; align-items: stretch; width: 100%; max-width: 360px; margin: 0 auto; }
  .hero-cta .btn { width: 100%; justify-content: center; }
  .mockup-frame { padding: 16px; }
  .footer-inner { padding: 0 18px; flex-direction: column; text-align: center; }
}


/* ─── CUSTOM ICON SYSTEM (replaces emoji) ─────────────────────── */
svg.ico {
  width: 1em; height: 1em;
  display: inline-block;
  vertical-align: -0.15em;
  flex: none;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.service-card-icon svg.ico { width: 24px; height: 24px; }
.also-built-emoji { color: var(--accent-warm); }
.also-built-emoji svg.ico { width: 24px; height: 24px; vertical-align: middle; }
.related-card .rc-emoji { color: var(--accent-warm); }
.related-card .rc-emoji svg.ico { width: 22px; height: 22px; vertical-align: middle; }
