/* ==========================================
   PROPCASH STYLES - CLEANED VERSION
   Save this as: /propcash/assets/styles.css
   ========================================== */

/* PREMIUM FONTS - Cormorant Garamond for headings, Inter for body */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Inter:wght@400;500;600&display=swap');

/* CSS VARIABLES - Premium color palette */
:root {
  --bg: #fdfcfb;
  --card: #ffffff;
  --accent: #6b4423;
  --text: #1a1512;
  --muted: #6b625a;
  --ring: rgba(107, 68, 35, .15);
  --line: rgba(107, 68, 35, .12);
}

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

html, body { 
  margin: 0; 
  padding: 0; 
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif; 
  color: var(--text); 
  background: var(--bg);
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* LINKS */
a { 
  color: var(--accent); 
  text-decoration: none; 
  transition: all 0.3s ease;
}

a:hover { 
  opacity: 0.7;
  text-decoration: none;
}

/* CONTAINER */
.container { 
  width: min(1100px, 92%); 
  margin: 0 auto; 
}
/* ==========================================
   HEADER & NAVIGATION
   ========================================== */
header { 
  position: sticky; 
  top: 0; 
  background: rgba(253, 252, 251, .98); 
  border-bottom: 1px solid var(--line); 
  z-index: 100;
  backdrop-filter: blur(10px);
}
.nav { 
  display: flex; 
  align-items: center; 
  justify-content: space-between; 
  padding: 20px 0;
  gap: 16px;
}
.brand { 
  display: flex; 
  align-items: center; 
  gap: 12px; 
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700; 
  font-size: 22px;
  letter-spacing: -.01em; 
  color: #6b4423;
  text-decoration: none;
}
.brand .logo { 
  width: 38px; 
  height: 38px; 
  border-radius: 8px; 
  background: var(--accent); 
  display: grid; 
  place-items: center; 
  font-weight: 700; 
  color: #ffffff; 
  font-size: 16px;
  font-family: 'Cormorant Garamond', serif;
}
.desktop-nav {
  display: flex;
  gap: 32px;
  align-items: center;
}
.desktop-nav a {
  font-weight: 500;
  font-size: 20px;
color: var(--accent);
  text-decoration: none;
  transition: color 0.3s;
  letter-spacing: 0.01em;
  font-family: 'Cormorant Garamond', serif;  
}
.desktop-nav a:hover {
  opacity: 0.7;
  text-decoration: none;
}
.mobile-nav a {
  padding: 14px 0;
  color: var(--accent);
  font-weight: 600;
  font-size: 18px;
  text-decoration: none;
  border-bottom: 1px solid rgba(0,0,0,.05);
  font-family: 'Cormorant Garamond', serif; 
}
.header-ctas {
  display: flex;
  gap: 12px;
  align-items: center;
}
.cta-phone {
  padding: 11px 18px;
  font-size: 14px;
  border-radius: 8px;
  background: var(--accent);
  color: white;
  font-weight: 600;
  border: 1.5px solid var(--accent);
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.3s;
  letter-spacing: 0.01em;
}
.cta-phone:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}
.cta-header { 
  padding: 11px 20px;
  font-size: 20px;
  border-radius: 8px; 
  background: var(--accent); 
  color: #ffffff; 
  font-weight: 600; 
  border: 1.5px solid var(--accent); 
  cursor: pointer; 
  white-space: nowrap;
  transition: all 0.3s;
  letter-spacing: 0.01em;
  font-family: 'Cormorant Garamond', serif; 
}
.cta-header:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}

/* Hero button */
.btn-white {
  display: inline-block;
  background: var(--accent);
  color: white;
  padding: 16px 40px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 24px;
   font-family: 'Cormorant Garamond', serif;  /* ADD THIS LINE */
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.btn-white:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}

/* ==========================================
   TYPOGRAPHY
   ========================================== */

h1 { 
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 5.5vw, 62px); 
  line-height: 1.15; 
  margin: 20px 0 16px; 
  letter-spacing: -.02em;
  font-weight: 700;
  color: var(--accent);  /* Change from var(--text) to var(--accent) */
}

