/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  --navy:      #0d1f4c;
  --orange:    #f07d00;
  --blue:      #0099dd;
  --white:     #ffffff;
  --off-white: #f5f7fa;
  --text:      #1a1a2e;
  --muted:     #6b7280;

  --font-display: 'Barlow Condensed', sans-serif;
  --font-body:    'DM Sans', sans-serif;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 8rem;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;

  --ease: 0.2s ease;
}

/* ============================================================
   RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { font-size: 16px; scroll-behavior: smooth; }
body  { font-family: var(--font-body); color: var(--text); background: var(--white); line-height: 1.6; }
img   { max-width: 100%; display: block; }
a     { color: var(--blue); text-decoration: none; }
a:hover { text-decoration: underline; }
ul, ol { list-style: none; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h2 { font-size: clamp(2rem,   4vw, 3rem);   }
h3 { font-size: clamp(1.5rem, 3vw, 2rem);   }

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.section        { padding: var(--space-lg) 0; }
.section--dark  { background: var(--navy);      color: var(--white); }
.section--alt   { background: var(--off-white); }

/* ============================================================
   SITE HEADER
   ============================================================ */
.site-header {
  background: var(--navy);
  padding: 0.75rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.35);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  position: relative;
}

.site-logo img { height: 52px; width: auto; }

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-link {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-sm);
  transition: color var(--ease), background var(--ease);
  text-decoration: none;
}

.nav-link:hover,
.nav-link.active {
  color: var(--orange);
  text-decoration: none;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--ease), opacity var(--ease);
}

/* ============================================================
   SITE FOOTER
   ============================================================ */
.site-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.55);
  padding: var(--space-md) 0;
  text-align: center;
  font-size: 0.875rem;
}

.site-footer p + p { margin-top: 0.5rem; }

.site-footer a {
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color var(--ease);
}
.site-footer a:hover { color: var(--orange); text-decoration: none; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: var(--navy);
  color: var(--white);
  padding: var(--space-lg) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 40%, rgba(0, 153, 221, 0.18) 0%, transparent 65%),
    radial-gradient(ellipse at 25% 85%, rgba(240, 125, 0, 0.12) 0%, transparent 55%);
  pointer-events: none;
}

.hero > * { position: relative; }

.hero__eyebrow {
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: var(--space-sm);
}

.hero__title        { color: var(--white); margin-bottom: var(--space-sm); }
.hero__title em     { color: var(--orange); font-style: normal; }

.hero__sub {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.72);
  max-width: 640px;
  margin: 0 auto var(--space-md);
  line-height: 1.75;
}

.hero__cta { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform var(--ease), box-shadow var(--ease), background var(--ease);
}
.btn:hover { transform: translateY(-2px); text-decoration: none; }

.btn--primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(240, 125, 0, 0.4);
}
.btn--primary:hover {
  background: #ff9010;
  box-shadow: 0 6px 28px rgba(240, 125, 0, 0.55);
  color: var(--white);
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.4);
}
.btn--ghost:hover { border-color: var(--white); color: var(--white); }

/* ============================================================
   SECTION HEADINGS
   ============================================================ */
.section-heading {
  text-align: center;
  margin-bottom: var(--space-md);
}
.section-heading__sub {
  color: var(--muted);
  margin-top: 0.5rem;
  font-size: 1.05rem;
}
.section--dark .section-heading__sub { color: rgba(255, 255, 255, 0.65); }

/* ============================================================
   FEATURE LIST
   ============================================================ */
.feature-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-md);
  margin-top: var(--space-md);
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: transform var(--ease), box-shadow var(--ease);
}
.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.feature-card__icon  { font-size: 2rem; margin-bottom: 0.75rem; }
.feature-card__title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 0.4rem;
}

/* Who It's For — simple pill list */
.audience-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: var(--space-md);
}
.audience-pill {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.5rem 1.25rem;
  border-radius: 999px;
}

/* ============================================================
   WAITLIST FORM
   ============================================================ */
