/* ------------- RESET & GLOBAL ------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter",sans-serif;
  color: #222;
  line-height: 1.5;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ------------- CONTAINER ------------- */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ------------- HEADER ------------- */
.site-header {
  background: #fff;
  border-bottom: 1px solid #e6e6e6;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-icon {
  width: 28px;
  margin-right: 8px;
}

.logo-text {
  font-size: 20px;
  font-weight: 600;
  color: #0d1c32;
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 24px;
}

.main-nav a {
  text-decoration: none;
  color: #333;
  font-size: 15px;
}

.main-nav a.active, .main-nav a:hover {
  color: #0d6efd;
}

/* ------------- HERO ------------- */
.hero {
  background: url("../hero-house.jpg") center/cover no-repeat;
  position: relative;
  padding: 120px 0;
  color: white;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
}

.hero-inner {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 400px;
}

.hero-copy {
  max-width: 520px;
}

.hero-copy h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero-copy p {
  font-size: 18px;
  margin-bottom: 25px;
}

.hero-cta .btn {
  padding: 12px 24px;
  border-radius: 6px;
  font-size: 15px;
  text-decoration: none;
  margin-right: 12px;
}

.btn-primary {
  background: #0d6efd;
  color: #fff;
}

.btn-outline {
  border: 2px solid #0d6efd;
  background: transparent;
  color: #0d6efd;
}

/* ------------- FEATURE PILLS ------------- */
.feature-pill-wrap {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.feature-pill {
  background: #f0f6ff;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 14px;
  color: #0d6efd;
  font-weight: 600;
}

/* ------------- WHY SAFETY SECTION ------------- */
.why-safety {
  padding: 80px 0;
}

.why-inner {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.why-left {
  flex: 1 1 400px;
}

.why-left h2 {
  font-size: 28px;
  margin-bottom: 18px;
}

.why-left p {
  font-size: 17px;
  margin-bottom: 16px;
}

.checklist {
  list-style: disc inside;
  margin-left: 16px;
  font-size: 15px;
  color: #444;
}

.why-right {
  flex: 1 1 400px;
}

.compare-box {
  display: flex;
  gap: 12px;
}

.compare-img {
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}

.compare-img img {
  width: 100%;
  height: auto;
  display: block;
}

.label {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(0,0,0,0.6);
  color: white;
  padding: 4px 8px;
  font-size: 12px;
  border-radius: 4px;
}

/* ------------- HOW IT WORKS CARD GRID ------------- */
.section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  font-size: 32px;
  margin-bottom: 40px;
}

.three-column {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.step-card {
  flex: 1 1 260px;
  background: #fff;
  padding: 20px;
  border: 1px solid #eee;
  border-radius: 8px;
}

/* ------------- PRICING SECTION ------------- */
.section-alt {
  background: #f7faff;
}

.pricing-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.pricing-card {
  flex: 1 1 260px;
  background: #fff;
  padding: 25px;
  border: 1px solid #eee;
  border-radius: 8px;
}

.pricing-card .price {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 12px;
}

.pricing-card.featured {
  border: 2px solid #0d6efd;
}

/* ========== BUTTONS ========== */
.btn {
  text-decoration: none;
  display: inline-block;
}

/* ------------- FOOTER ------------- */
.site-footer {
  background: #0d1c32;
  color: #fff;
  padding: 30px 0;
  text-align: center;
}

.site-footer a {
  color: #93b1d8;
  text-decoration: none;
  margin: 0 6px;
}

.footer-inner {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}
