*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue:     #2562EA;
  --blue-dim: #1a4fc0;
  --bg:       #F1F5F9;
  --card:     #FFFFFF;
  --text:     #0F172A;
  --muted:    #64748B;
  --border:   #E2E8F0;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  background: rgba(241, 245, 249, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s;
}
nav.scrolled { border-bottom-color: var(--border); }

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
}
.nav-logo-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
}
.nav-logo-name {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue);
  color: white;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 10px 20px;
  border-radius: 100px;
  transition: background 0.2s, transform 0.15s;
}
.nav-cta:hover { background: var(--blue-dim); transform: translateY(-1px); }
.nav-cta svg { width: 14px; height: 14px; fill: white; opacity: 0.8; }

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 120px 48px 80px;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-left { display: flex; flex-direction: column; gap: 0; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp 0.7s ease forwards 0.1s;
}
.hero-eyebrow-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--blue);
}

.hero-headline {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(42px, 5vw, 64px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.7s ease forwards 0.2s;
}
.hero-headline em {
  font-style: italic;
  color: var(--blue);
}

.hero-subtext {
  font-size: 17px;
  line-height: 1.65;
  color: var(--muted);
  font-weight: 300;
  max-width: 380px;
  margin-bottom: 44px;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.7s ease forwards 0.35s;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.7s ease forwards 0.5s;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--blue);
  color: white;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  padding: 14px 26px;
  border-radius: 100px;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}
.btn-primary:hover {
  background: var(--blue-dim);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 98, 234, 0.3);
}
.btn-primary svg { width: 16px; height: 16px; fill: white; }

.hero-note {
  font-size: 13px;
  color: var(--muted);
  font-weight: 300;
}

/* ─── HERO RIGHT (phone mockup) ─── */
.hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp 0.9s ease forwards 0.4s;
}