.waitlist {
  padding: var(--space-lg) 0;
  text-align: center;
}

.waitlist__heading { margin-bottom: 0.5rem; }
.waitlist__sub     { color: var(--muted); margin-bottom: var(--space-md); }

.waitlist__form {
  display: flex;
  gap: 0.75rem;
  max-width: 480px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}

.waitlist__input {
  flex: 1;
  min-width: 240px;
  padding: 0.85rem 1.25rem;
  border: 2px solid #d1d5db;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 1rem;
  outline: none;
  transition: border-color var(--ease);
}
.waitlist__input:focus { border-color: var(--blue); }

.waitlist__message { margin-top: var(--space-sm); font-weight: 600; min-height: 1.5rem; }
.waitlist__message--success { color: #16a34a; }
.waitlist__message--error   { color: #dc2626; }

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq { max-width: 700px; margin: 0 auto; }

.faq__item { border-bottom: 1px solid #e5e7eb; }

.faq__question {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--navy);
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  padding: var(--space-sm) 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq__question::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--orange);
  flex-shrink: 0;
  transition: transform var(--ease);
}
.faq__item.open .faq__question::after { transform: rotate(45deg); }

.faq__answer {
  display: none;
  padding: 0 0 var(--space-sm);
  color: var(--muted);
  line-height: 1.75;
}
.faq__item.open .faq__answer { display: block; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--navy);
    flex-direction: column;
    align-items: stretch;
    padding: var(--space-sm);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  }
  .site-nav.open     { display: flex; }
  .hamburger         { display: flex; }

  .hero__cta         { flex-direction: column; align-items: center; }

  .waitlist__form    { flex-direction: column; align-items: stretch; }
  .waitlist__input   { min-width: unset; }
}

/* ============================================================
   CALCULATOR DEMO
   ============================================================ */
.calc-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  max-width: 620px;
  margin: 0 auto;
}

.calc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-sm);
}

.calc-field            { display: flex; flex-direction: column; gap: 0.4rem; }
.calc-field--full      { grid-column: 1 / -1; }

.calc-label {
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.calc-hint {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.35);
  min-height: 1em;
}

.calc-input,
.calc-select {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.7rem 1rem;
  outline: none;
  transition: border-color var(--ease);
  width: 100%;
}
.calc-input:focus,
.calc-select:focus      { border-color: var(--blue); }
.calc-select option     { background: var(--navy); color: var(--white); }
.calc-input::placeholder { color: rgba(255, 255, 255, 0.3); }

.calc-condition { display: flex; gap: 0.5rem; }

.condition-btn {
  flex: 1;
  padding: 0.65rem 0.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-sm);
  color: rgba(255, 255, 255, 0.65);
  font-family: var(--font-display);
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--ease), border-color var(--ease), color var(--ease);
}
.condition-btn:hover,
.condition-btn.selected {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
}

.calc-run {
  width: 100%;
  justify-content: center;
  margin-top: var(--space-sm);
}

.calc-result {
  display: none;
  margin-top: var(--space-md);
  padding-top: var(--space-md);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.calc-result.visible     { display: block; }

.calc-result__range {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  color: var(--orange);
  letter-spacing: 0.02em;
  line-height: 1;
}

.calc-result__min        { font-size: 0.88rem; color: rgba(255,255,255,0.5); margin-top: 0.4rem; }
.calc-result__upsell     { font-size: 0.95rem; color: var(--blue); font-weight: 600; margin-top: 0.75rem; }
.calc-result__disclaimer { font-size: 0.78rem; color: rgba(255,255,255,0.35); margin-top: 0.75rem; }
.calc-result__cta        { margin-top: var(--space-sm); }

/* ============================================================
   STAT CALLOUT
   ============================================================ */
.stat-callout {
  background: var(--orange);
  color: var(--white);
  padding: var(--space-lg) 0;
  text-align: center;
}

.stat-callout__number {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 10vw, 7rem);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-callout__label {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ============================================================
   RESPONSIVE — CALCULATOR
   ============================================================ */
@media (max-width: 600px) {
  .calc-grid          { grid-template-columns: 1fr; }
  .calc-field--full   { grid-column: 1; }
}

/* ============================================================
   HOW IT WORKS — 3-STEP FLOW
   ============================================================ */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-md);
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  top: 2rem;
  left: calc(16.67% + 1.5rem);
  right: calc(16.67% + 1.5rem);
  height: 2px;
  background: linear-gradient(to right, var(--blue), var(--orange));
  pointer-events: none;
}

