/* ═══════════════════════════════════════════
   PRESENT MY OFFER - V4 STYLES
   Clean. Modern. Professional.
   ═══════════════════════════════════════════ */

:root {
  /* Primary Colors */
  --primary: #035FE3;
  --primary-dark: #024CB6;
  --primary-light: #D9E7FB;

  /* Dark Blue Gradient (for section backgrounds) */
  --gradient-dark: #002e73;
  --gradient-light: #035FE3;

  /* Core Neutrals */
  --dark: #080808;
  --dark-soft: #374151;
  --gray: #6B7280;
  --gray-light: #9CA3AF;
  --cream: #F5F7FB;
  --white: #FFFFFF;
  --border: #E5E7EB;

  /* Accent */
  --accent: #D9E7FB;

  /* Status Colors */
  --success: #15803D;
  --success-bg: #DCFCE7;
  --warning: #B45309;
  --warning-bg: #FEF3C7;
  --error: #B91C1C;
  --error-bg: #FEE2E2;
  --neutral: #475569;
  --neutral-bg: #F1F5F9;

  /* Typography */
  --font: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;

  /* Text Colors */
  --text-heading: #080808;
  --text-body: #374151;
  --text-muted: #6B7280;
  --text-link: var(--primary);
  --primary-active: #0247AA;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--white);
  color: var(--text-body);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection {
  background: var(--primary);
  color: white;
}

/* ═══════════════════════════════════════════
   TYPOGRAPHY
   ═══════════════════════════════════════════ */
h1, h2, h3, h4, h5, h6 {
  color: var(--text-heading);
  line-height: 1.25;
}

h1 {
  font-size: 36px;
  font-weight: 700;
}

h2 {
  font-size: 28px;
  font-weight: 600;
}

h3 {
  font-size: 22px;
  font-weight: 600;
}

h4 {
  font-size: 18px;
  font-weight: 600;
}

p {
  color: var(--text-body);
  line-height: 1.6;
}

.text-muted {
  color: var(--text-muted);
}

.text-small {
  font-size: 13px;
  font-weight: 500;
}

a {
  color: var(--text-link);
}

/* Status Colors */
.text-success { color: var(--success); }
.text-warning { color: var(--warning); }
.text-error { color: var(--error); }
.text-neutral { color: var(--neutral); }

.bg-success { background-color: var(--success-bg); color: var(--success); }
.bg-warning { background-color: var(--warning-bg); color: var(--warning); }
.bg-error { background-color: var(--error-bg); color: var(--error); }
.bg-neutral { background-color: var(--neutral-bg); color: var(--neutral); }

/* Status Badges */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 13px;
  font-weight: 500;
}

.badge-success { background-color: var(--success-bg); color: var(--success); }
.badge-warning { background-color: var(--warning-bg); color: var(--warning); }
.badge-error { background-color: var(--error-bg); color: var(--error); }
.badge-neutral { background-color: var(--neutral-bg); color: var(--neutral); }

/* Dark Background Section - use on containers with gradient-dark/light backgrounds */
.dark-section,
.dark-section h1,
.dark-section h2,
.dark-section h3,
.dark-section h4,
.dark-section h5,
.dark-section h6 {
  color: #FFFFFF !important;
}

.dark-section p,
.dark-section li,
.dark-section span {
  color: rgba(255, 255, 255, 0.9);
}

/* Dark gradient sections - ensure all text is white */
.approach-section,
.approach-section * {
  color: #FFFFFF;
}

.approach-section h2,
.approach-section h3,
.approach-section h4,
.approach-card h3 {
  color: #FFFFFF !important;
}

.approach-section p,
.approach-card p {
  color: rgba(255, 255, 255, 0.85) !important;
}

/* ═══════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════ */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

nav.scrolled {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.nav-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1.25rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.logo img {
  height: 52px;
  width: auto;
}

.logo:hover {
  opacity: 0.7;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin-left: auto;
  margin-right: 2rem;
}

.nav-links > li {
  display: flex;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--dark);
  font-size: 1.05rem;
  font-weight: 600;
  position: relative;
  transition: color 0.3s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-links a:hover::after {
  width: 100%;
}

/* Nav Dropdowns */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  background: none;
  border: none;
  color: var(--dark);
  font-size: 1.05rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0;
  font-family: var(--font);
  transition: color 0.3s ease;
}

.nav-dropdown-toggle:hover {
  color: var(--primary);
}

.dropdown-arrow {
  font-size: 0.75rem;
  transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 13px rgba(0, 0, 0, 0.15);
  padding: 0.75rem 0;
  min-width: 180px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  margin-top: 0.75rem;
  list-style: none;
}

.nav-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid white;
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu li a {
  display: block;
  padding: 0.6rem 1.25rem;
  font-size: 0.95rem;
}

.nav-dropdown-menu li a::after {
  display: none;
}

.nav-dropdown-menu li a:hover {
  background: var(--cream);
}

/* Nav CTA Buttons */
.nav-cta-group {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-btn-demo,
.nav-btn-login,
.nav-btn-signup {
  padding: 0.6rem 1.4rem;
  border-radius: 100px;
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.nav-btn-demo {
  background: var(--dark);
  color: white;
  border: 2px solid var(--dark);
}

.nav-btn-demo:hover {
  background: var(--dark-soft);
  border-color: var(--dark-soft);
}

.nav-btn-login {
  background: transparent;
  color: var(--dark);
  border: 2px solid var(--dark);
}

.nav-btn-login:hover {
  color: var(--primary);
  border-color: var(--primary);
}

.nav-btn-signup {
  background: var(--primary);
  color: white;
  border: 2px solid var(--primary);
}

.nav-btn-signup:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  margin: 5px 0;
  transition: all 0.3s ease;
}

/* ═══════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background: var(--primary);
  color: white;
  border: 2px solid var(--primary);
  border-radius: 100px;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 12px rgba(3, 95, 227, 0.2);
  text-decoration: none;
  box-sizing: border-box;
  max-width: 100%;
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(3, 95, 227, 0.25);
}

.btn-primary svg {
  transition: transform 0.3s ease;
}

.btn-primary:hover svg {
  transform: translateX(4px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: transparent;
  color: var(--dark);
  border: 2px solid var(--dark);
  border-radius: 100px;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-secondary:hover {
  background: var(--dark);
  color: white;
}

/* ═══════════════════════════════════════════
   SECTIONS & CONTAINERS
   ═══════════════════════════════════════════ */
section {
  padding: 6rem 3rem;
}

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

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 5rem;
}

.section-label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--primary);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  text-align: center;
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--gray);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 3rem 6rem;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--white) 0%, var(--cream) 100%);
}

/* Grid pattern background */
.hero-grid-pattern {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    linear-gradient(rgba(3, 95, 227, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(3, 95, 227, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

/* Radial glow */
.hero-glow {
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 60%;
  background: radial-gradient(ellipse at center, rgba(3, 95, 227, 0.08) 0%, transparent 60%);
  pointer-events: none;
  animation: glowPulse 8s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.6; transform: translateX(-50%) scale(1); }
  50% { opacity: 1; transform: translateX(-50%) scale(1.05); }
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(-20px, 20px) rotate(2deg); }
  66% { transform: translate(20px, -20px) rotate(-2deg); }
}

.hero-inner {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 6rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 640px;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: white;
  padding: 0.5rem 1rem;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 2rem;
  box-shadow: 0 2px 20px rgba(3, 95, 227, 0.1);
  opacity: 0;
  animation: fadeUp 0.8s ease 0.2s forwards;
}

.hero-label::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.2); }
}

.hero h1 {
  font-family: var(--font);
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -2px;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.3s forwards;
}

.hero h1 span {
  color: var(--primary);
}

.hero-text {
  font-size: 1.2rem;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 520px;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.4s forwards;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.5s forwards;
}

.hero-note {
  margin-top: 2rem;
  font-size: 0.85rem;
  color: var(--gray-light);
  opacity: 0;
  animation: fadeUp 0.8s ease 0.6s forwards;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hero Visual - App Mockup */
.hero-visual {
  position: relative;
  opacity: 0;
  animation: fadeUp 0.8s ease 0.5s forwards;
}

.hero-card {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  box-shadow:
    0 25px 50px -15px rgba(0, 0, 0, 0.08),
    0 15px 30px -20px rgba(0, 0, 0, 0.1);
  transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
  transition: transform 0.5s ease;
}

.hero-card:hover {
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.hero-card-header {
  background: var(--dark);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-card-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.hero-card-dot:nth-child(1) { background: #ff5f57; }
.hero-card-dot:nth-child(2) { background: #ffbd2e; }
.hero-card-dot:nth-child(3) { background: #28ca41; }

.hero-card-url {
  margin-left: 1rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.4rem 1rem;
  border-radius: 6px;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  font-family: 'SF Mono', 'Monaco', 'Consolas', monospace;
}

.hero-card-body {
  padding: 0;
}

/* App Mockup Styles */
.app-mockup {
  background: var(--cream);
  min-height: 400px;
}

.app-mockup a,
.app-mockup button {
  pointer-events: none;
  cursor: default;
}

.app-btn-primary {
  background: var(--primary);
  color: white;
  border: none;
  padding: 0.4rem 0.9rem;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
}

.app-navbar {
  background: white;
  padding: 0.75rem 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border);
}

.app-logo {
  height: 28px;
  width: auto;
}

.app-nav-links {
  display: flex;
  gap: 1.5rem;
  font-size: 0.8rem;
  color: var(--gray);
}

.app-nav-links span {
  cursor: pointer;
  transition: color 0.2s;
}

.app-nav-links span:hover {
  color: var(--primary);
}

.app-user {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 500;
}

.app-avatar {
  width: 28px;
  height: 28px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
}

.app-content {
  padding: 1.25rem;
}

.app-welcome {
  background: white;
  border-radius: 12px;
  padding: 1.25rem;
  margin-bottom: 1rem;
  border: 1px solid var(--border);
}

.app-welcome h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.app-welcome p {
  font-size: 0.8rem;
  color: var(--gray);
}

.app-role-badge {
  display: inline-block;
  background: rgba(3, 95, 227, 0.1);
  color: var(--primary);
  padding: 0.2rem 0.6rem;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 600;
  margin-left: 0.5rem;
}

.app-section-title {
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.app-section-title a {
  font-size: 0.75rem;
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
}

.app-table {
  background: white;
  border-radius: 12px;
  border: 1px solid var(--border);
  overflow: hidden;
}

.app-table-header {
  display: grid;
  grid-template-columns: 2fr 1fr 0.75fr 0.75fr;
  background: var(--cream);
  padding: 0.6rem 1rem;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.app-table-row {
  display: grid;
  grid-template-columns: 2fr 1fr 0.75fr 0.75fr;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--border);
  font-size: 0.8rem;
  align-items: center;
  transition: background 0.2s;
}

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

.app-table-row:hover {
  background: var(--cream);
}

.app-property {
  font-weight: 500;
  color: var(--dark);
}

.app-property-sub {
  font-size: 0.7rem;
  color: var(--gray);
}

.app-price {
  font-weight: 600;
  color: var(--dark);
}

.app-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  padding: 0.25rem 0.6rem;
  border-radius: 100px;
  white-space: nowrap;
  width: fit-content;
  font-size: 0.7rem;
  font-weight: 600;
}

.app-badge-green {
  background: rgba(16, 185, 129, 0.1);
  color: #059669;
}

.app-badge-blue {
  background: rgba(3, 95, 227, 0.1);
  color: var(--primary);
}

.app-badge-yellow {
  background: rgba(245, 158, 11, 0.1);
  color: #d97706;
}

.app-badge-gray {
  background: var(--cream);
  color: var(--gray);
}

.app-btn {
  padding: 0.35rem 0.75rem;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 0.7rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.app-btn:hover {
  background: var(--primary-dark);
}

.app-btn-outline {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--dark);
}

.app-btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: transparent;
}

/* Floating elements */
.hero-float {
  position: absolute;
  background: white;
  padding: 1rem 1.25rem;
  border-radius: 16px;
  box-shadow: 0 5px 8px rgba(0, 0, 0, 0.1);
  animation: floatSmall 6s ease-in-out infinite;
}

.hero-float-1 {
  top: -20px;
  right: -30px;
  animation-delay: 0s;
}

.hero-float-2 {
  bottom: 60px;
  left: -40px;
  animation-delay: 2s;
}

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

.hero-float-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--gradient-dark), var(--gradient-light));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-bottom: 0.5rem;
}

.hero-float-text {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--dark);
}

.hero-float-sub {
  font-size: 0.75rem;
  color: var(--gray);
}

/* ═══════════════════════════════════════════
   HOW IT WORKS
   ═══════════════════════════════════════════ */
.how {
  padding: 8rem 3rem;
  background: white;
  position: relative;
}

.how::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gray-light), transparent);
  opacity: 0.3;
}

.how-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  position: relative;
}

.how-grid::before {
  content: '';
  position: absolute;
  top: 60px;
  left: 20%;
  right: 20%;
  height: 2px;
  background: linear-gradient(90deg, rgba(3, 95, 227, 0.1), var(--primary), rgba(3, 95, 227, 0.1));
  opacity: 0.3;
}

.how-step {
  text-align: center;
  position: relative;
  padding: 2rem;
}

.how-number {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--cream) 0%, white 100%);
  border: 2px solid rgba(3, 95, 227, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-family: var(--font);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary);
  position: relative;
  z-index: 1;
  transition: all 0.4s ease;
}

.how-step:hover .how-number {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
  transform: scale(1.1);
}

.how-step h3 {
  font-family: var(--font);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.how-step p {
  color: var(--gray);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════
   TRUST BAR
   ═══════════════════════════════════════════ */
.trust {
  padding: 4rem 3rem;
  background: var(--dark);
  color: white;
}

.trust-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}

.trust-text {
  font-family: var(--font);
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
}

.trust-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.trust-tag {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.6rem 1.2rem;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 500;
}

.trust-tag svg {
  color: var(--primary-light);
}

/* ═══════════════════════════════════════════
   FEATURES
   ═══════════════════════════════════════════ */
.features {
  padding: 8rem 3rem;
  background: var(--cream);
}

.features-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.feature-card {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  border: 1px solid transparent;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: linear-gradient(180deg, var(--primary), var(--primary-light));
  transition: height 0.4s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 5px 8px rgba(0, 0, 0, 0.1);
  border-color: rgba(3, 95, 227, 0.1);
}

.feature-card:hover::before {
  height: 100%;
}

.feature-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(3, 95, 227, 0.1) 0%, rgba(147, 183, 227, 0.1) 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--primary);
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
  background: var(--primary);
  color: white;
}

.feature-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #024CB6;
  margin-bottom: 0.5rem;
}

