/* ========== RESET & VARIABLES ========== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --brand-green: #235839;
  --brand-green-dark: #1a442b;
  --brand-green-light: #e8f2ec;
  --brand-green-glow: rgba(35,88,57,0.15);
  --brand-copper: #a96535;
  --brand-copper-light: #f2e0d1;
  --brand-gold: #f4c97a;
  --brand-gold-light: #fdf3e0;
  --brand-warm-gray: #90827c;
  --brand-cream: #fcf5e9;
  --navy: #04151f;
  --navy-light: #0d2633;
  --slate-700: #04151f;
  --slate-500: #5a6a72;
  --slate-400: #90827c;
  --slate-200: #e2ddd9;
  --slate-100: #f0ece8;
  --slate-50: #fcf5e9;
  --white: #ffffff;
  --font-display: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --max-w: 1200px;
  --section-pad: 100px 0;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow-card: 0 1px 3px rgba(15,23,42,0.06), 0 8px 24px rgba(15,23,42,0.06);
  --shadow-card-hover: 0 4px 12px rgba(15,23,42,0.08), 0 16px 40px rgba(15,23,42,0.1);
  --shadow-hero: 0 20px 60px rgba(15,23,42,0.12), 0 4px 16px rgba(15,23,42,0.06);
}

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-body);
  color: var(--slate-700);
  background: var(--white);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ========== UTILITIES ========== */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section-label {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--brand-green); background: var(--brand-green-light);
  padding: 6px 14px; border-radius: 100px; margin-bottom: 18px;
}
.section-title {
  font-family: var(--font-display); font-weight: 800; color: var(--navy);
  font-size: clamp(28px, 4vw, 42px); line-height: 1.18; margin-bottom: 16px;
}
.section-subtitle {
  font-size: 17px; color: var(--slate-500); max-width: 600px; line-height: 1.7;
}
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-display); font-weight: 700; font-size: 15px;
  padding: 14px 28px; border-radius: 12px; border: none; cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4,0,0.2,1); white-space: nowrap;
}
.btn-primary {
  background: var(--brand-green); color: var(--white);
  box-shadow: 0 2px 8px rgba(35,88,57,0.3), 0 0 0 0 rgba(35,88,57,0);
}
.btn-primary:hover {
  background: var(--brand-green-dark);
  box-shadow: 0 4px 16px rgba(35,88,57,0.35), 0 0 0 4px rgba(35,88,57,0.1);
  transform: translateY(-1px);
}
.btn-secondary {
  background: var(--white); color: var(--navy); border: 1.5px solid var(--slate-200);
}
.btn-secondary:hover { border-color: var(--slate-400); background: var(--slate-50); }
.btn-dark {
  background: var(--navy); color: var(--white);
}
.btn-dark:hover { background: var(--navy-light); }
.btn-sm { padding: 10px 20px; font-size: 14px; border-radius: 10px; }