h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(30px, 4.5vw, 44px);
  line-height: 1.25;
  margin-bottom: 16px;
  font-weight: 700;
  letter-spacing: -.015em;
  color: var(--accent);  /* Change from var(--text) to var(--accent) */
}

h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--accent);  /* Change from var(--text) to var(--accent) */
  letter-spacing: -.01em;
}

h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--accent);  /* Change from var(--text) to var(--accent) */
}

.sub { 
  color: var(--muted); 
  font-size: clamp(16px, 2.2vw, 18px);
  line-height: 1.75;
  font-weight: 400;
}

/* ==========================================
   HERO SECTION
   ========================================== */

.hero { 
  display: grid; 
  grid-template-columns: 1.1fr .9fr; 
  gap: 40px; 
  padding: clamp(40px, 7vw, 90px) 0; 
  align-items: start;
}

.badge { 
  display: inline-flex; 
  gap: 8px; 
  align-items: center; 
  font-weight: 500; 
  font-size: 13px;
  color: var(--accent); 
  background: rgba(107, 68, 35, .06); 
  border: 1px solid rgba(107, 68, 35, .15); 
  padding: 6px 14px; 
  border-radius: 6px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.trust { 
  display: flex; 
  gap: 12px; 
  flex-wrap: wrap; 
  align-items: center; 
  margin-top: 22px;
}

.pill { 
  padding: 9px 16px; 
  border: 1px solid var(--line); 
  border-radius: 6px; 
  background: rgba(107, 68, 35, .04); 
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  letter-spacing: 0.01em;
}

/* ==========================================
   FORM CARD
   ========================================== */

.hero-card { 
  background: var(--card); 
  border: 1px solid var(--line); 
  padding: 32px; 
  border-radius: 12px; 
  box-shadow: 0 4px 20px rgba(107, 68, 35, .08); 
  position: sticky;
  top: 110px;
}

.quick-call {
  background: rgba(107, 68, 35, .04);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  text-align: center;
  margin-bottom: 18px;
}

.phone-large {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--accent);
  text-decoration: none;
  display: inline-block;
  margin-top: 8px;
  letter-spacing: -.01em;
}

.phone-large:hover {
  opacity: 0.7;
  text-decoration: none;
}

.divider {
  text-align: center;
  position: relative;
  margin: 24px 0;
}

.divider::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  background: var(--line);
}

.divider span {
  position: relative;
  background: white;
  padding: 0 14px;
  font-size: 11px;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form { 
  display: grid; 
  gap: 16px; 
}

.row { 
  display: grid; 
  grid-template-columns: 1fr 1fr; 
  gap: 14px; 
}

label { 
  font-size: 13px; 
  font-weight: 600;
  color: var(--text); 
  margin-bottom: 7px; 
  display: block;
  letter-spacing: 0.01em;
}

input, textarea, select { 
  width: 100%; 
  padding: 13px 15px; 
  border-radius: 8px; 
  background: #ffffff; 
  border: 1px solid var(--line); 
  color: var(--text); 
  outline: none;
  font-size: 15px;
  font-family: inherit;
  transition: all 0.3s;
  font-weight: 400;
}

input:focus, textarea:focus, select:focus { 
  border-color: var(--accent); 
  box-shadow: 0 0 0 3px var(--ring); 
}

textarea { 
  min-height: 110px; 
  resize: vertical; 
}

select {
  cursor: pointer;
}

.btn { 
  background: var(--accent); 
  color: #ffffff; 
  font-weight: 600; 
  padding: 15px 24px; 
  border-radius: 8px; 
  border: none; 
  cursor: pointer; 
  font-size: 16px;
  transition: all 0.3s;
  width: 100%;
  letter-spacing: 0.01em;
}

.btn:hover { 
  background: #5a371c;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(107, 68, 35, .25);
}

.btn-secondary {
  background: transparent;
  color: var(--accent);
  font-weight: 600;
  padding: 15px 28px;
  border-radius: 8px;
  border: 1.5px solid var(--accent);
  cursor: pointer;
  font-size: 16px;
  transition: all 0.3s;
  text-decoration: none;
  display: inline-block;
  letter-spacing: 0.01em;
}

.btn-secondary:hover {
  background: var(--accent);
  color: white;
  text-decoration: none;
  transform: translateY(-1px);
}

.secure { 
  display: flex; 
  gap: 8px; 
  align-items: flex-start; 
  color: var(--muted); 
  font-size: 12px; 
  margin-top: 14px;
  line-height: 1.5;
}

/* ==========================================
   MASCOT (JULIAN)
   ========================================== */

.mascot {
  margin-top: 28px;
  display: inline-block;
  position: relative;
  max-width: 280px;
}

.mascot img {
  width: 100%;
  max-width: 235px;
  height: auto;
  display: block;
  filter: drop-shadow(0px 3px 12px rgba(107, 68, 35, .12));
}

.mascot::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 16px;
  background: radial-gradient(ellipse at center,
    rgba(107, 68, 35, .15) 0%,
    transparent 70%);
  border-radius: 50%;
  z-index: -1;
}

