/* ═══════════════════════════════
   HOME PAGE STYLES
   ═══════════════════════════════ */

/* ── HERO ── */
.hero {
  min-height: 92vh;
  background: linear-gradient(135deg, #0d4f2e 0%, #1a5c35 50%, #0a3d22 100%);
  display: flex; align-items: center;
  padding: 60px 32px;
  gap: 60px;
  position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 60% at 70% 60%, rgba(46,168,101,0.2) 0%, transparent 70%),
              radial-gradient(ellipse 40% 40% at 20% 80%, rgba(110,233,160,0.1) 0%, transparent 60%);
}
.hero-content {
  position: relative; z-index: 2;
  flex: 1; max-width: 620px;
}
.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: #a8f0c6; font-size: 13px; font-weight: 600;
  padding: 7px 18px; border-radius: 50px;
  margin-bottom: 28px;
}
.hero h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(38px, 5.5vw, 72px);
  color: var(--white); line-height: 1.08; margin-bottom: 22px;
}
.hero h1 em { color: #6ee9a0; font-style: italic; }
.hero > .hero-content > p {
  font-size: clamp(15px, 2vw, 18px);
  color: rgba(255,255,255,0.72);
  max-width: 520px; line-height: 1.75; margin-bottom: 36px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 52px; }
.hero-stats {
  display: flex; gap: 0;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg); overflow: hidden;
  max-width: 480px;
}
.hero-stat { flex: 1; padding: 20px 16px; text-align: center; }
.hero-stat:not(:last-child) { border-right: 1px solid rgba(255,255,255,0.1); }
.hero-stat strong { display: block; font-size: clamp(22px,3vw,32px); font-weight: 800; color: #6ee9a0; }
.hero-stat span { font-size: 11.5px; color: rgba(255,255,255,0.55); margin-top: 4px; display: block; }

.hero-card-float {
  position: relative; z-index: 2; flex: 0 0 380px;
  animation: float 4s ease-in-out infinite;
}
.hero-card-float img { border-radius: 16px; box-shadow: 0 24px 64px rgba(0,0,0,0.4); width: 100%; }
@keyframes float { 0%,100%{transform:translateY(0);} 50%{transform:translateY(-14px);} }

/* ── TRUSTED BAR ── */
.trusted-bar { background: var(--green-light); padding: 16px 32px; border-bottom: 1px solid var(--gray-200); }
.trusted-inner { max-width: 1160px; margin: 0 auto; display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.trusted-inner > span { font-size: 13px; font-weight: 600; color: var(--text-muted); white-space: nowrap; }
.trusted-tags { display: flex; gap: 10px; flex-wrap: wrap; }

/* ── FEATURE CARDS ── */
.feat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px; margin-top: 0;
}
.feat-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 36px 30px; border: 1px solid var(--gray-200);
  transition: var(--transition);
}
.feat-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.feat-icon {
  width: 56px; height: 56px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 22px;
}
.feat-icon svg { width: 28px; height: 28px; }
.feat-card h3 { font-size: 18px; font-weight: 700; color: var(--gray-800); margin-bottom: 12px; }
.feat-card p { font-size: 14.5px; color: var(--text-muted); line-height: 1.75; margin-bottom: 16px; }
.feat-link { font-size: 13.5px; font-weight: 600; color: var(--green); transition: gap .2s; }
.feat-link:hover { text-decoration: underline; }

/* ── ABOUT SECTION ── */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: center;
}
.about-img-wrap { position: relative; }
.about-img-wrap img { border-radius: var(--radius-xl); width: 100%; }
.about-badge {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--white); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); padding: 16px 20px;
  display: flex; align-items: center; gap: 12px;
  border: 1px solid var(--gray-200);
}
.about-badge span { font-size: 32px; }
.about-badge strong { display: block; font-size: 14px; font-weight: 700; color: var(--gray-800); }
.about-badge small { font-size: 12px; color: var(--text-muted); }
.about-text p { font-size: 15.5px; color: var(--text-muted); line-height: 1.8; }
.about-list { list-style: none; margin-top: 20px; display: flex; flex-direction: column; gap: 10px; }
.about-list li { font-size: 14.5px; font-weight: 600; color: var(--green); }

