﻿:root {
  color-scheme: dark;
  --color-bg: #0b0f0d;
  --color-bg-elevated: #101613;
  --color-surface: rgba(18, 25, 22, 0.72);
  --color-surface-strong: rgba(23, 32, 28, 0.9);
  --color-border: rgba(164, 190, 177, 0.18);
  --color-border-strong: rgba(180, 211, 196, 0.3);
  --color-text: #eef4ee;
  --color-heading: #f7fbf5;
  --color-muted: #a7b8af;
  --color-subtle: #72837a;
  --color-primary: #56d0ae;
  --color-primary-strong: #8ee8cd;
  --color-primary-soft: rgba(86, 208, 174, 0.12);
  --color-amber: #d8bb7a;
  --shadow-card: 0 16px 42px rgba(0, 0, 0, 0.18);
  --radius-sm: 6px;
  --radius: 8px;
  --space-2: 0.75rem;
  --space-3: 1rem;
  --space-4: 1.5rem;
  --space-5: 2rem;
  --space-6: 3rem;
  --space-7: 4.5rem;
  --space-8: 6rem;
  --font-sans: "Aptos", "Segoe UI Variable", "Segoe UI", sans-serif;
  --font-display: "Bahnschrift", "Segoe UI Variable Display", "Segoe UI", sans-serif;
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background:
    linear-gradient(180deg, rgba(16, 24, 21, 0.84) 0%, rgba(11, 15, 13, 0.96) 34%, #0b0f0d 100%),
    repeating-linear-gradient(135deg, rgba(164, 190, 177, 0.035) 0, rgba(164, 190, 177, 0.035) 1px, transparent 1px, transparent 44px),
    var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-sans);
  font-size: 16px;
  letter-spacing: 0;
  line-height: 1.62;
  margin: 0;
  min-height: 100vh;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  background:
    linear-gradient(110deg, rgba(86, 208, 174, 0.11), transparent 34rem),
    linear-gradient(210deg, rgba(216, 187, 122, 0.07), transparent 30rem);
  content: "";
  inset: 0;
  pointer-events: none;
  position: fixed;
}

a {
  color: inherit;
}

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

h1,
h2,
h3,
p {
  margin: 0;
}

h1,
h2,
h3 {
  color: var(--color-heading);
  font-family: var(--font-display);
  font-weight: 680;
  letter-spacing: 0;
  line-height: 1.08;
}

h1 {
  font-size: 4.9rem;
}

h2 {
  font-size: 2.55rem;
}

h3 {
  font-size: 1.12rem;
}

:focus-visible {
  outline: 2px solid var(--color-primary-strong);
  outline-offset: 4px;
}

main {
  isolation: isolate;
  position: relative;
}

.section-shell {
  margin: 0 auto;
  max-width: var(--container);
  padding-left: var(--space-4);
  padding-right: var(--space-4);
  width: 100%;
}

.site-header {
  backdrop-filter: blur(18px) saturate(150%);
  background: rgba(11, 15, 13, 0.8);
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 0;
  z-index: 20;
}

.site-header__inner {
  align-items: center;
  display: flex;
  gap: var(--space-4);
  justify-content: space-between;
  margin: 0 auto;
  max-width: calc(var(--container) + 3rem);
  min-height: 76px;
  padding: 0 var(--space-4);
}

.brand-link,
.site-footer__brand {
  align-items: center;
  display: inline-flex;
  gap: 0.8rem;
  min-width: 0;
  text-decoration: none;
}

.brand-mark {
  align-items: center;
  background:
    linear-gradient(145deg, rgba(236, 255, 248, 0.06), rgba(86, 208, 174, 0.08)),
    rgba(7, 15, 20, 0.58);
  border: 1px solid rgba(169, 255, 229, 0.18);
  border-radius: var(--radius);
  box-shadow: 0 10px 28px rgba(35, 158, 130, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  display: inline-flex;
  flex: 0 0 auto;
  height: 42px;
  justify-content: center;
  overflow: hidden;
  position: relative;
  width: 42px;
}

.brand-mark img {
  display: block;
  height: 34px;
  object-fit: contain;
  width: 34px;
}

.brand-mark--small {
  height: 36px;
  width: 36px;
}

.brand-mark--small img {
  height: 30px;
  width: 30px;
}

.brand-copy {
  display: grid;
  gap: 0.05rem;
}

.brand-copy strong,
.site-footer__brand strong {
  color: var(--color-heading);
  font-family: var(--font-display);
  font-size: 1.08rem;
  line-height: 1;
}

.brand-copy small {
  color: var(--color-muted);
  font-size: 0.78rem;
  line-height: 1.25;
}

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

.desktop-nav a,
.mobile-nav a,
.site-footer__links a {
  border-radius: var(--radius-sm);
  color: var(--color-muted);
  font-size: 0.93rem;
  font-weight: 620;
  padding: 0.55rem 0.7rem;
  text-decoration: none;
  transition: background 180ms ease, color 180ms ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible,
.mobile-nav a:hover,
.mobile-nav a:focus-visible,
.site-footer__links a:hover,
.site-footer__links a:focus-visible {
  background: var(--color-primary-soft);
  color: var(--color-primary-strong);
}

.mobile-nav {
  display: none;
  position: relative;
}

.mobile-nav summary {
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  color: var(--color-heading);
  cursor: pointer;
  font-weight: 680;
  list-style: none;
  padding: 0.55rem 0.8rem;
}

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

.mobile-nav nav {
  background: var(--color-surface-strong);
  border: 1px solid var(--color-border-strong);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  display: grid;
  gap: 0.2rem;
  min-width: 220px;
  padding: 0.55rem;
  position: absolute;
  right: 0;
  top: calc(100% + 0.6rem);
}

.hero {
  min-height: 84vh;
  overflow: hidden;
  padding: var(--space-8) 0 var(--space-7);
  position: relative;
}

.hero::after {
  background: linear-gradient(180deg, transparent, rgba(11, 15, 13, 0.92));
  bottom: 0;
  content: "";
  height: 28%;
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
}

.hero__inner {
  align-items: center;
  display: grid;
  gap: clamp(2.5rem, 5vw, 5.5rem);
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 0.8fr);
  position: relative;
  z-index: 1;
}

.hero__content {
  max-width: 680px;
}

.hero__visual {
  opacity: 0.96;
  position: relative;
  width: 100%;
  z-index: 1;
}

.eyebrow {
  color: var(--color-primary-strong);
  font-size: 0.78rem;
  font-weight: 720;
  letter-spacing: 0;
  margin-bottom: var(--space-2);
  text-transform: uppercase;
}

.hero h1 {
  max-width: 740px;
}

.hero__claim {
  color: var(--color-heading);
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 560;
  line-height: 1.18;
  margin-top: var(--space-3);
  max-width: 680px;
}

.hero__copy {
  color: var(--color-muted);
  font-size: 1.12rem;
  margin-top: var(--space-4);
  max-width: 620px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-5);
}

