/* ══════════════════════════════════════════════════════════════════
   QRS INVESTMENTS — LANDING PAGE STYLES
   Palette: Deep Navy · Clean White · Blue Accent (#2563EB) · Gold touch
   Fonts: Fraunces (headlines) · Plus Jakarta Sans (body)
══════════════════════════════════════════════════════════════════ */

:root {
  --navy:        #0a1432;
  --navy-light:  #111e45;
  --blue-accent: #2563eb;
  --blue-light:  #3b82f6;
  --blue-dark:   #1d4ed8;
  --gold:        #c8922a;
  --gold-light:  #e4ab4a;
  --cream:       #f5f7ff;
  --white:       #ffffff;
  --green:       #16a34a;
  --green-light: #22c55e;
  --red:         #dc2626;
  --text-dark:   #0a1432;
  --text-mid:    #475569;
  --text-light:  #94a3b8;
  --border:      #e2e8f0;
  --shadow-sm:   0 2px 12px rgba(10,20,50,.07);
  --shadow-md:   0 8px 32px rgba(10,20,50,.12);
  --shadow-lg:   0 20px 60px rgba(10,20,50,.18);
  --radius:      12px;
  --radius-lg:   20px;
  --transition:  .3s cubic-bezier(.4,0,.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Plus Jakarta Sans', system-ui, sans-serif; color: var(--text-dark); background: var(--white); line-height: 1.65; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
h1, h2, h3, h4 { font-family: 'Fraunces', Georgia, serif; line-height: 1.2; }

.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 88px 0; }

.section-label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--blue-accent);
  margin-bottom: 12px;
}
.section-headline { font-size: clamp(1.9rem,4vw,2.8rem); color: var(--navy); margin-bottom: 20px; text-align: center; }
.section-headline-left { font-size: clamp(1.8rem,3.5vw,2.6rem); color: var(--navy); margin-bottom: 20px; }
.section-sub { font-size: 1.05rem; color: var(--text-mid); max-width: 640px; margin: 0 auto 48px; text-align: center; line-height: 1.7; }

/* BUTTONS */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--blue-accent); color: var(--white);
  font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 1rem;
  padding: 16px 32px; border-radius: 8px; border: none; cursor: pointer;
  transition: all var(--transition);
  box-shadow: 0 4px 20px rgba(37,99,235,.35);
}
.btn-primary:hover { background: var(--blue-dark); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(37,99,235,.45); }

.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--navy);
  font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 600; font-size: 1rem;
  padding: 16px 28px; border-radius: 8px; border: 2px solid var(--navy); cursor: pointer;
  transition: all var(--transition);
}
.btn-secondary:hover { background: var(--navy); color: var(--white); }

.btn-outline-white {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--white);
  font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 600; font-size: 1rem;
  padding: 16px 28px; border-radius: 8px; border: 2px solid rgba(255,255,255,.5); cursor: pointer;
  transition: all var(--transition);
}
.btn-outline-white:hover { background: rgba(255,255,255,.12); border-color: var(--white); }
.btn-large { padding: 20px 40px; font-size: 1.1rem; }

/* STICKY BAR */
.sticky-bar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: var(--navy); padding: 10px 24px; transform: translateY(-100%); transition: transform .4s ease; }
.sticky-bar.visible { transform: translateY(0); }
.sticky-inner { max-width: 1140px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.sticky-label { color: rgba(255,255,255,.7); font-size: .875rem; font-weight: 500; }
.sticky-phone { color: var(--blue-light); font-size: 1rem; font-weight: 700; }
.sticky-phone:hover { color: var(--white); }

/* HERO */
.hero {
  position: relative;
  background: var(--navy);
  min-height: 100vh;
  padding: 80px 24px 60px;
  display: flex;
  align-items: center;
  background-image:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(37,99,235,.15) 0%, transparent 70%),
    radial-gradient(ellipse 50% 80% at 20% 80%, rgba(200,146,42,.08) 0%, transparent 60%);
  background-size: 400% 400%;
  animation: heroGradient 14s ease infinite;
}
@keyframes heroGradient {
  0%,100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}

.hero-overlay {
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.hero-overlay::before {
  content: ''; position: absolute; width: 500px; height: 500px; border-radius: 50%;
  background: var(--blue-accent); filter: blur(100px); opacity: .08;
  top: -100px; right: 10%; animation: floatOrb 10s ease-in-out infinite;
}
.hero-overlay::after {
  content: ''; position: absolute; width: 400px; height: 400px; border-radius: 50%;
  background: var(--gold); filter: blur(100px); opacity: .06;
  bottom: -100px; left: 5%; animation: floatOrb 8s ease-in-out infinite 4s;
}
@keyframes floatOrb { 0%,100% { transform: translateY(0) scale(1); } 50% { transform: translateY(-40px) scale(1.08); } }

.hero-content { position: relative; max-width: 1140px; margin: 0 auto; width: 100%; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }

/* LOGO */
.logo-wrap { margin-bottom: 28px; display: inline-flex; position: relative; }
.logo-wrap::before {
  content: ''; position: absolute; inset: -8px; border-radius: 50%;
  border: 2.5px solid transparent; border-top-color: var(--gold); border-right-color: var(--gold-light);
  animation: logoRingSpin 1.4s ease-out forwards; pointer-events: none;
}
.logo-wrap::after {
  content: ''; position: absolute; inset: -4px; border-radius: 50%;
  border: 1px solid rgba(200,146,42,.25);
  animation: logoRingFade 1.8s ease forwards; pointer-events: none;
}
@keyframes logoRingSpin {
  0%   { transform: rotate(0deg);   opacity: 0; }
  10%  { opacity: 1; }
  80%  { transform: rotate(360deg); opacity: 1; }
  100% { transform: rotate(360deg); opacity: 0; }
}
@keyframes logoRingFade {
  0%   { opacity: 0; }
  30%  { opacity: 1; }
  100% { opacity: 0; }
}

.logo-img {
  height: 160px; width: 160px; object-fit: contain; display: block;
  border-radius: 50%; background: var(--white); padding: 16px;
  box-shadow: 0 4px 24px rgba(10,20,50,.3), 0 0 0 1px rgba(200,146,42,.2), 0 0 40px rgba(200,146,42,.15);
  transition: transform .3s ease, box-shadow .3s ease;
  animation: logoReveal 1s ease forwards, logoGoldGlow 2.5s ease 1.5s forwards;
  image-rendering: -webkit-optimize-contrast;
}
.logo-img:hover { transform: scale(1.05); box-shadow: 0 8px 32px rgba(10,20,50,.4), 0 0 0 2px rgba(200,146,42,.5), 0 0 50px rgba(200,146,42,.25); }

@keyframes logoGoldGlow {
  0%   { box-shadow: 0 4px 24px rgba(10,20,50,.3), 0 0 0 1px rgba(200,146,42,.2), 0 0 0 rgba(200,146,42,0); }
  30%  { box-shadow: 0 4px 24px rgba(10,20,50,.3), 0 0 0 2px rgba(200,146,42,.5), 0 0 60px rgba(200,146,42,.35); }
  60%  { box-shadow: 0 4px 24px rgba(10,20,50,.3), 0 0 0 3px rgba(200,146,42,.6), 0 0 80px rgba(200,146,42,.25); }
  100% { box-shadow: 0 4px 24px rgba(10,20,50,.3), 0 0 0 1px rgba(200,146,42,.15), 0 0 30px rgba(200,146,42,.08); }
}
@keyframes logoReveal { 0% { opacity: 0; transform: translateY(-12px); } 100% { opacity: 1; transform: translateY(0); } }

.footer-logo-img { height: 60px; width: 60px; object-fit: contain; display: block; margin-bottom: 12px; border-radius: 50%; background: rgba(255,255,255,.95); padding: 8px; border: 1px solid rgba(37,99,235,.2); }

/* OFFER BADGE */
.offer-badge {
  display: inline-block; background: rgba(37,99,235,.15); border: 1px solid var(--blue-accent);
  color: var(--blue-light); font-size: .78rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; padding: 6px 16px; border-radius: 50px; margin-bottom: 20px;
  animation: badgePulse 3s ease-in-out infinite;
}
@keyframes badgePulse { 0%,100% { box-shadow: 0 0 0 0 rgba(37,99,235,0); } 50% { box-shadow: 0 0 0 8px rgba(37,99,235,.1); } }

.hero-headline { font-size: clamp(2.2rem,4.5vw,3.4rem); color: var(--white); margin-bottom: 20px; line-height: 1.12; animation: headlineIn 1s ease .3s both; }
@keyframes headlineIn { 0% { opacity: 0; transform: translateY(20px); } 100% { opacity: 1; transform: translateY(0); } }
.headline-accent { color: var(--blue-light); display: block; }

.hero-sub { color: rgba(255,255,255,.75); font-size: 1.08rem; margin-bottom: 28px; max-width: 500px; line-height: 1.7; }
.hero-sub em { color: var(--blue-light); font-style: normal; font-weight: 600; }

.hero-trust-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 20px; }
.pill { background: rgba(37,99,235,.15); border: 1px solid rgba(37,99,235,.3); color: rgba(255,255,255,.9); font-size: .83rem; font-weight: 600; padding: 7px 14px; border-radius: 50px; }