/* ── PLANS GRID ── */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 24px; align-items: start;
}
.plan-card {
  background: var(--white); border-radius: var(--radius-xl);
  border: 2px solid var(--gray-200); overflow: hidden;
}
.plan-card.featured { border-color: var(--green); }
.plan-top-badge {
  background: var(--green); color: var(--white);
  text-align: center; padding: 8px; font-size: 12px; font-weight: 700;
  letter-spacing: .05em;
}
.plan-header { padding: 28px 28px 20px; }
.plan-price { font-family: 'DM Serif Display', serif; font-size: 44px; color: var(--gray-800); }
.plan-price span { font-family: 'Sora', sans-serif; font-size: 15px; font-weight: 400; color: var(--text-muted); }
.plan-desc { font-size: 13px; color: var(--text-muted); margin-top: 6px; }
.plan-features { list-style: none; padding: 0 28px; margin-bottom: 24px; }
.plan-features li {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 0; font-size: 13.5px; color: var(--text);
  border-bottom: 1px solid var(--gray-100);
}
.plan-features li:last-child { border: none; }
.plan-features li::before {
  content: ''; display: block; width: 18px; height: 18px; min-width: 18px; border-radius: 50%;
  background: var(--green-light) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231a7a4a' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/11px no-repeat;
}
.plan-features li:last-child + .btn, .plan-card .btn { margin: 0 28px 28px; display: block; text-align: center; }

/* ── STATS SECTION ── */
.stats-section {
  background: linear-gradient(135deg, var(--green-dark) 0%, #1a5c35 100%);
  padding: 88px 32px;
}
.stats-section .container {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center; max-width: 1160px; margin: 0 auto;
}
.stats-content h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(28px,3.5vw,44px);
  color: var(--white); margin-bottom: 14px;
}
.stats-content p { color: rgba(255,255,255,0.6); font-size: 16px; }
.stats-boxes { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.stat-box {
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg); padding: 28px 20px; text-align: center;
}
.stat-box strong {
  display: block; font-family: 'DM Serif Display', serif;
  font-size: clamp(28px,3.5vw,44px); color: #6ee9a0; margin-bottom: 6px;
}
.stat-box span { font-size: 13px; color: rgba(255,255,255,0.55); }

/* ── VALUES ── */
.values-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(290px,1fr));
  gap: 24px;
}
.value-card {
  padding: 38px 32px; border-radius: var(--radius-xl);
  background: var(--accent-bg, #e6f4ed);
  border: 1px solid rgba(0,0,0,0.06);
  transition: var(--transition);
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.value-icon { font-size: 36px; margin-bottom: 16px; }
.value-card h3 { font-size: 20px; font-weight: 700; color: var(--gray-800); margin-bottom: 12px; }
.value-card p { font-size: 14.5px; color: var(--text-muted); line-height: 1.8; }

/* ── TELEHEALTH BANNER ── */
.telehealth-banner { background: var(--green-pale); }
.tele-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; max-width: 1160px; margin: 0 auto; }
.tele-list { list-style: none; margin-top: 20px; display: flex; flex-direction: column; gap: 12px; }
.tele-list li { font-size: 15px; color: var(--text-muted); display: flex; align-items: center; gap: 10px; }
.tele-img img { border-radius: var(--radius-xl); width: 100%; }

/* ── CTA FINAL ── */
.cta-final {
  background: linear-gradient(135deg, var(--green-dark) 0%, #0a3d22 100%);
  padding: 88px 32px;
}
.cta-inner { text-align: center; max-width: 640px; margin: 0 auto; }
.cta-inner h2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(28px,4vw,48px); color: var(--white); margin-bottom: 16px;
}
.cta-inner p { color: rgba(255,255,255,0.7); font-size: 17px; margin-bottom: 36px; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 28px; }
.cta-contact-info { display: flex; gap: 24px; justify-content: center; flex-wrap: wrap; }
.cta-contact-info a { font-size: 14px; color: rgba(255,255,255,0.6); transition: color .2s; }
.cta-contact-info a:hover { color: #6ee9a0; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero { flex-direction: column; text-align: center; min-height: auto; padding: 80px 24px; }
  .hero-card-float { flex: 0 0 auto; max-width: 340px; }
  .hero-stats { margin: 0 auto; }
  .hero-btns { justify-content: center; }
  .about-grid { grid-template-columns: 1fr; }
  .about-badge { right: 20px; }
  .stats-section .container { grid-template-columns: 1fr; }
  .tele-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .hero-stats { flex-direction: column; }
  .hero-stat:not(:last-child) { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .stats-boxes { grid-template-columns: 1fr; }
  .hero-card-float { display: none; }
}