.button {
  align-items: center;
  border-radius: var(--radius);
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  display: inline-flex;
  font-weight: 760;
  justify-content: center;
  min-height: 48px;
  padding: 0.75rem 1.05rem;
  text-decoration: none;
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, color 180ms ease, transform 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button:focus-visible {
  box-shadow: 0 0 0 4px rgba(142, 232, 205, 0.16);
}

.button--primary {
  background: linear-gradient(135deg, #e7fff7, #8ee8cd);
  border: 1px solid rgba(221, 255, 246, 0.72);
  color: #0c221d;
}

.button--primary:hover,
.button--primary:focus-visible {
  box-shadow: 0 14px 34px rgba(86, 208, 174, 0.18);
}

.button--secondary {
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--color-border-strong);
  color: var(--color-heading);
}

.button--secondary:hover,
.button--secondary:focus-visible {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(180, 211, 196, 0.42);
}

.trust-strip {
  display: grid;
  gap: var(--space-3);
  grid-column: 1 / -1;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: var(--space-2);
}

.trust-strip article,
.feature-card,
.privacy-panel,
.store-card,
.faq-list details,
.support-link,
.legal-notice,
.legal-content {
  backdrop-filter: blur(14px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.014)),
    var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}

.trust-strip article {
  padding: 1.25rem;
}

.trust-strip strong,
.feature-card h3,
.faq-list summary,
.support-link strong,
.store-card strong,
.legal-notice strong {
  color: var(--color-heading);
}

.trust-strip p,
.feature-card p,
.section-heading p,
.privacy-panel p,
.pricing-shell p,
.faq-list p,
.support-shell p,
.legal-content p,
.legal-notice p,
.legal-content dd,
.legal-content li,
.legal-page__intro,
.legal-page__meta span {
  color: var(--color-muted);
}

.trust-strip p,
.feature-card p {
  font-size: 0.94rem;
  margin-top: 0.45rem;
}

.section {
  padding: 5.5rem 0;
  position: relative;
}

.section--screenshots {
  background:
    linear-gradient(180deg, rgba(11, 15, 13, 0.08), rgba(17, 24, 21, 0.58)),
    linear-gradient(90deg, rgba(86, 208, 174, 0.055), transparent 42%);
  padding-top: 5rem;
}

.section--showcase {
  padding-top: 0;
}

.section--themes {
  background:
    linear-gradient(180deg, rgba(13, 19, 17, 0.22), rgba(18, 25, 22, 0.62));
}

.app-window {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    rgba(10, 16, 18, 0.82);
  border: 1px solid rgba(180, 211, 196, 0.22);
  border-radius: var(--radius);
  box-shadow:
    0 28px 86px rgba(0, 0, 0, 0.34),
    0 0 34px rgba(86, 208, 174, 0.08);
  margin: 0;
  overflow: hidden;
}

.app-window__bar {
  align-items: center;
  border-bottom: 1px solid var(--color-border);
  display: flex;
  gap: 0.42rem;
  min-height: 38px;
  padding: 0 0.9rem;
}

.app-window__bar span {
  background: rgba(238, 244, 238, 0.22);
  border-radius: 999px;
  height: 8px;
  width: 8px;
}

.app-window__bar strong {
  color: var(--color-muted);
  font-size: 0.76rem;
  font-weight: 680;
  margin-left: 0.45rem;
}

.app-window img {
  background: #101613;
  height: auto;
  width: 100%;
}

.app-window--hero {
  box-shadow:
    0 34px 100px rgba(0, 0, 0, 0.38),
    0 0 42px rgba(86, 208, 174, 0.1);
}

.app-window--hero img {
  aspect-ratio: 1440 / 680;
}

.app-window--large img {
  aspect-ratio: 1429 / 726;
}

.app-window--compact img {
  aspect-ratio: 1438 / 471;
  object-fit: cover;
}

.screenshot-feature {
  align-items: center;
  display: grid;
  gap: var(--space-6);
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.12fr);
}

.screenshot-card-grid {
  display: grid;
  gap: var(--space-3);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.screenshot-card {
  backdrop-filter: blur(14px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.014)),
    var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  display: grid;
  gap: 0.85rem;
  padding: 1rem;
}