/* ========== ANIMATIONS ========== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes pulse-ring {
  0% { box-shadow: 0 0 0 0 rgba(35,88,57,0.4); }
  70% { box-shadow: 0 0 0 10px rgba(35,88,57,0); }
  100% { box-shadow: 0 0 0 0 rgba(35,88,57,0); }
}
.animate-on-scroll {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.animate-on-scroll.visible {
  opacity: 1; transform: translateY(0);
}

/* ========== NAV ========== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.85); backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid rgba(226,232,240,0.6);
  transition: all 0.3s ease;
}
.nav.scrolled { box-shadow: 0 1px 12px rgba(15,23,42,0.06); }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px; max-width: var(--max-w); margin: 0 auto; padding: 0 24px;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-weight: 800; font-size: 20px; color: var(--navy);
}
.nav-logo-icon {
  width: 34px; height: 34px; background: var(--brand-green); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.nav-logo-icon svg { width: 20px; height: 20px; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  font-size: 14px; font-weight: 500; color: var(--slate-500);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--navy); }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.mobile-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.mobile-toggle span {
  display: block; width: 22px; height: 2px; background: var(--navy);
  margin: 5px 0; transition: all 0.3s; border-radius: 2px;
}

/* ========== HERO ========== */
.hero {
  padding: 140px 0 80px;
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(35,88,57,0.06) 0%, transparent 60%),
    linear-gradient(180deg, var(--brand-cream) 0%, var(--white) 100%);
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -200px; right: -200px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(35,88,57,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  display: flex; flex-direction: column; align-items: center; text-align: center;
}
.hero h1 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(34px, 5.5vw, 56px); line-height: 1.12; color: var(--navy);
  max-width: 780px; margin-bottom: 20px;
  animation: fadeUp 0.8s ease forwards;
}
.hero h1 .highlight {
  background: linear-gradient(135deg, var(--brand-green), var(--brand-copper));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 18px; color: var(--slate-500); max-width: 620px;
  line-height: 1.7; margin-bottom: 32px;
  animation: fadeUp 0.8s 0.15s ease both;
}
.hero-ctas {
  display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; margin-bottom: 16px;
  animation: fadeUp 0.8s 0.3s ease both;
}
.hero-trust {
  font-size: 13px; color: var(--slate-400); margin-bottom: 50px;
  animation: fadeUp 0.8s 0.4s ease both;
}
.hero-trust span { margin: 0 6px; opacity: 0.4; }

/* Hero Mockup */
.hero-mockup {
  position: relative; width: 100%; max-width: 1050px;
  animation: fadeUp 1s 0.5s ease both;
}
.hero-mockup-browser {
  background: var(--white); border-radius: 16px; overflow: hidden;
  box-shadow: var(--shadow-hero); border: 1px solid var(--slate-200);
}
.browser-bar {
  display: flex; align-items: center; gap: 8px;
  padding: 14px 18px; background: var(--slate-50); border-bottom: 1px solid var(--slate-200);
}
.browser-dot {
  width: 11px; height: 11px; border-radius: 50%;
}
.browser-dot.r { background: var(--brand-copper); }
.browser-dot.y { background: var(--brand-gold); }
.browser-dot.g { background: var(--brand-green); }
.browser-url {
  flex: 1; margin-left: 12px; background: var(--white); border-radius: 8px;
  padding: 7px 14px; font-size: 12px; color: var(--slate-400);
  border: 1px solid var(--slate-200);
}
.browser-content {
  height: 440px; background: linear-gradient(135deg, var(--brand-cream) 0%, var(--brand-green-light) 50%, var(--brand-cream) 100%);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.browser-content-inner {
  display: flex; gap: 24px; align-items: center; padding: 32px;
}
/* Simulated app UI inside browser */
.mock-sidebar {
  width: 200px; background: var(--white); border-radius: 12px; padding: 20px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06); flex-shrink: 0;
}
.mock-sidebar-item {
  padding: 10px 14px; border-radius: 8px; font-size: 13px; font-weight: 500;
  color: var(--slate-500); margin-bottom: 4px; cursor: default;
}
.mock-sidebar-item.active {
  background: var(--brand-green-light); color: var(--brand-green);
}
.mock-main {
  flex: 1; background: var(--white); border-radius: 12px; padding: 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06); min-height: 320px;
}
.mock-header {
  display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px;
}
.mock-header h4 { font-family: var(--font-display); font-size: 16px; color: var(--navy); font-weight: 700; }
.mock-badge {
  font-size: 11px; font-weight: 600; background: var(--brand-green-light); color: var(--brand-green);
  padding: 4px 10px; border-radius: 100px;
}
.mock-color-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-bottom: 16px;
}
.mock-color-swatch {
  aspect-ratio: 1; border-radius: 10px; position: relative; cursor: default;
  transition: transform 0.2s;
}
.mock-color-swatch:hover { transform: scale(1.05); }
.mock-color-swatch.selected::after {
  content: '✓'; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  color: white; font-size: 18px; font-weight: 700;
  text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}
