/* ============================================================
   Sleepytale — Landing Page Styles
   Dark, magical, cozy bedtime stories for kids
   ============================================================ */

/* ── Google Fonts are loaded in HTML ── */

/* ── Reset & Base ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --color-primary:     #6B4CE6;
  --color-primary-dim: #5239C2;
  --color-primary-glow: rgba(107, 76, 230, 0.35);
  --color-secondary:   #F5C542;
  --color-accent:      #E94560;
  --color-bg:          #1A1035;
  --color-surface:     #2D1F5E;
  --color-surface-2:   #3A2874;
  --color-text:        #F0E6FF;
  --color-text-muted:  #B8A9D4;
  --color-border:      rgba(107, 76, 230, 0.3);

  --font-heading: 'Grandstander', cursive;
  --font-body:    'Nunito', sans-serif;

  --radius-sm:  10px;
  --radius-md:  16px;
  --radius-lg:  24px;
  --radius-xl:  32px;

  --shadow-glow:    0 0 40px var(--color-primary-glow);
  --shadow-card:    0 8px 32px rgba(0, 0, 0, 0.4);
  --shadow-subtle:  0 2px 12px rgba(0, 0, 0, 0.3);

  --transition: 0.25s ease;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.2;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.2rem, 6vw, 3.8rem); }
h2 { font-size: clamp(1.7rem, 4vw, 2.6rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); }

p {
  color: var(--color-text-muted);
  font-size: 1.05rem;
}

a {
  color: inherit;
  text-decoration: none;
}

img { max-width: 100%; display: block; }

/* ── Layout Helpers ── */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-secondary);
  background: rgba(245, 197, 66, 0.1);
  border: 1px solid rgba(245, 197, 66, 0.3);
  padding: 4px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.section-heading {
  margin-bottom: 12px;
}

.section-subhead {
  font-size: 1.1rem;
  max-width: 560px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--color-primary);
  color: #fff;
  box-shadow: 0 4px 20px rgba(107, 76, 230, 0.45);
}

.btn-primary:hover {
  background: var(--color-primary-dim);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(107, 76, 230, 0.55);
}

.btn-outline {
  background: transparent;
  color: var(--color-text);
  border: 2px solid var(--color-border);
}

.btn-outline:hover {
  border-color: var(--color-primary);
  color: #fff;
  transform: translateY(-2px);
}

.btn-secondary {
  background: var(--color-secondary);
  color: #1A1035;
}

.btn-secondary:hover {
  background: #e6b730;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245, 197, 66, 0.4);
}

.btn-lg {
  font-size: 1.1rem;
  padding: 16px 36px;
  border-radius: var(--radius-lg);
}

/* ── Stars background decoration ── */
.stars-bg {
  position: relative;
  overflow: hidden;
}

.stars-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 15% 12%, rgba(255,255,255,0.7) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 35% 28%, rgba(255,255,255,0.5) 0%, transparent 100%),
    radial-gradient(1px 1px at 55% 8%, rgba(255,255,255,0.6) 0%, transparent 100%),
    radial-gradient(2px 2px at 75% 20%, rgba(255,255,255,0.4) 0%, transparent 100%),
    radial-gradient(1px 1px at 88% 6%, rgba(255,255,255,0.7) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 5% 45%, rgba(255,255,255,0.3) 0%, transparent 100%),
    radial-gradient(1px 1px at 65% 55%, rgba(255,255,255,0.5) 0%, transparent 100%),
    radial-gradient(1px 1px at 45% 72%, rgba(255,255,255,0.3) 0%, transparent 100%),
    radial-gradient(2px 2px at 92% 68%, rgba(255,255,255,0.4) 0%, transparent 100%),
    radial-gradient(1px 1px at 22% 85%, rgba(255,255,255,0.4) 0%, transparent 100%),
    radial-gradient(1.5px 1.5px at 78% 90%, rgba(255,255,255,0.3) 0%, transparent 100%);
  pointer-events: none;
  z-index: 0;
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: background var(--transition), box-shadow var(--transition);
}

.nav.scrolled {
  background: rgba(26, 16, 53, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--color-border);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: -0.02em;
  transition: color var(--transition);
}

.nav__logo .moon {
  color: var(--color-secondary);
  margin-left: 2px;
}