.feature-card h3 {
  font-family: var(--font);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.feature-card p {
  color: var(--gray);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════
   AUDIENCES (Agents & Brokers)
   ═══════════════════════════════════════════ */
.audience {
  padding: 5rem 3rem;
  position: relative;
  overflow: hidden;
}

.audience.alt {
  background: white;
}

.audience.reverse {
  background: var(--cream);
}

.audience-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.audience.reverse .audience-inner {
  direction: rtl;
}

.audience.reverse .audience-content {
  direction: ltr;
}

.audience.reverse .audience-visual {
  direction: ltr;
}

.audience-content h2 {
  font-family: var(--font);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 1.5rem;
}

.audience-content > p {
  font-size: 1.1rem;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.audience-list {
  list-style: none;
  margin-bottom: 2.5rem;
}

.audience-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.75rem 0;
  font-size: 1.05rem;
  color: var(--dark-soft);
}

.audience-list li svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--primary);
}

.audience-visual {
  position: relative;
}

.audience-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.06);
  padding: 2rem;
}

.audience-card-header {
  font-weight: 700;
  font-size: 1rem;
  color: var(--dark);
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--cream);
}

.audience-card-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.875rem 0;
  border-bottom: 1px solid var(--cream);
}

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

/* Audience Mockups (detailed app views) */
.audience-mockup {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 5px 8px rgba(0, 0, 0, 0.1);
  padding: 1.75rem;
  min-width: 380px;
}

.mockup-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid #eee;
}

.mockup-title {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.mockup-property {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--dark);
}

.mockup-subtitle {
  font-size: 0.85rem;
  color: var(--gray);
}

.mockup-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.mockup-price {
  font-weight: 700;
  font-size: 1rem;
  color: var(--dark);
}

.mockup-stats {
  display: flex;
  gap: 1.25rem;
}

.mockup-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.5rem 1rem;
  background: var(--bg);
  border-radius: 10px;
}

.mockup-stat-value {
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--primary);
}

.mockup-stat-label {
  font-size: 0.7rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.mockup-section-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--dark);
  margin-bottom: 1rem;
}

.mockup-link {
  font-size: 0.8rem;
  color: var(--primary);
  font-weight: 500;
  cursor: pointer;
}

/* Offer list mockup */
.mockup-offers {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.mockup-offer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  background: var(--bg);
  border-radius: 10px;
  transition: all 0.2s ease;
}

.mockup-offer:hover {
  background: #f0f4f8;
}

.mockup-offer-main {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.mockup-buyer {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--dark);
}

.mockup-agent {
  font-size: 0.8rem;
  color: var(--gray);
}

.mockup-offer-details {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.mockup-offer-price {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--dark);
}

/* Activity feed mockup */
.mockup-activity {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mockup-activity-row {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 0.875rem;
  background: var(--bg);
  border-radius: 10px;
  transition: all 0.2s ease;
}

.mockup-activity-row:hover {
  background: #f0f4f8;
}

.mockup-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
  flex-shrink: 0;
}

.mockup-activity-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.mockup-activity-main {
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--dark);
}

.mockup-activity-sub {
  font-size: 0.8rem;
  color: var(--gray);
}

.mockup-time {
  font-size: 0.75rem;
  color: var(--gray);
  flex-shrink: 0;
}

/* Broker table mockup */
.broker-mockup {
  min-width: 480px;
}

.broker-mockup a,
.broker-mockup button {
  pointer-events: none;
  cursor: default;
}

.mockup-btn {
  background: var(--primary);
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
}

.mockup-table {
  margin-top: 1rem;
}

.mockup-table-header {
  display: grid;
  grid-template-columns: 2fr 1.2fr 0.8fr 0.6fr 0.6fr;
  gap: 0.5rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid #eee;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gray);
}

.mockup-table-row {
  display: grid;
  grid-template-columns: 2fr 1.2fr 0.8fr 0.6fr 0.6fr;
  gap: 0.5rem;
  padding: 0.875rem 0;
  border-bottom: 1px solid #f0f0f0;
  align-items: center;
  font-size: 0.8rem;
}

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

.property-address {
  font-weight: 600;
  color: var(--dark);
  font-size: 0.85rem;
}

.property-city {
  font-size: 0.75rem;
  color: var(--gray);
  margin-top: 0.15rem;
}

.agent-name {
  font-weight: 500;
  color: var(--dark);
}

.agent-email {
  font-size: 0.7rem;
  color: var(--gray);
  margin-top: 0.1rem;
}

.col-price {
  font-weight: 600;
  color: var(--dark);
}

.offers-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: rgba(3, 95, 227, 0.1);
  color: var(--primary);
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 600;
}

.status-active {
  display: inline-block;
  padding: 0.25rem 0.6rem;
  background: #DCFCE7;
  color: #16A34A;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 600;
}

/* Agent listing mockup */
.agent-mockup {
  min-width: 500px;
}

.agent-mockup a,
.agent-mockup button {
  pointer-events: none;
  cursor: default;
}

.listing-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 1.25rem;
  background: white;
  border-radius: 12px;
  margin-bottom: 1rem;
  border: 1px solid #e2e8f0;
}

.listing-status-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.deactivate-link {
  font-size: 0.8rem;
  color: var(--gray);
  cursor: pointer;
}

.listing-address {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.25rem;
}

.listing-city {
  font-size: 0.85rem;
  color: var(--gray);
  margin-bottom: 0.75rem;
}

.listing-actions {
  display: flex;
  gap: 0.5rem;
}

.listing-btn-outline {
  padding: 0.5rem 1rem;
  background: white;
  border: 1px solid var(--dark);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--dark);
  cursor: pointer;
}

.listing-header-right {
  text-align: right;
}

.listing-price-label {
  font-size: 0.75rem;
  color: var(--gray);
  margin-bottom: 0.25rem;
}

.listing-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
}

.share-link-card {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 1rem 1.25rem;
  margin-bottom: 1rem;
}

.share-link-title {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.25rem;
}

.share-link-subtitle {
  font-size: 0.75rem;
  color: var(--gray);
  margin-bottom: 0.75rem;
}

.share-link-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.share-link-url {
  flex: 1;
  padding: 0.65rem 1rem;
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font-size: 0.8rem;
  color: var(--dark);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.copy-btn {
  padding: 0.65rem 1.25rem;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
}

.offers-card {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 1rem 1.25rem;
}

.offers-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.75rem;
}

.offers-table-header {
  display: grid;
  grid-template-columns: 1fr 1fr 0.7fr 0.85fr 0.7fr 0.5fr;
  gap: 0.5rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid #e2e8f0;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--gray);
}

.offers-table-row {
  display: grid;
  grid-template-columns: 1fr 1fr 0.7fr 0.85fr 0.7fr 0.5fr;
  gap: 0.5rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid #f0f0f0;
  align-items: center;
  font-size: 0.8rem;
  color: var(--dark);
}

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

.offers-table-row .col-price {
  font-weight: 600;
}

.offers-table-row .col-financing {
  color: var(--gray);
}

.offers-table-row .col-submitted {
  font-size: 0.75rem;
  color: var(--dark);
}

.offers-table-row .col-submitted .time {
  color: var(--gray);
  margin-top: 0.15rem;
}

.offers-table-row .col-contract {
  color: var(--gray);
}

.view-link {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
}

/* ═══════════════════════════════════════════
   CTA SECTION
   ═══════════════════════════════════════════ */
.cta {
  padding: 8rem 3rem;
  background: linear-gradient(135deg, var(--gradient-dark) 0%, var(--gradient-light) 100%);
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(circle at 20% 80%, rgba(255,255,255,0.1) 0%, transparent 50%),
                    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.08) 0%, transparent 50%);
  pointer-events: none;
}

.cta-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta h2,
.cta h3,
.cta h4 {
  font-family: var(--font);
  font-size: clamp(2.2rem, 5vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.5px;
  color: #FFFFFF !important;
  margin-bottom: 1.5rem;
}

.cta p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9) !important;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 2.5rem;
  background: white;
  color: var(--primary);
  border: none;
  border-radius: 100px;
  font-family: var(--font);
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 10px 13px rgba(0, 0, 0, 0.15);
  text-decoration: none;
}

.cta-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 13px rgba(0, 0, 0, 0.15);
}

/* Override btn-primary on ALL blue/dark gradient backgrounds */
.cta .btn-primary,
.features-cta .btn-primary,
.final-cta .btn-primary,
.why-pmo-section .btn-primary,
.about-mission .btn-primary,
.about-cta .btn-primary,
.about-visual .btn-primary,
.faq-cta .btn-primary,
.solution-section .btn-primary,
.approach-section .btn-primary,
.features-seller-highlight .btn-primary {
  background: white !important;
  color: var(--primary) !important;
  border-color: white !important;
}

.cta .btn-primary:hover,
.features-cta .btn-primary:hover,
.final-cta .btn-primary:hover,
.why-pmo-section .btn-primary:hover,
.about-mission .btn-primary:hover,
.about-cta .btn-primary:hover,
.about-visual .btn-primary:hover,
.faq-cta .btn-primary:hover,
.solution-section .btn-primary:hover,
.approach-section .btn-primary:hover,
.features-seller-highlight .btn-primary:hover {
  background: var(--cream) !important;
  color: var(--primary) !important;
  border-color: var(--cream) !important;
}

/* Override btn-secondary on ALL blue/dark gradient backgrounds */
.cta .btn-secondary,
.features-cta .btn-secondary,
.final-cta .btn-secondary,
.why-pmo-section .btn-secondary,
.about-mission .btn-secondary,
.about-cta .btn-secondary,
.about-visual .btn-secondary,
.faq-cta .btn-secondary,
.solution-section .btn-secondary,
.approach-section .btn-secondary,
.features-seller-highlight .btn-secondary {
  background: transparent !important;
  color: white !important;
  border-color: white !important;
}

.cta .btn-secondary:hover,
.features-cta .btn-secondary:hover,
.final-cta .btn-secondary:hover,
.why-pmo-section .btn-secondary:hover,
.about-mission .btn-secondary:hover,
.about-cta .btn-secondary:hover,
.about-visual .btn-secondary:hover,
.faq-cta .btn-secondary:hover,
.solution-section .btn-secondary:hover,
.approach-section .btn-secondary:hover,
.features-seller-highlight .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15) !important;
  color: white !important;
}

/* Final CTA Sections (embedded in PHP pages) */
.final-cta,
.features-cta {
  background: linear-gradient(135deg, var(--gradient-dark), var(--gradient-light)) !important;
}

.final-cta h2,
.final-cta h3,
.features-cta h2,
.features-cta h3 {
  color: #FFFFFF !important;
}

.final-cta p,
.features-cta p {
  color: rgba(255, 255, 255, 0.9) !important;
}

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */
footer {
  background: var(--dark);
  color: white;
  padding: 5rem 3rem 2rem;
}

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

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

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

.footer-logo {
  margin-bottom: 1rem;
}

.footer-logo img {
  height: 40px;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  color: var(--gray-light);
  line-height: 1.7;
  font-size: 0.95rem;
}

.footer-socials {
  display: flex;
  gap: 1rem;
  margin-top: 1.25rem;
}

.footer-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--gray-light);
  transition: all 0.2s ease;
}

.footer-socials a:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
}

.footer-socials svg {
  width: 18px;
  height: 18px;
}

.footer-col h4 {
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 1.5rem;
  color: white;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: var(--gray-light);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-light);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  color: var(--gray-light);
}

/* ═══════════════════════════════════════════
   MODAL
   ═══════════════════════════════════════════ */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.modal.active {
  display: flex;
}

.modal-content {
  background: white;
  border-radius: 24px;
  padding: 3rem;
  max-width: 500px;
  width: 100%;
  position: relative;
  animation: modalIn 0.3s ease;
  max-height: 90vh;
  overflow-y: auto;
}