.mock-lead-card {
  background: var(--slate-50); border-radius: 10px; padding: 14px;
  display: flex; align-items: center; gap: 12px; margin-bottom: 8px;
}
.mock-avatar {
  width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700; color: white; flex-shrink: 0;
}
.mock-lead-info { flex: 1; }
.mock-lead-name { font-size: 13px; font-weight: 600; color: var(--navy); }
.mock-lead-detail { font-size: 11px; color: var(--slate-400); }
.mock-lead-status {
  font-size: 10px; font-weight: 600; padding: 3px 8px; border-radius: 100px;
}
.status-new { background: var(--brand-copper-light); color: var(--brand-copper); }
.status-active { background: var(--brand-green-light); color: var(--brand-green); }
.status-ready { background: var(--brand-gold-light); color: var(--brand-copper); }

/* ========== SOCIAL PROOF BAR ========== */
.proof-bar {
  padding: 40px 0; border-top: 1px solid var(--slate-200); border-bottom: 1px solid var(--slate-200);
  background: var(--white);
}
.proof-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center;
}
.proof-item-number {
  font-family: var(--font-display); font-size: 32px; font-weight: 800; color: var(--navy);
}
.proof-item-number .green { color: var(--brand-green); }.proof-item-label { font-size: 14px; color: var(--slate-500); margin-top: 4px; }

/* ========== PROBLEM AGITATION ========== */
.problem-section { padding: var(--section-pad); background: var(--white); }
.problem-inner { max-width: 800px; margin: 0 auto; text-align: center; }
.testimonial-card-big {
  background: var(--slate-50); border-radius: var(--radius); padding: 40px;
  margin-top: 40px; border-left: 4px solid var(--brand-green);
  text-align: left; position: relative;
}
.testimonial-card-big blockquote {
  font-size: 20px; font-style: italic; color: var(--navy); line-height: 1.6; margin-bottom: 16px;
}
.testimonial-card-big cite {
  font-style: normal; font-size: 15px; font-weight: 600; color: var(--slate-500);
}

/* ========== BUILT FOR SECTION ========== */
.built-for {
  padding: 80px 0; background: var(--slate-50);
}
.built-for-inner {
  display: flex; align-items: center; gap: 60px;
}
.built-for-text { flex: 1; }
.built-for-visual {
  flex: 1; position: relative;
}
.built-for-card {
  background: var(--white); border-radius: var(--radius); padding: 32px;
  box-shadow: var(--shadow-card); position: relative;
}
.built-for-card::before {
  content: ''; position: absolute; top: -2px; left: 24px; right: 24px; height: 4px;
  background: linear-gradient(90deg, var(--brand-green), var(--brand-copper)); border-radius: 100px;
}
.built-for-checks { margin-top: 24px; }
.built-for-check {
  display: flex; align-items: flex-start; gap: 12px; margin-bottom: 14px;
}
.check-icon {
  flex-shrink: 0; width: 22px; height: 22px; background: var(--brand-green-light);
  border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-top: 2px;
}
.check-icon svg { width: 12px; height: 12px; color: var(--brand-green); }
.built-for-check span { font-size: 15px; color: var(--slate-700); }

/* ========== FEATURE SECTIONS ========== */
.features-header { padding: 100px 0 60px; background: var(--white); text-align: center; }
.feature-section {
  padding: 60px 0; background: var(--white);
}
.feature-section:nth-child(even) { background: var(--slate-50); }
.feature-inner {
  display: flex; align-items: center; gap: 60px;
}
.feature-inner.reverse { flex-direction: row-reverse; }
.feature-text { flex: 1; }
.feature-label {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--brand-copper); margin-bottom: 14px;
}
.feature-text h3 {
  font-family: var(--font-display); font-weight: 800; color: var(--navy);
  font-size: clamp(22px, 3vw, 30px); line-height: 1.2; margin-bottom: 16px;
}
.feature-text p {
  font-size: 16px; color: var(--slate-500); line-height: 1.75; max-width: 480px;
}
.feature-visual { flex: 1; }
.feature-mockup {
  background: var(--white); border-radius: var(--radius); padding: 24px;
  box-shadow: var(--shadow-card); border: 1px solid var(--slate-200);
  position: relative; overflow: hidden;
}
.feature-mockup-header {
  display: flex; align-items: center; gap: 10px; margin-bottom: 18px;
  padding-bottom: 14px; border-bottom: 1px solid var(--slate-100);
}
.fmh-dot { width: 8px; height: 8px; border-radius: 50%; }
.feature-mockup-body { min-height: 200px; }

