/* ============================================
   Seller's Advantage – Trimmed Stylesheet
   ============================================ */

/* ---------- CSS Variables (Design Tokens) ---------- */
:root {
  --color-white: #ffffff;
  --color-black: #000000;
  --color-teal-dark: #0d625f;
  --color-green: #42cc93;
  --color-green-hover: #34aa83;
  --color-mint: #d0f4e0;
  --color-navy: #1e2f49;
  --color-navy-light: #343f56;
  --color-gray-light: #eaeaea;
  --color-gray-bg: #f7f7f7;
  --color-red: #bd4c47;

  --font-family: 'Poppins', Arial, Helvetica, sans-serif;
  --site-width: 1400px;
  --border-radius: 6px;
  --transition: 0.2s ease;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-black);
  background: var(--color-white);
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}
img { max-width: 100%; height: auto; display: block; border: 0; }
a { text-decoration: none; color: inherit; transition: color var(--transition); }
a:hover { color: var(--color-green); }
ul, ol { list-style: none; }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-family);
  font-weight: 600;
  line-height: 1.3;
  color: var(--color-black);
}
h1 { font-size: clamp(2rem, 5vw, 3.125rem); font-weight: 700; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2rem); font-weight: 700; }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }
h4 { font-size: 1.25rem; color: var(--color-green); }
h5 { font-size: 1rem; font-weight: 600; color: var(--color-navy-light); }
p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--site-width);
  margin: 0 auto;
  padding: 0 30px;
}
.section { padding: 50px 0; }
.section--navy { background: var(--color-navy); color: var(--color-white); }
.section--navy h2, .section--navy h3, .section--navy h4, .section--navy p { color: var(--color-white); }
.section--mint { background: var(--color-mint); }
.text-center { text-align: center; }
.flex { display: flex; flex-wrap: wrap; }
.flex-center { align-items: center; }
.gap-20 { gap: 20px; }
.gap-40 { gap: 40px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 25px;
  font-family: var(--font-family);
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  line-height: 1.1;
  border: 2px solid transparent;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}
.btn--green {
  background: var(--color-green);
  color: var(--color-white);
  border-color: var(--color-green);
}
.btn--green:hover {
  background: var(--color-green-hover);
  border-color: var(--color-green-hover);
  color: var(--color-white);
}
.btn--outline {
  background: transparent;
  color: var(--color-white);
  border-color: var(--color-white);
}
.btn--outline:hover {
  background: var(--color-white);
  color: var(--color-navy);
}
.btn--full { width: 100%; }
.btn--phone {
  background: var(--color-green);
  color: var(--color-white);
  font-size: 20px;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: var(--border-radius);
}
.btn--phone:hover { background: var(--color-green-hover); color: var(--color-white); }

/* ---------- Top Bar ---------- */
.topbar {
  text-align: center;
  padding: 10px 0;
  font-size: 14px;
  border-bottom: 1px solid rgba(52, 63, 86, 0.15);
}

/* ---------- Header / Nav ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--color-white);
  border-bottom: 1px solid rgba(52, 63, 86, 0.15);
  padding: 0 30px;
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 60px;
  gap: 20px;
}
.header__logo img { max-width: 200px; }
.nav { display: flex; align-items: center; gap: 20px; }
.nav a {
  font-size: 15px;
  font-weight: 500;
  padding: 8px 0;
  position: relative;
}
.nav a:hover { color: var(--color-green); }
.nav__toggle {
  display: none;
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: var(--color-navy);
}

/* ---------- Hero ---------- */
.hero {
  padding: 40px 0 0;
  background: linear-gradient(114deg, var(--color-white) 67%, var(--color-navy) 62%);
}
.hero .container { display: flex; flex-wrap: wrap; align-items: flex-end; }
.hero__content { flex: 1 1 45%; min-width: 300px; padding-bottom: 20px; }
.hero__image { flex: 1 1 25%; min-width: 200px; }
.hero__badge { flex: 1 1 25%; min-width: 200px; display: flex; justify-content: center; }
.hero__badge img { max-width: 300px; }
.hero h1 { color: var(--color-navy); margin-bottom: 10px; }
.hero h1 span { font-weight: 700; }
.hero__subtitle { font-size: 18px; margin-bottom: 20px; }
.hero__trust { font-weight: 500; margin-top: 10px; }