@keyframes modalIn {
  from {
    opacity: 0;
    transform: scale(0.95) translateY(20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.modal-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: var(--cream);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.modal-close:hover {
  background: var(--dark);
  color: white;
}

.modal h2 {
  font-family: var(--font);
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.modal-subtitle {
  color: var(--gray);
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 2px solid var(--border);
  border-radius: 10px;
  font-family: var(--font);
  font-size: 1rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(3, 95, 227, 0.1);
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2364748B' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  cursor: pointer;
}

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

.form-submit {
  width: 100%;
  padding: 1rem;
  background: var(--primary);
  color: white;
  border: none;
  border-radius: 100px;
  font-family: var(--font);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.form-submit:hover {
  background: var(--primary-dark);
}

.form-submit:disabled {
  background: var(--gray-light);
  cursor: not-allowed;
}

/* ═══════════════════════════════════════════
   PAGE HEADERS - BOLD & DISTINCTIVE
   ═══════════════════════════════════════════ */
.page-header {
  padding: 12rem 3rem 6rem;
  background: white;
  color: var(--dark);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: none;
  display: none;
  background: none;
}

.page-header::after {
  display: none;
}

.page-header > * {
  position: relative;
  z-index: 1;
}

.page-header h1 {
  font-size: clamp(3rem, 7vw, 5rem);
  font-weight: 800;
  letter-spacing: -3px;
  line-height: 1;
  margin-bottom: 1.5rem;
  color: var(--dark);
}

.page-header p {
  font-size: 1.3rem;
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ═══════════════════════════════════════════
   PRICING - BOLD REDESIGN
   ═══════════════════════════════════════════ */
.pricing {
  padding: 6rem 3rem 8rem;
  background: var(--cream);
}

.pricing-toggle {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 4rem;
  background: white;
  padding: 0.5rem;
  border-radius: 14px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.toggle-btn {
  padding: 0.75rem 1.5rem;
  border: none;
  background: transparent;
  color: var(--gray);
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border-radius: 100px;
  transition: all 0.3s ease;
}

.toggle-btn.active {
  background: var(--dark);
  color: white;
}

.pricing-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.pricing-card {
  background: white;
  border-radius: 24px;
  padding: 2.5rem;
  border: 2px solid var(--border);
  transition: all 0.4s ease;
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 13px rgba(0, 0, 0, 0.15);
  border-color: var(--primary);
}

.pricing-card.featured {
  border-color: var(--primary);
  background: var(--dark);
  color: white;
  transform: scale(1.05);
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-8px);
}

.pricing-card.featured .pricing-desc,
.pricing-card.featured .pricing-price .period {
  color: var(--gray-light);
}

.pricing-card.featured .pricing-features li {
  color: rgba(255, 255, 255, 0.9);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: white;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pricing-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.pricing-price {
  margin: 1.5rem 0;
}

.pricing-price .amount {
  font-size: 3.5rem;
  font-weight: 800;
  letter-spacing: -3px;
}

.pricing-card.featured .pricing-price .amount {
  color: white;
}

.pricing-price .period {
  color: var(--gray);
  font-size: 1rem;
}

.pricing-desc {
  color: var(--gray);
  font-size: 0.95rem;
  margin-bottom: 2rem;
  min-height: 48px;
}

.pricing-features {
  list-style: none;
  margin-bottom: 2rem;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 0;
  font-size: 0.95rem;
  color: var(--dark-soft);
}

.pricing-features li svg {
  color: var(--primary);
  flex-shrink: 0;
}

.pricing-card.featured .pricing-features li svg {
  color: var(--primary-light);
}

.pricing-btn {
  width: 100%;
  padding: 1rem;
  border: 2px solid var(--primary);
  background: transparent;
  color: var(--primary);
  border-radius: 12px;
  font-family: var(--font);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.pricing-btn:hover {
  background: var(--primary);
  color: white;
}

.pricing-card.featured .pricing-btn {
  background: white;
  border-color: white;
  color: var(--dark);
}

.pricing-card.featured .pricing-btn:hover {
  background: var(--primary-light);
  border-color: var(--primary-light);
}

/* Pricing Page - New Card Grid */
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.pricing-card-new {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  border: 1px solid rgba(74, 111, 165, 0.1);
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.pricing-card-new::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.pricing-card-new:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(74, 111, 165, 0.2);
}

.pricing-card-new:hover::before {
  transform: scaleX(1);
}

.pricing-card-new.featured {
  border-color: var(--primary);
  box-shadow: 0 15px 40px rgba(3, 95, 227, 0.15);
}

.pricing-card-new.featured::before {
  transform: scaleX(1);
}

.card-header {
  text-align: center;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--cream);
  margin-bottom: 1.5rem;
}

.tier-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 1rem;
}

.tier-price {
  margin-bottom: 0.5rem;
}

.price-large {
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary);
}

.price-period {
  font-size: 1rem;
  color: var(--gray);
  font-weight: 500;
}

.tier-desc {
  font-size: 0.9rem;
  color: var(--gray);
}

.savings {
  color: var(--success);
  font-weight: 600;
}

.card-body {
  flex: 1;
  margin-bottom: 1.5rem;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--dark);
}

.feature-item svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.pricing-card-new .cta-btn {
  width: 100%;
  padding: 1rem;
  border-radius: 100px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid var(--primary);
  background: transparent;
  color: var(--primary);
  font-family: var(--font);
}

.pricing-card-new .cta-btn:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
}

.pricing-card-new .cta-btn.primary {
  background: var(--primary);
  color: white;
}

.pricing-card-new .cta-btn.primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
}

.pricing-footer {
  margin-top: 3rem;
  text-align: center;
}

.pricing-note {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: white;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  color: var(--dark);
  font-size: 0.95rem;
  border: 1px solid rgba(74, 111, 165, 0.1);
}

.toggle-label {
  font-weight: 600;
  color: var(--gray);
  margin-right: 0.5rem;
}

.save-badge {
  position: absolute;
  top: -10px;
  right: -10px;
  background: var(--success);
  color: white;
  font-size: 0.7rem;
  padding: 0.25rem 0.5rem;
  border-radius: 20px;
  font-weight: 700;
  white-space: nowrap;
}

/* ═══════════════════════════════════════════
   ABOUT PAGE - BOLD SECTIONS
   ═══════════════════════════════════════════ */
.about-container {
  max-width: 900px;
  margin: -60px auto 0;
  padding: 0 2rem 6rem;
  position: relative;
  z-index: 2;
}

.about-section {
  background: white;
  border-radius: 20px;
  padding: 2.5rem;
  margin-bottom: 2rem;
  border: 1px solid rgba(74, 111, 165, 0.08);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 5px 8px rgba(0, 0, 0, 0.1);
}

.about-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.about-section:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(74, 111, 165, 0.15);
  border-color: rgba(74, 111, 165, 0.15);
}

.about-section:hover::before {
  transform: scaleX(1);
}

.about-section h2 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: var(--dark);
  letter-spacing: -0.5px;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--primary);
}

.about-section p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--dark-soft);
  margin-bottom: 1rem;
}

.about-section p:last-child {
  margin-bottom: 0;
}

.about-section strong {
  font-weight: 600;
  color: var(--primary);
}

.about-mission {
  background: linear-gradient(135deg, var(--gradient-dark), var(--gradient-light));
  color: white;
  padding: 2.5rem;
  border-radius: 20px;
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 21, 53, 0.4);
}

.about-mission h2,
.about-mission h3,
.about-mission h4 {
  color: #FFFFFF !important;
}

.about-mission .content {
  position: relative;
  z-index: 1;
}

.about-mission p {
  font-size: 1.2rem;
  line-height: 1.8;
  margin: 0;
  color: white;
  opacity: 0.95;
}

.about-mission strong {
  color: white;
}

.commitment-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
}

.commitment-list li {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--dark-soft);
  margin-bottom: 0.75rem;
  padding-left: 2rem;
  position: relative;
}

.commitment-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
}

.about-cta {
  background: linear-gradient(135deg, var(--gradient-dark), var(--gradient-light));
  border-radius: 20px;
  padding: 2.5rem;
  margin-top: 2rem;
  border: none;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 5px 8px rgba(0, 0, 0, 0.1);
}

.about-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.about-cta:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(74, 111, 165, 0.15);
  border-color: rgba(74, 111, 165, 0.15);
}

.about-cta:hover::before {
  transform: scaleX(1);
}

.about-cta h2 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #FFFFFF !important;
}

.about-cta p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9) !important;
  margin-bottom: 1.5rem;
}

.about-info-box {
  background: var(--cream);
  padding: 1.25rem 1.5rem;
  border-radius: 12px;
  border-left: 4px solid var(--primary);
  margin: 1.5rem 0;
}

.about-info-box.warning {
  border-left-color: #D97706;
  background: #FEF3C7;
}

.about-info-box.success {
  border-left-color: #16A34A;
  background: #DCFCE7;
}

.about-info-box.error {
  border-left-color: #DC2626;
  background: #FEE2E2;
}

.about-info-box p {
  margin: 0;
  font-style: italic;
}

/* ═══════════════════════════════════════════
   LEGAL PAGES - BOLD EDITORIAL STYLE
   ═══════════════════════════════════════════ */
.legal-container {
  max-width: 900px;
  margin: -60px auto 0;
  padding: 0 2rem 6rem;
  position: relative;
  z-index: 2;
}

.legal-meta {
  background: white;
  border-radius: 16px;
  padding: 1.5rem 2rem;
  margin-bottom: 3rem;
  box-shadow: 0 5px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  gap: 2rem;
  font-size: 0.9rem;
  color: var(--gray);
}

.legal-meta strong {
  color: var(--dark);
}

.legal-section {
  background: white;
  border-radius: 20px;
  padding: 3rem;
  margin-bottom: 1.5rem;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
  position: relative;
}

.legal-section:hover {
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.06);
  border-color: rgba(3, 95, 227, 0.2);
}

.legal-section h2 {
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 1.5rem;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.legal-section h2::before {
  content: '';
  width: 4px;
  height: 100%;
  min-height: 28px;
  background: linear-gradient(180deg, var(--primary), var(--primary-light));
  border-radius: 2px;
}

.legal-section h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 2rem 0 1rem;
  color: var(--dark);
}

.legal-section p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--dark-soft);
  margin-bottom: 1rem;
}

.legal-section ul {
  margin: 1rem 0 1.5rem 1.5rem;
  line-height: 1.9;
}

.legal-section li {
  margin-bottom: 0.5rem;
  color: var(--dark-soft);
}

.legal-section strong {
  font-weight: 600;
  color: var(--primary);
}

.legal-section a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}

.legal-section a:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

.legal-warning {
  background: #FEF3C7;
  border-left: 4px solid #D97706;
  padding: 1.5rem 2rem;
  border-radius: 12px;
  margin: 1.5rem 0;
}

.legal-warning h3 {
  color: #92400E;
  margin-top: 0;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.legal-warning p {
  color: #78350F;
  margin-bottom: 0.5rem;
}

.legal-warning ul {
  margin: 1rem 0 0 1.5rem;
}

.legal-warning li {
  color: #78350F;
}

.legal-success {
  background: #DCFCE7;
  border-left: 4px solid #16A34A;
  padding: 1.5rem 2rem;
  border-radius: 12px;
  margin: 1.5rem 0;
}

.legal-success h3 {
  color: #166534;
  margin-top: 0;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.legal-success p,
.legal-success li {
  color: #166534;
}

.legal-error {
  background: #FEE2E2;
  border-left: 4px solid #DC2626;
  padding: 1.5rem 2rem;
  border-radius: 12px;
  margin: 1.5rem 0;
}

.legal-error h3 {
  color: #991B1B;
  margin-top: 0;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.legal-error p,
.legal-error li {
  color: #991B1B;
}

.legal-important {
  background: linear-gradient(135deg, rgba(3, 95, 227, 0.1) 0%, #DBEAFE 100%);
  border-left: 4px solid var(--primary);
  padding: 1.5rem 2rem;
  border-radius: 12px;
  margin: 1.5rem 0;
}

.legal-important h3 {
  color: var(--primary-dark);
  margin-top: 0;
  font-size: 1.1rem;
}

.legal-important p {
  color: var(--primary-dark);
  margin: 0;
  font-weight: 500;
}

.acceptable-box {
  background: #DCFCE7;
  border-left: 4px solid #16A34A;
  padding: 1.5rem 2rem;
  border-radius: 12px;
  margin: 1.5rem 0;
}

.acceptable-box h3 {
  color: #065F46;
  margin-top: 0;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.acceptable-box ul {
  margin: 0 0 0 1.5rem;
}

.acceptable-box li {
  color: #065F46;
}

.disclaimer-box {
  background: var(--cream);
  border-left: 4px solid var(--gray);
  padding: 1.5rem 2rem;
  border-radius: 12px;
  margin: 1.5rem 0;
}

.disclaimer-box p {
  font-size: 1rem;
  font-weight: 600;
  margin: 0;
  color: var(--dark);
}

/* ═══════════════════════════════════════════
   DOCUMENTATION - EDITORIAL STYLE
   ═══════════════════════════════════════════ */
.docs-container {
  max-width: 1200px;
  margin: -60px auto 0;
  padding: 0 2rem 6rem;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 3rem;
}

.docs-sidebar {
  position: sticky;
  top: 120px;
  align-self: start;
  background: white;
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 5px 8px rgba(0, 0, 0, 0.1);
  max-height: calc(100vh - 140px);
  overflow-y: auto;
}

.docs-sidebar h4 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray);
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}

.docs-sidebar ul {
  list-style: none;
}

.docs-sidebar li {
  margin-bottom: 0.25rem;
}

.docs-sidebar a {
  display: block;
  padding: 0.6rem 0.75rem;
  color: var(--dark-soft);
  text-decoration: none;
  font-size: 0.9rem;
  border-radius: 8px;
  transition: all 0.2s;
}

.docs-sidebar a:hover,
.docs-sidebar a.active {
  background: var(--cream);
  color: var(--primary);
  font-weight: 600;
}

.docs-content {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 5px 8px rgba(0, 0, 0, 0.1);
}

.docs-content h2 {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin: 1.5rem 0 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  color: var(--dark);
}

.docs-content h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.docs-content h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 1rem 0 0.5rem;
  color: var(--dark);
}

.docs-content p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--dark-soft);
  margin-bottom: 0.75rem;
}

.docs-content ul, .docs-content ol {
  margin: 0.5rem 0 0.75rem 1.5rem;
  line-height: 1.6;
  color: var(--dark-soft);
}

.docs-content li {
  margin-bottom: 0.25rem;
}

.docs-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.95rem;
}

.docs-content th {
  background: var(--dark);
  color: white;
  padding: 1rem;
  text-align: left;
  font-weight: 600;
}

.docs-content th:first-child {
  border-radius: 8px 0 0 0;
}

.docs-content th:last-child {
  border-radius: 0 8px 0 0;
}

.docs-content td {
  padding: 1rem;
  border-bottom: 1px solid var(--border);
}

.docs-content tr:hover td {
  background: var(--cream);
}

.docs-sidebar-inner {
  /* Content wrapper - no sticky needed, parent handles it */
}

.docs-nav-group {
  margin-bottom: 1.5rem;
}

.docs-nav-group:last-child {
  margin-bottom: 0;
}

.docs-nav-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gray);
  margin-bottom: 0.75rem;
  padding-left: 0.75rem;
}

.docs-nav-link {
  display: block;
  padding: 0.6rem 0.75rem;
  color: var(--dark-soft);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.2s;
  border-left: 2px solid transparent;
}

.docs-nav-link:hover {
  background: var(--cream);
  color: var(--primary);
}

.docs-nav-link.active {
  background: rgba(3, 95, 227, 0.08);
  color: var(--primary);
  font-weight: 600;
  border-left-color: var(--primary);
}

.docs-section {
  padding: 2.25rem;
  margin-bottom: 0;
  border-bottom: 1px solid var(--border);
}

.docs-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.docs-section h2 {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 0.75rem;
  color: var(--dark);
}

.docs-section h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 1.25rem 0 0.75rem;
  color: var(--dark);
}

.docs-section h4 {
  font-size: 1.05rem;
  font-weight: 600;
  margin: 1.5rem 0 0.75rem;
  color: var(--primary);
}

.docs-section p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--dark-soft);
  margin-bottom: 0.75rem;
}

.docs-section ul, .docs-section ol {
  margin: 0.5rem 0 0.75rem 1.5rem;
  line-height: 1.6;
  color: var(--dark-soft);
}

.docs-section li {
  margin-bottom: 0.5rem;
}

.docs-steps {
  counter-reset: step;
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.docs-steps li {
  position: relative;
  padding-left: 3.5rem;
  margin-bottom: 1.25rem;
  counter-increment: step;
  line-height: 1.7;
}

.docs-steps li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 2.25rem;
  height: 2.25rem;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}

.docs-callout {
  background: var(--cream);
  border-left: 4px solid var(--primary);
  border-radius: 0 12px 12px 0;
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
}

.docs-callout strong {
  display: block;
  color: var(--primary);
  margin-bottom: 0.5rem;
  font-weight: 700;
}

.docs-callout p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--dark-soft);
}

.docs-callout-tip {
  background: #DCFCE7;
  border-left-color: #16A34A;
}

.docs-callout-tip strong {
  color: #16A34A;
}

.docs-callout-warning {
  background: #FEF3C7;
  border-left-color: #D97706;
}

.docs-callout-warning strong {
  color: #D97706;
}

.docs-callout-error {
  background: #FEE2E2;
  border-left-color: #DC2626;
}

.docs-callout-error strong {
  color: #DC2626;
}

.docs-table-wrap {
  overflow-x: auto;
  margin: 1.5rem 0;
}

.docs-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.docs-table th {
  background: var(--dark);
  color: white;
  padding: 1rem;
  text-align: left;
  font-weight: 600;
}

.docs-table th:first-child {
  border-radius: 8px 0 0 0;
}

.docs-table th:last-child {
  border-radius: 0 8px 0 0;
}

