/* ============================================================
   Choice Media — Home page sections
   ============================================================ */

/* ---- HERO ---- */
.hero {
  min-height: 100vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 8rem 5vw 5rem;
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -20%; left: 50%; transform: translateX(-50%);
  width: 900px; height: 600px;
  background: radial-gradient(ellipse, rgba(30,127,255,0.12) 0%, transparent 65%);
  pointer-events: none;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid rgba(30,127,255,0.35);
  background: rgba(30,127,255,0.08); color: var(--accent);
  padding: 0.35rem 1rem; border-radius: 100px;
  font-size: 0.8rem; font-weight: 500; letter-spacing: 0.04em;
  margin-bottom: 2rem; text-transform: uppercase;
}
.hero-badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.4; transform: scale(0.7); } }
.hero h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.5rem, 6.3vw, 5.2rem);
  font-weight: 700; line-height: 1.05; letter-spacing: -0.03em;
  max-width: 900px; margin-bottom: 1.5rem;
}
.hero h1 em { font-style: normal; color: var(--accent); }
.hero p {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: #c8d5ea; max-width: 580px; margin: 0 auto 2.5rem;
  font-weight: 400; line-height: 1.75;
}
.hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero-stats {
  display: flex; gap: 3rem; justify-content: center; flex-wrap: wrap;
  margin-top: 5rem; padding-top: 3rem;
  border-top: 1px solid var(--border);
  width: 100%; max-width: 700px;
}
.stat { text-align: center; }
.stat-num { font-family: 'Space Grotesk', sans-serif; font-size: 2.2rem; font-weight: 700; color: var(--white); display: block; }
.stat-label { font-size: 0.85rem; color: #c0cfe8; letter-spacing: 0.04em; text-transform: uppercase; }

/* ---- HOW IT WORKS ---- */
.how { background: var(--surface); }
.steps {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem; margin-top: 4rem;
}
.step {
  padding: 2rem; border: 1px solid var(--border);
  border-radius: 16px; background: var(--card-bg);
  position: relative; transition: border-color 0.25s;
}
.step:hover { border-color: rgba(30,127,255,0.3); }
.step-num { font-family: 'Space Grotesk', sans-serif; font-size: 3rem; font-weight: 700; color: rgba(30,127,255,0.12); line-height: 1; margin-bottom: 1rem; display: block; }
.step h3 { font-family: 'Space Grotesk', sans-serif; font-size: 1.1rem; font-weight: 700; margin-bottom: 0.6rem; }
.step p { color: #b8c8e0; font-size: 0.97rem; line-height: 1.7; }

/* ---- SERVICES ---- */
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; margin-top: 4rem;
}
@media (max-width: 900px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .services-grid { grid-template-columns: 1fr; } }
.service-card {
  padding: 2rem 1.8rem; border: 1px solid var(--border);
  border-radius: 16px; background: var(--card-bg);
  transition: border-color 0.25s, background 0.25s;
}
.service-card:hover { border-color: rgba(30,127,255,0.25); background: rgba(30,127,255,0.04); }
.service-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--accent-glow);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.2rem; font-size: 1.3rem;
}
.service-card h3 { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 1.05rem; margin-bottom: 0.5rem; }
.service-card p { color: #b8c8e0; font-size: 1rem; line-height: 1.7; }

/* ---- PRICING ---- */
.pricing { background: var(--surface); }
.plans {
  display: grid; gap: 2rem; margin-top: 4rem; width: 100%;
  justify-content: center;
  grid-template-columns: min(560px, 100%); /* collapsed: just the main plan, wider + centered */
}
.plans.plans-expanded {
  grid-template-columns: repeat(3, 1fr);
  max-width: 1040px;
}
.plans .plan-extra { display: none; }
.plans.plans-expanded .plan-extra { display: flex; }
@media (max-width: 900px) { .plans.plans-expanded { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .plans.plans-expanded { grid-template-columns: 1fr; } }

.see-more-plans {
  margin-top: 2.5rem;
  background: transparent; color: var(--white);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 0.8rem 1.9rem; border-radius: 100px;
  font-family: 'DM Sans', sans-serif; font-size: 0.95rem; font-weight: 500;
  cursor: pointer; transition: all 0.2s;
}
.see-more-plans:hover { border-color: var(--accent); color: var(--accent); background: rgba(30,127,255,0.06); }
.price-amount-sm { font-size: 2rem; }
.plan {
  border: 1px solid var(--border); border-radius: 20px;
  padding: 2.5rem; background: var(--card-bg);
  position: relative; display: flex; flex-direction: column;
  transition: border-color 0.25s;
  text-align: left;            /* keep all card content aligned together */
}
.plan.featured {
  border-color: var(--accent);
  background: linear-gradient(135deg, rgba(30,127,255,0.06) 0%, rgba(0,0,0,0) 100%);
  box-shadow: 0 0 60px rgba(30,127,255,0.1);
}
.plan-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: var(--black);
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; padding: 0.3rem 1rem; border-radius: 100px; white-space: nowrap;
}
.plan-name { font-family: 'Space Grotesk', sans-serif; font-size: 1.15rem; font-weight: 700; margin-bottom: 0.5rem; color: var(--accent); }
.plan-tagline { font-size: 0.92rem; color: #b8c8e0; margin-bottom: 1.8rem; }
.plan-price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 0.4rem; }
.price-currency { font-size: 1.5rem; font-weight: 500; color: var(--muted); }
.price-amount { font-family: 'Space Grotesk', sans-serif; font-size: 3.6rem; font-weight: 700; line-height: 1; letter-spacing: -0.04em; }
.price-period { font-size: 0.9rem; color: var(--muted); }
.price-unit { font-size: 1.05rem; font-weight: 600; color: var(--muted); margin-left: 2px; }
.plan-desc { font-size: 0.92rem; color: #b8c8e0; margin-bottom: 2rem; }
.plan-features { list-style: none; margin-bottom: 2.5rem; flex: 1; display: flex; flex-direction: column; gap: 0.75rem; }
.plan-features li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.97rem; color: #d8e0ef; }
.plan-features li::before {
  content: ''; width: 18px; height: 18px; min-width: 18px;
  border-radius: 50%; background: rgba(30,127,255,0.15);
  border: 1.5px solid var(--accent);
  display: flex; align-items: center; justify-content: center;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='8' viewBox='0 0 10 8'%3E%3Cpath d='M1 4l2.5 2.5L9 1' stroke='%231e7fff' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center; margin-top: 2px;
}
.plan-cta {
  display: block; text-align: center;
  background: transparent; border: 1px solid rgba(255,255,255,0.2);
  color: var(--white); padding: 0.9rem 1.5rem; border-radius: 100px;
  font-weight: 500; font-size: 0.95rem; text-decoration: none; transition: all 0.2s;
}
.plan.featured .plan-cta { background: var(--accent); border-color: var(--accent); color: var(--black); font-weight: 700; box-shadow: 0 0 30px rgba(30,127,255,0.25); }
.plan-cta:hover { transform: translateY(-2px); }
.plan:not(.featured) .plan-cta:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.35); }
.plan.featured .plan-cta:hover { background: #fff; }
.pricing-note { margin-top: 2.5rem; text-align: center; font-size: 0.92rem; color: #a8bcda; font-weight: 400; }
.plan-activation {
  display: inline-flex; align-items: center; gap: 7px; margin: 0.6rem 0 0.5rem;
  background: rgba(30,127,255,0.1); border: 1px solid rgba(30,127,255,0.25);
  border-radius: 100px; padding: 0.3rem 0.85rem;
}
.plan.featured .plan-activation { background: rgba(30,127,255,0.12); border-color: rgba(30,127,255,0.35); }
.plan-activation .label { font-size: 0.78rem; color: #a0b8d8; }
.plan-activation .value { font-size: 0.85rem; font-weight: 700; color: #fff; }

/* ---- RESULTS ---- */
.results-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1.5rem; margin-top: 4rem; }
.result-card { padding: 2rem 1.5rem; text-align: center; border: 1px solid var(--border); border-radius: 16px; background: var(--card-bg); transition: border-color 0.2s; }
.result-card:hover { border-color: rgba(30,127,255,0.25); }
.result-num { font-family: 'Space Grotesk', sans-serif; font-size: 2.5rem; font-weight: 700; color: var(--accent); display: block; line-height: 1; margin-bottom: 0.5rem; }
.result-card p { color: #b8c8e0; font-size: 0.9rem; }

/* ---- TESTIMONIALS ---- */
.testimonials { background: var(--surface); }
.testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; margin-top: 4rem; }
.testi-card { padding: 2rem; border: 1px solid var(--border); border-radius: 16px; background: var(--card-bg); }
.testi-stars { color: var(--accent); font-size: 1.1rem; letter-spacing: 2px; margin-bottom: 1rem; }
.testi-text { font-size: 0.95rem; color: #d8e0ef; line-height: 1.7; margin-bottom: 1.5rem; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-glow), rgba(0,0,0,0.2));
  border: 1.5px solid rgba(30,127,255,0.3);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 0.85rem; color: var(--accent);
}
.testi-name { font-weight: 600; font-size: 0.92rem; }
.testi-role { font-size: 0.82rem; color: #9ab0cc; }

/* ---- FAQ ---- */
.faq-list { max-width: 700px; width: 100%; margin-top: 3rem; }
.faq-item { border-bottom: 1px solid var(--border); padding: 1.5rem 0; cursor: pointer; }
.faq-q { font-family: 'Space Grotesk', sans-serif; font-weight: 600; font-size: 1rem; display: flex; justify-content: space-between; align-items: center; gap: 1rem; user-select: none; }
.faq-toggle { width: 24px; height: 24px; min-width: 24px; border-radius: 50%; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 1rem; color: var(--accent); transition: transform 0.2s; }
.faq-a { color: var(--muted); font-size: 0.97rem; line-height: 1.7; max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.3s; }
.faq-item.open .faq-a { max-height: 300px; padding-top: 0.8rem; }
.faq-item.open .faq-toggle { transform: rotate(45deg); }

/* ---- CTA BANNER ---- */
.cta-banner { text-align: center; padding: 7rem 5vw; position: relative; overflow: hidden; }
.cta-banner::before {
  content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 700px; height: 400px;
  background: radial-gradient(ellipse, rgba(30,127,255,0.12) 0%, transparent 65%);
  pointer-events: none;
}
.cta-banner h2 { font-family: 'Space Grotesk', sans-serif; font-size: clamp(1.8rem, 4.5vw, 3.4rem); font-weight: 700; letter-spacing: -0.03em; max-width: 700px; margin: 0 auto 1.2rem; line-height: 1.1; }
.cta-banner h2 em { font-style: normal; color: var(--accent); }
.cta-banner p { color: var(--muted); max-width: 480px; margin: 0 auto 2.5rem; }

@media (max-width: 640px) {
  .hero-stats { gap: 2rem; }
}