/* ---------- Address Form ---------- */
.address-form {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 15px;
}
.address-form input[type="text"] {
  flex: 1 1 70%;
  min-width: 200px;
  padding: 16px 20px;
  font-size: 16px;
  font-family: var(--font-family);
  border: 2px solid var(--color-gray-light);
  border-radius: var(--border-radius);
  outline: none;
  transition: border-color var(--transition);
}
.address-form input[type="text"]:focus { border-color: var(--color-green); }
.address-form input[type="text"].unit {
  flex: 0 0 80px;
  min-width: 80px;
}
.address-form .btn { flex: 1 1 100%; }

/* ---------- Stats Bar ---------- */
.stats-bar {
  background: var(--color-navy);
  padding: 15px 0;
  color: var(--color-white);
}
.stats-bar .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 20px;
}
.stat {
  display: flex;
  align-items: center;
  gap: 15px;
  flex: 1 1 250px;
}
.stat__icon { width: 50px; flex-shrink: 0; }
.stat__icon img { filter: brightness(0) invert(1); width: 40px; }
.stat h4 { font-size: 20px; color: var(--color-white); margin-bottom: 2px; }
.stat p { font-size: 14px; margin: 0; opacity: 0.85; }

/* ---------- Media Logos ---------- */
.media-logos { padding: 30px 0; text-align: center; }
.media-logos p { font-size: 18px; margin-bottom: 15px; }
.media-logos__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 30px;
}
.media-logos__grid img { height: 35px; width: auto; opacity: 0.7; }

/* ---------- Reviews Slider ---------- */
.reviews { padding: 20px 0 40px; }
.reviews__track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 20px 0;
  scrollbar-width: none;
}
.reviews__track::-webkit-scrollbar { display: none; }
.review-card {
  flex: 0 0 340px;
  scroll-snap-align: start;
  background: var(--color-navy);
  color: var(--color-white);
  border-radius: 15px;
  padding: 30px;
  position: relative;
}
.review-card__platform {
  position: absolute;
  top: 15px;
  left: 15px;
  width: 20px;
}
.review-card__name { font-size: 18px; font-weight: 700; margin-bottom: 2px; }
.review-card__stars { color: #f7b80c; margin-bottom: 4px; font-size: 14px; }
.review-card__date { font-size: 12px; opacity: 0.6; margin-bottom: 12px; }
.review-card__text { font-size: 14px; line-height: 1.6; }
.review-card__info { text-align: center; padding-top: 20px; }

/* ---------- Two-Column Sections ---------- */
.two-col {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}
.two-col__text { flex: 1 1 45%; min-width: 300px; }
.two-col__image { flex: 1 1 45%; min-width: 300px; }
.two-col__image img { border-radius: 20px; width: 100%; aspect-ratio: 1/1; object-fit: cover; }
.two-col__image--left { object-position: 60% 52%; }
.two-col__image--right { object-position: 68% 62%; }

/* Pain Points Grid */
.pain-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 20px;
}
.pain-item { display: flex; flex-direction: column; gap: 4px; }
.pain-item img { width: 28px; margin-bottom: 6px; }
.pain-item h5 { margin-bottom: 2px; }
.pain-item p { font-size: 14px; margin: 0; }

/* ---------- Comparison Section ---------- */
.comparison { padding: 50px 0; }
.comparison__title { text-align: center; margin-bottom: 40px; }
.comparison__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}
.comparison__card {
  flex: 1 1 400px;
  max-width: 520px;
  border: 1px solid var(--color-green);
  border-radius: 20px;
  padding: 30px;
}
.comparison__card--red { border-color: var(--color-red); }
.comparison__card h3 { font-weight: 400; font-size: 1.5rem; margin-bottom: 20px; color: var(--color-navy); }

/* Checklist */
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 13px 0;
  font-size: 16px;
  line-height: 1.7;
}
.checklist__icon {
  flex-shrink: 0;
  width: 27px;
  height: 27px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 13px;
  margin-top: 2px;
}
.checklist__icon--green { background: var(--color-green); }
.checklist__icon--red { background: var(--color-red); }

