/* =============================================
   SALESFORECASTER.IO — V2
   Clean, professional B2B SaaS
   Brand: Blue #1a6dcc | Green #5abf3c
   Fonts: Plus Jakarta Sans + Outfit
   ============================================= */

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

:root {
  --blue: #1a6dcc;
  --blue-dark: #1459a8;
  --blue-light: #e8f1fb;
  --blue-mid: #c5dcf5;
  --green: #5abf3c;
  --green-dark: #45a02c;
  --green-light: #edfae7;
  --dark: #0d1221;
  --dark-card: #151c30;
  --dark-border: rgba(255,255,255,0.08);
  --gray-50: #f7f9fc;
  --gray-100: #f0f3f9;
  --gray-200: #e2e8f4;
  --gray-400: #94a3bb;
  --gray-600: #566580;
  --gray-800: #2a3550;
  --text: #111827;
  --text-light: #4b5873;
  --white: #ffffff;
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow-sm: 0 2px 12px rgba(17,24,39,0.06);
  --shadow: 0 8px 32px rgba(26,109,204,0.1);
  --shadow-lg: 0 24px 64px rgba(26,109,204,0.18);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Outfit', sans-serif;
  line-height: 1.18;
  letter-spacing: -0.02em;
}

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 28px;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue);
  color: var(--white);
  padding: 13px 26px;
  border-radius: 9px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 15px;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(26,109,204,0.25);
}
.btn-primary:hover {
  background: var(--blue-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(26,109,204,0.35);
}
.btn-primary.btn-lg { padding: 16px 34px; font-size: 16px; border-radius: 10px; }
.btn-primary.btn-full { width: 100%; justify-content: center; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--blue);
  padding: 13px 26px;
  border-radius: 9px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 15px;
  border: 2px solid rgba(26,109,204,0.3);
  transition: all 0.2s;
  cursor: pointer;
}
.btn-outline:hover {
  background: var(--blue-light);
  border-color: var(--blue);
}
.btn-outline.btn-lg { padding: 16px 34px; font-size: 16px; border-radius: 10px; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  color: var(--gray-600);
  font-weight: 500;
  font-size: 15px;
  transition: color 0.2s;
}
.btn-ghost:hover { color: var(--blue); }

.btn-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  color: var(--blue);
  padding: 14px 28px;
  border-radius: 9px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.15s;
}
.btn-white:hover { opacity: 0.95; transform: translateY(-1px); }
.btn-white.btn-full { width: 100%; }

/* ---- NAV ---- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--gray-200);
}
.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 28px;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 48px;
}
.nav-logo { display: flex; align-items: center; }
.logo-img { height: 34px; width: auto; }
.nav-links {
  display: flex;
  list-style: none;
  gap: 28px;
  flex: 1;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-600);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--blue); }
.nav-cta { display: flex; align-items: center; gap: 16px; }

/* ---- SECTION COMMON ---- */
.section { padding: 100px 0; }
.section-label {
  display: inline-block;
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-light);
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 18px;
}
.section-title {
  font-size: clamp(30px, 3.8vw, 46px);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 20px;
  letter-spacing: -0.025em;
}
.section-sub {
  font-size: 18px;
  color: var(--text-light);
  line-height: 1.72;
  max-width: 600px;
}

/* ---- HERO ---- */
.hero {
  min-height: 92vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  max-width: 1160px;
  margin: 0 auto;
  padding: 80px 28px 60px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--blue-light), #d4e8fa);
  color: var(--blue-dark);
  font-size: 13px;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
  border: 1px solid var(--blue-mid);
  width: fit-content;
}
.hero-badge::before { content: "✦"; font-size: 9px; color: var(--blue); }

