/* === Bridge Digital — landing-page styles ============================
   Loaded by ALL landing pages (e.g. /real-cost, /ai-scorecard).
   Standalone dark-theme aesthetic for lead-gen — does NOT depend on
   site.css. Page-specific content (hero copy, cover content, inside/learn
   cards, form copy) stays in the page source; this file owns layout,
   theme, and shared chrome (nav, hero, cover, form, proof-bar, who-strip,
   footer, animations, responsive).

   Layout variants:
     .hero                     content-sized hero, top-aligned (default — ai-scorecard)
     .hero.hero-fullscreen     viewport-tall hero, vertically centered (real-cost)
   ----------------------------------------------------------------------- */

:root {
  --navy:        #102c39;
  --navy-deep:   #0b1f28;
  --orange:      #f69220;
  --red:         #d94f3d;
  --blue-light:  #6d8e9e;
  --light:       #a8c4ce;
  --white:       #ffffff;
  --gray-bg:     #f3f6f8;
  --border:      #e5e7eb;

  /* Phase colors — used by ai-scorecard's CRAWL/WALK/RUN bars */
  --crawl:       #e74c3c;
  --walk:        #e67e22;
  --run:         #27ae60;
}

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

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--navy);
  color: var(--white);
  min-height: 100vh;
  overflow-x: hidden;
}

/* === NAV ============================================================== */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  background: var(--navy-deep);
  border-bottom: 1px solid rgba(246,146,32,0.25);
}
.logo { font-size: 15px; font-weight: 700; letter-spacing: 0.02em; }
.logo .o { color: var(--orange); }
.nav-tag {
  font-size: 12px;
  font-weight: 500;
  color: var(--blue-light);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* === HERO (default — content-sized, top-aligned) ====================== */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1280px;
  margin: 0 auto;
  padding: 56px 48px;
  gap: 64px;
  align-items: start;
}

/* Modifier: viewport-tall hero with centered content (real-cost layout) */
.hero.hero-fullscreen {
  min-height: calc(100vh - 65px);
  padding: 0 48px;
  align-items: center;
}
.hero.hero-fullscreen .hero-left  { padding: 64px 0; }
.hero.hero-fullscreen .hero-right { padding: 64px 0; gap: 32px; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 24px;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--orange);
  flex-shrink: 0;
}

h1 {
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  color: var(--white);
}
h1 .accent { color: var(--orange); display: block; }

/* Hero left copy variants ----------------------------------------------- */
.sub-headline {
  font-size: 18px;
  font-weight: 400;
  color: var(--light);
  margin-bottom: 32px;
  line-height: 1.5;
}

.hook-para {
  font-size: 18px;
  color: var(--light);
  line-height: 1.65;
  margin-bottom: 28px;
}
.hook-para strong { color: var(--white); font-weight: 500; }

/* Page 1 — value props list */
.value-props {
  list-style: none;
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.value-props li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 17px;
  color: var(--light);
  line-height: 1.5;
}
.value-props li::before {
  content: '→';
  color: var(--orange);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.value-props li strong { color: var(--white); font-weight: 500; }

/* Page 1 — orange callout box */
.callout-box {
  background: rgba(246,146,32,0.08);
  border-left: 3px solid var(--orange);
  padding: 16px 20px;
  border-radius: 0 6px 6px 0;
  margin-bottom: 40px;
  font-size: 16px;
  color: var(--orange);
  font-weight: 500;
  line-height: 1.55;
}

/* Page 2 — red workshop box */
.workshop-box {
  background: rgba(215,79,61,0.08);
  border-left: 3px solid var(--red);
  padding: 18px 20px;
  border-radius: 0 6px 6px 0;
  margin-bottom: 28px;
}
.workshop-box .wb-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 8px;
}
.workshop-box p {
  font-size: 16px;
  color: var(--light);
  line-height: 1.6;
}
.workshop-box p strong { color: var(--white); }

/* Page 2 — phase preview rows (Crawl / Walk / Run) */
.phase-preview {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
}
.phase-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 6px;
  border-left: 3px solid transparent;
  font-size: 16px;
}
.phase-row.crawl { border-left-color: var(--crawl); }
.phase-row.walk  { border-left-color: var(--walk); }
.phase-row.run   { border-left-color: var(--run); }
.phase-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 4px;
  white-space: nowrap;
  flex-shrink: 0;
}
.phase-row.crawl .phase-tag { background: rgba(231,76,60,0.15);  color: var(--crawl); }
.phase-row.walk  .phase-tag { background: rgba(230,126,34,0.15); color: var(--walk); }
.phase-row.run   .phase-tag { background: rgba(39,174,96,0.15);  color: var(--run); }
.phase-desc { color: var(--light); line-height: 1.45; flex: 1; }
.phase-desc strong { color: var(--white); font-weight: 500; }

