:root {
  --bg: #07080d;
  --bg-soft: #0d1018;
  --surface: rgba(16, 20, 33, 0.78);
  --surface-strong: rgba(18, 23, 38, 0.92);
  --surface-soft: rgba(255, 255, 255, 0.03);
  --text: #f6f4ff;
  --text-soft: rgba(246, 244, 255, 0.74);
  --line: rgba(255, 255, 255, 0.1);
  --line-strong: rgba(255, 255, 255, 0.18);
  --purple: #b566ff;
  --purple-soft: rgba(181, 102, 255, 0.2);
  --cyan: #78d6ff;
  --peach: #ffd7c2;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.5);
  --container: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  background:
    radial-gradient(circle at 18% 10%, rgba(181, 102, 255, 0.16), transparent 18%),
    radial-gradient(circle at 82% 16%, rgba(120, 214, 255, 0.1), transparent 16%),
    linear-gradient(180deg, #05060b 0%, #090b12 44%, #05060a 100%);
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

body::before {
  background:
    linear-gradient(148deg, transparent 0 26%, rgba(255, 255, 255, 0.035) 26.1%, transparent 26.2%),
    linear-gradient(23deg, transparent 0 84%, rgba(255, 255, 255, 0.028) 84.1%, transparent 84.2%);
}

body::after {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.018), transparent 18%),
    linear-gradient(0deg, rgba(255, 255, 255, 0.018), transparent 24%);
}

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

button,
input,
textarea,
select {
  font: inherit;
}

.navbar,
.section,
.footer {
  position: relative;
  z-index: 1;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(4, 6, 12, 0.7);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.navbar-content {
  min-height: 72px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo,
.nav-links a,
.section-kicker,
.process-badge,
.process-tags span,
.plan-name,
.plan-kind,
.value-index,
.eyebrow,
.floating-label {
  font-family: "Space Grotesk", sans-serif;
}

.logo {
  font-size: 1.06rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-links a {
  font-size: 0.9rem;
  color: rgba(246, 244, 255, 0.72);
  transition: color 180ms ease;
}

.nav-links a:hover {
  color: rgba(246, 244, 255, 0.98);
}

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.backdrop-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(36px);
  opacity: 0.34;
}

.orb-a {
  top: 12%;
  left: 8%;
  width: 240px;
  height: 240px;
  background: rgba(181, 102, 255, 0.38);
}

.orb-b {
  right: 10%;
  top: 18%;
  width: 200px;
  height: 200px;
  background: rgba(120, 214, 255, 0.24);
}

.backdrop-grid {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 8, 13, 0.08), rgba(7, 8, 13, 0.78)),
    linear-gradient(140deg, transparent 0 58%, rgba(255, 255, 255, 0.035) 58.1%, transparent 58.2%),
    linear-gradient(28deg, transparent 0 82%, rgba(255, 255, 255, 0.03) 82.1%, transparent 82.2%);
}

.hero-grid {
  position: relative;
  min-height: calc(100vh - 72px);
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  gap: 48px;
  align-items: center;
  padding: 88px 0 92px;
}

.hero-copy {
  max-width: 560px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.eyebrow {
  color: #0a0b13;
  background: linear-gradient(90deg, #f7d7ff 0%, #a2d8ff 100%);
}

.hero-title,
.section-title {
  margin: 20px 0 0;
  font-family: "Noto Serif KR", "Playfair Display", serif;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.hero-title {
  line-height: 0.92;
}

.hero-title-main,
.hero-title-accent {
  display: block;
}

.hero-title-main {
  font-size: clamp(4.3rem, 7.2vw, 6.1rem);
  color: #f7f1ff;
  text-shadow: 0 0 30px rgba(181, 102, 255, 0.22);
}

.hero-title-secondary {
  margin-top: -8px;
}

.hero-title-accent {
  margin-top: 8px;
  font-size: clamp(3.2rem, 5.1vw, 4.7rem);
  font-style: italic;
  color: rgba(246, 244, 255, 0.82);
}

.hero-subtitle,
.section-lead,
.value-copy,
.process-copy,
.plan-summary,
.plan-exclude,
.faq-answer p {
  color: var(--text-soft);
  line-height: 1.84;
}

.hero-subtitle {
  max-width: 460px;
  margin: 26px 0 0;
  font-size: 1.05rem;
  font-weight: 500;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 34px;
}

.cta-button,
.ghost-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 26px;
  border-radius: 999px;
  overflow: hidden;
  border: 1px solid transparent;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.cta-button:hover,
.ghost-button:hover {
  transform: translateY(-1px);
}

.cta-button {
  color: #0c0d13;
  background: linear-gradient(90deg, var(--peach) 0%, var(--purple) 52%, var(--cyan) 100%);
  box-shadow: 0 0 44px rgba(181, 102, 255, 0.28);
}

.cta-arrow {
  margin-left: 10px;
  position: relative;
  z-index: 1;
}

.cta-button > span {
  position: relative;
  z-index: 1;
  font-weight: 700;
}

.cta-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.6) 45%, transparent 70%);
  transform: translateX(-120%);
  animation: shine 4s ease-in-out infinite;
}