.hero-headline {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(38px, 4.8vw, 60px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 28px;
  letter-spacing: -0.03em;
}
.accent { color: var(--blue); }

.hero-sub {
  font-size: 17px;
  color: var(--text-light);
  line-height: 1.72;
  margin-bottom: 40px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-proof {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.proof-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-light);
}
.proof-icon {
  width: 20px;
  height: 20px;
  background: var(--green-light);
  color: var(--green-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  flex-shrink: 0;
}

/* Hero Visual */
.hero-right { position: relative; }
.hero-visual {
  position: relative;
  height: 520px;
  background: linear-gradient(145deg, #0d1221, #151c35);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(26,109,204,0.15);
}

.screen-glow {
  position: absolute;
  top: -80px;
  left: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(26,109,204,0.25) 0%, transparent 70%);
  pointer-events: none;
}

.rep-scene {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 0;
}

/* Monitor */
.monitor {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  width: 320px;
}
.monitor-screen {
  background: var(--dark-card);
  border-radius: 8px 8px 0 0;
  border: 2px solid rgba(255,255,255,0.1);
  overflow: hidden;
  height: 200px;
}
.monitor-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top left;
  opacity: 0.9;
}
.monitor-stand {
  width: 40px;
  height: 24px;
  background: rgba(255,255,255,0.08);
  margin: 0 auto;
  border-radius: 0 0 4px 4px;
}
.monitor-base {
  width: 80px;
  height: 6px;
  background: rgba(255,255,255,0.06);
  margin: 0 auto;
  border-radius: 4px;
}

/* Rep silhouette */
.rep-silhouette {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(calc(-50% + 60px));
  display: flex;
  flex-direction: column;
  align-items: center;
}
.rep-head {
  position: relative;
  width: 44px;
  height: 44px;
  background: #2a3a5c;
  border-radius: 50%;
  margin-bottom: 0;
}
/* Headset */
.headset-left {
  position: absolute;
  left: -10px;
  top: 8px;
  width: 10px;
  height: 24px;
  background: #3d5080;
  border-radius: 4px 0 0 4px;
}
.headset-right {
  position: absolute;
  right: -10px;
  top: 8px;
  width: 10px;
  height: 24px;
  background: #3d5080;
  border-radius: 0 4px 4px 0;
}
.headset-top {
  position: absolute;
  top: -8px;
  left: -10px;
  right: -10px;
  height: 10px;
  border: 3px solid #3d5080;
  border-radius: 20px 20px 0 0;
  border-bottom: none;
}
.headset-mic {
  position: absolute;
  bottom: -14px;
  left: -12px;
  width: 14px;
  height: 3px;
  background: #3d5080;
  border-radius: 2px;
  transform: rotate(-30deg);
}
.rep-body {
  width: 80px;
  height: 120px;
  background: linear-gradient(180deg, #2a3a5c, #1a2540);
  border-radius: 40px 40px 0 0;
}

/* Floating data cards */
.float-card {
  position: absolute;
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  animation: floatCard 3s ease-in-out infinite;
}
.float-card-1 { top: 40px; right: 24px; animation-delay: 0s; }
.float-card-2 { top: 120px; left: 20px; animation-delay: 1s; }
.float-card-3 { top: 200px; right: 16px; animation-delay: 2s; }

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.fcard-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.fcard-dot-green { background: var(--green); }
.fcard-dot-blue { background: #4da6ff; }
.fcard-dot-yellow { background: #f5c842; }
.fcard-label { font-size: 10px; color: rgba(255,255,255,0.5); font-weight: 500; }
.fcard-value { font-family: 'Outfit', sans-serif; font-size: 15px; font-weight: 700; color: var(--white); }

/* ---- MATTHEW INTRO BAR ---- */
.matthew-section {
  background: var(--dark);
  padding: 56px 0;
}
.matthew-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 40px;
  align-items: center;
}
.matthew-avatar-lg {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, var(--blue), #0d4a8f);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-size: 30px;
  font-weight: 800;
  color: var(--white);
  flex-shrink: 0;
  box-shadow: 0 8px 32px rgba(26,109,204,0.4);
}
.matthew-intro-text h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.matthew-intro-text p {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
}
.matthew-stats-row {
  display: flex;
  gap: 32px;
  flex-shrink: 0;
}
.mstat { text-align: center; }
.mstat-num {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: var(--blue);
  display: block;
  margin-bottom: 4px;
}
.mstat-label {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  white-space: nowrap;
}

/* ---- PROBLEM ---- */
.problem-section { background: var(--gray-50); }
.problem-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.problem-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  transition: box-shadow 0.25s, transform 0.2s;
}
.problem-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.problem-icon { font-size: 30px; margin-bottom: 16px; }
.problem-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 12px; color: var(--text); }
.problem-card p { font-size: 14px; color: var(--text-light); line-height: 1.65; }

/* ---- SOLUTION ---- */
.solution-section { background: var(--white); }
.solution-flow { margin-top: 72px; display: flex; flex-direction: column; gap: 88px; }
.flow-step {
  display: grid;
  grid-template-columns: 72px 1fr 1.5fr;
  gap: 40px;
  align-items: center;
}
.flow-step-reverse { direction: rtl; }
.flow-step-reverse > * { direction: ltr; }
.flow-num {
  font-family: 'Outfit', sans-serif;
  font-size: 64px;
  font-weight: 800;
  color: var(--gray-200);
  line-height: 1;
}
.flow-content h3 { font-size: 24px; font-weight: 700; margin-bottom: 14px; color: var(--text); }
.flow-content p { font-size: 16px; color: var(--text-light); line-height: 1.72; margin-bottom: 20px; }
.flow-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.ftag {
  display: inline-block;
  background: var(--blue-light);
  color: var(--blue);
  font-size: 12px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 100px;
}
.flow-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
}