.docs-table td {
  padding: 1rem;
  border-bottom: 1px solid var(--border);
}

.docs-table tr:hover td {
  background: var(--cream);
}

.docs-badge {
  display: inline-block;
  padding: 0.35rem 0.75rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.docs-badge-free {
  background: #f3f4f6;
  color: var(--gray);
}

.docs-badge-agent {
  background: rgba(3, 95, 227, 0.1);
  color: var(--primary);
}

.docs-badge-broker {
  background: rgba(3, 95, 227, 0.2);
  color: var(--primary-dark);
}

kbd {
  display: inline-block;
  background: var(--cream);
  padding: 0.25rem 0.6rem;
  border-radius: 6px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 0.85rem;
  border: 1px solid var(--border);
  box-shadow: 0 2px 0 var(--border);
}

.docs-tip {
  background: linear-gradient(135deg, rgba(3, 95, 227, 0.1) 0%, #DBEAFE 100%);
  border-radius: 12px;
  padding: 1.5rem;
  margin: 1.5rem 0;
}

.docs-tip strong {
  color: var(--primary);
  display: block;
  margin-bottom: 0.5rem;
}

.docs-tip p {
  margin: 0;
  color: var(--primary-dark);
}

/* ═══════════════════════════════════════════
   CONTACT PAGE - ASYMMETRIC LAYOUT
   ═══════════════════════════════════════════ */
.contact-section {
  padding: 0 3rem 6rem;
  background: var(--cream);
}

.contact-container {
  max-width: 1200px;
  margin: -100px auto 0;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 0;
  background: white;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 13px rgba(0, 0, 0, 0.15);
  border: 2px solid var(--primary);
}

.contact-info {
  background: var(--dark);
  color: white;
  padding: 4rem;
  display: flex;
  flex-direction: column;
}

.contact-info h2 {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 1rem;
  color: white;
}

.contact-info > p {
  color: var(--gray-light);
  line-height: 1.7;
  margin-bottom: 3rem;
}

.contact-methods {
  flex: 1;
}

.contact-method {
  margin-bottom: 2rem;
}

.contact-method h3 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: white;
  margin-bottom: 0.5rem;
}

.contact-method a {
  color: white;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
  transition: color 0.2s;
}

.contact-method a:hover {
  color: var(--primary-light);
}

.contact-method p {
  color: var(--gray-light);
  font-size: 0.9rem;
  margin-top: 0.25rem;
}

.contact-form-wrap {
  padding: 4rem;
}

.contact-form-wrap h2 {
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 0.5rem;
}

.contact-form-wrap > p {
  color: var(--gray);
  margin-bottom: 2rem;
}

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

/* ═══════════════════════════════════════════
   FAQ - ACCORDION STYLE
   ═══════════════════════════════════════════ */
.faq-container {
  max-width: 900px;
  margin: -60px auto 0;
  padding: 0 2rem 6rem;
  position: relative;
  z-index: 2;
}

.faq-nav {
  background: white;
  border-radius: 16px;
  padding: 1.5rem 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 5px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.faq-nav a {
  padding: 0.6rem 1.25rem;
  background: var(--cream);
  color: var(--dark-soft);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 100px;
  transition: all 0.2s;
}

.faq-nav a:hover {
  background: var(--primary);
  color: white;
}

.faq-section {
  margin-bottom: 3rem;
}

.faq-section h2 {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--dark);
  color: var(--dark);
}

.faq-item {
  background: white;
  border-radius: 16px;
  margin-bottom: 0.75rem;
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--primary);
}

.faq-question {
  padding: 1.5rem 2rem;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.2s;
}

.faq-question:hover {
  background: var(--cream);
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--primary);
  transition: transform 0.3s;
}

.faq-item.open .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 2rem 1.5rem;
  color: var(--gray);
  line-height: 1.8;
  display: none;
}

.faq-item.open .faq-answer {
  display: block;
}

.faq-answer ul {
  margin: 1rem 0 0 1.5rem;
  line-height: 1.8;
}

.faq-answer li {
  margin-bottom: 0.5rem;
}

.faq-answer a {
  color: var(--primary);
  text-decoration: none;
}

.faq-answer a:hover {
  text-decoration: underline;
}

.faq-cta {
  text-align: center;
  background: linear-gradient(135deg, var(--gradient-dark), var(--gradient-light));
  color: white;
  padding: 3rem;
  border-radius: 20px;
  margin-top: 2rem;
  box-shadow: 0 20px 50px rgba(0, 21, 53, 0.4);
}

.faq-cta h2,
.faq-cta h3,
.faq-cta h4 {
  color: #FFFFFF !important;
}

.faq-cta p {
  color: rgba(255, 255, 255, 0.9) !important;
}

.faq-cta h3 {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.faq-cta p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 1.5rem;
}

.faq-cta .btn {
  display: inline-block;
  padding: 1rem 2rem;
  background: white;
  color: var(--primary);
  border-radius: 100px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s ease;
}

.faq-cta .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 13px rgba(0, 0, 0, 0.15);
}

/* ═══════════════════════════════════════════
   ABOUT PAGE
   ═══════════════════════════════════════════ */
.about-hero {
  padding: 0 3rem 4rem;
  background: var(--cream);
}

.about-hero-inner {
  max-width: 900px;
  margin: -80px auto 0;
  position: relative;
  z-index: 2;
  background: white;
  border-radius: 24px;
  padding: 4rem;
  box-shadow: 0 10px 13px rgba(0, 0, 0, 0.15);
  text-align: center;
}

.about-hero-inner h2 {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 1.5rem;
}

.about-hero-inner p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--gray);
  max-width: 700px;
  margin: 0 auto;
}

.about-section {
  padding: 5rem 3rem;
}

.about-section.alt {
  background: white;
}

.about-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-content h2 {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 1.5rem;
}

.about-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--gray);
  margin-bottom: 1.5rem;
}

.about-list {
  list-style: none;
}

.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.75rem 0;
  font-size: 1.05rem;
  color: var(--dark-soft);
}

.about-list li svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--primary);
}

.about-visual {
  background: linear-gradient(135deg, var(--gradient-dark) 0%, var(--gradient-light) 100%);
  border-radius: 24px;
  padding: 3rem;
  color: white;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-visual h2,
.about-visual h3,
.about-visual h4,
.about-visual p {
  color: #FFFFFF !important;
}

.about-stat {
  text-align: center;
  padding: 1.5rem;
}

.about-stat-number {
  font-size: 4rem;
  font-weight: 800;
  letter-spacing: -3px;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.about-stat-label {
  font-size: 1rem;
  opacity: 0.85;
}

/* ═══════════════════════════════════════════
   FEATURES PAGE
   ═══════════════════════════════════════════ */
.features-hero {
  padding: 0 3rem 4rem;
  background: var(--cream);
}

.features-hero-inner {
  max-width: 1100px;
  margin: -80px auto 0;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.5rem;
}

.feature-hero-card {
  background: white;
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 5px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.feature-hero-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 13px rgba(0, 0, 0, 0.15);
}

.feature-hero-card.highlight {
  background: var(--dark);
  color: white;
}

.feature-hero-card.highlight h3 {
  color: white;
}

.feature-hero-card.highlight p {
  color: var(--gray-light);
}

.feature-hero-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.feature-hero-card p {
  color: var(--gray);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════
   CONTENT PAGES GENERIC
   ═══════════════════════════════════════════ */
.content-section {
  padding: 5rem 3rem;
  background: white;
}

.content-section.alt {
  background: var(--cream);
}

.content-grid {
  max-width: 900px;
  margin: 0 auto;
}

.content-grid h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  margin-top: 3rem;
}

.content-grid h2:first-child {
  margin-top: 0;
}

.content-grid p {
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.content-grid ul, .content-grid ol {
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.content-grid li {
  margin-bottom: 0.75rem;
}

/* Contact fallback */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  max-width: 1100px;
  margin: 0 auto;
}

.contact-info h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: white;
}

.contact-info p {
  color: var(--gray-light);
  margin-bottom: 2rem;
}

.contact-info a {
  color: white;
  text-decoration: none;
  font-weight: 600;
}

.contact-info a:hover {
  color: var(--primary-light);
}

.contact-form {
  background: white;
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.06);
}

/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  nav {
    padding: 0;
  }

  .nav-inner {
    padding: 1rem 1.5rem;
  }

  /* Hide CTA buttons on mobile */
  .nav-cta-group {
    display: none !important;
  }

  /* Mobile menu button */
  .mobile-toggle {
    display: block;
  }

  /* Mobile nav menu */
  .nav-links {
    display: none;
    position: fixed !important;
    top: 82px !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    height: calc(100vh - 82px);
    height: calc(100dvh - 82px);
    background: white;
    flex-direction: column;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    gap: 0;
    z-index: 999;
    overflow-y: auto;
    margin: 0 !important;
  }

  .nav-links.open {
    display: flex !important;
  }

  .nav-links > li {
    border-bottom: 1px solid var(--border);
  }

  .nav-links > li:last-child {
    border-bottom: none;
  }

  .nav-links > li > a {
    display: block;
    padding: 0.8rem 0;
    font-size: 1.1rem;
    color: var(--dark);
  }

  .nav-links a::after {
    display: none;
  }

  /* Mobile dropdowns */
  .nav-dropdown {
    border-bottom: 1px solid var(--border);
    display: flex;
    flex-direction: column;
  }

  .nav-dropdown-toggle {
    width: 100%;
    justify-content: center;
    padding: 0.8rem 0;
    font-size: 1.1rem;
    gap: 0.5rem;
    color: var(--dark);
  }

  .nav-dropdown-menu {
    position: static !important;
    transform: none !important;
    box-shadow: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    margin-top: 0 !important;
    margin-bottom: 0.5rem !important;
    padding: 0.5rem 0 !important;
    display: none;
    background: var(--cream) !important;
    border-radius: 8px !important;
    width: 100% !important;
    left: 0 !important;
    right: 0 !important;
    min-width: 100% !important;
  }

  .nav-dropdown-menu::before {
    display: none;
  }

  .nav-dropdown.open .nav-dropdown-menu {
    display: block;
  }

  .nav-dropdown.open .dropdown-arrow {
    transform: rotate(180deg);
  }

  .nav-dropdown-menu li {
    text-align: center !important;
    border-bottom: none !important;
  }

  .nav-dropdown-menu li a {
    padding: 0.75rem 1rem !important;
    font-size: 1rem !important;
    display: block !important;
    text-align: center !important;
    color: var(--dark) !important;
  }

  .nav-dropdown-menu li a::after {
    display: none !important;
    width: 0 !important;
  }

  .nav-dropdown-menu li a:hover {
    transform: none !important;
    margin: 0 !important;
    padding: 0.75rem 1rem !important;
    background: rgba(37,99,168,0.08);
  }

  /* Disable hover on mobile */
  .nav-dropdown:hover .nav-dropdown-menu {
    display: none;
  }

  .nav-dropdown.open:hover .nav-dropdown-menu {
    display: block;
  }

  .hero {
    padding: 7rem 2rem 5rem;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .hero-visual {
    max-width: 500px;
    margin: 0 auto;
  }

  .hero-card {
    transform: none;
  }

  .app-nav-links {
    display: none;
  }

  .app-property {
    font-size: 0.7rem;
  }

  .app-property-sub {
    font-size: 0.6rem;
  }

  .app-table-header {
    font-size: 0.55rem;
    padding: 0.4rem 0.6rem;
  }

  .app-table-row {
    padding: 0.5rem 0.6rem;
  }

  .app-price {
    font-size: 0.65rem;
  }

  .app-badge {
    font-size: 0.5rem;
    padding: 0.15rem 0.4rem;
  }

  .hero-float {
    display: none;
  }

  .how-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .how-grid::before {
    display: none;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .audience {
    padding: 4rem 1.5rem;
  }

  .audience-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .audience.reverse .audience-inner {
    direction: ltr;
  }

  .audience-content {
    overflow: hidden;
  }

  .audience-content .btn-primary {
    width: 100%;
    max-width: 100%;
  }

  .audience-mockup {
    min-width: auto;
    width: 100%;
  }

  .mockup-header {
    flex-direction: column;
    gap: 1rem;
  }

  .mockup-stats {
    width: 100%;
    justify-content: space-between;
  }

  .mockup-offer {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .mockup-offer-details {
    width: 100%;
    justify-content: space-between;
  }

  .broker-mockup {
    min-width: auto;
    overflow-x: hidden;
  }

  .mockup-table-header,
  .mockup-table-row {
    min-width: 0;
    font-size: 0.6rem;
    gap: 0.25rem;
  }

  .mockup-table-header {
    font-size: 0.55rem;
  }

  .property-address {
    font-size: 0.65rem;
  }

  .property-city,
  .agent-name,
  .agent-email {
    font-size: 0.55rem;
  }

  .mockup-title .mockup-property {
    font-size: 0.85rem;
  }

  .mockup-title .mockup-subtitle {
    font-size: 0.65rem;
  }

  .agent-mockup {
    min-width: auto;
    overflow-x: auto;
  }

  .listing-header {
    flex-direction: column;
    gap: 1rem;
  }

  .listing-header-right {
    text-align: left;
  }

  .offers-table-header,
  .offers-table-row {
    min-width: 0;
    font-size: 0.65rem;
    gap: 0.25rem;
  }

  .offers-table-row .col-submitted {
    font-size: 0.6rem;
  }

  .offers-table-row .col-price {
    font-size: 0.65rem;
  }

  .offers-table-row .col-financing {
    font-size: 0.6rem;
  }

  .status-active {
    font-size: 0.5rem;
    padding: 0.15rem 0.4rem;
  }

  .offers-title {
    font-size: 0.85rem;
  }

  .trust-inner {
    flex-direction: column;
    text-align: center;
  }

  .trust-tags {
    justify-content: center;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 450px;
  }

  .pricing-card.featured {
    transform: none;
  }

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

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

  .docs-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .docs-sidebar {
    position: static;
    max-height: none;
    order: -1;
  }

  .docs-sidebar-inner {
    /* No positioning needed */
  }

  .docs-nav-group {
    display: inline-block;
    margin-right: 1rem;
    margin-bottom: 0.5rem;
  }

  .docs-nav-label {
    display: none;
  }

  .docs-nav-link {
    display: inline-block;
    padding: 0.5rem 0.75rem;
    font-size: 0.85rem;
    margin-right: 0.25rem;
  }

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

  .features-hero-inner {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .footer-brand {
    grid-column: span 2;
    max-width: none;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

@media (max-width: 640px) {
  section {
    padding: 4rem 1.5rem;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .page-header {
    padding: 9rem 1.5rem 5rem;
  }

  .page-header h1 {
    font-size: 2.5rem;
    letter-spacing: -1.5px;
  }

  .legal-container,
  .docs-container,
  .faq-container {
    padding: 0 1.5rem 4rem;
    margin-top: -40px;
  }

  .legal-section,
  .docs-content {
    padding: 2rem;
  }

  .contact-container {
    margin-top: -60px;
  }

  .contact-info,
  .contact-form-wrap {
    padding: 2.5rem;
  }

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

  .faq-nav {
    padding: 1rem;
  }

  .faq-nav a {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
  }

  .about-hero-inner {
    padding: 2.5rem;
    margin-top: -40px;
  }

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

  .footer-brand {
    grid-column: span 1;
  }

  .modal-content {
    padding: 2rem 1.5rem;
  }
}

/* ═══════════════════════════════════════════
   SVG ICONS - Professional Icon Styling
   ═══════════════════════════════════════════ */

/* Icon container base - for icons in colored backgrounds */
.icon svg {
  width: 24px;
  height: 24px;
  stroke-width: 1.5;
  fill: none;
  stroke: currentColor;
}

/* Check container base */
.check svg,
span.check svg {
  width: 16px;
  height: 16px;
  stroke-width: 2;
  fill: none;
  stroke: currentColor;
}

/* Icon colors based on context */
.approach-card .icon svg {
  stroke: var(--primary);
}

.capability-card .icon svg {
  stroke: white;
}

.fit-card .icon svg {
  stroke: var(--primary);
}

.oversight-item .check svg {
  stroke: var(--primary);
}

/* Feature cards and other contexts */
.feature-card .icon svg,
.reality-card .icon svg,
.benefit-card .icon svg,
.solution-card .icon svg {
  stroke: var(--primary);
}

/* Market/geo page specific */
.market-feature .icon svg,
.stat-card .icon svg {
  stroke: var(--primary);
}

/* ═══════════════════════════════════════════
   LANDING PAGE STYLES
   Shared across: agents, brokers, fsbo, location pages
   ═══════════════════════════════════════════ */

/* Landing Hero */
.landing-hero,
.fsbo-hero,
.features-hero,
.pricing-hero {
  padding: 160px 2rem 80px;
  background: linear-gradient(180deg, white 0%, var(--bg) 100%);
  text-align: center;
}

.pricing-hero {
  padding-bottom: 0;
}

.landing-hero .container,
.fsbo-hero .container,
.features-hero .container {
  max-width: 900px;
  margin: 0 auto;
}

.features-hero .container {
  max-width: 800px;
}

.landing-hero h1,
.fsbo-hero h1,
.features-hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -2px;
  color: var(--dark);
  margin-bottom: 1.5rem;
}

.features-hero h1 {
  font-size: 3rem;
}

.landing-hero h1 span,
.fsbo-hero h1 span,
.features-hero h1 span {
  color: var(--primary);
}

.landing-hero .subheadline,
.fsbo-hero .subheadline,
.features-hero .subheadline {
  font-size: 1.35rem;
  color: var(--gray);
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto 2.5rem;
}

.features-hero .subheadline {
  font-size: 1.15rem;
  max-width: 580px;
  margin-bottom: 0;
}

.fsbo-hero .subheadline {
  max-width: 750px;
}

/* Hero Buttons */
.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-buttons .btn-primary {
  border-radius: 100px;
  padding: 1.1rem 2.5rem;
  background: var(--primary);
  color: white;
  border: none;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(37,99,168,0.3);
}

.hero-buttons .btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(37,99,168,0.4);
}

.hero-buttons .btn-secondary {
  border-radius: 100px;
  padding: 1.1rem 2.5rem;
  background: white;
  color: var(--primary);
  border: 2px solid var(--primary);
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-buttons .btn-secondary:hover {
  background: var(--bg);
  transform: translateY(-2px);
}

/* ═══════════════════════════════════════════
   SECTION STYLES
   ═══════════════════════════════════════════ */

/* Problem/Challenge Section */
.problem-section,
.challenge-section {
  padding: 5rem 2rem;
  background: white;
}

.problem-section .container,
.challenge-section .container {
  max-width: 1000px;
  margin: 0 auto;
}

.challenge-section h2 {
  font-size: 2.5rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 1rem;
  color: var(--dark);
  letter-spacing: -1px;
}

.section-intro {
  text-align: center;
  color: var(--gray);
  font-size: 1.15rem;
  margin-bottom: 3rem;
}

.problem-grid,
.challenge-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.problem-card,
.challenge-card {
  background: var(--bg);
  padding: 2rem;
  border-radius: 16px;
  border-left: 4px solid #ef4444;
}

.challenge-card {
  border-left-color: #f59e0b;
}

.problem-card h3,
.challenge-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.75rem;
}

.problem-card p,
.challenge-card p {
  color: var(--gray);
  font-size: 1rem;
  line-height: 1.6;
}

/* Seller Questions Box */
.seller-questions {
  background: var(--bg);
  padding: 2rem;
  border-radius: 16px;
  margin-top: 2rem;
  text-align: center;
}

.seller-questions h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 1rem;
}

.seller-questions .questions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.seller-questions .question {
  background: white;
  padding: 0.75rem 1.25rem;
  border-radius: 8px;
  color: var(--gray);
  font-style: italic;
  font-size: 0.95rem;
  border: 1px solid rgba(74,111,165,0.1);
}

/* ═══════════════════════════════════════════
   GRADIENT SECTIONS
   Solution, Approach cards on gradient backgrounds
   ═══════════════════════════════════════════ */

.solution-section,
.approach-section {
  padding: 5rem 2rem;
  background: linear-gradient(135deg, var(--gradient-dark), var(--gradient-light));
  color: white;
  position: relative;
  overflow: hidden;
}

.solution-section .container,
.approach-section .container {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.solution-section .section-title,
.approach-section .section-title {
  color: white;
}

.solution-section h2,
.approach-section h2 {
  font-size: 2.5rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 3rem;
  letter-spacing: -1px;
  color: white !important;
}

.solution-grid,
.approach-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.approach-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.solution-card,
.approach-card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  padding: 1.75rem;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.2);
}

.solution-card .icon,
.approach-card .icon {
  width: 48px;
  height: 48px;
  background: white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.solution-card .icon svg,
.approach-card .icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--primary);
  fill: none;
  stroke-width: 2;
}

.solution-card h3,
.approach-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: white !important;
}

.solution-card p,
.approach-card p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════
   FEATURE ITEMS & LISTS
   ═══════════════════════════════════════════ */

.features-section {
  padding: 5rem 2rem;
  background: white;
}

.features-section .container {
  max-width: 1000px;
  margin: 0 auto;
}

.features-section h2 {
  font-size: 2.5rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 3rem;
  color: var(--dark);
  letter-spacing: -1px;
}

.features-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.feature-item {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--bg);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.fsbo-page .feature-item {
  background: white;
}

.feature-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(74,111,165,0.1);
}

