:root {
  --primary-color: #5b22c9;
  --primary-deep: #42158f;
  --ink-color: #18072f;
  --yellow-color: #ffeb00;
  --yellow-deep: #f5dd00;
  --surface-color: #ffffff;
  --surface-alt: #f4ecff;
  --text-color: #2d1468;
  --muted-text-color: #675392;
  --border-color: rgba(91, 34, 201, 0.16);
  --pink-color: #ff4fa3;
  --green-color: #74ef42;
  --orange-color: #ff9a2f;
  --shadow-soft: 0 26px 60px rgba(66, 21, 143, 0.18);
  --shadow-card: 0 16px 34px rgba(66, 21, 143, 0.10);
  --radius-md: 32px;
  --radius-lg: 46px;
  --radius-xl: 58px;
  --nav-height: 88px;
  --transition: 220ms ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "DM Sans", sans-serif;
  color: var(--text-color);
  line-height: 1.6;
  background: #ffffff;
}

a {
  text-decoration: none;
}

.section-padding {
  padding: 5rem 0;
}

.soft-surface {
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 79, 163, 0.08), transparent 18%),
    linear-gradient(180deg, #f8f3ff 0%, var(--surface-alt) 100%);
}

.brand-mark,
.section-title,
.hero-title,
.pricing-card h3,
.mini-step span,
.confirmation-card h2 {
  font-family: "Nunito Sans", sans-serif;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.brand-mark {
  color: var(--primary-deep);
  font-size: 1.8rem;
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.15rem 0;
  color: var(--primary-deep);
  font-family: "Nunito Sans", sans-serif;
  font-size: 1.9rem;
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 1;
}

.brand-logo img {
  display: block;
  width: auto;
  height: 42px;
  max-width: 190px;
  object-fit: contain;
}

.brand-logo span {
  display: inline-block;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 2.6rem;
}

.section-kicker,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0.8rem;
  color: var(--primary-color);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 999px;
}

.section-kicker::before,
.eyebrow::before {
  content: "";
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 999px;
  background: var(--pink-color);
  box-shadow: 0 0 0 7px rgba(255, 79, 163, 0.12);
}

.kicker-icon {
  width: 0.65rem;
  height: 0.65rem;
  display: inline-block;
  border-radius: 999px;
  background: var(--pink-color);
  box-shadow: 0 0 0 7px rgba(255, 79, 163, 0.12);
}

.section-title {
  margin-bottom: 0.85rem;
  color: var(--text-color);
  font-size: clamp(2rem, 3.6vw, 3.3rem);
  line-height: 1.06;
  text-wrap: balance;
}

#how-it-works .section-title,
#case-followup .section-title,
#what-you-get .section-title,
#who-for .section-title,
#please-know .section-title,
#signup .section-title {
  font-size: clamp(2.15rem, 4vw, 3.65rem);
  line-height: 0.98;
}

#how-it-works .section-kicker,
#case-followup .section-kicker,
#what-you-get .section-kicker,
#who-for .section-kicker,
#please-know .section-kicker,
#signup .section-kicker {
  padding: 0.48rem 0.78rem;
  border: 2px solid rgba(91, 34, 201, 0.14);
  background: #ffffff;
  box-shadow: 0 10px 22px rgba(66, 21, 143, 0.06);
}

.section-subtitle {
  max-width: 760px;
  color: var(--muted-text-color);
  font-size: 1.04rem;
}

.navbar {
  padding: 1rem 0;
  background: var(--yellow-color);
  box-shadow: 0 10px 28px rgba(66, 21, 143, 0.08);
  transition: padding var(--transition), box-shadow var(--transition), background-color var(--transition);
}

.navbar.scrolled,
.navbar.menu-open {
  padding: 0.8rem 0;
  background: rgba(255, 235, 0, 0.95);
  box-shadow: 0 14px 40px rgba(66, 21, 143, 0.14);
}

