/* ===========================
   Tradesborn — Shared Styles
=========================== */

:root {
  --navy-950: #0a1628;
  --navy-900: #0e1f3a;
  --navy-800: #142a4d;
  --navy-700: #1c3862;
  --blue-600: #2563eb;
  --blue-500: #3b82f6;
  --blue-300: #93c5fd;
  --blue-100: #dbeafe;
  --amber-500: #f59e0b;
  --amber-400: #fbbf24;
  --amber-100: #fef3c7;
  --gray-900: #111827;
  --gray-700: #374151;
  --gray-600: #4b5563;
  --gray-500: #6b7280;
  --gray-300: #d1d5db;
  --gray-200: #e5e7eb;
  --gray-100: #f3f4f6;
  --gray-50: #f9fafb;
  --white: #ffffff;
  --green-600: #059669;
  --red-600: #dc2626;
  --red-100: #fee2e2;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --shadow-sm: 0 1px 2px rgba(10, 22, 40, 0.06), 0 1px 3px rgba(10, 22, 40, 0.08);
  --shadow-md: 0 4px 12px rgba(10, 22, 40, 0.08), 0 2px 4px rgba(10, 22, 40, 0.06);
  --shadow-lg: 0 20px 40px rgba(10, 22, 40, 0.12), 0 8px 16px rgba(10, 22, 40, 0.08);
  --container: 1180px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blue-600);
  background: var(--blue-100);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 20px;
}

h1, h2, h3, h4 { line-height: 1.15; letter-spacing: -0.02em; color: var(--navy-950); }
h1 { font-size: clamp(2.4rem, 4.5vw, 3.6rem); font-weight: 800; }
h2 { font-size: clamp(1.9rem, 3.2vw, 2.6rem); font-weight: 800; }
h3 { font-size: 1.3rem; font-weight: 700; }
p { color: var(--gray-600); }

.section { padding: 100px 0; }
.section-tight { padding: 64px 0; }
.section-head { max-width: 640px; margin: 0 auto 56px; text-align: center; }
.section-head p { font-size: 1.125rem; margin-top: 14px; }