.feature-item .check {
  width: 32px;
  height: 32px;
  min-width: 32px;
  background: var(--primary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.feature-item .check svg {
  width: 18px;
  height: 18px;
  stroke: white;
  fill: none;
  stroke-width: 2.5;
}

.feature-item h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.25rem;
}

.feature-item p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.5;
}

/* ═══════════════════════════════════════════
   HOW IT WORKS / STEPS
   ═══════════════════════════════════════════ */

.how-section {
  padding: 5rem 2rem;
  background: var(--bg);
}

.fsbo-page .how-section {
  background: white;
}

.fsbo-page .benefits-section {
  background: white;
}

/* Reduce FSBO section spacing */
.fsbo-page section:not(.fsbo-hero) {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.how-section .container {
  max-width: 900px;
  margin: 0 auto;
}

.how-section h2 {
  font-size: 2.5rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 3rem;
  color: var(--dark);
  letter-spacing: -1px;
}

/* Vertical timeline steps (agents/brokers) */
.how-steps {
  position: relative;
  padding-left: 70px;
}

.how-steps::before {
  content: '';
  position: absolute;
  left: 25px;
  top: 25px;
  bottom: 25px;
  width: 3px;
  background: linear-gradient(180deg, var(--primary), var(--accent));
  border-radius: 2px;
}

.how-step {
  padding: 1.25rem 0;
  position: relative;
}

.how-step .step-number {
  width: 50px;
  height: 50px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 800;
  position: absolute;
  left: -70px;
  top: 1.25rem;
  z-index: 1;
  box-shadow: 0 0 0 6px var(--bg);
}

.how-step .step-content h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.how-step .step-content p {
  color: var(--gray);
  font-size: 1rem;
  line-height: 1.6;
}

/* Grid steps (FSBO) */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.step-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--bg);
  border-radius: 16px;
}

.step-card .step-number {
  width: 48px;
  height: 48px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.25rem;
  font-weight: 800;
  color: white;
}

.step-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.step-card p {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ═══════════════════════════════════════════
   WHY / FIT / BENEFITS CARDS
   ═══════════════════════════════════════════ */

.why-section,
.fit-section {
  padding: 5rem 2rem;
  background: white;
}

.why-section .container,
.fit-section .container {
  max-width: 1000px;
  margin: 0 auto;
}

.why-grid,
.fit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.why-card,
.fit-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--bg);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.why-card:hover,
.fit-card:hover {
  background: white;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

.why-card .icon,
.fit-card .icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--accent-light), var(--accent));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.why-card .icon svg,
.fit-card .icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--primary);
}

.why-card h3,
.fit-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.why-card p,
.fit-card p {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Benefits Section */
.benefits-section {
  padding: 5rem 2rem;
  background: var(--bg);
}

.benefits-section .container {
  max-width: 1000px;
  margin: 0 auto;
}

.benefits-section h2 {
  font-size: 2.5rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 3rem;
  color: var(--dark);
  letter-spacing: -1px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.benefit-card {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(74,111,165,0.1);
}

.benefit-card .icon {
  width: 56px;
  height: 56px;
  background: var(--accent);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.benefit-card .icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--primary);
  fill: none;
  stroke-width: 2;
}

.benefit-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.benefit-card p {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ═══════════════════════════════════════════
   FINAL CTA SECTIONS
   ═══════════════════════════════════════════ */

.final-cta,
.features-cta {
  padding: 5rem 2rem;
  background: linear-gradient(135deg, var(--gradient-dark), var(--gradient-light));
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta .container,
.features-cta .container {
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.final-cta h2,
.features-cta h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  letter-spacing: -1px;
  color: white !important;
}

.features-cta h2 {
  font-size: 2.25rem;
  margin-bottom: 0.75rem;
}

.final-cta p,
.features-cta p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.95);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.features-cta p {
  font-size: 1.05rem;
  opacity: 0.9;
  margin-bottom: 1.75rem;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* White button for blue backgrounds */
.btn-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: white !important;
  color: var(--primary) !important;
  border: none !important;
  border-radius: 100px;
  font-family: var(--font);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
  text-decoration: none;
  opacity: 1 !important;
}

.btn-white:hover {
  background: var(--cream) !important;
  color: var(--primary) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

/* Outline white button for blue backgrounds */
.btn-outline-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  background: transparent !important;
  color: white !important;
  border: 2px solid white !important;
  border-radius: 100px;
  font-family: var(--font);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  opacity: 1 !important;
}

.btn-outline-white:hover {
  background: rgba(255,255,255,0.15) !important;
  color: white !important;
  transform: translateY(-2px);
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ═══════════════════════════════════════════
   BROKERS PAGE SPECIFIC
   ═══════════════════════════════════════════ */

/* Capabilities Section */
.capabilities-section {
  padding: 5rem 2rem;
  background: white;
}

.capabilities-section .container {
  max-width: 1000px;
  margin: 0 auto;
}

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

.capability-card {
  background: var(--bg);
  padding: 2rem;
  border-radius: 16px;
  transition: all 0.3s ease;
}

.capability-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(74,111,165,0.1);
}

.capability-card .icon {
  width: 56px;
  height: 56px;
  background: var(--primary);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.capability-card .icon svg {
  width: 28px;
  height: 28px;
  stroke: white;
}

.capability-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.75rem;
}

.capability-card p {
  color: var(--gray);
  font-size: 1rem;
  line-height: 1.6;
}

.capability-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.capability-card ul li {
  color: var(--gray);
  font-size: 0.95rem;
  padding: 0.4rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.capability-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 600;
}

/* Oversight Section */
.oversight-section {
  padding: 5rem 2rem;
  background: var(--bg);
}

.oversight-section .container {
  max-width: 1000px;
  margin: 0 auto;
}

.oversight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.oversight-item {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background: white;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.oversight-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(74,111,165,0.1);
}

.oversight-item .check {
  width: 32px;
  height: 32px;
  min-width: 32px;
  background: var(--accent);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-dark);
}

.oversight-item h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.25rem;
}

.oversight-item p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.5;
}

/* ═══════════════════════════════════════════
   FEATURES PAGE SPECIFIC (REDESIGNED)
   ═══════════════════════════════════════════ */

/* Section Label */
.section-label {
  display: inline-block;
  background: var(--accent);
  color: var(--primary-dark);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.35rem 0.85rem;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.75rem;
}

.section-label.light {
  background: rgba(255,255,255,0.2);
  color: white;
}

/* Hero + Process Combined */
.features-hero-combined {
  padding: 140px 2rem 60px;
  background: linear-gradient(180deg, white 0%, var(--bg) 100%);
  text-align: center;
}

.features-hero-combined .container {
  max-width: 900px;
  margin: 0 auto;
}

.features-hero-content h1 {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -2px;
  color: var(--dark);
  margin-bottom: 1rem;
}

.features-hero-content h1 span {
  color: var(--primary);
}

.features-hero-content .subheadline {
  font-size: 1.35rem;
  color: var(--gray);
  margin-bottom: 2.5rem;
}

.process-steps-inline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  background: white;
  padding: 1.25rem 2rem;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  border: 1px solid var(--border);
}

.step-inline {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-align: left;
}

.step-num {
  width: 40px;
  height: 40px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.step-inline strong {
  display: block;
  font-size: 1rem;
  color: var(--dark);
  margin-bottom: 0.15rem;
}

.step-inline p {
  font-size: 0.9rem;
  color: var(--gray);
  margin: 0;
}

.step-divider {
  width: 40px;
  height: 2px;
  background: var(--border);
}

/* Dashboard Showcase Section */
.dashboard-showcase {
  padding: 5rem 2rem;
  background: linear-gradient(135deg, var(--gradient-dark), var(--gradient-light));
  overflow: hidden;
}

.dashboard-showcase .container {
  max-width: 1100px;
  margin: 0 auto;
}

.dashboard-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.dashboard-text .section-label {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1rem;
}

.dashboard-text h2 {
  font-size: 2.25rem;
  font-weight: 800;
  color: white;
  line-height: 1.2;
  letter-spacing: -1px;
  margin-bottom: 1rem;
}

.dashboard-text > p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.dashboard-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.dashboard-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
}

.dashboard-features li svg {
  width: 18px;
  height: 18px;
  stroke: white;
  stroke-width: 2.5;
  fill: none;
  flex-shrink: 0;
}