/* floating cards around the phone */
.float-card {
  position: absolute;
  background: white;
  border-radius: 14px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.08);
  white-space: nowrap;
  animation: float 6s ease-in-out infinite;
}
.float-card-icon {
  width: 28px; height: 28px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.float-card-icon svg { width: 14px; height: 14px; }

.card-streak {
  top: 12%;
  right: -5%;
  animation-delay: 0s;
}
.card-streak .float-card-icon { background: #FFF4E6; }
.card-streak .float-card-icon svg { fill: #F97316; }

.card-session {
  bottom: 18%;
  left: -8%;
  animation-delay: 2s;
}
.card-session .float-card-icon { background: #EEF3FD; }
.card-session .float-card-icon svg { fill: var(--blue); }

.card-calm {
  top: 55%;
  right: -10%;
  animation-delay: 4s;
}
.card-calm .float-card-icon { background: #ECFDF5; }
.card-calm .float-card-icon svg { fill: #10B981; }

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-8px); }
}

/* ─── PHONE SHELL ─── */
.phone-shell {
  width: 280px;
  height: 570px;
  background: white;
  border-radius: 44px;
  box-shadow:
    0 0 0 2px #E2E8F0,
    0 32px 80px rgba(15, 23, 42, 0.12),
    0 8px 24px rgba(15, 23, 42, 0.06);
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}

.phone-notch {
  position: absolute;
  top: 14px; left: 50%;
  transform: translateX(-50%);
  width: 100px; height: 28px;
  background: #0F172A;
  border-radius: 20px;
  z-index: 10;
}

.phone-screen {
  width: 100%; height: 100%;
}

.phone-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.screen-label {
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}

.screen-time-month {
  font-size: 10px;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 8px;
  margin-bottom: 2px;
}
.screen-time-value {
  font-family: 'DM Serif Display', serif;
  font-size: 36px;
  color: var(--text);
  line-height: 1;
  letter-spacing: -0.02em;
}
.screen-time-value span { font-size: 20px; color: var(--muted); }

.screen-week {
  display: flex;
  gap: 6px;
  margin: 16px 0 20px;
}
.screen-day {
  width: 28px; height: 28px;
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px;
  font-weight: 500;
  color: var(--muted);
  background: transparent;
}
.screen-day.active {
  background: var(--blue);
  color: white;
}
.screen-day.done {
  color: var(--blue);
}

.screen-card {
  width: 100%;
  background: white;
  border-radius: 18px;
  padding: 16px;
  margin-bottom: 12px;
}
.screen-card-label {
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}
.screen-book-icon {
  width: 38px; height: 38px;
  background: #EEF3FD;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 8px;
}
.screen-book-icon svg { width: 18px; height: 18px; fill: var(--blue); }
.screen-book-title {
  font-family: 'DM Serif Display', serif;
  font-size: 14px;
  text-align: center;
  color: var(--text);
  margin-bottom: 2px;
}
.screen-book-author {
  font-size: 10px;
  color: var(--muted);
  text-align: center;
  margin-bottom: 10px;
}
.screen-progress-bar {
  height: 4px;
  background: var(--border);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 4px;
}
.screen-progress-fill {
  height: 100%;
  width: 62%;
  background: var(--blue);
  border-radius: 2px;
}
.screen-progress-label {
  font-size: 9px;
  color: var(--muted);
  text-align: center;
}

.screen-read-btn {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--blue);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  margin: 8px auto 0;
  box-shadow: 0 0 0 10px rgba(37,98,234,0.1);
}
.screen-read-btn-text {
  font-size: 11px;
  font-weight: 600;
  color: white;
  line-height: 1;
}
.screen-read-btn-sub {
  font-size: 7px;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-top: 2px;
}

/* ─── SECTION: WHAT IT IS ─── */
.section-reframe {
  max-width: 800px;
  margin: 0 auto;
  padding: 100px 48px;
  text-align: center;
}

.reframe-eyebrow {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 32px;
}

.reframe-lines {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.reframe-line {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--muted);
  transition: color 0.3s;
}
.reframe-line.highlight { color: var(--text); }
.reframe-line span { color: var(--blue); font-style: italic; }

/* ─── SECTION: CORE LOOP ─── */
.section-loop {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 48px 100px;
}
.loop-header {
  text-align: center;
  margin-bottom: 64px;
}
.loop-eyebrow {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 16px;
}
.loop-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(32px, 3.5vw, 48px);
  letter-spacing: -0.02em;
  color: var(--text);
}

.loop-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.loop-step {
  background: white;
  border-radius: 20px;
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.2s, box-shadow 0.2s;
}
.loop-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
}

.loop-step-number {
  font-family: 'DM Serif Display', serif;
  font-size: 80px;
  color: var(--bg);
  line-height: 1;
  position: absolute;
  top: -10px; right: 16px;
  font-style: italic;
  user-select: none;
}

.loop-step-icon {
  width: 44px; height: 44px;
  background: var(--bg);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.loop-step-icon svg { width: 20px; height: 20px; fill: var(--blue); }

.loop-step-title {
  font-family: 'DM Serif Display', serif;
  font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 10px;
  line-height: 1.2;
}
.loop-step-desc {
  font-size: 14px;
  line-height: 1.65;
  color: var(--muted);
  font-weight: 300;
}

/* ─── SECTION: PHILOSOPHY ─── */
.section-philosophy {
  background: var(--text);
  padding: 100px 48px;
  text-align: center;
}
.philosophy-inner {
  max-width: 700px;
  margin: 0 auto;
}
.philosophy-eyebrow {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 48px;
}
.philosophy-items {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 64px;
}
.philosophy-item {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(24px, 3vw, 36px);
  letter-spacing: -0.02em;
  color: rgba(255,255,255,0.25);
  transition: color 0.3s;
}
.philosophy-item.active { color: white; }
.philosophy-tagline {
  font-size: 20px;
  color: rgba(255,255,255,0.4);
  font-style: italic;
  font-family: 'DM Serif Display', serif;
}

/* ─── SECTION: FINAL CTA ─── */
.section-cta {
  padding: 120px 48px;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.cta-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(36px, 4.5vw, 56px);
  letter-spacing: -0.02em;
  color: var(--text);
  line-height: 1.1;
  margin-bottom: 16px;
}
.cta-title em { font-style: italic; color: var(--blue); }
.cta-sub {
  font-size: 16px;
  color: var(--muted);
  font-weight: 300;
  margin-bottom: 44px;
}
.cta-actions { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ─── FOOTER ─── */
footer {
  border-top: 1px solid var(--border);
  padding: 32px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}
.footer-copy {
  font-size: 13px;
  color: var(--muted);
  font-weight: 300;
}
.footer-links {
  display: flex;
  gap: 24px;
}
.footer-links a {
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
  font-weight: 300;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--text); }

/* ─── SECTION: PRODUCT FEEL (VIDEO) ─── */
.section-video {
  padding: 100px 48px 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  background: var(--bg);
  overflow: hidden;
}

.video-eyebrow {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 16px;
}

.video-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(32px, 3.5vw, 48px);
  letter-spacing: -0.02em;
  color: var(--text);
  text-align: center;
  margin-bottom: 64px;
}

