/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/* BRAND COLORS */
:root {
  --mfmo-blue: #2493b5;
  --mfmo-green: #39b54a;
  --mfmo-gray: #939598;
  --mfmo-light: #f5f7f8;
}
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #111;
  background: #ffffff;
}


/* GLOBAL */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 20px;
}

.container.narrow {
  max-width: 750px;
}

.section {
  padding: 60px 0;
}

.section.light {
  background: var(--mfmo-light);
}

h1, h2, h3 {
  margin-bottom: 15px;
}

p {
  margin-bottom: 15px;
}

/* HEADER */
.site-header {
  background: #fff;
  border-bottom: 1px solid #eee;
}

.header-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  height: 50px;
}

.nav a {
  margin: 0 12px;
  text-decoration: none;
  color: #111;
  font-weight: 600;
}

.phone-btn {
  background: var(--mfmo-green);
  color: white;
  padding: 10px 16px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
}

/* HERO */
.hero {
  padding: 70px 20px;
}

.hero-wrap {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}

.hero-text {
  flex: 1;
  min-width: 300px;
}

.hero h1 {
  font-size: 42px;
  color: var(--mfmo-blue);
}

.hero-subhead {
  font-size: 20px;
  color: var(--mfmo-gray);
  margin-bottom: 20px;
}

.hero-bullets {
  margin-bottom: 20px;
  padding-left: 20px;
}

.hero-bullets li {
  margin-bottom: 8px;
}

.trust-line {
  font-size: 14px;
  color: var(--mfmo-gray);
}

/* ANSWER BOX (AI SEO) */
.answer-box {
  background: #eef9fc;
  border-left: 5px solid var(--mfmo-blue);
  padding: 15px;
  margin-bottom: 20px;
  font-size: 17px;
}

/* FORM CARD */
.hero-form-card {
  flex: 1;
  min-width: 300px;
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.hero-form-card h2 {
  color: var(--mfmo-blue);
}

.lead-form {
  display: grid;
  gap: 12px;
  margin-top: 15px;
}

.lead-form input {
  padding: 14px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 16px;
}

.lead-form button {
  background: var(--mfmo-green);
  color: white;
  border: none;
  padding: 16px;
  font-size: 18px;
  font-weight: bold;
  border-radius: 6px;
  cursor: pointer;
}

.lead-form button:hover {
  opacity: 0.9;
}

/* STEPS */
.steps {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  flex: 1;
  min-width: 250px;
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  border: 1px solid #eee;
  text-align: center;
}

.card span {
  display: inline-block;
  background: var(--mfmo-blue);
  color: white;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  margin-bottom: 10px;
}

/* SITUATIONS */
.situations {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 10px;
}

.situations div {
  background: #fff;
  padding: 15px;
  border-radius: 6px;
  text-align: center;
  border: 1px solid #eee;
}

/* FAQ */
.faq h3 {
  color: var(--mfmo-blue);
  margin-top: 20px;
}

/* CTA */
.cta-section {
  background: var(--mfmo-blue);
  color: white;
  text-align: center;
  padding: 60px 20px;
}

.cta-section h2 {
  color: white;
}

.cta-section .lead-form input {
  border: none;
}

.cta-section .lead-form button {
  background: var(--mfmo-green);
}

/* FOOTER */
.site-footer {
  background: #111;
  color: white;
  text-align: center;
  padding: 30px 20px;
  font-size: 14px;
}

/* MOBILE */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 32px;
  }

  .hero-wrap {
    flex-direction: column;
  }

  .nav {
    display: none;
  }
}
@media (max-width: 768px) {
  .hero-wrap {
    flex-direction: column;
  }

  .hero-form-card {
    order: -1;
    width: 100%;
  }

  .hero-text {
    order: 2;
  }
}
@media (max-width: 768px) {
  .hero-form-card {
    order: -1;
    width: 100%;
    margin-bottom: 20px;
    border: 2px solid var(--mfmo-green);
  }
}