.dashboard-visual {
  position: relative;
}

.dashboard-frame {
  background: white;
  border-radius: 12px;
  box-shadow:
    0 25px 50px -15px rgba(0, 0, 0, 0.25),
    0 15px 30px -20px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.dashboard-frame:hover {
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
  box-shadow:
    0 35px 60px -15px rgba(0, 0, 0, 0.3),
    0 20px 40px -20px rgba(0, 0, 0, 0.25);
}

.dashboard-browser-bar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 1rem;
  background: var(--dark);
}

.browser-dots {
  display: flex;
  gap: 5px;
}

.browser-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.browser-dots span:first-child {
  background: #ff5f57;
}

.browser-dots span:nth-child(2) {
  background: #ffbd2e;
}

.browser-dots span:last-child {
  background: #28ca41;
}

.browser-url {
  flex: 1;
  text-align: center;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--font);
  background: rgba(255, 255, 255, 0.08);
  padding: 0.35rem 0.75rem;
  border-radius: 4px;
  margin-right: 50px;
}

.dashboard-image-wrap {
  line-height: 0;
}

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

@media (max-width: 1024px) {
  .dashboard-split {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .dashboard-text {
    text-align: center;
  }

  .dashboard-features {
    align-items: center;
  }
}

@media (max-width: 768px) {
  .dashboard-showcase {
    padding: 3rem 1.5rem;
  }

  .dashboard-text h2 {
    font-size: 2rem;
  }

  .dashboard-frame {
    border-radius: 10px;
  }

  .browser-dots span {
    width: 8px;
    height: 8px;
  }

  .browser-url {
    font-size: 0.7rem;
    margin-right: 30px;
  }
}

/* Features Agents Section - Split Layout */
.features-agents {
  padding: 3.5rem 2rem;
  background: var(--bg);
}

.features-agents .container {
  max-width: 1000px;
  margin: 0 auto;
}

.features-split {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 3rem;
  align-items: start;
}

.features-split-header h2 {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
  letter-spacing: -1px;
  margin-bottom: 1rem;
}

.features-split-header p {
  font-size: 1.1rem;
  color: var(--gray);
  line-height: 1.6;
}

.features-split-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.feature-compact {
  display: flex;
  gap: 0.85rem;
  padding: 1.25rem;
  background: white;
  border-radius: 12px;
  border: 1px solid var(--border);
  transition: all 0.2s ease;
}

.feature-compact:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  border-color: var(--primary-light);
}

.feature-compact svg {
  width: 28px;
  height: 28px;
  stroke: var(--primary);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
  margin-top: 2px;
}

.feature-compact strong {
  display: block;
  font-size: 1.05rem;
  color: var(--dark);
  margin-bottom: 0.25rem;
}

.feature-compact p {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.5;
  margin: 0;
}

/* Seller Highlight Section */
.features-seller-highlight {
  padding: 3rem 2rem;
  background: linear-gradient(135deg, var(--gradient-dark), var(--gradient-light));
}

.features-seller-highlight .container {
  max-width: 1000px;
  margin: 0 auto;
}

.seller-highlight-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
}

.seller-highlight-content h2 {
  font-size: 2.25rem;
  font-weight: 800;
  color: white;
  margin-bottom: 0.75rem;
}

.seller-highlight-content p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 1.25rem;
  max-width: 550px;
}

.seller-features-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.seller-features-row span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  color: rgba(255,255,255,0.95);
}

.seller-features-row svg {
  width: 18px;
  height: 18px;
  stroke: white;
  fill: none;
  stroke-width: 2.5;
}

.seller-highlight-badge {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  padding: 1.5rem 2rem;
  text-align: center;
  min-width: 200px;
}

.seller-highlight-badge svg {
  width: 32px;
  height: 32px;
  stroke: white;
  fill: none;
  stroke-width: 2;
  margin-bottom: 0.75rem;
}

.seller-highlight-badge strong {
  display: block;
  font-size: 1rem;
  color: white;
  margin-bottom: 0.25rem;
}

.seller-highlight-badge p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  margin: 0;
}

/* Brokers Section */
.features-brokers {
  padding: 3rem 2rem;
  background: white;
}

.features-brokers .container {
  max-width: 1000px;
  margin: 0 auto;
}

.broker-header {
  text-align: center;
  margin-bottom: 2rem;
}

.broker-header h2 {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -1px;
  margin-bottom: 0;
}

.broker-features-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.broker-feature {
  text-align: center;
  padding: 1.75rem 1.25rem;
  background: var(--bg);
  border-radius: 12px;
  transition: all 0.2s ease;
}

.broker-feature:hover {
  background: white;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.broker-feature svg {
  width: 32px;
  height: 32px;
  stroke: var(--primary);
  fill: none;
  stroke-width: 2;
  margin-bottom: 1rem;
}

.broker-feature strong {
  display: block;
  font-size: 1.05rem;
  color: var(--dark);
  margin-bottom: 0.4rem;
}

.broker-feature p {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.5;
  margin: 0;
}

/* Extras Strip */
.features-extras {
  padding: 2rem;
  background: var(--bg);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.features-extras .container {
  max-width: 900px;
  margin: 0 auto;
}

.extras-strip {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.extra-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: var(--gray);
}

.extra-item svg {
  width: 16px;
  height: 16px;
  stroke: var(--primary);
  fill: none;
  stroke-width: 2;
}

.extra-item span {
  font-weight: 500;
}

/* Features CTA - Compact */
.features-cta {
  padding: 4rem 2rem;
}

.features-cta .container {
  max-width: 600px;
}

.features-cta h2 {
  font-size: 2.5rem;
}

.features-cta p {
  font-size: 1.15rem;
  margin-bottom: 1.75rem;
}

/* Features Page Responsive */
@media (max-width: 900px) {
  .features-split {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .features-split-header {
    text-align: center;
  }

  .broker-features-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .seller-highlight-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .seller-highlight-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .seller-features-row {
    justify-content: center;
  }

  .seller-highlight-badge {
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .features-hero-combined {
    padding: 120px 1.5rem 40px;
  }

  .features-hero-content h1 {
    font-size: 2.25rem;
  }

  .features-split-header h2,
  .seller-highlight-content h2,
  .broker-header h2 {
    font-size: 1.75rem;
  }

  .process-steps-inline {
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
  }

  .step-divider {
    width: 2px;
    height: 20px;
  }

  .features-split-grid {
    grid-template-columns: 1fr;
  }

  .broker-features-row {
    grid-template-columns: 1fr;
    max-width: 300px;
    margin: 0 auto;
  }

  .extras-strip {
    gap: 1rem 1.5rem;
  }

  .features-agents,
  .features-seller-highlight,
  .features-brokers {
    padding: 2.5rem 1.5rem;
  }
}

.section-header-center {
  text-align: center;
}

.section-header-center .section-intro {
  margin-left: auto;
  margin-right: auto;
  max-width: 600px;
}

/* How It Works (Features page) */
.how-it-works {
  padding: 4.5rem 2rem;
  background: white;
}

.how-it-works .container {
  max-width: 900px;
  margin: 0 auto;
}

.how-it-works .section-header-center {
  margin-bottom: 3rem;
}

.how-it-works .section-title {
  font-size: 2rem;
  letter-spacing: -0.5px;
}

.how-it-works .section-intro {
  font-size: 1.05rem;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
  margin-top: 0.5rem;
}

.process-steps::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 15%;
  right: 15%;
  height: 2px;
  background: var(--border);
  z-index: 0;
}

.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.process-step .step-number {
  width: 72px;
  height: 72px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0 auto 1.25rem;
  box-shadow: 0 8px 24px rgba(37, 99, 168, 0.25);
  border: 4px solid white;
}

.process-step h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.process-step p {
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 260px;
  margin: 0 auto;
}

/* Feature Sections */
.feature-section {
  padding: 4.5rem 2rem;
}

.feature-section.alt {
  background: var(--bg);
}

.feature-section .container {
  max-width: 1000px;
  margin: 0 auto;
}

.feature-section-header {
  margin-bottom: 2.5rem;
}

.feature-section-header .section-title {
  text-align: left;
  font-size: 2rem;
  letter-spacing: -0.5px;
  margin-bottom: 0.75rem;
}

.feature-section-header .section-intro {
  text-align: left;
  max-width: 600px;
  font-size: 1.05rem;
  margin-bottom: 0;
}

.feature-section-header .section-label {
  margin-bottom: 0.5rem;
}

.feature-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.feature-card-new {
  background: white;
  border-radius: 16px;
  padding: 1.75rem;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.feature-section.alt .feature-card-new {
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  border-color: transparent;
}

.feature-card-new:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(74, 111, 165, 0.12);
  border-color: var(--primary-light);
}

.feature-card-new .icon {
  width: 48px;
  height: 48px;
  background: var(--accent);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.feature-card-new .icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--primary-dark);
  fill: none;
  stroke-width: 2;
}

.feature-card-new h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.4rem;
}

.feature-card-new p {
  color: var(--gray);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Highlight Feature */
.highlight-feature {
  background: linear-gradient(135deg, var(--gradient-dark), var(--gradient-light));
  border-radius: 20px;
  padding: 2.5rem;
  color: white;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: center;
  margin-bottom: 1.5rem;
}

.highlight-feature .highlight-content h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  letter-spacing: -0.5px;
  color: white !important;
}

.highlight-feature .highlight-content p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.9);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.highlight-feature .highlight-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.highlight-feature .highlight-list li {
  padding: 0.4rem 0;
  padding-left: 1.5rem;
  position: relative;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.95);
}

.highlight-feature .highlight-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: white;
  border-radius: 50%;
}

.highlight-feature .highlight-visual {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 1.5rem;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.highlight-visual-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 160px;
  text-align: center;
}

.highlight-visual-placeholder svg {
  width: 48px;
  height: 48px;
  stroke: white;
  fill: none;
  stroke-width: 1.5;
  margin-bottom: 0.75rem;
  opacity: 0.8;
}

.highlight-visual-placeholder span {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.8);
}

/* Core Feature */
.core-feature {
  background: var(--dark);
  border-radius: 16px;
  padding: 2rem 2.5rem;
  color: white;
  text-align: center;
}

.core-feature .icon {
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.core-feature .icon svg {
  width: 28px;
  height: 28px;
  stroke: white;
  fill: none;
  stroke-width: 2;
}

.core-feature h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: white !important;
}

.core-feature p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.65;
}

/* All Features Grid */
.all-features {
  padding: 4.5rem 2rem;
  background: white;
}

.all-features .container {
  max-width: 1000px;
  margin: 0 auto;
}

.all-features .section-header-center {
  margin-bottom: 2.5rem;
}

.all-features .section-title {
  font-size: 2rem;
  letter-spacing: -0.5px;
}

.all-features .section-intro {
  font-size: 1.05rem;
}

.all-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.mini-feature {
  padding: 1.25rem 1.5rem;
  border-radius: 12px;
  background: var(--bg);
  border: 1px solid transparent;
  transition: all 0.3s ease;
}

.mini-feature:hover {
  background: white;
  border-color: var(--border);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.mini-feature h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.35rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.mini-feature h4 svg {
  width: 18px;
  height: 18px;
  stroke: var(--primary);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
}

.mini-feature p {
  color: var(--gray);
  font-size: 0.85rem;
  line-height: 1.55;
  margin-bottom: 0;
}

/* ═══════════════════════════════════════════
   ABOUT PAGE SPECIFIC
   ═══════════════════════════════════════════ */

.about-container {
  max-width: 1000px;
  margin: -60px auto 4rem;
  padding: 0 2rem;
}

.about-content {
  background: white;
  border-radius: 24px;
  padding: 3.5rem 4rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.about-tagline-box {
  background: white;
  border-radius: 24px;
  padding: 3rem 4rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  margin-bottom: 2rem;
}

.about-tagline {
  font-size: 1.65rem;
  color: var(--dark);
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}

.about-tagline span {
  background: linear-gradient(120deg, var(--primary) 0%, #1e5a9e 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-main {
  padding: 1rem;
}

.about-main h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--dark);
  margin-top: 2.5rem;
  margin-bottom: 1.25rem;
}

.about-main h2:first-child {
  margin-top: 0;
}

.about-main p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--dark-soft);
  margin-bottom: 1rem;
}

.mission-box {
  background: var(--dark);
  color: white;
  padding: 2rem 2.5rem;
  border-radius: 16px;
  margin-top: 1.5rem;
}

.mission-box h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: white;
}

.mission-box p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 0;
}

.platform-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.platform-card {
  background: var(--cream);
  padding: 1.75rem;
  border-radius: 16px;
  transition: transform 0.2s ease;
}

.platform-card:hover {
  transform: translateY(-2px);
}

.platform-card .icon {
  width: 44px;
  height: 44px;
  background: white;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.platform-card .icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--primary);
}

.platform-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.platform-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--dark-soft);
  margin-bottom: 0;
}

.serve-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.serve-item {
  text-align: center;
  padding: 1.5rem 1rem;
  background: var(--cream);
  border-radius: 12px;
}

.serve-item .icon {
  width: 56px;
  height: 56px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.serve-item .icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--primary);
}

.serve-item h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.25rem;
}

.serve-item p {
  font-size: 0.85rem;
  color: var(--dark-soft);
  margin-bottom: 0;
}

.disclaimer-box {
  background: #FEF3C7;
  border-left: 4px solid #D97706;
  padding: 1.5rem 2rem;
  border-radius: 0 12px 12px 0;
  margin-top: 1rem;
}

.disclaimer-box p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

.about-cta {
  background: var(--dark);
  padding: 2.5rem;
  border-radius: 16px;
  text-align: center;
  margin-top: 2.5rem;
}

.about-cta h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: white;
  margin-bottom: 0.75rem;
}

.about-cta p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1.5rem;
}

.about-cta .cta-btn {
  background: white;
  color: var(--dark);
}

.about-cta .cta-btn:hover {
  background: var(--cream);
}

/* ═══════════════════════════════════════════
   FAQ PAGE SPECIFIC
   ═══════════════════════════════════════════ */

.faq-item {
  background: white;
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--primary-light);
}

