/* ==========================================================================
   STNY MARKETING — DESIGN SYSTEM & STYLESHEET
   Brand: STNY Marketing (stnym.com)
   Positioning: Modern Marketing. Local Support.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. CSS Custom Properties / Design Tokens
   -------------------------------------------------------------------------- */
:root {
  /* Surface & Canvas */
  --bg-canvas: #FAF9F5;
  --bg-surface: #FFFFFF;
  --bg-subtle: #F3F2EC;
  --bg-muted: #EBE9E1;
  --bg-dark: #121417;
  --bg-dark-surface: #1B1E22;

  /* Typography Colors */
  --text-main: #121417;
  --text-secondary: #474E59;
  --text-muted: #6B7280;
  --text-faint: #9CA3AF;
  --text-inverse: #FAF9F5;
  --text-inverse-muted: #A1A7B3;

  /* Accent & Status Colors */
  --accent-primary: #1D4ED8;       /* Vibrant Electric Cobalt */
  --accent-hover: #1E40AF;
  --accent-active: #172554;
  --accent-light: #EFF6FF;
  --accent-border: #BFDBFE;
  
  --emerald-accent: #059669;      /* Crisp verified green */
  --emerald-light: #ECFDF5;
  --emerald-border: #A7F3D0;
  
  --amber-accent: #D97706;
  --amber-light: #FFFBEB;

  /* Borders & Dividers */
  --border-subtle: #E6E4DC;
  --border-medium: #D4D1C7;
  --border-strong: #A8A497;
  --border-focus: #1D4ED8;

  /* Typography Stacks */
  --font-display: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;

  /* Spacing & Sizing Scale */
  --space-2xs: 0.25rem;
  --space-xs: 0.5rem;
  --space-sm: 0.75rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4.5rem;
  --space-4xl: 6rem;

  /* Shadows & Elevation */
  --shadow-sm: 0 1px 2px rgba(18, 20, 23, 0.05);
  --shadow-md: 0 4px 12px -2px rgba(18, 20, 23, 0.06), 0 2px 4px -1px rgba(18, 20, 23, 0.04);
  --shadow-lg: 0 12px 32px -4px rgba(18, 20, 23, 0.08), 0 4px 8px -2px rgba(18, 20, 23, 0.04);
  --shadow-hover: 0 16px 40px -6px rgba(18, 20, 23, 0.12), 0 6px 12px -2px rgba(18, 20, 23, 0.06);

  /* Radii */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 220ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 350ms cubic-bezier(0.4, 0, 0.2, 1);

  /* Layout Widths */
  --container-max: 1200px;
  --header-height: 76px;
}

/* --------------------------------------------------------------------------
   2. Reset & Global Styles
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-canvas);
  color: var(--text-main);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
  position: relative;
}

img, svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button, input, textarea, select {
  font: inherit;
}

button {
  cursor: pointer;
  background: none;
  border: none;
}

ul, ol {
  list-style: none;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--space-xl);
  padding-right: var(--space-xl);
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

/* --------------------------------------------------------------------------
   3. Typography & Section Heading Styles
   -------------------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.section-intro {
  max-width: 780px;
  margin-bottom: var(--space-3xl);
}

.section-intro.text-center {
  margin-left: auto;
  margin-right: auto;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--accent-primary);
  background-color: var(--accent-light);
  border: 1px solid var(--accent-border);
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-md);
  text-transform: uppercase;
}

.section-title {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 800;
  color: var(--text-main);
  letter-spacing: -0.025em;
  margin-bottom: var(--space-sm);
}

.section-subtitle {
  font-size: clamp(1.1rem, 1.5vw, 1.3rem);
  color: var(--text-secondary);
  font-weight: 500;
  line-height: 1.45;
}

/* --------------------------------------------------------------------------
   4. Buttons & UI Interactive Controls
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9375rem;
  border-radius: var(--radius-md);
  padding: 0.75rem 1.35rem;
  transition: all var(--transition-base);
  text-align: center;
  border: 1.5px solid transparent;
  white-space: nowrap;
}

.btn:focus-visible {
  outline: 3px solid var(--border-focus);
  outline-offset: 2px;
}

.btn-primary {
  background-color: var(--accent-primary);
  color: #FFFFFF;
  border-color: var(--accent-primary);
  box-shadow: 0 2px 8px rgba(29, 78, 216, 0.25);
}

.btn-primary:hover {
  background-color: var(--accent-hover);
  border-color: var(--accent-hover);
  box-shadow: 0 4px 14px rgba(29, 78, 216, 0.35);
  transform: translateY(-1px);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-outline {
  background-color: transparent;
  color: var(--text-main);
  border-color: var(--border-medium);
}

.btn-outline:hover {
  background-color: var(--bg-surface);
  border-color: var(--text-main);
  transform: translateY(-1px);
}

.btn-secondary {
  background-color: var(--bg-surface);
  color: var(--text-main);
  border-color: var(--border-subtle);
  box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
  background-color: var(--bg-subtle);
  border-color: var(--border-medium);
}

.btn-sm {
  padding: 0.5rem 0.9rem;
  font-size: 0.8125rem;
}

.btn-lg {
  padding: 0.9rem 1.75rem;
  font-size: 1rem;
  border-radius: var(--radius-md);
}

.btn-xl {
  padding: 1.1rem 2.25rem;
  font-size: 1.0625rem;
  letter-spacing: 0.01em;
}

.btn-block {
  width: 100%;
}

.btn-arrow {
  transition: transform var(--transition-fast);
}

.btn:hover .btn-arrow {
  transform: translateX(3px);
}

/* --------------------------------------------------------------------------
   5. Top Announcement Banner
   -------------------------------------------------------------------------- */
.top-announcement {
  background-color: var(--bg-dark);
  color: var(--text-inverse);
  font-size: 0.8125rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-announcement-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.announcement-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.05em;
  font-weight: 600;
  color: #34D399;
}

.pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #10B981;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
  0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
  100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.announcement-text {
  color: var(--text-inverse-muted);
  font-weight: 400;
}

.announcement-link {
  color: #93C5FD;
  font-weight: 600;
  font-size: 0.75rem;
  text-decoration: none;
}

.announcement-link:hover {
  text-decoration: underline;
  color: #FFFFFF;
}

/* --------------------------------------------------------------------------
   6. Primary Site Header & Nav
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(250, 249, 245, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-subtle);
  transition: all var(--transition-base);
}

.site-header.scrolled {
  background-color: rgba(255, 255, 255, 0.96);
  box-shadow: 0 4px 16px rgba(18, 20, 23, 0.04);
}

.header-inner {
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
}

.logo-mark {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.logo-mark svg {
  width: 100%;
  height: 100%;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  color: var(--text-main);
  line-height: 1.1;
}

.logo-tagline {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.03em;
}

.desktop-nav .nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
  padding: 0.4rem 0.2rem;
  position: relative;
}

.nav-link:hover {
  color: var(--text-main);
}

.nav-link-pill {
  font-family: var(--font-mono);
  font-weight: 600;
  background-color: var(--bg-subtle);
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-medium);
  color: var(--text-main);
}

.nav-link-pill:hover {
  background-color: var(--accent-light);
  border-color: var(--accent-border);
  color: var(--accent-primary);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.btn-header {
  padding: 0.6rem 1.15rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

/* Mobile Hamburger Button */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background-color: var(--bg-subtle);
  border: 1px solid var(--border-subtle);
  gap: 5px;
}

.hamburger-bar {
  width: 20px;
  height: 2px;
  background-color: var(--text-main);
  border-radius: 2px;
  transition: all var(--transition-fast);
}

/* Mobile Nav Drawer */
.mobile-nav-drawer {
  position: fixed;
  inset: 0;
  z-index: 1000;
  visibility: hidden;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  transition: all var(--transition-base);
}