/* Lead capture mockup */
.lead-flow-steps { display: flex; flex-direction: column; gap: 14px; }
.lead-step {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 14px; background: var(--slate-50); border-radius: var(--radius-sm);
}
.lead-step-icon {
  width: 38px; height: 38px; border-radius: 10px; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 18px;
}
.lead-step-icon.green { background: var(--brand-green-light); }
.lead-step-icon.blue { background: var(--brand-copper-light); }
.lead-step-icon.amber { background: var(--brand-gold-light); }
.lead-step-content h5 { font-size: 13px; font-weight: 700; color: var(--navy); margin-bottom: 2px; }
.lead-step-content p { font-size: 12px; color: var(--slate-400); line-height: 1.5; }
.lead-step-tag {
  font-size: 10px; font-weight: 700; color: var(--brand-green); background: var(--brand-green-light);
  padding: 2px 7px; border-radius: 100px; display: inline-block; margin-top: 4px;
}

/* Portal mockup */
.portal-mock { display: flex; flex-direction: column; gap: 12px; }
.portal-combo {
  display: flex; align-items: center; gap: 12px; padding: 12px;
  background: var(--slate-50); border-radius: var(--radius-sm);
}
.portal-combo-swatches { display: flex; gap: 4px; }
.portal-swatch {
  width: 32px; height: 32px; border-radius: 6px; border: 2px solid var(--white);
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}
.portal-combo-info { flex: 1; }
.portal-combo-name { font-size: 13px; font-weight: 600; color: var(--navy); }
.portal-combo-detail { font-size: 11px; color: var(--slate-400); }
.portal-fav { font-size: 16px; color: var(--brand-copper); }

/* Time savings mockup */
.time-mock { text-align: center; }
.time-comparison {
  display: flex; align-items: center; justify-content: center; gap: 24px; margin-bottom: 20px;
}
.time-block { text-align: center; }
.time-circle {
  width: 90px; height: 90px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 800; font-size: 24px; margin: 0 auto 8px;
}
.time-circle.before { background: var(--brand-copper-light); color: var(--brand-copper); }
.time-circle.after { background: var(--brand-green-light); color: var(--brand-green); }
.time-label { font-size: 12px; color: var(--slate-400); font-weight: 500; }
.time-arrow { font-size: 28px; color: var(--slate-300); }
.time-benefits {
  display: flex; flex-direction: column; gap: 8px; text-align: left;
  background: var(--slate-50); border-radius: var(--radius-sm); padding: 16px;
}
.time-benefit {
  display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--slate-700);
}
.time-benefit svg { width: 16px; height: 16px; color: var(--brand-green); flex-shrink: 0; }