.faq-question {
  padding: 1.25rem 1.5rem;
  font-weight: 600;
  color: var(--dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--primary);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.open .faq-question::after {
  content: '−';
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 500px;
  padding: 0 1.5rem 1.5rem;
}

.faq-answer p,
.faq-answer ul,
.faq-answer li {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.7;
}

.faq-answer ul {
  margin: 0.75rem 0;
  padding-left: 1.5rem;
}

.faq-answer li {
  margin-bottom: 0.5rem;
}

.faq-cta {
  background: linear-gradient(135deg, var(--gradient-dark), var(--gradient-light));
  border-radius: 16px;
  padding: 3rem;
  text-align: center;
  color: white;
  margin-top: 3rem;
}

.faq-cta h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.faq-cta p {
  opacity: 0.9;
  margin-bottom: 1.5rem;
}

.faq-cta .btn {
  display: inline-block;
  background: white;
  color: var(--primary);
  padding: 0.9rem 2rem;
  border-radius: 100px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}

.faq-cta .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* ═══════════════════════════════════════════
   PRICING PAGE SPECIFIC
   ═══════════════════════════════════════════ */

.pricing-hero h1 {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -2px;
  color: var(--dark);
  margin-bottom: 1rem;
}

.pricing-hero p {
  font-size: 1.2rem;
  color: var(--gray);
  max-width: 500px;
  margin: 0 auto;
}

.plan-type-toggle {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin: 2rem auto 0;
  max-width: 500px;
}

.plan-type-btn {
  flex: 1;
  padding: 1.25rem 2.5rem;
  border: 2px solid var(--border);
  background: white;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gray);
  cursor: pointer;
  border-radius: 100px;
  transition: all 0.3s ease;
}

.plan-type-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: white;
  box-shadow: 0 4px 15px rgba(37, 99, 168, 0.3);
}

.plan-type-btn:hover:not(.active) {
  border-color: var(--primary);
  color: var(--primary);
}

.pricing-divider {
  width: 100%;
  max-width: 600px;
  margin: 1.5rem auto 0;
  border: none;
  border-top: 1px solid var(--border);
}

.pricing-section {
  padding: 0 2rem 5rem;
  background: var(--bg);
}

.pricing-section .container {
  max-width: 1000px;
  margin: 0 auto;
}

.billing-toggle {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  margin: 1rem auto 3.5rem;
  background: #f3f4f6;
  border-radius: 100px;
  padding: 0.35rem;
}

.billing-toggle .toggle-btn {
  padding: 0.6rem 1.5rem;
  border: none;
  background: transparent;
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray);
  cursor: pointer;
  border-radius: 100px;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.billing-toggle .toggle-btn.active {
  background: var(--primary);
  color: white;
  box-shadow: 0 2px 8px rgba(3, 95, 227, 0.25);
}

.billing-toggle .toggle-btn .save-badge {
  position: static;
  display: inline-block;
  background: #DCFCE7;
  color: #16A34A;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.6rem;
  border-radius: 100px;
}

.plan-section {
  display: none;
}

.plan-section.active {
  display: block;
}

.agent-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 680px;
  margin: 0 auto;
}

.broker-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-card {
  background: white;
  border-radius: 20px;
  padding: 2rem 1.75rem;
  border: 2px solid var(--border);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  border-color: var(--primary-light);
  box-shadow: 0 10px 40px rgba(37, 99, 168, 0.1);
}

.pricing-card.featured {
  background: var(--dark);
  border-color: var(--dark);
  position: relative;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

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

.pricing-card.featured .tier-name,
.pricing-card.featured .price-large,
.pricing-card.featured .feature-item span {
  color: white;
}

.pricing-card.featured .price-period,
.pricing-card.featured .price-note {
  color: rgba(255, 255, 255, 0.7);
}

.pricing-card.featured .price-note .savings {
  color: var(--accent);
}

.pricing-card.featured .divider {
  background: rgba(255, 255, 255, 0.15);
}

.pricing-card.featured .feature-item svg circle {
  fill: rgba(255, 255, 255, 0.2);
}

.pricing-card.featured .feature-item svg path {
  stroke: white;
}

.pricing-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pricing-card .tier-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
}

.pricing-card .tier-name {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 1rem;
}

.pricing-card .price-row {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  margin-bottom: 0.5rem;
}

.pricing-card .price-large {
  font-size: 3rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1;
}

.pricing-card .price-period {
  font-size: 1rem;
  color: var(--gray);
  font-weight: 500;
}

.pricing-card .price-note {
  font-size: 0.9rem;
  color: var(--gray);
  margin-bottom: 1.5rem;
  min-height: 40px;
}

.pricing-card .price-note .savings {
  color: var(--primary);
  font-weight: 600;
}

.pricing-card .divider {
  height: 1px;
  background: var(--border);
  margin: 0 0 1.5rem;
}

.pricing-card .feature-list {
  flex-grow: 1;
  margin-bottom: 0;
}

.pricing-card .feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.25rem 0;
  font-size: 0.95rem;
  color: var(--dark);
  background: transparent;
}

.pricing-card .feature-item:hover {
  transform: none;
  box-shadow: none;
}

.pricing-card .feature-item svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.pricing-card .cta-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 1rem 1.5rem;
  border: none;
  border-radius: 100px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  background: var(--primary) !important;
  color: white !important;
  margin-top: 2rem;
}

.pricing-card .cta-btn:hover {
  background: var(--primary-dark) !important;
}

/* Featured pricing card - white button on dark background */
.pricing-card.featured .cta-btn {
  background: white !important;
  color: var(--primary) !important;
}

.pricing-card.featured .cta-btn:hover {
  background: var(--cream) !important;
  color: var(--primary) !important;
}

.contact-card {
  background: #080808;
  border-radius: 20px;
  padding: 3rem;
  color: white;
  text-align: center;
}

.contact-card h3 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  color: white !important;
}

.contact-card p {
  font-size: 1rem;
  color: white !important;
  margin-bottom: 1.5rem;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.contact-card .cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: white;
  color: #080808;
  border: none;
  border-radius: 100px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact-card .cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.pricing-footer {
  margin-top: 3rem;
  text-align: center;
}

.pricing-note {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: white;
  padding: 1rem 1.5rem;
  border-radius: 100px;
  font-size: 0.95rem;
  color: var(--gray);
  border: 1px solid var(--border);
}

/* ═══════════════════════════════════════════
   HOW IT WORKS PAGE
   ═══════════════════════════════════════════ */

.how-it-works-page {
  background: var(--bg);
}

.hiw-header {
  padding: 140px 2rem 60px;
  background: white;
  text-align: center;
}

.hiw-header .container {
  max-width: 700px;
  margin: 0 auto;
}

.hiw-header h1 {
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -1.5px;
  margin-bottom: 1rem;
}

.hiw-header p {
  font-size: 1.15rem;
  color: var(--gray);
  line-height: 1.6;
}

.hiw-section {
  padding: 2.5rem 2rem;
}

.hiw-section.alt {
  background: white;
}

.hiw-section.overview {
  background: linear-gradient(135deg, var(--gradient-dark), var(--gradient-light));
  color: white;
  padding: 4rem 2rem;
}

.hiw-section.overview h2 {
  color: white;
  font-size: 2rem;
  margin-bottom: 1.25rem;
}

.hiw-section.overview p {
  color: white !important;
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.hiw-section.overview p:last-child {
  margin-bottom: 0;
}

.hiw-section .container {
  max-width: 900px;
  margin: 0 auto;
}

.hiw-section h2 {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}

.hiw-section > .container > p {
  font-size: 1.05rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.hiw-intro {
  font-size: 1.05rem;
  color: var(--gray);
  margin-bottom: 2rem;
}

.hiw-box {
  background: white;
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  border: 1px solid var(--border);
}

.hiw-section.alt .hiw-box {
  background: var(--bg);
}

.hiw-box h2 {
  margin-bottom: 0.5rem;
}

.hiw-steps {
  margin-top: 2rem;
}

.hiw-step {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 1.75rem;
}

.hiw-step:last-child {
  margin-bottom: 0;
}

.hiw-step-num {
  width: 36px;
  height: 36px;
  min-width: 36px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
}

.hiw-step-content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.35rem;
}

.hiw-step-content p {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.6;
  margin: 0;
}

.hiw-note {
  margin-top: 2rem;
  padding: 1rem 1.25rem;
  background: var(--accent-light);
  border-left: 3px solid var(--primary);
  border-radius: 0 8px 8px 0;
  font-size: 0.95rem;
  color: var(--dark);
}

.hiw-note strong {
  color: var(--primary-dark);
}

.hiw-list {
  margin: 1.5rem 0;
  padding-left: 1.5rem;
}

.hiw-list li {
  font-size: 1rem;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 0.75rem;
}

.hiw-list li strong {
  color: var(--dark);
}

.hiw-list li:last-child {
  margin-bottom: 0;
}

.hiw-summary-list {
  margin: 1.5rem 0;
  padding-left: 1.5rem;
}

.hiw-summary-list li {
  font-size: 1.05rem;
  color: var(--dark);
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .hiw-header {
    padding: 120px 1.5rem 40px;
  }

  .hiw-header h1 {
    font-size: 2rem;
  }

  .hiw-section {
    padding: 2.5rem 1.5rem;
  }

  .hiw-section h2 {
    font-size: 1.5rem;
  }

  .hiw-box {
    padding: 1.5rem;
  }

  .hiw-step {
    gap: 1rem;
  }

  .hiw-step-num {
    width: 32px;
    height: 32px;
    min-width: 32px;
    font-size: 0.85rem;
  }
}

/* ═══════════════════════════════════════════
   LOCATION/GEO PAGES
   ═══════════════════════════════════════════ */

.boston-page,
.florida-page,
.connecticut-page, .ct-page,
.new-york-page, .ny-page,
.new-jersey-page, .nj-page,
.philadelphia-page, .philly-page,
.los-angeles-page, .la-page,
.milwaukee-page, .mke-page,
.fsbo-page {
  background: var(--bg);
  min-height: 100vh;
}

.boston-hero,
.florida-hero,
.connecticut-hero,
.ct-hero,
.new-york-hero,
.ny-hero,
.new-jersey-hero,
.nj-hero,
.philadelphia-hero,
.philly-hero,
.los-angeles-hero,
.la-hero,
.milwaukee-hero,
.mke-hero {
  padding: 160px 2rem 80px;
  background: linear-gradient(180deg, white 0%, var(--bg) 100%);
  text-align: center;
}

.boston-hero .container,
.florida-hero .container,
.connecticut-hero .container, .ct-hero .container,
.new-york-hero .container, .ny-hero .container,
.new-jersey-hero .container, .nj-hero .container,
.philadelphia-hero .container, .philly-hero .container,
.los-angeles-hero .container, .la-hero .container,
.milwaukee-hero .container, .mke-hero .container {
  max-width: 900px;
  margin: 0 auto;
}

.boston-hero h1,
.florida-hero h1,
.connecticut-hero h1, .ct-hero h1,
.new-york-hero h1, .ny-hero h1,
.new-jersey-hero h1, .nj-hero h1,
.philadelphia-hero h1, .philly-hero h1,
.los-angeles-hero h1, .la-hero h1,
.milwaukee-hero h1, .mke-hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -2px;
  color: var(--dark);
  margin-bottom: 1.5rem;
}

.boston-hero h1 span,
.florida-hero h1 span,
.connecticut-hero h1 span, .ct-hero h1 span,
.new-york-hero h1 span, .ny-hero h1 span,
.new-jersey-hero h1 span, .nj-hero h1 span,
.philadelphia-hero h1 span, .philly-hero h1 span,
.los-angeles-hero h1 span, .la-hero h1 span,
.milwaukee-hero h1 span, .mke-hero h1 span {
  color: var(--primary);
}

.boston-hero .subheadline,
.florida-hero .subheadline,
.connecticut-hero .subheadline, .ct-hero .subheadline,
.new-york-hero .subheadline, .ny-hero .subheadline,
.new-jersey-hero .subheadline, .nj-hero .subheadline,
.philadelphia-hero .subheadline, .philly-hero .subheadline,
.los-angeles-hero .subheadline, .la-hero .subheadline,
.milwaukee-hero .subheadline, .mke-hero .subheadline {
  font-size: 1.35rem;
  color: var(--gray);
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto 2.5rem;
}

/* ═══════════════════════════════════════════
   LANDING PAGE RESPONSIVE
   ═══════════════════════════════════════════ */

@media (max-width: 900px) {
  .highlight-feature {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .all-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .broker-cards {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

  .pricing-card.featured::before {
    top: -10px;
  }
}

@media (max-width: 768px) {
  .landing-hero,
  .fsbo-hero,
  .features-hero,
  .boston-hero,
  .florida-hero,
  .connecticut-hero, .ct-hero,
  .new-york-hero, .ny-hero,
  .new-jersey-hero, .nj-hero,
  .philadelphia-hero, .philly-hero,
  .los-angeles-hero, .la-hero,
  .milwaukee-hero, .mke-hero {
    padding: 120px 1.5rem 60px;
  }

  .landing-hero h1,
  .fsbo-hero h1,
  .features-hero h1,
  .boston-hero h1,
  .florida-hero h1,
  .connecticut-hero h1, .ct-hero h1,
  .new-york-hero h1, .ny-hero h1,
  .new-jersey-hero h1, .nj-hero h1,
  .philadelphia-hero h1, .philly-hero h1,
  .los-angeles-hero h1, .la-hero h1,
  .milwaukee-hero h1, .mke-hero h1 {
    font-size: 2.25rem;
    letter-spacing: -1px;
  }

  .landing-hero .subheadline,
  .fsbo-hero .subheadline,
  .features-hero .subheadline {
    font-size: 1.1rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-buttons .btn-primary,
  .hero-buttons .btn-secondary {
    width: 100%;
    max-width: 300px;
  }

  .challenge-section h2,
  .solution-section h2,
  .features-section h2,
  .how-section h2,
  .benefits-section h2,
  .final-cta h2,
  .features-cta h2 {
    font-size: 2rem;
  }

  .how-steps {
    padding-left: 55px;
  }

  .how-steps::before {
    left: 20px;
  }

  .how-step .step-number {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
    left: -55px;
  }

  .process-steps {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .process-steps::before {
    display: none;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-buttons .btn-white,
  .cta-buttons .btn-outline-white {
    width: 100%;
    max-width: 300px;
  }

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

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

  .highlight-feature {
    padding: 2rem;
  }

  .highlight-feature .highlight-content h3 {
    font-size: 1.4rem;
  }

  .all-features-grid {
    grid-template-columns: 1fr;
  }

  .pricing-hero {
    padding: 120px 1.5rem 40px;
  }

  .pricing-hero h1 {
    font-size: 2.25rem;
  }

  .agent-cards {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

  .billing-toggle {
    flex-wrap: wrap;
  }

  .contact-card {
    padding: 2rem;
  }

  .about-tagline-box {
    padding: 2rem 1.5rem;
  }

  .about-content {
    padding: 2rem 1.5rem;
  }

  .about-main {
    padding: 0.5rem;
  }

  .about-tagline {
    font-size: 1.35rem;
  }

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

  .serve-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .serve-grid {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════════════════
   GEOGRAPHIC PAGES (Boston, Florida, etc.)
   ═══════════════════════════════════════════ */

/* Why PMO Section */
.why-pmo-section {
  padding: 5rem 2rem;
  background: linear-gradient(135deg, var(--gradient-dark), var(--gradient-light));
}

.why-pmo-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

.why-pmo-section h2 {
  font-size: 2.5rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 3rem;
  color: white;
}

.why-pmo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.why-pmo-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
}

.why-pmo-card .icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.5rem;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-pmo-card .icon svg {
  width: 28px;
  height: 28px;
  stroke: white;
  fill: none;
  stroke-width: 2;
}

.why-pmo-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: white;
}

.why-pmo-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
}

/* Reality Section (Boston) */
.reality-section {
  padding: 5rem 2rem;
  background: var(--cream);
}

.reality-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

.reality-section h2 {
  font-size: 2.5rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 0.75rem;
  color: var(--dark);
}

.reality-section .section-intro {
  text-align: center;
  font-size: 1.2rem;
  color: var(--gray);
  margin-bottom: 3rem;
}

.reality-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.reality-card {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.reality-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--dark);
}

.reality-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--gray);
}

/* Challenges Section (Florida) */
.challenges-section {
  padding: 5rem 2rem;
  background: var(--cream);
}

.challenges-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

.challenges-section h2 {
  font-size: 2.5rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 0.75rem;
  color: var(--dark);
}

.challenges-section .section-intro {
  text-align: center;
  font-size: 1.2rem;
  color: var(--gray);
  margin-bottom: 3rem;
}

.challenges-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.challenges-grid .challenge-card {
  flex: 0 1 calc(33.333% - 1rem);
  min-width: 260px;
}

.challenge-card {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.challenge-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--dark);
}

.challenge-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--gray);
}

