:root {
  --ink: #13231d;
  --muted: #65736d;
  --paper: #f4f6ef;
  --surface: #ffffff;
  --line: #dfe6dd;
  --green: #078c57;
  --green-dark: #064c36;
  --lime: #c8ff5a;
  --orange: #ff8b4a;
  --cream: #fff8e9;
  --radius: 24px;
  --shadow: 0 24px 80px rgba(20, 48, 37, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

img {
  max-width: 100%;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  top: 18px;
  right: clamp(16px, 4vw, 64px);
  left: clamp(16px, 4vw, 64px);
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 28px;
  max-width: 1440px;
  min-height: 68px;
  margin: 0 auto;
  padding: 10px 12px 10px 18px;
  border: 1px solid rgba(19, 35, 29, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.74);
  backdrop-filter: blur(20px);
  transition: top 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  top: 10px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 36px rgba(20, 48, 37, 0.1);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.06rem;
  font-weight: 850;
  letter-spacing: -0.03em;
}

.brand-mark {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: block;
  object-fit: cover;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.5vw, 36px);
  margin-left: auto;
  color: #44534d;
  font-size: 0.9rem;
  font-weight: 650;
}

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

.nav-links a,
.site-footer nav a {
  transition: color 160ms ease;
}

.nav-links a:hover,
.site-footer nav a:hover {
  color: var(--green);
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #8a949f;
  font-size: 0.9rem;
  font-weight: 650;
}

.language-option {
  min-width: 0;
  min-height: 32px;
  padding: 0;
  color: #4c5966;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: 0.08em;
  line-height: 1;
}

.language-option.is-active {
  color: var(--green);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 12px;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.nav-cta {
  background: var(--ink);
  color: var(--surface);
  font-size: 0.88rem;
}

.nav-cta:hover,
.button:hover {
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: var(--ink);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(520px, 1.18fr);
  align-items: center;
  gap: clamp(42px, 6vw, 100px);
  min-height: 790px;
  overflow: hidden;
  padding: 138px clamp(20px, 5vw, 80px) 80px;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}

.hero-orb-one {
  top: -180px;
  right: 8%;
  width: 480px;
  height: 480px;
  background: rgba(200, 255, 90, 0.32);
}

.hero-orb-two {
  bottom: -280px;
  left: -180px;
  width: 580px;
  height: 580px;
  background: rgba(255, 139, 74, 0.13);
}

.hero-copy,
.hero-visual {
  position: relative;
  z-index: 1;
}

.hero-copy {
  max-width: 680px;
}

.eyebrow,
.section-label,
.card-kicker {
  margin-bottom: 18px;
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #355248;
}

.eyebrow span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(7, 140, 87, 0.12);
}

h1 {
  max-width: 720px;
  margin-bottom: 26px;
  font-size: clamp(2.55rem, 4.6vw, 4.8rem);
  font-weight: 760;
  line-height: 0.96;
  letter-spacing: -0.06em;
}

h1 em {
  color: var(--green);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
}

.hero-description {
  max-width: 600px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 28px;
}

.button {
  min-height: 54px;
  padding: 0 24px;
}

.button-primary {
  background: var(--green);
  color: var(--surface);
  box-shadow: 0 14px 34px rgba(7, 140, 87, 0.25);
}

.button-primary:hover {
  background: #067d4e;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.94rem;
  font-weight: 800;
}

.text-link span {
  color: var(--green);
}

.store-availability {
  margin-bottom: 34px;
}

.store-availability > p {
  margin-bottom: 9px;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.store-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 154px;
  min-height: 49px;
  padding: 7px 14px 7px 12px;
  border-radius: 11px;
  background: var(--ink);
  color: var(--surface);
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.store-badge:hover {
  transform: translateY(-2px);
  background: var(--green-dark);
  box-shadow: 0 10px 24px rgba(20, 48, 37, 0.18);
}

.store-badge:focus-visible {
  outline: 3px solid rgba(7, 140, 87, 0.3);
  outline-offset: 3px;
}

.store-badge svg {
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
  fill: currentColor;
}

.store-badge span {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.store-badge small {
  margin-bottom: 4px;
  font-size: 0.56rem;
  letter-spacing: 0.01em;
}

.store-badge strong {
  font-size: 1rem;
  font-weight: 650;
  letter-spacing: -0.02em;
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 14px;
}

.hero-proof p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.hero-proof strong {
  color: var(--ink);
}

.avatar-stack {
  display: flex;
}

.avatar-stack span,
.member-row span {
  display: grid;
  place-items: center;
  width: 35px;
  height: 35px;
  margin-left: -7px;
  border: 3px solid var(--paper);
  border-radius: 50%;
  background: var(--green-dark);
  color: var(--surface);
  font-size: 0.64rem;
  font-weight: 850;
}

.avatar-stack span:first-child {
  margin-left: 0;
}

.avatar-stack span:nth-child(2) {
  background: var(--orange);
}

.avatar-stack span:nth-child(3) {
  background: #3579d1;
}

.avatar-stack span:last-child {
  background: var(--lime);
  color: var(--ink);
}

.hero-visual {
  padding: 18px;
  border: 1px solid rgba(19, 35, 29, 0.08);
  border-radius: 36px;
  background: rgba(255, 255, 255, 0.64);
  box-shadow: var(--shadow);
  transform: rotate(1.5deg);
}

.hero-visual picture {
  display: block;
  overflow: hidden;
  border-radius: 24px;
}

.hero-visual img {
  display: block;
  width: 100%;
  height: auto;
}

.visual-label {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(19, 35, 29, 0.08);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 40px rgba(20, 48, 37, 0.16);
  backdrop-filter: blur(12px);
}

.visual-label-top {
  top: 48px;
  left: -36px;
  padding: 12px 16px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
}

.pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(7, 140, 87, 0.12);
}

.visual-label-bottom {
  right: -22px;
  bottom: 50px;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  padding: 16px 20px;
  border-radius: 16px;
}

.visual-label-bottom strong {
  color: var(--green);
  font-size: 1.35rem;
}

.visual-label-bottom span {
  color: var(--muted);
  font-size: 0.72rem;
}

.trust-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 24px clamp(20px, 5vw, 80px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.54);
}

.trust-strip p {
  max-width: 260px;
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.trust-strip > div {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(20px, 3vw, 48px);
}

.trust-strip span {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  font-size: 0.82rem;
  font-weight: 750;
}

.trust-strip i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
}

.section-shell {
  padding: clamp(76px, 10vw, 150px) clamp(20px, 5vw, 80px);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 54px;
}

.section-heading > div {
  max-width: 760px;
}

.section-heading h2,
.workflow h2,
.contact h2 {
  margin-bottom: 0;
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 720;
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.section-heading > p {
  max-width: 480px;
  margin-bottom: 4px;
  color: var(--muted);
}

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

.feature-card {
  position: relative;
  overflow: hidden;
  min-height: 320px;
  padding: clamp(24px, 3vw, 38px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.feature-card-main {
  grid-column: span 7;
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 30px;
  min-height: 420px;
}

.feature-card-dark {
  grid-column: span 5;
  color: var(--surface);
  background: var(--green-dark);
}

.feature-card-accent {
  grid-column: span 4;
  background: var(--lime);
}

.feature-card-wide {
  grid-column: span 8;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 34px;
  background: var(--cream);
}

.feature-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 58px;
  border-radius: 14px;
  background: rgba(7, 140, 87, 0.1);
  color: var(--green);
}

.feature-icon.light {
  background: rgba(255, 255, 255, 0.13);
  color: var(--lime);
}

.feature-icon svg {
  width: 23px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.feature-card h3 {
  max-width: 520px;
  margin-bottom: 14px;
  font-size: clamp(1.55rem, 2.5vw, 2.45rem);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

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

.feature-card-dark p {
  color: rgba(255, 255, 255, 0.66);
}

.feature-card-dark .card-kicker {
  color: var(--lime);
}

.mini-budget {
  align-self: end;
  padding: 22px;
  border-radius: 18px;
  background: #f4f7f2;
}

.mini-budget > div:not(.progress) {
  display: flex;
  justify-content: space-between;
  margin: 16px 0 8px;
  font-size: 0.72rem;
}

.progress {
  height: 7px;
  overflow: hidden;
  border-radius: 99px;
  background: #dfe6dd;
}

.progress span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--green);
}

.progress.orange span {
  background: var(--orange);
}

.member-row {
  position: absolute;
  right: 34px;
  bottom: 34px;
  display: flex;
}

.member-row span {
  width: 47px;
  height: 47px;
  border-color: var(--green-dark);
  background: #0d6a4b;
}

.member-row span:nth-child(2) {
  background: #d96f3f;
}

.member-row span:nth-child(3) {
  background: #377bcc;
}

.member-row span:last-child {
  background: var(--lime);
  color: var(--ink);
}

.feature-card-accent .card-kicker,
.feature-card-accent p {
  color: rgba(19, 35, 29, 0.68);
}

.approval-card {
  position: absolute;
  right: 26px;
  bottom: 26px;
  left: 26px;
  display: grid;
  gap: 8px;
  padding: 20px;
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.76);
}

.approval-card > span {
  font-size: 0.7rem;
}

.approval-card > strong {
  font-size: 1.4rem;
}

.approval-card > div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 8px;
}

.approval-card i {
  padding: 8px;
  border-radius: 8px;
  background: var(--surface);
  font-size: 0.7rem;
  font-style: normal;
  text-align: center;
}

.approval-card i:last-child {
  background: var(--green);
  color: var(--surface);
}

.feature-card-wide .feature-icon {
  margin-bottom: 42px;
}

.chart {
  display: flex;
  align-items: end;
  gap: clamp(9px, 1.5vw, 18px);
  min-height: 230px;
  padding: 24px 24px 0;
  border-bottom: 1px solid rgba(19, 35, 29, 0.22);
}

.chart span {
  flex: 1;
  min-width: 14px;
  border-radius: 8px 8px 0 0;
  background: var(--green);
}

.chart span:nth-child(2),
.chart span:nth-child(5) {
  background: var(--orange);
}

.chart span:nth-child(4) {
  background: var(--lime);
}

.workflow {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(480px, 1.1fr);
  gap: clamp(60px, 10vw, 150px);
  padding: clamp(80px, 10vw, 150px) clamp(20px, 5vw, 80px);
  color: var(--surface);
  background: var(--ink);
}

.workflow-intro {
  align-self: start;
  position: sticky;
  top: 120px;
}

.workflow .section-label {
  color: var(--lime);
}

.workflow h2 {
  max-width: 650px;
  margin-bottom: 26px;
}

.workflow-intro > p:not(.section-label) {
  max-width: 540px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.58);
}