.mobile-nav-drawer.open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav-backdrop {
  position: absolute;
  inset: 0;
  background-color: rgba(18, 20, 23, 0.6);
  backdrop-filter: blur(4px);
}

.mobile-nav-content {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(85vw, 360px);
  background-color: var(--bg-surface);
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  padding: var(--space-xl);
  transform: translateX(100%);
  transition: transform var(--transition-base);
}

.mobile-nav-drawer.open .mobile-nav-content {
  transform: translateX(0);
}

.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--border-subtle);
}

.mobile-nav-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
}

.mobile-close-btn {
  color: var(--text-secondary);
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.mobile-nav-link {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-main);
}

.mobile-nav-link:hover {
  color: var(--accent-primary);
}

.mobile-nav-footer {
  margin-top: auto;
  padding-top: var(--space-xl);
  border-top: 1px solid var(--border-subtle);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
}

.mobile-footer-tagline {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

/* --------------------------------------------------------------------------
   7. SECTION 1 — HERO
   -------------------------------------------------------------------------- */
.hero-section {
  padding-top: clamp(2.5rem, 5vw, 4.5rem);
  padding-bottom: clamp(3rem, 6vw, 5.5rem);
  position: relative;
  background-image: radial-gradient(circle at 85% 20%, rgba(29, 78, 216, 0.04) 0%, transparent 45%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(2.5rem, 4vw, 4rem);
  align-items: center;
}

.hero-kicker {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: var(--space-md);
}

.kicker-pill {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--accent-primary);
  background-color: var(--accent-light);
  border: 1px solid var(--accent-border);
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-sm);
}

.kicker-sep {
  color: var(--border-medium);
}

.kicker-sub {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.hero-title {
  font-size: clamp(2.25rem, 4vw, 3.4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--text-main);
  margin-bottom: var(--space-lg);
}

.hero-title-highlight {
  display: block;
  color: var(--accent-primary);
  margin-top: 0.4rem;
}

.hero-description {
  font-size: clamp(1.05rem, 1.3vw, 1.2rem);
  color: var(--text-secondary);
  line-height: 1.55;
  margin-bottom: var(--space-xl);
  max-width: 540px;
}

/* Prominent Hero Offer Card */
.hero-offer-card {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background-color: var(--bg-surface);
  border: 1.5px solid var(--border-medium);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow-sm);
  margin-bottom: var(--space-xl);
  max-width: 520px;
}

.offer-price-unit {
  display: flex;
  align-items: baseline;
  color: var(--text-main);
  flex-shrink: 0;
}

.offer-currency {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent-primary);
  margin-right: 2px;
}

.offer-amount {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.03em;
}

.offer-period {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--text-muted);
  margin-left: 0.35rem;
}

.offer-divider {
  width: 1px;
  height: 52px;
  background-color: var(--border-subtle);
  flex-shrink: 0;
}

.offer-details {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.offer-badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #065F46;
  background-color: var(--emerald-light);
  border: 1px solid var(--emerald-border);
  padding: 0.2rem 0.5rem;
  border-radius: var(--radius-sm);
  width: fit-content;
}

.offer-subtext {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
  margin: 0;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: var(--space-xl);
}

.hero-credibility-line {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.04em;
}

.cred-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.cred-dot {
  color: var(--border-strong);
}

/* Sophisticated Small Business Workspace / Dashboard */
.workspace-card {
  background-color: var(--bg-surface);
  border: 1.5px solid var(--border-medium);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.workspace-header {
  background-color: var(--bg-dark);
  color: var(--text-inverse);
  padding: 0.85rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.workspace-dots {
  display: flex;
  gap: 6px;
}

.wdot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.wdot-red { background-color: #EF4444; }
.wdot-yellow { background-color: #F59E0B; }
.wdot-green { background-color: #10B981; }

.workspace-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #34D399;
  background-color: rgba(16, 185, 129, 0.15);
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
}

.pulse-indicator {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #10B981;
}

.workspace-account-label {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  color: var(--text-inverse-muted);
}

/* Sample Business Switcher */
.workspace-selector-bar {
  background-color: var(--bg-subtle);
  padding: 0.65rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-bottom: 1px solid var(--border-subtle);
  overflow-x: auto;
}

.selector-label {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--text-muted);
  white-space: nowrap;
}

.selector-tabs {
  display: flex;
  gap: 0.4rem;
}

.tab-pill {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.3rem 0.65rem;
  border-radius: var(--radius-sm);
  background-color: transparent;
  color: var(--text-secondary);
  border: 1px solid transparent;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.tab-pill:hover {
  background-color: var(--bg-surface);
  color: var(--text-main);
}

.tab-pill.active {
  background-color: var(--bg-surface);
  color: var(--accent-primary);
  border-color: var(--border-medium);
  box-shadow: var(--shadow-sm);
}

/* Client Card Header */
.workspace-client-card {
  padding: 1.15rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  border-bottom: 1px solid var(--border-subtle);
  background-color: var(--bg-surface);
}

.client-avatar {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background-color: var(--accent-light);
  border: 1px solid var(--accent-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
}

.client-meta {
  flex-grow: 1;
}

.client-name-row {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.client-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-main);
}

.client-location {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent-primary);
  background-color: var(--accent-light);
  padding: 0.15rem 0.45rem;
  border-radius: var(--radius-sm);
}

.client-status {
  font-size: 0.78125rem;
  color: var(--text-muted);
  margin: 0;
}

/* 7 Workspace Cards Grid */
.workspace-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  padding: 1.15rem;
  background-color: #F8F7F2;
}

.ws-tile {
  background-color: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 0.85rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  transition: all var(--transition-fast);
}

.ws-tile:hover {
  border-color: var(--border-medium);
  box-shadow: var(--shadow-sm);
}

.ws-tile-full {
  grid-column: 1 / -1;
  background-color: #FFFFFF;
  border-color: var(--border-medium);
}

.tile-header {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.tile-icon-wrap {
  font-size: 0.95rem;
}

.tile-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8125rem;
  color: var(--text-main);
  flex-grow: 1;
}

.status-pill {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 700;
  padding: 0.15rem 0.45rem;
  border-radius: var(--radius-full);
}

.status-ok {
  background-color: var(--emerald-light);
  color: var(--emerald-accent);
  border: 1px solid var(--emerald-border);
}

.tile-task {
  font-size: 0.75rem;
  color: var(--text-secondary);
  line-height: 1.35;
  margin: 0;
}

.tile-meta {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  color: var(--text-muted);
  margin-top: auto;
}

.workspace-footer {
  padding: 0.85rem 1.25rem;
  background-color: var(--bg-subtle);
  border-top: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.8125rem;
  color: var(--text-secondary);
}

.ws-footer-icon {
  font-size: 1.1rem;
}

/* --------------------------------------------------------------------------
   8. SECTION 2 — THE HUMAN DIFFERENCE
   -------------------------------------------------------------------------- */
.human-diff-section {
  padding: var(--space-4xl) 0;
  background-color: var(--bg-surface);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.intro-prose {
  margin-top: var(--space-lg);
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.intro-prose p {
  margin-bottom: 0.35rem;
}

.intro-prose .prose-emphasis {
  font-weight: 700;
  color: var(--accent-primary);
  font-size: 1.25rem;
  margin-top: 0.75rem;
}

.human-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, 2vw, 2rem);
  margin-top: var(--space-xl);
}

.human-card {
  background-color: var(--bg-canvas);
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all var(--transition-base);
}

.human-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-medium);
  box-shadow: var(--shadow-md);
}

.human-card-featured {
  background-color: #FFFFFF;
  border-color: var(--accent-primary);
  box-shadow: 0 4px 20px rgba(29, 78, 216, 0.08);
}

.card-action-badge {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: var(--space-sm);
}