.screenshot-card h3 {
  margin-top: 0.2rem;
}

.screenshot-card p {
  color: var(--color-muted);
  font-size: 0.94rem;
}

.theme-compare {
  display: grid;
  gap: var(--space-3);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.theme-compare article {
  display: grid;
  gap: 0.85rem;
}

.theme-compare strong {
  color: var(--color-heading);
  font-weight: 680;
}

.section--features {
  background: linear-gradient(180deg, rgba(17, 24, 21, 0.65), rgba(11, 15, 13, 0.15));
}

.section-heading {
  margin: 0 auto var(--space-6);
  max-width: 760px;
  text-align: center;
}

.section-heading--left {
  margin: 0;
  text-align: left;
}

.section-heading p:not(.eyebrow) {
  font-size: 1.05rem;
  margin-top: var(--space-3);
}

.feature-grid {
  display: grid;
  gap: var(--space-3);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card {
  min-height: 218px;
  padding: 1.35rem;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.feature-card:hover {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    var(--color-surface);
  border-color: rgba(180, 211, 196, 0.28);
  transform: translateY(-2px);
}

.feature-card span {
  color: var(--color-amber);
  display: block;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 680;
  margin-bottom: var(--space-4);
}

.split-section,
.pricing-shell,
.support-shell {
  align-items: center;
  display: grid;
  gap: var(--space-6);
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.75fr);
}

.privacy-panel {
  padding: var(--space-5);
}

.privacy-panel ul,
.pricing-points {
  display: grid;
  gap: var(--space-3);
  list-style: none;
  margin: 0;
  padding: 0;
}

.privacy-panel li {
  border-bottom: 1px solid var(--color-border);
  color: var(--color-heading);
  padding-bottom: var(--space-3);
}

.privacy-panel li::before,
.pricing-points li::before {
  color: var(--color-primary);
  content: "✓";
  font-weight: 900;
  margin-right: 0.55rem;
}

.privacy-panel p {
  font-size: 0.9rem;
  margin-top: var(--space-4);
}

.section--pricing {
  background:
    linear-gradient(90deg, rgba(86, 208, 174, 0.08), transparent 36%),
    linear-gradient(180deg, rgba(20, 28, 24, 0.78), rgba(11, 15, 13, 0.4));
}

.pricing-shell h2,
.support-shell h2 {
  margin-bottom: var(--space-3);
}

.pricing-shell p + p {
  margin-top: var(--space-2);
}

.pricing-points {
  gap: 0.55rem;
  margin-top: 1.25rem;
}

.pricing-points li {
  color: var(--color-heading);
  font-weight: 620;
}

.store-card {
  align-items: center;
  display: grid;
  gap: 1rem;
  grid-template-columns: auto minmax(0, 1fr) auto;
  min-height: 132px;
  overflow: hidden;
  padding: 1.35rem;
  position: relative;
  text-decoration: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.store-card::before {
  background:
    radial-gradient(circle at 18% 20%, rgba(86, 208, 174, 0.28), transparent 34%),
    linear-gradient(135deg, rgba(86, 208, 174, 0.14), transparent 54%);
  content: "";
  inset: 0;
  opacity: 0.72;
  pointer-events: none;
  position: absolute;
}

.store-card:hover {
  border-color: rgba(142, 232, 205, 0.42);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.24);
  transform: translateY(-2px);
}

.store-card__icon,
.store-card__content,
.store-card__arrow {
  position: relative;
  z-index: 1;
}

.store-card__icon {
  align-items: center;
  background:
    linear-gradient(180deg, rgba(247, 251, 245, 0.12), rgba(247, 251, 245, 0.04)),
    rgba(86, 208, 174, 0.12);
  border: 1px solid rgba(142, 232, 205, 0.28);
  border-radius: var(--radius);
  color: var(--color-primary-strong);
  display: inline-flex;
  height: 3.35rem;
  justify-content: center;
  width: 3.35rem;
}

.store-card__icon svg,
.store-card__arrow svg {
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.75;
}

.store-card__icon svg {
  height: 1.75rem;
  width: 1.75rem;
}

.store-card__content {
  display: grid;
  gap: 0.18rem;
  min-width: 0;
}

.store-card__eyebrow,
.store-card__meta,
.support-link span {
  color: var(--color-subtle);
  font-size: 0.85rem;
  font-weight: 720;
  text-transform: uppercase;
}

.store-card strong {
  font-size: clamp(1.12rem, 1vw + 0.9rem, 1.45rem);
  line-height: 1.18;
}

.store-card__meta {
  color: var(--color-muted);
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  margin-top: 0.1rem;
}

.store-card__arrow {
  align-items: center;
  color: var(--color-primary-strong);
  display: inline-flex;
  justify-content: center;
  opacity: 0.76;
  transition: opacity 180ms ease, transform 180ms ease;
}

.store-card__arrow svg {
  height: 1.2rem;
  width: 1.2rem;
}

.store-card:hover .store-card__arrow {
  opacity: 1;
  transform: translate(2px, -2px);
}

.section--faq {
  background: linear-gradient(180deg, rgba(11, 15, 13, 0.1), rgba(18, 25, 22, 0.72));
}

.faq-list {
  display: grid;
  gap: var(--space-3);
  margin: 0 auto;
  max-width: 860px;
}

.faq-list details {
  padding: var(--space-4);
  transition: background 180ms ease, border-color 180ms ease;
}

.faq-list details:hover,
.faq-list details:focus-within {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    var(--color-surface);
  border-color: rgba(180, 211, 196, 0.28);
}

.faq-list summary {
  cursor: pointer;
  font-weight: 680;
  list-style: none;
}

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

.faq-list summary::after {
  color: var(--color-primary);
  content: "+";
  float: right;
  font-size: 1.25rem;
  line-height: 1;
}

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

.faq-list p {
  margin-top: var(--space-3);
}

.support-link {
  display: grid;
  gap: 0.3rem;
  padding: var(--space-5);
  text-decoration: none;
  transition: border-color 180ms ease, transform 180ms ease;
}

.support-link:hover,
.support-link:focus-visible {
  border-color: rgba(180, 211, 196, 0.3);
  transform: translateY(-2px);
}

.support-link strong {
  font-size: 1.35rem;
}

.site-footer {
  border-top: 1px solid var(--color-border);
  padding: 2.75rem 0;
  position: relative;
}

.site-footer__inner {
  align-items: center;
  display: grid;
  gap: var(--space-4);
  grid-template-columns: minmax(240px, 1fr) auto;
}

.site-footer__brand p,
.site-footer__copyright {
  color: var(--color-muted);
  font-size: 0.92rem;
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  justify-content: flex-end;
}

.site-footer__copyright {
  grid-column: 1 / -1;
}

.app-preview {
  background: linear-gradient(180deg, rgba(28, 39, 34, 0.94), rgba(16, 23, 20, 0.96));
  border: 1px solid rgba(181, 211, 196, 0.2);
  border-radius: var(--radius);
  box-shadow: 0 28px 88px rgba(0, 0, 0, 0.34);
  margin: 0;
  overflow: hidden;
  width: 100%;
}

.app-preview__bar {
  align-items: center;
  border-bottom: 1px solid var(--color-border);
  display: flex;
  gap: 0.42rem;
  min-height: 42px;
  padding: 0 var(--space-3);
}

.app-preview__bar span {
  background: rgba(238, 244, 238, 0.22);
  border-radius: 999px;
  height: 8px;
  width: 8px;
}

.app-preview__bar strong {
  color: var(--color-muted);
  font-size: 0.78rem;
  margin-left: 0.5rem;
}

.app-preview__content {
  display: grid;
  grid-template-columns: 58px 1fr;
  min-height: 390px;
}

.app-preview__rail {
  align-items: center;
  border-right: 1px solid var(--color-border);
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  padding-top: var(--space-4);
}

.app-preview__rail span {
  background: rgba(238, 244, 238, 0.14);
  border: 1px solid rgba(238, 244, 238, 0.07);
  border-radius: 6px;
  height: 28px;
  width: 28px;
}

.app-preview__rail .is-active {
  background: var(--color-primary-soft);
  border-color: rgba(86, 208, 174, 0.32);
}

.app-preview__main {
  display: grid;
  gap: var(--space-3);
  padding: var(--space-4);
}

.app-preview__topline,
.app-preview__kpis,
.app-preview__grid,
.app-preview__list div {
  display: grid;
  gap: var(--space-3);
}

.app-preview__topline {
  align-items: center;
  grid-template-columns: 1fr auto;
}

.app-preview__topline small,
.app-preview__kpis small {
  color: var(--color-subtle);
  font-size: 0.78rem;
}

.app-preview__topline strong {
  color: var(--color-heading);
  display: block;
  font-size: 1.42rem;
  line-height: 1.15;
}

.app-preview__topline span {
  background: rgba(86, 208, 174, 0.12);
  border: 1px solid rgba(86, 208, 174, 0.26);
  border-radius: var(--radius-sm);
  color: var(--color-primary-strong);
  font-size: 0.78rem;
  font-weight: 760;
  padding: 0.35rem 0.55rem;
}

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

.app-preview__kpis div,
.app-preview__chart,
.app-preview__list {
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: var(--space-3);
}

.app-preview__kpis strong {
  color: var(--color-heading);
  display: block;
  font-size: 1rem;
  margin-top: 0.15rem;
}

.app-preview__grid {
  grid-template-columns: 1.2fr 0.8fr;
}

.app-preview__chart {
  align-items: end;
  display: flex;
  gap: 0.6rem;
  min-height: 150px;
}

.app-preview__chart span {
  background: linear-gradient(180deg, var(--color-primary), rgba(86, 208, 174, 0.18));
  border-radius: 6px 6px 2px 2px;
  flex: 1;
}

.app-preview__list {
  display: grid;
  gap: 0.75rem;
}

.app-preview__list div {
  grid-template-columns: 1fr auto;
}

.app-preview__list span {
  color: var(--color-muted);
}

.app-preview__list strong {
  color: var(--color-heading);
}

.legal-page {
  min-height: 68vh;
  padding: var(--space-8) 0;
}

.legal-page__inner {
  max-width: 880px;
}

.legal-page h1 {
  font-size: 3.4rem;
  margin-bottom: var(--space-3);
}

.legal-page__meta {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: space-between;
  margin-bottom: var(--space-3);
}

.legal-page__meta .eyebrow {
  margin: 0;
}

.legal-page__intro {
  font-size: 1.05rem;
  margin-bottom: var(--space-5);
  max-width: 70ch;
}

.legal-notice,
.legal-content {
  padding: var(--space-5);
}

.legal-content {
  display: grid;
  gap: var(--space-4);
  margin-top: var(--space-4);
}

.legal-content h2 {
  font-size: 1.35rem;
}

.legal-text-section {
  display: grid;
  gap: var(--space-3);
}

.legal-definition-list {
  display: grid;
  gap: var(--space-3);
  margin: 0;
}

.legal-definition-row {
  display: grid;
  gap: 0.35rem;
}

.legal-definition-row dt {
  color: var(--color-heading);
  font-weight: 700;
}

.legal-definition-row dd {
  margin: 0;
}

.legal-list {
  display: grid;
  gap: 0.55rem;
  margin: 0;
  padding-left: 1.15rem;
}

.legal-content a,
.legal-notice a {
  color: var(--color-primary-strong);
}

@media (prefers-reduced-motion: no-preference) {
  .hero__content,
  .hero__visual,
  .trust-strip article,
  .feature-card,
  .privacy-panel,
  .store-card,
  .faq-list details,
  .support-link {
    animation: rise-in 700ms ease both;
  }

  .hero__visual,
  .feature-card:nth-child(2),
  .faq-list details:nth-child(2) {
    animation-delay: 80ms;
  }

  .trust-strip article,
  .feature-card:nth-child(3),
  .faq-list details:nth-child(3) {
    animation-delay: 140ms;
  }
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 980px) {
  h1 {
    font-size: 3.6rem;
  }

  h2 {
    font-size: 2.15rem;
  }

  .desktop-nav {
    display: none;
  }

  .mobile-nav {
    display: block;
  }

  .hero {
    min-height: auto;
    padding-top: var(--space-7);
  }

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

  .hero__visual {
    margin: 0 auto;
    opacity: 0.94;
    width: min(100%, 640px);
  }

  .trust-strip,
  .feature-grid,
  .split-section,
  .pricing-shell,
  .support-shell,
  .screenshot-feature,
  .screenshot-card-grid,
  .theme-compare {
    grid-template-columns: 1fr;
  }

  .trust-strip {
    margin-top: 0;
  }
}

@media (max-width: 680px) {
  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 1.85rem;
  }

  .section-shell,
  .site-header__inner {
    padding-left: var(--space-3);
    padding-right: var(--space-3);
  }

  .brand-copy small {
    display: none;
  }

  .hero {
    padding-bottom: 4rem;
    padding-top: 4.5rem;
  }

  .hero__inner {
    gap: 2rem;
  }

  .hero__claim {
    font-size: 1.55rem;
  }

  .hero__copy {
    font-size: 1rem;
  }

  .button,
  .hero__actions {
    width: 100%;
  }

  .section {
    padding: 4rem 0;
  }

  .feature-card {
    min-height: auto;
  }

  .app-window__bar {
    min-height: 34px;
  }

  .site-footer__inner {
    align-items: start;
    grid-template-columns: 1fr;
  }

  .site-footer__links {
    justify-content: flex-start;
  }

  .app-preview__content {
    grid-template-columns: 1fr;
  }

  .app-preview__rail {
    border-bottom: 1px solid var(--color-border);
    border-right: 0;
    flex-direction: row;
    justify-content: center;
    padding: var(--space-3);
  }

  .app-preview__kpis,
  .app-preview__grid {
    grid-template-columns: 1fr;
  }

  .legal-page h1 {
    font-size: 2.7rem;
  }
}

/* Curated product-shot presentation */
.hero__inner {
  align-items: center;
  gap: clamp(2.25rem, 4.6vw, 4.75rem);
  grid-template-columns: minmax(0, 0.82fr) minmax(520px, 1.05fr);
}

.hero__visual {
  justify-self: end;
  width: min(100%, 820px);
}

.section--showcase {
  background:
    linear-gradient(180deg, rgba(16, 23, 20, 0.44), rgba(11, 15, 13, 0.12)),
    radial-gradient(circle at 18% 12%, rgba(86, 208, 174, 0.055), transparent 34rem);
  padding-top: 4.75rem;
}

.product-shot {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.012)),
    rgba(9, 15, 14, 0.82);
  border: 1px solid rgba(180, 211, 196, 0.22);
  border-radius: var(--radius-lg, 14px);
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.28),
    0 0 30px rgba(86, 208, 174, 0.07);
  margin: 0;
  overflow: hidden;
}

