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

:root {
  --bg: #f8f6f1;
  --bg-soft: #f1ede5;
  --surface: #ffffff;
  --surface-warm: #fffcf5;
  --ink: #1c1917;
  --ink-muted: #57534e;
  --ink-soft: #a8a29e;
  --green: #0d9488;
  --green-deep: #134e4a;
  --mint: #ccfbf1;
  --clay: #f97316;
  --clay-soft: #fff7ed;
  --blue: #6366f1;
  --blue-soft: #ede9fe;
  --border: rgba(28, 25, 23, 0.08);
  --border-strong: rgba(28, 25, 23, 0.14);
  --shadow: 0 20px 64px rgba(15, 118, 110, 0.1);
  --shadow-soft: 0 4px 24px rgba(28, 25, 23, 0.06);
  --max: 1160px;
  --header: 72px;
  --radius: 20px;
  --radius-sm: 12px;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
}

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

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

button {
  font: inherit;
}

.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;
}

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

.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  height: var(--header);
  background: rgba(248, 246, 241, 0.88);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(22px);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.logo img {
  width: 120px;
  height: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--ink-muted);
  font-size: 0.92rem;
  font-weight: 600;
}

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

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

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--ink);
  background: var(--surface);
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 99px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  position: absolute;
}

.menu-toggle span {
  position: relative;
}

.menu-toggle span::before {
  transform: translateY(-6px);
}

.menu-toggle span::after {
  transform: translateY(6px);
}

.menu-toggle.is-open span {
  background: transparent;
}

.menu-toggle.is-open span::before {
  background: var(--ink);
  transform: rotate(45deg);
}

.menu-toggle.is-open span::after {
  background: var(--ink);
  transform: rotate(-45deg);
}

.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header);
  left: 0;
  right: 0;
  z-index: 19;
  padding: 18px 16px 24px;
  background: rgba(248, 246, 241, 0.98);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.mobile-nav.is-open {
  display: grid;
  gap: 10px;
}

.mobile-nav a {
  padding: 12px 10px;
  color: var(--ink-muted);
  font-weight: 650;
}

.language-switcher,
.mobile-language-switcher {
  display: inline-flex;
  align-items: center;
  position: relative;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
}

.language-switcher::after,
.mobile-language-switcher::after {
  content: "";
  position: absolute;
  right: 13px;
  width: 7px;
  height: 7px;
  border-right: 2px solid var(--green-deep);
  border-bottom: 2px solid var(--green-deep);
  transform: translateY(-2px) rotate(45deg);
  pointer-events: none;
}

.mobile-language-switcher {
  justify-self: start;
  margin-top: 6px;
}

.language-select {
  min-width: 132px;
  height: 38px;
  appearance: none;
  padding: 0 34px 0 14px;
  border: 0;
  border-radius: 999px;
  color: var(--green-deep);
  background: transparent;
  font-size: 0.8rem;
  font-weight: 800;
  cursor: pointer;
  outline: none;
  transition: color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.language-select:hover,
.language-select:focus-visible {
  color: var(--green-deep);
  background: #fff;
  box-shadow: 0 7px 18px rgba(36, 55, 50, 0.1);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 22px;
  border: 1.5px solid transparent;
  border-radius: 999px;
  font-size: 0.96rem;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease, background 160ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, #0d9488, #14b8a6);
  box-shadow: 0 8px 24px rgba(13, 148, 136, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #0f766e, #0d9488);
  box-shadow: 0 12px 32px rgba(13, 148, 136, 0.4);
}

.btn-secondary {
  color: var(--green-deep);
  background: var(--surface);
  border-color: var(--border-strong);
  box-shadow: 0 1px 4px rgba(28, 25, 23, 0.06);
}

.btn-secondary:hover {
  background: #fff;
  box-shadow: var(--shadow-soft);
  border-color: rgba(13, 148, 136, 0.3);
}

.hero {
  position: relative;
  min-height: 96svh;
  padding: calc(var(--header) + 52px) 0 44px;
  overflow: hidden;
  background: var(--green-deep);
  display: flex;
  align-items: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(19, 78, 74, 0.9) 0%, rgba(19, 78, 74, 0.66) 42%, rgba(19, 78, 74, 0.16) 76%),
    linear-gradient(180deg, rgba(19, 78, 74, 0.18), rgba(19, 78, 74, 0.42));
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  height: 34%;
  background: linear-gradient(180deg, rgba(248, 246, 241, 0), var(--bg));
  pointer-events: none;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 56% center;
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.hero-visual {
  width: min(100%, 900px);
  margin-top: 48px;
}

.product-wall {
  position: relative;
  width: 100%;
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  grid-template-areas:
    "mail app"
    "reminder app";
  gap: 18px;
}

.hero-visual {
  position: relative;
  padding: 18px;
  border: 1px solid rgba(23, 32, 42, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 30px 90px rgba(19, 78, 74, 0.12);
  backdrop-filter: blur(18px);
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 6px;
  pointer-events: none;
}

.app-panel,
.mail-panel,
.reminder-panel {
  border: 1px solid rgba(23, 32, 42, 0.1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.mail-panel {
  grid-area: mail;
  padding: 18px;
}

.panel-label {
  color: var(--ink-soft);
  font-size: 0.76rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mail-row {
  display: grid;
  gap: 6px;
  margin-top: 16px;
  padding: 14px;
  border-radius: var(--radius-sm);
  background: var(--surface-warm);
  border: 1px solid rgba(224, 113, 79, 0.16);
}

.mail-row strong,
.timeline-item strong {
  color: var(--ink);
  font-size: 0.95rem;
}

.mail-row span,
.timeline-item span {
  color: var(--ink-muted);
  font-size: 0.86rem;
}

.app-panel {
  grid-area: app;
  padding: 20px;
  min-height: 454px;
}

.app-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.address-pill {
  padding: 8px 10px;
  border-radius: 999px;
  color: var(--green-deep);
  background: var(--mint);
  font-size: 0.78rem;
  font-weight: 750;
}

.timeline {
  display: grid;
  gap: 12px;
}

.timeline-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2px 4px;
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--green-deep);
  opacity: 0.55;
}

.timeline-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 14px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--border);
}

.timeline-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--green);
}

