/* ============================================
   LocalWorks Landing Page — Figma-Accurate Styles
   ============================================ */

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

:root {
  --color-purple: #9a78ab;
  --color-purple-border: #c5bece;
  --color-purple-light: #e4dfeb;
  --color-purple-bg: #f9f6fb;
  --color-purple-gradient-start: rgba(228, 222, 235, 0);
  --color-purple-gradient-end: #e4dfeb;
  --color-green: #619c5e;
  --color-dark: #333;
  --color-text: #333;
  --color-text-body: rgba(0, 0, 0, 0.45);
  --color-border: #d9d9d9;
  --color-bg: #ffffff;
  --color-bg-light: #f9f6fb;
  --font-primary: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --max-width: 1440px;
  --section-padding: 40px 0;
  --transition: 0.3s ease;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-primary);
  color: var(--color-text);
  line-height: 1.6;
  background: var(--color-bg);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

ul {
  list-style: none;
}

.lp-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 60px;
}

/* --- Animations --- */
.animate-on-scroll {
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.animate-fade-up { transform: translateY(30px); }
.animate-on-scroll.animate-fade-left { transform: translateX(-30px); }
.animate-on-scroll.animate-fade-right { transform: translateX(30px); }
.animate-on-scroll.animate-scale { transform: scale(0.95); }

.animate-on-scroll.animate-fade-up.is-visible,
.animate-on-scroll.animate-fade-left.is-visible,
.animate-on-scroll.animate-fade-right.is-visible,
.animate-on-scroll.animate-scale.is-visible,
.animate-on-scroll.is-visible {
  opacity: 1;
  transform: none;
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--color-bg);
}

.site-header .lp-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 8px;
}

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

.site-logo .logo-text {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--color-dark);
  white-space: nowrap;
}

.site-logo .logo-icon {
  display: flex;
  align-items: center;
  gap: 3px;
}

.site-logo .logo-icon span {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--color-purple);
  border-radius: 50%;
}

.site-logo .logo-subtitle {
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #888;
  display: block;
  margin-top: -2px;
}

.main-nav {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 0;
}

.nav-list li a {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 16px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text);
  transition: color var(--transition);
  white-space: nowrap;
}

.nav-list li a:hover {
  color: var(--color-purple);
}

.nav-list li a .nav-arrow {
  font-size: 0.6rem;
  transition: transform var(--transition);
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}

.mobile-menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-dark);
  transition: all var(--transition);
}

.mobile-menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-menu-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Section separator line */
.section-divider {
  height: 1px;
  background: #e5e5e5;
  max-width: 1320px;
  margin: 20px auto;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
  background: linear-gradient(to bottom, #fff 0%, #e4deeb 15%, #fff 100%);
  position: relative;
  overflow: hidden;
  padding-bottom: 15px;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 612px;
  min-height: 563px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 60px;
  align-items: stretch;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 0;
  z-index: 2;
}

.hero-content h1 {
  font-size: 48px;
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -1.92px;
  color: var(--color-dark);
}

.hero-content p {
  font-size: 20px;
  line-height: 1.8;
  letter-spacing: -0.8px;
  color: var(--color-text-body);
  margin-bottom: 36px;
  max-width: 565px;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Button — matches LocalWorks design system (.bookbutton) */
.btn-combo {
  max-width: 400px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1.2rem;
  font-size: 1.1rem;
  border: none;
  border-radius: 0.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  text-decoration: none;
  gap: 0.5em;
  text-transform: capitalize;
  background: #222;
  color: #fff;
}

.btn-combo:hover {
  background: var(--color-purple);
}

.btn-combo-text {
  white-space: nowrap;
  line-height: 1;
}

.btn-combo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 6px;
  flex-shrink: 0;
}

.btn-combo-icon img {
  width: 10px;
  height: 14px;
  object-fit: contain;
  transform: rotate(180deg);
}

.btn-combo:hover .btn-combo-icon {
  background: rgba(255, 255, 255, 0.9);
}

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

.hero-images {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  border-radius: 0 0 8px 8px;
}

.hero-images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 80% 42%;
  position: absolute;
  inset: 0;
}