.featured-badge {
  color: var(--accent-primary);
}

.human-card-title {
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-md);
  color: var(--text-main);
}

.quote-bubble {
  background-color: var(--bg-subtle);
  border-left: 3px solid var(--accent-primary);
  padding: 0.85rem 1.15rem;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin-bottom: var(--space-lg);
  position: relative;
}

.quote-mark {
  position: absolute;
  top: 4px;
  right: 10px;
  font-size: 2.5rem;
  line-height: 1;
  color: var(--border-medium);
  font-family: serif;
  opacity: 0.4;
}

.quote-text {
  font-style: italic;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--text-main);
  margin: 0;
}

.human-card-outcome {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  margin-bottom: var(--space-lg);
}

.outcome-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.outcome-check {
  background-color: var(--emerald-light);
  color: var(--emerald-accent);
}

.outcome-teach {
  background-color: var(--accent-light);
  color: var(--accent-primary);
}

.outcome-compass {
  background-color: #FEF3C7;
  color: #D97706;
}

.outcome-text strong {
  display: block;
  font-size: 1.15rem;
  color: var(--text-main);
  margin-bottom: 0.25rem;
}

.outcome-text p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.45;
  margin: 0;
}

.human-card-list {
  margin-top: auto;
  padding-top: var(--space-md);
  border-top: 1px solid var(--border-subtle);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.human-card-list li {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  position: relative;
  padding-left: 1.15rem;
}

.human-card-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent-primary);
  font-weight: 800;
}

/* Customer Real Quotes Cloud Strip */
.customer-quotes-strip {
  margin-top: var(--space-3xl);
  padding: 1.75rem 2rem;
  background-color: var(--bg-subtle);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
}

.quotes-strip-header {
  margin-bottom: 1rem;
}

.strip-eyebrow {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--accent-primary);
  display: block;
  margin-bottom: 0.25rem;
}

.strip-headline {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-main);
}

.quotes-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 0.85rem;
}

.quote-chip {
  background-color: var(--bg-surface);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-full);
  padding: 0.45rem 0.95rem;
  font-size: 0.875rem;
  font-style: italic;
  font-weight: 500;
  color: var(--text-main);
  transition: all var(--transition-fast);
}

.quote-chip:hover {
  background-color: var(--text-main);
  color: #FFFFFF;
  border-color: var(--text-main);
  transform: translateY(-1px);
}

.quote-chip-highlight {
  border-color: var(--accent-border);
  color: var(--accent-primary);
  font-weight: 600;
}

.quote-chip-highlight:hover {
  background-color: var(--accent-primary);
  color: #FFFFFF;
  border-color: var(--accent-primary);
}

.quotes-cloud-note {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   9. SECTION 3 — WHAT WE HELP WITH
   -------------------------------------------------------------------------- */
.services-section {
  padding: var(--space-4xl) 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.service-card {
  background-color: var(--bg-surface);
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-base);
}

.service-card:hover {
  transform: translateY(-3px);
  border-color: var(--border-medium);
  box-shadow: var(--shadow-md);
}

.service-icon-box {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background-color: var(--bg-subtle);
  color: var(--text-main);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  transition: all var(--transition-fast);
}

.service-card:hover .service-icon-box {
  background-color: var(--accent-light);
  color: var(--accent-primary);
}

.service-card-title {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 0.5rem;
  color: var(--text-main);
}

.service-card-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: var(--space-md);
}

.service-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: auto;
  padding-top: var(--space-sm);
}

.service-tag-list span {
  font-size: 0.6875rem;
  font-family: var(--font-mono);
  background-color: var(--bg-subtle);
  color: var(--text-secondary);
  padding: 0.2rem 0.5rem;
  border-radius: var(--radius-sm);
}

/* Distinctive "Something Else? Just Ask." Card */
.service-card-distinctive {
  background-color: var(--bg-dark);
  border-color: var(--bg-dark);
  color: var(--text-inverse);
  box-shadow: 0 8px 24px rgba(18, 20, 23, 0.12);
}

.service-card-distinctive:hover {
  border-color: var(--accent-primary);
}

.distinctive-badge {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #34D399;
  margin-bottom: var(--space-xs);
}

.service-card-distinctive .service-card-title {
  color: #FFFFFF;
}

.distinctive-cta-word {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: #60A5FA;
  line-height: 1;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.service-card-distinctive .service-card-desc {
  color: var(--text-inverse-muted);
}

.distinctive-btn {
  margin-top: auto;
  background-color: #2563EB;
  border-color: #2563EB;
  color: #FFFFFF;
}

.distinctive-btn:hover {
  background-color: #1D4ED8;
}

/* --------------------------------------------------------------------------
   10. SECTION 4 — $99 MONTHLY PLAN
   -------------------------------------------------------------------------- */
.pricing-section {
  padding: var(--space-4xl) 0;
  background-color: var(--bg-subtle);
}

.pricing-card-wrapper {
  background-color: var(--bg-surface);
  border: 2px solid var(--border-medium);
  border-radius: var(--radius-xl);
  padding: clamp(2rem, 4vw, 3.5rem);
  box-shadow: var(--shadow-lg);
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.pricing-header-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding-bottom: var(--space-xl);
  border-bottom: 1.5px solid var(--border-subtle);
}

.pricing-kicker {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--accent-primary);
  display: block;
  margin-bottom: 0.5rem;
}

.pricing-headline {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text-main);
  margin-bottom: 0.35rem;
}

.pricing-subheading {
  font-family: var(--font-mono);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.04em;
}

.pricing-amount-block {
  text-align: right;
}

.price-figure {
  display: flex;
  align-items: baseline;
  justify-content: flex-end;
}

.currency-symbol {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--accent-primary);
  margin-right: 2px;
}

.price-figure .number {
  font-family: var(--font-display);
  font-size: 4.5rem;
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--text-main);
}

.price-figure .period {
  font-family: var(--font-mono);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-muted);
  margin-left: 0.5rem;
}

.agreement-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--emerald-accent);
  background-color: var(--emerald-light);
  border: 1px solid var(--emerald-border);
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
  margin-top: 0.4rem;
  width: fit-content;
  margin-left: auto;
}

.agreement-subtext {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

.pricing-prose-block {
  padding: var(--space-xl) 0;
}

.prose-main {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 1rem;
}

.prose-staggered {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.prose-staggered p {
  margin-bottom: 0.35rem;
}

.prose-highlight {
  font-weight: 700;
  color: var(--accent-primary);
}

/* Included Checklist */
.pricing-included-container {
  background-color: var(--bg-canvas);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  margin-bottom: var(--space-lg);
}

.included-header {
  margin-bottom: var(--space-md);
}

.included-label {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--text-main);
}

.included-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem 1.25rem;
}

.check-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9375rem;
  color: var(--text-main);
  font-weight: 500;
}

.check-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: var(--emerald-light);
  color: var(--emerald-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.75rem;
  flex-shrink: 0;
}

.pricing-relationship-notice {
  background-color: var(--accent-light);
  border: 1px solid var(--accent-border);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: var(--space-xl);
}

.notice-icon {
  font-size: 1.1rem;
  flex-shrink: 0;
}

.notice-text {
  font-size: 0.9rem;
  color: #1E3A8A;
  margin: 0;
  line-height: 1.45;
}

.pricing-action-footer {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.pricing-cta-btn {
  min-width: 280px;
}

.pricing-footnote {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   11. SECTION 5 — ROUTINE VS PROJECT
   -------------------------------------------------------------------------- */
.comparison-section {
  padding: var(--space-4xl) 0;
  background-color: var(--bg-surface);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
  margin-bottom: var(--space-2xl);
}

.comp-col {
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  background-color: var(--bg-canvas);
  transition: all var(--transition-base);
}

.comp-col-routine {
  border-color: var(--emerald-border);
  background-color: #FBFCFA;
}

.comp-col-project {
  border-color: var(--border-medium);
  background-color: #FAF9F6;
}

.comp-header {
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--border-subtle);
}

.comp-badge {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}

.badge-routine {
  color: var(--emerald-accent);
}

.badge-project {
  color: var(--accent-primary);
}

.comp-title {
  font-size: 2.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-main);
  margin-bottom: 0.25rem;
}

