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

:root {
  --green: #a8e300;
  --green-dark: #8bc200;
  --green-light: #d4f57a;
  --green-glow: rgba(168, 227, 0, 0.3);
  --orange: #fd4803;
  --orange-dark: #e03e00;
  --orange-light: #ff7a45;
  --orange-glow: rgba(253, 72, 3, 0.25);
  --dark: #0f0f1a;
  --gray-900: #1e1e30;
  --gray-800: #2d2d3f;
  --gray-700: #555568;
  --gray-500: #8888a0;
  --gray-300: #c4c4d4;
  --gray-200: #e2e2ec;
  --gray-100: #f4f4f8;
  --white: #ffffff;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-xs: 6px;
  --shadow: 0 2px 12px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--gray-800);
  line-height: 1.6;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

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

/* === Scroll Animations === */
[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}

/* === Buttons === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
  font-weight: 600;
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  gap: 8px;
  position: relative;
}
.btn-sm { padding: 10px 22px; font-size: 0.875rem; }
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }
.btn-block { width: 100%; }

.btn-primary {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 4px 16px var(--orange-glow);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--orange-dark) 0%, var(--orange) 100%);
  box-shadow: 0 6px 24px var(--orange-glow);
  transform: translateY(-2px);
}

.btn-outline {
  background: rgba(255,255,255,0.8);
  color: var(--gray-800);
  border-color: var(--gray-200);
  backdrop-filter: blur(8px);
}
.btn-outline:hover {
  border-color: var(--gray-800);
  background: var(--white);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--orange);
  border-color: var(--white);
  box-shadow: 0 4px 16px rgba(255,255,255,0.2);
}
.btn-white:hover {
  background: var(--gray-100);
  transform: translateY(-2px);
}

/* === Nav === */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(15,15,26,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: background var(--transition), box-shadow var(--transition);
}
.nav.scrolled {
  background: rgba(15,15,26,0.97);
  box-shadow: 0 1px 12px rgba(0,0,0,0.3);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: var(--white);
}
.logo img {
  height: 40px;
  width: auto;
  display: block;
  flex-shrink: 0;
}
.logo-text {
  margin-left: 12px;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.15;
}
.nav-links {
  display: flex;
  gap: 36px;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-300);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--orange);
  border-radius: 1px;
  transition: width var(--transition);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

/* === Hero === */
.hero {
  padding: 150px 0 100px;
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, var(--green-glow) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 30% 60%, var(--orange-glow) 0%, transparent 60%),
    linear-gradient(180deg, var(--white) 0%, var(--gray-100) 100%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--green-glow) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--orange-glow) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 10s ease-in-out infinite reverse;
  pointer-events: none;
}
@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(30px, -20px); }
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.badge {
  display: inline-block;
  padding: 8px 18px;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-light) 100%);
  color: var(--dark);
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: 24px;
  margin-bottom: 24px;
  box-shadow: 0 2px 12px var(--green-glow);
  letter-spacing: 0.2px;
}
.hero h1 {
  font-size: 3.4rem;
  font-weight: 800;
  line-height: 1.08;
  color: var(--dark);
  letter-spacing: -2px;
  margin-bottom: 24px;
}
.highlight {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 1.15rem;
  color: var(--gray-700);
  max-width: 480px;
  margin-bottom: 36px;
  line-height: 1.75;
}
.hero-cta { display: flex; gap: 14px; margin-bottom: 16px; }
.hero-note { font-size: 0.85rem; color: var(--gray-700); }

/* === Sync Diagram (Hero Visual) === */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.hero-glow {
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--green-glow) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(40px);
  z-index: 0;
  animation: pulse-glow 4s ease-in-out infinite;
}
@keyframes pulse-glow {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 0.8; transform: scale(1.1); }
}
.sync-diagram {
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
  z-index: 1;
}
.sync-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 28px 32px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1.05rem;
  position: relative;
  transition: transform var(--transition);
}
.sync-box:hover { transform: translateY(-4px); }
.sync-icon { display: flex; align-items: center; justify-content: center; }
.jobber-box {
  background: linear-gradient(145deg, var(--green) 0%, var(--green-dark) 100%);
  color: var(--dark);
  box-shadow: 0 8px 32px var(--green-glow), inset 0 1px 0 rgba(255,255,255,0.3);
}
.hubspot-box {
  background: linear-gradient(145deg, var(--orange) 0%, var(--orange-dark) 100%);
  color: var(--white);
  box-shadow: 0 8px 32px var(--orange-glow), inset 0 1px 0 rgba(255,255,255,0.2);
}
.sync-items {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 4px;
}
.sync-item {
  font-size: 0.7rem;
  font-weight: 500;
  padding: 3px 10px;
  border-radius: 10px;
  background: rgba(255,255,255,0.3);
  text-align: center;
}
.hubspot-box .sync-item { background: rgba(255,255,255,0.2); }