.step { text-align: center; }

.step__bubble {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-sm);
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 4px var(--off-white);
}

.step__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 0.4rem;
}

.step p { font-size: 0.95rem; color: var(--muted); }

/* ============================================================
   STATS ROW
   ============================================================ */
.stats-row {
  background: var(--navy);
  padding: var(--space-lg) 0;
  color: var(--white);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  text-align: center;
}

.stat-item__number {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5rem);
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
}

.stat-item__label {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 0.4rem;
  line-height: 1.4;
}

/* ============================================================
   QUOTE DEMO
   ============================================================ */
.quote-demo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  align-items: start;
  max-width: 960px;
  margin: var(--space-md) auto 0;
}

.quote-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

/* reuse calc-input/select/label styles — just alias them */
.quote-form .calc-label  { display: block; margin-bottom: 0.35rem; }
.quote-form .calc-input,
.quote-form .calc-select { width: 100%; }

/* The preview card — looks like a real document */
.quote-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
  color: var(--text);
  font-size: 0.9rem;
}

.quote-card__header {
  background: var(--navy);
  padding: 1rem 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.quote-card__brand {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--orange);
  letter-spacing: 0.04em;
}

.quote-card__doc-label {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.quote-card__body { padding: 1.25rem; }

.quote-card__meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e5e7eb;
  margin-bottom: 1rem;
}

.quote-card__meta-group {}
.quote-card__meta-lbl {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.2rem;
}
.quote-card__meta-val { font-weight: 600; color: var(--text); }

.quote-card__items { width: 100%; border-collapse: collapse; margin-bottom: 1rem; }
.quote-card__items th {
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: left;
  padding: 0.3rem 0;
  border-bottom: 2px solid var(--navy);
}
.quote-card__items th:last-child { text-align: right; }
.quote-card__items td {
  padding: 0.6rem 0;
  border-bottom: 1px solid #f0f0f0;
  vertical-align: top;
}
.quote-card__items td:last-child { text-align: right; font-weight: 600; }

.quote-card__total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 2px solid var(--navy);
  padding-top: 0.75rem;
  margin-bottom: 1rem;
}

.quote-card__total-lbl {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--navy);
}

.quote-card__total-val {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--navy);
}

.quote-card__send {
  width: 100%;
  justify-content: center;
  font-size: 1rem;
  padding: 0.75rem;
}

.quote-card__footer {
  text-align: center;
  font-size: 0.78rem;
  color: var(--muted);
  margin-top: 0.75rem;
}

/* ============================================================
   RESPONSIVE — INSTANT QUOTE
   ============================================================ */
@media (max-width: 768px) {
  .steps        { grid-template-columns: 1fr; }
  .steps::before { display: none; }
  .stats-grid   { grid-template-columns: 1fr; gap: var(--space-sm); }
  .quote-demo   { grid-template-columns: 1fr; }
}

/* ============================================================
   BEFORE / AFTER COMPARISON
   ============================================================ */
.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  max-width: 800px;
  margin: var(--space-md) auto 0;
}