.nav-link {
  color: var(--primary-deep);
  font-weight: 800;
  padding: 0.75rem 1rem !important;
}

.nav-link:hover,
.nav-link:focus {
  color: var(--primary-color);
}

.nav-toggle {
  border: 0;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.45);
}

.nav-toggle:focus {
  box-shadow: 0 0 0 0.2rem rgba(91, 34, 201, 0.16);
}

.btn {
  border-radius: 999px;
  border-width: 2px;
  padding: 1rem 1.55rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  transition: transform var(--transition), box-shadow var(--transition), background-color var(--transition), color var(--transition), border-color var(--transition);
}

.btn:hover {
  transform: translateY(-3px);
}

.btn-brand {
  color: var(--primary-deep);
  background: linear-gradient(135deg, var(--yellow-color), var(--yellow-deep));
  border-color: var(--yellow-deep);
  box-shadow: 0 16px 28px rgba(255, 235, 0, 0.25);
}

.btn-brand:hover,
.btn-brand:focus {
  color: var(--primary-deep);
  background: #fff25a;
  border-color: var(--yellow-color);
}

.btn-outline-brand {
  color: #ffffff;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.44);
}

.btn-outline-brand:hover,
.btn-outline-brand:focus {
  color: var(--primary-deep);
  background: #ffffff;
  border-color: #ffffff;
}

.btn-outline-dark-brand {
  color: var(--primary-color);
  background: #ffffff;
  border-color: rgba(91, 34, 201, 0.22);
}

.btn-outline-dark-brand:hover,
.btn-outline-dark-brand:focus {
  color: #ffffff;
  background: var(--primary-color);
  border-color: var(--primary-color);
}

.hero-section {
  min-height: 88vh;
  padding-top: calc(var(--nav-height) + 4rem);
  display: flex;
  align-items: center;
  color: #ffffff;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 79, 163, 0.22), transparent 18%),
    radial-gradient(circle at 86% 82%, rgba(116, 239, 66, 0.16), transparent 18%),
    linear-gradient(180deg, var(--primary-color) 0%, var(--primary-deep) 100%);
}

.hero-section .eyebrow,
.hero-section .hero-title,
.hero-section .hero-copy {
  color: #ffffff;
}

.hero-section .eyebrow::before {
  background: var(--yellow-color);
  box-shadow: 0 0 0 7px rgba(255, 235, 0, 0.18);
}

.hero-title {
  max-width: 11ch;
  margin-bottom: 1rem;
  color: #ffffff;
  font-size: clamp(3rem, 5.8vw, 5.8rem);
  line-height: 0.95;
}

.hero-copy {
  max-width: 34rem;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.1rem;
}

.hero-actions {
  margin-top: 2rem;
}

.image-placeholder {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 2px dashed rgba(91, 34, 201, 0.20);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 79, 163, 0.08), transparent 20%),
    linear-gradient(180deg, #ffffff 0%, #f8f3ff 100%);
  box-shadow: var(--shadow-soft);
}

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

.image-placeholder figcaption {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  color: var(--primary-color);
  font-weight: 900;
  text-align: center;
}

.hero-image-placeholder {
  aspect-ratio: 700 / 620;
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
}

.hero-image-placeholder figcaption {
  color: rgba(255, 255, 255, 0.86);
}

.step-image-placeholder {
  width: 100%;
  aspect-ratio: 320 / 220;
  margin-bottom: 0.95rem;
  border-radius: 22px;
  box-shadow: none;
}

.case-image-placeholder {
  aspect-ratio: 520 / 420;
  margin-bottom: 1.3rem;
  border-radius: 28px;
}

.signup-image-placeholder {
  aspect-ratio: 500 / 420;
  margin-top: 1.5rem;
  border-radius: 28px;
}

.content-panel,
.info-card,
.pricing-card,
.mini-step,
.feature-pill,
.signup-form,
.confirmation-card {
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  background: #ffffff;
  box-shadow: var(--shadow-card);
}