.timeline-dot.warn {
  background: var(--clay);
}

.timeline-amount {
  color: var(--green-deep);
  font-weight: 800;
  font-size: 0.92rem;
}

.reminder-panel {
  grid-area: reminder;
  padding: 18px;
  align-self: end;
  background: linear-gradient(135deg, #134e4a, #4268b0);
  color: #f7fbfb;
}

.reminder-panel .panel-label,
.reminder-panel span {
  color: rgba(247, 251, 251, 0.78);
}

.reminder-panel strong {
  display: block;
  margin-top: 10px;
  font-size: 1.1rem;
  line-height: 1.3;
}

.hero-content {
  max-width: 660px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
  padding: 8px 16px;
  border: 1.5px solid rgba(13, 148, 136, 0.2);
  border-radius: 999px;
  color: var(--green-deep);
  background: rgba(204, 251, 241, 0.6);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.2);
}

h1 {
  max-width: 720px;
  color: var(--ink);
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  font-weight: 800;
}

.hero h1 {
  margin-bottom: 22px;
  color: #fff;
  text-shadow: 0 2px 24px rgba(19, 78, 74, 0.24);
}

.hero-copy {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.06rem, 2vw, 1.18rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 12px;
  margin-top: 36px;
}

.hero .btn-secondary {
  background: rgba(255, 255, 255, 0.88);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 20px;
  margin-top: 36px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.88rem;
  font-weight: 600;
}

.trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.trust-row span::before {
  content: "✓";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 900;
}