.bg-navy { background: linear-gradient(180deg, var(--navy-950), var(--navy-900)); color: var(--white); }
.bg-navy h2, .bg-navy h3, .bg-navy h1 { color: var(--white); }
.bg-navy p { color: rgba(255,255,255,0.72); }
.bg-gray { background: var(--gray-50); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 15px;
  border: 2px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease, border-color .15s ease;
  white-space: nowrap;
}
.btn-amber {
  background: var(--amber-500);
  color: var(--navy-950);
  box-shadow: var(--shadow-sm);
}
.btn-amber:hover { background: var(--amber-400); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-white {
  background: var(--white);
  color: var(--navy-950);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline {
  background: transparent;
  border-color: rgba(255,255,255,0.35);
  color: var(--white);
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }
.btn-navy {
  background: var(--navy-950);
  color: var(--white);
}
.btn-navy:hover { background: var(--navy-800); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-ghost {
  background: transparent;
  border-color: var(--gray-300);
  color: var(--navy-950);
}
.btn-ghost:hover { border-color: var(--navy-950); }
.btn-block { width: 100%; }
.btn-lg { padding: 16px 30px; font-size: 16px; }

/* ===== Header / Nav ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--gray-200);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--navy-950);
}
.logo .mark {
  width: 34px; height: 34px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--blue-600), var(--navy-800));
  display: flex; align-items: center; justify-content: center;
  color: var(--amber-400);
  flex-shrink: 0;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-weight: 600;
  font-size: 15px;
  color: var(--gray-700);
  transition: color 0.15s ease;
  position: relative;
}
.nav-links a:hover, .nav-links a.active { color: var(--navy-950); }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-actions .btn { padding: 11px 20px; font-size: 14px; }
.nav-signin { font-weight: 700; font-size: 14px; color: var(--gray-700); padding: 11px 8px; }
.nav-signin:hover { color: var(--navy-950); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--navy-950); border-radius: 2px; }

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 12px 24px 20px;
  border-top: 1px solid var(--gray-200);
  background: var(--white);
}
.mobile-menu a {
  padding: 12px 4px;
  font-weight: 600;
  color: var(--gray-700);
  border-bottom: 1px solid var(--gray-100);
}
.mobile-menu.open { display: flex; }
.mobile-actions { display: flex; gap: 10px; margin-top: 14px; }

@media (max-width: 900px) {
  .nav-links, .nav-actions { display: none; }
  .nav-toggle { display: flex; }
}

/* ===== Hero ===== */
.hero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 15% 20%, #16305a 0%, var(--navy-950) 55%);
  color: var(--white);
  padding: 120px 0 100px;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 40%, transparent 90%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
}
.hero h1 { color: var(--white); margin-bottom: 22px; }
.hero .lead { font-size: 1.2rem; color: rgba(255,255,255,0.78); max-width: 540px; margin-bottom: 34px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 28px; }
.hero-note { font-size: 13.5px; color: rgba(255,255,255,0.55); }
.hero-note strong { color: rgba(255,255,255,0.85); }

.hero-visual {
  position: relative;
}
.hero-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 22px;
  color: var(--gray-900);
}

/* ===== Workflow Automation diagram (proposal -> job -> invoice) ===== */
.wfa-grid { display: grid; grid-template-columns: 320px 1fr; gap: 56px; align-items: start; }

.wfa-stages { display: flex; align-items: center; gap: 14px; margin-bottom: 28px; flex-wrap: wrap; }
.wfa-stage { display: flex; align-items: center; gap: 10px; }
.wfa-stage-icon { width: 36px; height: 36px; border-radius: 999px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.wfa-stage-icon.blue { background: var(--blue-100); color: var(--blue-600); }
.wfa-stage-icon.green { background: #dcfce7; color: var(--green-600); }
.wfa-stage-icon.amber { background: var(--amber-100); color: var(--amber-500); }
.wfa-stage strong { display: block; font-size: 15px; color: var(--navy-950); }
.wfa-stage span { font-size: 12.5px; color: var(--gray-500); }
.wfa-arrow { color: var(--gray-300); display: flex; }

.wfa-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.wfa-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-top: 3px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 20px;
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; justify-content: center; gap: 12px;
}
.wfa-card.blue-top { border-top-color: var(--blue-500); }
.wfa-card.green-top { border-top-color: var(--green-600); }
.wfa-card.amber-top { border-top-color: var(--amber-500); }
.wfa-card-head { display: flex; justify-content: space-between; align-items: center; }
.wfa-card-head strong { font-size: 14.5px; color: var(--navy-950); }
.wfa-badge { font-size: 10.5px; font-weight: 700; padding: 3px 9px; border-radius: 999px; white-space: nowrap; }
.wfa-badge.blue { background: var(--blue-100); color: var(--blue-600); }
.wfa-badge.amber { background: var(--amber-100); color: #92400e; }
.wfa-badge.gray { background: var(--gray-100); color: var(--gray-600); }
.wfa-badge.green { background: #dcfce7; color: var(--green-600); }
.wfa-card-sub { font-size: 12.5px; color: var(--gray-500); display: flex; justify-content: space-between; }
.wfa-card-sub .wfa-amt { font-weight: 700; color: var(--navy-950); }
.wfa-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; color: var(--gray-400); margin-top: 2px; }
.wfa-check-list { display: flex; flex-direction: column; gap: 6px; margin: 0; padding: 0; }
.wfa-check-list li { list-style: none; display: flex; align-items: center; gap: 8px; font-size: 12.5px; color: var(--gray-700); }
.wfa-check-list li::before { content: "✓"; color: var(--green-600); font-weight: 800; font-size: 11px; }
.wfa-detail-row { display: flex; align-items: center; gap: 8px; font-size: 12.5px; color: var(--gray-700); }
.wfa-detail-row svg { color: var(--gray-400); flex-shrink: 0; }
.wfa-status-row { display: flex; justify-content: space-between; align-items: center; font-size: 12.5px; color: var(--gray-500); margin-top: 2px; }
.wfa-progress { height: 6px; background: var(--gray-100); border-radius: 999px; overflow: hidden; }
.wfa-progress-bar { height: 100%; background: var(--green-600); border-radius: 999px; }
.wfa-total { display: flex; justify-content: space-between; align-items: baseline; font-size: 13px; color: var(--gray-500); padding-top: 10px; border-top: 1px solid var(--gray-100); }
.wfa-total strong { font-size: 17px; color: var(--navy-950); }
.wfa-line-row { display: flex; justify-content: space-between; font-size: 12.5px; color: var(--gray-500); }
.wfa-line-row span:last-child { color: var(--navy-950); font-weight: 600; }
.wfa-btn { border: none; border-radius: var(--radius-sm); padding: 10px; font-weight: 700; font-size: 13px; cursor: pointer; width: 100%; font-family: inherit; }
.wfa-btn.blue { background: var(--blue-600); color: var(--white); }
.wfa-btn.amber { background: var(--amber-500); color: var(--navy-950); }
.wfa-btn.outline { background: var(--white); border: 1px solid var(--gray-300); color: var(--navy-950); }
.wfa-paid { display: flex; gap: 8px; align-items: flex-start; background: #f0fdf4; border-radius: var(--radius-sm); padding: 10px 12px; font-size: 12px; color: var(--gray-600); }
.wfa-paid .tick-sm { width: 16px; height: 16px; border-radius: 999px; background: var(--green-600); color: var(--white); display: flex; align-items: center; justify-content: center; font-size: 9px; flex-shrink: 0; margin-top: 1px; }
.wfa-paid strong { color: var(--green-600); }

@media (max-width: 900px) {
  .wfa-grid { grid-template-columns: 1fr; }
  .wfa-cards { grid-template-columns: 1fr; }
}

/* ===== Customer Portal dashboard mockup ===== */
.cp-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; }
.cp-welcome { font-size: 13px; color: var(--gray-500); }
.cp-name { font-size: 1.2rem; font-weight: 800; color: var(--navy-950); margin-top: 2px; }
.cp-subtext { font-size: 13px; color: var(--gray-500); margin: 6px 0 20px; }
.cp-btn-primary {
  background: var(--blue-600); color: var(--white); border: none; border-radius: var(--radius-sm);
  padding: 10px 16px; font-weight: 700; font-size: 13px; cursor: pointer; white-space: nowrap; font-family: inherit;
}

.cp-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-bottom: 24px; }
.cp-stat {
  display: flex; align-items: center; gap: 10px;
  border: 1px solid var(--gray-200); border-radius: var(--radius-md); padding: 14px;
}
.cp-stat-icon { width: 36px; height: 36px; border-radius: 10px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.cp-stat-icon.blue { background: var(--blue-100); color: var(--blue-600); }
.cp-stat-icon.green { background: #dcfce7; color: var(--green-600); }
.cp-stat-icon.amber { background: var(--amber-100); color: var(--amber-500); }
.cp-stat strong { display: block; font-size: 15px; color: var(--navy-950); line-height: 1.2; }
.cp-stat span { font-size: 11.5px; color: var(--gray-500); }

.cp-section { border: 1px solid var(--gray-200); border-radius: var(--radius-md); padding: 16px; margin-bottom: 14px; }
.cp-section-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.cp-section-head h4 { font-size: 14px; color: var(--navy-950); }
.cp-section-head a { font-size: 12.5px; font-weight: 700; color: var(--blue-600); }
.cp-row { display: flex; align-items: center; gap: 12px; }
.cp-row-info { flex: 1; min-width: 0; }
.cp-row-info strong { display: block; font-size: 13.5px; color: var(--navy-950); }
.cp-row-info span { font-size: 12px; color: var(--gray-500); }
.cp-thumb {
  width: 44px; height: 44px; border-radius: var(--radius-sm); flex-shrink: 0;
  background: var(--gray-100); color: var(--gray-400);
  display: flex; align-items: center; justify-content: center;
}
.cp-row-icon { width: 32px; height: 32px; border-radius: 999px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.cp-row-icon.green { background: #dcfce7; color: var(--green-600); }
.cp-row-icon.green-solid { background: var(--green-600); color: var(--white); }
.cp-amt { font-size: 13.5px; color: var(--navy-950); }
.cp-chevron { color: var(--gray-300); font-size: 18px; }
.cp-btn-sm {
  background: var(--blue-600); color: var(--white); border: none; border-radius: var(--radius-sm);
  padding: 8px 14px; font-weight: 700; font-size: 12.5px; cursor: pointer; white-space: nowrap; font-family: inherit;
}

@media (max-width: 500px) {
  .cp-stats { grid-template-columns: repeat(2, 1fr); }
}

/* ===== Win More Work: sales process checklist ===== */
.wmw-list { display: flex; flex-direction: column; gap: 18px; margin-top: 24px; }
.wmw-list-item { display: flex; gap: 14px; align-items: flex-start; }
.wmw-list-icon {
  width: 34px; height: 34px; border-radius: 9px;
  background: var(--blue-100); color: var(--blue-600);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.wmw-list-item strong { display: block; font-size: 14.5px; color: var(--navy-950); margin-bottom: 2px; }
.wmw-list-item span { font-size: 13px; color: var(--gray-600); }

/* ===== Win More Work: proposal + portal visual ===== */
.wmw-visual { position: relative; padding-bottom: 40px; }
.wmw-proposal-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-top: 3px solid var(--blue-500);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-lg);
}
.wmw-proposal-head { display: flex; justify-content: space-between; align-items: flex-start; padding-bottom: 16px; margin-bottom: 16px; border-bottom: 1px solid var(--gray-100); }
.wmw-logo { display: flex; align-items: center; gap: 8px; color: var(--blue-600); font-weight: 800; font-size: 13.5px; }
.wmw-logo div { color: var(--navy-950); line-height: 1.1; }
.wmw-logo span { display: block; font-size: 10px; font-weight: 700; color: var(--gray-400); letter-spacing: 0.06em; }
.wmw-proposal-meta { text-align: right; }
.wmw-proposal-meta strong { font-size: 13.5px; color: var(--navy-950); }
.wmw-viewed-time { font-size: 11.5px; color: var(--gray-400); margin-top: 3px; }

.wmw-item-row { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 16px; }
.wmw-photo {
  width: 56px; height: 56px; border-radius: var(--radius-sm); flex-shrink: 0;
  background: var(--gray-100); color: var(--gray-400);
  display: flex; align-items: center; justify-content: center;
}
.wmw-item-info { flex: 1; min-width: 0; }
.wmw-item-info strong { display: block; font-size: 14.5px; color: var(--navy-950); margin-bottom: 3px; }
.wmw-item-info p { font-size: 12.5px; color: var(--gray-600); margin: 0; }
.wmw-investment {
  background: var(--blue-100); border-radius: var(--radius-sm);
  padding: 10px 14px; text-align: right; flex-shrink: 0; min-width: 130px;
}
.wmw-investment span { display: block; font-size: 10.5px; color: var(--gray-500); }
.wmw-investment strong { display: block; font-size: 15px; color: var(--navy-950); margin: 2px 0; }
.wmw-investment a { font-size: 11px; color: var(--blue-600); font-weight: 700; }

.wmw-warranty-row { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 18px; }
.wmw-warranty-row span { display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--gray-600); }
.wmw-warranty-row svg { color: var(--blue-500); flex-shrink: 0; }

.wmw-includes-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--gray-400); margin-bottom: 12px; }
.wmw-includes-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; padding-bottom: 20px; margin-bottom: 20px; border-bottom: 1px solid var(--gray-100); }
.wmw-includes-icon {
  width: 32px; height: 32px; border-radius: 8px;
  background: var(--blue-100); color: var(--blue-600);
  display: flex; align-items: center; justify-content: center; margin-bottom: 8px;
}
.wmw-includes-grid strong { display: block; font-size: 12.5px; color: var(--navy-950); margin-bottom: 3px; }
.wmw-includes-grid p { font-size: 11px; color: var(--gray-500); margin: 0; }

.wmw-next-step-head { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 14px; }
.wmw-check-icon {
  width: 22px; height: 22px; border-radius: 999px; flex-shrink: 0;
  background: var(--green-600); color: var(--white);
  display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 800;
}
.wmw-next-step-head strong { display: block; font-size: 14px; color: var(--navy-950); }
.wmw-next-step-head span { font-size: 12.5px; color: var(--gray-600); }
.wmw-signature-box {
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  background: var(--gray-50); border: 1px solid var(--gray-200); border-radius: var(--radius-sm);
  padding: 14px 16px;
}
.wmw-signature { font-family: 'Sacramento', cursive; font-size: 1.8rem; color: var(--navy-950); line-height: 1; }
.wmw-signature-meta { font-size: 11px; color: var(--gray-500); margin-top: 4px; }

.wmw-phone {
  position: absolute;
  right: -12px;
  bottom: -20px;
  width: 220px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 16px;
}
.wmw-phone-head { display: flex; align-items: center; gap: 6px; font-size: 10.5px; font-weight: 800; color: var(--navy-950); margin-bottom: 12px; }
.wmw-phone-head svg { color: var(--blue-600); flex-shrink: 0; }
.wmw-phone-head span { display: block; font-size: 8px; color: var(--gray-400); letter-spacing: 0.04em; }
.wmw-phone-welcome { font-size: 13px; font-weight: 700; color: var(--navy-950); margin-bottom: 10px; }
.wmw-phone-row { display: flex; justify-content: space-between; align-items: center; padding: 7px 0; border-bottom: 1px solid var(--gray-100); font-size: 11.5px; }
.wmw-phone-row:last-of-type { border-bottom: none; }
.wmw-phone-row span:first-child { color: var(--gray-600); }
.wmw-phone-row strong { color: var(--navy-950); }
.wmw-phone-btn {
  width: 100%; margin-top: 10px; border: none; border-radius: var(--radius-sm);
  background: var(--blue-600); color: var(--white); font-weight: 700; font-size: 12.5px;
  padding: 10px; cursor: pointer; font-family: inherit;
}

/* ===== Win More Work: stats strip ===== */
.wmw-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 56px; }
.wmw-stat { display: flex; align-items: flex-start; gap: 12px; }
.wmw-stat-icon { width: 40px; height: 40px; border-radius: 999px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.wmw-stat-icon.blue { background: var(--blue-100); color: var(--blue-600); }
.wmw-stat-icon.green { background: #dcfce7; color: var(--green-600); }
.wmw-stat-icon.amber { background: var(--amber-100); color: var(--amber-500); }
.wmw-stat-icon.purple { background: #ede9fe; color: #7c3aed; }
.wmw-stat strong { display: block; font-size: 1.3rem; color: var(--navy-950); line-height: 1.1; }
.wmw-stat span { display: block; font-size: 13px; font-weight: 700; color: var(--gray-700); margin-top: 2px; }
.wmw-stat small { font-size: 11.5px; color: var(--gray-500); }

@media (max-width: 900px) {
  .wmw-includes-grid { grid-template-columns: repeat(2, 1fr); }
  .wmw-stats { grid-template-columns: repeat(2, 1fr); }
  .wmw-phone { position: static; width: 100%; margin-top: 20px; }
  .wmw-visual { padding-bottom: 0; }
}
@media (max-width: 500px) {
  .wmw-item-row { flex-direction: column; }
  .wmw-investment { text-align: left; }
  .wmw-stats { grid-template-columns: 1fr; }
}

/* ===== Schedule & Dispatch: step badges ===== */
.sd-step-badges { display: flex; gap: 8px; margin-bottom: 20px; }
.sd-step-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--blue-100); color: var(--blue-600);
  font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.04em;
  padding: 6px 12px; border-radius: 999px;
}
.sd-step-badge-label {
  display: inline-flex; align-items: center;
  background: var(--white); color: var(--navy-950);
  border: 1px solid var(--gray-200); box-shadow: var(--shadow-sm);
  font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.04em;
  padding: 6px 14px; border-radius: 999px;
}

/* ===== Schedule & Dispatch: planner mockup ===== */
.sd-planner {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: var(--shadow-lg);
}
.sd-planner-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.sd-planner-head strong { font-size: 16px; color: var(--navy-950); }
.sd-view-toggle { display: flex; gap: 4px; background: var(--gray-100); border-radius: var(--radius-sm); padding: 3px; }
.sd-view-toggle span { font-size: 11.5px; font-weight: 700; color: var(--gray-500); padding: 5px 10px; border-radius: 6px; }
.sd-view-toggle span.active { background: var(--blue-600); color: var(--white); }

.sd-planner-filters { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; font-size: 12px; color: var(--gray-500); margin-bottom: 14px; }
.sd-planner-filters strong { color: var(--blue-600); font-weight: 700; }
.sd-settings-btn { margin-left: auto; border: 1px solid var(--gray-200); background: var(--white); border-radius: var(--radius-sm); padding: 6px 12px; font-size: 11.5px; font-weight: 700; color: var(--navy-950); cursor: pointer; font-family: inherit; white-space: nowrap; }

.sd-planner-nav { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; font-size: 12.5px; }
.sd-nav-arrow { width: 26px; height: 26px; border-radius: 999px; border: 1px solid var(--gray-200); display: flex; align-items: center; justify-content: center; color: var(--gray-500); flex-shrink: 0; }
.sd-today-btn { border: 1px solid var(--gray-200); border-radius: var(--radius-sm); padding: 5px 12px; font-weight: 700; color: var(--navy-950); }
.sd-planner-nav strong { color: var(--blue-600); font-weight: 700; }
.sd-new-job-btn { margin-left: auto; border: none; background: var(--blue-600); color: var(--white); border-radius: var(--radius-sm); padding: 8px 14px; font-size: 12.5px; font-weight: 700; cursor: pointer; font-family: inherit; white-space: nowrap; }

.sd-calendar-wrap { position: relative; }
.sd-calendar { display: grid; grid-template-columns: repeat(7, 1fr); gap: 8px; background: var(--gray-50); border-radius: var(--radius-sm); padding: 10px; }
.sd-day-col { display: flex; flex-direction: column; gap: 6px; min-height: 160px; }
.sd-day-head { font-size: 10.5px; font-weight: 800; color: var(--navy-950); text-align: center; padding-bottom: 6px; }
.sd-day-head span { display: block; font-weight: 600; color: var(--gray-400); font-size: 9.5px; }
.sd-job {
  border-radius: 6px; padding: 6px 7px; font-size: 9.5px; line-height: 1.35;
  background: var(--white); border-left: 3px solid var(--gray-300);
}
.sd-job em { display: block; font-style: normal; color: var(--gray-500); font-size: 8.5px; }
.sd-job strong { display: block; color: var(--navy-950); font-size: 10px; }
.sd-job span { display: block; color: var(--gray-500); }
.sd-job.blue { border-left-color: var(--blue-500); background: var(--blue-100); }
.sd-job.green { border-left-color: var(--green-600); background: #dcfce7; }
.sd-job.amber { border-left-color: var(--amber-500); background: var(--amber-100); }
.sd-job.red { border-left-color: #dc2626; background: #fee2e2; }
.sd-job.dashed { border-left-style: dashed; border-left-color: var(--gray-300); background: var(--white); opacity: 0.7; }
.sd-job.active { box-shadow: 0 0 0 2px var(--blue-500); }

.sd-toast {
  position: absolute;
  display: flex; align-items: flex-start; gap: 10px;
  background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg); padding: 12px 14px; width: 220px;
}
.sd-toast div { flex: 1; min-width: 0; }
.sd-toast strong { display: block; font-size: 12.5px; color: var(--navy-950); }
.sd-toast span { display: block; font-size: 11px; color: var(--gray-500); }
.sd-toast-time { font-size: 10px; color: var(--gray-400); white-space: nowrap; flex-shrink: 0; }
.sd-toast-top { top: -10px; left: 30%; }
.sd-toast-bottom { bottom: 10px; left: 8%; }
.sd-toast-payment { bottom: -16px; right: -8px; }
.sd-payment-icon {
  width: 22px; height: 22px; border-radius: 999px; flex-shrink: 0;
  background: var(--green-600); color: var(--white);
  display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 800;
}

.sd-legend { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 16px; font-size: 11.5px; color: var(--gray-600); }
.sd-legend span { display: flex; align-items: center; gap: 6px; }
.sd-legend i { width: 9px; height: 9px; border-radius: 999px; display: inline-block; }
.sd-legend i.blue { background: var(--blue-500); }
.sd-legend i.green { background: var(--green-600); }
.sd-legend i.amber { background: var(--amber-500); }
.sd-legend i.red { background: #dc2626; }
.sd-legend i.dashed { border: 1.5px dashed var(--gray-400); background: none; }

.sd-stats { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; margin-top: 56px; }

@media (max-width: 1100px) {
  .sd-toast { width: 170px; font-size: 10px; padding: 10px; }
  .sd-toast strong { font-size: 11px; }
}
@media (max-width: 900px) {
  .sd-calendar { grid-template-columns: repeat(4, 1fr); }
  .sd-toast { position: static; width: 100%; margin-bottom: 10px; }
  .sd-stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .sd-calendar { grid-template-columns: repeat(2, 1fr); }
  .sd-planner-filters { flex-direction: column; align-items: flex-start; }
  .sd-settings-btn { margin-left: 0; }
  .sd-stats { grid-template-columns: 1fr; }
}

/* ===== Feature category tabs ===== */
.feature-tabs {
  display: flex; justify-content: center; align-items: center; flex-wrap: wrap;
  gap: 2px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 999px;
  padding: 6px;
  box-shadow: var(--shadow-sm);
  max-width: 920px;
  margin: 0 auto;
}
.feature-tab {
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  color: var(--navy-950);
  white-space: nowrap;
  transition: background 0.15s ease;
}
.feature-tab:hover { background: var(--gray-100); }
.feature-tab.active { background: var(--amber-400); }
.feature-tab.active:hover { background: var(--amber-400); }
@media (max-width: 700px) {
  .feature-tabs { border-radius: var(--radius-lg); justify-content: flex-start; overflow-x: auto; }
}
.tab-panel { display: none; }
.tab-panel.active { display: block; }
.hero-card-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.hero-card-head .title { font-weight: 800; font-size: 15px; }
.hero-pill { font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 999px; background: #dcfce7; color: var(--green-600); }
.hero-job {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-sm);
  margin-bottom: 10px;
}
.hero-job .dot { width: 10px; height: 10px; border-radius: 999px; flex-shrink: 0; }
.hero-job .dot.blue { background: var(--blue-500); }
.hero-job .dot.amber { background: var(--amber-500); }
.hero-job .dot.green { background: var(--green-600); }
.hero-job .job-info { flex: 1; }
.hero-job .job-info .name { font-weight: 700; font-size: 13.5px; }
.hero-job .job-info .meta { font-size: 12px; color: var(--gray-500); }
.hero-job .job-amt { font-weight: 800; font-size: 13.5px; }

.hero-stat-float {
  position: absolute;
  bottom: -22px;
  left: -22px;
  background: var(--navy-950);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-lg);
  min-width: 170px;
}
.hero-stat-float .num { font-size: 1.6rem; font-weight: 800; color: var(--amber-400); }
.hero-stat-float .lbl { font-size: 12px; color: rgba(255,255,255,0.7); }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { margin-top: 40px; max-width: 420px; }
}

/* ===== Hero v2: credibility card + dashboard mockup ===== */
.hero-grid-v2 { position: relative; display: grid; grid-template-columns: 1.05fr 1.35fr; gap: 50px; align-items: start; }
.accent-amber { color: var(--amber-400); }
.hero-trust-row { display: flex; flex-wrap: wrap; gap: 18px; margin-bottom: 28px; font-size: 13px; color: rgba(255,255,255,0.7); }
.hero-trust-row span { display: flex; align-items: center; gap: 6px; }
.hero-trust-row svg { color: #4ade80; flex-shrink: 0; }

.hero-credibility-card {
  display: flex; gap: 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 22px;
}
.hero-credibility-icon {
  width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
  background: rgba(59,130,246,0.15); color: #93c5fd;
  display: flex; align-items: center; justify-content: center;
}
.hero-credibility-card h3 { color: var(--white); font-size: 15.5px; font-weight: 800; margin-bottom: 6px; line-height: 1.3; }
.hero-credibility-card p { font-size: 13.5px; color: rgba(255,255,255,0.6); margin-bottom: 10px; }
.hero-credibility-card a { color: var(--amber-400); font-weight: 700; font-size: 13.5px; }

/* Dashboard mockup */
.dash-mockup {
  position: relative;
  background: var(--navy-900);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.dash-topbar {
  display: flex; align-items: center; gap: 16px;
  padding: 14px 20px;
  background: var(--navy-950);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.dash-brand { display: flex; align-items: center; gap: 8px; font-weight: 800; color: var(--white); font-size: 14px; }
.dash-title { color: rgba(255,255,255,0.9); font-weight: 700; font-size: 14px; margin-right: auto; }
.dash-topicons { display: flex; align-items: center; gap: 14px; color: rgba(255,255,255,0.5); }
.dash-avatar { width: 26px; height: 26px; border-radius: 999px; background: var(--blue-600); color: var(--white); display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 800; flex-shrink: 0; }

.dash-body { display: flex; }
.dash-sidebar { width: 150px; flex-shrink: 0; padding: 16px 10px; border-right: 1px solid rgba(255,255,255,0.08); display: flex; flex-direction: column; gap: 2px; }
.dash-sidebar a { display: block; padding: 9px 10px; border-radius: 8px; font-size: 12.5px; font-weight: 600; color: rgba(255,255,255,0.55); }
.dash-sidebar a.active { background: rgba(59,130,246,0.18); color: var(--white); }

.dash-main { flex: 1; min-width: 0; padding: 20px; }
.dash-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-bottom: 22px; }
.dash-stat { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: 10px; padding: 12px; }
.dash-stat-label { display: block; font-size: 10.5px; color: rgba(255,255,255,0.45); margin-bottom: 6px; }
.dash-stat-value { display: block; font-size: 16px; font-weight: 800; color: var(--white); }
.dash-stat-delta { font-size: 11px; font-weight: 700; }
.dash-stat-delta.up { color: #4ade80; }
.dash-stat-sub { font-size: 11px; color: rgba(255,255,255,0.4); }

.dash-schedule { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); border-radius: 12px; padding: 16px; margin-bottom: 16px; }
.dash-schedule-head { font-size: 12.5px; font-weight: 700; color: var(--white); margin-bottom: 12px; }
.dash-schedule-hours { display: flex; justify-content: space-between; font-size: 10px; color: rgba(255,255,255,0.35); margin-bottom: 10px; }
.dash-schedule-track { position: relative; height: 172px; }
.dash-job {
  position: absolute; width: 148px;
  border-radius: 8px; padding: 8px 10px;
  font-size: 11px; font-weight: 700; color: var(--white);
  line-height: 1.5;
}
.dash-job small { display: block; font-weight: 500; font-size: 10px; opacity: 0.8; }
.db-blue { background: rgba(59,130,246,0.28); border: 1px solid rgba(59,130,246,0.5); }
.db-purple { background: rgba(139,92,246,0.28); border: 1px solid rgba(139,92,246,0.5); }
.db-green { background: rgba(16,185,129,0.28); border: 1px solid rgba(16,185,129,0.5); }
.db-red { background: rgba(239,68,68,0.28); border: 1px solid rgba(239,68,68,0.5); }
.db-navy { background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.28); }

.dash-activity { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08); border-radius: 12px; padding: 16px; }
.dash-activity-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
.dash-activity-head span { font-size: 12.5px; font-weight: 700; color: var(--white); }
.dash-activity-head a { font-size: 11px; color: var(--blue-300); font-weight: 600; }
.dash-activity-item { display: flex; align-items: center; gap: 10px; padding: 8px 0; border-top: 1px solid rgba(255,255,255,0.06); }
.dash-activity-item:first-of-type { border-top: none; padding-top: 0; }
.dash-activity-dot { width: 8px; height: 8px; border-radius: 999px; flex-shrink: 0; }
.dash-activity-dot.green { background: #4ade80; }
.dash-activity-dot.blue { background: var(--blue-500); }
.dash-activity-dot.purple { background: #a78bfa; }
.dash-activity-dot.amber { background: var(--amber-400); }
.dash-activity-item > div { flex: 1; min-width: 0; }
.dash-activity-item strong { display: block; font-size: 12px; color: var(--white); }
.dash-activity-item > div span { font-size: 10.5px; color: rgba(255,255,255,0.4); }
.dash-activity-time { font-size: 10.5px; color: rgba(255,255,255,0.35); flex-shrink: 0; }

.dash-float-card {
  position: absolute; left: -20px; bottom: -22px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 16px 20px;
  color: var(--navy-950);
}
.dash-float-label { font-size: 12px; font-weight: 700; }
.dash-float-sub { font-size: 11px; color: var(--gray-500); margin-bottom: 6px; }
.dash-float-value { font-size: 1.4rem; font-weight: 800; color: var(--green-600); }

@media (max-width: 1050px) {
  .hero-grid-v2 { grid-template-columns: 1fr; }
  .dash-mockup { display: none; }
}

/* ===== Trust bar ===== */
.trust-bar-box {
  display: flex; align-items: center;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
}
.trust-bar-left { flex: 1.6; }
.trust-bar-eyebrow { display: block; font-size: 12px; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; color: var(--amber-400); margin-bottom: 16px; }
.trust-bar-items { display: flex; flex-wrap: wrap; gap: 24px; }
.trust-bar-item { display: flex; align-items: center; gap: 10px; font-size: 13.5px; font-weight: 600; color: rgba(255,255,255,0.85); }
.trust-bar-icon { width: 32px; height: 32px; border-radius: 8px; background: rgba(59,130,246,0.15); color: #93c5fd; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.trust-bar-divider { width: 1px; align-self: stretch; background: rgba(255,255,255,0.12); margin: 0 32px; }
.trust-bar-right { flex: 1; display: flex; gap: 14px; align-items: flex-start; }
.trust-bar-icon.lg { width: 40px; height: 40px; }
.trust-bar-right strong { display: block; color: var(--white); font-size: 14px; margin-bottom: 4px; }
.trust-bar-right p { font-size: 13px; color: rgba(255,255,255,0.55); margin-bottom: 6px; }
.trust-bar-right a { color: var(--amber-400); font-weight: 700; font-size: 13px; }

@media (max-width: 900px) {
  .trust-bar-box { flex-direction: column; align-items: stretch; gap: 24px; }
  .trust-bar-divider { display: none; }
}

/* ===== Logo strip ===== */
.logo-strip { padding: 44px 0; border-bottom: 1px solid var(--gray-200); }
.logo-strip .label { text-align: center; font-size: 13px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--gray-500); margin-bottom: 28px; }
.logo-row { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 28px; }
.logo-row .trade-chip {
  display: flex; align-items: center; gap: 8px;
  font-weight: 700; color: var(--gray-500); font-size: 15px;
  opacity: 0.85;
}

/* ===== Stat bar ===== */
.stat-bar { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.stat-bar .stat { text-align: center; }
.stat-bar .stat .num { font-size: 2.2rem; font-weight: 800; color: var(--amber-400); }
.stat-bar .stat .lbl { font-size: 14px; color: rgba(255,255,255,0.65); margin-top: 4px; }
@media (max-width: 700px) { .stat-bar { grid-template-columns: repeat(2, 1fr); } }

/* ===== Feature grid ===== */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.feature-card {
  display: block;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 30px;
  color: inherit;
  text-decoration: none;
  transition: box-shadow 0.2s ease, transform 0.2s ease, border-color .2s ease;
}
.feature-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: var(--gray-200); }
.feature-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  background: var(--blue-100);
  color: var(--blue-600);
  margin-bottom: 18px;
}
.feature-icon.amber { background: var(--amber-100); color: var(--amber-500); }
.feature-card h3 { margin-bottom: 10px; }
.feature-card p { font-size: 14.5px; }
.feature-card .learn { display: inline-flex; align-items: center; gap: 6px; margin-top: 14px; font-weight: 700; font-size: 14px; color: var(--blue-600); }

@media (max-width: 900px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .grid-3, .grid-2, .grid-4 { grid-template-columns: 1fr; }
}

/* ===== How it works ===== */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; counter-reset: step; }
.step { position: relative; padding-left: 4px; }
.step .step-num {
  width: 42px; height: 42px;
  border-radius: 999px;
  background: var(--navy-950);
  color: var(--amber-400);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 16px;
  margin-bottom: 18px;
}
@media (max-width: 800px) { .steps { grid-template-columns: 1fr; } }

/* ===== Split section ===== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.split.reverse .split-media { order: 2; }
.split-media {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.check-list { margin-top: 22px; display: flex; flex-direction: column; gap: 14px; }
.check-item { display: flex; gap: 12px; align-items: flex-start; }
.check-item .tick {
  width: 22px; height: 22px; border-radius: 999px;
  background: var(--green-600); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 2px; font-size: 12px;
}
.check-item strong { display: block; color: var(--navy-950); font-size: 15px; }
.check-item span { font-size: 14px; color: var(--gray-600); }

/* ===== Problem: before/after comparison (StoryBrand section) ===== */
.compare-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 28px;
  align-items: stretch;
  margin-top: 44px;
}
.compare-col {
  min-width: 0;
  border-radius: var(--radius-lg);
  padding: 36px 34px;
}
.compare-before {
  background: var(--white);
  border: 1px solid var(--gray-200);
}
.compare-after {
  background: linear-gradient(160deg, var(--navy-900), var(--navy-950));
  box-shadow: var(--shadow-lg);
}
.compare-col h3 {
  font-size: 13px; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase;
  margin-bottom: 24px;
}
.compare-before h3 { color: var(--gray-500); }
.compare-after h3 { color: var(--amber-400); }
.compare-list { display: flex; flex-direction: column; gap: 16px; }
.compare-list li { display: flex; align-items: center; gap: 12px; font-size: 15.5px; font-weight: 600; }
.compare-before .compare-list li { color: var(--gray-700); }
.compare-after .compare-list li { color: var(--white); }
.x-icon, .check-icon {
  width: 24px; height: 24px; border-radius: 999px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 12px; font-weight: 800;
}
.x-icon { background: var(--red-100); color: var(--red-600); }
.check-icon { background: rgba(245, 158, 11, 0.15); color: var(--amber-400); }
.compare-arrow { display: flex; align-items: center; justify-content: center; color: var(--blue-500); }