/* ---- HEALTH SCORE ---- */
.health-section { background: var(--gray-50); }
.health-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.health-points { margin-top: 32px; display: flex; flex-direction: column; gap: 24px; }
.health-point {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 16px;
  align-items: start;
}
.hpoint-icon { font-size: 24px; }
.health-point h4 { font-size: 17px; font-weight: 700; margin-bottom: 6px; color: var(--text); }
.health-point p { font-size: 14px; color: var(--text-light); line-height: 1.65; }

/* Health score demo */
.health-score-demo {
  background: var(--dark-card);
  border-radius: var(--radius-xl);
  padding: 28px;
  border: 1px solid var(--dark-border);
  box-shadow: 0 24px 64px rgba(0,0,0,0.3);
}
.hsd-title {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
  font-weight: 500;
}
.hsd-score-row {
  display: flex;
  gap: 24px;
  align-items: center;
  margin-bottom: 20px;
}
.hsd-score-circle {
  position: relative;
  width: 100px;
  height: 100px;
  flex-shrink: 0;
}
.hsd-score-circle svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.hsd-pct {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -55%);
  font-family: 'Outfit', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
}
.hsd-pct-label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, 30%);
  font-size: 11px;
  color: rgba(255,255,255,0.4);
}
.hsd-cats { display: flex; flex-direction: column; gap: 6px; flex: 1; }
.hsd-cat {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}
.hcat-name { font-size: 12px; color: rgba(255,255,255,0.65); font-weight: 500; }
.hcat-pill {
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 100px;
}
.hcat-unknown { background: rgba(148,163,187,0.15); color: #94a3bb; }
.hcat-vague { background: rgba(245,200,66,0.15); color: #f5c842; }
.hcat-credible { background: rgba(90,191,60,0.15); color: #5abf3c; }
.hcat-verified { background: rgba(26,109,204,0.2); color: #4da6ff; }

.hsd-tip {
  background: rgba(26,109,204,0.1);
  border: 1px solid rgba(26,109,204,0.2);
  border-radius: 10px;
  padding: 14px 16px;
}
.hsd-tip-label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #4da6ff;
  margin-bottom: 6px;
}
.hsd-tip p {
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  line-height: 1.55;
  font-style: italic;
}

/* ---- VALUE ---- */
.value-section { background: var(--dark); padding: 100px 0; }
.value-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: start;
}
.value-panel {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-xl);
  padding: 36px 30px;
}
.value-icon { font-size: 32px; margin-bottom: 16px; }
.value-panel h3 { font-size: 20px; font-weight: 700; color: var(--white); margin-bottom: 20px; }
.value-list { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.value-list li {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.value-list li::before { content: "→"; color: var(--green); font-weight: 700; flex-shrink: 0; margin-top: 1px; }

.value-center { display: flex; align-items: center; justify-content: center; }
.matthew-card {
  background: linear-gradient(145deg, #1a6dcc, #0d4a8f);
  border-radius: var(--radius-xl);
  padding: 36px 28px;
  text-align: center;
  width: 220px;
  box-shadow: 0 24px 64px rgba(26,109,204,0.45);
}
.matthew-avatar {
  width: 68px; height: 68px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-size: 28px; font-weight: 800;
  color: var(--white);
  margin: 0 auto 14px;
  border: 2px solid rgba(255,255,255,0.2);
}
.matthew-name { font-family: 'Outfit', sans-serif; font-size: 20px; font-weight: 800; color: var(--white); margin-bottom: 4px; }
.matthew-title { font-size: 12px; color: rgba(255,255,255,0.6); margin-bottom: 20px; }
.matthew-quote {
  font-size: 13px;
  color: rgba(255,255,255,0.82);
  line-height: 1.6;
  font-style: italic;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 18px;
}

/* ---- FEATURES ---- */
.features-section { background: var(--gray-50); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 64px;
}
.feature-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 26px;
  transition: box-shadow 0.25s, transform 0.2s;
  overflow: hidden;
}
.feature-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.feature-card-wide { grid-column: span 2; }
.feature-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-light);
  padding: 3px 10px;
  border-radius: 4px;
  margin-bottom: 12px;
}
.feature-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; color: var(--text); }
.feature-card p { font-size: 14px; color: var(--text-light); line-height: 1.65; margin-bottom: 18px; }
.feature-img { border-radius: 8px; border: 1px solid var(--gray-200); width: 100%; }