/* Flow animation */
.sync-flow {
  display: flex;
  align-items: center;
  gap: 8px;
}
.flow-line {
  display: flex;
  gap: 8px;
  align-items: center;
}
.flow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  animation: flow-move 1.5s ease-in-out infinite;
  opacity: 0.4;
}
.flow-dot:nth-child(1) { animation-delay: 0s; }
.flow-dot:nth-child(2) { animation-delay: 0.3s; }
.flow-dot:nth-child(3) { animation-delay: 0.6s; }
@keyframes flow-move {
  0%, 100% { opacity: 0.2; transform: scale(0.8); }
  50% { opacity: 1; transform: scale(1.2); }
}
.flow-arrow { color: var(--orange); }

/* === Trust / Stats === */
.trust {
  padding: 48px 0;
  text-align: center;
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
}
.trust-text {
  font-size: 1rem;
  color: var(--gray-500);
  max-width: 600px;
  margin: 0 auto 32px;
}
.trust-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}
.stat { text-align: center; }
.stat-number {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.5px;
}
.stat-label {
  display: block;
  font-size: 0.8rem;
  color: var(--gray-500);
  margin-top: 2px;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--gray-200);
}

/* === Sections === */
.section { padding: 100px 0; }
.section-title {
  font-size: 2.4rem;
  font-weight: 800;
  text-align: center;
  color: var(--dark);
  letter-spacing: -1.2px;
  margin-bottom: 14px;
}
.section-sub {
  text-align: center;
  color: var(--gray-700);
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 auto 56px;
  line-height: 1.7;
}

/* === How it works === */
.how-it-works {
  background:
    radial-gradient(ellipse 50% 60% at 90% 50%, rgba(168,227,0,0.2) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 5% 50%, rgba(253,72,3,0.15) 0%, transparent 60%),
    linear-gradient(180deg, #f0f0f6 0%, #f8f8fc 100%);
  position: relative;
  overflow: hidden;
}
.steps-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: stretch;
}
.step-card {
  text-align: center;
  padding: 44px 28px 36px;
  border-radius: var(--radius);
  background: var(--gray-100);
  position: relative;
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.step-card:hover {
  background: var(--white);
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
  border-color: transparent;
}
.step-card:hover .step-icon {
  color: var(--white);
}
.step-card:hover .step-icon svg {
  filter: drop-shadow(0 2px 8px var(--orange-glow));
}
.step-number {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 34px;
  height: 34px;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  box-shadow: 0 4px 12px var(--orange-glow);
}
.step-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--orange);
}
.step-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--dark);
}
.step-card p { color: var(--gray-700); font-size: 0.92rem; line-height: 1.6; }

.step-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
}
.connector-line {
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--green) 0%, var(--orange) 100%);
  border-radius: 1px;
  position: relative;
}
.connector-line::after {
  content: '';
  position: absolute;
  right: -3px;
  top: -3px;
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--orange);
  border-top: 2px solid var(--orange);
  transform: rotate(45deg);
}

/* === Features === */
.features {
  background:
    radial-gradient(ellipse 50% 50% at 20% 30%, rgba(253,72,3,0.14) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 70%, rgba(168,227,0,0.18) 0%, transparent 60%),
    var(--white);
}

/* --- Option A: Mapping Table --- */
.mapping-table {
  width: fit-content;
  margin: 0 auto 56px;
}
.mapping-header {
  display: grid;
  grid-template-columns: 100px 150px 180px;
  gap: 20px;
  padding: 0 28px 12px;
}
.mapping-label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.jobber-label { color: var(--green-dark); text-align: right; }
.hubspot-label { color: var(--orange); }

