﻿:root {
  --bg: #f6f7f2;
  --bg-strong: #e8ebe6;
  --text: #0e0f0c;
  --muted: #5f625d;
  --card: #ffffff;
  --card-soft: #f9faf6;
  --border: rgba(14, 15, 12, 0.12);
  --border-strong: rgba(14, 15, 12, 0.22);
  --brand: #7ee99c;
  --brand-dark: #0f3d25;
  --accent: #0f3d25;
  --logo-blue: #156bcc;
  --shadow-soft: rgba(14, 15, 12, 0.12) 0 0 0 1px;
  --shadow-card: rgba(14, 15, 12, 0.12) 0 0 0 1px;
}

* {
  box-sizing: border-box;
  font-feature-settings: "calt";
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  background:
    linear-gradient(180deg, #ffffff 0%, var(--bg) 56%, #eef1e8 100%);
  color: var(--text);
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  position: relative;
  overflow-x: hidden;
}

h1,
h2,
h3,
.brand {
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  letter-spacing: 0;
}

a {
  color: inherit;
}

.bg-grid {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(14, 15, 12, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14, 15, 12, 0.035) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: radial-gradient(circle at 50% 20%, #000 20%, transparent 80%);
  z-index: -3;
  pointer-events: none;
}

.bg-shape {
  display: none;
}

.bg-shape-1 {
  width: 380px;
  height: 380px;
  top: -120px;
  left: -100px;
  background: transparent;
}

.bg-shape-2 {
  width: 420px;
  height: 420px;
  right: -140px;
  top: 140px;
  background: transparent;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.84);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand-logo {
  height: 38px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 6px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
}

.nav-links a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  padding: 8px 12px;
  border-radius: 8px;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.nav-links a:hover {
  background: #e6fbea;
  color: var(--brand-dark);
}

.nav-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.lang-switch {
  display: inline-flex;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(22, 51, 0, 0.08);
}

.lang-switch button {
  border: 0;
  background: transparent;
  color: var(--brand-dark);
  font-weight: 800;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  padding: 8px 10px;
  min-width: 42px;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.lang-switch button.active {
  background: var(--brand);
  color: var(--brand-dark);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
  padding: 12px 18px;
  border: 1px solid transparent;
  transition: transform 0.18s ease, background-color 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.btn:hover {
  transform: scale(1.03);
}

.btn:active {
  transform: scale(0.97);
}

.btn-sm {
  padding: 9px 14px;
  font-size: 14px;
}

.btn-lg {
  padding: 14px 22px;
  min-height: 52px;
}

.btn-primary {
  background: var(--brand);
  color: var(--brand-dark);
  border-color: var(--brand);
  box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
  background: #c8f7d4;
  border-color: #c8f7d4;
}

.btn-ghost {
  background: rgba(22, 51, 0, 0.08);
  color: var(--text);
  border-color: transparent;
}

.btn-ghost:hover {
  background: #e6fbea;
  border-color: transparent;
}

.btn-ghost-light {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.28);
  color: #ffffff;
}

.btn-ghost-light:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.42);
}

.btn-block {
  width: 100%;
}

.text-link {
  color: var(--brand-dark);
  font-weight: 800;
  text-decoration: none;
}

.text-link:hover {
  text-decoration: underline;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(0, 0.97fr);
  gap: 28px;
  align-items: start;
  padding: 42px 0 28px;
}

.hero-copy {
  padding-top: 18px;
}

.hero-pill {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-soft);
  color: var(--brand-dark);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero-pill-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--brand);
  box-shadow: 0 0 0 4px rgba(126, 233, 156, 0.35);
}

h1 {
  font-size: 4.5rem;
  line-height: 0.98;
  margin: 16px 0 16px;
  font-weight: 900;
  text-wrap: balance;
}

.page-hero h1 {
  font-size: 3.5rem;
  line-height: 1;
}

.lead {
  font-size: 1.1875rem;
  color: var(--muted);
  max-width: 58ch;
  margin: 0;
}

.hero-cta {
  margin: 28px 0 12px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.store-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 18px 0 14px;
}

