:root {
  --navy: #08293F;
  --slate: #3A4550;
  --cloud: #DDE5ED;
  --ice: #D5E1ED;
  --gold: #C6AA76;
  --gold-hover: #b59b68;
  --max-width: 1200px;
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 10px 25px rgba(0,0,0,0.1);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--slate);
  background-color: var(--cloud);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3 {
  font-family: 'Playfair Display', serif;
  color: var(--navy);
  margin-top: 0;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.25rem, 4vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); margin-bottom: 1.5rem; }
h3 { font-size: 1.25rem; margin-bottom: 0.75rem; }

h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: #fff;
  margin-top: 0;
  line-height: 1.2;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

a { color: inherit; }

section {
  padding: 5rem 0;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  width: 100%;
  background: white;
  z-index: 999;
  border-bottom: 1px solid #e2e2e2;
  transition: box-shadow var(--transition);
}

.site-header.scrolled {
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.875rem 0;
}

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

.header-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.header-nav a {
  color: var(--slate);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color var(--transition);
  position: relative;
}

.header-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}

.header-nav a:hover::after,
.header-nav a.active::after {
  width: 100%;
}

.header-nav a:hover {
  color: var(--navy);
}

.header-nav a.active {
  color: var(--navy);
  font-weight: 600;
}

#header-auth-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: 0.5rem;
}

.btn-header-auth {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 1.1rem;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition);
  color: var(--slate);
  border: 1px solid transparent;
}

.btn-header-auth:hover {
  color: var(--navy);
}

.btn-header-auth::after {
  display: none;
}

.btn-header-signup {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

.btn-header-signup:hover {
  background: var(--gold-hover);
  color: var(--navy);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(198, 170, 118, 0.3);
}

.btn-header-account {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

.btn-header-account:hover {
  opacity: 0.9;
  transform: translateY(-1px);
  color: #fff;
}

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

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

.mobile-toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.open span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.btn {
  padding: 0.85rem 1.75rem;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
  letter-spacing: 0.01em;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
}

.btn-primary:hover {
  background: var(--gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(198, 170, 118, 0.35);
}

.btn-secondary {
  border: 1px solid rgba(255,255,255,0.35);
  color: #fff;
  background: transparent;
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.6);
  transform: translateY(-2px);
}

.btn-block {
  display: block;
  width: 100%;
  text-align: center;
}

.cta-group {
  margin-top: 2.5rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.cta-group.centered {
  justify-content: center;
}

.card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 2rem;
  border: 1px solid rgba(0,0,0,0.04);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.card-icon {
  width: 44px;
  height: 44px;
  background: var(--cloud);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--navy);
}

.card-icon svg {
  width: 22px;
  height: 22px;
}

.card p {
  color: var(--slate);
  line-height: 1.65;
}

.hero {
  background: linear-gradient(170deg, var(--navy) 0%, #0d3a56 50%, #102b3f 100%);
  color: #fff;
  padding: 6rem 0 7rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(198, 170, 118, 0.06) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
}

.hero h1 {
  color: #fff;
  font-size: clamp(2.5rem, 4vw, 3.75rem);
  line-height: 1.08;
  margin-bottom: 1.5rem;
}

.hero p {
  color: rgba(230, 238, 244, 0.9);
  font-size: 1.1rem;
  max-width: 42rem;
  line-height: 1.7;
}

.hero-logo-icon {
  height: 56px;
  width: auto;
  margin-bottom: 1.25rem;
  opacity: 0.9;
}

.hero-compact {
  padding: 4rem 0 5rem;
}

.metrics {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-md);
  padding: 2rem;
  display: grid;
  gap: 0;
  backdrop-filter: blur(10px);
}

.metric {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding: 1rem 0.5rem;
}

.metric:first-child { padding-top: 0.5rem; }
.metric:last-child { border-bottom: none; padding-bottom: 0.5rem; }

.metric span {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
}

.metric strong {
  color: var(--gold);
  font-size: 1.05rem;
  letter-spacing: 0.02em;
}

.problem {
  background: #fff;
}

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

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

.capabilities-grid.align-top {
  align-items: flex-start;
}

.cap-list {
  padding-left: 0;
  list-style: none;
}

.cap-list li {
  margin-bottom: 0.85rem;
  line-height: 1.5;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.cap-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--gold);
}

.use-cases {
  background: #fff;
}

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

.trust {
  background: var(--navy);
  color: #e6eef4;
}

.trust h2 {
  color: #fff;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.trust-badge {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  padding: 1.25rem 1.5rem;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: all var(--transition);
}

.trust-badge:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.trust-icon {
  width: 28px;
  height: 28px;
  display: block;
  margin: 0 auto 0.75rem;
  color: var(--gold);
}

.final-cta {
  background: linear-gradient(180deg, #0d3a56, var(--navy));
  color: #fff;
  text-align: center;
  padding: 5rem 0;
}

.final-cta h4 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  margin-bottom: 1rem;
}

.final-cta p {
  color: rgba(230, 238, 244, 0.8);
  font-size: 1.1rem;
  max-width: 500px;
  margin: 0 auto 0.5rem;
}

.how-it-works {
  background: #fff;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  counter-reset: step;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 20px;
  left: calc(16.67% + 20px);
  right: calc(16.67% + 20px);
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--navy), var(--gold));
  opacity: 0.25;
  z-index: 0;
}