.speech-bubble {
  background: white;
  border: 1.5px solid var(--accent);
  border-radius: 12px;
  padding: 16px 20px;
  margin-top: 18px;
  position: relative;
  font-size: 15px;
  line-height: 1.6;
  box-shadow: 0 3px 12px rgba(107, 68, 35, .08);
}

.speech-bubble::before {
  content: "";
  position: absolute;
  top: -9px;
  left: 30px;
  width: 0;
  height: 0;
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-bottom: 9px solid var(--accent);
}

.speech-bubble::after {
  content: "";
  position: absolute;
  top: -7px;
  left: 32px;
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 7px solid white;
}

.form-mascot { 
  position: absolute; 
  top: -30px; 
  right: -30px; 
  width: 95px; 
  height: auto; 
  filter: drop-shadow(0 8px 16px rgba(107, 68, 35, .12)); 
  pointer-events: none;
  animation: float 3s ease-in-out infinite;
}

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

/* ==========================================
   STATS SECTION
   ========================================== */

.stats-section {
  background: rgba(107, 68, 35, .03);
  border-radius: 12px;
  padding: 50px 24px;
  margin: 50px 0;
  border: 1px solid var(--line);
}

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

.stat-card {
  text-align: center;
  padding: 24px;
}

.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 46px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 10px;
  letter-spacing: -.02em;
}

.stat-label {
  font-size: 14px;
  color: var(--muted);
  font-weight: 500;
  line-height: 1.4;
}

/* ==========================================
   SECTIONS & CARDS
   ========================================== */

section { 
  padding: clamp(50px, 7vw, 90px) 0; 
}

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

.card { 
  background: var(--card); 
  border: 1px solid var(--line); 
  border-radius: 12px; 
  padding: 28px; 
  box-shadow: 0 2px 12px rgba(107, 68, 35, .04);
  transition: all 0.4s ease;
}

.card:hover {
  box-shadow: 0 6px 24px rgba(107, 68, 35, .1);
  transform: translateY(-3px);
  border-color: var(--accent);
}

.num { 
  width: 44px; 
  height: 44px; 
  border-radius: 8px; 
  background: var(--accent); 
  display: grid; 
  place-items: center; 
  color: #ffffff; 
  font-weight: 700; 
  margin-bottom: 14px;
  font-size: 20px;
  font-family: 'Cormorant Garamond', serif;
}

.icon-badge {
  font-size: 36px;
  margin-bottom: 14px;
}

/* ==========================================
   JULIAN CALLOUT SECTION
   ========================================== */

.julian-callout {
  background: rgba(107, 68, 35, .03);
  border: 1.5px solid var(--accent);
  border-radius: 12px;
  padding: 48px;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 48px;
  align-items: center;
}

.julian-large {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 6px 16px rgba(107, 68, 35, .12));
}

/* ==========================================
   FAQ SECTION
   ========================================== */