.store-link {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
  gap: 12px;
  text-decoration: none;
  border: 1px solid rgba(191, 212, 217, 0.72);
  background: rgba(255, 255, 255, 0.88);
  border-radius: 8px;
  padding: 16px 18px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.store-link:hover {
  transform: scale(1.02);
  border-color: var(--brand);
  box-shadow: var(--shadow-soft);
}

.store-link-copy {
  display: grid;
  gap: 0;
  min-width: 0;
}

.store-badge {
  width: 126px;
  height: auto;
}

.store-link-label,
.page-link-kicker {
  display: block;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0;
  font-weight: 800;
  margin-bottom: 4px;
}

.subnote {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.hero-mini-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.mini-card {
  border: 1px solid rgba(191, 212, 217, 0.7);
  background: rgba(255, 255, 255, 0.8);
  border-radius: 8px;
  padding: 12px 12px 11px;
  box-shadow: var(--shadow-soft);
}

.mini-card-strong {
  border-color: var(--brand);
  background: linear-gradient(180deg, #e6fbea, rgba(255, 255, 255, 0.92));
}

.mini-label {
  display: block;
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0;
  font-weight: 800;
  margin-bottom: 4px;
}

.mini-card strong {
  display: block;
  font-size: 13px;
  line-height: 1.25;
  color: var(--text);
}

.hero-stack {
  display: grid;
  gap: 14px;
}

.dashboard-shell,
.hero-card,
.page-link-card,
.content-card,
.download-card,
.feature-card,
.plan-card,
.faq details {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: var(--shadow-card);
}

.dashboard-shell {
  padding: 16px;
  position: relative;
  overflow: hidden;
}

.dashboard-shell::before {
  content: none;
}

.dashboard-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.dashboard-title {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.dot-group {
  display: inline-flex;
  gap: 4px;
}

.dot-group span {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(14, 15, 12, 0.22);
}

.dot-group span:first-child {
  background: var(--brand);
}

.dashboard-title-text {
  font-weight: 800;
  font-size: 14px;
  color: var(--accent);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.dashboard-chip {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  color: var(--brand-dark);
  padding: 5px 8px;
  border-radius: 8px;
  background: #e6fbea;
  border: 1px solid rgba(22, 51, 0, 0.08);
}

.dashboard-kpis {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.kpi-card {
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--card-soft);
  padding: 12px;
}

.kpi-card p {
  margin: 0;
  font-size: 12px;
  color: var(--muted);
  font-weight: 700;
}

.kpi-card strong {
  display: block;
  margin-top: 6px;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: 22px;
  line-height: 1.05;
}

.kpi-card span {
  display: inline-block;
  margin-top: 6px;
  font-size: 11px;
  color: var(--brand-dark);
  font-weight: 800;
}

.kpi-card-accent {
  background: linear-gradient(180deg, #e6fbea, rgba(255, 255, 255, 0.95));
  border-color: var(--brand);
}

.dashboard-lower {
  margin-top: 12px;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(0, 0.75fr);
  gap: 10px;
}

.dashboard-chart,
.dashboard-list {
  border-radius: 8px;
  border: 1px solid var(--border);
  background: #ffffff;
  padding: 12px;
}

.chart-head {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
  margin-bottom: 10px;
  font-size: 12px;
  color: var(--accent);
  font-weight: 800;
}

.chart-head small {
  color: var(--muted);
  font-weight: 700;
}

.chart-bars {
  height: 142px;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
  align-items: end;
}

.chart-bars span {
  height: var(--h);
  border-radius: 8px 8px 4px 4px;
  background: linear-gradient(180deg, #7ee99c, rgba(126, 233, 156, 0.35));
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.35);
}

.chart-bars span:nth-child(2n) {
  background: linear-gradient(180deg, var(--logo-blue), rgba(21, 107, 204, 0.25));
}

.dashboard-list {
  display: grid;
  align-content: start;
  gap: 8px;
}

.dashboard-list > div {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 8px;
  padding: 8px 9px;
  border-radius: 8px;
  background: var(--card-soft);
}

.list-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--brand);
}

.dashboard-list > div:nth-child(2) .list-dot {
  background: var(--logo-blue);
}

.dashboard-list > div:nth-child(3) .list-dot {
  background: #c8f7d4;
}

.dashboard-list p,
.dashboard-list strong {
  margin: 0;
  font-size: 12px;
}

.dashboard-list p {
  color: var(--muted);
  font-weight: 700;
}

.dashboard-list strong {
  color: var(--accent);
  font-weight: 800;
}

.hero-card {
  padding: 22px;
  box-shadow: var(--shadow-soft);
}

.hero-card h2 {
  margin: 0 0 12px;
  font-size: 24px;
}

.hero-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 9px;
}

.hero-card li {
  position: relative;
  padding-left: 22px;
  color: var(--accent);
  font-weight: 600;
  line-height: 1.45;
}

.hero-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.52em;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--brand);
  box-shadow: 0 0 0 4px rgba(126, 233, 156, 0.24);
  transform: translateY(-50%);
}

.page-hero {
  padding: 52px 0 12px;
}

.narrow {
  max-width: 64ch;
}

.page-link-grid,
.download-grid {
  display: grid;
  gap: 18px;
}

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

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

.page-link-card,
.content-card,
.download-card {
  padding: 22px;
  background: rgba(255, 255, 255, 0.94);
}

.download-badge {
  display: block;
  width: 170px;
  max-width: 100%;
  height: auto;
  margin: 4px 0 14px;
}

.page-link-card h3,
.download-card h2,
.content-card h2 {
  margin: 0 0 8px;
  font-size: 26px;
  line-height: 1.1;
}

.page-link-card p:last-of-type,
.download-card p:last-of-type,
.content-card p,
.download-card p {
  color: var(--muted);
}

.split-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.bullet-list {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.bullet-list li + li {
  margin-top: 8px;
}

.section {
  padding: 34px 0;
}

.section-head {
  margin-bottom: 16px;
}

.section-head h2 {
  font-size: 3rem;
  line-height: 1;
  margin: 0;
  font-weight: 900;
  text-wrap: balance;
}

.section-head p {
  margin: 8px 0 0;
  color: var(--muted);
  max-width: 65ch;
}

.grid-cards {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.feature-card {
  padding: 20px;
  background: rgba(255, 255, 255, 0.88);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
  transform: scale(1.01);
  border-color: var(--brand);
  box-shadow: var(--shadow-card);
}

.feature-icon {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--brand);
  color: var(--brand-dark);
  font-weight: 900;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  box-shadow: var(--shadow-soft);
}

.feature-icon svg {
  width: 22px;
  height: 22px;
  display: block;
}

.feature-card:nth-child(2n) .feature-icon {
  background: #e6fbea;
  color: var(--brand-dark);
  box-shadow: var(--shadow-soft);
}

.feature-card h2,
.feature-card h3 {
  margin: 14px 0 8px;
  font-size: 1.75rem;
  line-height: 1.08;
  font-weight: 900;
  text-wrap: balance;
  overflow-wrap: anywhere;
}

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

.pricing-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.plan-card {
  padding: 22px;
  position: relative;
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.92);
}

.plan-highlight {
  border-color: var(--brand);
  box-shadow: 0 0 0 2px rgba(126, 233, 156, 0.65);
  transform: translateY(-2px);
}

.plan-free {
  border-color: var(--brand);
  background:
    linear-gradient(180deg, #e6fbea, rgba(255, 255, 255, 0.95));
}

.plan-badge {
  margin: 0 0 10px;
  font-size: 11px;
  font-weight: 900;
  color: #ffffff;
  background: var(--brand-dark);
  display: inline-block;
  padding: 6px 10px;
  border-radius: 8px;
  text-transform: uppercase;
  letter-spacing: 0;
}

.plan-badge.plan-badge-free {
  background: var(--text);
}

.plan-name {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
  letter-spacing: 0;
}

.price {
  margin: 6px 0 14px;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: 46px;
  line-height: 1;
  color: var(--text);
}

.price span {
  font-size: 16px;
  color: var(--muted);
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  margin-left: 3px;
}

.plan-card ul {
  padding: 0;
  margin: 0 0 16px;
  list-style: none;
  min-height: 148px;
  display: grid;
  gap: 10px;
}

.plan-card li {
  position: relative;
  padding-left: 22px;
  color: var(--accent);
  font-weight: 700;
}

.plan-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  transform: translateY(-50%);
  background: var(--brand);
  box-shadow: 0 0 0 3px rgba(126, 233, 156, 0.25);
}

.pricing-note {
  margin-top: 14px;
  color: var(--muted);
}

.faq {
  padding-top: 24px;
}

.faq-grid {
  display: grid;
  gap: 10px;
}

.faq details {
  padding: 14px 16px;
  box-shadow: var(--shadow-soft);
}

.faq summary {
  cursor: pointer;
  list-style: none;
  font-weight: 800;
  color: var(--accent);
  position: relative;
  padding-right: 28px;
}

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

.faq summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-dark);
  background: #e6fbea;
  border: 1px solid rgba(22, 51, 0, 0.08);
}