@media (max-width: 900px) {
  .compare-grid { gap: 16px; }
  .compare-col { padding: 26px 20px; }
  .compare-col h3 { font-size: 12px; margin-bottom: 18px; }
  .compare-list li { font-size: 13.5px; gap: 8px; }
  .x-icon, .check-icon { width: 20px; height: 20px; font-size: 10px; }
  .compare-arrow svg { width: 20px; height: 20px; }
}
@media (max-width: 560px) {
  .compare-grid { grid-template-columns: 1fr; }
  .compare-arrow { transform: rotate(90deg); margin: -4px auto; }
}

/* ===== Guide section (founder credibility) ===== */
.guide-photo-frame {
  position: relative;
  background: linear-gradient(160deg, var(--navy-900), var(--navy-950));
  border-radius: var(--radius-lg);
  padding: 48px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.guide-avatar {
  width: 120px; height: 120px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue-500), var(--blue-600));
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 2.4rem; font-weight: 800;
  border: 4px solid rgba(255,255,255,0.15);
}
.team-avatar-row { display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.team-avatar-row .guide-avatar { margin-left: -18px; }
.team-avatar-row .guide-avatar:first-child { margin-left: 0; }
.guide-avatar-sm {
  width: 88px; height: 88px;
  font-size: 1.7rem;
  border-color: rgba(10,22,40,0.6);
  filter: brightness(0.85);
}
.guide-photo-frame .guide-name { color: var(--white); font-weight: 800; font-size: 1.1rem; }
.guide-photo-frame .guide-title { color: rgba(255,255,255,0.6); font-size: 13.5px; margin-top: 2px; }
.credential-badges { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.credential-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--blue-100); color: var(--blue-600);
  font-weight: 700; font-size: 13.5px;
  padding: 9px 16px; border-radius: 999px;
}
.credential-badge .tick {
  width: 18px; height: 18px; border-radius: 999px;
  background: var(--blue-600); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; flex-shrink: 0;
}
.guide-copy p + p { margin-top: 14px; }

