@charset "UTF-8";

@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("../fonts/plus-jakarta-sans-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("../fonts/plus-jakarta-sans-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("../fonts/plus-jakarta-sans-600.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Plus Jakarta Sans";
  src: url("../fonts/plus-jakarta-sans-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --navy-950: #0c1218;
  --navy-900: #141c26;
  --navy-800: #1c2733;
  --navy-700: #2a3848;
  --ink: #15202b;
  --muted: #5c6b78;
  --line: #dce3ea;
  --bg: #f4f2ef;
  --card: #ffffff;
  --accent: #e85d04;
  --accent-hot: #ff7a2e;
  --ice: #3aa4d0;
  --ice-hot: #6cc8ed;
  --cyan: #3aa4d0;
  --cyan-hot: #6cc8ed;
  --teal: #e85d04;
  --radius: 12px;
  --shadow: 0 18px 50px rgba(20, 28, 38, 0.1);
  --header-h: 5.75rem;
  --max: 72rem;
  --font: "Plus Jakarta Sans", "Segoe UI", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 0.75rem);
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-size: 1.05rem;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--cyan);
}

a:hover {
  color: #2a8eb8;
}

:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  z-index: 100;
  background: #fff;
  color: var(--ink);
  padding: 0.55rem 0.9rem;
  border-radius: 8px;
  font-weight: 600;
}

.skip-link:focus {
  top: 1rem;
}

.wrap {
  width: min(var(--max), calc(100% - 2rem));
  margin-inline: auto;
}

.page-kicker {
  margin: 0 0 0.7rem;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section {
  padding: 5.5rem 0;
}

#produkt .section-head {
  max-width: 46rem;
}