.comp-status-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-sm);
  margin-bottom: 0.75rem;
  background-color: var(--emerald-light);
  color: var(--emerald-accent);
  border: 1px solid var(--emerald-border);
}

.comp-status-quote {
  background-color: var(--accent-light);
  color: var(--accent-primary);
  border-color: var(--accent-border);
}

.comp-desc {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.45;
  margin: 0;
}

.comp-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: var(--space-xl);
}

.comp-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-main);
}

.bullet-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.75rem;
  flex-shrink: 0;
}

.bullet-check {
  background-color: var(--emerald-light);
  color: var(--emerald-accent);
}

.bullet-plus {
  background-color: var(--accent-light);
  color: var(--accent-primary);
}

.comp-footer-tag {
  margin-top: auto;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-secondary);
  padding: 0.65rem 0.85rem;
  background-color: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
}

/* Reassurance Banner */
.reassurance-banner {
  background-color: var(--bg-dark);
  color: var(--text-inverse);
  border-radius: var(--radius-lg);
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  box-shadow: var(--shadow-md);
}

.reassurance-icon {
  color: #34D399;
  flex-shrink: 0;
}

.reassurance-text strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #FFFFFF;
  margin-bottom: 0.2rem;
}

.reassurance-text span {
  font-size: 0.875rem;
  color: var(--text-inverse-muted);
}

/* --------------------------------------------------------------------------
   12. SECTION 6 — LOCAL
   -------------------------------------------------------------------------- */
.local-section {
  padding: var(--space-4xl) 0;
  background-color: var(--bg-canvas);
}

.local-card-container {
  background-color: var(--bg-surface);
  border: 1.5px solid var(--border-medium);
  border-radius: var(--radius-xl);
  padding: clamp(2rem, 4vw, 3.5rem);
  box-shadow: var(--shadow-md);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
}

.local-headline {
  font-size: clamp(2.25rem, 3.5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--text-main);
  margin-bottom: 0.4rem;
}

.local-subheadline {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: var(--space-lg);
}

.local-copy-body {
  margin-bottom: var(--space-lg);
}

.meet-question {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--accent-primary);
  margin-bottom: 0.25rem;
}

.meet-answer {
  font-size: 1.1rem;
  color: var(--text-main);
}

.local-triad-box {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--accent-primary);
  background-color: var(--accent-light);
  border: 1px solid var(--accent-border);
  padding: 0.45rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: var(--space-xl);
}

.triad-dot {
  color: var(--accent-border);
}

.town-pills-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: var(--space-lg);
}

.town-pill {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-secondary);
  background-color: var(--bg-subtle);
  border: 1px solid var(--border-subtle);
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.town-pill:hover,
.town-pill.town-pill-active {
  background-color: var(--text-main);
  color: #FFFFFF;
  border-color: var(--text-main);
}

.town-pill-surrounding {
  background-color: transparent;
  border-style: dashed;
  cursor: default;
}

.town-pill-surrounding:hover {
  background-color: transparent;
  color: var(--text-secondary);
  border-color: var(--border-subtle);
}

.local-town-info {
  background-color: var(--bg-subtle);
  border-left: 3px solid var(--accent-primary);
  padding: 0.75rem 1rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 0.8125rem;
  color: var(--text-secondary);
}

.town-info-indicator {
  font-family: var(--font-mono);
  font-weight: 700;
  color: var(--text-main);
  display: inline;
  margin-right: 0.35rem;
}

/* Geo Graphic Card (Tasteful SVG Corridor Diagram) */
.geo-graphic-card {
  background-color: var(--bg-canvas);
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
}

.geo-graphic-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border-subtle);
}

.geo-graphic-tag {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--text-muted);
}

.geo-graphic-route {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  font-weight: 600;
  color: var(--accent-primary);
  background-color: var(--accent-light);
  padding: 0.15rem 0.45rem;
  border-radius: var(--radius-sm);
}

.geo-svg-wrapper {
  width: 100%;
  aspect-ratio: 500 / 320;
  position: relative;
}

.geo-svg {
  width: 100%;
  height: 100%;
}

.geo-graphic-caption {
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border-subtle);
}

.geo-status-indicator {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--text-secondary);
}

.geo-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--emerald-accent);
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   13. SECTION 7 — EDUCATION
   -------------------------------------------------------------------------- */
.education-section {
  padding: var(--space-4xl) 0;
  background-color: var(--bg-dark);
  color: var(--text-inverse);
}

.education-card {
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}

.education-tag {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #34D399;
  display: block;
  margin-bottom: 0.75rem;
}

.education-headline-small {
  font-size: clamp(1.5rem, 2.5vw, 2.25rem);
  font-weight: 800;
  color: var(--text-inverse-muted);
  letter-spacing: -0.02em;
  margin-bottom: 0.25rem;
}

.education-headline-large {
  font-size: clamp(2.5rem, 4.5vw, 4rem);
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: -0.03em;
  margin-bottom: var(--space-2xl);
  line-height: 1.05;
}

.education-dialogue-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: var(--space-2xl);
}

.edu-item {
  background-color: var(--bg-dark-surface);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
}

.edu-q {
  font-size: 1.15rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 0.75rem;
  line-height: 1.35;
}

.edu-a {
  font-family: var(--font-mono);
  font-size: 0.9375rem;
  font-weight: 700;
  color: #60A5FA;
  margin-bottom: 0.75rem;
}

.edu-detail {
  font-size: 0.875rem;
  color: var(--text-inverse-muted);
  line-height: 1.5;
  margin: 0;
}

.education-relief-box {
  background-color: rgba(255, 255, 255, 0.04);
  border: 1.5px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-xl);
  padding: 2rem 2.5rem;
  text-align: center;
}

.relief-title {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--text-inverse-muted);
  margin-bottom: 0.35rem;
}

.relief-body {
  margin-bottom: 0.75rem;
}

.relief-highlight {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: #34D399;
  margin-right: 0.75rem;
}

.relief-promise {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: #FFFFFF;
}

.relief-note {
  font-size: 0.9375rem;
  color: var(--text-inverse-muted);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}

/* --------------------------------------------------------------------------
   14. SECTION 8 — BIGGER PROJECTS
   -------------------------------------------------------------------------- */
.projects-section {
  padding: var(--space-4xl) 0;
  background-color: var(--bg-canvas);
}

.projects-explanation {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0.5rem;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.project-card {
  background-color: var(--bg-surface);
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-base);
}

.project-card:hover {
  transform: translateY(-3px);
  border-color: var(--border-medium);
  box-shadow: var(--shadow-md);
}

.project-card-badge {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--accent-primary);
  background-color: var(--accent-light);
  padding: 0.2rem 0.5rem;
  border-radius: var(--radius-sm);
  width: fit-content;
  margin-bottom: 0.85rem;
  text-transform: uppercase;
}

.project-title {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--text-main);
  margin-bottom: 0.5rem;
}

.project-desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: var(--space-lg);
}

.project-cta-btn {
  margin-top: auto;
  width: 100%;
}

/* --------------------------------------------------------------------------
   15. SECTION 9 — MASTER DIGITAL BUSINESS CHECKUP
   -------------------------------------------------------------------------- */