/* === HERO RIGHT (cover + form) ======================================== */
.hero-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.cover-preview {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(246,146,32,0.2);
  transform: perspective(1000px) rotateY(-3deg) rotateX(1deg);
  transition: transform 0.4s ease;
  flex-shrink: 0;
}
.cover-preview:hover {
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.cover-img {
  width: 100%;
  background: var(--navy-deep);
  aspect-ratio: 8.5 / 11;
  display: flex;
  flex-direction: column;
  padding: 28px;
  position: relative;
  overflow: hidden;
}
.cover-img::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 5px;
  background: var(--orange);
}
.cover-top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0 14px;
  border-bottom: 1px solid rgba(246,146,32,0.2);
  margin-bottom: 28px;
}
.cover-brand { font-size: 10px; font-weight: 700; }
.cover-brand .o { color: var(--orange); }
.cover-guide-tag { font-size: 9px; color: var(--blue-light); }
.cover-eyebrow {
  font-size: 8px;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.cover-eyebrow::before {
  content: '';
  width: 18px;
  height: 2px;
  background: var(--orange);
  display: block;
}
.cover-title-1 { font-size: 22px; font-weight: 700; color: var(--white); line-height: 1.1; margin-bottom: 6px; }
.cover-title-2 { font-size: 22px; font-weight: 700; color: var(--orange); line-height: 1.1; margin-bottom: 20px; }
.cover-divider { height: 1px; background: rgba(255,255,255,0.1); margin-bottom: 16px; }
.cover-sub { font-size: 10px; color: var(--light); line-height: 1.6; margin-bottom: auto; }
.cover-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-top: 16px;
  border-top: 1px solid rgba(246,146,32,0.2);
  margin-top: 20px;
}
.cover-authors { font-size: 8px; font-weight: 700; color: var(--white); }
.cover-authors span { display: block; color: var(--blue-light); font-weight: 400; margin-top: 2px; }
.cover-url { font-size: 9px; font-weight: 700; color: var(--orange); }