.ghost-button {
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--line);
}

.hero-note {
  margin: 16px 0 0;
  font-size: 0.94rem;
  color: rgba(246, 244, 255, 0.58);
}

.hero-visual {
  display: flex;
  justify-content: flex-end;
}

.visual-stage {
  position: relative;
  width: min(100%, 680px);
  height: 660px;
  border-radius: 40px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background:
    radial-gradient(circle at 34% 24%, rgba(181, 102, 255, 0.18), transparent 24%),
    radial-gradient(circle at 78% 66%, rgba(120, 214, 255, 0.14), transparent 18%),
    linear-gradient(180deg, rgba(16, 20, 33, 0.62) 0%, rgba(10, 13, 22, 0.92) 100%);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.visual-noise {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(140deg, transparent 0 46%, rgba(255, 255, 255, 0.04) 46.1%, transparent 46.2%),
    linear-gradient(18deg, transparent 0 78%, rgba(255, 255, 255, 0.035) 78.1%, transparent 78.2%);
  opacity: 0.28;
}

.terminal-window,
.floating-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent),
    rgba(11, 14, 24, 0.88);
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
}

.terminal-window {
  position: absolute;
  left: 48px;
  top: 96px;
  width: min(82%, 540px);
  border-radius: 30px;
  transform: rotate(-5deg);
  animation: floatTerminal 7s ease-in-out infinite;
}

.terminal-top {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.terminal-dots {
  display: flex;
  gap: 8px;
}

.terminal-dots span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
}

.terminal-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.84rem;
  color: rgba(246, 244, 255, 0.62);
}

.terminal-body {
  padding: 22px;
}

.command-line {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 34px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.94rem;
  color: rgba(246, 244, 255, 0.86);
  opacity: 0.24;
  animation: lineReveal 5.6s ease-in-out infinite;
}

.command-line + .command-line {
  margin-top: 8px;
}

.line-1 { animation-delay: 0.1s; }
.line-2 { animation-delay: 0.5s; }
.line-3 { animation-delay: 0.9s; }
.line-4 { animation-delay: 1.3s; }
.line-5 { animation-delay: 1.7s; }

.prompt {
  color: var(--cyan);
}

.success .prompt {
  color: #8effb7;
}

.cursor {
  width: 7px;
  height: 18px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.88);
  animation: blink 1.1s step-end infinite;
}

.progress-panel {
  margin-top: 24px;
  padding: 16px 18px 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.progress-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.84rem;
  color: rgba(246, 244, 255, 0.76);
}

.progress-bar {
  height: 12px;
  margin-top: 14px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
}

.progress-fill {
  display: block;
  width: 88%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--peach) 0%, var(--purple) 50%, var(--cyan) 100%);
  animation: progressMove 3.6s ease-in-out infinite;
}

.floating-card {
  position: absolute;
  padding: 18px 20px;
  border-radius: 24px;
  width: 230px;
}

.floating-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  color: rgba(246, 244, 255, 0.54);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.floating-card strong {
  display: block;
  margin-top: 8px;
  font-size: 1.08rem;
  line-height: 1.34;
}

.floating-card p {
  margin: 10px 0 0;
  color: rgba(246, 244, 255, 0.66);
  font-size: 0.92rem;
  line-height: 1.6;
}

.card-free {
  top: 58px;
  right: 34px;
  animation: floatCard 7s ease-in-out infinite;
}

.card-test {
  right: 24px;
  bottom: 92px;
  animation: floatCard 7s ease-in-out infinite 0.9s;
}

.card-shield {
  left: 36px;
  bottom: 56px;
  animation: floatCard 7s ease-in-out infinite 1.6s;
}