/* ---- HUBSPOT ---- */
.hubspot-section { background: var(--white); }
.hubspot-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.hubspot-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 24px 0 32px;
}
.hubspot-list li {
  font-size: 15px;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 10px;
}
.hubspot-list li::before { content: "✓"; color: var(--green); font-weight: 700; flex-shrink: 0; }

/* HubSpot screenshot */
.hs-screenshot-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-200);
}
.hs-browser-bar {
  background: #f1f3f6;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--gray-200);
}
.hs-dots { display: flex; gap: 6px; }
.hs-dots span {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--gray-400);
}
.hs-dots span:nth-child(1) { background: #ff6058; }
.hs-dots span:nth-child(2) { background: #ffbd2e; }
.hs-dots span:nth-child(3) { background: #28ca41; }
.hs-url {
  font-size: 11px;
  color: var(--gray-600);
  background: var(--white);
  padding: 4px 12px;
  border-radius: 6px;
  border: 1px solid var(--gray-200);
  flex: 1;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.hs-screenshot { width: 100%; display: block; }

/* ---- WHY ---- */
.why-section { background: var(--gray-50); }
.comparison-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.comparison-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
}
.comparison-card-center {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(26,109,204,0.08);
}
.comp-tool { font-family: 'Outfit', sans-serif; font-size: 18px; font-weight: 700; margin-bottom: 8px; color: var(--text); }
.sf-tool { color: var(--blue); }
.comp-what { font-size: 13px; color: var(--text-light); margin-bottom: 16px; padding-bottom: 16px; border-bottom: 1px solid var(--gray-200); }
.comp-badge {
  display: inline-block;
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 3px 10px; border-radius: 4px;
  margin-bottom: 12px;
}
.comp-badge-orange { background: #fff4e6; color: #c85f00; }
.comp-badge-green { background: var(--green-light); color: var(--green-dark); }
.comp-desc { font-size: 14px; color: var(--text-light); line-height: 1.65; }
.why-bottom {
  margin-top: 48px;
  padding: 36px;
  background: linear-gradient(135deg, var(--blue), #1459a8);
  border-radius: var(--radius-xl);
  text-align: center;
}
.why-statement { font-size: 20px; color: var(--white); line-height: 1.6; font-weight: 500; max-width: 720px; margin: 0 auto; }

/* ---- PRICING ---- */
.pricing-section { background: var(--white); }
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 840px;
  margin: 0 auto;
}
.pricing-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 40px 36px;
  position: relative;
}
.pricing-card-featured {
  background: linear-gradient(145deg, var(--blue), #1459a8);
  border-color: var(--blue);
  box-shadow: var(--shadow-lg);
}
.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 100px;
  white-space: nowrap;
}
.pricing-name {
  font-family: 'Outfit', sans-serif;
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-light); margin-bottom: 12px;
}
.pricing-card-featured .pricing-name { color: rgba(255,255,255,0.65); }
.pricing-price {
  font-family: 'Outfit', sans-serif;
  font-size: 44px; font-weight: 800;
  color: var(--text); margin-bottom: 14px;
}
.pricing-price span { font-size: 18px; font-weight: 400; color: var(--text-light); }
.pricing-card-featured .pricing-price { color: var(--white); }
.pricing-card-featured .pricing-price span { color: rgba(255,255,255,0.65); }
.pricing-desc {
  font-size: 15px; color: var(--text-light);
  line-height: 1.6; margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--gray-200);
}
.pricing-card-featured .pricing-desc { color: rgba(255,255,255,0.75); border-color: rgba(255,255,255,0.15); }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 11px; margin-bottom: 28px; }
.pricing-features li { font-size: 14px; color: var(--text-light); }
.pricing-card-featured .pricing-features li { color: rgba(255,255,255,0.82); }
.pricing-note { text-align: center; font-size: 14px; color: var(--text-light); margin-top: 24px; }