/* TRUST BADGES */
.trust-badges { display: flex; flex-wrap: wrap; gap: 10px; margin: 0 0 28px; }
.trust-badge { display: flex; align-items: center; gap: 8px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: 8px; padding: 8px 14px; transition: all .3s ease; }
.trust-badge:hover { background: rgba(37,99,235,.15); border-color: rgba(37,99,235,.3); transform: translateY(-2px); }
.badge-icon { font-size: 1rem; }
.badge-text { color: rgba(255,255,255,.85); font-size: .8rem; font-weight: 600; white-space: nowrap; }

/* CALL BUTTON */
.btn-call-hero { display: inline-flex; align-items: center; gap: 14px; background: var(--blue-accent); color: var(--white); font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; padding: 16px 28px; border-radius: 10px; font-size: .95rem; box-shadow: 0 4px 24px rgba(37,99,235,.4); transition: all var(--transition); animation: heartbeat 2.4s ease-in-out infinite; }
.btn-call-hero:hover { background: var(--blue-dark); transform: translateY(-2px); }
.btn-call-hero .call-icon { font-size: 1.4rem; }
.btn-call-hero small { display: block; font-size: .72rem; font-weight: 400; opacity: .85; letter-spacing: .06em; text-transform: uppercase; }
@keyframes heartbeat { 0%,100% { transform: scale(1); } 14% { transform: scale(1.04); } 28% { transform: scale(1); } 42% { transform: scale(1.03); } }

/* FORM CARD */
@media (min-width: 961px) { .sticky-form { position: sticky; top: 24px; align-self: start; } }

.form-card { background: var(--white); border-radius: var(--radius-lg); padding: 40px 36px; box-shadow: var(--shadow-lg); position: relative; overflow: hidden; transition: box-shadow .4s ease, transform .4s ease; animation: cardSlideIn 1s ease .5s both; }
.form-card:hover { box-shadow: 0 32px 80px rgba(10,20,50,.2), 0 0 0 1px rgba(37,99,235,.15); transform: translateY(-3px); }
.form-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--blue-accent), var(--blue-light), var(--blue-accent)); background-size: 200% 100%; animation: shimmerBar 3s linear infinite; }
@keyframes shimmerBar { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }
@keyframes cardSlideIn { 0% { opacity: 0; transform: translateX(30px); } 100% { opacity: 1; transform: translateX(0); } }

.form-header { margin-bottom: 28px; }
.form-header h2 { font-size: 1.6rem; color: var(--navy); margin-bottom: 6px; }
.form-header h2 span { color: var(--blue-accent); }
.form-header p { color: var(--text-mid); font-size: .9rem; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
form { display: flex; flex-direction: column; gap: 16px; }
label { font-size: .82rem; font-weight: 700; color: var(--text-dark); letter-spacing: .02em; }
input, select { font-family: 'Plus Jakarta Sans', sans-serif; font-size: .95rem; color: var(--text-dark); background: var(--cream); border: 1.5px solid var(--border); border-radius: 8px; padding: 11px 14px; transition: border-color var(--transition), box-shadow var(--transition); -webkit-appearance: none; appearance: none; width: 100%; }
input::placeholder { color: var(--text-light); }
input:focus, select:focus { outline: none; border-color: var(--blue-accent); box-shadow: 0 0 0 3px rgba(37,99,235,.12); background: var(--white); }
input.error, select.error { border-color: var(--red); }

.btn-submit { background: linear-gradient(135deg, var(--blue-accent) 0%, var(--blue-dark) 100%); color: var(--white); font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: 1.05rem; padding: 18px 24px; border-radius: 10px; border: none; cursor: pointer; width: 100%; transition: all var(--transition); box-shadow: 0 6px 24px rgba(37,99,235,.4); margin-top: 4px; position: relative; overflow: hidden; }
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 10px 36px rgba(37,99,235,.5); }
.btn-submit:disabled { opacity: .7; cursor: not-allowed; transform: none; }
.form-disclaimer { font-size: .78rem; color: var(--text-light); text-align: center; }
.form-success { text-align: center; padding: 24px 0; }
.success-icon { font-size: 3.5rem; margin-bottom: 16px; }
.form-success h3 { font-size: 1.6rem; color: var(--navy); margin-bottom: 12px; }
.form-success p { color: var(--text-mid); margin-bottom: 24px; font-size: .95rem; }
.btn-call-success { display: inline-block; background: var(--blue-accent); color: var(--white); font-weight: 700; font-size: 1.15rem; padding: 14px 32px; border-radius: 8px; transition: all var(--transition); }
.btn-call-success:hover { background: var(--blue-dark); }