#how-it-works,
#what-you-get,
#please-know {
  background:
    radial-gradient(circle at 8% 18%, rgba(255, 235, 0, 0.08), transparent 16%),
    radial-gradient(circle at 90% 78%, rgba(255, 79, 163, 0.07), transparent 18%),
    #ffffff;
}

.content-panel {
  padding: clamp(2rem, 5vw, 4rem);
}

.pricing-card {
  position: relative;
  height: 100%;
  padding: 2.15rem;
  overflow: hidden;
}

.pricing-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 8px;
  background: linear-gradient(90deg, var(--primary-color), var(--pink-color), var(--orange-color));
}

.pricing-card.recommended {
  color: #ffffff;
  background: linear-gradient(180deg, #5f25d2 0%, var(--primary-deep) 100%);
}

.pricing-card.recommended h3,
.pricing-card.recommended li {
  color: #ffffff;
}

.pricing-card h3 {
  margin: 0.75rem 0 1.4rem;
  color: var(--text-color);
  font-size: 3.1rem;
}

.pricing-card h3 span {
  margin-left: 0.2rem;
  color: var(--muted-text-color);
  font-family: "DM Sans", sans-serif;
  font-size: 1rem;
  font-weight: 700;
}

.pricing-card.recommended h3 span {
  color: rgba(255, 255, 255, 0.72);
}

.plan-badge {
  display: inline-flex;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  color: var(--primary-deep);
  background: var(--yellow-color);
  font-size: 0.84rem;
  font-weight: 900;
}

.small-note,
.form-microcopy,
.payment-box p {
  color: var(--muted-text-color);
}

.clean-list {
  display: grid;
  gap: 0.85rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.clean-list li {
  position: relative;
  padding-left: 1.35rem;
  color: var(--muted-text-color);
}

.clean-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: var(--pink-color);
}

.pricing-card.recommended .clean-list li::before {
  background: var(--yellow-color);
}

.pricing-card .btn {
  margin-top: 1.6rem;
}

.steps-grid,
.icon-list-grid {
  display: grid;
  gap: 1rem;
}

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

.mini-step {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.45rem;
  border-width: 2px;
  border-color: rgba(91, 34, 201, 0.18);
  border-radius: 38px;
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 235, 0, 0.18), transparent 22%),
    #ffffff;
}

.mini-step-visual {
  display: block;
  min-height: 100%;
}

.mini-step-visual span {
  margin-bottom: 0.75rem;
}

.mini-step span {
  width: 3.15rem;
  height: 3.15rem;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 999px;
  color: var(--primary-deep);
  background: linear-gradient(135deg, var(--yellow-color), var(--yellow-deep));
  box-shadow: 0 10px 18px rgba(255, 235, 0, 0.28);
  font-size: 1.35rem;
}

.mini-step p,
.feature-pill,
.info-card p {
  margin: 0;
  color: var(--text-color);
  font-weight: 900;
}

.info-card {
  padding: 2rem;
  border-width: 2px;
  border-color: rgba(91, 34, 201, 0.18);
  border-radius: 40px;
  background:
    radial-gradient(circle at 100% 0%, rgba(116, 239, 66, 0.12), transparent 22%),
    #ffffff;
}

