:root {
  color-scheme: light;
  --bg: #f2f5f8;
  --surface: rgba(255, 255, 255, 0.84);
  --surface-strong: #ffffff;
  --surface-soft: #edf3f6;
  --line: rgba(14, 24, 36, 0.1);
  --line-strong: rgba(14, 24, 36, 0.18);
  --text: #12202c;
  --muted: #556574;
  --accent: #0d6c74;
  --accent-strong: #0b4b6b;
  --accent-soft: rgba(13, 108, 116, 0.12);
  --shadow: 0 24px 70px rgba(17, 37, 55, 0.12);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Aptos, "Segoe UI Variable", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(13, 108, 116, 0.18), transparent 30%),
    radial-gradient(circle at 85% 15%, rgba(11, 75, 107, 0.16), transparent 20%),
    linear-gradient(180deg, #f8fbfd 0%, var(--bg) 45%, #e8eef3 100%);
}

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

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

button,
a.button {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 20;
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--accent-strong);
  color: #ffffff;
  transition: top 0.2s ease;
}

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

.site-shell {
  min-height: 100vh;
}

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

.section {
  padding: 40px 0;
  scroll-margin-top: 120px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  padding: 18px 0;
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 22px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  background: rgba(248, 251, 253, 0.82);
  box-shadow: 0 10px 35px rgba(18, 32, 44, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-mark {
  display: block;
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(18, 32, 44, 0.12);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-text strong {
  font-size: 0.98rem;
}

.brand-text span {
  color: var(--muted);
  font-size: 0.82rem;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex: 1;
  font-size: 0.95rem;
  color: var(--muted);
}

.site-nav a {
  position: relative;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.18s ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  flex-wrap: wrap;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 10px 24px rgba(17, 37, 55, 0.06);
}

.language-switcher a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition:
    background-color 0.18s ease,
    color 0.18s ease,
    transform 0.18s ease;
}

.language-switcher a:hover,
.language-switcher a:focus-visible {
  color: var(--text);
  background: rgba(13, 108, 116, 0.08);
}

.language-switcher a[aria-current="page"] {
  background: linear-gradient(135deg, rgba(13, 108, 116, 0.18), rgba(11, 75, 107, 0.14));
  color: var(--accent-strong);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease,
    background-color 0.18s ease;
}

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

.button-primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
  color: #ffffff;
  box-shadow: 0 16px 36px rgba(11, 75, 107, 0.22);
}

.button-secondary {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.72);
  color: var(--text);
}

.hero {
  padding: 34px 0 48px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 32px;
  align-items: center;
}

.hero-copy,
.hero-panel,
.info-card,
.feature-card,
.step-card,
.pricing-card,
.screen-card,
.faq-item,
.site-footer,
.header-inner {
  backdrop-filter: blur(14px);
}

.hero-copy {
  padding: 8px 0;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--accent-strong);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
summary {
  font-family: Bahnschrift, "Trebuchet MS", sans-serif;
}

h1 {
  margin: 0;
  max-width: 12ch;
  font-size: clamp(2.8rem, 6vw, 4.8rem);
  line-height: 0.96;
  letter-spacing: -0.04em;
}

.hero-lead,
.section-heading p,
.info-card p,
.feature-card p,
.step-card p,
.pricing-list li,
.faq-item p,
.footer-copy p {
  color: var(--muted);
  line-height: 1.7;
}

.hero-lead {
  margin: 22px 0 0;
  max-width: 60ch;
  font-size: 1.06rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.hero-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.hero-highlights li {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.66);
  color: var(--muted);
  font-size: 0.94rem;
}

.hero-panel {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.54);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(235, 243, 247, 0.82)),
    var(--surface);
  box-shadow: var(--shadow);
}

.hero-visual {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: center;
  justify-content: center;
  min-height: 540px;
  padding: 24px;
  overflow: hidden;
  border-radius: calc(var(--radius-lg) - 4px);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(230, 238, 243, 0.82));
  box-shadow: 0 18px 36px rgba(17, 37, 55, 0.08);
}

.hero-visual-note {
  align-self: flex-start;
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-width: 260px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 16px 32px rgba(17, 37, 55, 0.08);
}

.hero-visual-note strong {
  color: var(--accent-strong);
  font-family: Bahnschrift, "Trebuchet MS", sans-serif;
}

