/* ── HERO ── */
.hero {
  background: linear-gradient(160deg, #fff8f5 0%, #fff 50%, #f5f0ff 100%);
  padding: 80px 0 0;
  overflow: hidden;
}

.hero-inner { display: flex; flex-direction: column; align-items: center; text-align: center; }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 99px;
  padding: 6px 16px;
  font-size: 0.85rem;
  color: var(--text-2);
  margin-bottom: 32px;
  box-shadow: var(--shadow-sm);
}
.hero-eyebrow a { color: var(--brand); font-weight: 600; }

.hero-title {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -.02em;
  margin-bottom: 24px;
}

.gradient-text {
  background: linear-gradient(135deg, var(--brand) 0%, var(--gradient-end, #9b2335) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--text-2);
  max-width: 580px;
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-cta {
  display: flex; gap: 12px; flex-wrap: wrap; justify-content: center;
  margin-bottom: 14px;
}

.hero-note { font-size: 0.8rem; color: var(--text-3); margin-bottom: 56px; }

/* Dashboard mockup */
.hero-visual { width: 100%; max-width: 820px; }

.dashboard-mockup {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px 16px 0 0;
  box-shadow: 0 -4px 40px rgba(0,0,0,.12);
  overflow: hidden;
}

.mock-topbar {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 20px;
  background: #f4f4f8;
  border-bottom: 1px solid var(--border);
}
.mock-dots { display: flex; gap: 6px; }
.mock-dots span {
  width: 12px; height: 12px; border-radius: 50%;
}
.mock-dots span:nth-child(1) { background: #ff5f57; }
.mock-dots span:nth-child(2) { background: #febc2e; }
.mock-dots span:nth-child(3) { background: #28c840; }
.mock-title { font-size: 0.78rem; color: var(--text-3); font-weight: 500; }

.mock-body { display: flex; height: 260px; }

.mock-sidebar {
  width: 140px; flex-shrink: 0;
  background: #fafafa;
  border-right: 1px solid var(--border);
  padding: 16px 12px;
  display: flex; flex-direction: column; gap: 2px;
}

.mock-nav-item {
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 0.78rem;
  color: var(--text-3);
  cursor: default;
  transition: background .15s, color .15s;
}
.mock-nav-item.active {
  background: var(--brand-light);
  color: var(--brand);
  font-weight: 600;
}

.mock-content { flex: 1; padding: 20px; display: flex; flex-direction: column; gap: 16px; overflow: hidden; }

.mock-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }

.mock-stat {
  background: var(--surface);
  border-radius: 8px;
  padding: 12px;
  border: 1px solid var(--border);
}
.stat-num { font-size: 1.1rem; font-weight: 700; color: var(--text); }
.stat-label { font-size: 0.68rem; color: var(--text-3); margin-top: 2px; }

.mock-chart {
  flex: 1;
  display: flex; align-items: flex-end; gap: 8px;
  background: var(--surface);
  border-radius: 8px;
  padding: 12px;
  border: 1px solid var(--border);
}
.chart-bar {
  flex: 1;
  background: #e8e8f0;
  border-radius: 4px 4px 0 0;
  transition: background .2s;
}
.chart-bar.active { background: var(--brand); }

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
}
.trust-inner {
  display: flex; align-items: center; gap: 32px; flex-wrap: wrap;
}
.trust-inner p { font-size: 0.82rem; color: var(--text-3); white-space: nowrap; }
.trust-logos { display: flex; gap: 32px; flex-wrap: wrap; }
.trust-logos span {
  font-size: 0.88rem;
  font-weight: 600;
  color: #bbbbd0;
  letter-spacing: .02em;
}

/* ── PRODUCTS ── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.product-card {
  display: flex; gap: 16px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  transition: box-shadow .2s, border-color .2s, transform .2s;
  cursor: pointer;
}
.product-card.live:hover {
  box-shadow: var(--shadow);
  border-color: #d0d0e8;
  transform: translateY(-3px);
}
.product-card.soon { opacity: .75; }
.product-card.soon:hover { opacity: 1; }

.product-icon-wrap {
  width: 48px; height: 48px; flex-shrink: 0;
  background: color-mix(in srgb, var(--c) 12%, white);
  color: var(--c);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
}
.product-icon-wrap svg { width: 22px; height: 22px; }

.product-info { flex: 1; }
.product-header { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.product-header h3 { font-size: 1rem; font-weight: 700; }
.product-info p { font-size: 0.85rem; color: var(--text-2); line-height: 1.6; margin-bottom: 12px; }
.product-link { font-size: 0.82rem; font-weight: 600; color: var(--brand); }
/* Notify form (Laravel version) */
.notify-form { display: flex; flex-direction: column; gap: 6px; }
.notify-input {
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 6px 10px;
  font-size: 0.8rem;
  font-family: var(--font);
  outline: none;
  transition: border-color .15s;
}
.notify-input:focus { border-color: var(--brand); }
.notify-btn { background: none; border: none; cursor: pointer; text-align: left; padding: 0; }

.alert-success {
  background: #d1fae5; color: #065f46;
  border: 1px solid #6ee7b7;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 0.9rem;
  margin-bottom: 24px;
}

/* ── WHY ── */
.why { background: var(--surface); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.why-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--border);
  transition: box-shadow .2s;
}
.why-card:hover { box-shadow: var(--shadow); }
.why-icon { font-size: 1.8rem; margin-bottom: 14px; }
.why-card h4 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.why-card p { font-size: 0.85rem; color: var(--text-2); line-height: 1.7; }

/* ── PRICING ── */
.pricing-toggle {
  display: flex; align-items: center; justify-content: center;
  gap: 12px; margin-bottom: 48px;
}
.toggle-label { font-size: 0.9rem; font-weight: 500; color: var(--text-3); }
.toggle-label.active { color: var(--text); font-weight: 600; }

.switch { position: relative; display: inline-block; width: 44px; height: 24px; }
.switch input { opacity: 0; width: 0; height: 0; }
.slider {
  position: absolute; inset: 0;
  background: var(--border);
  border-radius: 24px;
  cursor: pointer;
  transition: background .2s;
}
.slider::before {
  content: '';
  position: absolute;
  width: 18px; height: 18px;
  left: 3px; top: 3px;
  background: white;
  border-radius: 50%;
  transition: transform .2s;
  box-shadow: var(--shadow-sm);
}
.switch input:checked + .slider { background: var(--brand); }
.switch input:checked + .slider::before { transform: translateX(20px); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.price-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  position: relative;
}
.price-card.featured {
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(232,93,4,.08);
}

.price-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--brand); color: #fff;
  padding: 4px 16px; border-radius: 99px;
  font-size: 0.75rem; font-weight: 700; white-space: nowrap;
}

.price-header { margin-bottom: 20px; }
.price-header h3 { font-size: 1.2rem; font-weight: 700; }
.price-header p { font-size: 0.82rem; color: var(--text-3); margin-top: 4px; }

.price-amount { display: flex; align-items: baseline; gap: 2px; margin-bottom: 4px; }
.currency { font-size: 1.3rem; font-weight: 700; }
.amount { font-size: 2.8rem; font-weight: 900; line-height: 1; }
.period { font-size: 0.85rem; color: var(--text-3); margin-left: 4px; }

.price-note { font-size: 0.78rem; color: var(--text-3); margin-bottom: 20px; }

.price-btn { width: 100%; margin-bottom: 24px; }

.price-features { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.price-features li { font-size: 0.85rem; color: var(--text-2); }

/* ── ABOUT ── */
.about { background: var(--surface); }

.about-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.about-text p { color: var(--text-2); line-height: 1.8; margin-bottom: 12px; }
.about-text h2 { font-size: 2rem; font-weight: 800; margin: 12px 0 20px; }
.about-text a { color: var(--brand); }

.about-visual {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}

.about-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 20px;
  border: 1px solid var(--border);
  text-align: center;
  font-size: 0.85rem; color: var(--text-2);
}
.about-stat {
  font-size: 2rem; font-weight: 900; color: var(--text);
  margin-bottom: 6px;
}

/* ── FOOTER CTA ── */
.footer-cta {
  background: linear-gradient(135deg, var(--brand) 0%, var(--gradient-end, #9b2335) 100%);
  color: white;
  padding: 80px 0;
  text-align: center;
}
.footer-cta h2 { font-size: 2rem; font-weight: 800; margin-bottom: 12px; }
.footer-cta p { font-size: 1.05rem; opacity: .85; margin-bottom: 32px; }
.footer-cta .btn-primary {
  background: white; color: var(--brand);
  box-shadow: 0 4px 20px rgba(0,0,0,.2);
}
.footer-cta .btn-primary:hover { background: var(--brand-light, #fff3ee); box-shadow: 0 6px 28px rgba(0,0,0,.3); }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .product-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .about-inner { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .product-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 2.2rem; }
  .mock-stats { grid-template-columns: 1fr 1fr; }
  .mock-sidebar { display: none; }
  .about-visual { grid-template-columns: 1fr 1fr; }
}
