/* ═══ HERO ═══ */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 120px 0 80px;
  background: var(--bg-hero);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: 50%; left: 50%;
  width: 700px; height: 700px;
  transform: translate(-50%, -50%);
  background: conic-gradient(from 0deg, rgba(108,63,160,0.04), rgba(196,152,74,0.06), rgba(108,63,160,0.04));
  border-radius: 50%;
  animation: heroSpin 40s linear infinite;
}
@keyframes heroSpin { to { transform: translate(-50%, -50%) rotate(360deg); } }

/* Floating sacred geometry shapes */
.hero-shapes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.hero-shape {
  position: absolute;
  border: 1px solid;
  opacity: 0.15;
  animation: shapeFloat 15s ease-in-out infinite;
}
.hero-shape--1 {
  width: 120px; height: 120px; top: 15%; right: 12%;
  border-color: var(--accent);
  border-radius: 50%;
  animation-duration: 18s;
}
.hero-shape--2 {
  width: 80px; height: 80px; bottom: 20%; left: 8%;
  border-color: var(--gold);
  transform: rotate(45deg);
  animation-duration: 22s; animation-delay: -4s;
}
.hero-shape--3 {
  width: 60px; height: 60px; top: 30%; left: 15%;
  border-color: var(--accent);
  border-radius: 50%;
  animation-duration: 16s; animation-delay: -8s;
}
.hero-shape--4 {
  width: 100px; height: 100px; bottom: 30%; right: 8%;
  border-color: var(--gold);
  transform: rotate(30deg);
  animation-duration: 20s; animation-delay: -12s;
}
@keyframes shapeFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33% { transform: translateY(-20px) rotate(15deg); }
  66% { transform: translateY(15px) rotate(-10deg); }
}

.hero-grid {
  display: grid; grid-template-columns: 1fr 440px;
  gap: 60px; align-items: center;
}
.hero-content { z-index: 1; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 16px 6px 10px;
  background: var(--accent-soft);
  border: 1px solid rgba(108,63,160,0.12);
  border-radius: var(--radius-full);
  font-size: 0.78rem; font-weight: 500; color: var(--accent);
  margin-bottom: 24px;
  animation: fadeSlideDown 0.6s ease-out;
}
.hero-badge-live {
  width: 7px; height: 7px; border-radius: 50%;
  background: #34D399;
  box-shadow: 0 0 8px rgba(52,211,153,0.5);
  animation: livePulse 1.5s infinite;
}
@keyframes livePulse {
  0%, 100% { transform: scale(1); } 50% { transform: scale(1.4); opacity: 0.6; }
}

.hero h1 { margin-bottom: 20px; animation: fadeSlideUp 0.7s 0.1s ease-out both; }
.hero h1 em { font-style: italic; color: var(--accent); }
.hero .subtitle { text-align: left; margin: 0 0 32px; animation: fadeSlideUp 0.7s 0.2s ease-out both; }

.hero-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  animation: fadeSlideUp 0.7s 0.3s ease-out both;
}
.hero-points li {
  padding: 12px 14px;
  background: rgba(255,255,255,0.72);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  color: var(--text-secondary);
  box-shadow: var(--shadow-sm);
}

.hero-preview {
  margin-top: 4px;
  padding: 20px;
  background: rgba(255,255,255,0.82);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  animation: fadeSlideUp 0.7s 0.35s ease-out both;
}
.hero-preview-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}
.hero-preview-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
}
.hero-preview-date {
  font-size: 0.86rem;
  color: var(--text-muted);
}
.hero-preview-grid {
  display: grid;
  gap: 12px;
}
.hero-preview-main {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 14px;
  align-items: center;
}
.hero-preview-number {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--accent);
  background: linear-gradient(135deg, var(--accent-soft), rgba(255,255,255,0.92));
  border: 1px solid rgba(108,63,160,0.12);
}
.hero-preview-title {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.hero-preview-main p,
.hero-preview-item span {
  font-size: 0.84rem;
  color: var(--text-secondary);
  line-height: 1.5;
}
.hero-preview-item {
  display: grid;
  gap: 4px;
  padding-top: 12px;
  border-top: 1px solid var(--border-light);
}
.hero-preview-item strong {
  font-size: 0.85rem;
  color: var(--text);
}

.hero-stats {
  display: flex; gap: 32px; margin-top: 36px;
  animation: fadeSlideUp 0.7s 0.4s ease-out both;
}
.hero-stat-num {
  font-family: var(--font-display); font-size: 1.7rem; color: var(--accent);
  line-height: 1;
}
.hero-stat-label { font-size: 0.75rem; color: var(--text-muted); margin-top: 4px; }
.hero-stat-divider { width: 1px; background: var(--border-light); }


/* ═══ CALC CARD ═══ */
.calc-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 36px 28px;
  box-shadow: var(--shadow-lg);
  position: relative; z-index: 1;
  animation: fadeSlideUp 0.8s 0.3s ease-out both;
}
.calc-card::before {
  content: '';
  position: absolute; top: 0; left: 24px; right: 24px; height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--gold), var(--accent));
  border-radius: 0 0 2px 2px;
}
.calc-card h3 { text-align: center; margin-bottom: 4px; font-size: 1.3rem; }
.calc-sub { text-align: center; font-size: 0.82rem; color: var(--text-muted); margin-bottom: 24px; }
.calc-sub span { font-weight: 600; color: var(--accent); }

.form-group { margin-bottom: 14px; }
.form-label { display: block; font-size: 0.78rem; font-weight: 600; color: var(--text-secondary); margin-bottom: 5px; }
.form-input {
  width: 100%; padding: 13px 16px;
  background: var(--bg-warm);
  border: 1.5px solid transparent;
  border-radius: var(--radius-xs);
  font-family: var(--font-body); font-size: 0.92rem;
  color: var(--text); outline: none;
  transition: all 0.3s;
}
.form-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-soft);
  background: var(--bg-card);
}
.form-input::placeholder { color: var(--text-muted); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }

.btn-primary {
  width: 100%; padding: 15px;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: white; border: none; border-radius: var(--radius-xs);
  font-family: var(--font-body); font-size: 0.95rem; font-weight: 600;
  cursor: pointer; margin-top: 6px;
  box-shadow: 0 6px 24px rgba(108,63,160,0.3);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative; overflow: hidden;
}
.btn-primary::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, transparent 30%, rgba(255,255,255,0.15) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.6s;
}
.btn-primary:hover::after { transform: translateX(100%); }
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(108,63,160,0.4);
}
.calc-footer { text-align: center; margin-top: 14px; font-size: 0.78rem; color: var(--text-muted); }
.calc-footer a { color: var(--accent); text-decoration: none; font-weight: 500; }