/* ===== Plan section: visual journey/trail ===== */
.journey {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 90px;
  min-height: 280px;
}
.journey-line {
  position: absolute;
  top: 50%; left: 60px; right: 60px;
  border-top: 3px dotted var(--blue-300);
  z-index: 0;
}
.journey-step { position: relative; z-index: 1; height: 280px; }
.journey-node {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 58px; height: 58px;
  border-radius: 999px;
  background: var(--navy-950);
  color: var(--amber-400);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 20px;
  border: 5px solid var(--white);
  box-shadow: var(--shadow-md);
}
.journey-content {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 230px;
  text-align: center;
}
.journey-content h3 { margin-bottom: 8px; }
.journey-content p { font-size: 14px; }
.step-down .journey-content { top: calc(50% + 48px); }
.step-up .journey-content { bottom: calc(50% + 48px); }

@media (max-width: 700px) {
  .journey { grid-template-columns: 1fr; margin-top: 40px; min-height: 0; gap: 8px; }
  .journey-line { display: none; }
  .journey-step {
    height: auto;
    display: flex; align-items: flex-start; gap: 20px;
    padding: 0 0 40px 24px;
    border-left: 3px dotted var(--blue-300);
    margin-left: 27px;
  }
  .journey-step:last-child { border-left: none; padding-bottom: 0; }
  .journey-node { position: static; transform: none; margin-left: -49px; flex-shrink: 0; }
  .journey-content { position: static; transform: none; width: auto; text-align: left; }
}