/* ========== WHAT ARE COLOR EXPLORATIONS ========== */
.explorations {
  padding: var(--section-pad); background: var(--slate-50);
}
.explorations-inner {
  display: flex; gap: 60px; align-items: flex-start;
}
.explorations-text { flex: 1; }
.explorations-features { margin-top: 30px; display: flex; flex-direction: column; gap: 20px; }
.exp-feature {
  display: flex; gap: 16px; align-items: flex-start;
}
.exp-icon {
  width: 44px; height: 44px; border-radius: 12px; background: var(--white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-card); flex-shrink: 0; font-size: 20px;
}
.exp-feature h4 { font-family: var(--font-display); font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.exp-feature p { font-size: 14px; color: var(--slate-500); line-height: 1.6; }
.explorations-visual { flex: 1; }
.exp-tabs {
  display: flex; gap: 4px; background: var(--white); border-radius: 12px;
  padding: 4px; margin-bottom: 20px; box-shadow: var(--shadow-card);
}
.exp-tab {
  flex: 1; padding: 10px 14px; border-radius: 10px; text-align: center;
  font-size: 13px; font-weight: 600; color: var(--slate-500); cursor: pointer;
  transition: all 0.2s;
}
.exp-tab.active {
  background: var(--brand-green); color: var(--white);
}
.exp-tab-content {
  background: var(--white); border-radius: var(--radius); padding: 28px;
  box-shadow: var(--shadow-card); min-height: 300px;
}
.exp-scenario {
  display: flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 600; color: var(--navy);
  margin-bottom: 20px; padding-bottom: 14px; border-bottom: 1px solid var(--slate-100);
}
.exp-timeline { display: flex; flex-direction: column; gap: 16px; }
.exp-timeline-step {
  display: flex; gap: 14px; align-items: flex-start;
}
.exp-timeline-dot {
  width: 10px; height: 10px; border-radius: 50%; background: var(--brand-green);
  margin-top: 6px; flex-shrink: 0; position: relative;
}
.exp-timeline-dot::after {
  content: ''; position: absolute; top: 14px; left: 4px;
  width: 2px; height: 30px; background: var(--slate-200);
}
.exp-timeline-step:last-child .exp-timeline-dot::after { display: none; }
.exp-timeline-step h5 { font-size: 13px; font-weight: 700; color: var(--navy); margin-bottom: 2px; }
.exp-timeline-step p { font-size: 12px; color: var(--slate-400); line-height: 1.5; }

/* ========== STATS BAR ========== */
.stats-bar {
  padding: 60px 0; background: var(--navy); position: relative; overflow: hidden;
}
.stats-bar::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(35,88,57,0.12) 0%, transparent 60%);
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  position: relative; z-index: 1;
}
.stat-item { text-align: center; }
.stat-number {
  font-family: var(--font-display); font-size: 36px; font-weight: 800; color: var(--brand-gold);
}
.stat-label { font-size: 14px; color: var(--slate-400); margin-top: 4px; }

/* ========== AI SECTION ========== */
.ai-section { padding: var(--section-pad); background: var(--white); }
.ai-inner {
  background: linear-gradient(135deg, var(--brand-cream) 0%, var(--brand-green-light) 100%);
  border-radius: 20px; padding: 60px; display: flex; gap: 50px; align-items: center;
  border: 1px solid var(--slate-200);
}
.ai-text { flex: 1; }
.ai-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--white); border: 1px solid var(--slate-200);
  padding: 6px 14px; border-radius: 100px; font-size: 12px; font-weight: 700;
  color: var(--slate-500); margin-bottom: 16px;
}
.ai-visual { flex: 1; }
.ai-mock {
  background: var(--white); border-radius: var(--radius); padding: 24px;
  box-shadow: var(--shadow-card);
}
.ai-suggestion {
  display: flex; gap: 12px; padding: 14px; background: var(--slate-50);
  border-radius: var(--radius-sm); margin-bottom: 10px; align-items: center;
}
.ai-suggestion-colors { display: flex; gap: 4px; }
.ai-suggestion-color {
  width: 28px; height: 28px; border-radius: 6px;
  border: 2px solid var(--white); box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}
.ai-suggestion-info { flex: 1; }
.ai-suggestion-name { font-size: 13px; font-weight: 600; color: var(--navy); }
.ai-suggestion-match { font-size: 11px; color: var(--slate-400); }

