/* =========================================================
   EASY SELL TODAY — Acquisitions Funnel Stylesheet
   ========================================================= */

:root {
  --navy: #0B2545;
  --navy-700: #13315C;
  --navy-50: #EEF2F8;
  --gold: #F59E0B;
  --gold-dark: #D97706;
  --green: #16A34A;
  --green-dark: #15803D;
  --ink: #0F172A;
  --slate: #475569;
  --line: #E2E8F0;
  --bg: #FFFFFF;
  --bg-alt: #F8FAFC;
  --danger: #DC2626;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 8px 24px rgba(11, 37, 69, 0.10);
  --shadow-lg: 0 20px 50px rgba(11, 37, 69, 0.18);
  --radius: 10px;
  --radius-lg: 16px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--navy);
  margin: 0 0 0.6em;
}
h1 { font-size: clamp(2.1rem, 4.5vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1em; }
a { color: var(--navy); }

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

/* ---------- NAV ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.95);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: var(--max);
  margin: 0 auto;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--navy);
  text-decoration: none;
  letter-spacing: -0.02em;
}
.brand-mark {
  width: 34px;
  height: 34px;
  background: var(--navy);
  color: var(--gold);
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 14px;
}
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--navy);
  font-weight: 700;
  text-decoration: none;
  font-size: 1rem;
}
.nav-phone:hover { color: var(--gold-dark); }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  font-weight: 700;
  font-size: 1.02rem;
  border-radius: 999px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--green);
  color: #fff;
  box-shadow: var(--shadow-md);
}
.btn-primary:hover { background: var(--green-dark); transform: translateY(-1px); }
.btn-gold {
  background: var(--gold);
  color: var(--navy);
}
.btn-gold:hover { background: var(--gold-dark); color: #fff; }
.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-outline:hover { background: var(--navy); color: #fff; }
.btn-block { display: flex; width: 100%; padding: 16px 22px; font-size: 1.08rem; }

/* ---------- HERO ---------- */
.hero {
  position: relative;
  background:
    linear-gradient(180deg, rgba(11,37,69,0.92) 0%, rgba(11,37,69,0.85) 100%),
    url("https://images.unsplash.com/photo-1568605114967-8130f3a36994?w=1920&q=70") center/cover;
  color: #fff;
  padding: 80px 0 60px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
}
.hero h1 { color: #fff; }
.hero h1 span { color: var(--gold); }
.hero-sub {
  font-size: 1.18rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 24px;
}
.hero-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: grid;
  gap: 8px;
}
.hero-bullets li {
  display: flex;
  gap: 10px;
  align-items: center;
  font-weight: 500;
  color: rgba(255,255,255,0.95);
}
.hero-bullets li::before {
  content: "✓";
  display: grid;
  place-items: center;
  width: 22px; height: 22px;
  background: var(--green);
  color: #fff;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 800;
  flex-shrink: 0;
}
.hero-trust {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  margin-top: 24px;
}
.hero-trust strong { color: var(--gold); font-size: 1.3rem; display: block; }

/* ---------- LEAD FORM ---------- */
.lead-form {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-lg);
  color: var(--ink);
}
.lead-form h3 {
  text-align: center;
  margin-bottom: 6px;
}
.lead-form .form-sub {
  text-align: center;
  color: var(--slate);
  font-size: 0.95rem;
  margin-bottom: 18px;
}
.field {
  margin-bottom: 12px;
}
.field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 5px;
  color: var(--navy);
}
.field input, .field select, .field textarea {
  width: 100%;
  padding: 12px 14px;
  font-size: 1rem;
  font-family: inherit;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.15);
}
.form-note {
  font-size: 0.78rem;
  color: var(--slate);
  text-align: center;
  margin-top: 10px;
}

/* ---------- TRUST BAR ---------- */
.trust-bar {
  background: var(--bg-alt);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
}
.trust-bar-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.trust-stat { padding: 0 12px; }
.trust-stat .num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 4px;
  letter-spacing: -0.03em;
}
.trust-stat .num span { color: var(--gold); }
.trust-stat .lbl {
  font-size: 0.85rem;
  color: var(--slate);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ---------- SECTIONS ---------- */
section { padding: 80px 0; }
section.alt { background: var(--bg-alt); }
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}
.section-head .eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold-dark);
  margin-bottom: 12px;
}
.section-head p { color: var(--slate); font-size: 1.1rem; }