.signal-ring {
  position: absolute;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.ring-a {
  right: 112px;
  top: 200px;
  width: 90px;
  height: 90px;
  animation: pulseRing 3.2s ease-in-out infinite;
}

.ring-b {
  left: 134px;
  bottom: 178px;
  width: 66px;
  height: 66px;
  animation: pulseRing 3.2s ease-in-out infinite 1.2s;
}

.scroll-indicator {
  position: absolute;
  left: 50%;
  bottom: 34px;
  transform: translateX(-50%);
  transition: opacity 180ms ease;
}

.mouse {
  width: 34px;
  height: 56px;
  border-radius: 18px;
  border: 2px solid rgba(255, 255, 255, 0.78);
  display: grid;
  justify-items: center;
  padding-top: 8px;
}

.wheel {
  width: 6px;
  height: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  animation: wheelDown 1.8s ease-in-out infinite;
}

.section {
  padding: 136px 0;
}

.section-head {
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}

.section-kicker {
  color: #090a12;
  background: linear-gradient(90deg, #f7d7ff 0%, #a2d8ff 100%);
}

.section-title {
  font-size: clamp(3rem, 5vw, 5rem);
  line-height: 1.02;
}

.section-lead {
  max-width: 650px;
  margin: 18px auto 0;
  font-size: 1rem;
}

.text-gradient {
  color: transparent;
  background: linear-gradient(90deg, #f6d6ff 0%, #92dbff 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.value-grid,
.pricing-grid {
  display: grid;
  gap: 22px;
  margin-top: 54px;
}

.value-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.value-card,
.plan-card,
.process-card,
.faq-item {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent),
    rgba(13, 16, 28, 0.84);
  box-shadow: var(--shadow);
}

.value-card {
  padding: 28px;
  border-radius: 28px;
}

.value-index {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.84rem;
  font-weight: 700;
}

.value-title,
.process-title,
.plan-kind {
  letter-spacing: -0.02em;
}

.value-title {
  margin: 24px 0 0;
  font-size: 1.6rem;
  line-height: 1.2;
}

.value-copy {
  margin: 14px 0 0;
  font-size: 0.98rem;
}

.value-list,
.plan-list {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.value-list li,
.plan-list li {
  position: relative;
  padding-left: 18px;
  color: rgba(246, 244, 255, 0.88);
  line-height: 1.7;
  font-size: 0.95rem;
}

.value-list li + li,
.plan-list li + li {
  margin-top: 10px;
}

.value-list li::before,
.plan-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--peach) 0%, var(--purple) 100%);
}

.process-timeline {
  position: relative;
  margin-top: 60px;
}

.process-timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, rgba(181, 102, 255, 0.75), rgba(120, 214, 255, 0.18));
  transform: translateX(-50%);
}

.process-step {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 76px 1fr;
  align-items: center;
}

.process-step + .process-step {
  margin-top: 28px;
}

.process-left .process-card {
  grid-column: 1;
}

.process-left .process-node {
  grid-column: 2;
}

.process-right .process-node {
  grid-column: 2;
}

.process-right .process-card {
  grid-column: 3;
}

.process-card {
  padding: 28px;
  border-radius: 28px;
}

.process-node {
  justify-self: center;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--peach) 0%, var(--purple) 100%);
  box-shadow: 0 0 22px rgba(181, 102, 255, 0.46);
}

.process-badge {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #090a12;
  background: linear-gradient(90deg, #f8d9ff 0%, #9ad8ff 100%);
}

.process-title {
  margin: 18px 0 0;
  font-size: 1.64rem;
  line-height: 1.18;
}

.process-copy {
  margin: 12px 0 0;
  font-size: 0.98rem;
}

.process-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.process-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(246, 244, 255, 0.84);
}

.pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 28px;
  border-radius: 30px;
}

.featured {
  transform: translateY(-14px);
  border-color: rgba(181, 102, 255, 0.32);
  box-shadow:
    0 30px 90px rgba(0, 0, 0, 0.56),
    0 0 0 1px rgba(181, 102, 255, 0.18);
}

