/* AeroDust Pro v2 – Full Clean CSS */

/* GLOBAL RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  background: #f4f7fc;
  color: #0d1b2a;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

section {
  padding: 40px 10vw;
}

/* HEADER */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 10vw;
  background: white;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.header a {
  text-decoration: none;
  color: #000;
  font-weight: 500;
  margin-left: 24px;
}

.top-bar {
  width: 100%;
  background: #0f141a;
  color: #ffffff;
  text-align: center;
  padding: 8px 0;
  font-size: 14px;
  letter-spacing: 0.3px;
}

.site-header {
  width: 100%;
  padding: 18px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #ffffff;
  box-shadow: 0 1px 8px rgba(0,0,0,0.06);
}

.site-header .logo {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.site-header nav a {
  margin-left: 32px;
  color: #333;
  font-weight: 500;
  text-decoration: none;
}



/* HERO */
.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 80px 10vw 60px;
  background: white;
}

.hero-text h1 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 20px;
}

.hero-text p {
  max-width: 520px;
  font-size: 18px;
  color: #334155;
  margin-bottom: 24px;
}



/* BUTTONS – AeroDust Blue Gradient */
.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, #2d8cff, #1a73e8);
  color: #fff !important;
  padding: 14px 34px;
  border-radius: 32px;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.25s ease-in-out;
  box-shadow: 0 6px 20px rgba(45, 140, 255, 0.35);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(45, 140, 255, 0.45);
  background: linear-gradient(135deg, #1a73e8, #2d8cff);
}

/* Fix inside pricing cards */
.pricing .card .btn-primary {
  margin-top: 10px;
  width: 100%;
  text-align: center;
}


/* HERO IMAGE FIX */
.hero-img img {
  width: 100%;
  max-width: 520px;
  height: auto;
  display: block;
  margin: 0 auto;
}

/* ICON STRIP */
.icon-strip {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.icon-strip span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: #475569;
}

/* FEATURES GRID */
.features {
  background: #eef3fb;
  text-align: center;
  padding-bottom: 60px;
}

.features h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 40px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-box {
  background: white;
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  text-align: left;
}

.feature-box h3 {
  font-size: 18px;
  font-weight: 700;
  margin-top: 12px;
  margin-bottom: 6px;
}

.feature-box p {
  color: #475569;
  font-size: 15px;
}

/* REAL RESULTS GRID */
.before-after {
  text-align: center;
}

.before-after h2 {
  font-size: 32px;
  margin-bottom: 30px;
  font-weight: 800;
}

.ba-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.before-after img {
  width: 100%;
  border-radius: 14px;
  max-height: 420px;
  object-fit: cover;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

/* WHAT'S INCLUDED */
.included h2 {
  font-size: 32px;
  text-align: center;
  margin-bottom: 24px;
}

.included ul {
  max-width: 600px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.8;
}

/* PRICING */
/* ================================
   PRICING SECTION (PREMIUM STYLE)
   ================================ */

.pricing {
  background: #f4f7ff;
  padding: 80px 0;
  text-align: center;
}

.pricing h2 {
  font-size: 40px;
  color: #0a1a3f;
  margin-bottom: 50px;
}

.pricing-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  padding: 0 20px;
}

.pricing-card {
  background: #fff;
  padding: 32px 28px;
  border-radius: 26px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.10);
}

.pricing-card.best {
  border: 2px solid #2d8cff;
  transform: translateY(-10px);
  box-shadow: 0 22px 65px rgba(45, 140, 255, 0.20);
}

.pricing-card .tag {
  display: inline-block;
  background: #2d8cff;
  color: white;
  padding: 4px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 14px;
}

.pricing-card h3 {
  margin-bottom: 8px;
  font-size: 22px;
  color: #0a1a3f;
  font-weight: 700;
}

.pricing-card .price {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 22px;
  color: #2d8cff;
}

.pricing-card .subtitle {
  margin-top: 12px;
  color: #666;
  font-size: 14px;
}

/* BUY BUTTONS */
.pricing-card .buy-btn {
  display: block;
  width: 70%;
  margin: 0 auto;
  background: linear-gradient(90deg, #1e78ff, #248aff);
  color: #fff;
  padding: 14px 0;
  border-radius: 32px;
  font-size: 18px;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(30, 120, 255, 0.3);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.pricing-card .buy-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(30, 120, 255, 0.4);
}

/* MOBILE RESPONSIVE */
@media (max-width: 900px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card.best {
    transform: none;
  }

  .pricing-card .buy-btn {
    width: 100%;
  }
}

/* FOOTER */
footer {
  text-align: center;
  padding: 26px 0;
  background: #ffffff;
  color: #475569;
  font-size: 14px;
  border-top: 1px solid #e5e7eb;
}