.hero-images .img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, #9e8e7a 0%, #7d6c58 35%, #5c4b37 65%, #3b2a16 100%);
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
  padding: var(--section-padding);
  background: var(--color-bg);
}

.about-section .lp-container {
  display: grid;
  grid-template-columns: 426px 1fr;
  gap: 60px;
  align-items: start;
}

.about-image {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  height: 634px;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 40% 49%;
}

.about-image .img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(150deg, #b8a088 0%, #9a826a 30%, #7c6450 60%, #5e4636 100%);
  border-radius: 8px;
}

.about-content .section-label {
  font-size: 26px;
  font-weight: 500;
  color: var(--color-purple);
  letter-spacing: -1.04px;
  margin-bottom: 12px;
}

.about-content h2 {
  font-size: 48px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 24px;
  color: var(--color-dark);
  letter-spacing: -1.92px;
}

.about-content p {
  font-size: 20px;
  line-height: 1.8;
  letter-spacing: -0.8px;
  color: var(--color-text-body);
  margin-bottom: 16px;
}

.about-highlight {
  background: var(--color-green);
  color: #fff;
  padding: 25px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.8;
  letter-spacing: -0.64px;
  margin-top: 40px;
}

/* ============================================
   TRACK RECORD SECTION
   ============================================ */
.track-record-section {
  padding: var(--section-padding);
  background: var(--color-bg);
}

.track-record-section .lp-container {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  align-items: start;
}

.track-record-content .section-label {
  font-size: 26px;
  font-weight: 500;
  color: var(--color-purple);
  letter-spacing: -1.04px;
  margin-bottom: 12px;
}

.track-record-content h2 {
  font-size: 48px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 24px;
  color: var(--color-dark);
  letter-spacing: -1.92px;
}

.track-record-content p {
  font-size: 20px;
  line-height: 1.8;
  letter-spacing: -0.8px;
  color: var(--color-text-body);
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.stat-card {
  background: linear-gradient(to top, var(--color-purple-gradient-end), var(--color-purple-gradient-start));
  border: 1px solid var(--color-purple-border);
  border-radius: 12px;
  padding: 28px;
  text-align: left;
  position: relative;
}

.stat-card .stat-icon {
  position: absolute;
  top: 20px;
  right: 16px;
  width: 48px;
  height: 48px;
  object-fit: contain;
  object-position: center;
  opacity: 1;
}

.stat-card .stat-number {
  font-size: 50px;
  font-weight: 700;
  color: #000;
  line-height: 1;
  margin-bottom: 4px;
  letter-spacing: -2px;
}

.stat-card .stat-label {
  font-size: 20px;
  font-weight: 600;
  color: #000;
  letter-spacing: -0.8px;
}

.stat-card .stat-sublabel {
  font-size: 14px;
  color: var(--color-text-body);
  margin-top: 2px;
  letter-spacing: -0.48px;
}

.stats-cta {
  margin-top: 16px;
}

.stats-cta .btn-combo {
  width: 100%;
  max-width: 100%;
}

.stats-cta .btn-combo-text {
  flex: 1;
  text-align: center;
}

/* ============================================
   BUSINESS MODEL SECTION
   ============================================ */
.business-model-section {
  padding: var(--section-padding);
  background: var(--color-bg-light);
}

.bm-grid {
  display: grid;
  grid-template-columns: 46fr 54fr;
  grid-template-rows: auto 1fr auto;
  grid-template-areas:
    "heading intro"
    "cards   image"
    "bottom  bottom";
  gap: 15px;
  align-items: start;
}

.bm-heading { grid-area: heading; align-self: end; }
.bm-intro   { grid-area: intro; align-self: end; }
.bm-cards   { grid-area: cards; align-self: stretch; }
.bm-cards .feature-list {
  height: 100%;
  display: grid;
  grid-template-rows: 1fr 1fr 1fr;
  gap: 10px;
}
.bm-cards .feature-list .feature-item {
  align-self: stretch;
  display: flex;
  align-items: center;
}
.bm-image-col { grid-area: image; }

.bm-heading .section-label {
  font-size: 26px;
  font-weight: 500;
  color: var(--color-purple);
  letter-spacing: -1.04px;
  margin-bottom: 12px;
}

.bm-heading h2 {
  font-size: 48px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--color-dark);
  letter-spacing: -1.92px;
}