.step {
  position: relative;
  padding: 2rem;
  background: var(--cloud);
  border-radius: var(--radius-md);
  border: 1px solid rgba(0,0,0,0.04);
  transition: all var(--transition);
}

.step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.step::before {
  counter-increment: step;
  content: counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--navy);
  color: var(--gold);
  border-radius: 50%;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 1rem;
  font-family: 'Inter', sans-serif;
}

.step h3 {
  font-size: 1.15rem;
}

.team {
  background: var(--cloud);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 600px;
}

.team-member {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 2rem;
  border: 1px solid rgba(0,0,0,0.04);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}

.team-member:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.team-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  font-family: 'Inter', sans-serif;
  margin-bottom: 1rem;
}

.team-member h3 {
  margin-bottom: 0.25rem;
}

.team-role {
  color: var(--gold);
  font-weight: 500;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

.team-bio {
  color: var(--slate);
  font-size: 0.85rem;
  line-height: 1.6;
  margin-bottom: 0;
}

.site-footer {
  background: var(--navy);
  color: #889bb0;
  padding: 4rem 0 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1rem;
}

.footer-brand img {
  height: 36px;
  width: auto;
}

.footer-brand span {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: #fff;
}

.footer-tagline {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #7a94ad;
}

.footer-col h5 {
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  font-weight: 600;
}

.footer-col a {
  display: block;
  color: #7a94ad;
  text-decoration: none;
  font-size: 0.9rem;
  margin-bottom: 0.6rem;
  transition: color var(--transition);
}

.footer-col a:hover {
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
}

.footer-bottom-links a {
  color: #7a94ad;
  text-decoration: none;
  margin-left: 1.5rem;
  transition: color var(--transition);
}

.footer-bottom-links a:hover {
  color: var(--gold);
}

.contact-hero {
  padding: 4rem 0 2rem;
  text-align: center;
  background: var(--cloud);
}

.contact-hero p {
  max-width: 600px;
  margin: 1rem auto 0;
}

.contact-section {
  padding-top: 2rem;
  padding-bottom: 6rem;
  background: var(--cloud);
}

.contact-form {
  max-width: 520px;
  margin: 0 auto;
  background: #ffffff;
  padding: 2.5rem;
  border-radius: var(--radius-md);
  border: 1px solid #e2e8f0;
  box-shadow: var(--shadow-md);
}

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

.form-group label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--navy);
  background-color: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--navy);
  background-color: #fff;
  box-shadow: 0 0 0 3px rgba(8, 41, 63, 0.08);
}

.full-width-btn {
  width: 100%;
  margin-top: 0.5rem;
  padding: 1rem;
  font-size: 0.95rem;
}

.contact-form button.btn-primary {
  border: none;
  outline: none;
  cursor: pointer;
}

.contact-form button.btn-primary:hover {
  background: var(--gold-hover);
}

.uc-section-white {
  background: #fff;
  border-bottom: 1px solid #e2e8f0;
}

.uc-question {
  margin-bottom: 1rem;
}

.uc-featured-section {
  background: var(--cloud);
}

.uc-featured-heading {
  margin-bottom: 2rem;
}

.uc-download-wrap {
  margin-top: 2.5rem;
}

.uc-download-note {
  font-size: 0.8rem;
  color: #94a3b8;
  margin-top: 0.75rem;
}

.uc-report-preview {
  background: white;
  padding: 2rem;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
}

.uc-report-placeholder {
  background: #f1f5f9;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px dashed #cbd5e1;
  border-radius: var(--radius-sm);
  color: #64748B;
  text-align: center;
  padding: 2rem;
}

.uc-report-placeholder strong {
  display: block;
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}

.uc-report-placeholder .sub {
  font-size: 0.8rem;
  color: #94a3b8;
}

.uc-report-info {
  margin-top: 1.5rem;
}