.two-column-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.icon-list-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.feature-pill {
  position: relative;
  padding: 1.2rem 1.3rem 1.2rem 3rem;
  border-width: 2px;
  border-color: rgba(91, 34, 201, 0.16);
  border-radius: 999px;
  background:
    linear-gradient(180deg, #ffffff 0%, #fbf8ff 100%);
  box-shadow: 0 12px 26px rgba(66, 21, 143, 0.08);
}

.feature-pill::before {
  content: "";
  position: absolute;
  left: 1.25rem;
  top: 50%;
  width: 0.78rem;
  height: 0.78rem;
  transform: translateY(-50%);
  border-radius: 999px;
  background: var(--yellow-color);
  box-shadow: 0 0 0 6px rgba(255, 235, 0, 0.22);
}

.signup-section {
  background:
    radial-gradient(circle at 16% 18%, rgba(255, 79, 163, 0.12), transparent 18%),
    radial-gradient(circle at 88% 76%, rgba(255, 235, 0, 0.12), transparent 18%),
    linear-gradient(180deg, #ffffff 0%, #f8f3ff 100%);
}

.process-note {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.5rem;
}

.process-note span {
  padding: 0.6rem 0.85rem;
  border: 2px solid rgba(91, 34, 201, 0.14);
  border-radius: 999px;
  color: var(--primary-color);
  background: #ffffff;
  font-size: 0.84rem;
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(66, 21, 143, 0.06);
}

.signup-form,
.confirmation-card {
  padding: 2.15rem;
  border-width: 2px;
  border-color: rgba(91, 34, 201, 0.18);
  border-radius: 42px;
}

.signup-form label {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--text-color);
  font-weight: 900;
}

.signup-form label span {
  color: var(--muted-text-color);
  font-weight: 700;
}

.signup-form input,
.signup-form select {
  width: 100%;
  min-height: 3.1rem;
  border: 2px solid rgba(91, 34, 201, 0.14);
  border-radius: 20px;
  padding: 0.8rem 1rem;
  color: var(--text-color);
  background: #ffffff;
}

.signup-form input:focus,
.signup-form select:focus {
  outline: 3px solid rgba(91, 34, 201, 0.12);
  border-color: var(--primary-color);
}

.payment-box {
  margin: 1.4rem 0;
  padding: 1rem;
  border: 2px dashed rgba(91, 34, 201, 0.24);
  border-radius: 26px;
  background: #f8f3ff;
}

.payment-box strong {
  color: var(--primary-deep);
}

.form-microcopy {
  margin: 0.9rem 0 0;
  font-size: 0.9rem;
  text-align: center;
}

.confirmation-card {
  text-align: center;
}

.confirmation-card h2 {
  color: var(--primary-color);
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.confirmation-card p {
  color: var(--muted-text-color);
}

.premium-steps {
  align-items: stretch;
}

.process-card,
.logic-panel,
.feature-card,
.persona-card,
.trust-panel {
  position: relative;
  height: 100%;
  border: 2px solid rgba(91, 34, 201, 0.16);
  border-radius: 42px;
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 235, 0, 0.16), transparent 22%),
    #ffffff;
  box-shadow: var(--shadow-card);
}

.process-card {
  padding: 1.35rem;
}

.media-frame {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(91, 34, 201, 0.12);
  border-radius: 28px;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 79, 163, 0.08), transparent 20%),
    linear-gradient(180deg, #ffffff 0%, #f6efff 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.75);
}

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

.media-frame figcaption {
  position: absolute;
  top: 0.7rem;
  left: 0.7rem;
  padding: 0.32rem 0.55rem;
  border-radius: 999px;
  color: var(--primary-color);
  background: rgba(255, 255, 255, 0.82);
  font-size: 0.74rem;
  font-weight: 900;
  line-height: 1;
}

.step-media {
  aspect-ratio: 320 / 150;
  margin-bottom: 1.1rem;
}

.process-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  margin-bottom: 0.9rem;
}

.step-number,
.step-icon,
.feature-card span,
.persona-card span {
  width: 3rem;
  height: 3rem;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  font-family: "Nunito Sans", sans-serif;
  font-weight: 900;
}

.step-number {
  color: var(--primary-deep);
  background: linear-gradient(135deg, var(--yellow-color), var(--yellow-deep));
  box-shadow: 0 10px 18px rgba(255, 235, 0, 0.26);
}

.step-icon,
.feature-card span,
.persona-card span {
  color: #ffffff;
  background: var(--primary-color);
}