.mapping-row {
  display: grid;
  grid-template-columns: 100px 150px 180px;
  align-items: center;
  gap: 20px;
  padding: 18px 28px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  margin-bottom: 12px;
  transition: all var(--transition);
}
.mapping-row:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: var(--orange-light);
}
.mapping-cell {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.jobber-cell { align-items: flex-end; text-align: right; min-width: 80px; }
.hubspot-cell { }
.mapping-icon { font-size: 1.8rem; flex-shrink: 0; }
.mapping-entity {
  display: block;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
}
.mapping-detail {
  display: block;
  font-size: 0.8rem;
  color: var(--gray-500);
  margin-top: 2px;
}
.mapping-arrow {
  font-size: 1.4rem;
  font-weight: 800;
  background: var(--orange);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
  min-width: 30px;
}

/* --- Shared: Benefits grid --- */
.benefits-subtitle {
  text-align: center;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 20px;
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.benefit-card {
  background: var(--white);
  padding: 32px 24px;
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.benefit-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green) 0%, var(--orange) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
  border-radius: var(--radius) var(--radius) 0 0;
}
.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.benefit-card:hover::before {
  transform: scaleX(1);
}
.feature-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(168,227,0,0.12) 0%, rgba(253,72,3,0.08) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--orange);
  transition: all var(--transition);
}
.benefit-card:hover .feature-icon-wrap {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
  color: var(--white);
  box-shadow: 0 4px 16px var(--orange-glow);
}
.benefit-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--dark);
}
.benefit-card p { color: var(--gray-700); font-size: 0.9rem; line-height: 1.7; }

/* === Pricing === */
.pricing {
  background:
    radial-gradient(ellipse 60% 60% at 50% 0%, rgba(168,227,0,0.16) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 90% 100%, rgba(253,72,3,0.14) 0%, transparent 60%),
    linear-gradient(180deg, #f0f0f6 0%, #f8f8fc 100%);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.pricing-grid-2 {
  grid-template-columns: repeat(2, 1fr);
  max-width: 760px;
  margin: 0 auto;
}
.pricing-card {
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 40px 28px;
  text-align: center;
  position: relative;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.pricing-card.featured {
  border-color: var(--orange);
  box-shadow: var(--shadow-xl);
  transform: scale(1.05);
  background: linear-gradient(180deg, var(--white) 0%, rgba(253,72,3,0.02) 100%);
}
.pricing-card.featured:hover { transform: scale(1.05) translateY(-6px); }
.pricing-badge {
  display: inline-block;
  padding: 5px 16px;
  font-size: 0.72rem;
  font-weight: 700;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-light) 100%);
  color: var(--dark);
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.pricing-card.featured .pricing-badge {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-light) 100%);
  color: var(--white);
}
.pricing-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}
.pricing-price {
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 4px;
  letter-spacing: -1px;
}
.pricing-price span { font-size: 1rem; font-weight: 500; color: var(--gray-500); }
.price-strikethrough {
  text-decoration: line-through;
  color: var(--gray-500);
  font-size: 1.6rem;
  font-weight: 600;
  margin-right: 8px;
}
.pricing-note { font-size: 0.85rem; color: var(--gray-700); margin-bottom: 28px; }
.pricing-features {
  text-align: left;
  margin-bottom: 32px;
  flex-grow: 1;
}
.pricing-features li {
  padding: 10px 0;
  font-size: 0.9rem;
  color: var(--gray-700);
  border-bottom: 1px solid var(--gray-100);
}
.pricing-features li:last-child { border-bottom: none; }

/* Pricing button height */
.btn-pricing { padding: 16px 32px; font-size: 1rem; }

/* Pricing included badge (Free card) */
.pricing-included {
  padding: 16px 32px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--green-dark);
  background: linear-gradient(135deg, rgba(168,227,0,0.12) 0%, rgba(168,227,0,0.06) 100%);
  border: 1.5px solid var(--green);
  border-radius: var(--radius-sm);
  text-align: center;
}

/* Disabled pricing cards */
.pricing-card.disabled { opacity: 0.65; }
.pricing-card.disabled:hover { transform: none; }
.pricing-card.featured.disabled { transform: scale(1.05); }
.pricing-card.featured.disabled:hover { transform: scale(1.05); }

.btn-disabled {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
  font-weight: 600;
  font-size: 1rem;
  padding: 16px 32px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  background: var(--gray-100);
  color: var(--gray-500);
  cursor: not-allowed;
}