/* ========== COMMUNICATION ========== */
.comms-section { padding: var(--section-pad); background: var(--slate-50); }
.comms-inner {
  display: flex; gap: 60px; align-items: center;
}
.comms-text { flex: 1; }
.comms-visual { flex: 1; }
.comms-mock {
  background: var(--white); border-radius: var(--radius); padding: 20px;
  box-shadow: var(--shadow-card); border: 1px solid var(--slate-200);
}
.comms-chat { display: flex; flex-direction: column; gap: 12px; }
.chat-msg {
  max-width: 80%; padding: 12px 16px; border-radius: 16px; font-size: 13px; line-height: 1.5;
}
.chat-msg.client {
  background: var(--slate-100); color: var(--slate-700);
  align-self: flex-start; border-bottom-left-radius: 4px;
}
.chat-msg.contractor {
  background: var(--brand-green); color: white;
  align-self: flex-end; border-bottom-right-radius: 4px;
}
.chat-sender { font-size: 10px; font-weight: 600; color: var(--slate-400); margin-bottom: 4px; }
.comms-feature-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 28px;
}
.comms-feat {
  display: flex; gap: 10px; align-items: flex-start;
}
.comms-feat-icon { font-size: 18px; flex-shrink: 0; }
.comms-feat h5 { font-size: 13px; font-weight: 700; color: var(--navy); margin-bottom: 2px; }
.comms-feat p { font-size: 12px; color: var(--slate-400); }

/* ========== PIPELINE ========== */
.pipeline-section { padding: var(--section-pad); background: var(--white); }
.pipeline-mock {
  margin-top: 50px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.pipeline-col {
  background: var(--slate-50); border-radius: var(--radius); padding: 18px; min-height: 220px;
}
.pipeline-col-header {
  display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px;
  padding-bottom: 10px; border-bottom: 2px solid;
}
.pipeline-col-title { font-size: 13px; font-weight: 700; color: var(--navy); }
.pipeline-col-count {
  font-size: 11px; font-weight: 700; padding: 2px 8px; border-radius: 100px; color: white;
}
.pipeline-card {
  background: var(--white); border-radius: var(--radius-sm); padding: 12px;
  margin-bottom: 8px; box-shadow: 0 1px 3px rgba(0,0,0,0.04);
  border-left: 3px solid;
}
.pipeline-card-name { font-size: 12px; font-weight: 700; color: var(--navy); }
.pipeline-card-detail { font-size: 11px; color: var(--slate-400); margin-top: 2px; }

/* ========== HOW IT WORKS ========== */
.how-section { padding: var(--section-pad); background: var(--slate-50); }
.how-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; margin-top: 50px; }
.how-step {
  background: var(--white); border-radius: var(--radius); padding: 36px 28px;
  box-shadow: var(--shadow-card); text-align: center; position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}
.how-step:hover {
  transform: translateY(-4px); box-shadow: var(--shadow-card-hover);
}
.how-step-num {
  width: 48px; height: 48px; border-radius: 14px; background: var(--brand-green);
  color: var(--white); font-family: var(--font-display); font-weight: 800; font-size: 20px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.how-step h3 {
  font-family: var(--font-display); font-weight: 700; font-size: 18px; color: var(--navy);
  margin-bottom: 10px;
}
.how-step p { font-size: 14px; color: var(--slate-500); line-height: 1.7; }

/* ========== FULL FEATURE GRID ========== */
.all-features { padding: var(--section-pad); background: var(--white); }
.features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 50px;
}
.feature-card {
  background: var(--slate-50); border-radius: var(--radius); padding: 28px;
  transition: transform 0.3s, box-shadow 0.3s; border: 1px solid transparent;
}
.feature-card:hover {
  transform: translateY(-3px); box-shadow: var(--shadow-card-hover);
  border-color: var(--brand-green-light); background: var(--white);}