.process-card h3,
.logic-card h3,
.feature-card h3,
.persona-card h3 {
  margin: 0 0 0.35rem;
  color: var(--text-color);
  font-family: "Nunito Sans", sans-serif;
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.process-card p,
.logic-card p,
.feature-card p,
.persona-card p,
.logic-note {
  margin: 0;
  color: var(--muted-text-color);
}

.support-line {
  max-width: 28rem;
  margin-top: 1.1rem;
  color: var(--text-color);
  font-weight: 900;
}

.logic-panel {
  display: grid;
  gap: 1rem;
  padding: 1.5rem;
  background:
    radial-gradient(circle at 95% 8%, rgba(116, 239, 66, 0.18), transparent 20%),
    #ffffff;
}

.logic-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid rgba(91, 34, 201, 0.12);
  border-radius: 28px;
  background: #fbf8ff;
}

.logic-card:not(:last-of-type)::after {
  content: "";
  position: absolute;
  left: 2.45rem;
  bottom: -1rem;
  width: 3px;
  height: 1rem;
  background: rgba(91, 34, 201, 0.18);
}

.logic-card span {
  width: 2.9rem;
  height: 2.9rem;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 999px;
  color: var(--primary-deep);
  background: var(--yellow-color);
  font-family: "Nunito Sans", sans-serif;
  font-weight: 900;
}

.logic-note {
  padding: 1rem;
  border-radius: 24px;
  color: var(--primary-deep);
  background: rgba(255, 235, 0, 0.22);
  font-weight: 900;
}

.feature-board,
.feature-mini-grid,
.persona-grid {
  display: grid;
  gap: 1rem;
}

.feature-board {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.5fr);
  align-items: stretch;
}

.feature-mini-grid,
.persona-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.feature-card {
  padding: 1.35rem;
  min-height: 100%;
  overflow: hidden;
}

.feature-card::after {
  content: "";
  position: absolute;
  right: -2rem;
  bottom: -2.4rem;
  width: 7rem;
  height: 7rem;
  border-radius: 999px;
  background: rgba(255, 235, 0, 0.2);
  pointer-events: none;
}

.feature-card > * {
  position: relative;
  z-index: 1;
}

.feature-card-large {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100%;
  padding: 2rem;
  color: #ffffff;
  background:
    radial-gradient(circle at 90% 12%, rgba(255, 235, 0, 0.34), transparent 24%),
    linear-gradient(145deg, var(--primary-color), var(--primary-deep));
}

.feature-card-large h3,
.feature-card-large p {
  color: #ffffff;
}

.feature-card-large .card-icon {
  width: 4rem;
  height: 4rem;
  color: var(--primary-deep);
  background: var(--yellow-color);
}

.feature-label {
  display: inline-flex;
  margin-bottom: 0.75rem;
  padding: 0.42rem 0.7rem;
  border-radius: 999px;
  color: var(--yellow-color) !important;
  background: rgba(255, 255, 255, 0.12);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.card-icon {
  margin-bottom: 1rem;
}

.feature-mini-grid .feature-card:nth-child(2n) .card-icon {
  color: var(--primary-deep);
  background: var(--yellow-color);
}

.persona-card {
  min-height: 13rem;
  padding: 1.8rem;
  background:
    linear-gradient(180deg, #ffffff 0%, #fbf8ff 100%);
}

.persona-card::before {
  content: "";
  position: absolute;
  inset: 0.7rem;
  border: 1px dashed rgba(91, 34, 201, 0.16);
  border-radius: 34px;
  pointer-events: none;
}

.persona-card .card-icon {
  margin-bottom: 1.65rem;
}

.persona-card:nth-child(2n) .card-icon {
  color: var(--primary-deep);
  background: var(--yellow-color);
}

.trust-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.35fr);
  gap: 2rem;
  align-items: center;
  padding: 2.25rem;
  background:
    radial-gradient(circle at 8% 0%, rgba(255, 235, 0, 0.24), transparent 22%),
    radial-gradient(circle at 100% 100%, rgba(91, 34, 201, 0.08), transparent 28%),
    #ffffff;
}