details { 
  background: var(--card); 
  border: 1px solid var(--line); 
  border-radius: 10px; 
  padding: 20px 24px;
  transition: all 0.3s;
}

details:hover {
  box-shadow: 0 3px 16px rgba(107, 68, 35, .08);
  border-color: var(--accent);
}

summary { 
  cursor: pointer; 
  font-weight: 600;
  font-size: 16px;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 14px;
  letter-spacing: 0.01em;
}

summary::before {
  content: "▶";
  color: var(--accent);
  font-size: 12px;
  transition: transform 0.3s;
}

details[open] summary::before {
  transform: rotate(90deg);
}

details p {
  margin-top: 14px;
  padding-left: 26px;
}

details + details { 
  margin-top: 14px; 
}

/* ==========================================
   FINAL CTA SECTION
   ========================================== */

.final-cta {
  text-align: center;
  background: var(--accent);
  color: white;
  padding: 70px 48px;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(107, 68, 35, .2);
}

.final-cta h2 {
  color: white;
}

.final-cta .sub {
  color: rgba(255,255,255,.9);
}

/* ==========================================
   FOOTER
   ========================================== */

footer { 
  border-top: 1px solid var(--line); 
  padding: 50px 0 90px; 
  color: var(--muted); 
  background: rgba(107, 68, 35, .02); 
}

footer a {
  color: var(--muted);
}

footer a:hover {
  color: var(--accent);
}

/* ==========================================
   FOOTER
   ========================================== */
footer { 
  border-top: 1px solid var(--line); 
  padding: 50px 0 90px; 
  color: var(--muted); 
  background: rgba(107, 68, 35, .02); 
}
footer a {
  color: var(--muted);
}
footer a:hover {
  color: var(--accent);
}

/* ==========================================
   STICKY HELPER MASCOT
   ========================================== */

.helper { 
  position: fixed; 
  right: 26px; 
  bottom: 26px; 
  width: 72px; 
  height: 72px; 
  border-radius: 50%; 
  background: #fff; 
  border: 1.5px solid var(--accent); 
  display: grid; 
  place-items: center; 
  box-shadow: 0 6px 24px rgba(107, 68, 35, .15); 
  cursor: pointer; 
  z-index: 999; 
  text-decoration: none;
  transition: all 0.4s ease;
}

.helper img { 
  width: 52px; 
  height: auto; 
  display: block; 
}

.helper:hover { 
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 10px 35px rgba(107, 68, 35, .25);
  text-decoration: none;
}

/* Helper bubble interactions */
.helper-container:hover .helper-bubble {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* Pulse animation */
@keyframes pulse {
  0%, 100% {
    box-shadow: 0 6px 24px rgba(107, 68, 35, .15);
  }
  50% {
    box-shadow: 0 6px 24px rgba(107, 68, 35, .3);
  }
}

.helper {
  animation: pulse 3s ease-in-out infinite;
}

/* ==========================================
   ABOUT PAGE SPECIFIC STYLES
   ========================================== */

.hero-simple {
  text-align: center;
  padding: clamp(50px, 7vw, 90px) 0 clamp(40px, 6vw, 70px);
  max-width: 900px;
  margin: 0 auto;
}

/* Override for full-width hero with background */
.hero-simple[style*="background"] {
  max-width: none;
  margin: 0;
  width: 100%;
}

.story-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 52px;
  align-items: center;
}

.mascot-feature {
  text-align: center;
}

.mascot-feature img {
  width: 100%;
  max-width: 280px;
  height: auto;
  filter: drop-shadow(0 6px 20px rgba(107, 68, 35, .12));
  margin-bottom: 22px;
}

.values-section {
  background: rgba(107, 68, 35, .03);
  padding: 70px 0;
  margin: 50px 0;
  border-radius: 12px;
  border: 1px solid var(--line);
}

.julian-story {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 52px;
  align-items: center;
  background: rgba(107, 68, 35, .03);
  padding: 52px;
  border-radius: 12px;
  border: 1.5px solid var(--accent);
}