/* === Build Together === */
.build-together {
  background:
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(168,227,0,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 10% 80%, rgba(253,72,3,0.14) 0%, transparent 60%),
    var(--white);
  color: var(--dark);
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--gray-200);
}
.build-together::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(168,227,0,0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.build-together::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(253,72,3,0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.build-together-inner {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.build-together-icon {
  font-size: 3rem;
  margin-bottom: 20px;
}
.build-together h2 {
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 20px;
  line-height: 1.2;
}
.build-together p {
  color: var(--gray-700);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 16px;
}
.build-together-highlights {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin: 36px 0;
  flex-wrap: nowrap;
}
.build-highlight {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--dark);
  white-space: nowrap;
}
.build-highlight-icon { font-size: 1.3rem; }

.build-together-alt {
  margin-top: 14px;
  font-size: 0.9rem;
  color: var(--gray-500);
}
.build-together-alt a {
  color: var(--orange);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.build-together-alt a:hover { color: var(--orange-dark); }

/* === Waitlist === */
.waitlist {
  background: linear-gradient(180deg, var(--gray-100) 0%, var(--white) 100%);
}
.waitlist-inner {
  max-width: 820px;
  margin: 0 auto;
}
.waitlist-form {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--gray-200);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.form-row-3 {
  grid-template-columns: 1fr 1fr 1fr;
}
.form-group { display: flex; flex-direction: column; }
.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 13px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--dark);
  transition: all var(--transition);
  background: var(--white);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--orange);
  background: var(--white);
  box-shadow: 0 0 0 3px var(--orange-glow);
}
.form-group input::placeholder { color: var(--gray-500); }
.form-group textarea {
  resize: vertical;
  min-height: 80px;
}
.form-group textarea::placeholder { color: var(--gray-500); }
.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 24px 0;
}
.form-check input[type="checkbox"] {
  margin-top: 3px;
  accent-color: var(--orange);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.form-check label {
  font-size: 0.9rem;
  color: var(--gray-700);
  line-height: 1.5;
  cursor: pointer;
}
.form-disclaimer {
  text-align: center;
  font-size: 0.8rem;
  color: var(--gray-700);
  margin-top: 14px;
}
.form-link {
  text-decoration: underline;
  text-underline-offset: 2px;
}
.form-link:hover { color: var(--orange-dark); }
.waitlist-success {
  text-align: center;
  padding: 56px 28px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--gray-200);
}
.success-icon { font-size: 3.5rem; margin-bottom: 18px; }
.waitlist-success h3 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}
.waitlist-success p { color: var(--gray-700); font-size: 1.05rem; }

/* === FAQ === */
.faq {
  background:
    radial-gradient(ellipse 50% 50% at 10% 50%, rgba(168,227,0,0.15) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 95% 50%, rgba(253,72,3,0.12) 0%, transparent 60%),
    var(--white);
}
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 820px;
  margin: 0 auto;
}
.faq-item {
  background: var(--white);
  padding: 28px 24px;
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  transition: all var(--transition);
}
.faq-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: var(--green);
}
.faq-item h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}
.faq-item p {
  font-size: 0.9rem;
  color: var(--gray-700);
  line-height: 1.7;
}

/* === CTA Banner === */
.cta-banner {
  padding: 80px 0;
  background:
    radial-gradient(ellipse 50% 80% at 20% 50%, var(--orange-glow) 0%, transparent 60%),
    radial-gradient(ellipse 50% 80% at 80% 50%, var(--green-glow) 0%, transparent 60%),
    linear-gradient(135deg, var(--dark) 0%, var(--gray-900) 100%);
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.cta-banner h2 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}
.cta-banner p {
  color: var(--gray-300);
  margin-bottom: 32px;
  font-size: 1.1rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* === Footer === */
.footer {
  padding: 56px 0 28px;
  background: var(--dark);
  color: var(--gray-300);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.footer-brand .logo img { height: 55px; }
.footer-brand .logo-text { color: var(--white); }
.footer-brand p { margin-top: 10px; font-size: 0.9rem; color: var(--gray-300); line-height: 1.6; }
.footer-links {
  display: flex;
  gap: 60px;
  justify-content: flex-end;
}
.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  font-size: 0.9rem;
  color: var(--gray-300);
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--green); }
.footer-bottom {
  grid-column: 1 / -1;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  margin-top: 32px;
}
.footer-bottom p { font-size: 0.8rem; color: var(--gray-300); }
.footer-disclaimer { margin-top: 8px; font-size: 0.75rem; color: var(--gray-500); }