.feature-card-icon {
  width: 44px; height: 44px; border-radius: 12px; background: var(--brand-green-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; margin-bottom: 16px;
}
.feature-card h4 {
  font-family: var(--font-display); font-weight: 700; font-size: 16px; color: var(--navy);
  margin-bottom: 8px;
}
.feature-card p { font-size: 14px; color: var(--slate-500); line-height: 1.65; }

/* ========== TESTIMONIALS ========== */
.testimonials { padding: var(--section-pad); background: var(--slate-50); }
.testimonial-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 50px;
}
.testimonial-card {
  background: var(--white); border-radius: var(--radius); padding: 32px;
  box-shadow: var(--shadow-card); border: 1px solid var(--slate-200);
  transition: transform 0.3s;
}
.testimonial-card:hover { transform: translateY(-3px); }
.testimonial-stars { color: var(--brand-gold); font-size: 14px; margin-bottom: 14px; letter-spacing: 2px; }
.testimonial-card blockquote {
  font-size: 15px; color: var(--slate-700); line-height: 1.7;
  font-style: italic; margin-bottom: 18px;
}
.testimonial-author {
  display: flex; align-items: center; gap: 12px;
}
.testimonial-avatar {
  width: 42px; height: 42px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 16px; color: white;
}
.testimonial-name { font-size: 14px; font-weight: 700; color: var(--navy); }
.testimonial-role { font-size: 12px; color: var(--slate-400); }

/* ========== SUPPORT ========== */
.support-section { padding: var(--section-pad); background: var(--white); }
.support-inner {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  border-radius: 24px; padding: 60px; text-align: center; position: relative; overflow: hidden;
}
.support-inner::before {
  content: ''; position: absolute; top: -80px; right: -80px;
  width: 240px; height: 240px;
  background: radial-gradient(circle, rgba(35,88,57,0.2) 0%, transparent 60%);
}
.support-inner .section-title { color: var(--white); }
.support-inner .section-subtitle { color: var(--slate-400); }
.support-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px;
  position: relative; z-index: 1;
}
.support-card {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius); padding: 28px; text-align: center;
}
.support-card-icon {
  font-size: 28px; margin-bottom: 14px;
}
.support-card h4 { font-family: var(--font-display); font-size: 16px; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.support-card p { font-size: 13px; color: var(--slate-400); line-height: 1.6; }

/* ========== PRICING ========== */
.pricing { padding: var(--section-pad); background: var(--slate-50); }
.pricing-card-wrapper { max-width: 460px; margin: 50px auto 0; }
.pricing-card {
  background: var(--white); border-radius: 20px; padding: 40px;
  box-shadow: var(--shadow-hero); border: 2px solid var(--brand-green);
  position: relative; overflow: hidden;
}
.pricing-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--brand-green), var(--brand-copper));
}
.pricing-tier {
  font-family: var(--font-display); font-size: 14px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em; color: var(--brand-copper);
  margin-bottom: 4px;
}
.pricing-desc { font-size: 14px; color: var(--slate-500); margin-bottom: 20px; }
.pricing-price {
  display: flex; align-items: baseline; gap: 4px; margin-bottom: 24px;
}
.pricing-amount {
  font-family: var(--font-display); font-size: 52px; font-weight: 800; color: var(--navy);
}
.pricing-period { font-size: 16px; color: var(--slate-400); }
.pricing-cta { width: 100%; margin-bottom: 28px; }
.pricing-features { display: flex; flex-direction: column; gap: 12px; }
.pricing-feature {
  display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--slate-700);
}
.pricing-feature svg { width: 18px; height: 18px; color: var(--brand-green); flex-shrink: 0; }
.pricing-addons {
  margin-top: 24px; padding-top: 20px; border-top: 1px solid var(--slate-200);
}
.pricing-addons-title { font-size: 13px; font-weight: 700; color: var(--slate-400); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 10px; }
.pricing-addon {
  font-size: 14px; color: var(--slate-500); padding: 6px 0;
}

/* ========== FAQ ========== */
.faq { padding: var(--section-pad); background: var(--white); }
.faq-list { max-width: 720px; margin: 50px auto 0; }
.faq-item {
  border-bottom: 1px solid var(--slate-200);
}
.faq-question {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 0; font-size: 16px; font-weight: 600; color: var(--navy);
  font-family: var(--font-body); text-align: left;
}
.faq-question:hover { color: var(--brand-green); }
.faq-icon {
  width: 28px; height: 28px; border-radius: 50%; background: var(--slate-100);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: transform 0.3s, background 0.3s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--brand-green-light); }
.faq-answer {
  max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.35s ease;
}
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer p {
  padding: 0 0 22px; font-size: 15px; color: var(--slate-500); line-height: 1.7;
}

