/* ==========================================================================
   Narratiq — home.css
   Styles specific to the homepage (/).
   ========================================================================== */

/* --------------------------------------------------------------------------
   Hero section
   -------------------------------------------------------------------------- */
.hero-bg {
  background:
    radial-gradient(ellipse 80% 60% at 70% 40%, rgba(45,82,200,.28) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 20% 70%, rgba(240,106,26,.12) 0%, transparent 55%),
    linear-gradient(160deg, #050812 0%, #080E1C 55%, #0B1428 100%);
}

/* --------------------------------------------------------------------------
   PDF report mock-up
   -------------------------------------------------------------------------- */
.pdf-mock {
  background: #fff;
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 32px 80px rgba(5,8,18,.55), 0 8px 20px rgba(5,8,18,.3);
}

.gauge-small {
  width: 56px;
  height: 56px;
}

/* --------------------------------------------------------------------------
   Feature icons
   -------------------------------------------------------------------------- */
.feat-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(45,82,200,.12), rgba(45,82,200,.06));
  border: 1px solid rgba(45,82,200,.15);
}

/* --------------------------------------------------------------------------
   "How it works" step numbers
   -------------------------------------------------------------------------- */
.step-num {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 900;
  font-size: 20px;
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   Pricing — popular plan ring
   -------------------------------------------------------------------------- */
.pricing-popular-ring {
  background: linear-gradient(135deg, #2D52C8, #F06A1A);
  padding: 2px;
  border-radius: calc(var(--radius-xl) + 2px);
}
.pricing-popular-inner {
  background: #fff;
  border-radius: var(--radius-xl);
}

/* --------------------------------------------------------------------------
   FAQ accordions
   -------------------------------------------------------------------------- */
details summary {
  list-style: none;
  cursor: pointer;
}
details summary::-webkit-details-marker {
  display: none;
}
details[open] summary .faq-icon {
  transform: rotate(45deg);
}
.faq-icon {
  transition: transform .2s;
}

/* --------------------------------------------------------------------------
   Before/After comparison rows
   -------------------------------------------------------------------------- */
.before-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid #F1F0EA;
}
.before-row:last-child {
  border-bottom: none;
}
