:root {
  --bg: #f6f7fb;
  --bg-gradient: linear-gradient(180deg, #fbfcff 0%, #f2f5fa 100%);
  --surface: #ffffff;
  --surface-soft: #fbfbfd;
  --text: #142a3b;
  --text-strong: #0c1d2c;
  --muted: #667085;
  --line: #e8ecf3;
  --line-strong: #d8dde7;
  --brand: #dea335;
  --brand-light: #f0ba4d;
  --brand-dark: #142a3b;
  --brand-soft: rgba(222, 163, 53, 0.12);
  --success: #22a447;
  --danger: #f07575;
  --shadow-sm: 0 6px 18px rgba(19, 33, 58, 0.05);
  --shadow: 0 16px 40px rgba(19, 33, 58, 0.08);
  --shadow-lg: 0 32px 64px rgba(19, 33, 58, 0.12);
  --shadow-brand: 0 18px 28px rgba(222, 163, 53, 0.22);
  --radius-sm: 14px;
  --radius: 20px;
  --radius-lg: 28px;
  --radius-pill: 999px;
  --container: min(1320px, calc(100% - 48px));
  --container-narrow: min(1120px, calc(100% - 48px));
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  min-height: 100vh;
  font-family: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.55;
  color: var(--text);
  background: var(--bg-gradient);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

button {
  font: inherit;
  color: inherit;
  background: transparent;
  border: 0;
  cursor: pointer;
}

h1, h2, h3, h4 {
  color: var(--text-strong);
  line-height: 1.15;
  letter-spacing: -0.01em;
}

h1 {
  font-size: clamp(2.25rem, 4.6vw, 3.6rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(1.75rem, 3.2vw, 2.5rem);
  font-weight: 800;
}

h3 {
  font-size: 1.15rem;
  font-weight: 700;
}

h4 {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--muted);
}

p {
  color: var(--muted);
}

::selection {
  background: var(--brand-soft);
  color: var(--brand-dark);
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 999;
  padding: 12px 18px;
  background: var(--brand-dark);
  color: #fff;
  border-radius: var(--radius-pill);
  font-weight: 700;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 16px;
}

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

.eyebrow {
  display: inline-block;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  background: var(--brand-soft);
  color: var(--brand-dark);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ----- Buttons ------------------------------------------------------ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn:focus-visible {
  outline: 3px solid rgba(20, 42, 59, 0.16);
  outline-offset: 3px;
}

.btn-lg {
  min-height: 56px;
  padding: 0 28px;
  font-size: 1rem;
}

.btn-block {
  width: 100%;
}

.btn-primary {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-light) 100%);
  color: #fff;
  box-shadow: var(--shadow-brand);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 34px rgba(222, 163, 53, 0.28);
}

.btn-ghost {
  background: var(--surface);
  color: var(--brand-dark);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.btn-ghost:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

/* ----- Topbar ------------------------------------------------------- */

.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid rgba(232, 236, 243, 0.7);
}

.topbar-inner {
  width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 14px 0;
}

.top-logo {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.top-logo-image {
  height: 40px;
  width: auto;
}

.top-nav {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-left: 12px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.top-nav a {
  padding: 10px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--muted);
  transition: background 0.2s ease, color 0.2s ease;
}

.top-nav a:hover {
  background: var(--brand-soft);
  color: var(--brand-dark);
}

.top-actions {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.top-menu-toggle {
  display: none;
  margin-left: auto;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  padding: 0;
}

.top-menu-toggle span {
  width: 18px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.top-menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.top-menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.top-menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-nav {
  width: var(--container);
  margin: 0 auto 12px;
  gap: 4px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.mobile-nav:not([hidden]) {
  display: grid;
}

.mobile-nav a {
  padding: 14px 16px;
  border-radius: 14px;
  font-weight: 600;
  color: var(--text);
}

.mobile-nav a:hover {
  background: var(--brand-soft);
}

.mobile-nav .mobile-cta {
  margin-top: 8px;
  justify-content: center;
}

/* ----- Reveal animation -------------------------------------------- */

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ----- Hero -------------------------------------------------------- */

.hero {
  width: var(--container);
  margin: 0 auto;
  padding: 64px 0 32px;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
}

.hero-copy {
  display: grid;
  gap: 22px;
}

.hero-copy h1 {
  margin-top: 4px;
}

.hero-lead {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 560px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-bullets {
  list-style: none;
  display: grid;
  gap: 10px;
  margin-top: 8px;
}

.hero-bullets li {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  color: var(--text);
}

.check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--brand-soft);
  color: var(--brand);
  flex: 0 0 auto;
  position: relative;
}

.check::after {
  content: "";
  width: 8px;
  height: 4px;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-45deg) translate(1px, -1px);
}

/* Hero visual: stylized store cards + stat chips */

.hero-visual {
  position: relative;
  min-height: 460px;
}

.hero-card {
  position: absolute;
  width: 320px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.hero-card-front {
  top: 20px;
  left: 30px;
  z-index: 3;
  transform: rotate(-3deg);
  animation: floaty 6s ease-in-out infinite;
}

.hero-card-back {
  top: 80px;
  right: 0;
  z-index: 2;
  transform: rotate(4deg);
  animation: floaty 7s ease-in-out infinite reverse;
}

.hero-card-cover {
  height: 130px;
  position: relative;
}

.hero-card-cover-warm {
  background:
    radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.4), transparent 50%),
    linear-gradient(135deg, #f4c46a 0%, #dea335 100%);
}

.hero-card-cover-blue {
  background:
    radial-gradient(circle at 70% 20%, rgba(255, 255, 255, 0.3), transparent 50%),
    linear-gradient(135deg, #5b8fb9 0%, #2a4d70 100%);
}

.hero-card-badge {
  position: absolute;
  bottom: -22px;
  left: 18px;
  width: 60px;
  height: 60px;
  border-radius: 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: var(--brand-dark);
  letter-spacing: 0.04em;
}

.hero-card-body {
  padding: 32px 20px 20px;
}

.hero-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 6px;
}

.hero-card-head h3 {
  font-size: 1.05rem;
}

.status {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}

.status.open {
  background: rgba(34, 164, 71, 0.12);
  color: var(--success);
}

.hero-card-meta {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 8px;
}

.hero-card-copy {
  font-size: 0.9rem;
  color: var(--muted);
}

.hero-card-foot {
  margin-top: 14px;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 700;
}

.pill-soft {
  background: var(--brand-soft);
  color: var(--brand-dark);
}

@keyframes floaty {
  0%, 100% { transform: translateY(0) rotate(var(--rot, 0)); }
  50% { transform: translateY(-8px) rotate(var(--rot, 0)); }
}

.hero-card-front { --rot: -3deg; }
.hero-card-back  { --rot: 4deg; }

/* ----- Trust strip -------------------------------------------------- */

.trust {
  width: var(--container);
  margin: 24px auto 64px;
}

.trust-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.trust-item {
  padding: 28px 24px;
  text-align: center;
  display: grid;
  gap: 6px;
  justify-items: center;
  border-right: 1px solid var(--line);
}

.trust-item:last-child {
  border-right: 0;
}

.trust-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 4px;
  border-radius: 14px;
  background: var(--brand-soft);
  color: var(--brand);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.trust-icon svg {
  width: 22px;
  height: 22px;
}

.trust-item strong {
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--brand);
  letter-spacing: -0.02em;
}

.trust-item span {
  font-size: 0.9rem;
  color: var(--muted);
  font-weight: 600;
}

/* ----- Section heading ---------------------------------------------- */

.section-head {
  display: grid;
  gap: 12px;
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}

.section-head .eyebrow {
  justify-self: center;
}

.section-head p {
  font-size: 1.05rem;
}

/* ----- Benefits ----------------------------------------------------- */

.benefits {
  width: var(--container);
  margin: 0 auto;
  padding: 64px 0;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.benefit-card {
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  display: grid;
  gap: 12px;
  align-content: start;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--line-strong);
}

.benefit-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: var(--brand-soft);
  color: var(--brand);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.benefit-icon svg {
  width: 26px;
  height: 26px;
}

.benefit-card p {
  font-size: 0.95rem;
}

/* ----- How it works ------------------------------------------------- */

.how {
  width: var(--container);
  margin: 0 auto;
  padding: 64px 0;
}

.how-steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  counter-reset: how;
}

.how-step {
  position: relative;
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  display: grid;
  gap: 10px;
  align-content: start;
}

.how-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: var(--brand-soft);
  color: var(--brand);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.how-icon svg {
  width: 26px;
  height: 26px;
}

.how-number {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--brand);
  letter-spacing: 0.08em;
}