/* Complexity Section (Geo Pages) */
.complexity-section {
  padding: 5rem 2rem;
  background: var(--cream);
}

.complexity-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

.complexity-section h2 {
  font-size: 2.5rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 0.75rem;
  color: var(--dark);
}

.complexity-section .section-intro {
  text-align: center;
  font-size: 1.2rem;
  color: var(--gray);
  margin-bottom: 3rem;
}

.complexity-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.complexity-grid .complexity-item {
  flex: 0 1 calc(33.333% - 1rem);
  min-width: 180px;
}

.complexity-item {
  background: white;
  border-radius: 16px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.complexity-item .icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  background: var(--accent);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.complexity-item .icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--primary);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.complexity-item h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  margin: 0;
}

/* Use Cases Section */
.use-cases-section {
  padding: 5rem 2rem;
  background: white;
}

.use-cases-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

.use-cases-section h2 {
  font-size: 2.5rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 0.75rem;
  color: var(--dark);
}

.use-cases-section .section-intro {
  text-align: center;
  font-size: 1.2rem;
  color: var(--gray);
  margin-bottom: 3rem;
}

.use-cases-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.use-cases-grid .use-case-card {
  flex: 0 1 calc(33.333% - 1rem);
  min-width: 280px;
}

.use-case-card {
  background: var(--bg);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
}

.use-case-card .icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.25rem;
  background: var(--primary);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.use-case-card .icon svg {
  width: 26px;
  height: 26px;
  stroke: white;
  fill: none;
  stroke-width: 2;
}

.use-case-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--dark);
}

.use-case-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--gray);
}

/* Factors Section (Connecticut) */
.factors-section {
  padding: 5rem 2rem;
  background: var(--cream);
}

.factors-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

.factors-section h2 {
  font-size: 2.5rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 0.75rem;
  color: var(--dark);
}

.factors-section .section-intro {
  text-align: center;
  font-size: 1.2rem;
  color: var(--gray);
  margin-bottom: 3rem;
}

.factors-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.factors-grid .factor-item {
  flex: 0 1 calc(33.333% - 1rem);
  min-width: 180px;
}

.factor-item {
  background: white;
  border-radius: 16px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.factor-item .icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  background: var(--accent);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.factor-item .icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--primary);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.factor-item h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  margin: 0;
}

/* Value Section (Connecticut) */
.value-section {
  padding: 5rem 2rem;
  background: white;
}

.value-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

.value-section h2 {
  font-size: 2.5rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 3rem;
  color: var(--dark);
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.value-card {
  background: var(--bg);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
}

.value-card .icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.25rem;
  background: var(--primary);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.value-card .icon svg {
  width: 26px;
  height: 26px;
  stroke: white;
  fill: none;
  stroke-width: 2;
}

.value-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--dark);
}

.value-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--gray);
}

/* Workflow Section (New Jersey) */
.workflow-section {
  padding: 5rem 2rem;
  background: var(--cream);
}

.workflow-section .container {
  max-width: 800px;
  margin: 0 auto;
}

.workflow-section h2 {
  font-size: 2.5rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 0.75rem;
  color: var(--dark);
}

.workflow-section .section-intro {
  text-align: center;
  font-size: 1.2rem;
  color: var(--gray);
  margin-bottom: 3rem;
}

.workflow-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.workflow-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: white;
  padding: 1.25rem 1.5rem;
  border-radius: 12px;
  font-size: 1.05rem;
  color: var(--dark);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.workflow-item .check {
  width: 32px;
  height: 32px;
  background: var(--primary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.workflow-item .check svg {
  width: 18px;
  height: 18px;
  stroke: white;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Broker Section */
.broker-section {
  padding: 5rem 2rem;
  background: var(--cream);
}

.broker-section .container {
  max-width: 1000px;
  margin: 0 auto;
}

.broker-section h2 {
  font-size: 2.5rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 3rem;
  color: var(--dark);
}

.broker-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.broker-card {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.broker-card .icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.25rem;
  background: var(--primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.broker-card .icon svg {
  width: 28px;
  height: 28px;
  stroke: white;
  fill: none;
  stroke-width: 2;
}

.broker-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--dark);
}

.broker-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--gray);
}

.broker-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.9rem;
  color: var(--gray);
  display: inline-block;
  text-align: left;
}

.broker-card ul li {
  padding: 0.3rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.broker-card ul li::before {
  content: "✓";
  color: var(--primary);
  font-weight: 600;
  flex-shrink: 0;
}


/* Brokerage Section (alias for broker-section used in some geo pages) */
.brokerage-section {
  padding: 5rem 2rem;
  background: var(--cream);
}

.brokerage-section .container {
  max-width: 1000px;
  margin: 0 auto;
}

.brokerage-section h2 {
  font-size: 2.5rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 3rem;
  color: var(--dark);
}

.brokerage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.brokerage-card {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.brokerage-card .icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.25rem;
  background: var(--primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brokerage-card .icon svg {
  width: 28px;
  height: 28px;
  stroke: white;
  fill: none;
  stroke-width: 2;
}

.brokerage-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--dark);
}

.brokerage-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--gray);
}

/* Elements Section (New York offer elements) */
.elements-section {
  padding: 5rem 2rem;
  background: white;
}

.elements-section .container {
  max-width: 1000px;
  margin: 0 auto;
}

.elements-section h2 {
  font-size: 2.5rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 0.75rem;
  color: var(--dark);
}

.elements-section .section-intro {
  text-align: center;
  font-size: 1.2rem;
  color: var(--gray);
  margin-bottom: 3rem;
}

.elements-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.elements-grid .element-item {
  flex: 0 1 calc(33.333% - 1rem);
  min-width: 200px;
}

.element-item {
  background: var(--bg);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
}

.element-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.element-item .icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.25rem;
  background: var(--primary);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
}

.element-item .icon svg {
  width: 26px;
  height: 26px;
  stroke: white;
  fill: none;
  stroke-width: 2;
}

.element-item h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin: 0;
}


/* Who Section (Florida) */
.who-section {
  padding: 5rem 2rem;
  background: white;
}

.who-section .container {
  max-width: 1000px;
  margin: 0 auto;
}

.who-section h2 {
  font-size: 2.5rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 3rem;
  color: var(--dark);
}

.who-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.who-grid .who-card {
  flex: 0 1 calc(25% - 1.25rem);
  min-width: 200px;
}

.who-card {
  background: var(--bg);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  text-align: center;
}

.who-card .icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1.25rem;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.who-card .icon svg {
  width: 28px;
  height: 28px;
  stroke: white;
  fill: none;
  stroke-width: 2;
}

.who-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--dark);
}

.who-card p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--gray);
}

/* Features Section for Geo Pages and FSBO */
.florida-page .features-section,
.boston-page .features-section,
.connecticut-page .features-section, .ct-page .features-section,
.new-york-page .features-section, .ny-page .features-section,
.new-jersey-page .features-section, .nj-page .features-section,
.philadelphia-page .features-section, .philly-page .features-section,
.los-angeles-page .features-section, .la-page .features-section,
.milwaukee-page .features-section, .mke-page .features-section {
  padding: 5rem 2rem;
  background: var(--bg);
}

.fsbo-page .features-section {
  padding: 4rem 2rem;
  background: var(--cream);
}

.florida-page .features-section .container,
.boston-page .features-section .container,
.ct-page .features-section .container,
.ny-page .features-section .container,
.nj-page .features-section .container,
.philly-page .features-section .container,
.la-page .features-section .container,
.mke-page .features-section .container,
.fsbo-page .features-section .container {
  max-width: 1000px;
  margin: 0 auto;
}

.florida-page .features-section h2,
.boston-page .features-section h2,
.ct-page .features-section h2,
.ny-page .features-section h2,
.nj-page .features-section h2,
.philly-page .features-section h2,
.la-page .features-section h2,
.mke-page .features-section h2,
.fsbo-page .features-section h2 {
  font-size: 2.5rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 3rem;
  color: var(--dark);
}

.florida-page .features-list,
.boston-page .features-list,
.ct-page .features-list,
.ny-page .features-list,
.nj-page .features-list,
.philly-page .features-list,
.la-page .features-list,
.mke-page .features-list,
.fsbo-page .features-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.florida-page .feature-item,
.boston-page .feature-item,
.ct-page .feature-item,
.ny-page .feature-item,
.nj-page .feature-item,
.philly-page .feature-item,
.la-page .feature-item,
.mke-page .feature-item,
.fsbo-page .feature-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.florida-page .feature-item .check,
.boston-page .feature-item .check,
.ct-page .feature-item .check,
.ny-page .feature-item .check,
.nj-page .feature-item .check,
.philly-page .feature-item .check,
.la-page .feature-item .check,
.mke-page .feature-item .check,
.fsbo-page .feature-item .check {
  width: 32px;
  height: 32px;
  min-width: 32px;
  background: var(--primary);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.florida-page .feature-item .check svg,
.boston-page .feature-item .check svg,
.ct-page .feature-item .check svg,
.ny-page .feature-item .check svg,
.nj-page .feature-item .check svg,
.philly-page .feature-item .check svg,
.la-page .feature-item .check svg,
.mke-page .feature-item .check svg,
.fsbo-page .feature-item .check svg {
  width: 18px;
  height: 18px;
  stroke: white;
  fill: none;
  stroke-width: 3;
}

.florida-page .feature-item h3,
.boston-page .feature-item h3,
.ct-page .feature-item h3,
.ny-page .feature-item h3,
.nj-page .feature-item h3,
.philly-page .feature-item h3,
.la-page .feature-item h3,
.mke-page .feature-item h3,
.fsbo-page .feature-item h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  color: var(--dark);
}

.florida-page .feature-item p,
.boston-page .feature-item p,
.ct-page .feature-item p,
.ny-page .feature-item p,
.nj-page .feature-item p,
.philly-page .feature-item p,
.la-page .feature-item p,
.mke-page .feature-item p,
.fsbo-page .feature-item p {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.5;
}

/* NJ Page - 2x2 broker grid */
.nj-page .broker-grid {
  grid-template-columns: repeat(2, 1fr);
  max-width: 900px;
}

/* Philly Page - 2x2 grids */
.philly-page .broker-grid {
  grid-template-columns: repeat(2, 1fr);
  max-width: 900px;
}

.philly-page .use-cases-grid .use-case-card {
  flex: 0 1 calc(50% - 0.75rem);
}

/* Geographic Pages - Responsive */
@media (max-width: 1024px) {
  .use-cases-grid .use-case-card,
  .challenges-grid .challenge-card {
    flex: 0 1 calc(50% - 0.75rem);
  }

  .who-grid .who-card {
    flex: 0 1 calc(50% - 0.75rem);
  }
}

@media (max-width: 768px) {
  .why-pmo-section h2,
  .reality-section h2,
  .challenges-section h2,
  .use-cases-section h2,
  .broker-section h2,
  .who-section h2,
  .features-section h2 {
    font-size: 2rem;
  }

  .broker-grid,
  .why-pmo-grid,
  .brokerage-grid,
  .value-grid {
    grid-template-columns: 1fr;
  }

  .use-cases-grid .use-case-card,
  .who-grid .who-card,
  .challenges-grid .challenge-card {
    flex: 0 1 100%;
  }

  .use-case-card {
    flex-direction: column;
    text-align: center;
  }

  .use-case-card .icon {
    margin: 0 auto;
  }
}

/* ═══════════════════════════════════════════
   MOBILE AUTH LINKS
   ═══════════════════════════════════════════ */
.nav-links > li.mobile-auth-links {
  display: none;
}

@media (max-width: 1024px) {
  .mobile-auth-links {
    display: flex !important;
    flex-direction: column !important;
    gap: 0.75rem !important;
    padding: 1.5rem 0 !important;
    align-items: center !important;
    border-bottom: none !important;
  }

  .mobile-auth-links a.mobile-login,
  .mobile-auth-links a.mobile-signup {
    display: inline-block !important;
    padding: 0.9rem 2.5rem !important;
    border-radius: 100px !important;
    font-family: var(--font) !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    white-space: nowrap !important;
    text-align: center !important;
    min-width: 160px !important;
  }

  .mobile-auth-links a.mobile-login {
    background: transparent !important;
    color: var(--dark) !important;
    border: 2px solid var(--dark) !important;
  }

  .mobile-auth-links a.mobile-signup {
    background: var(--primary) !important;
    color: white !important;
    border: none !important;
  }
}

/* ═══════════════════════════════════════════
   SCROLL REVEAL ANIMATIONS
   ═══════════════════════════════════════════ */
.js-enabled .reveal-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.js-enabled .reveal-on-scroll.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive: Geo Page Grids */
@media (max-width: 900px) {
  .elements-grid .element-item,
  .factors-grid .factor-item,
  .complexity-grid .complexity-item {
    flex: 0 1 calc(50% - 0.75rem);
  }
}

@media (max-width: 600px) {
  .reality-grid {
    grid-template-columns: 1fr;
  }

  .elements-grid .element-item,
  .factors-grid .factor-item,
  .complexity-grid .complexity-item {
    flex: 0 1 100%;
  }

  .florida-page .features-list,
  .boston-page .features-list,
  .ct-page .features-list,
  .ny-page .features-list,
  .nj-page .features-list,
  .philly-page .features-list,
  .la-page .features-list,
  .mke-page .features-list,
  .fsbo-page .features-list {
    grid-template-columns: 1fr;
  }
}

/* PMO: No drop shadows on buttons */
button, .btn, [role="button"] { box-shadow: none !important; }
