/* ========== 1. CSS Custom Properties ========== */
:root {
  --white: #FFFFFF;
  --bg: #FFFFFF;
  --bg-subtle: #F5F0E8;
  --border: rgba(15, 118, 110, 0.125);
  --border-light: rgba(15, 118, 110, 0.06);
  --text: #134E4A;
  --text-secondary: #1E3A38;
  --text-muted: #4A7C78;
  --accent: #0F766E;
  --accent-light: #F0FDFA;
  --accent-hover: #134E4A;
  --highlight: #F59E0B;
  --highlight-hover: #D97706;
  --green: #14B8A6;
  --red: #DC2626;
  --footer-bg: #134E4A;
  --footer-text: #F5F0E8;
  --font-body: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text-secondary);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

/* ========== 3. Typography ========== */

/* Heading font — Playfair Display on all headings */
.section-title,
.hero h1,
.cta-content h2,
.stat-number,
.platform-card h3,
.persona-card h3,
.carousel-title,
.story-card h4,
.about-value h3,
.feature-card h3,
.privacy-info-card h3,
.privacy-content h3,
.emergency-item h4,
.contact-info h4,
.highlight-box strong {
  font-family: var(--font-heading);
}

.section-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 16px;
  letter-spacing: -0.3px;
}

.section-subtitle {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 700px;
}

.gradient-text {
  color: var(--accent);
}

.mono-text {
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* ========== 4. Layout ========== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.divider {
  height: 1px;
  background: var(--border);
  max-width: 1200px;
  margin: 0 auto;
}

/* ========== 5. Components ========== */

/* Cards */
.card {
  background: var(--white);
  border-radius: 12px;
  padding: 28px;
  border: 1px solid var(--border);
  transition: border-color 0.2s;
}

.card:hover {
  border-color: rgba(15, 118, 110, 0.25);
}

.card--clickable {
  cursor: pointer;
}

.card--full-height {
  height: 100%;
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--accent);
  color: var(--white);
  font-weight: 700;
  font-size: 14px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s;
  text-decoration: none;
}

.btn-primary:hover {
  background: var(--accent-hover);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--white);
  color: var(--text);
  font-weight: 700;
  font-size: 14px;
  border-radius: 8px;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  text-decoration: none;
}

.btn-secondary:hover {
  background: var(--bg-subtle);
  border-color: rgba(15, 118, 110, 0.25);
}

/* Badge */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  background: var(--accent-light);
  border: 1px solid #CCFBF1;
  color: var(--accent);
  margin-bottom: 20px;
}

/* Tag */
.tag {
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
}

.tag--amber {
  background: var(--accent-light);
  color: var(--accent);
}

/* New tag */
.new-tag {
  display: inline-flex;
  align-self: flex-start;
  padding: 3px 10px;
  border-radius: 12px;
  font-size: 10px;
  font-weight: 700;
  background: var(--accent-light);
  border: 1px solid #CCFBF1;
  color: var(--accent);
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}

/* Feature check */
.feature-check {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--text-secondary);
  padding: 5px 0;
}

.feature-check svg {
  color: var(--green);
  flex-shrink: 0;
}

/* Emergency item */
.emergency-item {
  border-left: 3px solid var(--accent);
  padding-left: 20px;
  margin-bottom: 20px;
}

.emergency-item h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.emergency-item p {
  font-size: 14px;
  color: var(--text-secondary);
}

/* Image placeholder */
.img-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-subtle);
  border-radius: 12px;
  border: 1px dashed var(--border);
  color: var(--text-muted);
  font-size: 13px;
  text-align: center;
  padding: 20px;
}

/* Pricing card */
.pricing-card {
  position: relative;
  background: var(--white);
  border-radius: 12px;
  padding: 36px;
  border: 1px solid var(--border);
  transition: border-color 0.2s;
}

.pricing-card:hover {
  border-color: rgba(15, 118, 110, 0.25);
}

.pricing-card--featured {
  border-color: var(--accent);
}

.pricing-card--featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent);
  border-radius: 12px 12px 0 0;
}

/* ========== 6. Navigation ========== */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--footer-bg);
  border-bottom: 1px solid rgba(245, 240, 232, 0.1);
  padding: 0 24px;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

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

.nav-logo img {
  height: 36px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  background: none;
  border: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: rgba(245, 240, 232, 0.7);
  cursor: pointer;
  padding: 6px 12px;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
  text-decoration: none;
  white-space: nowrap;
}

.nav-link:hover {
  color: var(--footer-text);
  background: rgba(245, 240, 232, 0.08);
}