/* === Responsive === */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .mobile-menu-btn { display: flex; }
  .nav .btn-sm { padding: 5px 12px !important; font-size: 0.65rem !important; border-width: 1.5px !important; }

  .hero { padding: 110px 0 70px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero h1 { font-size: 2.4rem; letter-spacing: -1px; }
  .hero-sub { margin: 0 auto 28px; }
  .hero-cta { justify-content: center; flex-wrap: wrap; }

  .trust-stats { flex-wrap: wrap; gap: 24px; }
  .stat-divider { display: none; }

  .steps-grid { grid-template-columns: 1fr; gap: 24px; }
  .step-connector { display: none; }

  .mapping-header { padding: 0 16px 12px; grid-template-columns: auto 0 auto; }
  .mapping-row { grid-template-columns: 1fr; gap: 8px; text-align: center; }
  .jobber-cell, .hubspot-cell { align-items: center; text-align: center; }

  .transform-grid { grid-template-columns: 1fr; max-width: 360px; margin: 0 auto 56px; }

  .benefits-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }

  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }

  .pricing-card.featured { transform: none; }
  .pricing-card.featured:hover { transform: translateY(-6px); }

  .build-together-highlights { gap: 20px; flex-wrap: wrap; justify-content: center; }

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

  .faq-grid { grid-template-columns: 1fr; }
  .waitlist-form { padding: 28px 20px; }

  .footer-inner { grid-template-columns: 1fr; }
  .footer-links { justify-content: flex-start; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.9rem; }
  .section-title { font-size: 1.7rem; }
  .sync-box { padding: 20px 24px; }
  .sync-diagram { gap: 12px; }
}

/* ==============================
/* ==============================
   WAITLIST FORM — SPLIT LAYOUT
   ============================== */

/* Toggle switch (shared) */
.wl-d-toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  cursor: pointer;
  user-select: none;
}
.wl-d-toggle-label {
  font-size: 0.88rem;
  color: var(--gray-700);
  font-weight: 500;
}
.wl-d-switch {
  position: relative;
  width: 40px;
  height: 22px;
  flex-shrink: 0;
}
.wl-d-switch input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}
.wl-d-slider {
  position: absolute;
  inset: 0;
  background: var(--gray-200);
  border-radius: 22px;
  transition: background var(--transition);
}
.wl-d-slider::before {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  left: 3px;
  top: 3px;
  background: var(--white);
  border-radius: 50%;
  transition: transform var(--transition);
  box-shadow: 0 1px 3px rgba(0,0,0,0.15);
}
.wl-d-switch input:checked + .wl-d-slider {
  background: var(--orange);
}
.wl-d-switch input:checked + .wl-d-slider::before {
  transform: translateX(18px);
}
.wl-d-switch input:focus-visible + .wl-d-slider {
  box-shadow: 0 0 0 3px var(--orange-glow);
}

/* Expandable textarea */
.wl-d-extra {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.35s ease, opacity 0.3s ease, margin 0.3s ease;
  margin-top: 0;
}
.wl-d-extra.open {
  max-height: 140px;
  opacity: 1;
  margin-top: 14px;
}

/* === Split layout — Text left, form right === */
.waitlist-e {
  background: var(--dark);
  position: relative;
  overflow: hidden;
}
.waitlist-e::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -15%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(168,227,0,0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: float 12s ease-in-out infinite;
}
.waitlist-e::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(253,72,3,0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: float 15s ease-in-out infinite reverse;
}
.wl-e-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 56px;
  align-items: start;
  max-width: 920px;
  margin: 0 auto;
}
.wl-e-text {
  padding-top: 45px;
}
.wl-e-text h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -1px;
  margin-bottom: 14px;
  line-height: 1.15;
}
.wl-e-text p {
  font-size: 1.05rem;
  color: var(--gray-300);
  line-height: 1.75;
  margin-bottom: 24px;
}
.wl-e-perks {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.wl-e-perk {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--gray-200);
}
.wl-e-form-wrap {
  background: var(--white);
  border: 2px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow-lg);
}
.wl-e-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.wl-e-form[hidden] {
  display: none !important;
}
.wl-e-form .form-group { margin-bottom: 0; }
.wl-e-form .form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 4px;
}
/* Override toggle label size inside variant E */
.wl-e-form .wl-d-toggle-label {
  font-size: 0.82rem;
  color: var(--dark);
}
.wl-e-input {
  padding: 11px 14px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-xs);
  font-family: inherit;
  font-size: 0.9rem;
  color: var(--dark);
  background: var(--white);
  transition: all var(--transition);
  width: 100%;
}
.wl-e-input::placeholder { color: var(--gray-500); }
.wl-e-input:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px var(--orange-glow);
}
textarea.wl-e-input {
  resize: vertical;
  min-height: 56px;
}

/* Variant E checkbox */
.wl-e-check {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 2px;
}
.wl-e-check input[type="checkbox"] {
  margin-top: 2px;
  accent-color: var(--orange);
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.wl-e-check label {
  font-size: 0.8rem;
  color: var(--gray-700);
  line-height: 1.4;
  cursor: pointer;
}

/* Responsive for split layout */
@media (max-width: 768px) {
  .wl-e-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