.process-timeline {
  max-width: 900px;
  margin: 0 auto;
}

.process-step {
  display: grid;
  grid-template-columns: 85px 1fr;
  gap: 26px;
  margin-bottom: 36px;
  position: relative;
}

.process-step:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 42px;
  top: 85px;
  bottom: -36px;
  width: 2px;
  background: var(--accent);
  opacity: 0.2;
}

.step-number {
  width: 85px;
  height: 85px;
  border-radius: 50%;
  background: var(--accent);
  color: white;
  font-size: 36px;
  font-weight: 700;
  display: grid;
  place-items: center;
  box-shadow: 0 6px 20px rgba(107, 68, 35, .2);
  font-family: 'Cormorant Garamond', serif;
}

.step-content h3 {
  margin-bottom: 14px;
}

.commitment-box {
  background: var(--accent);
  padding: 70px 48px;
  border-radius: 12px;
  color: white;
}

.commitment-box h2 {
  color: white;
  margin-bottom: 36px;
}

.commitment-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 1000px;
  margin: 0 auto;
}

.commitment-item {
  background: rgba(255,255,255,.12);
  padding: 28px;
  border-radius: 10px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.15);
}

.commitment-item strong {
  display: block;
  font-size: 18px;
  margin-bottom: 10px;
  color: white;
  font-family: 'Cormorant Garamond', serif;
}

.commitment-item .sub {
  color: rgba(255,255,255,.95);
}

/* ==========================================
   CONTACT PAGE SPECIFIC STYLES
   ========================================== */

.contact-options-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 20px 0 12px;
}

.contact-options-grid.tight {
  margin: 20px 0 12px;
  gap: 20px;
}

.contact-option-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px;
  text-align: left;
  transition: all 0.3s;
  text-decoration: none;
  display: block;
}

.contact-option-card.compact {
  padding: 16px;
  text-align: left;
  border-radius: 12px;
}

.contact-option-card:hover {
  border-color: var(--accent);
  box-shadow: 0 3px 16px rgba(107, 68, 35, .08);
  transform: translateY(-2px);
  text-decoration: none;
}

.contact-row {
  display: flex;
  align-items: center;
  gap: 14px;
}

.contact-icon {
  font-size: 28px;
  margin: 0;
  flex-shrink: 0;
}

.contact-option-card.compact .contact-icon {
  font-size: 28px;
  margin: 0;
  flex-shrink: 0;
}

.contact-option-card h3,
.contact-option-card.compact .contact-info h3 {
  color: var(--text);
  margin: 0;
  font-size: 22px;
  font-weight: 700;
}

.contact-detail {
  font-size: 14px;
  font-weight: 600;
  color: var(--accent);
  margin: 2px 0 0 0;
  letter-spacing: 0;
}

.contact-option-card.compact .contact-detail {
  font-size: 14px;
  margin: 2px 0 0 0;
  letter-spacing: 0;
}

.contact-option-card.compact .sub.small {
  font-size: 12.5px;
  line-height: 1.4;
  color: var(--muted);
  margin-top: 2px;
}

.contact-hours,
.contact-option-card.compact .contact-hours {
  font-size: 12px;
  margin-top: 4px;
  color: var(--muted);
}

.contact-form-wrapper {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  background: rgba(107, 68, 35, .03);
  padding: 48px;
  border-radius: 12px;
  border: 1px solid var(--line);
}

.form-left {
  display: flex;
  flex-direction: column;
}

.form-left h2 {
  margin-bottom: 12px;
}

.contact-features {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.feature-check {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--accent);
  color: white;
  display: grid;
  place-items: center;
  font-weight: 900;
  flex-shrink: 0;
}

.feature-item strong {
  display: block;
  margin-bottom: 4px;
  font-size: 16px;
}

.feature-item .sub {
  font-size: 14px;
}

.form-right {
  background: white;
  padding: 32px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(107, 68, 35, .08);
}

.contact-form {
  display: grid;
  gap: 16px;
}

/* ==========================================
   LANDING PAGE SPECIFIC STYLES
   ========================================== */