.video-stage {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.video-glow {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  width: 320px;
  height: 120px;
  background: radial-gradient(ellipse at center,
    rgba(37, 98, 234, 0.18) 0%,
    rgba(37, 98, 234, 0.06) 50%,
    transparent 75%
  );
  filter: blur(20px);
  pointer-events: none;
  z-index: 0;
}

.video-phone {
  position: relative;
  z-index: 1;
  width: 300px;
  height: 620px;
  background: #0F172A;
  border-radius: 48px;
  box-shadow:
    0 0 0 2px rgba(255,255,255,0.08),
    0 0 0 3px #1e293b,
    0 40px 100px rgba(15, 23, 42, 0.22),
    0 12px 32px rgba(15, 23, 42, 0.12);
  overflow: hidden;
  flex-shrink: 0;
}

.video-island {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 110px;
  height: 30px;
  background: #000;
  border-radius: 20px;
  z-index: 10;
}

.video-phone video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 48px;
  display: block;
}

.video-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  border-radius: 48px;
  gap: 12px;
  padding: 24px;
}

.video-placeholder-icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: rgba(37, 98, 234, 0.1);
  display: flex; align-items: center; justify-content: center;
}
.video-placeholder-icon svg { width: 24px; height: 24px; fill: var(--blue); }

.video-placeholder-label {
  font-size: 13px;
  color: var(--muted);
  text-align: center;
  line-height: 1.5;
  font-weight: 300;
}

.video-placeholder-label strong {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 4px;
}

.video-scenes {
  display: flex;
  gap: 8px;
  margin-top: 28px;
  align-items: center;
  justify-content: center;
}
.video-scene-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--border);
  transition: background 0.3s, width 0.3s;
}
.video-scene-dot.active {
  width: 20px;
  border-radius: 3px;
  background: var(--blue);
}

.video-annotations {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}

.video-annotation {
  position: absolute;
  background: white;
  border-radius: 12px;
  padding: 10px 14px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text);
  box-shadow: 0 4px 16px rgba(15,23,42,0.1);
  white-space: nowrap;
  opacity: 0;
  transform: translateX(12px);
  transition: opacity 0.4s, transform 0.4s;
}
.video-annotation.visible {
  opacity: 1;
  transform: translateX(0);
}
.video-annotation-left {
  transform: translateX(-12px);
}
.video-annotation-left.visible {
  transform: translateX(0);
}

.ann-library  { top: 22%; right: calc(100% + 20px); }
.ann-session  { top: 45%; right: calc(100% + 20px); }
.ann-timer    { top: 60%; left: calc(100% + 20px); }
.ann-finish   { top: 78%; left: calc(100% + 20px); }