@media (max-width: 900px) {
  .split, .split.reverse .split-media { grid-template-columns: 1fr; order: 0; }
  .split { grid-template-columns: 1fr; }
}

/* ===== Testimonials ===== */
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 30px;
}
.stars { color: var(--amber-500); font-size: 15px; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-card p.quote { color: var(--gray-700); font-size: 15px; margin-bottom: 22px; }
.testimonial-person { display: flex; align-items: center; gap: 12px; }
.avatar {
  width: 42px; height: 42px; border-radius: 999px;
  background: linear-gradient(135deg, var(--blue-600), var(--navy-800));
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-weight: 800; font-size: 14px; flex-shrink: 0;
}
.testimonial-person .name { font-weight: 700; font-size: 14px; color: var(--navy-950); }
.testimonial-person .role { font-size: 12.5px; color: var(--gray-500); }

/* ===== Pricing ===== */
.pricing-toggle {
  display: flex; align-items: center; justify-content: center; gap: 14px;
  margin: 0 auto 48px;
  font-weight: 700; font-size: 14px; color: var(--gray-600);
}
.switch {
  width: 52px; height: 28px; background: var(--navy-950); border-radius: 999px;
  position: relative; cursor: pointer; border: none; flex-shrink: 0;
}
.switch .knob {
  position: absolute; top: 3px; left: 3px;
  width: 22px; height: 22px; border-radius: 999px; background: var(--white);
  transition: transform 0.2s ease;
  box-shadow: var(--shadow-sm);
}
.switch.on .knob { transform: translateX(24px); }
.save-badge { background: var(--amber-100); color: #92400e; font-size: 12px; font-weight: 800; padding: 3px 9px; border-radius: 999px; }

.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; align-items: stretch; }
.price-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 34px 28px;
  display: flex;
  flex-direction: column;
}
.price-card.featured {
  border: 2px solid var(--navy-950);
  box-shadow: var(--shadow-lg);
  position: relative;
  transform: translateY(-10px);
}
.price-card .badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--amber-500); color: var(--navy-950);
  font-size: 12px; font-weight: 800; padding: 6px 16px; border-radius: 999px;
  white-space: nowrap;
}
.price-card .plan-name { font-weight: 800; font-size: 1.1rem; color: var(--navy-950); }
.price-card .plan-desc { font-size: 13.5px; color: var(--gray-500); margin: 8px 0 22px; min-height: 40px; }
.price-card .price { display: flex; align-items: baseline; gap: 6px; margin-bottom: 4px; }
.price-card .price .amt { font-size: 2.6rem; font-weight: 800; color: var(--navy-950); }
.price-card .price .per { font-size: 14px; color: var(--gray-500); }
.price-card .price-sub { font-size: 12.5px; color: var(--gray-500); margin-bottom: 24px; }
.price-card .btn { margin-bottom: 26px; }
.price-card .plan-features { display: flex; flex-direction: column; gap: 12px; flex: 1; margin-bottom: 24px; }
.price-card .plan-features li { display: flex; gap: 10px; font-size: 14px; color: var(--gray-700); align-items: flex-start; }
.price-card .plan-features li .tick { color: var(--green-600); font-weight: 800; flex-shrink: 0; }
.price-card .plan-features.two-col { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px 16px; }