.section-head {
  max-width: 40rem;
  margin: 0 0 2.6rem;
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

.section h2,
.hero h1 {
  letter-spacing: -0.035em;
  line-height: 1.12;
  margin: 0 0 0.9rem;
}

.section h2 {
  font-size: clamp(1.7rem, 3vw, 2.35rem);
}

.lead {
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 2.9rem;
  padding: 0.7rem 1.2rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.btn:hover {
  transform: translateY(-1px);
  color: inherit;
}

.btn-primary {
  background: linear-gradient(180deg, var(--accent-hot), var(--accent));
  color: #fff;
  box-shadow: 0 10px 24px rgba(232, 93, 4, 0.28);
}

.btn-primary:hover {
  color: #fff;
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
  color: #fff;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.btn-outline {
  background: #fff;
  border-color: var(--line);
  color: var(--ink);
}

.header {
  position: sticky;
  top: 0;
  z-index: 40;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
}

.header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 8px 24px rgba(11, 23, 48, 0.05);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(var(--max), calc(100% - 2rem));
  margin-inline: auto;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  display: block;
  height: 4.15rem;
  width: auto;
}

.nav-toggle {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.nav-burger {
  display: none;
  width: 2.6rem;
  height: 2.6rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
  place-items: center;
}

.nav-burger span,
.nav-burger span::before,
.nav-burger span::after {
  display: block;
  width: 1.1rem;
  height: 2px;
  background: var(--ink);
  position: relative;
}

.nav-burger span::before,
.nav-burger span::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-burger span::before {
  top: -5px;
}

.nav-burger span::after {
  top: 5px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.35rem;
}

.nav a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 550;
  font-size: 0.95rem;
}

.nav a:hover {
  color: var(--cyan);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-cta .btn {
  min-height: 2rem;
  height: 2rem;
  padding: 0 0.85rem;
  font-size: 0.78rem;
  border-radius: 999px;
  box-shadow: none;
}

.nav-cta .btn:hover {
  transform: none;
}

.nav-mobile-cta {
  display: none;
}

.lang {
  display: inline-flex;
  height: 2rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
  font-size: 0.78rem;
  font-weight: 700;
}

.lang a {
  display: inline-flex;
  align-items: center;
  padding: 0 0.55rem;
  text-decoration: none;
  color: var(--muted);
}

.lang a[aria-current="page"] {
  background: var(--navy-900);
  color: #fff;
}

.hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(720px 380px at 92% 0%, rgba(232, 93, 4, 0.24), transparent 58%),
    radial-gradient(640px 360px at 0% 100%, rgba(58, 164, 208, 0.16), transparent 52%),
    linear-gradient(165deg, #0c1218 0%, #141c26 58%, #1a2430 100%);
  padding: 4.8rem 0 6.6rem;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 38%, rgba(255, 255, 255, 0.035) 50%, transparent 62%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: center;
}

.hero h1 {
  font-size: clamp(2.15rem, 5vw, 3.55rem);
  color: #fff;
}

.hero-position {
  margin: 0 0 0.85rem;
  color: #8ec8f0;
  font-size: 1.02rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.hero-lead {
  max-width: 40rem;
  color: #c5d7ea;
  font-size: 1.08rem;
  margin: 0 0 1.6rem;
}

.hero-lead a {
  color: #ffb087;
}

.hero-lead a:hover {
  color: #fff;
}

.card h3 a,
.system h3 a {
  color: inherit;
  text-decoration: none;
}

.card h3 a:hover,
.system h3 a:hover {
  color: var(--accent);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 0.45rem;
}

.hero-alt {
  margin: 0 0 1.15rem;
  font-size: 0.9rem;
}

.hero-alt a {
  color: #c5d0da;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.hero-alt a:hover {
  color: #fff;
}

.hero-note {
  margin: 0 0 1.5rem;
  color: #9eb6cf;
  font-size: 0.9rem;
}

.hero-note a {
  color: #d7e8f6;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1.2rem;
  padding: 0;
  margin: 0;
  list-style: none;
  color: #9eb6cf;
  font-size: 0.9rem;
}

.hero-meta li {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.hero-meta svg {
  width: 1.05rem;
  height: 1.05rem;
  color: var(--teal);
}

.hero-visual {
  position: relative;
  min-height: 24rem;
  display: grid;
  place-items: center;
}

.hero-glow {
  position: absolute;
  width: 22rem;
  height: 22rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 93, 4, 0.26), transparent 68%);
  filter: blur(10px);
}

.hero-icon {
  position: relative;
  z-index: 1;
  width: min(16rem, 68%);
  filter: drop-shadow(0 24px 40px rgba(0, 0, 0, 0.35));
}

.hero-panel {
  position: absolute;
  right: 0;
  bottom: 6%;
  z-index: 2;
  width: min(17.5rem, 92%);
  padding: 1.15rem 1.25rem;
  background: rgba(20, 28, 38, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}

.hero-panel p {
  margin: 0 0 0.2rem;
  color: #ffb087;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-panel strong {
  display: block;
  margin-bottom: 0.8rem;
  font-size: 1.05rem;
}

.hero-panel ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.4rem;
  color: #c5d0da;
  font-size: 0.88rem;
}

.hero-panel li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-panel li::before {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--accent-hot);
  flex-shrink: 0;
}

.trust {
  margin-top: -3.4rem;
  position: relative;
  z-index: 2;
  padding: 0 0 1rem;
}

.trust-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.trust-bar div {
  padding: 1.15rem 1.2rem;
  border-right: 1px solid var(--line);
}

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

.trust-bar strong {
  display: block;
  font-size: 0.95rem;
}

.trust-bar span {
  color: var(--muted);
  font-size: 0.88rem;
}

.cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.cards-tech {
  grid-template-columns: repeat(4, 1fr);
}

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.35rem 1.4rem;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.6) inset;
}

.card h3 {
  margin: 0.7rem 0 0.45rem;
  font-size: 1.12rem;
}

.card p {
  margin: 0;
  color: var(--muted);
}

.card-icon {
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, #fff1e6, #e7f5fb);
  color: var(--navy-800);
}

.systems {
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.system-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.system {
  padding: 1.4rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg);
}

.system h3 {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0 0 0.4rem;
  font-size: 1.15rem;
}

.tag-beta {
  background: #fff6e5;
  border-color: #f0d39a;
  color: #8a5a00;
}