.checkup-section {
  padding: var(--space-4xl) 0;
  background-color: var(--bg-surface);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.checkup-wrapper {
  background-color: var(--bg-canvas);
  border: 2px solid var(--border-medium);
  border-radius: var(--radius-xl);
  padding: clamp(2rem, 4vw, 3.5rem);
  box-shadow: var(--shadow-lg);
}

.checkup-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2.5rem, 4vw, 4rem);
  align-items: flex-start;
}

.checkup-tag {
  color: var(--emerald-accent);
  background-color: var(--emerald-light);
  border-color: var(--emerald-border);
}

.checkup-headline {
  font-size: clamp(2rem, 3vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--text-main);
  margin-bottom: 0.35rem;
}

.checkup-subheadline {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent-primary);
  margin-bottom: var(--space-lg);
}

.checkup-offer-box {
  margin-bottom: var(--space-md);
}

.offer-title {
  font-family: var(--font-mono);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--text-main);
  display: block;
  margin-bottom: 0.25rem;
}

.offer-desc {
  font-size: 0.9375rem;
  color: var(--text-secondary);
}

.review-checklist-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem 0.75rem;
  margin-bottom: var(--space-lg);
  padding: 1rem;
  background-color: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
}

.review-item {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-main);
}

.review-check {
  color: var(--emerald-accent);
  font-weight: 800;
}

.checkup-deliverable-card {
  background-color: #FFFFFF;
  border: 1.5px solid var(--border-medium);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}

.deliverable-header {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  margin-bottom: 0.25rem;
}

.deliverable-highlight {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--accent-primary);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.anti-fluff-point {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-bottom: 0.35rem;
}

.anti-fluff-point .cross {
  color: #EF4444;
  font-weight: 800;
  margin-right: 0.35rem;
}

.anti-fluff-truth {
  margin-top: 0.85rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--border-subtle);
  font-size: 0.875rem;
  color: var(--text-main);
  font-weight: 600;
}

.anti-fluff-truth ul {
  margin-top: 0.35rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.anti-fluff-truth li {
  padding-left: 1rem;
  position: relative;
  font-weight: 500;
  color: var(--text-secondary);
}

.anti-fluff-truth li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--accent-primary);
  font-weight: 700;
}

.sample-report-trigger-wrap {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px dashed var(--border-subtle);
}

/* Checkup Mode Tab Navigation */
.checkup-tab-nav {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  background-color: var(--bg-subtle);
  padding: 0.35rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
}

.checkup-tab-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.6rem 0.75rem;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--text-secondary);
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.checkup-tab-btn.active {
  background-color: var(--bg-surface);
  color: var(--accent-primary);
  box-shadow: var(--shadow-sm);
}

.tab-pill-badge {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  font-weight: 700;
  background-color: var(--emerald-light);
  color: var(--emerald-accent);
  padding: 0.1rem 0.4rem;
  border-radius: var(--radius-full);
}

/* Checkup Form Card */
.checkup-form-card {
  background-color: #FFFFFF;
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 2.25rem 2rem;
  box-shadow: var(--shadow-md);
}

.form-card-header {
  margin-bottom: var(--space-lg);
}

.form-card-title {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 0.25rem;
}

.form-card-subtitle {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.checkup-form {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.form-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-main);
}

.required {
  color: #EF4444;
}

.form-control {
  width: 100%;
  padding: 0.75rem 0.9rem;
  font-size: 0.9375rem;
  border: 1.5px solid var(--border-medium);
  border-radius: var(--radius-md);
  background-color: #FFFFFF;
  color: var(--text-main);
  transition: all var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-primary);
  box-shadow: 0 0 0 3px var(--accent-light);
}

.form-control::placeholder {
  color: var(--text-faint);
}

.form-control.invalid {
  border-color: #EF4444;
}

.form-textarea {
  resize: vertical;
  min-height: 85px;
}

.form-hint {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.field-error {
  font-size: 0.75rem;
  color: #EF4444;
  display: none;
}

.field-error.visible {
  display: block;
}

.form-actions {
  margin-top: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.form-privacy-note {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.35;
}

/* Success State */
.form-success-state {
  text-align: center;
  padding: 2rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.success-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: var(--emerald-light);
  border: 2px solid var(--emerald-border);
  display: flex;
  align-items: center;
  justify-content: center;
}

.success-title {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-main);
}

.success-message {
  font-size: 0.9375rem;
  color: var(--text-secondary);
  line-height: 1.5;
  max-width: 440px;
}

.success-steps {
  background-color: var(--bg-subtle);
  border-radius: var(--radius-md);
  padding: 1rem;
  width: 100%;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: left;
  font-size: 0.8125rem;
  color: var(--text-secondary);
}

.sstep {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.sstep span {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: var(--accent-primary);
  color: #FFFFFF;
  font-weight: 700;
  font-size: 0.6875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* 60-Sec Interactive Self-Audit Styles */
.audit-intro {
  margin-bottom: 1.25rem;
}

.audit-badge {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--accent-primary);
  background-color: var(--accent-light);
  padding: 0.2rem 0.5rem;
  border-radius: var(--radius-sm);
  display: inline-block;
  margin-bottom: 0.4rem;
}

.audit-title {
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 0.25rem;
}

.audit-desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.audit-questions {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
}

.audit-q-box {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.aq-title {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-main);
}

.aq-options {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.aq-opt {
  text-align: left;
  padding: 0.6rem 0.85rem;
  background-color: var(--bg-canvas);
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-md);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
}

.aq-opt:hover {
  background-color: var(--bg-subtle);
  border-color: var(--border-medium);
  color: var(--text-main);
}

.aq-opt.selected {
  background-color: var(--accent-light);
  border-color: var(--accent-primary);
  color: #1E3A8A;
  font-weight: 700;
  box-shadow: 0 0 0 1px var(--accent-primary);
}

.audit-results-card {
  margin-top: 1.5rem;
  background-color: var(--bg-canvas);
  border: 1.5px solid var(--border-medium);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.audit-meter-row {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.meter-score-wrap {
  display: flex;
  align-items: baseline;
  background-color: var(--bg-surface);
  border: 1.5px solid var(--accent-border);
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-md);
}

.meter-num {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--accent-primary);
  line-height: 1;
}

.meter-pct {
  font-family: var(--font-mono);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-muted);
}

.meter-rating {
  display: block;
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--text-main);
}

.meter-subtext {
  font-size: 0.8125rem;
  color: var(--text-secondary);
}

.audit-priorities-box {
  background-color: #FFFFFF;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 0.85rem 1rem;
}

.priorities-title {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-main);
  display: block;
  margin-bottom: 0.5rem;
}

.priorities-list {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.priorities-list li {
  font-size: 0.8125rem;
  color: var(--text-secondary);
  line-height: 1.4;
  padding-left: 1rem;
  position: relative;
}

.priorities-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent-primary);
  font-weight: 800;
}

.audit-status-badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.3rem 0.65rem;
  border-radius: var(--radius-sm);
  letter-spacing: 0.04em;
  transition: all var(--transition-fast);
}

.audit-disclaimer-note {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.45;
  background-color: var(--bg-subtle);
  border-left: 3px solid var(--border-medium);
  padding: 0.5rem 0.75rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.form-server-error {
  margin-bottom: 1rem;
  padding: 0.75rem 1rem;
  background-color: #FEF2F2;
  border: 1.5px solid #F87171;
  border-radius: var(--radius-md);
  color: #991B1B;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.4;
}

.success-audit-badge-wrap {
  margin: 0.85rem 0 1.15rem 0;
  background: var(--bg-canvas);
  border: 1.5px dashed var(--border-medium);
  border-radius: var(--radius-md);
  padding: 0.75rem 1.15rem;
  text-align: center;
  width: 100%;
}

/* Sample 1-Page Checkup Report Modal Styles */
.sample-report-dialog {
  max-width: 650px;
}

.sample-report-header-card {
  display: flex;
  justify-content: space-between;
  background-color: var(--bg-subtle);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1rem;
  margin-bottom: 1.25rem;
}

.sample-meta-col {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.sample-label {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.sample-meta-col strong {
  font-size: 0.9375rem;
  color: var(--text-main);
}

.sample-sub {
  font-size: 0.75rem;
  color: var(--text-secondary);
}

.sample-block {
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border-subtle);
}

.sample-block-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 0.6rem;
}

.block-num {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: var(--accent-primary);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6875rem;
  font-weight: 700;
}

.sample-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.sample-list li {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.45;
  padding-left: 1.25rem;
  position: relative;
}

.sample-list li::before {
  content: "⚠";
  position: absolute;
  left: 0;
  color: #D97706;
}

.sample-p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.sample-fixes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.sample-fix-card {
  background-color: var(--bg-canvas);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-md);
  padding: 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.fix-num {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--emerald-accent);
}