/* Page 1 — large $ watermark behind cover content */
.cover-watermark {
  position: absolute;
  bottom: 40px; right: -10px;
  font-size: 120px;
  font-weight: 700;
  color: rgba(16,44,57,0.8);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

/* Page 2 — phase bars on cover */
.cover-phases { display: flex; flex-direction: column; gap: 5px; margin: 16px 0; }
.cp-row { display: flex; align-items: center; gap: 8px; font-size: 8px; }
.cp-badge { padding: 2px 6px; border-radius: 3px; font-weight: 700; font-size: 7px; letter-spacing: 0.06em; }
.cp-badge.c { background: rgba(231,76,60,0.2);  color: var(--crawl); }
.cp-badge.w { background: rgba(230,126,34,0.2); color: var(--walk); }
.cp-badge.r { background: rgba(39,174,96,0.2);  color: var(--run); }
.cp-text { color: var(--light); }

/* === FORM CARD ======================================================== */
.form-card {
  background: var(--white);
  border-radius: 12px;
  padding: 32px;
  color: var(--navy);
  box-shadow: 0 24px 60px rgba(0,0,0,0.3);
}
.form-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
  line-height: 1.25;
}
.form-sub {
  font-size: 15px;
  color: #6b7280;
  margin-bottom: 24px;
  line-height: 1.5;
}
.form-group { margin-bottom: 14px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.form-group input {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  color: var(--navy);
  background: #f9fafb;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-group input:focus {
  border-color: var(--orange);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(246,146,32,0.12);
}
.form-group input::placeholder { color: #9ca3af; }

.btn-download {
  width: 100%;
  padding: 16px;
  background: var(--orange);
  color: var(--white);
  border: none;
  border-radius: 6px;
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  margin-top: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.btn-download:hover  { background: #e07d0e; transform: translateY(-1px); }
.btn-download:active { transform: translateY(0); }

.trust-line {
  text-align: center;
  font-size: 12px;
  color: #9ca3af;
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.trust-line::before, .trust-line::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

/* Form success state */
.success-msg { display: none; text-align: center; padding: 20px 0; }
.success-msg .tick {
  width: 48px; height: 48px;
  background: #16a34a;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
  font-size: 22px;
}
.success-msg h3 { font-size: 18px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.success-msg p  { font-size: 14px; color: #6b7280; line-height: 1.5; }

/* === SOCIAL PROOF BAR ================================================= */
.proof-bar {
  background: var(--navy-deep);
  border-top: 1px solid rgba(246,146,32,0.15);
  border-bottom: 1px solid rgba(246,146,32,0.15);
  padding: 20px 48px;
}
.proof-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.proof-stat { text-align: center; }
.proof-stat .num {
  font-size: 28px;
  font-weight: 700;
  color: var(--orange);
  display: block;
  line-height: 1;
  margin-bottom: 4px;
}
.proof-stat .label {
  font-size: 12px;
  color: var(--blue-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.proof-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.1); }

/* === Inside-strip (page 1) ============================================ */
.inside-strip {
  max-width: 1280px;
  margin: 56px auto;
  padding: 0 48px;
}
.inside-strip h2 {
  font-size: 14px;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.inside-strip h2::after { content: ''; flex: 1; height: 1px; background: rgba(255,255,255,0.1); }
.inside-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.inside-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 24px;
}
.inside-card .ic-num {
  font-size: 12px;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}
.inside-card .ic-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.3;
}
.inside-card .ic-desc {
  font-size: 15px;
  color: var(--light);
  line-height: 1.6;
}

/* === Learn-strip (page 2) ============================================= */
.learn-strip {
  max-width: 1280px;
  margin: 0 auto 56px;
  padding: 0 48px;
}
.learn-strip h2 {
  font-size: 14px;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.learn-strip h2::after { content: ''; flex: 1; height: 1px; background: rgba(255,255,255,0.1); }
.learn-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.learn-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 24px;
}
.learn-card .lc-icon  { font-size: 22px; margin-bottom: 12px; }
.learn-card .lc-title { font-size: 17px; font-weight: 700; color: var(--white); margin-bottom: 8px; line-height: 1.3; }
.learn-card .lc-desc  { font-size: 15px; color: var(--light); line-height: 1.6; }

/* === WHO'S BEHIND THIS ================================================ */
.who-strip {
  background: var(--navy-deep);
  border-top: 1px solid rgba(246,146,32,0.15);
  border-bottom: 1px solid rgba(246,146,32,0.15);
  padding: 64px 48px;
}
.who-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.who-eyebrow {
  font-size: 12px;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.who-eyebrow::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--orange);
  display: block;
  flex-shrink: 0;
}
.who-title {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.who-body {
  font-size: 17px;
  color: var(--light);
  line-height: 1.7;
  margin-bottom: 16px;
}
.who-body strong { color: var(--white); font-weight: 500; }
.who-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  margin-bottom: 14px;
  padding: 18px 32px;
  background: var(--orange);
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.005em;
  text-decoration: none;
  border: none;
  border-radius: 8px;
  box-shadow: 0 8px 22px rgba(246,146,32,0.32);
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}
.who-cta:hover  {
  background: #e07d0e;
  transform: translateY(-1px);
  box-shadow: 0 10px 26px rgba(246,146,32,0.45);
}
.who-cta:active { transform: translateY(0); }
@media (max-width: 720px) {
  .who-cta { font-size: 16px; padding: 16px 24px; }
}
.who-note {
  font-size: 13px;
  color: var(--blue-light);
  font-style: italic;
}

.who-right { display: flex; flex-direction: column; gap: 16px; }

.founder-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 20px 24px;
  border-left: 3px solid var(--orange);
}
.founder-name  { font-size: 18px; font-weight: 700; color: var(--white); margin-bottom: 3px; }
.founder-title { font-size: 13px; color: var(--orange); margin-bottom: 12px; }
.founder-tags  { display: flex; flex-wrap: wrap; gap: 6px; }
.founder-tags span {
  font-size: 11px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  padding: 3px 10px;
  color: var(--light);
}

.embedded-box {
  background: var(--navy);
  border: 1px solid rgba(246,146,32,0.25);
  border-radius: 8px;
  padding: 24px;
}
.eb-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.eb-title {
  font-size: 19px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}
.eb-list { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.eb-list li {
  font-size: 15px;
  color: var(--light);
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.45;
}
.eb-list li::before { content: '✓'; color: var(--orange); font-weight: 700; flex-shrink: 0; }

/* === FOOTER =========================================================== */
footer {
  background: var(--navy-deep);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 24px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 100%;
}
footer .f-logo     { font-size: 13px; font-weight: 700; }
footer .f-logo .o  { color: var(--orange); }
footer .f-tagline  { font-size: 13px; color: var(--blue-light); }
footer .f-copy     { font-size: 13px; color: rgba(255,255,255,0.3); }

/* === ANIMATIONS ======================================================= */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-left  > * { animation: fadeUp 0.6s ease both; }
.hero-left  > *:nth-child(1) { animation-delay: 0.05s; }
.hero-left  > *:nth-child(2) { animation-delay: 0.15s; }
.hero-left  > *:nth-child(3) { animation-delay: 0.22s; }
.hero-left  > *:nth-child(4) { animation-delay: 0.30s; }
.hero-left  > *:nth-child(5) { animation-delay: 0.38s; }
.hero-right { animation: fadeUp 0.7s 0.2s ease both; }

/* === RESPONSIVE ======================================================= */
@media (max-width: 900px) {
  nav { padding: 16px 24px; }

  .hero { grid-template-columns: 1fr; padding: 32px 24px; gap: 40px; }
  .hero.hero-fullscreen { padding: 0 24px; }
  .hero.hero-fullscreen .hero-left  { padding: 40px 0 0; }
  .hero.hero-fullscreen .hero-right { padding: 0 0 48px; }

  .cover-preview { max-width: 340px; transform: none; }

  .proof-bar    { padding: 20px 24px; }
  .proof-inner  { flex-wrap: wrap; justify-content: center; }

  .inside-strip { padding: 0 24px; }
  .inside-grid  { grid-template-columns: 1fr; }

  .learn-strip  { padding: 0 24px; }
  .learn-grid   { grid-template-columns: 1fr; }

  .who-strip    { padding: 40px 24px; }
  .who-inner    { grid-template-columns: 1fr; gap: 40px; }

  footer { flex-direction: column; gap: 8px; text-align: center; padding: 20px 24px; }
}

/* === Page 3 — ai-business-model ======================================= */
/* Urgent banner (under nav), cascade box, five-questions preview,
   two-paths cover variant, form urgency strip. */

/* Urgent banner */
.urgent-banner {
  background: var(--red);
  padding: 10px 48px;
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.01em;
}
.urgent-banner span { opacity: 0.85; font-weight: 400; margin-left: 8px; }

/* Cascade box (hero left) */
.cascade-box {
  background: rgba(217, 79, 61, 0.08);
  border: 1px solid rgba(217, 79, 61, 0.25);
  border-left: 3px solid var(--red);
  border-radius: 0 8px 8px 0;
  padding: 20px 24px;
  margin-bottom: 28px;
}
.cascade-box .cb-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}
.cascade-steps { display: flex; flex-direction: column; gap: 8px; }
.cascade-step {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  color: var(--light);
  line-height: 1.4;
}
.cascade-step .arrow { color: var(--red); font-weight: 700; flex-shrink: 0; font-size: 16px; }
.cascade-step strong { color: var(--white); font-weight: 500; }

/* Five questions preview */
.questions-preview { margin-bottom: 32px; }
.qp-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.qp-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
}
.question-list { display: flex; flex-direction: column; gap: 10px; }
.q-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 6px;
  font-size: 16px;
  color: var(--light);
  line-height: 1.45;
}
.q-num {
  font-size: 12px;
  font-weight: 700;
  color: var(--orange);
  background: rgba(246, 146, 32, 0.1);
  border-radius: 4px;
  padding: 2px 7px;
  flex-shrink: 0;
  margin-top: 1px;
}

/* Two-paths cover variant (uses .cp-box/.cp-title/.cp-desc — distinct from the
   scorecard's .cp-row/.cp-badge/.cp-text). */
.cover-paths { display: flex; gap: 8px; margin: 16px 0; }
.cp-box {
  flex: 1;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 4px;
  padding: 8px;
}
.cp-title {
  font-size: 7px;
  font-weight: 700;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}
.cp-desc { font-size: 7px; color: var(--light); line-height: 1.5; }

/* Form urgency strip (inside the white form card, above the title) */
.form-urgency {
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 6px;
  padding: 10px 14px;
  font-size: 12px;
  color: var(--red);
  font-weight: 600;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Responsive overrides for the page-3 blocks */
@media (max-width: 900px) {
  .urgent-banner { padding: 10px 24px; }
}
