/* ============================================================
   geo-styles.css — SmartDuds Geo/SEO Landing Pages
   Brand: Orange #F47920 | Charcoal #333333
   ============================================================ */

/* ── Reset helpers ───────────────────────────────────────── */
.geo-hero, .geo-content, .geo-content * {
  box-sizing: border-box;
}

/* ── Hero ────────────────────────────────────────────────── */
.geo-hero {
  background: linear-gradient(135deg, #F47920 0%, #c95f0a 100%);
  color: #fff;
  padding: 72px 20px 60px;
  text-align: center;
}
.geo-hero-inner {
  max-width: 800px;
  margin: 0 auto;
}
.geo-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  margin: 0 0 16px;
  line-height: 1.2;
  letter-spacing: -0.5px;
}
.geo-hero p {
  font-size: clamp(1rem, 2vw, 1.25rem);
  opacity: 0.92;
  margin: 0;
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ── Content wrapper ─────────────────────────────────────── */
.geo-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px 80px;
}
.geo-content section {
  margin-bottom: 56px;
}
.geo-content h2 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #333;
  margin: 0 0 20px;
  padding-bottom: 10px;
  border-bottom: 3px solid #F47920;
  display: inline-block;
}
.geo-content p {
  color: #444;
  line-height: 1.75;
  margin: 0 0 16px;
  font-size: 1.05rem;
}

/* ── Service grid ────────────────────────────────────────── */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 8px;
}
.service-card {
  background: #fff;
  border: 2px solid #f0f0f0;
  border-top: 4px solid #F47920;
  border-radius: 8px;
  padding: 24px 20px;
  transition: box-shadow 0.2s;
}
.service-card:hover {
  box-shadow: 0 6px 20px rgba(244, 121, 32, 0.15);
}
.service-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #333;
  margin: 0 0 10px;
}
.service-card p {
  font-size: 0.95rem;
  color: #555;
  margin: 0 0 8px;
  line-height: 1.6;
}

/* ── How steps ───────────────────────────────────────────── */
.how-steps {
  padding-left: 0;
  list-style: none;
  counter-reset: step-counter;
}
.how-steps li {
  counter-increment: step-counter;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid #f0f0f0;
  color: #444;
  line-height: 1.6;
  font-size: 1.02rem;
}
.how-steps li::before {
  content: counter(step-counter);
  min-width: 32px;
  height: 32px;
  background: #F47920;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.how-steps li:last-child {
  border-bottom: none;
}

/* ── Area tags ───────────────────────────────────────────── */
.area-tags {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}
.area-tags li {
  background: #fff4eb;
  border: 1px solid #F47920;
  color: #c95f0a;
  border-radius: 20px;
  padding: 6px 16px;
  font-size: 0.9rem;
  font-weight: 600;
}

/* ── Why list ────────────────────────────────────────────── */
.why-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.why-list li {
  padding: 12px 0;
  border-bottom: 1px solid #f5f5f5;
  color: #444;
  font-size: 1.02rem;
  line-height: 1.6;
}
.why-list li:last-child {
  border-bottom: none;
}

/* ── Promo grid ──────────────────────────────────────────── */
.promo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 8px;
}
.promo-card {
  background: #fff8f3;
  border: 2px dashed #F47920;
  border-radius: 10px;
  padding: 28px 24px;
  text-align: center;
}
.promo-code {
  display: inline-block;
  background: #F47920;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: 2px;
  padding: 8px 20px;
  border-radius: 6px;
  margin-bottom: 14px;
  font-family: monospace;
}
.promo-card p {
  color: #333;
  font-size: 1rem;
  margin: 0 0 10px;
  line-height: 1.6;
}
.promo-card small {
  color: #888;
  font-size: 0.85rem;
}

/* ── CTA section ─────────────────────────────────────────── */
.geo-cta {
  background: #333;
  border-radius: 12px;
  padding: 48px 36px;
  text-align: center;
  color: #fff;
}
.geo-cta h2 {
  color: #F47920 !important;
  border-bottom: none !important;
  font-size: 1.8rem;
  margin-bottom: 12px;
  display: block !important;
}
.geo-cta p {
  color: #ccc;
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto 28px;
}
.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-primary {
  display: inline-block;
  background: #F47920;
  color: #fff;
  padding: 14px 32px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: background 0.2s;
}
.btn-primary:hover {
  background: #c95f0a;
}
.btn-secondary {
  display: inline-block;
  background: transparent;
  color: #fff;
  padding: 13px 32px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  border: 2px solid #fff;
  transition: background 0.2s, color 0.2s;
}
.btn-secondary:hover {
  background: #fff;
  color: #333;
}

/* ── Pricing table ───────────────────────────────────────── */
.pricing-table {
  border: 2px solid #f0f0f0;
  border-radius: 10px;
  overflow: hidden;
  margin-top: 8px;
}
.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  border-bottom: 1px solid #f0f0f0;
  font-size: 1rem;
  color: #444;
}
.price-row:last-child {
  border-bottom: none;
}
.price-row:nth-child(even) {
  background: #fafafa;
}
.price-row strong {
  color: #F47920;
  font-size: 1.05rem;
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 600px) {
  .geo-hero {
    padding: 48px 16px 40px;
  }
  .geo-content {
    padding: 28px 16px 60px;
  }
  .geo-cta {
    padding: 36px 20px;
  }
  .price-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  .btn-primary, .btn-secondary {
    width: 100%;
    text-align: center;
  }
}