.nav__logo:hover {
  color: #fff;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  position: relative;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(107, 76, 230, 0.25) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 80% 50%, rgba(107, 76, 230, 0.12) 0%, transparent 70%),
    var(--color-bg);
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--color-secondary);
  letter-spacing: 0.06em;
}

.hero__eyebrow .dot {
  width: 6px;
  height: 6px;
  background: var(--color-secondary);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}

.hero__headline {
  color: var(--color-text);
}

.hero__headline .highlight {
  position: relative;
  color: var(--color-secondary);
  display: inline-block;
}

.hero__headline .highlight::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-secondary), transparent);
  border-radius: 2px;
}

.hero__subhead {
  font-size: 1.15rem;
  color: var(--color-text-muted);
  max-width: 480px;
  line-height: 1.7;
}

.hero__cta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero__note {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

/* Story Card Mockup */
.hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.story-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 32px;
  max-width: 380px;
  width: 100%;
  position: relative;
  box-shadow:
    var(--shadow-card),
    0 0 80px rgba(107, 76, 230, 0.2),
    0 0 160px rgba(107, 76, 230, 0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.story-card:hover {
  transform: translateY(-6px);
  box-shadow:
    var(--shadow-card),
    0 0 100px rgba(107, 76, 230, 0.3),
    0 0 200px rgba(107, 76, 230, 0.12);
}

.story-card__glow {
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(107, 76, 230, 0.4) 0%, transparent 60%, rgba(245, 197, 66, 0.15) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  padding: 1px;
  pointer-events: none;
}

.story-card__header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.story-card__icon {
  font-size: 1.8rem;
  line-height: 1;
}

.story-card__meta {
  flex: 1;
}

.story-card__label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-secondary);
  margin-bottom: 2px;
}

.story-card__night {
  font-size: 0.82rem;
  color: var(--color-text-muted);
}

.story-card__title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: var(--color-text);
  margin-bottom: 10px;
  line-height: 1.3;
}

.story-card__excerpt {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.story-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(107, 76, 230, 0.2);
  border: 1px solid rgba(107, 76, 230, 0.35);
  color: var(--color-text);
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-it-works {
  padding: 100px 0;
  position: relative;
}

.how-it-works__header {
  text-align: center;
  margin-bottom: 72px;
}

.how-it-works__header .section-subhead {
  margin: 0 auto;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  top: 48px;
  left: calc(16.67% + 16px);
  right: calc(16.67% + 16px);
  height: 2px;
  background: linear-gradient(90deg, var(--color-primary), transparent 50%, var(--color-primary));
  opacity: 0.35;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  padding: 36px 24px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}

.step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

.step__number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dim));
  box-shadow: 0 0 24px rgba(107, 76, 230, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.step__emoji {
  font-size: 2.2rem;
}

.step__title {
  color: var(--color-text);
}

.step__desc {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* ============================================================
   FEATURES
   ============================================================ */
.features {
  padding: 100px 0;
  background: var(--color-surface);
  position: relative;
}

.features::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-border), transparent);
}

.features::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-border), transparent);
}

.features__header {
  text-align: center;
  margin-bottom: 60px;
}

.features__header .section-subhead {
  margin: 0 auto;
}

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

.feature-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 40px rgba(107, 76, 230, 0.2);
  border-color: rgba(107, 76, 230, 0.5);
}

.feature-card__icon {
  font-size: 2.2rem;
  line-height: 1;
}

.feature-card__title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-text);
}

.feature-card__desc {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* ============================================================
   SAMPLE STORY
   ============================================================ */
.sample-story {
  padding: 100px 0;
  position: relative;
}

.sample-story__inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.sample-story__badge {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(135deg, var(--color-accent), #c73752);
  padding: 5px 16px;
  border-radius: 999px;
  margin-bottom: 28px;
}

.sample-story__title {
  color: var(--color-text);
  margin-bottom: 28px;
}

.sample-story__card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 40px 48px;
  text-align: left;
  position: relative;
  box-shadow: var(--shadow-card), 0 0 60px rgba(107, 76, 230, 0.12);
}

.sample-story__card::before {
  content: '"';
  position: absolute;
  top: 20px;
  left: 36px;
  font-family: var(--font-heading);
  font-size: 5rem;
  color: var(--color-primary);
  opacity: 0.3;
  line-height: 1;
  pointer-events: none;
}

.sample-story__text {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: 20px;
}

.sample-story__text .name {
  color: var(--color-secondary);
  font-weight: 700;
}

.sample-story__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid var(--color-border);
  flex-wrap: wrap;
  gap: 12px;
}