.product-shot img {
  background: #0f1513;
  display: block;
  height: auto;
  max-width: 100%;
  object-fit: contain;
  width: 100%;
}

.product-shot--hero {
  border-color: rgba(142, 232, 205, 0.26);
  box-shadow:
    0 30px 86px rgba(0, 0, 0, 0.32),
    0 0 34px rgba(86, 208, 174, 0.1);
}

.product-shot--large {
  box-shadow:
    0 22px 64px rgba(0, 0, 0, 0.26),
    0 0 26px rgba(86, 208, 174, 0.06);
}

.product-shot--proof {
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.2);
}

.visual-frame {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.01)),
    rgba(8, 15, 15, 0.72);
  border: 1px solid rgba(180, 211, 196, 0.18);
  border-radius: calc(var(--radius-lg, 14px) + 4px);
  box-shadow:
    0 20px 58px rgba(0, 0, 0, 0.24),
    0 0 24px rgba(86, 208, 174, 0.055);
  margin: 0;
  overflow: hidden;
  position: relative;
}

.visual-frame--hero {
  border-color: rgba(142, 232, 205, 0.22);
  box-shadow:
    0 28px 72px rgba(0, 0, 0, 0.24),
    0 0 42px rgba(86, 208, 174, 0.08);
}

.visual-frame--section {
  align-self: center;
  justify-self: end;
  max-width: 820px;
  width: 100%;
}