.how-step p {
  font-size: 0.95rem;
}

/* ----- Categories --------------------------------------------------- */

.categories {
  width: var(--container);
  margin: 0 auto;
  padding: 64px 0;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.category-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 24px 16px;
  display: grid;
  gap: 14px;
  justify-items: center;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--line-strong);
}

.category-thumb {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: var(--brand-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.category-thumb img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.category-card p {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
}

/* ----- Pricing ------------------------------------------------------ */

.pricing {
  width: var(--container);
  margin: 0 auto;
  padding: 64px 0;
}

.pricing-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 48px;
}

.pricing-copy {
  display: grid;
  gap: 18px;
  align-content: start;
}

.pricing-copy h2 {
  max-width: 460px;
}

.pricing-bullets {
  list-style: none;
  display: grid;
  gap: 10px;
  margin: 4px 0 12px;
}

.pricing-bullets li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  color: var(--text);
}

.pricing-card {
  background: linear-gradient(160deg, var(--brand-dark) 0%, #1d3a51 100%);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 32px;
  display: grid;
  gap: 16px;
  position: relative;
  overflow: hidden;
}

.pricing-card::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, var(--brand) 0%, transparent 70%);
  opacity: 0.35;
  pointer-events: none;
}

.pricing-tag {
  display: inline-block;
  width: max-content;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  background: rgba(222, 163, 53, 0.18);
  color: var(--brand-light);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.pricing-desc {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
}

.pricing-card hr {
  border: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin: 4px 0;
}

.pricing-list {
  list-style: none;
  display: grid;
  gap: 8px;
}

.pricing-list li {
  position: relative;
  padding-left: 22px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
}

.pricing-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 12px;
  height: 6px;
  border-left: 2px solid var(--brand-light);
  border-bottom: 2px solid var(--brand-light);
  transform: rotate(-45deg);
}