.sample-fix-card strong {
  font-size: 0.8125rem;
  color: var(--text-main);
  line-height: 1.3;
}

.sample-fix-card p {
  font-size: 0.75rem;
  color: var(--text-secondary);
  line-height: 1.35;
  margin: 0;
}

.sample-footer-action {
  margin-top: 1.25rem;
}

/* --------------------------------------------------------------------------
   16. SECTION 10 — ABOUT
   -------------------------------------------------------------------------- */
.about-section {
  padding: var(--space-4xl) 0;
  background-color: var(--bg-canvas);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: center;
}

.founder-photo-card {
  background-color: var(--bg-surface);
  border: 1.5px solid var(--border-medium);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.founder-photo-placeholder {
  aspect-ratio: 4 / 4.5;
  background: linear-gradient(145deg, #F3F2EC 0%, #E8E6DE 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  color: var(--text-muted);
}

.placeholder-graphic {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  opacity: 0.6;
}

.placeholder-tag {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
}

.founder-card-badge {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  background-color: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(4px);
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-main);
}

.founder-caption-box {
  padding: 1.5rem;
}

.founder-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-main);
}

.founder-role {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent-primary);
  margin-bottom: 0.75rem;
}

.founder-bio-snippet {
  font-size: 0.875rem;
  font-style: italic;
  color: var(--text-secondary);
  line-height: 1.45;
  margin: 0;
}

.about-headline {
  font-size: clamp(2.25rem, 3.5vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--text-main);
  margin-bottom: var(--space-lg);
}

.about-copy-prose {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: var(--space-xl);
}

.about-copy-prose p {
  margin-bottom: 1rem;
}

.about-purpose-quote {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--accent-primary);
  padding-left: 1rem;
  border-left: 3px solid var(--accent-primary);
}

.about-core-truth {
  margin-top: 1.5rem;
}

.bold-punchline {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--text-main);
}

.target-businesses-wrap {
  padding-top: var(--space-lg);
  border-top: 1.5px solid var(--border-subtle);
}

.target-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  margin-bottom: 0.85rem;
}

.target-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.ttag {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-main);
  background-color: var(--bg-surface);
  border: 1px solid var(--border-medium);
  padding: 0.3rem 0.65rem;
  border-radius: var(--radius-sm);
}

/* --------------------------------------------------------------------------
   17. SECTION 11 — FINAL CTA
   -------------------------------------------------------------------------- */
.final-cta-section {
  padding: var(--space-4xl) 0;
  background-color: var(--bg-surface);
}

.final-cta-card {
  background-color: var(--bg-dark);
  color: var(--text-inverse);
  border-radius: var(--radius-xl);
  padding: clamp(2.5rem, 6vw, 4.5rem) clamp(1.5rem, 4vw, 3rem);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.final-cta-card::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(29, 78, 216, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.final-cta-inner {
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.final-cta-kicker {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #34D399;
  display: inline-block;
  margin-bottom: var(--space-md);
}

.final-cta-title {
  font-size: clamp(2rem, 3.8vw, 3.25rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: #FFFFFF;
  margin-bottom: var(--space-md);
}

.final-cta-sub {
  display: block;
  color: #93C5FD;
  margin-top: 0.35rem;
}

.final-cta-body {
  font-size: clamp(1.15rem, 1.6vw, 1.4rem);
  color: var(--text-inverse-muted);
  margin-bottom: var(--space-2xl);
  font-weight: 500;
}

.final-cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: var(--space-xl);
}

.final-cta-guarantee {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  color: var(--text-inverse-muted);
}

/* --------------------------------------------------------------------------
   18. FOOTER
   -------------------------------------------------------------------------- */
.site-footer {
  background-color: #0E1013;
  color: var(--text-inverse);
  padding-top: var(--space-3xl);
  padding-bottom: var(--space-2xl);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-top-row {
  display: grid;
  grid-template-columns: 2fr 1.25fr 1.25fr;
  gap: clamp(2rem, 4vw, 4rem);
  padding-bottom: var(--space-2xl);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #FFFFFF;
  display: block;
  margin-bottom: 0.5rem;
}

.footer-tagline {
  font-size: 0.95rem;
  color: var(--text-inverse-muted);
  margin-bottom: 0.5rem;
}

.footer-region {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  font-weight: 600;
  color: #60A5FA;
}

.footer-links-heading {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #FFFFFF;
  display: block;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-nav a {
  font-size: 0.875rem;
  color: var(--text-inverse-muted);
  transition: color var(--transition-fast);
}

.footer-nav a:hover {
  color: #FFFFFF;
}

.footer-disclaimer {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 1.25rem;
}

.mono-code {
  font-family: var(--font-mono);
  color: #93C5FD;
}

.footer-bottom-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: var(--space-xl);
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.5);
}

/* --------------------------------------------------------------------------
   19. MODAL DIALOGS (QUOTE & SAMPLE REPORT)
   -------------------------------------------------------------------------- */
.quote-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background-color: rgba(18, 20, 23, 0.65);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  visibility: hidden;
  opacity: 0;
  transition: all var(--transition-base);
}

.quote-modal-backdrop.open {
  visibility: visible;
  opacity: 1;
}

.quote-modal-dialog {
  background-color: #FFFFFF;
  border: 1.5px solid var(--border-medium);
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 520px;
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  transform: translateY(20px);
  transition: transform var(--transition-base);
  max-height: 90vh;
  overflow-y: auto;
}

.quote-modal-backdrop.open .quote-modal-dialog {
  transform: translateY(0);
}

.quote-modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border-subtle);
}

.modal-kicker {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--accent-primary);
  display: block;
}

.modal-title {
  font-size: 1.35rem;
  font-weight: 800;
}

.modal-close-btn {
  color: var(--text-muted);
  padding: 0.25rem;
  border-radius: var(--radius-sm);
  transition: color var(--transition-fast);
}

.modal-close-btn:hover {
  color: var(--text-main);
}

.quote-modal-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.modal-actions {
  margin-top: 0.5rem;
}

.modal-promise {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-style: italic;
  color: var(--accent-primary);
  text-align: center;
  margin-top: 0.5rem;
}

.modal-success {
  text-align: center;
  padding: 1.5rem 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.modal-success .success-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--emerald-light);
  color: var(--emerald-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 800;
}