.hero-visual-note span {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.hero-shot {
  width: min(100%, 300px);
  padding: 10px;
  border-radius: 32px;
  background: linear-gradient(180deg, #13283a 0%, #08141d 100%);
  box-shadow: 0 22px 44px rgba(8, 20, 29, 0.22);
}

.hero-shot img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 24px;
}

.phone-frame {
  width: min(100%, 360px);
  margin: 0 auto;
  padding: 14px;
  border-radius: 38px;
  background: linear-gradient(180deg, #13283a 0%, #08141d 100%);
  box-shadow: 0 22px 50px rgba(8, 20, 29, 0.28);
}

.phone-screen {
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 560px;
  padding: 22px 18px 20px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(13, 108, 116, 0.12) 0%, rgba(255, 255, 255, 0.94) 28%),
    #ffffff;
}

.screen-top,
.estimate-row,
.summary-line,
.screen-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.screen-chip,
.screen-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
}

.screen-chip {
  padding: 8px 12px;
  background: var(--accent-soft);
  color: var(--accent-strong);
}

.screen-date {
  color: var(--muted);
  font-size: 0.86rem;
}

.estimate-card,
.summary-card {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--surface-strong);
  box-shadow: 0 10px 22px rgba(17, 37, 55, 0.06);
}

.estimate-title {
  margin: 0 0 14px;
  font-weight: 700;
}

.estimate-row + .estimate-row,
.summary-line + .summary-line {
  margin-top: 12px;
}

.estimate-row span,
.summary-line span,
.screen-footer span:first-child {
  color: var(--muted);
}

.summary-total {
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.summary-total strong {
  font-size: 1.08rem;
}

.screen-footer {
  margin-top: auto;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface-soft);
}

.screen-badge {
  padding: 7px 12px;
  background: rgba(11, 75, 107, 0.1);
  color: var(--accent-strong);
}

.floating-note {
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-width: 200px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 40px rgba(17, 37, 55, 0.1);
}

.floating-note strong {
  color: var(--accent-strong);
  font-family: Bahnschrift, "Trebuchet MS", sans-serif;
}

.floating-note span {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.note-top {
  top: 42px;
  left: -10px;
}

.note-bottom {
  right: -10px;
  bottom: 42px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 24px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.06;
  letter-spacing: -0.03em;
}

.section-heading p {
  margin: 16px 0 0;
}

.audience-grid,
.feature-grid,
.steps-grid,
.screens-grid,
.pricing-grid,
.faq-layout {
  display: grid;
  gap: 18px;
}

.audience-grid,
.feature-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

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

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

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

.info-card,
.feature-card,
.step-card,
.pricing-card,
.screen-card,
.faq-item,
.site-footer {
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 16px 40px rgba(17, 37, 55, 0.06);
}

.info-card,
.feature-card,
.step-card,
.pricing-card,
.screen-card {
  padding: 24px;
}

.info-card h3,
.feature-card h3,
.step-card h3 {
  margin: 0 0 10px;
  font-size: 1.16rem;
}

.info-card p,
.feature-card p,
.step-card p {
  margin: 0;
}

.feature-card,
.step-card,
.pricing-card {
  position: relative;
  overflow: hidden;
}

.feature-index,
.step-number {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 14px;
  background: var(--accent-soft);
  color: var(--accent-strong);
  font-family: Bahnschrift, "Trebuchet MS", sans-serif;
  font-weight: 700;
}

.step-number {
  width: 48px;
  height: 48px;
  font-size: 1.1rem;
}

.pricing-card-highlight {
  background:
    linear-gradient(180deg, rgba(13, 108, 116, 0.1), rgba(255, 255, 255, 0.9)),
    rgba(255, 255, 255, 0.82);
}

.pricing-label {
  margin: 0 0 18px;
  color: var(--accent-strong);
  font-family: Bahnschrift, "Trebuchet MS", sans-serif;
  font-size: 1.22rem;
  font-weight: 700;
}

.pricing-list {
  margin: 0;
  padding-left: 20px;
}

.pricing-list li + li {
  margin-top: 12px;
}

.screen-card {
  margin: 0;
}

.screen-card-real,
.pdf-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(233, 241, 245, 0.92)),
    rgba(255, 255, 255, 0.84);
  box-shadow: 0 16px 40px rgba(17, 37, 55, 0.06);
  backdrop-filter: blur(14px);
}

.screen-media-shell,
.pdf-preview {
  position: relative;
  padding: 16px;
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(13, 108, 116, 0.18), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(235, 243, 247, 0.86));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.screen-media {
  width: min(100%, 290px);
  margin: 0 auto;
  padding: 10px;
  border-radius: 32px;
  background: linear-gradient(180deg, #13283a 0%, #08141d 100%);
  box-shadow: 0 22px 44px rgba(8, 20, 29, 0.22);
}

.screen-media img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 24px;
}