.nav-link.active {
  color: var(--footer-text);
  font-weight: 700;
}

/* Mobile menu button */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--footer-text);
  cursor: pointer;
  padding: 8px;
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: absolute;
  top: 72px;
  left: 0;
  right: 0;
  background: var(--footer-bg);
  padding: 16px 24px;
  border-bottom: 1px solid rgba(245, 240, 232, 0.1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.mobile-menu.open {
  display: block;
}

.mobile-menu .nav-link {
  display: block;
  padding: 10px 0;
  width: 100%;
  text-align: left;
}

.mobile-menu .btn-primary {
  margin-top: 12px;
  width: 100%;
  justify-content: center;
}

/* ========== 7. Footer ========== */
.site-footer {
  background: var(--footer-bg);
  border-top: none;
  padding: 60px 24px 40px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand {
  max-width: 340px;
}

.footer-brand img {
  height: 32px;
  width: auto;
  margin-bottom: 16px;
}

.footer-brand-tagline {
  font-size: 14px;
  font-weight: 700;
  color: var(--footer-text);
  margin-bottom: 8px;
}

.footer-brand-desc {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(245, 240, 232, 0.7);
}

.footer-columns {
  display: flex;
  gap: 56px;
  flex-wrap: wrap;
}

.footer-column-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.5);
  margin-bottom: 16px;
}

.footer-link {
  display: block;
  font-size: 13px;
  color: rgba(245, 240, 232, 0.7);
  margin-bottom: 10px;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-link:hover {
  color: var(--footer-text);
}

.footer-bottom {
  border-top: 1px solid rgba(245, 240, 232, 0.15);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copyright {
  font-size: 12px;
  color: rgba(245, 240, 232, 0.45);
}

/* ========== 8. Page-Specific ========== */

/* Hero */
.hero {
  padding: 80px 24px;
  position: relative;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(19, 78, 74, 0.55);
  z-index: 1;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 2;
}

/* Hero text colors when video background is present */
.hero:has(.hero-video) .section-label {
  color: rgba(245, 240, 232, 0.8);
}

.hero:has(.hero-video) h1 {
  color: #FFFFFF;
}

.hero:has(.hero-video) .gradient-text {
  color: #F59E0B;
}

.hero:has(.hero-video) .hero-description {
  color: rgba(245, 240, 232, 0.75);
}

.hero:has(.hero-video) .hero-feature {
  color: rgba(245, 240, 232, 0.7);
}

.hero:has(.hero-video) .hero-feature svg {
  color: #F59E0B;
}

.hero:has(.hero-video) .btn-secondary {
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.5);
}

.hero:has(.hero-video) .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.7);
}

.hero-logo {
  height: 48px;
  width: auto;
  margin-bottom: 32px;
}

.hero h1 {
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 700;
  line-height: 1.12;
  color: var(--text);
  max-width: 800px;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}

.hero-description {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 620px;
  margin-bottom: 40px;
}

.hero-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-features {
  display: flex;
  gap: 28px;
  margin-top: 56px;
  flex-wrap: wrap;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-secondary);
  font-size: 13px;
}

.hero-feature svg {
  color: var(--accent);
}

/* Stats section */
.stats-card {
  text-align: center;
  padding: 44px 28px;
}

.stat-number {
  font-size: clamp(40px, 7vw, 64px);
  font-weight: 700;
  line-height: 1;
  color: var(--text);
  letter-spacing: -1px;
}

.stat-number--zero {
  color: var(--red);
}

.stat-label {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-top: 12px;
}

.stat-sublabel {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
}

/* Platform overview cards */
.platform-card-icon {
  color: var(--accent);
  margin-bottom: 14px;
}

.platform-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.platform-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-secondary);
}

/* Persona cards */
.persona-card-icon {
  color: var(--accent);
  margin-bottom: 14px;
}

.persona-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.persona-card p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.persona-card-cta {
  font-size: 13px;
  color: var(--accent);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* CTA section */
.cta-section {
  position: relative;
  background: var(--bg-subtle);
}

.cta-content {
  text-align: center;
  position: relative;
}

.cta-content h2 {
  font-size: clamp(28px, 4.5vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 24px;
}

.cta-description {
  font-size: 17px;
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.cta-note {
  margin-top: 16px;
  font-size: 13px;
  color: var(--text-muted);
}

/* Comparison table */
.comparison-table {
  background: var(--white);
  border-radius: 12px;
  padding: 32px;
  border: 1px solid var(--border);
  max-width: 700px;
}

.comparison-table-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.comparison-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-light);
}

.comparison-row:last-child {
  border-bottom: none;
}

.comparison-label {
  font-size: 13px;
  color: var(--text-secondary);
}

.comparison-good {
  font-size: 13px;
  color: var(--green);
  font-weight: 400;
}

.comparison-bad {
  font-size: 13px;
  color: var(--red);
  opacity: 0.7;
}

/* Full-width comparison (fundraising) */
.comparison-table--full {
  max-width: none;
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--border);
  overflow: hidden;
}