.system p {
  margin: 0 0 0.85rem;
  color: var(--muted);
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.tag {
  font-size: 0.78rem;
  font-weight: 600;
  padding: 0.22rem 0.55rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--navy-800);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  counter-reset: step;
}

.step {
  position: relative;
  padding: 1.35rem 1.2rem 1.3rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  display: block;
  margin-bottom: 0.7rem;
  color: var(--cyan);
  font-weight: 700;
  letter-spacing: 0.04em;
}

.step h3 {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
}

.step p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

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

.checklist li {
  display: grid;
  grid-template-columns: 1.4rem 1fr;
  gap: 0.7rem;
  align-items: start;
}

.checklist svg {
  margin-top: 0.2rem;
  color: var(--cyan);
}

.panel {
  background: var(--navy-900);
  color: #d5e4f3;
  border-radius: 18px;
  padding: 1.8rem;
}

.panel h3 {
  margin: 0 0 0.6rem;
  color: #fff;
}

.panel p {
  margin: 0 0 1rem;
  color: #b7c9dc;
}

.faq {
  display: grid;
  gap: 0.7rem;
}

.faq details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.15rem 1rem;
}

.faq summary {
  cursor: pointer;
  font-weight: 650;
  padding: 0.95rem 0;
  list-style: none;
}

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

.faq p {
  margin: 0 0 0.85rem;
  color: var(--muted);
}

.faq p:last-child {
  margin-bottom: 1.15rem;
}

.cta {
  padding: 0 0 2.4rem;
}

.cta:last-of-type {
  padding-bottom: 5.5rem;
}