/* PROBATE HERO IMAGE */
.hero-probate {
  background: url('/assets/images/closing-table.jpg') center/cover no-repeat;
  position: relative;
}
.premium-hero {
  background: linear-gradient(135deg, #f5f7f8 0%, #ffffff 45%, #eef9fc 100%);
  padding: 80px 20px;
}

.premium-hero-wrap {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 50px;
  align-items: center;
}

.eyebrow {
  color: #39b54a;
  font-weight: bold;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 13px;
  margin-bottom: 12px;
}

.premium-hero h1 {
  color: #2493b5;
  font-size: 48px;
  line-height: 1.1;
  margin-bottom: 18px;
}

.premium-subhead {
  font-size: 21px;
  color: #555;
  margin-bottom: 20px;
}

.premium-answer {
  background: white;
  border-left: 6px solid #2493b5;
  box-shadow: 0 8px 20px rgba(0,0,0,.06);
}

.premium-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 25px;
}

.primary-btn,
.secondary-btn {
  display: inline-block;
  padding: 15px 20px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
}

.primary-btn {
  background: #39b54a;
  color: white;
}

.secondary-btn {
  background: white;
  color: #2493b5;
  border: 2px solid #2493b5;
}

.premium-trust {
  margin-top: 18px;
  color: #939598;
  font-size: 14px;
}

@media (max-width: 900px) {
  .premium-hero-wrap {
    grid-template-columns: 1fr;
  }

  .premium-hero {
    padding: 45px 15px;
  }

  .premium-hero h1 {
    font-size: 34px;
  }

  .premium-hero-visual {
    order: -1;
  }

  .main-photo {
    height: 300px;
  }

  .small-photos img {
    height: 120px;
  }

  .proof-card {
    position: static;
    margin-top: 14px;
  }
}
.hero-image-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.hero-image-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
  text-align: center;
  border: 1px solid #eee;
}

.hero-image-card img {
  width: 100%;
  height: 260px;
  object-fit: contain;
  object-position: center;
  background: #f5f7f8;
  display: block;
  padding: 8px;
}

.hero-image-card p {
  padding: 12px;
  font-weight: bold;
  font-size: 14px;
  color: #2493b5;
  margin: 0;
}

@media (max-width: 900px) {
  .hero-image-grid {
    grid-template-columns: 1fr;
  }

  .hero-image-card img {
    height: 240px;
  }
}
/* SECTION BASE */
.areas-section {
  text-align: center;
}

.areas-title {
  color: var(--mfmo-blue);
}

.areas-subtitle {
  margin-bottom: 25px;
  color: #555;
}

/* MAIN AREA BUTTONS */
.area-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 30px;
}

.area-buttons a {
  background: var(--mfmo-blue);
  color: white;
  padding: 12px 18px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  font-size: 14px;
  transition: 0.2s;
}

.area-buttons a:hover {
  background: var(--mfmo-green);
}

/* NEIGHBORHOODS (lighter pills) */
.neighborhood-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.neighborhood-buttons span {
  background: #f5f7f8;
  padding: 10px 14px;
  border-radius: 20px;
  font-size: 13px;
  color: #555;
  border: 1px solid #ddd;
}

/* SUBHEADING */
.areas-subheading {
  margin-bottom: 15px;
  color: var(--mfmo-blue);
}
.internal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
  justify-content: center;
}

.internal-links a {
  background: #ffffff;
  color: #2493b5;
  border: 1px solid #d9edf3;
  padding: 10px 14px;
  border-radius: 24px;
  text-decoration: none;
  font-weight: bold;
  font-size: 14px;
}

.internal-links a:hover {
  background: #2493b5;
  color: #ffffff;
}
.video-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 ratio */
  height: 0;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.faq-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.faq-link-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 115px;
  padding: 20px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 12px;
  text-decoration: none;
  color: #111;
  font-weight: 700;
  line-height: 1.35;
  box-shadow: 0 6px 16px rgba(0,0,0,0.06);
}

.faq-link-card::after {
  content: "Read more →";
  display: block;
  margin-top: 16px;
  font-size: 13px;
  font-weight: 700;
  color: #39b54a;
}

.faq-link-card:hover {
  background: #39b54a;
  color: #fff;
  border-color: #39b54a;
  transform: translateY(-3px);
}

.faq-link-card:hover::after {
  color: #fff;
}

.section-title,
.section-subtitle {
  text-align: center;
}