.bm-intro > p {
  font-size: 20px;
  line-height: 1.8;
  letter-spacing: -0.8px;
  color: var(--color-text-body);
  margin-bottom: 32px;
}

/* Feature cards */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 6px;
}

.feature-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  margin-bottom: 80px;
}

.feature-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.feature-text h3 {
  font-size: 20px;
  font-weight: 500;
  color: #000;
  margin-bottom: 4px;
  letter-spacing: -0.8px;
}

.feature-text p {
  font-size: 20px;
  line-height: 1.8;
  letter-spacing: -0.8px;
  color: var(--color-text-body);
}

/* Business model right side - image with overlay */
.bm-image-wrapper {
  position: relative;
  border-radius: 8px;
  overflow: visible;
  height: 623px;
}

.bm-image-cover {
  max-width: 100%;
  height: 100%;
  object-fit: none;
  border-radius: 8px;
}

.bm-image-wrapper .bm-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(to bottom, rgba(228, 223, 235, 0) 0%, #e4dfeb 100%);
  border-radius: 0 0 8px 8px;
}

/* Who Benefits */
.who-benefits {
  position: absolute;
  bottom: 30px;
  left: 30px;
  right: 30px;
  z-index: 2;
}

.who-benefits-header {
  display: none; /* hidden — now rendered inside the card as absolute element */
}

.who-benefits-card {
  background: #fff;
  border-radius: 6px;
  overflow: visible;
  position: relative;
}

.who-benefits-card::before {
  content: 'Who Benefits';
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(-50%);
  background: var(--color-purple);
  color: #fff;
  padding: 10px 22px;
  margin: 0 15px;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.96px;
  border-radius: 3px;
  z-index: 1;
  line-height: 1.5;
  font-family: var(--font-primary);
}

.who-benefits-tabs {
  display: flex;
  border-bottom: 1px solid var(--color-border);
  position: relative;
  padding-top: 28px;
}

.who-benefits-tab {
  flex: 1;
  background: none;
  border: none;
  padding: 14px 20px;
  font-family: var(--font-primary);
  font-size: 20px;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.3);
  letter-spacing: -0.8px;
  cursor: pointer;
  position: relative;
  transition: color 0.3s ease;
  text-align: left;
}

.who-benefits-tab.active {
  color: var(--color-purple);
}

.who-benefits-tab::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 20px;
  right: 20px;
  height: 3px;
  background: transparent;
  transition: background 0.3s ease;
}

.who-benefits-tab.active::after {
  background: var(--color-purple);
}

.who-benefits-content {
  padding: 16px 24px 24px;
  min-height: 80px;
}

.who-benefits-pane {
  display: none;
}

.who-benefits-pane.active {
  display: block;
}

.who-benefits-pane p {
  font-size: 20px;
  line-height: 1.8;
  letter-spacing: -0.8px;
  color: var(--color-text-body);
}

/* Bottom row features - Highly Scalable + Higher Retention */
.feature-row-bottom {
  grid-area: bottom;
  display: grid;
  grid-template-columns: 46fr 54fr;
  gap: 15px;
}

.feature-row-bottom .feature-item {
  margin: 0;
  align-self: stretch;
  min-height: 201px;
}

/* ============================================
   OWNER REPORTING SECTION
   ============================================ */
.reporting-section {
  padding: var(--section-padding);
  background: var(--color-bg);
}