/* --------------------------------------------------------------------------
   20. RESPONSIVE MEDIA QUERIES
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-copy-block {
    max-width: 650px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .local-card-container {
    grid-template-columns: 1fr;
  }

  .education-dialogue-grid {
    grid-template-columns: 1fr;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .founder-photo-card {
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }

  .checkup-grid {
    grid-template-columns: 1fr;
  }

  .footer-top-row {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 68px;
  }

  .top-announcement-inner {
    justify-content: center;
    text-align: center;
  }

  .announcement-text {
    display: none;
  }

  .desktop-nav {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .btn-header {
    display: none;
  }

  .human-cards-grid {
    grid-template-columns: 1fr;
  }

  .comparison-grid {
    grid-template-columns: 1fr;
  }

  .included-grid {
    grid-template-columns: 1fr;
  }

  .pricing-header-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .pricing-amount-block {
    text-align: left;
  }

  .price-figure {
    justify-content: flex-start;
  }

  .agreement-label {
    margin-left: 0;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .review-checklist-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-top-row {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .sample-fixes-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .header-inner { gap: .45rem; }
  .brand-logo { min-width: 0; gap: .55rem; }
  .logo-mark { width: 38px; flex: 0 0 38px; }
  .logo-title { font-size: .82rem; line-height: 1.05; }
  .logo-tagline { font-size: .54rem; letter-spacing: .06em; }
  .hero-kicker { width: 100%; align-items: flex-start; gap: .35rem; margin-bottom: 1rem; }
  .kicker-pill { max-width: 100%; white-space: normal; line-height: 1.45; padding: .36rem .55rem; }
  .kicker-sub { padding-top: .42rem; white-space: nowrap; }
  .hero-cta-group .btn { min-width: 0; white-space: normal; justify-content: center; text-align: center; line-height: 1.3; }
  .services-grid,
  .projects-grid {
    grid-template-columns: 1fr;
  }

  .hero-offer-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .offer-divider {
    display: none;
  }

  .workspace-grid {
    grid-template-columns: 1fr;
  }

  .final-cta-buttons .btn {
    width: 100%;
  }

  .checkup-tab-nav {
    flex-direction: column;
  }
}

/* Modern editorial treatment. Shared controls and workflow IDs stay intact. */
:root {
  --bg-canvas: #f7f8fa;
  --bg-subtle: #eef1f6;
  --bg-dark: #101d32;
  --text-main: #14243b;
  --text-secondary: #536176;
  --border-subtle: #e1e6ed;
  --border-medium: #cdd5e0;
  --accent-primary: #245ae8;
  --radius-lg: 22px;
  --shadow-lg: 0 20px 60px -25px #203b6638;
}
.top-announcement { background: #14243b; }
.site-header { background: rgba(255,255,255,.94); backdrop-filter: blur(18px); border-bottom: 1px solid #e1e6ed; }
.logo-title { letter-spacing: -.035em; font-family: var(--font-display); }
.logo-tagline { letter-spacing: .08em; font-size: .65rem; }
.nav-link { font-size: .78rem; }
.btn { border-radius: 999px; letter-spacing: 0; }
.btn-primary { box-shadow: 0 6px 18px #245ae824; }
.btn-primary:hover { box-shadow: 0 8px 24px #245ae83b; }
.hero-section { padding: clamp(1rem,2vw,1.75rem) 0 clamp(3rem,5vw,4.75rem); background: radial-gradient(ellipse at 90% 40%,#e1eaff 0,transparent 53%),#f7f8fa; overflow: hidden; }
.hero-grid { gap: clamp(2rem,4vw,4rem); grid-template-columns: 1fr 1fr; }
.hero-title { font-size: clamp(3.1rem,5.3vw,4.65rem); line-height: 1.045; letter-spacing: -.065em; font-weight: 700; }
.hero-title-highlight { margin-top: .18em; }
.hero-kicker { margin-bottom: 1.6rem; flex-wrap: wrap; }
.kicker-pill { border-radius: 999px; background: #e8efff; border-color: transparent; font-size: .65rem; }
.kicker-sub { font-size: .65rem; }
.hero-description { font-size: 1.02rem; line-height: 1.8; max-width: 470px; }
.hero-offer-card { background: transparent; border: 0; border-top: 1px solid #d8dfea; border-radius: 0; padding: 1.4rem 0 0; box-shadow: none; }
.offer-amount { font-size: 2.8rem; }
.offer-badge { border: 0; background: transparent; color: #3b526e; padding-left: 0; }
.hero-cta-group { gap: .75rem; }
.hero-cta-group .btn { font-size: .85rem; padding: 1rem 1.25rem; text-transform: none; }
.hero-cta-group .btn-outline { border-color: transparent; background: transparent; padding-left: .25rem; }
.hero-credibility-line { opacity: .85; gap: .8rem; }
.hero-local-area { display: flex; flex-wrap: wrap; align-items: center; gap: .45rem; margin-top: 1.2rem; max-width: 560px; color: #536176; font-size: .72rem; font-weight: 700; }
.hero-local-area span:not(.hero-local-label) { padding: .35rem .55rem; background: #fff; border: 1px solid #dfe6f0; border-radius: 999px; color: #31445f; }
.hero-local-area .hero-local-label { color: #245ae8; font-family: var(--font-mono); font-size: .62rem; letter-spacing: .07em; text-transform: uppercase; margin-right: .15rem; }
.workspace-card { border: 1px solid #cbd7eb; border-radius: 22px; box-shadow: 0 30px 70px -24px #25437350,0 0 0 8px #ffffff80; overflow: hidden; }
.workspace-header { background: #14243b; color: #fff; padding: 1.05rem; }
.workspace-account-label { color: #c2cde0; font-size: .65rem; }
.workspace-status-badge { background: #233f46; color: #abefd4; border-color: #36575a; font-size: .6rem; }
.workspace-selector-bar { background: #f5f7fc; padding: 1rem; }
.selector-label { font-size: .6rem; }
.tab-pill { border-radius: 999px; font-size: .65rem; }
.workspace-client-card { padding: 1.25rem; }
.client-avatar { border-radius: 16px; background: #edf2fb; }
.client-name { font-size: .95rem; }
.client-status { font-size: .7rem; }
.workspace-grid { background: #f5f7fb; gap: .65rem; padding: .85rem; }
.ws-tile { border-color: #e5eaf2; border-radius: 12px; padding: .85rem; box-shadow: 0 2px 5px #172c4804; }
.tile-header { flex-wrap: wrap; gap: .35rem; }
.tile-title { font-size: .73rem; }
.tile-task { font-size: .72rem; line-height: 1.6; }
.tile-meta { font-size: .6rem; }
.status-pill { font-size: .55rem; }
.workspace-footer { font-size: .7rem; background: #fff; }
.section-tag { letter-spacing: .15em; font-size: .68rem; }
.section-title { letter-spacing: -.045em; font-size: clamp(1.8rem,3.3vw,2.8rem); line-height: 1.16; text-wrap: balance; }
.section-subtitle { font-size: 1.05rem; }
.human-diff-section,.services-section,.projects-section,.about-section { padding-top: 4.5rem; padding-bottom: 4.5rem; }
.human-diff-section { background: #fff; }
.human-card,.service-card,.project-card { box-shadow: none; border-color: #e1e6ed; }
.human-card { padding: 2rem; }
.human-card-featured { background: #eef3ff; }
.human-card-title { letter-spacing: -.045em; }
.quote-bubble { border-radius: 14px; }
.service-icon-box { border-radius: 14px; }
.service-card:hover,.project-card:hover { transform: translateY(-4px); box-shadow: 0 14px 32px -18px #203b6638; }
.customer-quotes-strip { border-radius: 22px; background: #f7f8fa; }
.quote-chip { border-radius: 999px; }
.pricing-card-wrapper { border-radius: 28px; box-shadow: 0 25px 70px -30px #132b5550; }
.pricing-headline,.checkup-headline,.local-headline,.about-headline { letter-spacing: -.045em; text-wrap: balance; }
.comp-col,.geo-graphic-card,.education-card,.checkup-wrapper,.checkup-form-card,.founder-photo-card { border-radius: 22px; }
.form-control { border-radius: 10px; background: #fafbfd; min-height: 48px; }
.form-control:focus { background: #fff; }
.final-cta-card { border-radius: 28px; background: #14243b; }
.final-cta-title { letter-spacing: -.05em; text-wrap: balance; }
:where(a,button,input,select,textarea):focus-visible { outline: 3px solid #628aff; outline-offset: 4px; }
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy-block { max-width: 660px; }
  .hero-visual-block { width: 100%; max-width: 650px; margin: 1rem auto 0; }
  .hero-title { font-size: clamp(3.2rem,8vw,5rem); }
  .hero-description { max-width: 560px; }
}
@media (max-width: 600px) {
  .hero-section { padding: .75rem 0 3rem; }
  .hero-title { font-size: clamp(2.7rem,10.8vw,3.8rem); }
  .hero-description { font-size: .96rem; }
  .hero-local-area { gap: .35rem; font-size: .65rem; }
  .hero-local-area span:not(.hero-local-label) { padding: .28rem .45rem; }
  .hero-cta-group { align-items: stretch; }
  .hero-cta-group .btn { width: 100%; }
  .workspace-card { box-shadow: 0 18px 40px -24px #25437350; }
  .workspace-account-label { display: none; }
  .human-diff-section,.services-section,.projects-section,.about-section { padding-top: 3rem; padding-bottom: 3rem; }
  .human-card { padding: 1.5rem; }
  .section-title { font-size: 1.85rem; }
}

/* --------------------------------------------------------------------------
   21. ACCESSIBILITY & PREFERS-REDUCED-MOTION
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}


/* ==========================================================================
   MOBILE VIEWPORT & OVERFLOW FIT (320px - 430px)
   ========================================================================== */
@media (max-width: 600px) {
  /* Remove excessive desktop inset: 32px padding -> 16px (1rem) standard mobile gutter */
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
    max-width: 100%;
  }

  /* Typography & Hero containment */
  .hero-section {
    padding: 0.75rem 0 3rem;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    min-width: 0;
  }
  .hero-copy-block,
  .hero-visual-block {
    min-width: 0;
    max-width: 100%;
  }
  .hero-title {
    font-size: clamp(1.85rem, 7.5vw, 2.65rem);
    line-height: 1.08;
    letter-spacing: -0.04em;
    overflow-wrap: break-word;
    word-break: normal;
  }
  .hero-title-highlight {
    display: inline-block;
    margin-top: 0.15em;
  }
  .hero-description {
    font-size: 0.94rem;
    line-height: 1.65;
    max-width: 100%;
  }
  .hero-local-area {
    gap: 0.35rem;
    font-size: 0.65rem;
    max-width: 100%;
  }
  .hero-local-area span:not(.hero-local-label) {
    padding: 0.28rem 0.45rem;
  }
  .hero-cta-group {
    align-items: stretch;
    width: 100%;
  }
  .hero-cta-group .btn {
    width: 100%;
    padding: 0.85rem 1rem;
    font-size: 0.875rem;
  }

  /* Global Button Wrapping Protection */
  .btn {
    white-space: normal;
    max-width: 100%;
    word-break: normal;
    text-align: center;
  }

  /* Workspace Card Containment & Tabs Wrap/Scroll */
  .workspace-card {
    box-shadow: 0 14px 32px -20px rgba(37, 67, 115, 0.3);
    max-width: 100%;
    min-width: 0;
  }
  .workspace-account-label {
    display: none;
  }
  .workspace-header {
    padding: 0.75rem 0.85rem;
  }
  .workspace-selector-bar {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0.75rem 0.85rem;
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
  }
  .selector-tabs {
    display: flex;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 0.35rem;
    padding-bottom: 2px;
  }
  .selector-tabs::-webkit-scrollbar {
    display: none;
  }
  .tab-pill {
    flex-shrink: 0;
    font-size: 0.68rem;
    padding: 0.3rem 0.55rem;
  }
  .workspace-client-card {
    padding: 0.85rem;
    min-width: 0;
  }
  .workspace-grid {
    grid-template-columns: 1fr;
    padding: 0.65rem;
    gap: 0.5rem;
    min-width: 0;
  }
  .ws-tile {
    min-width: 0;
    padding: 0.75rem;
  }
  .workspace-footer {
    padding: 0.75rem 0.85rem;
    min-width: 0;
  }
  .ws-footer-text {
    font-size: 0.68rem;
    white-space: normal;
    overflow-wrap: break-word;
  }

  /* Section Spacing & Cards */
  .human-diff-section,
  .services-section,
  .projects-section,
  .about-section {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  .human-card {
    padding: 1.25rem 1rem;
    min-width: 0;
  }
  .section-title {
    font-size: 1.85rem;
  }

  /* Customer Quotes Strip */
  .customer-quotes-strip {
    padding: 1.25rem 1rem;
    border-radius: 16px;
    min-width: 0;
  }
  .quote-chip {
    white-space: normal;
    text-align: left;
    max-width: 100%;
    line-height: 1.35;
    word-break: normal;
    font-size: 0.8125rem;
    padding: 0.45rem 0.75rem;
  }

  /* Comparison Section */
  .comp-col {
    padding: 1.25rem 1rem;
    border-radius: 16px;
    min-width: 0;
  }
  .comp-title {
    font-size: 1.75rem;
  }

  /* Local Area Section */
  .local-card-container {
    padding: 1.25rem 1rem;
    border-radius: 16px;
    min-width: 0;
  }
  .local-triad-box {
    max-width: 100%;
    flex-wrap: wrap;
    gap: 0.35rem 0.5rem;
    font-size: 0.75rem;
    padding: 0.35rem 0.75rem;
  }

  /* Education Section */
  .education-relief-box {
    padding: 1.25rem 1rem;
    border-radius: 16px;
  }

  /* Checkup Section & Form Card */
  .checkup-wrapper {
    padding: 1.25rem 0.85rem;
    border-radius: 16px;
    min-width: 0;
  }
  .checkup-grid {
    grid-template-columns: 1fr;
    min-width: 0;
  }
  .checkup-details {
    min-width: 0;
    max-width: 100%;
  }
  .checkup-form-card {
    padding: 1.25rem 0.85rem;
    border-radius: 16px;
    min-width: 0;
  }
  .form-card-title {
    font-size: 1.25rem;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .review-checklist-grid {
    grid-template-columns: 1fr;
    padding: 0.75rem;
    min-width: 0;
  }

  /* Final CTA Card Containment */
  .final-cta-card {
    padding: 2rem 1.15rem;
    border-radius: 20px;
    overflow: hidden;
    max-width: 100%;
    min-width: 0;
  }
  .final-cta-card::before {
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    border-radius: inherit;
    background: radial-gradient(circle at 80% 20%, rgba(29, 78, 216, 0.2) 0%, transparent 70%);
  }
  .final-cta-title {
    font-size: clamp(1.75rem, 6vw, 2.25rem);
  }

  /* Modals */
  .quote-modal-backdrop {
    padding: 0.75rem;
  }
  .quote-modal-dialog,
  .sample-report-dialog {
    padding: 1.25rem 1rem;
    border-radius: 16px;
    max-width: 100%;
  }
  .sample-report-header-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }
  .sample-meta-col.text-right {
    text-align: left;
  }
}

@media (max-width: 360px) {
  .container {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
  .selector-tabs {
    flex-wrap: wrap;
  }
  .hero-title {
    font-size: 1.65rem;
  }
  .kicker-pill {
    font-size: 0.6rem;
    padding: 0.25rem 0.45rem;
  }
  .brand-logo {
    gap: 0.4rem;
  }
  .logo-title {
    font-size: 0.78rem;
  }
  .checkup-wrapper {
    padding: 1rem 0.65rem;
  }
  .checkup-form-card {
    padding: 1rem 0.65rem;
  }
  .hero-cta-group .btn {
    font-size: 0.8rem;
    padding: 0.75rem 0.85rem;
  }
  .offer-amount {
    font-size: 2.3rem;
  }
  .section-title {
    font-size: 1.55rem;
  }
}