/* ===== Pricing split layout ===== */
.pricing-split { display: grid; grid-template-columns: 1fr 1.1fr; gap: 60px; align-items: center; }
.pricing-split-left h2 { margin-bottom: 14px; }
.pricing-lead { font-size: 1.1rem; color: var(--gray-600); margin-bottom: 24px; }
.pricing-annotation { display: flex; align-items: flex-end; gap: 10px; margin-top: 30px; color: var(--blue-600); }
.pricing-annotation span { font-size: 15px; font-weight: 700; font-style: italic; line-height: 1.3; }
.pricing-split-card { max-width: 460px; }

@media (max-width: 900px) {
  .pricing-split { grid-template-columns: 1fr; }
  .price-card .plan-features.two-col { grid-template-columns: 1fr; }
}

/* ===== Trust footer strip ===== */
.trust-footer-strip { background: var(--navy-950); padding: 44px 0; }
.trust-footer-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.trust-footer-item { display: flex; align-items: center; gap: 14px; justify-content: center; text-align: left; }
.trust-footer-icon {
  width: 40px; height: 40px; border-radius: 999px; flex-shrink: 0;
  background: rgba(59,130,246,0.15); color: #93c5fd;
  display: flex; align-items: center; justify-content: center;
}
.trust-footer-item strong { display: block; color: var(--white); font-size: 13.5px; }
.trust-footer-item span { font-size: 12px; color: rgba(255,255,255,0.5); }