.pdf-sheet {
  aspect-ratio: 210 / 297;
  padding: 10px;
  border-radius: 22px;
  background: linear-gradient(180deg, #fefefe 0%, #f0f4f7 100%);
  box-shadow: 0 20px 36px rgba(17, 37, 55, 0.12);
}

.pdf-sheet img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
  background: #ffffff;
}

.pdf-card-copy {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pdf-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.pdf-card-head h3 {
  margin: 0;
  font-size: 1.14rem;
}

.pdf-card-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.pdf-card-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 11px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-strong);
  font-size: 0.74rem;
  font-weight: 800;
  white-space: nowrap;
}

.pdf-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent-strong);
  font-weight: 700;
}

.pdf-card-link:hover,
.pdf-card-link:focus-visible {
  color: var(--text);
}

.screen-card-showcase {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(233, 241, 245, 0.92)),
    rgba(255, 255, 255, 0.84);
}

.screenshots-heading {
  margin-bottom: 28px;
}

.app-shot {
  position: relative;
  min-height: 400px;
  padding: 14px;
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(13, 108, 116, 0.2), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(235, 243, 247, 0.84));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
  overflow: hidden;
}

.app-shot::after {
  content: "";
  position: absolute;
  inset: auto -16% -34% 36%;
  height: 160px;
  border-radius: 50%;
  background: rgba(13, 108, 116, 0.1);
  filter: blur(16px);
}

.app-shot-frame {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  padding: 10px;
  border-radius: 30px;
  background: linear-gradient(180deg, #112738 0%, #09141d 100%);
  box-shadow: 0 24px 40px rgba(8, 20, 29, 0.2);
}

.app-shot-screen {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 342px;
  height: 100%;
  padding: 14px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(13, 108, 116, 0.12), rgba(255, 255, 255, 0.98) 26%),
    #ffffff;
}

.app-shot-status,
.app-shot-header,
.app-shot-row,
.history-row,
.settings-row,
.app-shot-summary > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.app-shot-status {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 700;
}

.app-shot-header p,
.app-shot-header strong,
.app-shot-search,
.app-shot-chips span,
.app-shot-row span,
.app-shot-row strong,
.app-shot-document span,
.app-shot-summary span,
.app-shot-summary strong,
.history-row span,
.history-row strong,
.settings-row span,
.settings-row strong,
.settings-links span,
.app-shot-footer-note,
.screen-card-copy p {
  margin: 0;
}

.app-shot-header p {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.app-shot-header strong,
.screen-card-copy h3 {
  font-family: Bahnschrift, "Trebuchet MS", sans-serif;
}

.app-shot-header strong {
  display: block;
  margin-top: 4px;
  font-size: 1.02rem;
}

.app-shot-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 11px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-strong);
  font-size: 0.74rem;
  font-weight: 800;
}

.app-shot-search {
  padding: 11px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(237, 243, 246, 0.9);
  color: var(--muted);
  font-size: 0.82rem;
}

.app-shot-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.app-shot-chips span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(11, 75, 107, 0.08);
  color: var(--accent-strong);
  font-size: 0.75rem;
  font-weight: 700;
}

.app-shot-panel,
.app-shot-list-block,
.app-shot-summary,
.settings-list,
.settings-links,
.app-shot-document {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 24px rgba(17, 37, 55, 0.05);
}

.app-shot-row > div,
.history-row > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.app-shot-row strong,
.history-row strong,
.settings-row strong,
.app-shot-summary strong,
.app-shot-document strong {
  font-size: 0.88rem;
}

.app-shot-row span,
.history-row span,
.settings-row span,
.app-shot-document span,
.app-shot-summary span,
.settings-links span,
.app-shot-footer-note,
.screen-card-copy p {
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.5;
}

.app-shot-document strong {
  font-family: Bahnschrift, "Trebuchet MS", sans-serif;
  font-size: 0.94rem;
}

.app-shot-summary {
  gap: 8px;
  background: rgba(237, 243, 246, 0.84);
}

.app-shot-summary-total {
  padding-top: 8px;
  border-top: 1px solid var(--line);
}

.app-shot-summary-total strong {
  font-size: 0.96rem;
}

.app-shot-list-block {
  gap: 12px;
}