.reporting-section .lp-container {
  display: grid;
  grid-template-columns: 47fr 53fr;
  gap: 80px;
  align-items: start;
}

.reporting-content .section-label {
  font-size: 26px;
  font-weight: 500;
  color: var(--color-purple);
  letter-spacing: -1.04px;
  margin-bottom: 12px;
}

.reporting-content h2 {
  font-size: 48px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 24px;
  color: var(--color-dark);
  letter-spacing: -1.92px;
}

.reporting-content p {
  font-size: 20px;
  line-height: 1.8;
  letter-spacing: -0.8px;
  color: var(--color-text-body);
  margin-bottom: 16px;
}

.reporting-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 24px;
  padding: 14px 16px;
  background: var(--color-green);
  border-radius: 6px;
}

.reporting-note .note-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 5px;
}

.reporting-note .note-icon img {
  width: 100%;
  height: 100%;
}

.reporting-note p {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0;
  line-height: 1.8;
  letter-spacing: -0.64px;
}

.reporting-charts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
}

.chart-card {
  border: 1px solid rgba(154, 120, 171, 0.46);
  border-radius: 6px;
  overflow: hidden;
}

/* Each card shows a different quadrant of the dashboard */
.chart-card {
  aspect-ratio: 1;
}
.chart-card img {
  display: block;
  width: 200%;
  min-height: 200%;
  max-width: none;
  object-fit: cover;
}
.chart-tl img { object-position: left top; margin: 0; }
.chart-tr img { object-position: right top; margin: 0 0 0 -100%; }
.chart-bl img { object-position: left bottom; margin: -100% 0 0 0; }
.chart-br img { object-position: right bottom; margin: -100% 0 0 -100%; }

.chart-card .chart-placeholder {
  height: 100%;
  min-height: 140px;
  background: var(--color-bg-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-purple);
  font-size: 0.75rem;
}

.reporting-charts-caption {
  grid-column: 1 / -1;
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: -0.64px;
  color: rgba(154, 120, 171, 0.63);
  margin-top: 8px;
}

/* ============================================
   PROPOSAL SECTION
   ============================================ */
.proposal-section {
  padding: var(--section-padding);
  background: var(--color-bg);
}

.proposal-section .section-header {
  text-align: left;
  margin-bottom: 48px;
}

.proposal-section .section-label {
  font-size: 26px;
  font-weight: 500;
  color: var(--color-purple);
  letter-spacing: -1.04px;
  margin-bottom: 4px;
}

.proposal-section h2 {
  font-size: 48px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-dark);
  letter-spacing: -1.92px;
}

.proposal-grid {
  display: grid;
  grid-template-columns: 48fr 52fr;
  gap: 30px;
  align-items: start;
}

.proposal-image {
  border-radius: 8px;
  overflow: hidden;
  height: 634px;
}

.proposal-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% 49%;
}

.proposal-image .img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(140deg, #3d2e50 0%, #2c1f3d 40%, #1e1530 70%, #120e20 100%);
  border-radius: 8px;
}