@media (max-width: 700px) {
  .trust-footer-row { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .price-card.featured { transform: none; }
}

/* ===== Feature grid (bordered cards) ===== */
.kf-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 44px; }
.kf-item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}
.kf-item .kf-head { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.kf-item .kf-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--blue-100); color: var(--blue-600);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.kf-item h3 { font-size: 1.1rem; }
.kf-item p { font-size: 14px; margin: 0 0 16px; padding-bottom: 16px; border-bottom: 1px solid var(--gray-100); }
.kf-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.kf-tag { font-size: 12px; font-weight: 600; color: var(--gray-600); background: var(--gray-100); padding: 5px 10px; border-radius: 999px; }

@media (max-width: 900px) { .kf-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .kf-grid { grid-template-columns: 1fr; } }

.kf-item .kf-icon.amber { background: var(--amber-100); color: var(--amber-500); }
.kf-mock { background: var(--gray-50); border: 1px solid var(--gray-200); border-radius: 10px; padding: 12px; margin-bottom: 14px; }
.kf-mock-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; font-weight: 700; font-size: 12.5px; color: var(--navy-950); }
.kf-mock-badge { font-size: 10px; font-weight: 700; padding: 3px 8px; border-radius: 999px; white-space: nowrap; }
.kf-mock-badge.green { background: #dcfce7; color: var(--green-600); }
.kf-mock-badge.blue { background: var(--blue-100); color: var(--blue-600); }
.kf-mock-row { display: flex; justify-content: space-between; align-items: center; padding: 5px 0; border-top: 1px solid var(--gray-200); font-size: 11.5px; color: var(--gray-700); }
.kf-mock-row:first-of-type { border-top: none; }
.kf-mock-bars { display: flex; flex-direction: column; gap: 7px; }
.kf-mock-bar-row { display: flex; align-items: center; gap: 8px; font-size: 11px; }
.kf-mock-bar-name { width: 46px; flex-shrink: 0; color: var(--gray-600); }
.kf-mock-bar { height: 15px; border-radius: 4px; }
.kf-mock-avatar { width: 24px; height: 24px; border-radius: 999px; background: var(--blue-600); color: var(--white); display: inline-flex; align-items: center; justify-content: center; font-size: 10px; font-weight: 800; vertical-align: middle; margin-right: 8px; }
.kf-mock-tabs { display: flex; flex-wrap: wrap; gap: 9px; font-size: 9.5px; font-weight: 600; color: var(--gray-400); margin: 8px 0; border-bottom: 1px solid var(--gray-200); padding-bottom: 6px; }
.kf-mock-tabs .active { color: var(--blue-600); }
.kf-mock-check { display: flex; align-items: center; gap: 6px; font-size: 11px; color: var(--gray-700); padding: 3px 0; }
.kf-mock-check svg { color: var(--green-600); flex-shrink: 0; }
.kf-mock-btn { text-align: center; background: var(--blue-600); color: var(--white); font-size: 11px; font-weight: 700; padding: 7px; border-radius: 6px; margin-top: 8px; }
.kf-view-link { font-size: 13px; font-weight: 700; color: var(--blue-600); }

.kf-cal-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 4px; }
.kf-cal-day { font-size: 9px; font-weight: 700; color: var(--gray-400); text-align: center; text-transform: uppercase; padding-bottom: 4px; border-bottom: 1px solid var(--gray-200); margin-bottom: 4px; }
.kf-cal-cell { min-height: 74px; display: flex; flex-direction: column; gap: 3px; }
.kf-cal-block { border-radius: 5px; padding: 4px 5px; font-size: 9px; font-weight: 700; color: var(--white); line-height: 1.35; }
.kf-cal-block small { display: block; font-weight: 500; font-size: 8px; opacity: 0.85; }
.kf-cal-block.blue { background: var(--blue-500); }
.kf-cal-block.purple { background: #a78bfa; }
.kf-cal-block.green { background: var(--green-600); }
.kf-cal-block.orange { background: var(--amber-500); color: var(--navy-950); }

/* ===== Lead-to-paid flow ===== */
.flow-row { display: flex; justify-content: space-between; margin-top: 54px; position: relative; }
.flow-step { flex: 1; text-align: center; padding: 0 10px; position: relative; }
.flow-node {
  width: 56px; height: 56px; border-radius: 999px;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); margin: 0 auto 16px;
  position: relative; z-index: 1;
}
.flow-node.blue { background: var(--blue-600); }
.flow-node.amber { background: var(--amber-500); color: var(--navy-950); }
.flow-step h4 { color: var(--white); font-size: 14px; margin-bottom: 6px; font-weight: 700; }
.flow-step p { color: rgba(255,255,255,0.55); font-size: 12.5px; }
.flow-connector { position: absolute; top: 28px; left: 50%; width: 100%; height: 0; border-top: 2px dashed rgba(255,255,255,0.25); z-index: 0; }
.flow-step:last-child .flow-connector { display: none; }