.faq details[open] summary::after {
  content: "-";
}

.faq p {
  margin: 10px 0 2px;
  color: var(--muted);
}

.cta-band {
  margin: 8px auto 42px;
  padding: 28px;
  border-radius: 8px;
  border: 1px solid rgba(14, 15, 12, 0.08);
  background: var(--text);
  box-shadow: var(--shadow-card);
  color: #ffffff;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
}

.cta-copy h2 {
  margin: 0 0 6px;
  color: #ffffff;
  font-size: 2.25rem;
  line-height: 1.05;
  font-weight: 900;
}

.cta-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
}

.cta-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.site-footer {
  border-top: 1px solid var(--border);
  background: rgba(246, 247, 242, 0.84);
  padding: 18px 0 26px;
}

.site-footer a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 700;
}

.site-footer a:hover {
  text-decoration: underline;
}

.legal-wrap {
  padding: 36px 0 56px;
}

.legal-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: var(--shadow-card);
  padding: 2rem;
  backdrop-filter: blur(8px);
}

.legal-card h1 {
  margin: 0;
  font-size: 2.625rem;
  line-height: 1.1;
}

.legal-card h2 {
  margin: 26px 0 8px;
  font-size: 1.5rem;
  color: var(--accent);
}

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

.legal-card ul {
  margin: 0;
  padding-left: 20px;
}