.plan-ribbon {
  position: absolute;
  top: 18px;
  right: 18px;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border-radius: 999px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: #0a0b13;
  background: linear-gradient(90deg, #ffd7c2 0%, #b566ff 100%);
}

.plan-head {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.plan-name {
  font-size: 0.88rem;
  font-weight: 700;
  color: rgba(246, 244, 255, 0.58);
}

.plan-kind {
  font-size: 2rem;
  font-weight: 700;
}

.plan-summary {
  margin: 18px 0 0;
  font-size: 0.98rem;
}

.plan-exclude {
  margin: 20px 0 0;
  font-size: 0.92rem;
}

.plan-bottom {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: auto;
  padding-top: 28px;
}

.plan-price {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
  font-weight: 700;
}

.plan-button {
  width: 100%;
}

.faq-list {
  max-width: 920px;
  margin: 46px auto 0;
}

.faq-item {
  border-radius: 24px;
}

.faq-item + .faq-item {
  margin-top: 14px;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  width: 100%;
  padding: 24px 26px;
  cursor: pointer;
  list-style: none;
  font-size: 1rem;
  font-weight: 600;
}

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

.faq-toggle {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.3rem;
  color: rgba(246, 244, 255, 0.62);
  transition: transform 180ms ease, color 180ms ease;
}

.faq-item[open] .faq-toggle {
  color: var(--purple);
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 26px 24px;
}

.faq-answer p {
  margin: 0;
  font-size: 0.96rem;
}

.footer {
  padding: 44px 0 50px;
}

.footer-content {
  display: flex;
  justify-content: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-content p {
  margin: 0;
  text-align: center;
  color: rgba(246, 244, 255, 0.6);
  font-size: 0.92rem;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 620ms ease, transform 620ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes shine {
  0%, 60% {
    transform: translateX(-120%);
  }
  100% {
    transform: translateX(130%);
  }
}

@keyframes wheelDown {
  0%, 100% {
    transform: translateY(0);
    opacity: 0.82;
  }
  50% {
    transform: translateY(14px);
    opacity: 0.18;
  }
}

@keyframes blink {
  0%, 49% {
    opacity: 1;
  }
  50%, 100% {
    opacity: 0;
  }
}

@keyframes floatTerminal {
  0%, 100% {
    transform: rotate(-5deg) translateY(0);
  }
  50% {
    transform: rotate(-5deg) translateY(-8px);
  }
}

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

@keyframes pulseRing {
  0%, 100% {
    opacity: 0.26;
    transform: scale(1);
  }
  50% {
    opacity: 0.54;
    transform: scale(1.08);
  }
}

@keyframes progressMove {
  0%, 100% {
    width: 78%;
  }
  50% {
    width: 88%;
  }
}

@keyframes lineReveal {
  0%, 100% {
    opacity: 0.24;
    transform: translateY(0);
  }
  10%, 60% {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1180px) {
  .hero-grid,
  .value-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    justify-content: center;
  }

  .visual-stage {
    width: min(100%, 760px);
  }

  .featured {
    transform: none;
  }
}

@media (max-width: 920px) {
  .section {
    padding: 112px 0;
  }

  .process-timeline::before {
    left: 18px;
    transform: none;
  }

  .process-step {
    grid-template-columns: 36px 1fr;
    gap: 18px;
  }

  .process-left .process-card,
  .process-right .process-card {
    grid-column: 2;
  }

  .process-left .process-node,
  .process-right .process-node {
    grid-column: 1;
    justify-self: start;
    margin-top: 6px;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(calc(100% - 24px), var(--container));
  }

  .navbar-content {
    min-height: 64px;
  }

  .nav-links {
    display: none;
  }

  .hero-grid {
    min-height: auto;
    padding: 54px 0 78px;
    gap: 34px;
  }

  .hero-title-main {
    font-size: clamp(3.5rem, 13vw, 4.7rem);
  }

  .hero-title-accent {
    font-size: clamp(2.7rem, 10vw, 3.5rem);
  }

  .hero-subtitle,
  .section-lead {
    font-size: 0.98rem;
  }

  .visual-stage {
    height: 540px;
    border-radius: 28px;
  }

  .terminal-window {
    left: 22px;
    top: 92px;
    width: calc(100% - 86px);
  }

  .card-free {
    right: 16px;
    top: 30px;
  }

  .card-test {
    right: 14px;
    bottom: 74px;
  }

  .card-shield {
    left: 16px;
    bottom: 22px;
  }

  .floating-card {
    width: 180px;
    padding: 14px 16px;
  }

  .floating-card strong {
    font-size: 0.98rem;
  }

  .floating-card p {
    font-size: 0.84rem;
  }

  .section-title {
    font-size: clamp(2.24rem, 11vw, 3.2rem);
  }

  .value-card,
  .plan-card,
  .process-card {
    padding: 22px;
    border-radius: 24px;
  }

  .plan-kind {
    font-size: 1.72rem;
  }

  .faq-question {
    padding: 20px;
  }

  .faq-answer {
    padding: 0 20px 20px;
  }
}

@media (max-width: 520px) {
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-button,
  .ghost-button {
    width: 100%;
  }

  .hero-note {
    font-size: 0.88rem;
  }

  .visual-stage {
    height: 470px;
  }

  .terminal-window {
    left: 16px;
    top: 84px;
    width: calc(100% - 58px);
  }

  .command-line {
    font-size: 0.82rem;
  }

  .card-free {
    top: 18px;
    right: 12px;
  }

  .card-test {
    right: 12px;
    bottom: 88px;
  }

  .card-shield {
    left: 12px;
    bottom: 18px;
  }

  .floating-card {
    width: 156px;
    padding: 12px 14px;
  }

  .signal-ring {
    display: none;
  }

  .scroll-indicator {
    display: none;
  }
}