/* ---- CONTACT ---- */
.contact-section { background: var(--gray-50); }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.contact-content .section-title { margin-bottom: 16px; }
.contact-content > p { font-size: 17px; color: var(--text-light); line-height: 1.72; margin-bottom: 28px; }
.contact-trust { display: flex; flex-direction: column; gap: 8px; }
.contact-trust p { font-size: 15px; color: var(--green-dark); font-weight: 500; }
.contact-form {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 40px;
  display: flex; flex-direction: column; gap: 14px;
  box-shadow: var(--shadow);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-input {
  padding: 13px 16px;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  font-size: 15px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--text);
  background: var(--gray-50);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none; width: 100%;
}
.form-input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(26,109,204,0.1);
  background: var(--white);
}
.form-select { cursor: pointer; }
.form-note { font-size: 13px; color: var(--text-light); text-align: center; margin-top: -2px; }

/* ---- FOOTER ---- */
.footer { background: var(--dark); padding: 64px 0 32px; }
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 28px;
}
.footer-logo { height: 30px; width: auto; margin-bottom: 14px; filter: brightness(0) invert(1); opacity: 0.85; }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.4); line-height: 1.65; max-width: 260px; }
.footer-links { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.footer-col { display: flex; flex-direction: column; gap: 11px; }
.footer-col-title {
  font-family: 'Outfit', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.35); margin-bottom: 4px;
}
.footer-col a { font-size: 14px; color: rgba(255,255,255,0.55); transition: color 0.2s; }
.footer-col a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; }
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.3); }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: 13px; color: rgba(255,255,255,0.3); transition: color 0.2s; }
.footer-legal a:hover { color: rgba(255,255,255,0.65); }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; min-height: auto; padding: 60px 28px 40px; }
  .hero-right { display: none; }
  .matthew-inner { grid-template-columns: auto 1fr; }
  .matthew-stats-row { display: none; }
  .problem-grid { grid-template-columns: repeat(2, 1fr); }
  .flow-step { grid-template-columns: 60px 1fr; }
  .flow-img { display: none; }
  .health-inner { grid-template-columns: 1fr; }
  .value-grid { grid-template-columns: 1fr; }
  .value-center { order: -1; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-card-wide { grid-column: span 2; }
  .hubspot-inner { grid-template-columns: 1fr; }
  .comparison-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .nav-links { display: none; }
  .hero-headline { font-size: 36px; }
  .problem-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .feature-card-wide { grid-column: span 1; }
  .pricing-grid { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 14px; }
  .hero-actions { flex-direction: column; }
  .form-row { grid-template-columns: 1fr; }
}

/* ---- ANIMATIONS ---- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-badge { animation: fadeUp 0.5s ease both; }
.hero-headline { animation: fadeUp 0.55s 0.08s ease both; }
.hero-sub { animation: fadeUp 0.55s 0.16s ease both; }
.hero-actions { animation: fadeUp 0.55s 0.24s ease both; }
.hero-proof { animation: fadeUp 0.55s 0.32s ease both; }
.hero-visual { animation: fadeUp 0.7s 0.1s ease both; }

/* ---- PRICING SINGLE BLOCK ---- */
.pricing-label, .pricing-title, .pricing-sub { display: block; text-align: center; }
.pricing-title { margin: 0 auto 12px; }
.pricing-sub { margin: 0 auto 48px; }