.legal-card .muted {
  margin-top: 6px;
  color: var(--muted);
  font-size: 14px;
}

.legal-card a {
  color: var(--brand-dark);
  font-weight: 700;
}

.legal-card a:hover {
  color: var(--brand);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

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

.footer-content > div {
  display: inline-flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-brand p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.footer-links {
  display: inline-flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}

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

  .hero-copy {
    padding-top: 6px;
  }

  .page-link-grid,
  .download-grid,
  .split-panel,
  .store-strip,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .plan-highlight {
    transform: none;
  }
}

@media (max-width: 860px) {
  h1,
  .page-hero h1 {
    font-size: 3rem;
    line-height: 1;
  }

  .section-head h2 {
    font-size: 2.375rem;
    line-height: 1.05;
  }

  .cta-copy h2 {
    font-size: 2rem;
  }

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

  .dashboard-kpis {
    grid-template-columns: 1fr;
  }

  .dashboard-lower {
    grid-template-columns: 1fr;
  }

  .hero-mini-grid {
    grid-template-columns: 1fr;
  }

  .cta-band {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .cta-actions {
    justify-content: flex-start;
  }
}

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

  .site-header {
    background: rgba(247, 251, 251, 0.92);
  }

  .nav {
    flex-wrap: wrap;
    gap: 10px;
  }

  .nav-links {
    width: 100%;
    overflow-x: auto;
    justify-content: flex-start;
  }

  .nav-actions {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .lang-switch {
    width: 100%;
  }

  .lang-switch button {
    width: 100%;
  }

  .hero {
    padding-top: 26px;
  }

  h1,
  .page-hero h1 {
    font-size: 2.5rem;
    line-height: 1.05;
  }

  .lead {
    font-size: 1.0625rem;
  }

  .section-head h2 {
    font-size: 2rem;
  }

  .feature-card h2,
  .feature-card h3,
  .page-link-card h3,
  .download-card h2,
  .content-card h2 {
    font-size: 1.5rem;
    line-height: 1.12;
  }

  .cta-copy h2 {
    font-size: 1.75rem;
  }

  .hero-cta,
  .cta-actions {
    width: 100%;
  }

  .store-link {
    justify-items: center;
  }

  .store-badge {
    width: 132px;
  }

  .btn,
  .btn-sm,
  .btn-lg {
    width: 100%;
  }

  .dashboard-shell,
  .hero-card,
  .feature-card,
  .plan-card,
  .faq details,
  .cta-band {
    border-radius: 8px;
  }

  .cta-band {
    padding: 20px;
  }

  .legal-wrap {
    padding-top: 24px;
  }

  .legal-card {
    border-radius: 8px;
    padding: 20px;
  }
}