/* ---------- 3-STEP PROCESS ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.step {
  position: relative;
  background: #fff;
  padding: 32px 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.step-num {
  display: grid;
  place-items: center;
  width: 56px; height: 56px;
  margin: 0 auto 18px;
  background: var(--navy);
  color: var(--gold);
  border-radius: 50%;
  font-size: 1.4rem;
  font-weight: 800;
}
.step h3 { color: var(--navy); }
.step p { color: var(--slate); margin: 0; }

/* ---------- WE BUY GRID ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover { border-color: var(--gold); transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card-icon {
  width: 48px; height: 48px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 16px;
}
.card h3 { margin-bottom: 8px; }
.card p { color: var(--slate); margin: 0; font-size: 0.97rem; }

/* ---------- COMPARISON TABLE ---------- */
.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 880px;
  margin: 0 auto;
}
.compare-col {
  border-radius: var(--radius-lg);
  padding: 32px;
  background: #fff;
  border: 1px solid var(--line);
}
.compare-col.win {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
  box-shadow: var(--shadow-lg);
  transform: scale(1.02);
}
.compare-col.win h3 { color: var(--gold); }
.compare-col.win li { color: rgba(255,255,255,0.92); }
.compare-col h3 { text-align: center; margin-bottom: 18px; }
.compare-col ul { list-style: none; padding: 0; margin: 0; }
.compare-col li {
  display: flex;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 0.97rem;
}
.compare-col:not(.win) li { border-bottom-color: var(--line); color: var(--slate); }
.compare-col li:last-child { border-bottom: none; }
.compare-col li::before {
  content: "✓";
  color: var(--green);
  font-weight: 800;
  flex-shrink: 0;
}
.compare-col:not(.win) li::before { content: "✗"; color: var(--danger); }

/* ---------- TESTIMONIALS ---------- */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.testimonial .stars {
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 12px;
  letter-spacing: 2px;
}
.testimonial blockquote {
  font-size: 1.02rem;
  margin: 0 0 16px;
  color: var(--ink);
  font-style: italic;
}
.testimonial .who {
  font-size: 0.9rem;
  color: var(--slate);
  border-top: 1px solid var(--line);
  padding-top: 12px;
}
.testimonial .who strong { color: var(--navy); display: block; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  margin-bottom: 12px;
  background: #fff;
  overflow: hidden;
}
.faq summary {
  padding: 18px 22px;
  cursor: pointer;
  font-weight: 700;
  color: var(--navy);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.04rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-size: 1.4rem;
  color: var(--gold);
  font-weight: 700;
  transition: transform 0.2s ease;
}
.faq[open] summary::after { content: "−"; }
.faq[open] { border-color: var(--gold); }
.faq-body {
  padding: 0 22px 18px;
  color: var(--slate);
  line-height: 1.65;
}

/* ---------- CTA BANNER ---------- */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-700) 100%);
  color: #fff;
  text-align: center;
  padding: 60px 24px;
  border-radius: var(--radius-lg);
}
.cta-banner h2 { color: #fff; }
.cta-banner h2 span { color: var(--gold); }
.cta-banner p { color: rgba(255,255,255,0.85); max-width: 600px; margin: 0 auto 28px; }
.cta-banner .btn-row { display: inline-flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

/* ---------- FOOTER ---------- */
footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding: 50px 0 30px;
  font-size: 0.92rem;
}
footer .container { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 40px; }
footer h4 { color: #fff; font-size: 1rem; margin-bottom: 14px; }
footer a { color: rgba(255,255,255,0.7); text-decoration: none; display: block; padding: 4px 0; }
footer a:hover { color: var(--gold); }
.footer-bottom {
  max-width: var(--max);
  margin: 36px auto 0;
  padding: 24px 24px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  text-align: center;
}

/* ---------- THANK YOU ---------- */
.ty-page {
  padding: 100px 0;
  text-align: center;
}
.ty-icon {
  width: 84px; height: 84px;
  margin: 0 auto 24px;
  background: var(--green);
  color: #fff;
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 2.5rem;
  font-weight: 800;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 860px) {
  .hero { padding: 50px 0 40px; }
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .trust-bar-inner { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .steps, .cards, .testimonials { grid-template-columns: 1fr; }
  .compare { grid-template-columns: 1fr; }
  .compare-col.win { transform: none; }
  footer .container { grid-template-columns: 1fr; gap: 28px; }
  section { padding: 56px 0; }
  .nav-phone span { display: none; }
}

/* Floating mobile CTA */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 16px; left: 16px; right: 16px;
  z-index: 60;
}
@media (max-width: 640px) {
  .mobile-cta { display: block; }
  body { padding-bottom: 80px; }
}