.comparison-table--full th,
.comparison-table--full td {
  padding: 14px 20px;
  text-align: left;
  font-size: 14px;
  border-bottom: 1px solid var(--border-light);
}

.comparison-table--full th {
  font-weight: 700;
  color: var(--text);
  font-size: 13px;
}

.comparison-table--full td {
  color: var(--text-secondary);
}

.comparison-table--full tbody tr:last-child td {
  border-bottom: none;
}

.comparison-col--green {
  color: var(--green) !important;
  font-weight: 400;
}

.comparison-col--muted {
  color: var(--text-muted) !important;
}

.comparison-table--full .comparison-row {
  grid-template-columns: 1.4fr 1fr 1fr;
}

.comparison-header {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
  font-weight: 700;
}

/* Timeline */
.timeline-item {
  display: flex;
  gap: 20px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-light);
}

.timeline-item:last-child {
  border-bottom: none;
}

.timeline-time {
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  min-width: 70px;
  letter-spacing: 0.5px;
}

.timeline-event {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
}

.timeline-detail {
  font-size: 13px;
  color: var(--text-secondary);
}

/* Privacy info cards */
.privacy-info-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

.privacy-info-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-secondary);
}

/* Feature cards (warehouse page) */
.feature-card-icon {
  color: var(--accent);
  margin-bottom: 12px;
}

.feature-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.feature-card-outcome {
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 14px;
  letter-spacing: 0.5px;
}

.feature-card p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

/* Stories / carousel */
.carousel-container {
  position: relative;
}

.carousel-card {
  min-height: 260px;
}

.carousel-meta {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 20px;
}

.carousel-date {
  font-size: 13px;
  color: var(--text-muted);
}

.carousel-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
  line-height: 1.3;
}

.carousel-excerpt {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.carousel-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 24px;
}

.carousel-btn {
  background: none;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px;
  cursor: pointer;
  color: var(--text);
  display: flex;
  transition: border-color 0.2s;
}

.carousel-btn:hover {
  border-color: rgba(15, 118, 110, 0.25);
}

.carousel-indicator {
  font-size: 13px;
  color: var(--text-muted);
}

/* Story cards grid */
.story-card {
  text-decoration: none;
  display: block;
}

.story-card-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
}

.story-card-date {
  font-size: 12px;
  color: var(--text-muted);
}

.story-card h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1.3;
}

.story-card p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-secondary);
}

/* About page */
.about-value h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 12px;
}

.about-value p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-secondary);
}

/* Contact page */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: flex-start;
}

.contact-info h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.contact-email {
  font-size: 15px;
  color: var(--accent);
  text-decoration: none;
}

.contact-demo-text {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 12px;
}

.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-form .form-group {
  margin-bottom: 16px;
}

.contact-form label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}

.contact-form .form-required {
  color: var(--red);
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 10px 14px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-secondary);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  transition: border-color 0.2s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.contact-form select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%234A7C78' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.contact-form textarea {
  resize: vertical;
  min-height: 100px;
}

.contact-form .form-note {
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
  margin-top: 12px;
}

/* Privacy policy page */
.privacy-content {
  max-width: 800px;
}

.privacy-content h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-top: 36px;
  margin-bottom: 12px;
}

.privacy-content p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

/* Community highlight box */
.highlight-box {
  margin-top: 48px;
  padding: 28px 36px;
  border-radius: 12px;
  background: var(--accent-light);
  border: 1px solid #CCFBF1;
  text-align: center;
  font-size: 16px;
  color: var(--text-secondary);
}

.highlight-box strong {
  color: var(--text);
}

.highlight-box .highlight-accent {
  color: var(--accent);
  font-weight: 700;
}

