/* Landing-page (tool) styles.
   Replicates the WP OptimizePress-era look:
   dark hero with search form floating over it, blue banner strip,
   feature-cards with circular icons and blue-underline titles. */

@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700;800&display=swap');

main.landing-page {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  color: #333;
  font-size: 18px;
  line-height: 1.6;
}

/* ------- Hero ------- */
.lp-hero {
  position: relative;
  min-height: 480px;
  padding: 90px 20px 80px;
  color: #fff;
  text-align: center;
  background-color: #1a1a1a;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.lp-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}
/* No-image variant: uses a rich dark gradient instead of a photo. */
.lp-hero.lp-hero-solid {
  background: linear-gradient(135deg, #0f2137 0%, #1a3a5c 45%, #14507a 100%);
}
.lp-hero.lp-hero-solid::before { background: rgba(0, 0, 0, 0.25); }
.lp-hero > * {
  position: relative;
  z-index: 1;
}
.lp-hero h1 {
  font-family: 'Open Sans', sans-serif;
  font-size: 68px;
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: -1px;
  margin: 0 0 18px;
  color: #fff;
  text-shadow: 0 2px 6px rgba(0,0,0,0.35);
}
.lp-hero .lp-hero-sub {
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 34px;
  color: #fff;
  text-shadow: 0 1px 4px rgba(0,0,0,0.35);
}

.lp-hero-form {
  background: #fff;
  border-radius: 8px;
  padding: 12px;
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  gap: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}
.lp-hero-form input[type="text"],
.lp-hero-form input[type="email"],
.lp-hero-form input[type="tel"] {
  flex: 1;
  padding: 14px 18px;
  font-size: 17px;
  font-family: inherit;
  border: 1px solid #d5d9e0;
  border-radius: 4px;
  color: #333;
  background: #fff;
  min-width: 0;
}
.lp-hero-form input:focus {
  outline: none;
  border-color: #1a73e8;
}
.lp-hero-form button {
  padding: 14px 34px;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  background: #2ea043;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background .15s ease;
}
.lp-hero-form button:hover { background: #248537; }

/* ------- Blue banner strip ------- */
.lp-banner {
  background: #1a73e8;
  color: #fff;
  padding: 30px 20px;
  text-align: center;
}
.lp-banner h2 {
  font-family: 'Open Sans', sans-serif;
  color: #fff;
  font-size: 30px;
  font-weight: 700;
  margin: 0;
  line-height: 1.3;
}

/* ------- Feature icon cards row ------- */
.lp-features {
  padding: 60px 20px;
  background: #fff;
}
.lp-features .lp-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.lp-features .lp-feature {
  text-align: center;
}
.lp-features .lp-icon {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  border: 2px solid #d5e0f0;
  background: #f7f9fc;
  margin: 0 auto 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lp-features .lp-icon img {
  max-width: 46px;
  max-height: 46px;
}
.lp-features .lp-feature h3 {
  font-family: 'Open Sans', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #1a73e8;
  margin: 0 0 14px;
  line-height: 1.3;
}
.lp-features .lp-feature h3::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: #1a73e8;
  margin: 12px auto 0;
}
.lp-features .lp-feature p {
  font-size: 16px;
  color: #555;
  margin: 14px 0 0;
  line-height: 1.6;
}

/* ------- Body copy section ------- */
.lp-body {
  padding: 60px 20px 30px;
  background: #f7f9fc;
}
.lp-body .lp-inner {
  max-width: 900px;
  margin: 0 auto;
}
.lp-body h2 {
  font-family: 'Open Sans', sans-serif;
  font-size: 34px;
  font-weight: 800;
  color: #1a73e8;
  text-align: center;
  margin: 0 0 12px;
  line-height: 1.2;
}
.lp-body .lp-eyebrow {
  text-align: center;
  color: #1a73e8;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 14px;
  margin-bottom: 10px;
}
.lp-body p {
  font-size: 18px;
  color: #444;
  margin: 0 0 18px;
  line-height: 1.7;
}
.lp-body p:first-of-type { margin-top: 24px; }

/* ------- Second CTA row ------- */
.lp-cta-row {
  background: #fff;
  padding: 48px 20px 72px;
  text-align: center;
}
.lp-cta-row .btn-cta {
  display: inline-block;
  background: #2ea043;
  color: #fff !important;
  padding: 18px 46px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 20px;
  font-family: 'Open Sans', sans-serif;
  text-decoration: none !important;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: background .15s ease;
}
.lp-cta-row .btn-cta:hover { background: #248537; }

/* ------- Related-lookups strip ------- */
.lp-related {
  background: #f7f9fc;
  padding: 40px 20px;
  border-top: 1px solid #e5e7eb;
}
.lp-related .lp-inner {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.lp-related h3 {
  font-family: 'Open Sans', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #333;
  margin: 0 0 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.lp-related ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 16px;
}
.lp-related a {
  display: inline-block;
  padding: 10px 18px;
  background: #fff;
  border: 1px solid #d5e0f0;
  border-radius: 4px;
  color: #1a73e8;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: all .15s ease;
}
.lp-related a:hover {
  background: #1a73e8;
  color: #fff;
  border-color: #1a73e8;
}

/* ------- Responsive ------- */
@media (max-width: 768px) {
  .lp-hero h1 { font-size: 42px; }
  .lp-hero .lp-hero-sub { font-size: 18px; }
  .lp-hero-form { flex-direction: column; }
  .lp-banner h2 { font-size: 22px; }
  .lp-features .lp-grid { grid-template-columns: 1fr; gap: 40px; }
  .lp-body h2 { font-size: 26px; }
}