.cta-box {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: center;
  padding: 2.2rem 2.3rem;
  border-radius: 20px;
  color: #fff;
  background:
    radial-gradient(500px 180px at 90% 0%, rgba(232, 93, 4, 0.28), transparent 55%),
    linear-gradient(120deg, var(--navy-900), #243040);
}

.cta-box h2 {
  margin: 0 0 0.4rem;
  color: #fff;
}

.cta-box p {
  margin: 0;
  color: #c5d7ea;
}

.cta-mid {
  padding: 2rem 0 2.6rem;
}

.cta-actions {
  margin: 0;
  flex-shrink: 0;
  display: grid;
  gap: 0.7rem;
  justify-items: start;
}

.cta-fork {
  color: var(--muted);
  font-size: 0.9rem;
}

.cta-fork:hover {
  color: var(--ink);
}

.cta-light {
  color: var(--ink);
  background:
    radial-gradient(500px 180px at 90% 0%, rgba(232, 93, 4, 0.1), transparent 55%),
    #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.cta-light h2 {
  color: var(--ink);
}

.cta-light p {
  color: var(--muted);
}

.plan-note {
  margin-top: 1.4rem;
}

.footer {
  background: var(--navy-950);
  color: #9eb6cf;
  padding: 3rem 0 1.6rem;
}

.footer a {
  color: #d7e8f6;
  text-decoration: none;
}

.footer a:hover {
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-wordmark {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.85rem;
  color: #fff;
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.03em;
  text-decoration: none;
}

.footer-wordmark:hover {
  color: #fff;
}

.footer-wordmark img {
  width: 2.15rem;
  height: 2.15rem;
}

.footer-brand p {
  margin: 0;
  max-width: 22rem;
}

.footer h2 {
  margin: 0 0 0.7rem;
  color: #fff;
  font-size: 0.86rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}

.footer-legal {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 1.1rem;
  font-size: 0.86rem;
}

@media (max-width: 980px) {
  .hero-grid,
  .split,
  .steps,
  .footer-grid,
  .trust-bar,
  .cards,
  .cards-tech,
  .system-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-visual {
    min-height: 22rem;
  }

  .steps,
  .trust-bar,
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

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

@media (max-width: 800px) {
  .nav-burger {
    display: grid;
  }

  .nav {
    display: none;
  }

  .nav-toggle:checked ~ .nav {
    display: flex;
  }

  .nav-cta .btn {
    display: none;
  }

  .nav-mobile-cta {
    display: inline-flex;
    margin-top: 0.35rem;
  }

  .header {
    height: auto;
    min-height: var(--header-h);
  }

  .header-inner {
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
  }

  .logo { grid-column: 1; grid-row: 1; }
  .nav-cta { grid-column: 2; grid-row: 1; }
  .nav-burger { grid-column: 3; grid-row: 1; }
  .nav {
    grid-column: 1 / -1;
    grid-row: 2;
    flex-direction: column;
    align-items: flex-start;
    padding: 0.4rem 0 1rem;
    gap: 0.75rem;
  }

  .hero-grid,
  .cards,
  .cards-tech,
  .system-grid,
  .steps,
  .split,
  .trust-bar,
  .footer-grid,
  .cta-box {
    grid-template-columns: 1fr;
  }

  .cta-box {
    display: grid;
  }

  .hero {
    padding-top: 2.8rem;
  }

  .hero-visual {
    min-height: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .hero-icon {
    width: min(12rem, 56%);
  }

  .hero-panel {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: 0.5rem;
  }
}

.plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  align-items: stretch;
}

.plan {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem 1.4rem;
}

.plan.is-featured {
  background: var(--navy-900);
  color: #fff;
  border-color: var(--navy-900);
  box-shadow: var(--shadow);
}

.plan-badge {
  position: absolute;
  top: -0.7rem;
  left: 1.2rem;
  background: var(--accent);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
}

.plan h3 {
  margin: 0;
  font-size: 1.25rem;
}

.plan-audience {
  margin: 0.25rem 0 1rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.plan.is-featured .plan-audience {
  color: #9eb6cf;
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
}

.plan-price strong {
  font-size: 2.1rem;
  letter-spacing: -0.04em;
}

.plan-price span,
.plan-min {
  color: var(--muted);
  font-size: 0.88rem;
}

.plan.is-featured .plan-price span,
.plan.is-featured .plan-min {
  color: #9eb6cf;
}

.plan-min {
  margin: 0.25rem 0 1.1rem;
}

.plan ul {
  list-style: none;
  margin: 0 0 1.3rem;
  padding: 0;
  display: grid;
  gap: 0.45rem;
  flex: 1;
  font-size: 0.95rem;
}

.plan li::before {
  content: "\2713\00a0";
  color: var(--accent);
  font-weight: 700;
}

.plan.is-featured li::before {
  color: var(--accent-hot);
}

.plan .btn {
  width: 100%;
}

.page {
  padding: 3.5rem 0 5rem;
}

.page-head {
  max-width: 40rem;
  margin-bottom: 2rem;
}

.form {
  display: grid;
  gap: 1rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
}

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

.form label,
.form-check {
  display: grid;
  gap: 0.35rem;
  font-size: 0.88rem;
  font-weight: 600;
}

.form input,
.form select,
.form textarea {
  width: 100%;
  min-height: 2.7rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.65rem 0.8rem;
  font: inherit;
  font-weight: 400;
  color: var(--ink);
  background: #fff;
}

.form textarea {
  min-height: 9rem;
  resize: vertical;
}

.form-check {
  grid-template-columns: 1.1rem 1fr;
  align-items: start;
  font-weight: 400;
  color: var(--muted);
}

.form-check input {
  width: 1.1rem;
  min-height: 1.1rem;
  margin-top: 0.2rem;
}

.form-error {
  padding: 0.85rem 1rem;
  border: 1px solid #f0d39a;
  background: #fff6e5;
  border-radius: 10px;
  color: #8a5a00;
  font-size: 0.92rem;
}

.form-honeypot {
  position: absolute;
  left: -9999px;
}

altcha-widget {
  display: block;
}

.prose {
  max-width: 42rem;
}

.prose h2 {
  font-size: 1.25rem;
  margin: 2rem 0 0.6rem;
}

.prose p,
.prose li {
  color: var(--muted);
}

.aside-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.35rem;
}

.aside-card + .aside-card {
  margin-top: 1rem;
}

.aside-card h2 {
  margin: 0 0 0.5rem;
  font-size: 0.86rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

@media (max-width: 980px) {
  .plans {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 800px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn { transition: none; }
}