.visual-frame--card {
  border-radius: var(--radius-lg, 14px);
  box-shadow:
    0 14px 38px rgba(0, 0, 0, 0.2),
    0 0 18px rgba(86, 208, 174, 0.045);
}

.visual-frame--forecast-card {
  aspect-ratio: 1672 / 941;
  border-color: rgba(142, 232, 205, 0.2);
  width: 100%;
}

.visual-frame--savings-card {
  aspect-ratio: 1196 / 1315;
  background: transparent;
  border-color: rgba(142, 232, 205, 0.12);
  box-shadow:
    0 12px 32px rgba(0, 0, 0, 0.18),
    0 0 16px rgba(86, 208, 174, 0.04);
  justify-self: center;
  max-width: min(100%, 390px);
  width: 100%;
}

.visual-frame--trend-card {
  aspect-ratio: 1597 / 612;
  background: transparent;
  border-color: rgba(142, 232, 205, 0.12);
  box-shadow:
    0 12px 32px rgba(0, 0, 0, 0.18),
    0 0 16px rgba(86, 208, 174, 0.04);
  width: 100%;
}

.visual-frame--export-card {
  aspect-ratio: 1448 / 1086;
  background: transparent;
  border: 0;
  box-shadow: none;
  justify-self: center;
  max-width: min(100%, 620px);
  width: 100%;
}