/* Feature checks list (fundraising) */
.feature-checks {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Social proof bar */
.social-proof {
  padding: 28px 24px;
  background: var(--bg-subtle);
  border-bottom: 1px solid var(--border);
}

.social-proof-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.social-proof-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.social-proof-partner {
  display: flex;
  align-items: center;
  gap: 16px;
}

.social-proof-partner img {
  height: 40px;
  width: auto;
}

.social-proof-partner-name {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
}

.social-proof-partner-detail {
  font-size: 13px;
  color: var(--text-muted);
}

/* Testimonial + stat combo */
.testimonial-section {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 48px;
  align-items: center;
}

.testimonial-quote {
  position: relative;
  padding-left: 24px;
  border-left: 3px solid var(--accent);
}

.testimonial-quote p {
  font-family: var(--font-heading);
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 700;
  line-height: 1.35;
  color: var(--text);
}

.testimonial-attribution {
  margin-top: 20px;
  font-size: 14px;
  color: var(--text-secondary);
}

.testimonial-attribution strong {
  color: var(--text);
  display: block;
  font-weight: 700;
  margin-bottom: 2px;
}

.testimonial-stat {
  text-align: center;
  padding: 48px 32px;
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--border);
}

.testimonial-stat-number {
  font-family: var(--font-heading);
  font-size: clamp(48px, 8vw, 72px);
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}

.testimonial-stat-label {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin-top: 12px;
}

.testimonial-stat-sublabel {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
}

/* Product screenshot */
.product-screenshot {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}

.product-screenshot img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}

.product-screenshot-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.product-screenshot-placeholder {
  width: 100%;
  height: 400px;
  background: var(--footer-bg);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--footer-text);
  font-size: 15px;
  gap: 8px;
}

.product-screenshot-placeholder span {
  font-size: 12px;
  opacity: 0.6;
}

/* Asymmetric persona grid */
.persona-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  grid-template-rows: auto auto;
  gap: 24px;
}

.persona-primary {
  grid-row: 1 / 3;
}

.persona-callout {
  grid-column: 1 / -1;
  background: var(--accent-light);
  border: 1px solid #CCFBF1;
  border-left: 4px solid var(--accent);
  border-radius: 12px;
  padding: 32px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.persona-callout-icon {
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.persona-callout h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.persona-callout p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-secondary);
}

.persona-callout .persona-card-cta {
  margin-top: 12px;
}

/* Social reinforcement line */
.cta-social-line {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

/* ========== 9. Animations ========== */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========== 10. Responsive ========== */
@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

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

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: clamp(28px, 8vw, 48px);
  }

  .hero-features {
    gap: 16px;
  }

  .hero-logo {
    height: 40px;
  }

  .section {
    padding: 48px 16px;
  }

  .comparison-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .comparison-table {
    padding: 24px;
  }

  .comparison-table--full .comparison-row {
    grid-template-columns: 1fr;
  }

  .footer-columns {
    gap: 32px;
  }

  .footer-top {
    gap: 32px;
  }

  .carousel-card {
    padding: 32px 24px;
  }

  .testimonial-section {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .persona-grid {
    grid-template-columns: 1fr;
  }

  .persona-primary {
    grid-row: auto;
  }

  .persona-callout {
    flex-direction: column;
  }

  .product-screenshot {
    grid-template-columns: 1fr;
  }

  .process-step {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 32px 0;
  }

  .process-step:nth-child(even) .process-step-text {
    order: 0;
  }

  .process-step:nth-child(even) .process-step-image {
    order: 0;
  }

  .social-proof-inner {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .social-proof-partner {
    flex-direction: column;
    gap: 8px;
  }
}

/* ========== Process Flow ========== */
.process-flow {
  margin-top: 48px;
}

.process-step {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 48px 0;
  border-bottom: 1px solid var(--border-light);
}

.process-step:last-child {
  border-bottom: none;
}

.process-step:nth-child(even) .process-step-text {
  order: 2;
}

.process-step:nth-child(even) .process-step-image {
  order: 1;
}

.process-step-number {
  font-family: var(--font-heading);
  font-size: 56px;
  font-weight: 700;
  color: rgba(15, 118, 110, 0.12);
  line-height: 1;
  margin-bottom: 8px;
}

.process-step h3 {
  font-family: var(--font-heading);
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.3;
}

.process-step p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 16px;
}

.process-step-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
}

.process-step-cta:hover {
  color: var(--accent-hover);
}

.process-step-image {
  border-radius: 12px;
  overflow: hidden;
  background: var(--bg-subtle);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-step-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.process-step-image-placeholder {
  text-align: center;
  padding: 24px;
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.6;
}

.process-step-image-placeholder svg {
  display: block;
  margin: 0 auto 12px;
  opacity: 0.4;
}

/* Utility - page top offset for fixed nav */
.page-content {
  padding-top: 72px;
}

/* Background section variant */
.bg-navy-light {
  background: var(--bg-subtle);
}