/* ----- FAQ ---------------------------------------------------------- */

.faq {
  width: var(--container-narrow);
  margin: 0 auto;
  padding: 64px 0;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq-item[open] {
  border-color: var(--line-strong);
  box-shadow: var(--shadow);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 24px;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text-strong);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

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

.faq-item summary::after {
  content: "";
  width: 12px;
  height: 12px;
  border-right: 2px solid var(--brand);
  border-bottom: 2px solid var(--brand);
  transform: rotate(45deg);
  transition: transform 0.25s ease;
  flex: 0 0 auto;
}

.faq-item[open] summary::after {
  transform: rotate(-135deg);
}

.faq-item p {
  padding: 0 24px 22px;
  color: var(--muted);
  line-height: 1.65;
}

/* ----- Final CTA + form -------------------------------------------- */

.final-cta {
  width: var(--container);
  margin: 0 auto;
  padding: 64px 0;
}

.final-cta-inner {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 48px;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: start;
}

.final-cta-copy {
  display: grid;
  gap: 18px;
  align-content: start;
  position: sticky;
  top: 96px;
}

.final-cta-bullets {
  list-style: none;
  display: grid;
  gap: 10px;
  margin-top: 4px;
}

.final-cta-bullets li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  color: var(--text);
}

.seller-form {
  display: grid;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.field {
  display: grid;
  gap: 6px;
}

.field > span {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
}

.field input,
.field select,
.field textarea {
  font: inherit;
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface-soft);
  color: var(--text);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.field textarea {
  resize: vertical;
  min-height: 96px;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--brand);
  background: var(--surface);
  box-shadow: 0 0 0 4px var(--brand-soft);
}