.ann-dot {
  display: inline-block;
  width: 7px; height: 7px;
  border-radius: 50%;
  margin-right: 7px;
  vertical-align: middle;
}

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  nav { padding: 16px 24px; }
  .hero {
    grid-template-columns: 1fr;
    padding: 100px 24px 60px;
    text-align: center;
    gap: 48px;
  }
  .hero-subtext { max-width: 100%; }
  .hero-actions { justify-content: center; }
  .hero-right { min-height: 480px; }
  .float-card { display: none; }
  .section-reframe { padding: 80px 24px; }
  .section-loop { padding: 60px 24px 80px; }
  .loop-steps { grid-template-columns: 1fr; }
  .section-philosophy { padding: 80px 24px; }
  .section-cta { padding: 80px 24px; }
  footer { flex-direction: column; gap: 16px; text-align: center; padding: 24px; }
  .section-video { padding: 80px 24px 100px; }
  .video-phone { width: 260px; height: 530px; }
  .video-island { width: 90px; }
  .video-annotation { display: none; }
  .page-legal { padding: 100px 24px 60px; }
  .page-legal h1 { font-size: 32px; }
  .page-404 { padding: 120px 24px 80px; }
}

/* ─── LEGAL PAGES ─── */
.page-legal {
  max-width: 720px;
  margin: 0 auto;
  padding: 120px 48px 80px;
}

.page-legal h1 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(32px, 4vw, 48px);
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 8px;
}

.legal-updated {
  font-size: 14px;
  color: var(--muted);
  font-weight: 300;
  margin-bottom: 48px;
}

.page-legal section {
  margin-bottom: 36px;
}

.page-legal h2 {
  font-family: 'DM Serif Display', serif;
  font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.3;
}

.page-legal p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--muted);
  font-weight: 300;
  margin-bottom: 12px;
}

.page-legal ul {
  list-style: none;
  padding: 0;
  margin: 0 0 12px;
}

.page-legal li {
  font-size: 15px;
  line-height: 1.75;
  color: var(--muted);
  font-weight: 300;
  padding-left: 20px;
  position: relative;
  margin-bottom: 4px;
}

.page-legal li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
}

.page-legal a {
  color: var(--blue);
  text-decoration: none;
  transition: color 0.2s;
}
.page-legal a:hover {
  color: var(--blue-dim);
}

.page-legal strong {
  font-weight: 500;
  color: var(--text);
}

/* ─── 404 PAGE ─── */
.page-404 {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 48px 80px;
  max-width: 560px;
  margin: 0 auto;
}

.error-icon {
  width: 64px;
  height: 64px;
  background: rgba(37, 98, 234, 0.08);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.error-icon svg {
  width: 28px;
  height: 28px;
  fill: var(--blue);
}

.error-code {
  font-family: 'DM Serif Display', serif;
  font-size: 96px;
  letter-spacing: -0.04em;
  color: var(--text);
  line-height: 1;
  margin-bottom: 8px;
}

.error-title {
  font-family: 'DM Serif Display', serif;
  font-size: 24px;
  font-style: italic;
  color: var(--blue);
  margin-bottom: 16px;
}

.error-description {
  font-size: 16px;
  line-height: 1.65;
  color: var(--muted);
  font-weight: 300;
  margin-bottom: 40px;
}

/* ─── MID-PAGE CTA (after features) ─── */
.loop-cta {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}

/* ─── FAQ SECTION ─── */
.section-faq {
  max-width: 720px;
  margin: 0 auto;
  padding: 80px 48px 100px;
}

.faq-eyebrow {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  text-align: center;
  margin-bottom: 16px;
}

.faq-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(28px, 3vw, 40px);
  letter-spacing: -0.02em;
  color: var(--text);
  text-align: center;
  margin-bottom: 48px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: box-shadow 0.2s;
}

.faq-item[open] {
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.06);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  font-size: 16px;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  list-style: none;
  transition: color 0.2s;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question::after {
  content: '+';
  font-size: 20px;
  font-weight: 300;
  color: var(--muted);
  transition: transform 0.2s;
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-item[open] .faq-question::after {
  content: '−';
}

.faq-question:hover {
  color: var(--blue);
}

.faq-answer {
  padding: 0 24px 20px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
  font-weight: 300;
}

@media (max-width: 900px) {
  .section-faq { padding: 60px 24px 80px; }
  .faq-question { padding: 16px 20px; font-size: 15px; }
  .faq-answer { padding: 0 20px 16px; }
}