.visual-frame--month-planning {
  aspect-ratio: 1672 / 941;
}

.visual-image {
  background: transparent;
  display: block;
  filter: none;
  height: auto;
  image-rendering: auto;
  max-width: 100%;
  transform: none;
  width: 100%;
}

.visual-image--contain {
  object-fit: contain;
}

.screenshot-feature {
  align-items: center;
  display: grid;
  gap: clamp(2rem, 4.4vw, 4.25rem);
  grid-template-columns: minmax(280px, 0.68fr) minmax(0, 1.12fr);
}

.story-points {
  display: grid;
  gap: 0.7rem;
  list-style: none;
  margin: var(--space-4) 0 0;
  padding: 0;
}

.story-points li {
  color: var(--color-heading);
  font-weight: 640;
}

.story-points li::before {
  color: var(--color-primary);
  content: "✓";
  font-weight: 900;
  margin-right: 0.55rem;
}

.proof-grid {
  display: grid;
  gap: var(--space-3);
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

.proof-card {
  backdrop-filter: blur(14px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.014)),
    var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  display: grid;
  gap: 0.95rem;
  min-height: 100%;
  padding: 1rem;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.proof-card:hover {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.052), rgba(255, 255, 255, 0.014)),
    var(--color-surface);
  border-color: rgba(180, 211, 196, 0.28);
  transform: translateY(-2px);
}

.proof-card h3 {
  margin: 0;
}

.proof-card p {
  color: var(--color-muted);
  font-size: 0.94rem;
  margin-top: 0.45rem;
}

.proof-card--forecast,
.proof-card--trend {
  grid-column: span 7;
}

.proof-card--savings,
.proof-card--backup {
  grid-column: span 5;
}

.proof-card--savings {
  align-items: center;
  grid-template-columns: minmax(150px, 0.64fr) minmax(0, 1fr);
}

.product-shot--portrait {
  justify-self: center;
  max-width: 240px;
  width: 100%;
}

.proof-card--backup {
  align-content: stretch;
}

.section-heading--compact {
  margin-bottom: var(--space-5);
  max-width: 720px;
}

.section--themes,
.theme-compare,
.theme-card {
  display: none;
}

@media (max-width: 1100px) {
  .proof-card--forecast,
  .proof-card--trend,
  .proof-card--savings,
  .proof-card--backup {
    grid-column: 1 / -1;
  }

  .proof-card--savings {
    grid-template-columns: minmax(150px, 0.42fr) minmax(0, 1fr);
  }
}

@media (max-width: 980px) {
  .hero__inner,
  .screenshot-feature {
    grid-template-columns: 1fr;
  }

  .hero__visual {
    justify-self: center;
    width: min(100%, 720px);
  }
}

@media (max-width: 680px) {
  .product-shot {
    border-radius: var(--radius);
  }

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

  .proof-card,
  .proof-card--savings {
    grid-column: 1 / -1;
    grid-template-columns: 1fr;
  }

  .product-shot--portrait {
    max-width: 100%;
  }
}

/* Slightly wider hero stage for the curated wide dashboard panel */
.hero .section-shell {
  max-width: 1320px;
}

.hero__inner {
  grid-template-columns: minmax(0, 0.72fr) minmax(540px, 1.08fr);
}

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

/* Final product-shot polish: container, rhythm and bento composition */
:root {
  --container: 1220px;
  --shadow-card: 0 12px 30px rgba(0, 0, 0, 0.15);
  --shadow-product: 0 20px 56px rgba(0, 0, 0, 0.24), 0 0 22px rgba(86, 208, 174, 0.055);
}

.section-shell {
  max-width: var(--container);
  padding-left: clamp(1rem, 3vw, 2rem);
  padding-right: clamp(1rem, 3vw, 2rem);
}

.site-header__inner {
  max-width: calc(var(--container) + 4rem);
  padding-left: clamp(1rem, 3vw, 2rem);
  padding-right: clamp(1rem, 3vw, 2rem);
}

.section[id],
.hero[id] {
  scroll-margin-top: 96px;
}

.section {
  padding: clamp(4.5rem, 6.5vw, 6.25rem) 0;
}

.hero {
  min-height: auto;
  padding: clamp(5rem, 7vw, 7rem) 0 clamp(4.25rem, 6vw, 5.75rem);
}

.hero .section-shell {
  max-width: var(--container);
}

.hero__inner {
  align-items: center;
  gap: clamp(2.25rem, 4vw, 4.25rem);
  grid-template-columns: minmax(0, 0.78fr) minmax(500px, 1fr);
}

.hero__content {
  max-width: 620px;
}