/* ---------- Real Estate Advantage ---------- */
.advantage {
  background: var(--color-navy);
  border-radius: 20px;
  padding: 50px;
  color: var(--color-white);
  text-align: center;
}
.advantage h2 { color: var(--color-white); }
.advantage p { color: var(--color-white); }
.advantage__subtitle { font-weight: 600; margin-bottom: 5px; }
.advantage__features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  margin: 30px 0;
}
.advantage__feature { flex: 1 1 200px; max-width: 280px; }
.advantage__feature img { width: 60px; margin: 0 auto 10px; }
.advantage__feature h3 { font-size: 1.2rem; color: var(--color-white); margin-bottom: 8px; }
.advantage__feature p { font-size: 14px; line-height: 1.4; opacity: 0.9; }
.advantage__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-top: 30px;
}

/* ---------- Body Text Section ---------- */
.body-text { max-width: 800px; margin: 0 auto; }
.body-text a { color: var(--color-green); text-decoration: underline; }
.body-text a:hover { color: var(--color-green-hover); }

/* ---------- CTA Form Section ---------- */
.cta-form {
  background: var(--color-mint);
  padding: 50px 0;
}
.cta-form__inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.cta-form h2 { color: var(--color-navy); }
.cta-form .bbb { max-width: 160px; margin: 15px auto 0; }

/* ---------- FAQ ---------- */
.faq { max-width: 800px; margin: 0 auto; }
.faq h2 { text-align: center; margin-bottom: 30px; }
.faq__item { border-bottom: 1px solid var(--color-gray-light); }
.faq__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 18px 0;
  background: none;
  border: none;
  font-family: var(--font-family);
  font-size: 15px;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  color: var(--color-black);
  gap: 15px;
  transition: color var(--transition);
}
.faq__question:hover { color: var(--color-navy-light); }
.faq__icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--color-green);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: transform 0.3s, background 0.3s;
}
.faq__item.active .faq__icon { background: var(--color-green); transform: rotate(180deg); }
.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.faq__item.active .faq__answer { max-height: 500px; }
.faq__answer-inner { padding: 0 0 18px; font-size: 14px; line-height: 1.7; }

/* ---------- Footer ---------- */
.footer {
  background: var(--color-navy);
  color: var(--color-white);
  padding: 60px 0 20px;
}
.footer a { color: var(--color-white); opacity: 0.85; }
.footer a:hover { opacity: 1; color: var(--color-green); }
.footer .container { display: flex; flex-wrap: wrap; gap: 40px; }
.footer__brand { flex: 2 1 300px; }
.footer__brand img { max-width: 200px; margin-bottom: 15px; }
.footer__brand p { font-size: 14px; opacity: 0.85; margin-bottom: 8px; }
.footer__brand .phone { font-size: 18px; font-weight: 600; }
.footer__links { flex: 1 1 150px; }
.footer__links a { display: block; font-size: 14px; padding: 5px 0; }
.footer__right { flex: 1 1 180px; text-align: right; }
.footer__right img { max-width: 160px; margin-left: auto; margin-bottom: 15px; }
.footer__social { display: flex; gap: 10px; justify-content: flex-end; }
.footer__social a {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  opacity: 1;
}
.footer__bottom {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.15);
  font-size: 13px;
  opacity: 0.7;
}
.footer__legal { font-size: 14px; opacity: 0.7; margin-top: 10px; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero {
    background: linear-gradient(112deg, var(--color-white) 80%, var(--color-navy) 62%);
  }
  .hero__badge { display: none; }
  .nav { display: none; }
  .nav__toggle { display: block; }
  .nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-white);
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    z-index: 999;
  }
  .btn--phone-desktop { display: none; }
  .advantage { padding: 40px 25px; }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .section { padding: 40px 0; }
  .hero {
    background: linear-gradient(154deg, var(--color-white) 67%, var(--color-navy) 15%);
    background-size: 100%;
    padding-top: 30px;
  }
  .hero__image { display: none; }
  .hero__content { flex: 1 1 100%; }
  .two-col { gap: 30px; }
  .two-col__text, .two-col__image { flex: 1 1 100%; }
  .pain-grid { grid-template-columns: 1fr; }
  .comparison__card { flex: 1 1 100%; }
  .advantage__features { gap: 25px; }
  .footer .container { gap: 30px; }
  .footer__right { text-align: left; }
  .footer__right img { margin-left: 0; }
  .footer__social { justify-content: flex-start; }
  .stats-bar .container { justify-content: flex-start; }
  .review-card { flex: 0 0 280px; }
}

@media (max-width: 480px) {
  h1 { font-size: 2rem; }
  .address-form input[type="text"] { padding: 14px 16px; font-size: 15px; }
}