.uc-report-info h4 {
  color: var(--navy);
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.uc-report-info p {
  font-size: 0.85rem;
  color: #64748B;
  margin-bottom: 0;
}

.market-hero {
  padding: 4rem 0 5rem;
}

.market-content {
  background: white;
  padding-top: 3rem;
}

.market-layout {
  grid-template-columns: 2fr 1fr;
}

.market-map-visual {
  margin: 1.5rem 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0,0,0,0.06);
}

.isochrone-svg {
  width: 100%;
  height: auto;
  display: block;
}

.market-result-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 1.5rem 0 2rem;
}

.result-stat-card {
  background: var(--cloud);
  border-radius: var(--radius-sm);
  padding: 1.25rem 1rem;
  text-align: center;
  border: 1px solid rgba(0,0,0,0.04);
  transition: all var(--transition);
}

.result-stat-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.result-stat-value {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 0.25rem;
}

.result-stat-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--slate);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.market-cta-wrap {
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

.market-stats h4 {
  color: var(--navy);
}

.market-stats hr {
  border: 0;
  border-top: 1px solid #e2e8f0;
  margin: 1.5rem 0;
}

.success-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background: var(--cloud);
  text-align: center;
}

.success-content {
  max-width: 500px;
}

.success-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
  line-height: 1;
}

.success-content h1 {
  margin-bottom: 1rem;
}

.success-content p {
  font-size: 1.1rem;
  color: var(--slate);
  margin-bottom: 2rem;
}

.dashboard-body {
  font-family: 'Inter', system-ui, sans-serif;
  background-color: var(--cloud);
  margin: 0;
  padding: 0;
  color: var(--slate);
}

.dashboard-header {
  background-color: var(--navy);
  padding: 15px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.dashboard-header .logo-container {
  display: flex;
  align-items: center;
  gap: 15px;
}

.dashboard-header .logo-container img {
  height: 40px;
}

.dashboard-header .header-title {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 1px;
}

.btn-gold {
  background-color: var(--gold);
  color: var(--navy);
  padding: 10px 20px;
  border: none;
  border-radius: var(--radius-sm);
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  font-size: 0.9rem;
}

.btn-gold:hover {
  background-color: var(--gold-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(198, 170, 118, 0.3);
}

.dashboard-container {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
}

.search-bar {
  background-color: #fff;
  padding: 20px;
  border-radius: var(--radius-md);
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
  box-shadow: var(--shadow-sm);
  align-items: center;
}

.geocoder-wrap {
  flex-grow: 2;
}

.search-bar .mapboxgl-ctrl-geocoder {
  width: 100%;
  max-width: none;
  box-shadow: none;
  border: 1px solid var(--ice);
  border-radius: var(--radius-sm);
}

.search-bar select {
  padding: 12px;
  border: 1px solid var(--ice);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  color: var(--slate);
  flex-grow: 1;
  background: #fff;
}

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

.dashboard-card {
  background-color: #fff;
  border-radius: var(--radius-md);
  padding: 25px;
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--navy);
  transition: all var(--transition);
}

.dashboard-card:hover {
  box-shadow: var(--shadow-md);
}

.dashboard-card-main {
  grid-column: span 3;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 4px solid var(--gold);
  background-color: var(--navy);
  color: #fff;
  border-radius: var(--radius-md);
  padding: 25px;
}

.score-title {
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--ice);
}

.score-number {
  font-size: 3.5rem;
  font-weight: bold;
  color: var(--gold);
  margin: 10px 0 0 0;
  line-height: 1;
}

.score-denominator {
  font-size: 1.5rem;
  color: var(--cloud);
}

.metric-title {
  font-size: 0.8rem;
  color: var(--slate);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}

.metric-value {
  font-size: 2rem;
  font-weight: bold;
  color: var(--navy);
}

.metric-subtitle {
  font-size: 0.85rem;
  color: #666;
  margin-top: 5px;
}

.positive-trend {
  color: #2e7d32;
}

.dashboard-map {
  grid-column: span 2;
  border-radius: var(--radius-md);
  min-height: 350px;
  border: 1px solid var(--ice);
}

.dashboard-subtitle {
  color: var(--cloud);
}

.faq {
  background: var(--cloud);
}

.faq-list {
  max-width: 800px;
}

.faq-item {
  background: #fff;
  border-radius: var(--radius-md);
  margin-bottom: 0.75rem;
  border: 1px solid rgba(0,0,0,0.04);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  text-align: left;
  transition: background var(--transition);
}

.faq-question:hover {
  background: rgba(8, 41, 63, 0.02);
}

.faq-icon {
  font-family: 'Inter', sans-serif;
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--gold);
  flex-shrink: 0;
  margin-left: 1rem;
  transition: transform 0.3s ease;
  line-height: 1;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 1.5rem 1.25rem;
}

.faq-answer p {
  color: var(--slate);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 0;
}

.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

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