.field input::placeholder,
.field textarea::placeholder {
  color: #99a2b1;
}

.field select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'><path fill='%23667085' d='M6 8L0 0h12z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 12px;
  padding-right: 42px;
}

.consent {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.9rem;
  color: var(--muted);
  cursor: pointer;
  padding: 4px 0;
}

.consent input[type="checkbox"] {
  margin-top: 3px;
  width: 18px;
  height: 18px;
  accent-color: var(--brand);
  flex: 0 0 auto;
}

.consent a {
  color: var(--brand-dark);
  text-decoration: underline;
}

.form-feedback {
  margin-top: 4px;
  padding: 14px 18px;
  border-radius: 14px;
  font-weight: 600;
  font-size: 0.95rem;
}

.form-feedback.is-success {
  background: rgba(34, 164, 71, 0.1);
  color: var(--success);
}

.form-feedback.is-error {
  background: rgba(240, 117, 117, 0.12);
  color: var(--danger);
}

/* ----- Audience ----------------------------------------------------- */

.audience {
  width: var(--container);
  margin: 0 auto;
  padding: 32px 0 80px;
}

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

.audience-card {
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  display: grid;
  gap: 12px;
  align-content: start;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.audience-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--line-strong);
}

.audience-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: var(--brand-soft);
  color: var(--brand);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.audience-icon svg {
  width: 26px;
  height: 26px;
}

.audience-card p {
  font-size: 0.95rem;
}

/* ----- Footer ------------------------------------------------------- */

.site-footer {
  background: #0c1d2c;
  color: rgba(255, 255, 255, 0.7);
  padding: 56px 0 24px;
  margin-top: 24px;
}

.footer-inner {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 40px;
}

.footer-brand img {
  height: 40px;
  width: auto;
  margin-bottom: 16px;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.95rem;
  max-width: 320px;
}

.footer-col {
  display: grid;
  gap: 10px;
  align-content: start;
}

.footer-col h4 {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.78rem;
  margin-bottom: 4px;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: var(--brand-light);
}

.footer-bottom {
  width: var(--container);
  margin: 40px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
}

/* ----- Responsive --------------------------------------------------- */

@media (max-width: 1100px) {
  :root {
    --container: min(1320px, calc(100% - 32px));
    --container-narrow: min(1120px, calc(100% - 32px));
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-visual {
    min-height: 420px;
    max-width: 520px;
    margin: 0 auto;
    width: 100%;
  }

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

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

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

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

  .pricing-inner {
    grid-template-columns: 1fr;
    padding: 36px;
  }

  .final-cta-inner {
    grid-template-columns: 1fr;
    padding: 36px;
  }

  .final-cta-copy {
    position: static;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 820px) {
  html {
    scroll-padding-top: 80px;
  }

  .top-nav,
  .top-actions {
    display: none;
  }

  .top-menu-toggle {
    display: inline-flex;
  }

  .topbar-inner {
    padding: 12px 0;
  }

  .hero {
    padding: 40px 0 24px;
  }

  .hero-visual {
    min-height: 380px;
  }

  .hero-card {
    width: 280px;
  }

  .hero-card-front {
    left: 0;
  }

  .hero-card-back {
    right: 0;
  }

  .trust-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-item {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-item:nth-child(odd) {
    border-right: 1px solid var(--line);
  }

  .trust-item:nth-last-child(-n+2) {
    border-bottom: 0;
  }

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

  .how-steps {
    grid-template-columns: 1fr;
  }

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

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

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

@media (max-width: 540px) {
  .pricing-inner,
  .final-cta-inner {
    padding: 28px 24px;
  }

  .benefit-card,
  .how-step,
  .pricing-card {
    padding: 24px;
  }

  h1 {
    font-size: clamp(2rem, 8vw, 2.5rem);
  }

  h2 {
    font-size: clamp(1.6rem, 6vw, 2rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
