/* =============================================
   NoEvictionGuarantee.com - Pixel-Perfect Rebuild
   ============================================= */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  color: #fff;
  background: #1a1a1a;
  line-height: 1.6;
}

a { text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.text-center { text-align: center; }
.pink { color: #e4298c; }

/* ---- Announcement Bar ---- */
.announcement-bar {
  background: #f5c518;
  color: #1a1a1a;
  text-align: center;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* ---- Header ---- */
.site-header {
  background: #fff;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.logo-link { flex-shrink: 0; }
.site-logo { height: 56px; width: auto; }

.main-nav {
  display: flex;
  gap: 0;
  margin-left: 20px;
}

.main-nav a {
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  color: #1a1a1a;
  text-decoration: none;
  border-right: 1px solid #ddd;
  transition: color 0.2s;
}
.main-nav a:last-child { border-right: none; }
.main-nav a:hover { color: #e4298c; }

.btn-consult {
  margin-left: auto;
  padding: 10px 20px;
  border: 2px dashed #2d8a4e;
  color: #2d8a4e;
  font-size: 14px;
  font-weight: 700;
  background: transparent;
  transition: all 0.2s;
  white-space: nowrap;
}
.btn-consult:hover { background: #2d8a4e; color: #fff; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #1a1a1a;
  margin-left: auto;
}

/* ---- Hero Section ---- */
.hero-section {
  background-color: #1a1a1a;
  background-image: repeating-linear-gradient(
    135deg,
    transparent,
    transparent 2px,
    rgba(255,255,255,0.03) 2px,
    rgba(255,255,255,0.03) 4px
  );
  padding: 70px 20px;
}

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-left h1 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  color: #fff;
}

.hero-left h2 {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 24px;
  line-height: 1.5;
}

.hero-list {
  list-style: none;
  margin-bottom: 32px;
}

.hero-list li {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 15px;
  color: #fff;
  line-height: 1.5;
}

.check {
  color: #e4298c;
  font-weight: 900;
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-pink {
  display: inline-block;
  background: #e4298c;
  color: #fff;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
.btn-pink:hover { background: #c41f78; }

.btn-yellow {
  display: inline-block;
  background: #f0c040;
  color: #1a1a1a;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
.btn-yellow:hover { background: #d4a820; }

.btn-pink-outline {
  display: inline-block;
  border: 2px solid #e4298c;
  color: #e4298c;
  padding: 14px 32px;
  font-size: 15px;
  font-weight: 700;
  transition: all 0.2s;
}
.btn-pink-outline:hover { background: #e4298c; color: #fff; }

/* Hero Right */
.hero-right {
  text-align: center;
}

.fee-graphic {
  max-width: 280px;
  margin: 0 auto 16px;
}

.fee-crossed {
  margin-bottom: 12px;
}

.crossed-number {
  font-size: 52px;
  font-weight: 900;
  color: #888;
  text-decoration: line-through;
  text-decoration-color: #e4298c;
  text-decoration-thickness: 4px;
}

.fee-label {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}

/* ---- Better Tenants Section ---- */
.better-tenants-section {
  background: #f5f5f5;
  color: #1a1a1a;
  padding: 70px 20px;
  text-align: center;
}

.section-title {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 800;
  margin-bottom: 16px;
}

.pink-title { color: #e4298c; }

.section-sub {
  font-size: 16px;
  color: #444;
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

.step-card {
  background: #fff;
  padding: 32px 24px;
  border-radius: 4px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  text-align: center;
}

.step-icon {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin: 0 auto 16px;
}

.step-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 10px;
}

.step-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

/* ---- Eviction Stat Bar ---- */
.eviction-stat-bar {
  background: #1a1a1a;
  background-image: repeating-linear-gradient(
    135deg,
    transparent,
    transparent 2px,
    rgba(255,255,255,0.03) 2px,
    rgba(255,255,255,0.03) 4px
  );
  padding: 50px 20px;
  text-align: center;
}

.pink-stat {
  font-size: clamp(22px, 3.5vw, 36px);
  font-weight: 800;
  color: #e4298c;
  margin-bottom: 12px;
}

.stat-source {
  font-size: 15px;
  color: #aaa;
}

/* ---- Guarantee Section ---- */
.guarantee-section {
  background: #1a1a1a;
  background-image: repeating-linear-gradient(
    135deg,
    transparent,
    transparent 2px,
    rgba(255,255,255,0.03) 2px,
    rgba(255,255,255,0.03) 4px
  );
  padding: 70px 20px;
}

.guarantee-title {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  text-align: center;
  margin-bottom: 48px;
}

.guarantee-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  align-items: center;
  max-width: 900px;
  margin: 0 auto;
}

.shield-img {
  max-width: 220px;
  margin: 0 auto;
}

.guarantee-list {
  list-style: none;
  margin-bottom: 32px;
}

.guarantee-list li {
  padding: 12px 0;
  border-bottom: 1px solid #333;
  font-size: 15px;
  line-height: 1.6;
  color: #ddd;
}
.guarantee-list li:last-child { border-bottom: none; }

/* ---- Earnings CTA ---- */
.earnings-cta {
  background: #111;
  padding: 60px 20px;
  text-align: center;
}

.earnings-cta h2 {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 24px;
}

/* ---- Testimonials Section ---- */
.testimonials-section {
  background: #1a1a1a;
  background-image: repeating-linear-gradient(
    135deg,
    transparent,
    transparent 2px,
    rgba(255,255,255,0.03) 2px,
    rgba(255,255,255,0.03) 4px
  );
  padding: 70px 20px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  margin-top: 40px;
}

.video-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}
.video-wrap iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
}

.testimonial-quote {
  background: #2a2a2a;
  border-left: 4px solid #e4298c;
  padding: 24px;
  margin-bottom: 24px;
  border-radius: 0 4px 4px 0;
}

.testimonial-quote p {
  font-size: 15px;
  color: #ddd;
  line-height: 1.7;
  margin-bottom: 16px;
  font-style: italic;
}

.testimonial-quote cite {
  font-size: 13px;
  color: #aaa;
  font-style: normal;
}

/* ---- Stats Section ---- */
.stats-section {
  background: #111;
  padding: 70px 20px;
}

.dont-be {
  font-size: 16px;
  color: #aaa;
  margin-bottom: 12px;
}

.cost-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.cost-item {
  background: #2a2a2a;
  padding: 24px;
  text-align: center;
  border-top: 3px solid #e4298c;
}

.cost-item h3 {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.cost-item p {
  font-size: 14px;
  color: #aaa;
  line-height: 1.5;
}

/* ---- Benefits Section ---- */
.benefits-section {
  background: #f5f5f5;
  color: #1a1a1a;
  padding: 70px 20px;
}

.benefits-section .section-title {
  color: #1a1a1a;
  text-align: center;
  margin-bottom: 32px;
}

.benefits-list {
  list-style: none;
  max-width: 800px;
  margin: 0 auto;
}

.benefits-list li {
  padding: 14px 0;
  border-bottom: 1px solid #ddd;
  font-size: 15px;
  color: #333;
  line-height: 1.6;
}
.benefits-list li:last-child { border-bottom: none; }

/* ---- Logos Section ---- */
.logos-section {
  background: #1a1a1a;
  padding: 50px 20px;
  border-top: 1px solid #333;
}

.logos-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.logos-row img {
  max-height: 60px;
  width: auto;
  opacity: 0.8;
  transition: opacity 0.2s;
  filter: brightness(0) invert(1);
}
.logos-row img:hover { opacity: 1; }

/* ---- Footer ---- */
.site-footer {
  background: #111;
  color: #fff;
  padding: 50px 20px 0;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 32px;
  padding-bottom: 40px;
  border-bottom: 1px solid #333;
}

.footer-logo {
  max-height: 60px;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #888;
  margin-bottom: 6px;
}

.footer-col p {
  font-size: 14px;
  color: #ccc;
  line-height: 1.7;
}

.footer-col a {
  color: #ccc;
  text-decoration: none;
}
.footer-col a:hover { color: #e4298c; }

.footer-social-row {
  display: flex;
  gap: 16px;
  margin-top: 8px;
}

.footer-social {
  color: #ccc;
  transition: color 0.2s;
}
.footer-social:hover { color: #e4298c; }

.footer-copy {
  max-width: 1100px;
  margin: 0 auto;
  padding: 20px 0;
  text-align: center;
}

.footer-copy p {
  font-size: 12px;
  color: #666;
}

.footer-copy a {
  color: #888;
  text-decoration: none;
}
.footer-copy a:hover { color: #e4298c; }

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-right { text-align: center; }
  .steps-grid { grid-template-columns: 1fr; max-width: 400px; }
  .guarantee-inner { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .cost-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .main-nav { display: none; }
  .main-nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 84px;
    left: 0; right: 0;
    background: #fff;
    z-index: 200;
    border-top: 1px solid #eee;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }
  .main-nav.open a {
    border-right: none;
    border-bottom: 1px solid #eee;
    padding: 14px 20px;
    color: #1a1a1a;
  }
  .nav-toggle { display: block; }
  .btn-consult { display: none; }
  .cost-grid { grid-template-columns: 1fr; }
  .logos-row { gap: 20px; }
}