.compare-col {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.compare-col__header {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.75rem 1.25rem;
}

.compare-col--before .compare-col__header { background: #fee2e2; color: #991b1b; }
.compare-col--after  .compare-col__header { background: #dcfce7; color: #166534; }

.compare-col__rows { padding: 0.5rem 0; }

.compare-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 1.25rem;
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.compare-row:last-child { border-bottom: none; }

.compare-col--before .compare-row { background: #fff5f5; color: #7f1d1d; }
.compare-col--after  .compare-row { background: #f0fdf4; color: #14532d; }

.compare-row__icon { font-size: 1.1rem; flex-shrink: 0; }

/* ============================================================
   PIPELINE DEMO
   ============================================================ */
.pipeline-wrap {
  max-width: 480px;
  margin: var(--space-md) auto 0;
}

.pipeline-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin-bottom: var(--space-sm);
}

.pipeline-stat {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-md);
  padding: 0.75rem;
  text-align: center;
}

.pipeline-stat__num {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
}

.pipeline-stat__lbl {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.55);
  margin-top: 0.2rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-family: var(--font-display);
}

.job-list {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.job-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 0.9rem 1rem;
  box-shadow: 0 2px 10px rgba(0,0,0,0.07);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transition: box-shadow var(--ease);
}
.job-card:hover { box-shadow: 0 4px 18px rgba(0,0,0,0.11); }

.job-card__info   { flex: 1; min-width: 0; }
.job-card__name   { font-weight: 600; font-size: 0.95rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.job-card__type   { font-size: 0.78rem; color: var(--muted); margin-top: 0.1rem; }
.job-card__amount {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  white-space: nowrap;
}

.status-badge {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  white-space: nowrap;
}
.status-badge--paid     { background: #dcfce7; color: #166534; }
.status-badge--invoiced { background: #dbeafe; color: #1e40af; }
.status-badge--booked   { background: #fef9c3; color: #854d0e; }
.status-badge--overdue  { background: #fee2e2; color: #991b1b; }

.job-card__btn {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: background var(--ease), transform var(--ease);
}
.job-card__btn:hover { transform: translateY(-1px); }
.job-card__btn--invoice  { background: var(--orange); color: var(--white); }
.job-card__btn--reminder { background: var(--blue);   color: var(--white); }
.job-card__btn--overdue  { background: #dc2626;       color: var(--white); }

/* Toast notification */
.toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(calc(100% + 2rem));
  background: var(--navy);
  color: var(--white);
  padding: 0.85rem 1.5rem;
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  font-weight: 500;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 200;
  white-space: nowrap;
  border-left: 4px solid var(--orange);
}
.toast.visible {
  transform: translateX(-50%) translateY(0);
}

/* ============================================================
   RESPONSIVE — MINI CRM
   ============================================================ */
@media (max-width: 600px) {
  .compare-grid           { grid-template-columns: 1fr; }
  .pipeline-summary       { grid-template-columns: repeat(3, 1fr); }
  .job-card__btn          { font-size: 0.72rem; padding: 0.35rem 0.6rem; }
}

/* ============================================================
   HOME — TOOL CARDS
   ============================================================ */
.tool-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-md);
}

.tool-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
  border-top: 5px solid var(--card-accent, var(--orange));
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
  transition: transform var(--ease), box-shadow var(--ease);
}
.tool-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
  text-decoration: none;
  color: inherit;
}

.tool-card__icon  { font-size: 2.25rem; }

.tool-card__title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--navy);
  line-height: 1.1;
}

.tool-card__desc  { font-size: 0.95rem; color: var(--muted); flex: 1; line-height: 1.6; }

.tool-card__link {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--card-accent, var(--orange));
  margin-top: auto;
}

/* ============================================================
   HOME — TRUST ROW
   ============================================================ */
.trust-row {
  display: flex;
  justify-content: center;
  gap: var(--space-lg);
  flex-wrap: wrap;
  margin-top: var(--space-md);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
}

.trust-item__icon { font-size: 1.1rem; }

/* ============================================================
   RESPONSIVE — HOME
   ============================================================ */
@media (max-width: 768px) {
  .tool-grid  { grid-template-columns: 1fr; }
  .trust-row  { flex-direction: column; align-items: center; gap: var(--space-sm); }
}