.hero__visual {
  justify-self: end;
  opacity: 1;
  width: min(100%, 720px);
}

.trust-strip {
  margin-top: clamp(0.75rem, 2vw, 1.5rem);
}

.section--screenshots {
  padding-top: clamp(4.5rem, 6vw, 5.75rem);
}

.screenshot-feature {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.01)),
    rgba(12, 18, 16, 0.28);
  border: 1px solid rgba(164, 190, 177, 0.1);
  border-radius: calc(var(--radius-lg, 14px) + 4px);
  gap: clamp(2rem, 4vw, 4rem);
  grid-template-columns: minmax(280px, 0.64fr) minmax(0, 1.16fr);
  padding-bottom: clamp(1rem, 2vw, 1.25rem);
  padding-top: clamp(1rem, 2vw, 1.25rem);
}

.story-points {
  gap: 0.72rem;
}

.story-points li {
  align-items: baseline;
  display: flex;
}

.story-points li::before {
  flex: 0 0 auto;
}

.product-shot {
  border: 1px solid rgba(180, 211, 196, 0.2);
  box-shadow: var(--shadow-product);
  filter: none;
  opacity: 1;
  transform: none;
}

.product-shot img {
  filter: none;
  image-rendering: auto;
  object-fit: contain;
  transform: none;
}

.product-shot--hero {
  border-color: rgba(142, 232, 205, 0.24);
  box-shadow:
    0 24px 66px rgba(0, 0, 0, 0.26),
    0 0 24px rgba(86, 208, 174, 0.075);
}

.product-shot--large {
  box-shadow:
    0 20px 56px rgba(0, 0, 0, 0.24),
    0 0 20px rgba(86, 208, 174, 0.055);
}

.section--showcase {
  padding-top: clamp(4.5rem, 6vw, 5.75rem);
}

.proof-grid {
  align-items: stretch;
  display: grid;
  gap: clamp(1rem, 2vw, 1.35rem);
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

.proof-card {
  border-color: rgba(164, 190, 177, 0.16);
  gap: 1rem;
  padding: clamp(1rem, 1.8vw, 1.25rem);
}

.proof-card--forecast,
.proof-card--trend {
  grid-column: span 7;
}

.proof-card--savings,
.proof-card--backup {
  grid-column: span 5;
}

.proof-card--savings {
  align-content: start;
  grid-template-columns: 1fr;
}

.product-shot--portrait {
  justify-self: center;
  max-width: min(100%, 340px);
  width: 100%;
}

.product-shot--wide {
  width: 100%;
}

.proof-card--backup {
  align-content: start;
}

@media (max-width: 1100px) {
  .hero__inner {
    grid-template-columns: minmax(0, 0.82fr) minmax(440px, 1fr);
  }

  .proof-card--forecast,
  .proof-card--trend,
  .proof-card--savings,
  .proof-card--backup {
    grid-column: 1 / -1;
  }

  .proof-card--savings {
    grid-template-columns: minmax(220px, 0.44fr) minmax(0, 1fr);
    align-items: center;
  }

  .visual-frame--savings-card {
    max-width: min(100%, 320px);
  }

  .product-shot--portrait {
    max-width: 300px;
  }
}

@media (max-width: 980px) {
  .hero__inner,
  .screenshot-feature {
    grid-template-columns: 1fr;
  }

  .hero__visual {
    justify-self: center;
    width: min(100%, 720px);
  }

  .visual-frame--section {
    justify-self: center;
    max-width: 820px;
  }

  .screenshot-feature {
    padding-bottom: clamp(1rem, 3vw, 1.5rem);
    padding-top: clamp(1rem, 3vw, 1.5rem);
  }
}

@media (max-width: 680px) {
  .section-shell,
  .site-header__inner {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .hero {
    padding-top: 4.5rem;
  }

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

  .proof-card,
  .proof-card--savings {
    grid-column: 1 / -1;
    grid-template-columns: 1fr;
  }

  .visual-frame--savings-card {
    max-width: min(100%, 340px);
  }

  .product-shot--portrait {
    max-width: min(100%, 360px);
  }
}

/* Language switcher and English-default hero polish */
.header-actions {
  align-items: center;
  display: inline-flex;
  flex: 0 0 auto;
  gap: 0.65rem;
}

.language-switcher {
  position: relative;
}

.language-button {
  align-items: center;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.014)),
    rgba(12, 18, 16, 0.74);
  border: 1px solid rgba(164, 190, 177, 0.2);
  border-radius: var(--radius);
  color: var(--color-heading);
  cursor: pointer;
  display: inline-flex;
  font: inherit;
  font-size: 0.86rem;
  font-weight: 760;
  gap: 0.42rem;
  min-height: 40px;
  padding: 0.48rem 0.62rem;
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.language-button:hover,
.language-button:focus-visible,
.language-switcher:has(.language-menu:not([hidden])) .language-button {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.018)),
    rgba(16, 25, 22, 0.92);
  border-color: rgba(142, 232, 205, 0.3);
  color: var(--color-primary-strong);
}

.language-button:focus-visible {
  box-shadow: 0 0 0 4px rgba(142, 232, 205, 0.14);
}

.language-button svg {
  fill: none;
  height: 17px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.55;
  width: 17px;
}

.language-button__chevron {
  color: var(--color-muted);
  font-size: 0.95rem;
  line-height: 1;
  margin-left: -0.1rem;
}

.language-menu {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    rgba(14, 21, 18, 0.98);
  border: 1px solid rgba(180, 211, 196, 0.24);
  border-radius: var(--radius);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
  display: grid;
  gap: 0.2rem;
  min-width: 148px;
  padding: 0.38rem;
  position: absolute;
  right: 0;
  top: calc(100% + 0.55rem);
  z-index: 35;
}