.sample-story__tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.sample-story__reading-time {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ============================================================
   PRICING
   ============================================================ */
.pricing {
  padding: 100px 0;
  background: var(--color-surface);
  position: relative;
}

.pricing::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-border), transparent);
}

.pricing__header {
  text-align: center;
  margin-bottom: 60px;
}

.pricing__header .section-subhead {
  margin: 0 auto;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  max-width: 800px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}

.pricing-card:hover {
  transform: translateY(-4px);
}

.pricing-card--featured {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 1px var(--color-primary), var(--shadow-card), 0 0 80px rgba(107, 76, 230, 0.2);
}

.pricing-card--featured:hover {
  box-shadow: 0 0 0 1px var(--color-primary), var(--shadow-card), 0 0 120px rgba(107, 76, 230, 0.3);
}

.pricing-card__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dim));
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 18px;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(107, 76, 230, 0.5);
}

.pricing-card__tier {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.pricing-card__price {
  display: flex;
  align-items: flex-end;
  gap: 6px;
}

.price-amount {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1;
}

.price-suffix {
  font-size: 1rem;
  color: var(--color-text-muted);
  padding-bottom: 8px;
}

.pricing-card__sub {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-top: -12px;
}

.pricing-card__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.pricing-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--color-text-muted);
}

.pricing-card__features li::before {
  content: '✓';
  color: var(--color-secondary);
  font-weight: 700;
  font-size: 0.9rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.pricing-card__cta {
  display: block;
  width: 100%;
  text-align: center;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  padding: 100px 0;
  position: relative;
}

.faq__header {
  text-align: center;
  margin-bottom: 56px;
}

.faq__header .section-subhead {
  margin: 0 auto;
}

.faq__list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq__item {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.faq__item.open {
  border-color: rgba(107, 76, 230, 0.5);
  box-shadow: 0 0 24px rgba(107, 76, 230, 0.12);
}

.faq__question {
  width: 100%;
  background: none;
  border: none;
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  text-align: left;
  padding: 22px 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: color var(--transition);
}

.faq__question:hover {
  color: #fff;
}

.faq__chevron {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(107, 76, 230, 0.2);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform var(--transition), background var(--transition);
}

.faq__item.open .faq__chevron {
  transform: rotate(180deg);
  background: var(--color-primary);
  border-color: var(--color-primary);
}

.faq__chevron svg {
  width: 12px;
  height: 12px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq__answer-inner {
  padding: 0 24px 22px;
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  padding: 48px 0 32px;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}

.footer__logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-text);
}

.footer__logo .moon {
  color: var(--color-secondary);
}

.footer__links {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer__links a {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  transition: color var(--transition);
  padding: 4px 8px;
}

.footer__links a:hover {
  color: var(--color-text);
}

.footer__links .sep {
  color: var(--color-border);
}

.footer__copy {
  font-size: 0.82rem;
  color: var(--color-text-muted);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* Tablet */
@media (max-width: 900px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps {
    grid-template-columns: 1fr;
    max-width: 460px;
    margin: 0 auto;
  }

  .steps::before {
    display: none;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  .hero__subhead {
    max-width: 100%;
    margin: 0 auto;
  }

  .hero__cta {
    justify-content: center;
  }

  .hero__visual {
    order: -1;
  }

  .story-card {
    max-width: 440px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }

  .container {
    padding: 0 16px;
  }

  .hero {
    padding: 100px 0 64px;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .pricing-cards {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

  .sample-story__card {
    padding: 28px 24px;
  }

  .sample-story__card::before {
    font-size: 3.5rem;
    left: 20px;
  }

  .btn-lg {
    font-size: 1rem;
    padding: 14px 28px;
  }

  .hero__cta {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .hero__cta .btn {
    justify-content: center;
  }

  .how-it-works,
  .features,
  .sample-story,
  .pricing,
  .faq {
    padding: 72px 0;
  }

  .story-card {
    padding: 24px;
  }

  .faq__question {
    font-size: 0.95rem;
    padding: 18px 18px;
  }

  .faq__answer-inner {
    padding: 0 18px 18px;
  }

  .sample-story__footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .pricing-card {
    padding: 32px 24px;
  }
}