/* ========== FINAL CTA ========== */
.final-cta {
  padding: 100px 0; background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  text-align: center; position: relative; overflow: hidden;
}
.final-cta::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(35,88,57,0.12) 0%, transparent 60%);
}
.final-cta .container { position: relative; z-index: 1; }
.final-cta h2 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(28px, 4vw, 42px); color: var(--white); line-height: 1.2; margin-bottom: 16px;
}
.final-cta p { font-size: 17px; color: var(--slate-400); max-width: 560px; margin: 0 auto 32px; }
.final-cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 18px; }
.final-cta-trust { font-size: 13px; color: var(--slate-500); }

/* ========== FOOTER ========== */
.footer {
  padding: 60px 0 30px; background: var(--navy); border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-inner {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
  padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-brand p { font-size: 14px; color: var(--slate-400); line-height: 1.6; margin-top: 12px; max-width: 280px; }
.footer-col h5 {
  font-family: var(--font-display); font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.06em; color: var(--slate-400);
  margin-bottom: 16px;
}
.footer-col a {
  display: block; font-size: 14px; color: var(--slate-500); padding: 4px 0;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--brand-gold); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 24px; font-size: 13px; color: var(--slate-500);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 968px) {
  .nav-links { display: none; }
  .nav-cta .btn-secondary { display: none; }
  .mobile-toggle { display: block; }
  
  .hero { padding: 120px 0 60px; }
  .hero h1 { font-size: clamp(28px, 6vw, 42px); }
  .browser-content { height: 300px; }
  .browser-content-inner { flex-direction: column; padding: 20px; }
  .mock-sidebar { width: 100%; display: none; }

  .built-for-inner { flex-direction: column; gap: 40px; }
  .feature-inner, .feature-inner.reverse { flex-direction: column; gap: 40px; }
  .feature-text p { max-width: 100%; }
  .explorations-inner { flex-direction: column; gap: 40px; }
  .ai-inner { flex-direction: column; padding: 40px 24px; }
  .comms-inner { flex-direction: column; gap: 40px; }
  
  .proof-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .pipeline-mock { grid-template-columns: repeat(2, 1fr); }
  .how-steps { grid-template-columns: 1fr; gap: 20px; }
  .features-grid { grid-template-columns: 1fr; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .support-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .section-title { font-size: clamp(24px, 5vw, 32px); }
  .hero { padding: 110px 0 50px; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { width: 100%; }
  .hero-trust span { display: none; }
  .hero-trust { display: flex; flex-direction: column; gap: 2px; align-items: center; }
  .browser-content { height: 240px; }
  .browser-content-inner { padding: 14px; }
  
  .proof-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .proof-item-number { font-size: 24px; }
  
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .stat-number { font-size: 28px; }
  
  .pipeline-mock { grid-template-columns: 1fr; }
  .comms-feature-grid { grid-template-columns: 1fr; }
  
  .testimonial-card-big { padding: 24px; }
  .testimonial-card-big blockquote { font-size: 17px; }
  
  .pricing-card { padding: 28px; }
  .pricing-amount { font-size: 42px; }
  
  .support-inner { padding: 40px 20px; }
  
  .final-cta { padding: 70px 0; }
  .final-cta-buttons { flex-direction: column; align-items: stretch; }
  .final-cta-buttons .btn { width: 100%; }
  
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  
  .exp-tabs { flex-wrap: wrap; }
  .exp-tab { font-size: 11px; padding: 8px 10px; }
}

/* Mobile nav overlay */
.mobile-menu {
  display: none; position: fixed; top: 68px; left: 0; right: 0; bottom: 0;
  background: var(--white); z-index: 999; padding: 24px;
  flex-direction: column; gap: 0;
  border-top: 1px solid var(--slate-200);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 16px 0; font-size: 16px; font-weight: 500; color: var(--navy);
  border-bottom: 1px solid var(--slate-100);
}
.mobile-menu .btn { margin-top: 20px; }