/* Floating visual card in the hero section */
.hero-floating {
  margin-top: 56px;
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.float-card {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(28, 25, 23, 0.07), 0 12px 40px rgba(13, 148, 136, 0.06);
  font-size: 0.92rem;
  color: var(--ink);
  font-weight: 600;
  white-space: nowrap;
}

.float-card-icon {
  font-size: 1.4rem;
  line-height: 1;
}

.float-card-label {
  color: var(--ink-muted);
  font-size: 0.78rem;
  font-weight: 500;
  margin-top: 1px;
}

.float-card-value {
  color: var(--ink);
  font-weight: 700;
  font-size: 0.95rem;
}

.section {
  padding: 112px 0;
}

.section.alt {
  background: linear-gradient(180deg, var(--surface) 0%, #f9fffe 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-header {
  max-width: 740px;
  margin-bottom: 52px;
}

.section-kicker {
  display: inline-block;
  margin-bottom: 14px;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--clay-soft);
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

h2 {
  color: var(--ink);
  font-size: clamp(2rem, 5vw, 3.1rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 800;
}

.section-header p {
  margin-top: 18px;
  color: var(--ink-muted);
  font-size: 1.1rem;
  line-height: 1.7;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.feature-card,
.step-card,
.legal-card {
  padding: 32px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 2px 8px rgba(28, 25, 23, 0.04), 0 12px 40px rgba(28, 25, 23, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.feature-card:hover,
.step-card:hover {
  transform: translateY(-4px);
  border-color: rgba(13, 148, 136, 0.2);
  box-shadow: 0 8px 24px rgba(28, 25, 23, 0.06), 0 28px 64px rgba(13, 148, 136, 0.1);
}

.feature-icon {
  display: inline-block;
  margin-bottom: 20px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.6;
}

.feature-card h3,
.step-card h3,
.legal-card h3 {
  color: var(--ink);
  font-size: 1.18rem;
  font-weight: 700;
  line-height: 1.3;
}

.feature-card p,
.step-card p,
.legal-card p {
  margin-top: 10px;
  color: var(--ink-muted);
  line-height: 1.65;
}

.workflow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.editorial-section {
  overflow: hidden;
  border-top: 1px solid var(--border);
}

.editorial-section--alt {
  background: linear-gradient(180deg, var(--surface) 0%, #f9fffe 100%);
}

.editorial-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 540px;
}

.editorial-layout--img-right .editorial-media {
  order: 2;
}

.editorial-layout--img-right .editorial-text {
  order: 1;
}

.editorial-media {
  position: relative;
  overflow: hidden;
}

.editorial-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 30%;
  display: block;
}

.editorial-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 72px;
  background: var(--surface);
}

.editorial-section--alt .editorial-text {
  background: linear-gradient(160deg, var(--surface) 0%, #f4fffe 100%);
}

.editorial-text h2 {
  margin-top: 14px;
  max-width: 480px;
}

.editorial-text p {
  margin-top: 18px;
  color: var(--ink-muted);
  font-size: 1.08rem;
  line-height: 1.72;
  max-width: 440px;
}

.step-card {
  position: relative;
  min-height: 220px;
}

.step-number {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 22px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, #0d9488, #6366f1);
  font-size: 0.9rem;
  font-weight: 800;
  box-shadow: 0 4px 14px rgba(13, 148, 136, 0.3);
}

.privacy-band {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 44px;
  align-items: center;
}

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

.privacy-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  padding: 20px;
  border-radius: var(--radius-sm);
  border: 1.5px solid rgba(13, 148, 136, 0.14);
  background: linear-gradient(135deg, rgba(204, 251, 241, 0.35), rgba(237, 233, 254, 0.2));
  transition: border-color 160ms ease, background 160ms ease;
}

.privacy-item:hover {
  border-color: rgba(13, 148, 136, 0.28);
  background: linear-gradient(135deg, rgba(204, 251, 241, 0.55), rgba(237, 233, 254, 0.3));
}

.check {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, #0d9488, #14b8a6);
  font-size: 0.8rem;
  font-weight: 900;
  box-shadow: 0 3px 8px rgba(13, 148, 136, 0.25);
  flex-shrink: 0;
}

.privacy-item strong {
  display: block;
  color: var(--ink);
  font-weight: 700;
}

.privacy-item span {
  display: block;
  color: var(--ink-muted);
  margin-top: 4px;
  line-height: 1.6;
}

.cta-band {
  padding: 64px;
  border-radius: var(--radius);
  color: #fff;
  background: linear-gradient(140deg, #134e4a 0%, #0d9488 55%, #6366f1 100%);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 32px;
  box-shadow: 0 24px 80px rgba(13, 148, 136, 0.25);
}

.cta-band h2 {
  color: #fff;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
}

.cta-band p {
  max-width: 580px;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.06rem;
  line-height: 1.65;
}

.cta-band .btn-primary {
  color: var(--green-deep);
  background: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.cta-band .btn-primary:hover {
  background: #f0fafa;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.footer {
  padding: 54px 0 32px;
  color: var(--ink-muted);
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 34px;
  margin-bottom: 38px;
}

.footer-logo {
  width: 100px;
  margin-bottom: 14px;
}

.footer-brand {
  display: grid;
  justify-items: start;
  gap: 14px;
}

.footer-language {
  margin-top: 6px;
}

.footer p,
.footer a {
  color: var(--ink-muted);
  font-size: 0.92rem;
}

.footer h3 {
  margin-bottom: 12px;
  color: var(--green-deep);
  font-size: 0.88rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
  font-size: 0.88rem;
}

.legal-main {
  padding: calc(var(--header) + 56px) 0 72px;
}

.legal-layout {
  width: min(100% - 32px, 840px);
  margin: 0 auto;
}

.legal-layout h1 {
  font-size: clamp(2.25rem, 6vw, 4rem);
  margin-bottom: 12px;
}

.legal-kicker {
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.legal-meta {
  color: var(--ink-muted);
  margin-bottom: 12px;
}

.legal-lead {
  color: var(--ink-muted);
  font-size: 1.08rem;
  margin-bottom: 28px;
}

.legal-card {
  display: grid;
  gap: 22px;
}

.legal-card section,
.legal-card p,
.legal-card li {
  word-break: break-word;
  overflow-wrap: break-word;
  min-width: 0;
}

.legal-card section {
  padding-bottom: 22px;
  border-bottom: 1px solid var(--border);
}

.legal-card section:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.legal-card ul {
  margin: 10px 0 0 20px;
  color: var(--ink-muted);
}

.legal-card li + li {
  margin-top: 6px;
}

.legal-document {
  gap: 26px;
}

.legal-document h2 {
  color: var(--ink);
  font-size: 1.28rem;
  line-height: 1.35;
  margin-bottom: 10px;
}

.legal-document h3 {
  font-size: 1rem;
  margin-top: 18px;
}

.legal-document h2 + h3 {
  margin-top: 0;
}

.legal-document a {
  color: var(--green-deep);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(13, 148, 136, 0.35);
  text-underline-offset: 3px;
}

.legal-table-wrap {
  margin-top: 16px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--border);
  border-radius: 8px;
  max-width: 100%;
  /* Scroll-shadow hint: fades out right edge until scrolled fully */
  background:
    linear-gradient(to right, var(--surface) 30%, transparent) center left / 40px 100% no-repeat,
    linear-gradient(to left, var(--surface) 30%, transparent) center right / 40px 100% no-repeat,
    linear-gradient(to right, rgba(28,25,23,0.08), transparent) center left / 16px 100% no-repeat,
    linear-gradient(to left, rgba(28,25,23,0.08), transparent) center right / 16px 100% no-repeat;
  background-attachment: local, local, scroll, scroll;
}

.legal-table {
  width: 100%;
  min-width: 920px;
  border-collapse: collapse;
  color: var(--ink-muted);
  font-size: 0.88rem;
  line-height: 1.55;
}

.legal-table th,
.legal-table td {
  padding: 13px 14px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--border);
}

.legal-table th {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.48);
  font-weight: 800;
}

.legal-table tr:last-child td {
  border-bottom: 0;
}

.legal-address {
  color: var(--ink-muted);
  font-style: normal;
  line-height: 1.7;
  margin: 12px 0;
}

@media (max-width: 980px) {
  .nav,
  .header-actions {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .hero {
    min-height: auto;
    padding-top: calc(var(--header) + 52px);
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(19, 78, 74, 0.78) 0%, rgba(19, 78, 74, 0.74) 54%, rgba(19, 78, 74, 0.36) 100%),
      linear-gradient(90deg, rgba(19, 78, 74, 0.5), rgba(19, 78, 74, 0.12));
  }

  .hero-media img {
    object-position: 42% center;
  }

  .hero-content {
    max-width: 760px;
  }

  .hero-visual {
    width: min(100%, 720px);
  }

  .product-wall {
    grid-template-columns: 1fr;
    grid-template-areas:
      "mail"
      "app"
      "reminder";
  }

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

  .feature-grid,
  .workflow,
  .editorial-layout,
  .privacy-band,
  .cta-band,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .editorial-media {
    min-height: 340px;
  }

  .editorial-text {
    padding: 52px 40px;
  }

  .cta-band {
    padding: 40px;
  }
}

@media (max-width: 620px) {
  .container,
  .legal-layout {
    width: min(100% - 24px, var(--max));
  }

  .logo img {
    width: 105px;
  }

  .hero {
    min-height: auto;
    padding-bottom: 52px;
  }

  .hero::before {
    background: linear-gradient(180deg, rgba(19, 78, 74, 0.82) 0%, rgba(19, 78, 74, 0.72) 62%, rgba(19, 78, 74, 0.4) 100%);
  }

  .hero-layout,
  .hero-content {
    align-items: center;
    text-align: center;
  }

  .hero-media img {
    object-position: 44% center;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .trust-row {
    gap: 12px;
    flex-direction: column;
    align-items: center;
  }

  .editorial-media {
    min-height: 280px;
    order: -1 !important;
  }

  .editorial-text {
    order: 0 !important;
    padding: 40px 28px;
  }

  .hero-visual {
    margin-top: 34px;
    padding: 10px;
  }

  .product-wall {
    gap: 10px;
  }

  .mail-panel,
  .app-panel,
  .reminder-panel {
    padding: 14px;
  }

  .mail-row:nth-of-type(3) {
    display: none;
  }

  .timeline-section:nth-of-type(4),
  .timeline-item:nth-of-type(5) {
    display: none;
  }

  .hero-floating {
    display: none;
  }

  .section {
    padding: 68px 0;
  }

  .feature-card,
  .step-card,
  .legal-card {
    padding: 24px;
  }

  .timeline-item {
    grid-template-columns: auto 1fr;
  }

  .timeline-amount {
    grid-column: 2;
  }

  .footer-bottom {
    flex-direction: column;
  }

  h1 {
    font-size: clamp(2.2rem, 10vw, 3rem);
  }
}