.neighborhoods-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.neighborhood-item {
  background: rgba(107, 68, 35, .04);
  border: 1px solid var(--line);
  padding: 14px 18px;
  border-radius: 8px;
  font-size: 14px;
  transition: all 0.3s;
  font-weight: 500;
}

.neighborhood-item:hover {
  background: rgba(107, 68, 35, .08);
  border-color: var(--accent);
  transform: translateX(4px);
}

.market-info-box {
  background: rgba(107, 68, 35, .03);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 48px;
}

.market-info-box h2 {
  margin-bottom: 22px;
}

.benefit-list {
  list-style: none;
  padding: 0;
  margin: 24px 0;
}

.benefit-list li {
  padding: 14px 0 14px 36px;
  position: relative;
  color: var(--text);
  line-height: 1.7;
}

.benefit-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
  font-size: 20px;
}

/* ==========================================
   RESPONSIVE DESIGN (MOBILE)
   ========================================== */

@media (max-width: 900px) {
  .hero { 
    grid-template-columns: 1fr; 
  }
  
  .hero-card {
    position: static;
  }
  
  .row { 
    grid-template-columns: 1fr; 
  }
  
  .grid-3 { 
    grid-template-columns: 1fr; 
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .julian-callout {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .julian-large {
    max-width: 200px;
    margin: 0 auto;
  }
  
  .mascot { 
    justify-content: center;
    margin: 24px auto;
  }
  
  .mascot img { 
    width: 180px; 
  }
  
  .desktop-nav {
    display: none;
  }
  
  .header-ctas {
    flex-direction: row;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: flex-end;
  }
  
  .cta-phone,
  .cta-header {
    font-size: 13px;
    padding: 10px 14px;
    white-space: nowrap;
  }
  
  .form-mascot {
    width: 70px;
    top: -22px;
    right: -22px;
  }
  
  h1 {
    font-size: 36px;
  }
  
  h2 {
    font-size: 30px;
  }
  
  .story-grid {
    grid-template-columns: 1fr;
  }
  
  .mascot-feature img {
    max-width: 220px;
  }
  
  .comparison-row {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 18px;
  }
  
  .comparison-row .label {
    font-weight: 700;
    margin-bottom: 10px;
  }
  
  .header-row {
    display: none;
  }
  
  .highlight-col {
    order: -1;
  }
  
  .julian-story {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 36px 28px;
  }
  
  .julian-story img {
    max-width: 200px;
    margin: 0 auto;
  }
  
  .process-step {
    grid-template-columns: 65px 1fr;
    gap: 18px;
  }
  
  .process-step:not(:last-child)::after {
    left: 32px;
    top: 65px;
  }
  
  .step-number {
    width: 65px;
    height: 65px;
    font-size: 26px;
  }
  
  .commitment-grid {
    grid-template-columns: 1fr;
  }
  
  .commitment-box {
    padding: 50px 28px;
  }
  
  .contact-options-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  
  .contact-option-card.compact {
    padding: 14px;
  }
  
  .contact-option-card.compact .contact-icon {
    font-size: 24px;
  }
  
  .contact-option-card.compact .contact-info h3 {
    font-size: 15px;
  }
  
  .contact-option-card.compact .contact-detail {
    font-size: 13.5px;
  }
  
  .contact-option-card.compact .sub.small {
    font-size: 12px;
  }
  
  .contact-form-wrapper {
    grid-template-columns: 1fr;
    padding: 32px 24px;
  }
  
  .form-left img {
    max-width: 160px;
    margin: 0 auto 16px;
  }
  
  .form-right {
    padding: 24px;
  }
  
  .neighborhoods-grid {
    grid-template-columns: 1fr;
  }
  
  .market-info-box {
    padding: 32px 24px;
  }
}

@media (max-width: 600px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .helper {
    width: 64px;
    height: 64px;
    right: 18px;
    bottom: 18px;
  }
  
  .helper img {
    width: 44px;
  }
  
  .final-cta {
    padding: 50px 28px;
  }
}