.proposal-details {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.proposal-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.proposal-card-full {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: row;
  align-items: center;
  text-align: left;
}

.proposal-card-full .card-icon {
  margin: 0;
}

.proposal-card-full p {
  text-align: left;
}

.proposal-card {
  border: 1px solid var(--color-border);
  border-radius: 6px;
  padding: 20px 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.proposal-card .card-icon {
  width: 42px;
  height: 42px;
  margin: 0 auto 10px;
}

.proposal-card .card-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.proposal-card h3 {
  font-size: 20px;
  font-weight: 600;
  color: var(--color-purple);
  margin-bottom: 8px;
  letter-spacing: -0.8px;
}

.proposal-card p {
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: -0.64px;
  color: var(--color-text-body);
  text-align: center;
}

.management-includes h3 {
  font-size: 24px;
  font-weight: 600;
  color: #747474;
  margin-bottom: 16px;
  letter-spacing: -0.96px;
}

.management-list {
  display: flex;
  flex-direction: column;
  margin-left: 0;
  padding-left: 0;
}

.management-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: -0.64px;
  color: var(--color-text-body);
  margin-left: 3px;
}

.management-list li .check-icon {
  flex-shrink: 0;
  width: 12px;
  height: 12px;
  margin-top: 6px;
}

.management-list li .check-icon img {
  width: 7px;
  height: 100%;
  transform: rotate(180deg);
  margin-top: 3px;
}

/* ============================================
   LEARN MORE / CTA SECTION
   ============================================ */
.cta-section {
  padding: 40px 0;
  background: var(--color-purple);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  left: -300px;
  top: -200px;
  width: 1200px;
  height: 1000px;
  background: url('../images/cta-circles.svg') center / contain no-repeat;
  opacity: 0.5;
  z-index: 0;
}

.cta-section::after {
  content: '';
  position: absolute;
  right: -200px;
  top: -150px;
  width: 1000px;
  height: 900px;
  background: url('../images/cta-circles.svg') center / contain no-repeat;
  opacity: 0.35;
  z-index: 0;
  transform: rotate(160deg);
  pointer-events: none;
}

.cta-section .lp-container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 670px;
  gap: 20px;
  align-items: stretch;
}

.cta-left {
  background: #fff;
  border-radius: 10px;
  padding: 30px;
  color: var(--color-dark);
  min-height: 332px;
}

.cta-left h2 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--color-dark);
  letter-spacing: -1.28px;
  position: relative;
}

.cta-left h2::after {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  background: var(--color-border);
  margin-top: 10px;
}

.cta-left p {
  font-size: 18px;
  line-height: 1.8;
  letter-spacing: -0.72px;
  color: var(--color-text-body);
}

.cta-right {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.cta-person-card {
  display: grid;
  grid-template-columns: 1fr 291px;
  border-radius: 10px 10px 0 0;
  overflow: hidden;
}

.cta-person-image {
  height: 209px;
  overflow: hidden;
}

.cta-person-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 20%;
}

.cta-person-info-card {
  background: #fff;
  padding: 20px;
  color: var(--color-dark);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.cta-person-info-card h4 {
  font-size: 20px;
  font-weight: 600;
  color: #000;
  letter-spacing: -0.8px;
  padding-bottom: 0;
  margin-bottom: 5px;
}

.cta-person-info-card .cta-role {
  font-size: 20px;
  color: var(--color-text-body);
  letter-spacing: -0.8px;
  margin-bottom: 20px;
}

.cta-contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: auto;
}

.cta-contact a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  color: var(--color-text-body);
  letter-spacing: -0.64px;
  transition: color var(--transition);
}

.cta-contact a:hover {
  color: var(--color-dark);
}

.cta-contact .contact-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.cta-contact .contact-icon img {
  width: 100%;
  height: 100%;
}

.cta-email-prompt {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 20px 24px;
  background: var(--color-green);
  border-radius: 0 0 10px 10px;
  font-size: 18px;
  color: #fff;
  line-height: 1.8;
  letter-spacing: -0.72px;
  flex: 1;
}

.cta-email-prompt .mail-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 6px;
  margin-bottom: 40px;
}