/* TRUST BAR */
.trust-bar { background: var(--navy-light); padding: 32px 24px; border-top: 1px solid rgba(255,255,255,.06); position: relative; overflow: hidden; }
.trust-bar::before { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 2px; background: linear-gradient(90deg, transparent, var(--blue-accent), transparent); animation: scanLine 4s linear infinite; }
@keyframes scanLine { 0% { left: -100%; } 100% { left: 100%; } }
.trust-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 40px; }
.trust-item { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.trust-num { font-family: 'Fraunces', serif; font-size: 1.8rem; font-weight: 700; color: var(--blue-light); line-height: 1; }
.trust-num:hover { text-shadow: 0 0 20px rgba(59,130,246,.6); }
.trust-label { font-size: .78rem; font-weight: 600; color: rgba(255,255,255,.6); letter-spacing: .06em; text-transform: uppercase; }

/* FEATURED IN */
.featured-in { background: var(--white); padding: 48px 24px; border-bottom: 1px solid var(--border); }
.featured-label { text-align: center; font-size: .75rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; color: var(--text-light); margin-bottom: 28px; }
.featured-grid { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 24px 40px; }
.featured-item { display: flex; align-items: center; }

/* Media logos */
.featured-logo { font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 800; transition: all .3s ease; }
.featured-logo:hover { opacity: .7; transform: scale(1.05); }
.realtor-logo { font-size: 1.3rem; color: #d52b1e; }
.realtor-logo span { color: var(--text-dark); }
.insider-logo { font-size: .95rem; font-weight: 900; color: var(--text-dark); line-height: 1.2; text-align: center; }
.yahoo-logo { font-size: 1.3rem; color: #6001d2; }
.yahoo-logo span { display: block; font-size: .7rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--text-mid); }
.zillow-logo { font-size: 1.3rem; color: #006aff; font-style: italic; }

/* BENEFITS */
.benefits { background: var(--cream); }
.benefits-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.benefit-card { background: var(--white); border-radius: var(--radius); padding: 36px 28px; box-shadow: var(--shadow-sm); border: 1px solid var(--border); transition: transform var(--transition), box-shadow var(--transition); position: relative; overflow: hidden; }
.benefit-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.benefit-card::after { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(90deg, transparent, rgba(37,99,235,.05), transparent); transition: left .5s ease; }
.benefit-card:hover::after { left: 100%; }
.benefit-icon { font-size: 2.2rem; margin-bottom: 16px; display: inline-block; transition: transform .3s ease; }
.benefit-card:hover .benefit-icon { transform: scale(1.2) rotate(-5deg); }
.benefit-card h3 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.benefit-card p { color: var(--text-mid); font-size: .9rem; line-height: 1.7; }

/* PROCESS */
.process { background: var(--white); }
.steps-wrap { display: flex; align-items: stretch; gap: 0; margin-bottom: 52px; }
.step { flex: 1; background: var(--cream); border-radius: var(--radius); padding: 40px 32px; position: relative; border: 1px solid var(--border); }
.step-connector { display: flex; align-items: center; padding: 0 4px; flex-shrink: 0; }
.step-connector::after { content: '→'; color: var(--blue-accent); font-size: 1.8rem; }
.step-number { font-family: 'Fraunces', serif; font-size: 3.5rem; font-weight: 900; color: var(--blue-accent); opacity: .2; line-height: 1; margin-bottom: 12px; }
.step:hover .step-number { opacity: .4; text-shadow: 0 0 30px rgba(37,99,235,.4); transition: all .3s ease; }
.step-body h3 { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.step-body p { color: var(--text-mid); font-size: .9rem; line-height: 1.7; }
.step-body strong { color: var(--navy); }
.process-cta { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }

/* SITUATIONS */
.situations { background: var(--navy); }
.situations .section-label { color: var(--blue-light); }
.situations .section-headline { color: var(--white); }
.situations .section-sub { color: rgba(255,255,255,.65); }
.situations-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }
.situation-item { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: 10px; padding: 20px 18px; display: flex; flex-direction: column; align-items: flex-start; gap: 10px; transition: all var(--transition); }
.situation-item:hover { background: rgba(37,99,235,.15); border-color: rgba(37,99,235,.4); transform: translateY(-3px) scale(1.02); }
.situation-item:hover .sit-icon { animation: iconBounce .4s ease; }
@keyframes iconBounce { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }
.sit-icon { font-size: 1.6rem; }
.situation-item span:last-child { color: rgba(255,255,255,.85); font-size: .88rem; font-weight: 500; line-height: 1.4; }

/* COMPARISON */
.comparison { background: var(--cream); }
.comparison-table-wrap { overflow-x: auto; border-radius: var(--radius); box-shadow: var(--shadow-md); margin-bottom: 40px; }
.comparison-table { width: 100%; border-collapse: collapse; background: var(--white); min-width: 600px; }
.comparison-table th, .comparison-table td { padding: 18px 22px; text-align: left; border-bottom: 1px solid var(--border); font-size: .92rem; }
.comparison-table thead tr { background: var(--navy); }
.comparison-table th { color: var(--white); font-family: 'Plus Jakarta Sans', sans-serif; font-weight: 700; font-size: .88rem; }
.comparison-table th small { display: block; font-weight: 400; opacity: .7; font-size: .78rem; margin-top: 2px; }
.col-us { background: rgba(37,99,235,.05); }
.comparison-table tbody tr:nth-child(even) td { background: rgba(245,247,255,.5); }
.comparison-table tbody tr:nth-child(even) .col-us { background: rgba(37,99,235,.07); }
.col-feature { color: var(--text-dark); font-weight: 600; }
.us-val { color: var(--green); font-weight: 600; }
.agent-val { color: var(--text-mid); }
.check { color: var(--green); font-size: 1.1em; margin-right: 4px; }
.cross { color: var(--red); font-size: 1.1em; margin-right: 4px; }
.comparison-cta { text-align: center; }



/* WHO WE ARE */
.why-us { background: var(--white); }
.why-us-inner { display: grid; grid-template-columns: 1fr 1.3fr; gap: 72px; align-items: center; }
.why-photo-wrap { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 24px 64px rgba(10,20,50,.22); }
.why-photo-wrap::after { content: ''; position: absolute; inset: 0; background: linear-gradient(120deg, transparent 0%, transparent 40%, rgba(255,255,255,.18) 50%, transparent 60%, transparent 100%); background-size: 200% 100%; background-position: 200% 0; transition: background-position .7s ease; pointer-events: none; }
.why-photo-wrap:hover::after { background-position: -200% 0; }
.why-photo-wrap::before { content: ''; position: absolute; inset: 0; border-radius: var(--radius-lg); border: 2px solid transparent; transition: border-color var(--transition); z-index: 1; pointer-events: none; }
.why-photo-wrap:hover::before { border-color: rgba(37,99,235,.5); }
.why-photo { width: 100%; display: block; border-radius: var(--radius-lg) var(--radius-lg) 0 0; object-fit: cover; object-position: center top; aspect-ratio: 4/3; transition: transform .6s ease; }
.why-photo-wrap:hover .why-photo { transform: scale(1.03); }
.team-caption { background: var(--navy); border-radius: 0 0 var(--radius-lg) var(--radius-lg); padding: 18px 24px; display: flex; align-items: center; gap: 14px; }
.team-caption-icon { font-size: 1.6rem; flex-shrink: 0; }
.team-caption-text strong { display: block; color: var(--blue-light); font-family: 'Plus Jakarta Sans', sans-serif; font-size: .88rem; font-weight: 700; margin-bottom: 3px; }
.team-caption-text span { color: rgba(255,255,255,.6); font-size: .78rem; line-height: 1.5; }
.why-copy p { color: var(--text-mid); margin-bottom: 16px; font-size: .97rem; line-height: 1.75; }
.why-details { margin-top: 32px; display: flex; flex-direction: column; gap: 12px; }
.detail-item { display: flex; align-items: center; gap: 12px; font-size: .9rem; color: var(--text-mid); }
.detail-item a { color: var(--navy); font-weight: 600; }
.detail-item a:hover { color: var(--blue-accent); }
.detail-icon { font-size: 1.1rem; }

/* TESTIMONIALS */
.testimonials { background: var(--cream); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.testimonial-card { background: var(--white); border-radius: var(--radius); padding: 36px 28px; box-shadow: var(--shadow-sm); border: 1px solid var(--border); transition: transform var(--transition), box-shadow var(--transition); position: relative; }
.testimonial-card::before { content: '"'; position: absolute; top: 20px; right: 28px; font-family: 'Fraunces', serif; font-size: 5rem; color: var(--blue-accent); opacity: .1; line-height: 1; }
.testimonial-card:hover { transform: translateY(-6px) scale(1.01); box-shadow: var(--shadow-md); }
.stars { color: #f59e0b; font-size: 1.1rem; margin-bottom: 16px; }
.testimonial-card:hover .stars { animation: starShimmer .6s ease; }
@keyframes starShimmer { 0%,100% { color: #f59e0b; } 50% { color: #fbbf24; text-shadow: 0 0 12px rgba(251,191,36,.6); } }
.testimonial-card p { color: var(--text-mid); font-size: .92rem; line-height: 1.75; margin-bottom: 24px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%); display: flex; align-items: center; justify-content: center; color: var(--blue-light); font-size: .8rem; font-weight: 700; flex-shrink: 0; }
.testimonial-author strong { display: block; font-size: .9rem; color: var(--navy); }
.testimonial-author span { font-size: .8rem; color: var(--text-light); }

/* FAQ */
.faq { background: var(--white); }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; max-width: 960px; margin: 0 auto; }
.faq-item { border: 1.5px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: border-color .3s ease, box-shadow .3s ease; }
.faq-item:hover { border-color: rgba(37,99,235,.4); }
.faq-item.open { border-color: var(--blue-accent); box-shadow: 0 4px 20px rgba(37,99,235,.1); }
.faq-q { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 20px 24px; background: none; border: none; cursor: pointer; text-align: left; font-family: 'Plus Jakarta Sans', sans-serif; font-size: .95rem; font-weight: 600; color: var(--navy); transition: background var(--transition); }
.faq-q:hover { background: var(--cream); }
.faq-item.open .faq-q { background: rgba(37,99,235,.05); }
.faq-arrow { font-size: 1.1rem; color: var(--blue-accent); transition: transform var(--transition); flex-shrink: 0; }
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.faq-item.open .faq-a { max-height: 200px; }
.faq-a p { padding: 0 24px 20px; color: var(--text-mid); font-size: .9rem; line-height: 1.75; }

/* FINAL CTA */
.final-cta { background: var(--navy); background-image: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(37,99,235,.12) 0%, transparent 70%); }
.cta-box { text-align: center; max-width: 780px; margin: 0 auto; }
.cta-badge { display: inline-block; background: rgba(37,99,235,.15); border: 1px solid var(--blue-accent); color: var(--blue-light); font-size: .78rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; padding: 7px 18px; border-radius: 50px; margin-bottom: 24px; }
.cta-box h2 { font-size: clamp(1.9rem,4vw,3rem); color: var(--white); margin-bottom: 20px; }
.cta-box p { color: rgba(255,255,255,.7); font-size: 1.05rem; line-height: 1.75; margin-bottom: 40px; }
.cta-actions { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; margin-bottom: 32px; }
.btn-primary.btn-large { animation: ctaGlow 3s ease-in-out infinite; }
@keyframes ctaGlow { 0%,100% { box-shadow: 0 4px 20px rgba(37,99,235,.35); } 50% { box-shadow: 0 8px 40px rgba(37,99,235,.65); } }
.cta-small { color: rgba(255,255,255,.5) !important; font-size: .82rem !important; margin-bottom: 0 !important; line-height: 2 !important; }

/* FOOTER */
.footer { background: #060d20; padding: 40px 24px; color: rgba(255,255,255,.45); font-size: .85rem; }
.footer-inner { display: flex; justify-content: space-between; align-items: flex-start; gap: 32px; flex-wrap: wrap; }
.footer-brand p { margin-bottom: 4px; }
.footer-brand a { color: rgba(255,255,255,.6); }
.footer-brand a:hover { color: var(--blue-light); }
.footer-copy { text-align: right; }
.footer-copy p { margin-bottom: 6px; }
.footer-disclaimer { font-size: .78rem; opacity: .6; max-width: 320px; }

/* MOBILE STICKY CTA */
.mobile-sticky-cta { display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 999; background: var(--navy); padding: 12px 16px; gap: 12px; border-top: 1px solid rgba(255,255,255,.1); box-shadow: 0 -4px 24px rgba(0,0,0,.3); }
.mobile-cta-btn { flex: 1; background: var(--blue-accent); color: var(--white); font-weight: 700; font-size: .9rem; padding: 14px; border-radius: 8px; text-align: center; transition: background var(--transition); }
.mobile-cta-btn:hover { background: var(--blue-dark); }
.mobile-cta-call { flex: 1; background: var(--green); color: var(--white); font-weight: 700; font-size: .9rem; padding: 14px; border-radius: 8px; text-align: center; }

/* TOAST */
.toast-container { position: fixed; bottom: 90px; left: 20px; z-index: 9999; display: flex; flex-direction: column; gap: 10px; pointer-events: none; }
.toast { background: var(--white); border-radius: 12px; padding: 14px 18px; display: flex; align-items: center; gap: 12px; box-shadow: 0 8px 32px rgba(10,20,50,.18); border-left: 3px solid var(--blue-accent); max-width: 300px; pointer-events: all; animation: toastSlideIn .4s cubic-bezier(.34,1.56,.64,1) forwards; }
.toast.hiding { animation: toastSlideOut .3s ease forwards; }
@keyframes toastSlideIn { 0% { transform: translateX(-120%); opacity: 0; } 100% { transform: translateX(0); opacity: 1; } }
@keyframes toastSlideOut { 0% { transform: translateX(0); opacity: 1; } 100% { transform: translateX(-120%); opacity: 0; } }
.toast-avatar { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, var(--navy), var(--navy-light)); display: flex; align-items: center; justify-content: center; color: var(--blue-light); font-size: .75rem; font-weight: 700; flex-shrink: 0; }
.toast-body { flex: 1; }
.toast-name { font-size: .82rem; font-weight: 700; color: var(--navy); display: block; }
.toast-action { font-size: .75rem; color: var(--text-mid); display: block; }
.toast-time { font-size: .7rem; color: var(--text-light); }

/* ANIMATIONS */
.fade-in { opacity: 0; transform: translateY(24px); animation: fadeInUp .8s ease forwards; }
.delay-1 { animation-delay: .2s; }
.delay-2 { animation-delay: .4s; }
.delay-3 { animation-delay: .6s; }
@keyframes fadeInUp { to { opacity: 1; transform: translateY(0); } }

.scroll-reveal { opacity: 0; transform: translateY(30px) scale(.98); transition: opacity .7s ease, transform .7s ease; }
.scroll-reveal.visible { opacity: 1; transform: translateY(0) scale(1); }
.scroll-reveal.delay-1 { transition-delay: .15s; }
.scroll-reveal.delay-2 { transition-delay: .3s; }
.scroll-reveal.delay-3 { transition-delay: .45s; }

.mobile-sticky-cta { animation: slideUpCta .4s ease forwards; }
@keyframes slideUpCta { 0% { transform: translateY(100%); } 100% { transform: translateY(0); } }

@media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; } }

/* RESPONSIVE */
@media (max-width: 960px) {
  .hero-content { grid-template-columns: 1fr; gap: 40px; }
  .hero { min-height: auto; padding: 72px 24px 48px; }
  .benefits-grid { grid-template-columns: 1fr 1fr; }
  .situations-grid { grid-template-columns: repeat(3,1fr); }
  .why-us-inner { grid-template-columns: 1fr; gap: 40px; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; }
  .footer-copy { text-align: left; }
}
@media (max-width: 720px) {
  .section-pad { padding: 64px 0; }
  .benefits-grid { grid-template-columns: 1fr; }
  .situations-grid { grid-template-columns: 1fr 1fr; }
  .steps-wrap { flex-direction: column; }
  .step-connector { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .form-card { padding: 28px 20px; }
  .mobile-sticky-cta { display: flex; }
  body { padding-bottom: 72px; }
  .logo-img { height: 120px; width: 120px; }
  input, select { font-size: 16px !important; }
  .featured-grid { gap: 16px 24px; }
}
@media (max-width: 480px) {
  .hero-headline { font-size: 1.9rem; }
  .situations-grid { grid-template-columns: 1fr; }
  .btn-primary, .btn-secondary, .btn-outline-white { width: 100%; justify-content: center; }
  .logo-img { height: 100px; width: 100px; }
}

/* ── FEATURED LOGO ANIMATIONS — staggered entrance ───────────── */
.slide-in {
  opacity: 0;
  transform: translateY(30px) scale(.7);
  filter: blur(8px);
  animation: logoEntrance .8s cubic-bezier(.34,1.56,.64,1) forwards;
}
.slide-in.delay-1 { animation-delay: .25s; }
.slide-in.delay-2 { animation-delay: .5s; }
.slide-in.delay-3 { animation-delay: .75s; }

@keyframes logoEntrance {
  0%   { opacity: 0; transform: translateY(30px) scale(.7); filter: blur(8px); }
  60%  { opacity: 1; transform: translateY(-4px) scale(1.05); filter: blur(0); }
  100% { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
}

/* Subtle continuous float after entrance */
.slide-in { animation: logoEntrance .8s cubic-bezier(.34,1.56,.64,1) forwards, logoFloat 4s ease-in-out 2s infinite; }
@keyframes logoFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-4px); }
}

/* Hover glow per logo */
.featured-item {
  transition: transform .3s ease;
  cursor: default;
}
.featured-item:hover {
  transform: scale(1.12);
}
.featured-item:hover .featured-logo {
  text-shadow: 0 0 20px rgba(37,99,235,.3);
}



/* ══════════════════════════════════════════════════════════════════
   MOBILE PREMIUM POLISH — Tasteful, not overdone
══════════════════════════════════════════════════════════════════ */

/* ── SECTION DIVIDERS — gradient line between sections ───────── */
.trust-bar, .featured-in, .benefits, .process, .comparison,
.where-we-buy, .why-us, .testimonials, .faq {
  position: relative;
}
.benefits::before, .process::before, .comparison::before,
.where-we-buy::before, .testimonials::before, .faq::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 80px; height: 3px;
  background: linear-gradient(90deg, transparent, var(--blue-accent), transparent);
  border-radius: 2px;
}