.language-menu[hidden] {
  display: none;
}

.language-option {
  background: transparent;
  border: 0;
  border-radius: var(--radius-sm);
  color: var(--color-muted);
  cursor: pointer;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 680;
  padding: 0.58rem 0.68rem;
  text-align: left;
  transition: background 180ms ease, color 180ms ease;
}

.language-option:hover,
.language-option:focus-visible,
.language-option.is-active {
  background: rgba(86, 208, 174, 0.1);
  color: var(--color-primary-strong);
}

.language-option.is-active::after {
  content: "•";
  float: right;
}

.hero h1 {
  font-size: clamp(2.75rem, 4.6vw, 4.6rem);
  line-height: 1.04;
  max-width: 680px;
}

.hero__copy {
  max-width: 640px;
}

@media (max-width: 1100px) {
  .desktop-nav a {
    padding-left: 0.48rem;
    padding-right: 0.48rem;
  }

  .language-button {
    min-height: 38px;
    padding-left: 0.52rem;
    padding-right: 0.52rem;
  }
}

@media (max-width: 980px) {
  .site-header__inner {
    gap: 0.75rem;
  }

  .header-actions {
    margin-left: auto;
  }
}

@media (max-width: 680px) {
  .language-button {
    gap: 0.34rem;
    min-height: 38px;
    padding: 0.44rem 0.5rem;
  }

  .language-button svg {
    height: 16px;
    width: 16px;
  }

  .language-menu {
    min-width: 136px;
  }

  .hero h1 {
    font-size: 2.45rem;
  }
}

@media (max-width: 390px) {
  .site-header__inner {
    gap: 0.45rem;
  }

  .brand-link {
    gap: 0.55rem;
  }

  .brand-mark {
    height: 38px;
    width: 38px;
  }

  .brand-mark img {
    height: 30px;
    width: 30px;
  }

  .language-button__chevron {
    display: none;
  }

  .mobile-nav summary {
    padding-left: 0.62rem;
    padding-right: 0.62rem;
  }
}

/* Hero copy polish after language switcher */
.hero {
  padding: clamp(4.5rem, 6vw, 6.25rem) 0 clamp(3.75rem, 5vw, 5rem);
}

.hero .section-shell {
  max-width: 1440px;
}

.hero__inner {
  gap: clamp(2rem, 3.4vw, 3.75rem);
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1fr);
}

.hero__content {
  max-width: 660px;
}

.hero-title {
  font-size: clamp(3.35rem, 6.15vw, 5.65rem);
  letter-spacing: 0;
  line-height: 0.98;
  max-width: 680px;
  text-wrap: balance;
}

.hero-title span {
  display: block;
}

.hero__copy {
  font-size: clamp(1rem, 1.22vw, 1.14rem);
  max-width: 680px;
}

.hero__visual {
  justify-self: end;
  width: min(100%, 860px);
}

.product-shot--hero {
  background: transparent;
  border: 0;
  border-radius: clamp(14px, 2vw, 22px);
  box-shadow:
    0 28px 72px rgba(0, 0, 0, 0.24),
    0 0 42px rgba(86, 208, 174, 0.08);
  overflow: visible;
  position: relative;
  z-index: 0;
}

.hero-visual {
  aspect-ratio: 1672 / 941;
}

.hero-visual::before {
  background: radial-gradient(ellipse at center, rgba(86, 208, 174, 0.16), transparent 66%);
  content: "";
  filter: blur(18px);
  inset: 7% 1% -2%;
  opacity: 0.72;
  pointer-events: none;
  position: absolute;
  z-index: -1;
}

.hero-visual img {
  aspect-ratio: 1672 / 941;
  background: transparent;
  border-radius: inherit;
  object-fit: contain;
}

.trust-strip {
  margin-top: clamp(0.5rem, 1.5vw, 1.15rem);
}

.language-button {
  white-space: nowrap;
}

@media (max-width: 1100px) {
  .hero-title {
    font-size: clamp(3rem, 5.4vw, 4.7rem);
    max-width: 620px;
  }

  .hero__inner {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1fr);
  }
}

@media (max-width: 980px) {
  .hero {
    padding-top: 4.75rem;
  }

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

  .hero-title {
    font-size: clamp(3.2rem, 9vw, 4.8rem);
    max-width: 720px;
  }

  .hero__visual {
    justify-self: center;
    width: min(100%, 820px);
  }
}

@media (max-width: 680px) {
  .hero {
    padding-bottom: 3.5rem;
    padding-top: 4.25rem;
  }

  .hero-title {
    font-size: clamp(2.65rem, 12vw, 3.35rem);
    letter-spacing: 0;
    line-height: 1;
  }

  .hero-visual::before {
    inset: 9% 0 -1%;
    opacity: 0.58;
  }

  .hero__copy {
    font-size: 1rem;
  }
}

@media (max-width: 390px) {
  .hero-title {
    font-size: clamp(2.35rem, 11.2vw, 2.85rem);
  }
}

/* Trust cards sit directly after the hero, not inside the hero height */
.hero {
  padding-bottom: clamp(2.75rem, 4vw, 4rem);
}

.trust-section {
  padding: 0 0 clamp(3.75rem, 5.5vw, 5.25rem);
  position: relative;
  z-index: 1;
}

.trust-section .trust-strip {
  margin-top: 0;
}

@media (max-width: 980px) {
  .trust-section {
    padding-bottom: clamp(3.5rem, 6vw, 4.75rem);
  }
}