.pricing-single { max-width: 960px; margin: 0 auto; }
.pricing-card-big {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.pricing-card-big-left {
  background: linear-gradient(145deg, var(--blue), #1459a8);
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
}
.pricing-card-big-left .pricing-name {
  font-family: 'Outfit', sans-serif;
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.6); margin-bottom: 16px;
}
.pricing-price-big {
  font-family: 'Outfit', sans-serif;
  font-size: 56px; font-weight: 800;
  color: var(--white); line-height: 1;
  margin-bottom: 8px;
}
.pricing-price-big span { font-size: 22px; font-weight: 400; opacity: 0.7; }
.pricing-includes {
  font-size: 15px; color: rgba(255,255,255,0.75);
  margin-bottom: 28px; padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.pricing-addons { display: flex; flex-direction: column; gap: 12px; }
.addon-item {
  display: flex; justify-content: space-between; align-items: center;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px; padding: 10px 14px;
}
.addon-role { font-size: 14px; color: rgba(255,255,255,0.8); }
.addon-price { font-family: 'Outfit', sans-serif; font-size: 16px; font-weight: 700; color: var(--white); }

.pricing-card-big-right {
  padding: 48px 40px;
  background: var(--gray-50);
}
.pricing-features-title {
  font-family: 'Outfit', sans-serif;
  font-size: 16px; font-weight: 700;
  color: var(--text); margin-bottom: 24px;
}
.pricing-features-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 24px;
}
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.pricing-features li { font-size: 14px; color: var(--text-light); }

/* ---- COMPARISON CARD UPDATE ---- */
.comp-category {
  font-size: 14px; font-weight: 600;
  color: var(--text-light);
  margin-bottom: 8px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--gray-200);
}

/* ---- CONTACT TAGLINE ---- */
.contact-tagline {
  font-size: 17px; color: var(--blue);
  font-weight: 600; margin-bottom: 28px;
}

/* Pricing responsive */
@media (max-width: 768px) {
  .pricing-card-big { grid-template-columns: 1fr; }
  .pricing-features-cols { grid-template-columns: 1fr; }
}

/* ---- HERO REAL IMAGE ---- */
.hero-img-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(26,109,204,0.1);
}
.hero-real-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-xl);
}

/* ---- HERO V3 — FULL WIDTH IMAGE + CENTERED CONTENT BELOW ---- */
.hero {
  display: block !important;
  padding: 0 !important;
  min-height: auto !important;
}

.hero-image-full {
  width: 100%;
  background: var(--dark);
}
.hero-image-full .hero-real-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0;
}

.hero-content-center {
  max-width: 800px;
  margin: 0 auto;
  padding: 64px 28px 72px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-content-center .hero-badge {
  margin-bottom: 24px;
}

.hero-content-center .hero-headline {
  font-size: clamp(36px, 5vw, 62px);
  text-align: center;
  margin-bottom: 24px;
}

.hero-content-center .hero-sub {
  font-size: 18px;
  text-align: center;
  max-width: 660px;
  margin-bottom: 36px;
}

.hero-content-center .hero-actions {
  justify-content: center;
  margin-bottom: 36px;
}

.hero-content-center .hero-proof {
  align-items: center;
}

.hero-content-center .proof-item {
  justify-content: center;
}

@media (max-width: 768px) {
  .hero-image-full { max-height: 300px; }
  .hero-content-center { padding: 48px 20px 56px; }
  .hero-content-center .hero-headline { font-size: 32px; }
}

/* ---- NAV LOGO FIX ---- */
.logo-img {
  height: 44px;
  width: auto;
}


/* ---- HERO FINAL LAYOUT ---- */
.hero-above-img {
  max-width: 1160px;
  margin: 0 auto;
  padding: 40px 28px 20px;
}
.hero-above-img .hero-badge {
  margin-bottom: 0;
}
.hero-below-img {
  max-width: 1160px;
  margin: 0 auto;
  padding: 32px 28px 64px;
}
.hero-below-img .hero-actions {
  margin-bottom: 24px;
  justify-content: flex-start;
}
.hero-below-img .hero-proof {
  align-items: flex-start;
}
.hero-below-img .proof-item {
  justify-content: flex-start;
}

/* ---- NAV LOGO TEXT BIGGER ---- */
.nav-logo-text {
  font-family: 'Outfit', sans-serif !important;
  font-size: 26px !important;
  font-weight: 800 !important;
  color: var(--blue) !important;
  letter-spacing: -0.02em;
}
.nav-logo-text span {
  color: var(--green) !important;
}

/* ---- LOGO HIDE IMAGE UNTIL TRANSPARENT VERSION READY ---- */
.logo-img { display: none !important; }
.nav-logo-text {
  font-family: 'Outfit', sans-serif;
  font-size: 22px !important;
  font-weight: 800 !important;
  color: var(--blue) !important;
  letter-spacing: -0.02em;
}
.nav-logo-text span { color: var(--green) !important; }

/* Footer logo — also hide until transparent */
.footer-logo { display: none !important; }

.footer-brand-name {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: rgba(255,255,255,0.9);
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.footer-brand-name span { color: var(--green); }