/* ── TAP FEEDBACK — active states for mobile ─────────────────── */
.btn-primary:active { transform: scale(.96); box-shadow: 0 2px 8px rgba(37,99,235,.3); }
.btn-secondary:active { transform: scale(.96); }
.btn-call-hero:active { transform: scale(.96); }
.benefit-card:active { transform: scale(.98); }
.city-card:active { transform: scale(.97); }
.situation-item:active { transform: scale(.97); }
.testimonial-card:active { transform: scale(.98); }
.faq-q:active { background: rgba(37,99,235,.08); }
.trust-badge:active { transform: scale(.95); background: rgba(37,99,235,.2); }

/* ── GRADIENT GLOW CARDS — subtle blue edge glow on key cards ── */
.form-card {
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(37,99,235,.06);
}

/* ── HERO IMPROVEMENTS — mobile-first premium feel ───────────── */
@media (max-width: 720px) {
  .hero {
    padding: 48px 20px 40px;
    text-align: center;
  }
  .hero-copy { order: 2; }
  .hero-form-wrap { order: 1; }
  .hero-content { gap: 28px; }

  /* Center everything on mobile hero */
  .logo-wrap { justify-content: center; width: 100%; }
  .offer-badge { display: inline-block; }
  .hero-headline { text-align: center; }
  .hero-sub { text-align: center; margin-left: auto; margin-right: auto; }
  .hero-trust-pills { justify-content: center; }
  .trust-badges { justify-content: center; }
  .btn-call-hero { width: 100%; justify-content: center; }

  /* Gradient accent line under hero */
  .hero::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--blue-accent), var(--blue-light), var(--blue-accent));
    background-size: 200% 100%;
    animation: shimmerBar 3s linear infinite;
  }

  /* Trust bar — horizontal scroll on very small screens */
  .trust-grid {
    gap: 16px 20px;
  }

  /* Section labels — centered with dot accent */
  .section-label { text-align: center; }
  .section-label::before {
    content: '●';
    margin-right: 8px;
    color: var(--blue-accent);
    font-size: .5rem;
    vertical-align: middle;
  }

  /* Benefits cards — subtle gradient top border */
  .benefit-card {
    border-top: 2px solid transparent;
    background-image: linear-gradient(var(--white), var(--white)),
                      linear-gradient(135deg, var(--blue-accent), var(--blue-light));
    background-origin: border-box;
    background-clip: padding-box, border-box;
    border-top-left-radius: var(--radius);
    border-top-right-radius: var(--radius);
  }

  /* Benefit icon — gradient background circle */
  .benefit-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(37,99,235,.08);
    border-radius: 14px;
    margin-bottom: 16px;
    font-size: 1.8rem;
  }

  /* Process steps — connected dots on mobile */
  .steps-wrap { gap: 0; position: relative; padding-left: 24px; }
  .steps-wrap::before {
    content: '';
    position: absolute;
    left: 11px; top: 40px; bottom: 40px;
    width: 2px;
    background: linear-gradient(180deg, var(--blue-accent), rgba(37,99,235,.2));
  }
  .step {
    position: relative;
    margin-bottom: 16px;
    border-left: none;
  }
  .step::before {
    content: '';
    position: absolute;
    left: -20px; top: 40px;
    width: 12px; height: 12px;
    border-radius: 50%;
    background: var(--blue-accent);
    border: 2px solid var(--cream);
    box-shadow: 0 0 0 3px rgba(37,99,235,.2);
  }

  /* Comparison table — better mobile scroll hint */
  .comparison-table-wrap {
    position: relative;
  }
  .comparison-table-wrap::after {
    content: '← scroll →';
    position: absolute;
    bottom: -24px; left: 50%;
    transform: translateX(-50%);
    font-size: .7rem;
    font-weight: 600;
    color: var(--text-light);
    letter-spacing: .1em;
    text-transform: uppercase;
  }

  /* Situation cards — 2-col with alternating accent */
  .situation-item:nth-child(odd) { border-left: 2px solid rgba(37,99,235,.3); }
  .situation-item:nth-child(even) { border-right: 2px solid rgba(37,99,235,.3); }

  /* Testimonial cards — quote mark more visible */
  .testimonial-card::before { font-size: 4rem; right: 20px; top: 12px; opacity: .15; }


  /* FAQ on mobile — rounded with subtle shadow */
  .faq-item {
    box-shadow: 0 1px 4px rgba(10,20,50,.04);
  }

  /* CTA section — extra padding and bigger text */
  .final-cta .cta-box { padding: 0 8px; }
  .final-cta .cta-box h2 { font-size: 1.7rem; }

  /* Mobile sticky CTA — glass morphism effect */
  .mobile-sticky-cta {
    background: rgba(10,20,50,.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid rgba(37,99,235,.2);
  }

  /* Mobile CTA buttons — gradient instead of flat */
  .mobile-cta-btn {
    background: linear-gradient(135deg, var(--blue-accent) 0%, var(--blue-dark) 100%);
    box-shadow: 0 2px 12px rgba(37,99,235,.3);
  }
  .mobile-cta-call {
    background: linear-gradient(135deg, var(--green) 0%, #15803d 100%);
    box-shadow: 0 2px 12px rgba(22,163,74,.3);
  }

  /* Toast on mobile — bottom center, wider */
  .toast-container {
    bottom: 80px;
    left: 16px;
    right: 16px;
  }
  .toast {
    max-width: 100%;
    border-radius: 14px;
    backdrop-filter: blur(8px);
    border: 1px solid var(--border);
  }

  /* Smooth font scaling */
  body { font-size: 15px; }
  .hero-headline { font-size: clamp(1.7rem, 7vw, 2.4rem); }
  .headline-accent { font-size: clamp(1.5rem, 6.5vw, 2.2rem); }

  /* Photo section — full bleed on mobile */
  .why-us { padding-left: 0; padding-right: 0; }
  .why-us-inner { gap: 32px; }
  .why-photo-wrap { border-radius: 0; margin: 0 -24px; }
  .why-photo { border-radius: 0; aspect-ratio: 16/10; }
  .team-caption { border-radius: 0; margin: 0; padding: 16px 24px; }
  .why-copy { padding: 0 24px; }
}

/* ── EXTRA SMALL MOBILE — tighter polish ─────────────────────── */
@media (max-width: 400px) {
  .hero { padding: 40px 16px 32px; }
  .form-card { padding: 24px 16px; }
  .logo-img { height: 88px; width: 88px; padding: 10px; }
  .trust-badges { gap: 6px; }
  .trust-badge { padding: 6px 10px; }
  .badge-text { font-size: .72rem; }
  .pill { font-size: .75rem; padding: 6px 10px; }
  .offer-badge { font-size: .72rem; padding: 5px 12px; }
  .btn-call-hero { padding: 14px 20px; font-size: .88rem; }
  .section-headline { font-size: 1.5rem; }
  .benefit-card { padding: 28px 20px; }
  .situation-item { padding: 16px 14px; }
  .city-card { padding: 16px; }
  .testimonial-card { padding: 28px 20px; }
  .faq-q { padding: 16px 18px; font-size: .88rem; }
}

/* ── TABLET — in-between polish ──────────────────────────────── */
@media (min-width: 721px) and (max-width: 960px) {
  .hero { padding: 60px 24px 48px; }
  .hero-content { gap: 40px; }
  .logo-img { height: 130px; width: 130px; }

  /* Benefit cards — gradient top accent */
  .benefit-card {
    border-top: 2px solid transparent;
    background-image: linear-gradient(var(--white), var(--white)),
                      linear-gradient(135deg, var(--blue-accent), var(--blue-light));
    background-origin: border-box;
    background-clip: padding-box, border-box;
  }
}

/* ── SMOOTH SCROLL SNAP for mobile — optional but premium ───── */
@media (max-width: 720px) {
  /* Horizontal pill scroll for trust badges */
  .hero-trust-pills {
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 4px;
  }
  .hero-trust-pills::-webkit-scrollbar { display: none; }

  .trust-badges {
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 4px;
  }
  .trust-badges::-webkit-scrollbar { display: none; }
}

/* ── FEATURED LOGOS — responsive sizing ──────────────────────── */
@media (max-width: 720px) {
  .featured-in { padding: 36px 20px; }
  .featured-grid { gap: 20px 28px; }
  .realtor-logo { font-size: 1.1rem; }
  .insider-logo { font-size: .82rem; }
  .yahoo-logo { font-size: 1.1rem; }
  .zillow-logo { font-size: 1.1rem; }

  /* Featured logos — same entrance animation works on mobile */
  .slide-in { animation: logoEntrance .8s cubic-bezier(.34,1.56,.64,1) forwards; }
  .slide-in.delay-1 { animation-delay: .2s; }
  .slide-in.delay-2 { animation-delay: .4s; }
  .slide-in.delay-3 { animation-delay: .6s; }
}

/* ── SAFE AREA for iPhones with notch ────────────────────────── */
@supports (padding-bottom: env(safe-area-inset-bottom)) {
  .mobile-sticky-cta {
    padding-bottom: calc(12px + env(safe-area-inset-bottom));
  }
  body {
    padding-bottom: calc(72px + env(safe-area-inset-bottom));
  }
}


/* ══════════════════════════════════════════════════════════════════
   CRITICAL MOBILE FIX — prevents all overflow issues
══════════════════════════════════════════════════════════════════ */
html, body {
  max-width: 100vw;
  overflow-x: hidden;
}

@media (max-width: 720px) {
  /* GLOBAL — nothing escapes the viewport */
  *, *::before, *::after { max-width: 100%; }
  .container { padding: 0 16px; }

  /* HERO — fully contained */
  .hero {
    padding: 40px 16px 32px;
    min-height: auto;
    text-align: center;
  }
  .hero-content {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .hero-copy { order: 2; }
  .hero-form-wrap { order: 1; width: 100%; }

  /* Logo — centered, smaller */
  .logo-wrap {
    justify-content: center;
    width: 100%;
    display: flex;
  }
  .logo-img { height: 110px; width: 110px; padding: 12px; }

  /* Headlines — centered, no overflow */
  .hero-headline {
    font-size: 1.8rem;
    text-align: center;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  .headline-accent { font-size: 1.6rem; }
  .hero-sub {
    text-align: center;
    font-size: .95rem;
    margin-left: auto;
    margin-right: auto;
  }
  .offer-badge {
    font-size: .7rem;
    padding: 5px 12px;
    max-width: 100%;
  }

  /* Pills — wrap and center, never overflow */
  .hero-trust-pills {
    justify-content: center;
    overflow: hidden;
    flex-wrap: wrap;
  }
  .pill {
    font-size: .75rem;
    padding: 6px 10px;
    white-space: normal;
    text-align: center;
  }

  /* Trust badges — wrap, center */
  .trust-badges {
    justify-content: center;
    flex-wrap: wrap;
    overflow: hidden;
  }
  .trust-badge { padding: 6px 10px; }
  .badge-text { font-size: .72rem; white-space: normal; }

  /* Call button — full width */
  .btn-call-hero {
    width: 100%;
    justify-content: center;
    animation: none;
    padding: 14px 20px;
  }

  /* FORM CARD — full width, no overflow */
  .form-card {
    padding: 24px 16px;
    border-radius: 16px;
    width: 100%;
    max-width: 100%;
  }
  .form-header { text-align: center; }
  .form-header h2 { font-size: 1.3rem; text-align: center; }
  .form-header p { text-align: center; font-size: .85rem; }

  /* Form elements — stack single column */
  .form-row { grid-template-columns: 1fr; gap: 14px; }
  form { gap: 14px; }
  label { text-align: left; font-size: .8rem; }
  input, select {
    font-size: 16px !important;
    padding: 12px 14px !important;
    width: 100% !important;
    max-width: 100% !important;
  }
  .btn-submit {
    padding: 16px;
    font-size: 1rem;
  }
  .form-disclaimer { font-size: .72rem; }

  /* TRUST BAR */
  .trust-bar { padding: 24px 16px; }
  .trust-grid { gap: 16px 20px; }
  .trust-num { font-size: 1.5rem; }

  /* FEATURED IN */
  .featured-in { padding: 32px 16px; }
  .featured-grid { gap: 16px 24px; }
  .realtor-logo { font-size: 1rem; }
  .insider-logo { font-size: .8rem; }
  .yahoo-logo { font-size: 1rem; }
  .zillow-logo { font-size: 1rem; }

  /* SECTIONS — proper padding */
  .section-pad { padding: 56px 0; }
  .section-headline { font-size: 1.5rem; padding: 0 8px; }
  .section-sub { font-size: .92rem; padding: 0 8px; }
  .section-label { text-align: center; }

  /* BENEFITS */
  .benefits-grid { grid-template-columns: 1fr; gap: 16px; }
  .benefit-card { padding: 28px 20px; }
  .benefit-icon { font-size: 1.8rem; }

  /* PROCESS */
  .steps-wrap { flex-direction: column; gap: 16px; padding-left: 0; }
  .steps-wrap::before { display: none; }
  .step { padding: 28px 20px; }
  .step::before { display: none; }
  .step-connector { display: none; }
  .step-number { font-size: 2.5rem; }
  .process-cta { flex-direction: column; align-items: stretch; }
  .process-cta .btn-primary,
  .process-cta .btn-secondary { width: 100%; justify-content: center; }

  /* SITUATIONS */
  .situations-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .situation-item { padding: 16px 14px; }
  .sit-icon { font-size: 1.3rem; }
  .situation-item span:last-child { font-size: .8rem; }

  /* COMPARISON */
  .comparison-table-wrap { border-radius: 10px; }
  .comparison-table th,
  .comparison-table td { padding: 12px 10px; font-size: .78rem; }

  /* WHO WE ARE */
  .why-us-inner { grid-template-columns: 1fr; gap: 32px; }
  .why-us { padding-left: 0; padding-right: 0; }
  .why-photo-wrap { border-radius: 0; margin: 0; }
  .why-photo { border-radius: 0; aspect-ratio: 16/10; }
  .team-caption { border-radius: 0; padding: 14px 16px; }
  .team-caption-text strong { font-size: .82rem; }
  .team-caption-text span { font-size: .72rem; }
  .why-copy { padding: 0 16px; }
  .section-headline-left { font-size: 1.5rem; text-align: center; }
  .why-copy p { font-size: .9rem; }

  /* TESTIMONIALS */
  .testimonials-grid { grid-template-columns: 1fr; gap: 16px; }
  .testimonial-card { padding: 28px 20px; }
  .testimonial-card::before { font-size: 3rem; top: 12px; right: 16px; }

  /* FAQ */
  .faq-grid { grid-template-columns: 1fr; gap: 12px; }
  .faq-q { padding: 16px; font-size: .88rem; }
  .faq-a p { padding: 0 16px 16px; font-size: .85rem; }

  /* FINAL CTA */
  .cta-box h2 { font-size: 1.5rem; }
  .cta-box p { font-size: .92rem; }
  .cta-actions { flex-direction: column; align-items: stretch; }
  .cta-actions .btn-primary,
  .cta-actions .btn-outline-white { width: 100%; justify-content: center; }

  /* FOOTER */
  .footer { padding: 32px 16px; }
  .footer-inner { flex-direction: column; gap: 20px; }
  .footer-copy { text-align: left; }
  .footer-disclaimer { max-width: 100%; }

  /* MOBILE STICKY CTA */
  .mobile-sticky-cta {
    display: flex;
    padding: 10px 12px;
  }
  body { padding-bottom: 70px; }

  /* TOAST — full width on mobile */
  .toast-container { bottom: 76px; left: 12px; right: 12px; }
  .toast { max-width: 100%; }

  /* ALL BUTTONS — proper sizing */
  .btn-primary, .btn-secondary, .btn-outline-white {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
  }
}

/* EXTRA SMALL phones */
@media (max-width: 380px) {
  .hero { padding: 32px 12px 24px; }
  .logo-img { height: 90px; width: 90px; padding: 10px; }
  .hero-headline { font-size: 1.5rem; }
  .headline-accent { font-size: 1.3rem; }
  .form-card { padding: 20px 12px; }
  .situations-grid { grid-template-columns: 1fr; }
  .trust-grid { gap: 12px 16px; }
  .trust-num { font-size: 1.3rem; }
  .section-headline { font-size: 1.3rem; }
}

/* ══════════════════════════════════════════════════════════════════
   MOBILE EFFECTS — all the spunk, optimized for small screens
══════════════════════════════════════════════════════════════════ */
@media (max-width: 720px) {

  /* Logo gold glow — keep it */
  .logo-img {
    animation: logoReveal 1s ease forwards, logoGoldGlow 2.5s ease 1.5s forwards !important;
  }
  .logo-wrap::before {
    animation: logoRingSpin 1.4s ease-out forwards !important;
  }

  /* Offer badge pulse */
  .offer-badge { animation: badgePulse 3s ease-in-out infinite !important; }

  /* Hero headline slide in */
  .hero-headline { animation: headlineIn 1s ease .3s both !important; }

  /* Call button heartbeat */
  .btn-call-hero { animation: heartbeat 2.4s ease-in-out infinite !important; }

  /* Form card slide in */
  .form-card { animation: cardSlideIn 1s ease .5s both !important; }
  @keyframes mobileCardIn {
    0%   { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
  }
  .form-card { animation: mobileCardIn .8s ease .3s both !important; }

  /* Form top bar shimmer */
  .form-card::before { animation: shimmerBar 3s linear infinite !important; }

  /* Submit button pulse */
  .btn-submit:not(:disabled) {
    animation: ctaPulse 1.4s ease 8s 3 !important;
  }
  @keyframes ctaPulse {
    0%, 100% { box-shadow: 0 6px 24px rgba(37,99,235,.4); }
    50%      { box-shadow: 0 6px 48px rgba(37,99,235,.8), 0 0 0 8px rgba(37,99,235,.12); }
  }

  /* Trust bar scan line */
  .trust-bar::before { animation: scanLine 4s linear infinite !important; }

  /* Featured logos entrance */
  .slide-in { animation: logoEntrance .8s cubic-bezier(.34,1.56,.64,1) forwards !important; }
  .slide-in.delay-1 { animation-delay: .25s !important; }
  .slide-in.delay-2 { animation-delay: .5s !important; }
  .slide-in.delay-3 { animation-delay: .75s !important; }

  /* Benefit cards — icon bounce on tap */
  .benefit-card:active .benefit-icon { transform: scale(1.3) rotate(-8deg); }
  
  /* Benefit card sweep effect */
  .benefit-card::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(37,99,235,.05), transparent);
  }

  /* Scroll reveal — keep the scale effect */
  .scroll-reveal {
    opacity: 0;
    transform: translateY(24px) scale(.97);
    transition: opacity .6s ease, transform .6s ease !important;
  }
  .scroll-reveal.visible {
    opacity: 1;
    transform: translateY(0) scale(1) !important;
  }
  .scroll-reveal.delay-1 { transition-delay: .12s !important; }
  .scroll-reveal.delay-2 { transition-delay: .24s !important; }
  .scroll-reveal.delay-3 { transition-delay: .36s !important; }

  /* Situation items — bounce on tap */
  .situation-item:active .sit-icon { animation: iconBounce .4s ease !important; }

  /* Process step numbers — glow on visible */
  .step.visible .step-number {
    animation: numberGlow 1s ease forwards;
  }
  @keyframes numberGlow {
    0%   { opacity: .15; }
    50%  { opacity: .4; text-shadow: 0 0 20px rgba(37,99,235,.3); }
    100% { opacity: .2; text-shadow: none; }
  }

  /* Testimonial cards — float up */
  .testimonial-card.visible {
    animation: floatIn .6s ease forwards !important;
  }
  @keyframes floatIn {
    0%   { opacity: 0; transform: translateY(30px) scale(.97); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
  }

  /* Stars shimmer on tap */
  .testimonial-card:active .stars { animation: starShimmer .6s ease !important; }

  /* FAQ — smooth open glow */
  .faq-item.open { box-shadow: 0 4px 20px rgba(37,99,235,.1) !important; }

  /* CTA button glow */
  .final-cta .btn-primary { animation: ctaGlow 3s ease-in-out infinite !important; }
  @keyframes ctaGlow {
    0%, 100% { box-shadow: 0 4px 20px rgba(37,99,235,.35); }
    50%      { box-shadow: 0 8px 40px rgba(37,99,235,.65); }
  }

  /* Mobile sticky bar slide up */
  .mobile-sticky-cta { animation: slideUpCta .4s ease forwards !important; }

  /* Toast slide in */
  .toast { animation: toastSlideIn .4s cubic-bezier(.34,1.56,.64,1) forwards !important; }

  /* Floating orbs in hero — smaller on mobile */
  .hero-overlay::before {
    width: 250px !important; height: 250px !important;
    animation: floatOrb 10s ease-in-out infinite !important;
  }
  .hero-overlay::after {
    width: 200px !important; height: 200px !important;
    animation: floatOrb 8s ease-in-out infinite 4s !important;
  }

  /* Section divider lines */
  .benefits::before, .process::before, .comparison::before,
  .testimonials::before, .faq::before {
    content: '' !important;
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 60px; height: 3px;
    background: linear-gradient(90deg, transparent, var(--blue-accent), transparent) !important;
    border-radius: 2px;
  }
}