.workflow .text-link span {
  color: var(--lime);
}

.steps {
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps li {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 28px;
  padding: 42px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.steps li:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.steps > li > span {
  color: var(--lime);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.4rem;
  font-style: italic;
}

.steps h3 {
  margin-bottom: 10px;
  font-size: clamp(1.4rem, 2.5vw, 2.1rem);
  letter-spacing: -0.04em;
}

.steps p {
  max-width: 520px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.58);
}

.section-heading.compact {
  max-width: 850px;
}

.use-case-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.use-case-grid article {
  position: relative;
  min-height: 390px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.use-case-grid article:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.case-number {
  position: absolute;
  top: 28px;
  right: 28px;
  color: #93a09a;
  font-size: 0.74rem;
  font-weight: 800;
}

.case-symbol {
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  margin-bottom: 82px;
  border-radius: 50%;
  background: var(--paper);
  color: var(--green);
  font-size: 2rem;
  font-weight: 500;
}

.use-case-grid article:nth-child(2) .case-symbol {
  background: var(--cream);
  color: var(--orange);
}

.use-case-grid article:nth-child(3) .case-symbol {
  background: #edf4ff;
  color: #3579d1;
}

.use-case-grid h3 {
  margin-bottom: 12px;
  font-size: 1.65rem;
  letter-spacing: -0.04em;
}

.use-case-grid p {
  margin-bottom: 26px;
  color: var(--muted);
}

.use-case-grid a {
  position: absolute;
  bottom: 28px;
  font-size: 0.84rem;
  font-weight: 800;
}

.use-case-grid a span {
  margin-left: 6px;
  color: var(--green);
}

.contact {
  padding-top: 0;
}

.contact-card {
  position: relative;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 50px;
  overflow: hidden;
  padding: clamp(40px, 7vw, 92px);
  border-radius: 32px;
  color: var(--surface);
  background: var(--green);
}

.contact-card > div:not(.contact-pattern) {
  position: relative;
  z-index: 1;
  max-width: 850px;
}

.contact .section-label {
  color: var(--lime);
}

.contact h2 {
  margin-bottom: 24px;
}

.contact p:not(.section-label) {
  max-width: 680px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
}

.button-light {
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
  background: var(--surface);
  color: var(--ink);
}

.contact-pattern {
  position: absolute;
  right: -100px;
  bottom: -180px;
  width: 540px;
  height: 540px;
  border: 90px solid rgba(200, 255, 90, 0.16);
  border-radius: 50%;
}

.site-footer {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 40px;
  padding: 30px clamp(20px, 5vw, 80px) 42px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.78rem;
}

.site-footer .brand {
  color: var(--ink);
}

.site-footer .brand-mark {
  width: 32px;
  height: 32px;
  border-radius: 10px;
}

.site-footer p {
  margin: 0;
}

.site-footer nav {
  display: flex;
  gap: 24px;
}

@media (max-width: 1100px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 154px;
  }

  .hero-copy {
    max-width: 820px;
  }

  .hero-visual {
    max-width: 900px;
  }

  .trust-strip {
    align-items: flex-start;
    flex-direction: column;
  }

  .trust-strip > div {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .feature-card-main,
  .feature-card-wide {
    grid-column: span 12;
  }

  .feature-card-dark,
  .feature-card-accent {
    grid-column: span 6;
  }

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

  .workflow-intro {
    position: static;
  }

  .contact-card {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .site-footer > span {
    grid-column: 2;
  }
}

@media (max-width: 800px) {
  .site-header {
    min-height: 62px;
  }

  .nav-links {
    position: fixed;
    inset: 0;
    z-index: 1;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    padding: max(112px, calc(84px + env(safe-area-inset-top))) 24px
      max(32px, env(safe-area-inset-bottom));
    overflow-y: auto;
    overscroll-behavior: contain;
    color: var(--ink);
    background: rgba(244, 246, 239, 0.98);
    font-size: clamp(1.35rem, 6vw, 1.9rem);
    font-weight: 780;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-14px);
    transition: opacity 200ms ease, visibility 200ms ease, transform 200ms ease;
  }

  .nav-links.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }

  .nav-links > a:not(.mobile-nav-cta) {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 64px;
    border-bottom: 1px solid rgba(19, 35, 29, 0.12);
  }

  .language-switch {
    position: relative;
    z-index: 2;
    margin-left: auto;
    gap: 7px;
  }

  .site-header .brand {
    position: relative;
    z-index: 2;
  }

  .nav-cta {
    display: none;
  }

  .mobile-nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: 100%;
    min-height: 52px;
    margin-top: 28px;
    padding: 0 16px;
    border-radius: 12px;
    background: var(--ink);
    color: var(--surface);
    font-size: 0.86rem;
    font-weight: 800;
  }

  .menu-toggle {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 40px;
    height: 40px;
    padding: 9px;
    border-radius: 10px;
  }

  .menu-toggle span:not(.sr-only) {
    display: block;
    width: 100%;
    height: 1.5px;
    background: currentColor;
    transition: transform 180ms ease;
  }

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

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

  .hero {
    min-height: auto;
    padding-right: 20px;
    padding-left: 20px;
  }

  .visual-label-top {
    left: -5px;
  }

  .visual-label-bottom {
    right: -5px;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
  }

  .feature-card-main,
  .feature-card-wide {
    grid-template-columns: 1fr;
  }

  .mini-budget {
    margin-top: 20px;
  }

  .use-case-grid {
    grid-template-columns: 1fr;
  }

  .use-case-grid article {
    min-height: 330px;
  }

  .case-symbol {
    margin-bottom: 48px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .site-footer > span {
    grid-column: auto;
  }
}

@media (max-width: 560px) {
  .site-header {
    top: 10px;
    right: 10px;
    left: 10px;
    padding-left: 12px;
  }

  .brand {
    font-size: 0.94rem;
  }

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

  .nav-cta {
    min-height: 40px;
    padding: 0 13px;
    font-size: 0.76rem;
  }

  .language-switch {
    gap: 6px;
  }

  .language-option {
    min-height: 32px;
  }

  .nav-cta span {
    display: none;
  }

  .hero {
    padding-top: 122px;
    padding-bottom: 52px;
  }

  h1 {
    font-size: clamp(2.25rem, 10.8vw, 3.15rem);
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 28px;
  }

  .hero-actions .text-link {
    justify-content: center;
  }

  .store-availability > p {
    text-align: center;
  }

  .store-badges {
    justify-content: center;
  }

  .store-badge {
    min-width: 148px;
  }

  .button {
    width: 100%;
  }

  .hero-proof {
    align-items: flex-start;
  }

  .hero-visual {
    padding: 8px;
    border-radius: 22px;
    transform: none;
  }

  .hero-visual picture {
    border-radius: 16px;
  }

  .visual-label-top {
    top: 24px;
    left: -2px;
    padding: 9px 12px;
    font-size: 0.66rem;
  }

  .visual-label-bottom {
    right: -2px;
    bottom: 22px;
    padding: 11px 14px;
  }

  .trust-strip {
    padding: 22px 20px;
  }

  .trust-strip > div {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    width: 100%;
  }

  .trust-strip span {
    white-space: normal;
    font-size: 0.72rem;
  }

  .section-shell,
  .workflow {
    padding: 72px 20px;
  }

  .section-heading {
    margin-bottom: 34px;
  }

  .section-heading h2,
  .workflow h2,
  .contact h2 {
    font-size: clamp(2.25rem, 12vw, 3.5rem);
  }

  .feature-card-main,
  .feature-card-dark,
  .feature-card-accent,
  .feature-card-wide {
    grid-column: span 12;
  }

  .feature-card {
    min-height: 340px;
    padding: 24px;
    border-radius: 20px;
  }

  .feature-icon {
    margin-bottom: 42px;
  }

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

  .feature-card-wide {
    gap: 0;
  }

  .chart {
    min-height: 180px;
    padding-right: 4px;
    padding-left: 4px;
  }

  .steps li {
    grid-template-columns: 48px 1fr;
    gap: 14px;
    padding: 32px 0;
  }

  .contact {
    padding-top: 0;
  }

  .contact-card {
    padding: 34px 24px;
    border-radius: 24px;
  }

  .site-footer {
    padding: 28px 20px 36px;
  }

  .site-footer nav {
    flex-wrap: wrap;
    gap: 16px;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