@media (max-width: 900px) {
  .flow-row { flex-direction: column; gap: 32px; }
  .flow-connector { display: none; }
}

/* ===== Feature grid outcomes strip ===== */
.kf-outcomes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 32px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.kf-outcome { display: flex; align-items: flex-start; gap: 12px; }
.kf-outcome-icon {
  width: 40px; height: 40px; border-radius: 999px;
  background: var(--white); color: var(--blue-600);
  border: 1px solid var(--blue-100);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.kf-outcome strong { display: block; font-size: 14.5px; color: var(--blue-600); margin-bottom: 3px; }
.kf-outcome span { font-size: 13px; color: var(--gray-600); }

@media (max-width: 900px) { .kf-outcomes { grid-template-columns: repeat(2, 1fr); gap: 24px; } }
@media (max-width: 500px) { .kf-outcomes { grid-template-columns: 1fr; gap: 20px; } }

/* ===== CTA banner ===== */
.cta-banner {
  background: linear-gradient(120deg, var(--navy-950), #17376b);
  border-radius: var(--radius-lg);
  padding: 60px;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.cta-banner h2 { color: var(--white); margin-bottom: 14px; }
.cta-banner p { color: rgba(255,255,255,0.75); font-size: 1.05rem; margin-bottom: 30px; max-width: 520px; margin-left: auto; margin-right: auto; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ===== FAQ ===== */
.faq-item { border-bottom: 1px solid var(--gray-200); padding: 22px 0; }
.faq-q { display: flex; justify-content: space-between; align-items: center; cursor: pointer; font-weight: 700; font-size: 16px; color: var(--navy-950); gap: 20px; }
.faq-q .icon { flex-shrink: 0; width: 22px; height: 22px; display: flex; align-items: center; justify-content: center; border-radius: 999px; background: var(--gray-100); font-size: 15px; transition: transform 0.2s ease; }
.faq-item.open .faq-q .icon { transform: rotate(45deg); background: var(--amber-100); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.25s ease; }
.faq-item.open .faq-a { max-height: 300px; }
.faq-a p { padding-top: 14px; font-size: 14.5px; }

/* ===== Values / About ===== */
.value-card { text-align: center; padding: 10px; }
.value-icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: var(--navy-950); color: var(--amber-400);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}

.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.team-card { text-align: center; }
.team-photo {
  width: 100%; aspect-ratio: 1;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--navy-700), var(--navy-950));
  display: flex; align-items: center; justify-content: center;
  color: var(--amber-400); font-weight: 800; font-size: 1.6rem;
  margin-bottom: 14px;
}
.team-card .name { font-weight: 700; font-size: 15px; color: var(--navy-950); }
.team-card .role { font-size: 13px; color: var(--gray-500); }
@media (max-width: 900px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }

.timeline { display: flex; flex-direction: column; gap: 0; }
.timeline-item { display: grid; grid-template-columns: 110px 1fr; gap: 24px; padding: 22px 0; border-top: 1px solid var(--gray-200); }
.timeline-item:first-child { border-top: none; }
.timeline-item .year { font-weight: 800; color: var(--blue-600); font-size: 1.1rem; }

/* ===== Contact ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
label { display: block; font-weight: 700; font-size: 13.5px; color: var(--navy-950); margin-bottom: 7px; }
input, textarea, select {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 14.5px;
  color: var(--gray-900);
  background: var(--white);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--blue-500);
  box-shadow: 0 0 0 3px var(--blue-100);
}
textarea { resize: vertical; min-height: 130px; }
.form-status { font-size: 14px; font-weight: 600; margin-top: 6px; display: none; }
.form-status.show { display: block; }

.contact-info-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px;
}
.contact-row { display: flex; gap: 14px; align-items: flex-start; padding: 16px 0; border-bottom: 1px solid var(--gray-200); }
.contact-row:last-child { border-bottom: none; }
.contact-row .icon-box {
  width: 40px; height: 40px; border-radius: 10px; background: var(--white); border: 1px solid var(--gray-200);
  display: flex; align-items: center; justify-content: center; color: var(--blue-600); flex-shrink: 0;
}
.contact-row strong { display: block; font-size: 14px; color: var(--navy-950); }
.contact-row span { font-size: 14px; color: var(--gray-600); }

@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* ===== Contact v2: dark form + link cards ===== */
.contact-grid-v2 { display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px; align-items: start; }
.contact-form-panel {
  background: linear-gradient(160deg, var(--navy-900), var(--navy-950));
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}
.contact-form-dark { display: flex; flex-direction: column; gap: 20px; }
.contact-form-dark label { color: var(--white); }
.contact-form-dark input, .contact-form-dark textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
}
.contact-form-dark input::placeholder, .contact-form-dark textarea::placeholder { color: rgba(255,255,255,0.35); }
.contact-form-dark input:focus, .contact-form-dark textarea:focus {
  border-color: var(--amber-400);
  box-shadow: 0 0 0 3px rgba(245,158,11,0.15);
}
.btn-send-message {
  background: var(--white);
  color: var(--navy-950);
  font-weight: 800;
  font-size: 15px;
  padding: 15px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn-send-message:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

.contact-link-card {
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 22px 24px;
  margin-bottom: 18px;
  transition: box-shadow 0.15s ease, transform 0.15s ease, border-color 0.15s ease;
}
.contact-link-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); border-color: var(--gray-300); }
.contact-link-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--blue-100); color: var(--blue-600);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-link-label { font-weight: 800; color: var(--navy-950); font-size: 15px; }
.contact-link-value { color: var(--gray-600); font-size: 14px; margin-top: 2px; }
.contact-link-arrow {
  margin-left: auto;
  width: 34px; height: 34px;
  border-radius: 999px;
  border: 1px solid var(--gray-300);
  display: flex; align-items: center; justify-content: center;
  color: var(--navy-950);
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .contact-grid-v2 { grid-template-columns: 1fr; }
}

/* ===== Footer ===== */
.site-footer { background: var(--navy-950); color: rgba(255,255,255,0.7); padding: 72px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr repeat(4, 1fr); gap: 40px; margin-bottom: 56px; }
.footer-brand .logo { color: var(--white); margin-bottom: 16px; }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.55); max-width: 260px; }
.footer-col h4 { color: var(--white); font-size: 14px; margin-bottom: 18px; }
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a { font-size: 14px; color: rgba(255,255,255,0.6); transition: color 0.15s ease; }
.footer-col a:hover { color: var(--amber-400); }
.social-row { display: flex; gap: 10px; margin-top: 20px; }
.social-row a {
  width: 36px; height: 36px; border-radius: 999px; background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
}
.social-row a:hover { background: var(--amber-500); color: var(--navy-950); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
  padding-top: 26px; border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 13px; color: rgba(255,255,255,0.45);
}
.footer-bottom .legal-links { display: flex; gap: 20px; }

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ===== Page hero (inner pages) ===== */
.page-hero {
  background: linear-gradient(180deg, var(--navy-950), var(--navy-900));
  color: var(--white);
  padding: 80px 0 70px;
  text-align: center;
}
.page-hero h1 { color: var(--white); margin-bottom: 16px; }
.page-hero p { color: rgba(255,255,255,0.72); font-size: 1.1rem; max-width: 600px; margin: 0 auto; }

/* Utility */
.text-center { text-align: center; }
.mt-40 { margin-top: 40px; }
.mb-40 { margin-bottom: 40px; }