.cta-email-prompt .mail-icon img {
  width: 100%;
  height: 100%;
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */

@media (max-width: 1200px) {
  .lp-container { padding: 0 40px; }
  .hero-inner { grid-template-columns: 1fr 1fr; min-height: 480px; padding: 0 40px; }
  .about-section .lp-container { grid-template-columns: 1fr 1fr; }
  .proposal-grid { grid-template-columns: 1fr 1fr; }
  .bm-grid { grid-template-columns: 1fr 1fr; }
  .feature-row-bottom { grid-template-columns: 1fr 1fr; }
  .cta-section .lp-container { grid-template-columns: 1fr 1fr; }
  .cta-person-card { grid-template-columns: 1fr auto; }
  .about-image { height: auto; aspect-ratio: 2/3; }
  .proposal-image { height: auto; aspect-ratio: 4/3; }
}

@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-inner { padding: 0 24px; }
  .hero-content {
    padding: 25px 0;
    max-width: 100%;
  }

  .hero-content h1 { font-size: 36px; }
  .hero-images { order: -1; height: 350px; position: relative; }
  .hero-section .btn-combo { max-width: none; }

  .about-section .lp-container,
  .track-record-section .lp-container,
  .reporting-section .lp-container,
  .proposal-grid,
  .cta-section .lp-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .bm-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "heading"
      "intro"
      "cards"
      "bottom"
      "image";
    gap: 15px;
  }

  .feature-row-bottom { grid-template-columns: 1fr 1fr; }
  .cta-person-card { grid-template-columns: 1fr auto; }
  .cta-left { min-height: auto; }
  .about-image { height: 400px; aspect-ratio: auto; }
  .bm-image-wrapper { height: 400px; }
  .who-benefits { bottom: -60px; left: 16px; right: 16px; }
  .who-benefits-card::before { font-size: 16px; padding: 7px 14px; }
  .who-benefits-tab { font-size: 14px; padding: 10px 14px; }
  .who-benefits-tabs { padding-top: 20px; }
  .who-benefits-pane p { font-size: 14px; }
  .who-benefits-content { padding: 12px 16px 16px; min-height: 60px; }
  .proposal-image { height: 400px; aspect-ratio: auto; }

  .about-content h2,
  .track-record-content h2,
  .bm-heading h2,
  .reporting-content h2,
  .proposal-section h2,
  .cta-left h2 {
    font-size: 36px;
  }

  .about-content .section-label,
  .track-record-content .section-label,
  .bm-heading .section-label,
  .reporting-content .section-label,
  .proposal-section .section-label {
    font-size: 22px;
  }

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

@media (max-width: 768px) {
  :root { --section-padding: 24px 0; }
  .lp-container { padding: 0 24px; }
  .section-divider { margin: 8px auto; }

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

  .main-nav {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--color-bg);
    border-bottom: 1px solid var(--color-border);
    padding: 16px 24px;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    z-index: 999;
  }

  .main-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .nav-list {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-list li { width: 100%; }
  .nav-list li a {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    width: 100%;
    justify-content: space-between;
  }

  .hero-images { order: -1; height: 60vw; min-height: 300px; }
  .hero-content { padding: 20px 0; }
  .hero-content h1 { font-size: 28px; letter-spacing: -1px; }
  .hero-content p { font-size: 16px; }
  .hero-section .btn-combo { max-width: none; }

  .about-content h2,
  .track-record-content h2,
  .bm-heading h2,
  .reporting-content h2,
  .proposal-section h2 {
    font-size: 28px;
    letter-spacing: -1px;
  }

  .about-content p,
  .track-record-content p,
  .bm-intro > p,
  .reporting-content p,
  .feature-text p,
  .feature-text h3 {
    font-size: 16px;
  }

  .stat-card .stat-number { font-size: 36px; }
  .stat-card .stat-label { font-size: 16px; }

  .proposal-cards { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .proposal-card h3 { font-size: 18px; }
  .proposal-card p { font-size: 15px; }

  .who-benefits-grid { grid-template-columns: 1fr; }
  .who-benefits { bottom: -40px; left: 12px; right: 12px; }

  .reporting-charts { grid-template-columns: 1fr 1fr; }

  .cta-person-card { grid-template-columns: 1fr; }
  .cta-person-image { height: 200px; }
}

@media (max-width: 480px) {
  .hero-content h1 { font-size: 24px; }
  .hero-images { height: 65vw; }
  .stats-grid { gap: 10px; }
  .proposal-cards { grid-template-columns: 1fr; }
  .reporting-charts { grid-template-columns: 1fr; }
  .cta-section .lp-container { gap: 24px; }
  .feature-row-bottom { grid-template-columns: 1fr; }
}