.history-row + .history-row {
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.settings-list {
  gap: 8px;
}

.settings-row {
  padding: 9px 0;
  border-bottom: 1px solid rgba(14, 24, 36, 0.08);
}

.settings-row:last-child {
  border-bottom: 0;
}

.settings-links {
  gap: 8px;
  background: rgba(13, 108, 116, 0.08);
}

.app-shot-footer-note {
  margin-top: auto;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(237, 243, 246, 0.78);
}

.screen-card-copy {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.screen-card-copy h3 {
  margin: 0;
  font-size: 1.14rem;
}

.screen-card-copy p {
  font-size: 0.92rem;
}

.app-shot-list {
  background:
    radial-gradient(circle at top right, rgba(13, 108, 116, 0.22), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(235, 243, 247, 0.86));
}

.app-shot-estimate {
  background:
    radial-gradient(circle at top left, rgba(11, 75, 107, 0.18), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(233, 240, 245, 0.86));
}

.app-shot-history {
  background:
    radial-gradient(circle at 85% 12%, rgba(13, 108, 116, 0.18), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(237, 243, 246, 0.88));
}

.app-shot-settings {
  background:
    radial-gradient(circle at 16% 18%, rgba(11, 75, 107, 0.16), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(236, 242, 246, 0.9));
}

.faq-layout {
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  align-items: start;
}

.faq-heading {
  margin-bottom: 0;
}

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

.faq-item {
  padding: 0;
}

.faq-item summary {
  cursor: pointer;
  padding: 22px 24px;
  list-style: none;
  font-size: 1.06rem;
  font-weight: 700;
}

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

.faq-item p {
  margin: 0;
  padding: 0 24px 22px;
}

.site-footer {
  margin: 28px auto 24px;
  padding: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(233, 241, 245, 0.88)),
    rgba(255, 255, 255, 0.8);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 32px;
}

.footer-title {
  margin: 0 0 8px;
  font-family: Bahnschrift, "Trebuchet MS", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
}

.footer-copy p:last-child {
  margin: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--muted);
}

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

.legal-header {
  position: static;
}

.legal-main {
  padding: 18px 0 40px;
}

.legal-container {
  width: min(calc(100% - 32px), 920px);
}

.legal-card {
  padding: clamp(24px, 4vw, 40px);
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(233, 241, 245, 0.9)),
    rgba(255, 255, 255, 0.84);
  box-shadow: 0 16px 40px rgba(17, 37, 55, 0.08);
  backdrop-filter: blur(14px);
}

.legal-card h1 {
  max-width: none;
  margin-bottom: 12px;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
}

.legal-hero {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 20px;
}

.legal-lead {
  margin: 0;
  max-width: 64ch;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(11, 75, 107, 0.1);
  color: var(--accent-strong);
  font-size: 0.82rem;
  font-weight: 800;
  white-space: nowrap;
}

.translation-note {
  margin: 0 0 24px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(13, 108, 116, 0.08);
  color: var(--muted);
  line-height: 1.7;
}

.legal-section + .legal-section {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.legal-section h2 {
  margin: 0 0 10px;
  font-size: 1.24rem;
}

.legal-section p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.legal-section p + p,
.legal-section ul {
  margin-top: 12px;
}

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

.legal-list li {
  margin-bottom: 10px;
  color: var(--text);
  line-height: 1.6;
}

.legal-back-link {
  white-space: nowrap;
}

.legal-footer {
  margin-top: 0;
}

.not-found-card {
  text-align: center;
}

.not-found-card .eyebrow {
  margin-bottom: 10px;
}

.not-found-card .legal-lead {
  margin: 0 auto;
}

.not-found-actions {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

@media (max-width: 1080px) {
  .site-nav {
    display: none;
  }

  .hero-grid,
  .faq-layout {
    grid-template-columns: 1fr;
  }

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

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

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

  .app-shot {
    min-height: 380px;
  }

  .hero-panel {
    padding: 16px;
  }

  .hero-visual {
    min-height: 0;
  }

  .note-top {
    left: 14px;
  }

  .note-bottom {
    right: 14px;
  }
}

@media (max-width: 760px) {
  .site-header {
    position: static;
  }

  .header-inner,
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .header-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .language-switcher {
    width: 100%;
    justify-content: center;
  }

  .header-cta {
    width: 100%;
  }

  h1 {
    max-width: 100%;
  }

  .hero-panel {
    overflow: hidden;
  }

  .hero-visual {
    min-height: auto;
    padding: 18px;
  }

  .hero-visual-note {
    max-width: none;
  }

  .floating-note {
    position: static;
    max-width: none;
    margin-top: 16px;
  }

  .phone-screen {
    min-height: auto;
  }

  .feature-grid,
  .audience-grid,
  .steps-grid,
  .screens-grid,
  .pdf-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 30px 0;
  }

  .screen-card-showcase,
  .screen-card-real,
  .pdf-card {
    padding: 18px;
  }

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

  .app-shot {
    min-height: auto;
  }

  .app-shot-screen {
    min-height: 0;
  }

  .legal-hero {
    flex-direction: column;
  }

  .legal-back-link {
    width: 100%;
  }
}

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

  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
}