.trust-copy p {
  max-width: 22rem;
  margin: 0;
  color: var(--muted-text-color);
  font-weight: 700;
}

.trust-rule-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.trust-rule-grid li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  border: 1px solid rgba(91, 34, 201, 0.12);
  border-radius: 22px;
  color: var(--text-color);
  background: rgba(244, 236, 255, 0.62);
  font-weight: 900;
}

.trust-rule-grid li:last-child {
  grid-column: 1 / -1;
  background: rgba(255, 235, 0, 0.2);
}

.trust-rule-grid span {
  width: 2rem;
  height: 2rem;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 999px;
  color: var(--primary-deep);
  background: var(--yellow-color);
  font-family: "Nunito Sans", sans-serif;
  font-weight: 900;
}

.benefit-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.4rem;
}

.benefit-chips span {
  padding: 0.65rem 0.9rem;
  border: 2px solid rgba(91, 34, 201, 0.14);
  border-radius: 999px;
  color: var(--primary-color);
  background: #ffffff;
  font-size: 0.9rem;
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(66, 21, 143, 0.06);
}

.signup-media {
  aspect-ratio: 500 / 300;
  max-height: 280px;
  margin-top: 1.35rem;
}

.site-footer {
  padding: 2rem 0;
  background: var(--yellow-color);
}

.footer-logo img {
  height: 56px;
  max-width: 220px;
}

.footer-shell,
.footer-links {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-shell {
  justify-content: space-between;
}

.footer-links {
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--primary-deep);
  font-weight: 900;
}

.reveal-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 600ms ease, transform 600ms ease;
}

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

@media (min-width: 992px) {
  .steps-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .feature-board {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .feature-card-large {
    grid-column: span 2;
  }

  .feature-mini-grid {
    grid-column: span 4;
  }

  .feature-mini-grid .feature-card {
    grid-column: auto;
  }

  .feature-card-large h3 {
    font-size: 2rem;
  }

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

@media (max-width: 991.98px) {
  .navbar-collapse {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 24px;
    background: rgba(255, 235, 0, 0.98);
    box-shadow: var(--shadow-card);
  }

  .nav-cta {
    width: 100%;
    margin-top: 0.85rem;
  }

  .hero-section {
    min-height: auto;
  }
}

@media (max-width: 767.98px) {
  .section-padding {
    padding: 4rem 0;
  }

  .hero-section {
    padding-top: calc(var(--nav-height) + 3rem);
  }

  .hero-title {
    font-size: 3.1rem;
  }

  .brand-logo {
    min-height: 38px;
    font-size: 1.65rem;
  }

  .brand-logo img,
  .footer-logo img {
    height: 34px;
    max-width: 145px;
  }

  .footer-logo img {
    height: 44px;
    max-width: 190px;
  }

  .steps-grid,
  .icon-list-grid,
  .feature-board,
  .feature-mini-grid,
  .persona-grid,
  .trust-panel,
  .trust-rule-grid,
  .two-column-list {
    grid-template-columns: 1fr;
  }

  .logic-panel,
  .trust-panel {
    padding: 1.25rem;
  }

  .feature-card-large {
    min-height: 15rem;
  }

  .persona-card {
    min-height: 11.5rem;
  }

  .step-media {
    aspect-ratio: 320 / 130;
  }

  .footer-shell {
    align-items: flex-start;
    flex-direction: column;
  }

  .step-image-placeholder {
    aspect-ratio: 16 / 9;
  }

  .case-image-placeholder,
  .signup-image-placeholder {
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 575.98px) {
  .hero-actions .btn {
    width: 100%;
  }

  .pricing-card,
  .content-panel,
  .info-card,
  .signup-form,
  .confirmation-card {
    border-radius: 28px;
  }
}