@media (prefers-reduced-motion: reduce) {
  .fade-up {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .card, .step, .team-member, .trust-badge, .btn {
    transition: none;
  }
}

@media (max-width: 1024px) {
  .hero-grid {
    gap: 2.5rem;
  }

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

@media (max-width: 900px) {
  .hero-grid,
  .capabilities-grid,
  .market-layout {
    grid-template-columns: 1fr;
  }

  .problem-grid,
  .use-grid,
  .steps-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

  .footer-bottom-links a:first-child {
    margin-left: 0;
  }

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

  .dashboard-card-main {
    grid-column: span 1;
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .dashboard-map {
    grid-column: span 1;
    min-height: 280px;
  }
}

@media (max-width: 768px) {
  section {
    padding: 3.5rem 0;
  }

  .header-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    padding: 5rem 2rem 2rem;
    gap: 0;
    box-shadow: -4px 0 20px rgba(0,0,0,0.1);
    transition: right 0.35s ease;
    z-index: 1000;
  }

  .header-nav.open {
    right: 0;
  }

  .header-nav a {
    font-size: 1.05rem;
    padding: 0.85rem 0;
    border-bottom: 1px solid #f0f0f0;
    width: 100%;
  }

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

  .mobile-toggle {
    display: block;
  }

  .mobile-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    z-index: 999;
  }

  .mobile-overlay.show {
    display: block;
  }

  .hero {
    padding: 4rem 0 5rem;
  }

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

  .metrics {
    margin-top: 2rem;
  }

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

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

  .contact-form {
    padding: 1.75rem;
  }

  .dashboard-header {
    flex-direction: column;
    gap: 10px;
    padding: 15px 20px;
  }

  .search-bar {
    flex-direction: column;
  }
}

/* Pricing Page */
.pricing-section {
  padding: 1rem 0 4rem;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  align-items: start;
}

.price-card {
  background: #fff;
  border: 2px solid rgba(0,0,0,0.06);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}

.price-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}

.price-card-featured {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px var(--gold);
  background: linear-gradient(180deg, rgba(198, 170, 118, 0.04) 0%, #fff 35%);
}

.price-card-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 14px;
  border-radius: 12px;
  white-space: nowrap;
}

.price-card-header h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  color: var(--navy);
  margin: 0 0 6px;
}

.price-card-desc {
  font-size: 0.82rem;
  color: var(--slate);
  line-height: 1.5;
  margin: 0 0 16px;
}

.price-card-price {
  margin-bottom: 4px;
}

.price-amount {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--navy);
}

.price-period {
  font-size: 0.9rem;
  color: var(--slate);
  font-weight: 400;
}

.price-card-divider {
  height: 1px;
  background: rgba(0,0,0,0.08);
  margin: 14px 0;
}

.price-card-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  flex: 1;
}

.price-card-features li {
  font-size: 0.82rem;
  color: var(--slate);
  padding: 5px 0;
  padding-left: 22px;
  position: relative;
  line-height: 1.45;
}

.price-card-features li.included::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: #16a34a;
  font-weight: 700;
}

.price-card-features li.excluded::before {
  content: '\2717';
  position: absolute;
  left: 0;
  color: #d4d4d8;
  font-weight: 700;
}

.price-card-btn {
  width: 100%;
  text-align: center;
  justify-content: center;
}

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

.btn-outline-dark:hover {
  background: var(--navy);
  color: #fff;
  box-shadow: 0 6px 20px rgba(8, 41, 63, 0.2);
}

.pricing-faq {
  padding: 4rem 0;
  background: var(--cloud);
}

.pricing-faq h2 {
  text-align: center;
  margin-bottom: 2rem;
}

.contact-alt-cta {
  text-align: center;
  margin-top: 1.25rem;
  font-size: 0.85rem;
  color: var(--slate);
}

.contact-alt-cta a {
  color: var(--gold);
  font-weight: 600;
  text-decoration: none;
}

.contact-alt-cta a:hover {
  text-decoration: underline;
}

@media (max-width: 1024px) {
  .pricing-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  #header-auth-btn {
    margin-left: 0;
    padding: 0.75rem 0 0;
    gap: 0.5rem;
    flex-direction: column;
    width: 100%;
  }

  .btn-header-auth {
    width: 100%;
    justify-content: center;
    padding: 0.75rem;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .pricing-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1.25rem;
  }

  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.5rem; }

  .hero {
    padding: 3rem 0 4rem;
  }

  .btn {
    padding: 0.75rem 1.25rem;
    font-size: 0.85rem;
    width: 100%;
    justify-content: center;
  }

  .cta-group {
    flex-direction: column;
  }

  .footer-inner {
    text-align: center;
  }

  .footer-brand {
    justify-content: center;
  }
}
