:root {
  color-scheme: light;
  --bg: #fffdf9;
  --bg-warm: #fff7ec;
  --surface: rgba(255, 255, 255, 0.88);
  --surface-strong: #ffffff;
  --surface-soft: #fff8ed;
  --line: rgba(82, 55, 24, 0.14);
  --line-strong: rgba(82, 55, 24, 0.22);
  --text: #0b1020;
  --muted: #5e6472;
  --muted-strong: #3f4654;
  --accent: #f4a000;
  --accent-deep: #b87400;
  --accent-soft: #fff1c7;
  --blue: #1677ff;
  --blue-soft: #eaf4ff;
  --green: #15955b;
  --green-soft: #e9f8ef;
  --red: #e9435a;
  --red-soft: #fff0f3;
  --shadow: 0 28px 80px rgba(74, 50, 19, 0.14);
  --shadow-soft: 0 18px 44px rgba(74, 50, 19, 0.09);
  --font: "Manrope", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --max: 1216px;
  --anchor-offset: 96px;
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--anchor-offset);
}

[id] {
  scroll-margin-top: var(--anchor-offset);
}

[id][aria-hidden="true"] {
  display: block;
}

body {
  margin: 0;
  background:
    linear-gradient(180deg, #ffffff 0%, var(--bg) 36%, var(--bg-warm) 100%);
  color: var(--text);
  font-family: var(--font);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

a { color: inherit; }
img, video, svg { display: block; max-width: 100%; }
button, select { font: inherit; }
.site-shell { min-height: 100vh; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(82, 55, 24, 0.09);
  backdrop-filter: blur(22px) saturate(140%);
}

.site-header__inner,
.section,
.footer,
.page-hero,
.guide-layout,
.support-layout {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  min-width: max-content;
  color: var(--text);
  text-decoration: none;
}

.brand__mark {
  width: 45px;
  height: 45px;
  flex: 0 0 auto;
  border-radius: 13px;
  background: url("./images/app-icon-web.png") center / cover no-repeat;
  box-shadow: 0 12px 28px rgba(244, 160, 0, 0.26);
}

.brand__mark::before,
.brand__mark::after { display: none; }
.brand__text { display: grid; gap: 1px; }

.brand__name {
  font-size: 1.15rem;
  font-weight: 900;
}

.brand__tag {
  color: var(--muted);
  font-size: 0.79rem;
  font-weight: 650;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 8px;
}

.nav a,
.language-select,
.mobile-menu summary {
  min-height: 40px;
  border-radius: 999px;
  color: var(--muted-strong);
  font-size: 0.9rem;
  font-weight: 760;
}

.nav a {
  display: inline-flex;
  align-items: center;
  padding: 0 11px;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.nav a:hover,
.nav a:focus-visible,
.mobile-menu summary:hover,
.mobile-menu summary:focus-visible {
  background: rgba(244, 160, 0, 0.1);
  color: var(--text);
}

.nav .cta-link,
.button--primary {
  background: linear-gradient(135deg, #ffd86b 0%, var(--accent) 58%, #de8d00 100%);
  color: #231705;
  box-shadow: 0 14px 30px rgba(244, 160, 0, 0.22);
}

.language-select {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.78);
  padding: 0 36px 0 13px;
  cursor: pointer;
}

.language-select:focus-visible,
.button:focus-visible,
.store-badge:focus-visible,
.nav a:focus-visible,
.mobile-menu summary:focus-visible {
  outline: 3px solid rgba(22, 119, 255, 0.28);
  outline-offset: 3px;
}

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

.mobile-menu summary {
  display: inline-flex;
  align-items: center;
  padding: 0 13px;
  cursor: pointer;
  list-style: none;
}

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

.mobile-menu__panel {
  position: absolute;
  right: 0;
  top: calc(100% + 12px);
  width: min(300px, calc(100vw - 32px));
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow);
  display: grid;
  gap: 4px;
}

.mobile-menu__panel a {
  display: block;
  padding: 11px 12px;
  border-radius: 14px;
  color: var(--text);
  text-decoration: none;
  font-weight: 780;
}

.mobile-menu__panel a:hover,
.mobile-menu__panel a:focus-visible {
  background: var(--accent-soft);
}

.mobile-menu__panel .mobile-menu__cta {
  background: var(--text);
  color: #fffaf0;
}

.mobile-menu__panel .mobile-menu__cta:hover,
.mobile-menu__panel .mobile-menu__cta:focus-visible {
  background: var(--accent);
  color: var(--text);
}

.mobile-language {
  display: none;
}

.button,
.store-badge,
.ios-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border-radius: 13px;
  text-decoration: none;
  font-weight: 850;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button {
  gap: 9px;
  max-width: 100%;
  min-width: 0;
  padding: 0 21px;
  border: 1px solid transparent;
  text-align: center;
  overflow-wrap: anywhere;
}

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

.button--secondary {
  background: rgba(255, 255, 255, 0.86);
  border-color: var(--line);
  color: var(--text);
  box-shadow: 0 12px 28px rgba(74, 50, 19, 0.08);
}

.button--quiet {
  min-height: 44px;
  border-color: rgba(22, 119, 255, 0.22);
  color: var(--blue);
  background: rgba(234, 244, 255, 0.72);
}

.store-badge {
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: 0 16px 32px rgba(17, 24, 39, 0.14);
}

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

.store-badge--compact img { width: 172px; }

.ios-badge {
  gap: 12px;
  min-width: 236px;
  padding: 0 18px;
  border: 1px solid rgba(10, 16, 32, 0.14);
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
  box-shadow: 0 16px 32px rgba(17, 24, 39, 0.1);
}

.ios-badge svg {
  width: 25px;
  height: 25px;
}

.ios-badge span {
  display: grid;
  line-height: 1.15;
  text-align: left;
}

.ios-badge small {
  color: var(--muted);
  font-size: 0.73rem;
  font-weight: 760;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 36px 0 30px;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(82, 55, 24, 0.16), transparent);
}

.hero__inner {
  width: min(calc(100% - 32px), calc(var(--max) + 64px));
  min-height: 640px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(430px, 1.12fr);
  gap: clamp(30px, 5vw, 72px);
  align-items: center;
}

.hero h1,
.page-hero h1 {
  margin: 0;
  font-family: var(--font);
  font-weight: 900;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 690px;
  font-size: clamp(3.25rem, 5vw, 4.85rem);
  line-height: 0.98;
}

.hero .lead,
.page-hero .lead {
  color: var(--muted-strong);
  font-size: 1.08rem;
  line-height: 1.72;
}

.hero .lead {
  max-width: 640px;
  margin: 22px 0 28px;
}

.hero__actions,
.page-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 22px;
}

.hero__microcopy {
  margin: -7px 0 22px;
  color: var(--muted);
  font-size: 0.93rem;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 4px;
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 39px;
  padding: 0 12px;
  color: var(--muted-strong);
  font-size: 0.92rem;
  font-weight: 720;
}

.trust-pill::before,
.language-chip::before {
  content: "";
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: var(--green-soft);
  border: 1px solid rgba(21, 149, 91, 0.16);
  box-shadow: inset 0 0 0 6px rgba(21, 149, 91, 0.1);
}

.trust-pill:nth-child(2)::before { background: var(--blue-soft); border-color: rgba(22, 119, 255, 0.16); box-shadow: inset 0 0 0 6px rgba(22, 119, 255, 0.1); }
.trust-pill:nth-child(3)::before { background: var(--accent-soft); border-color: rgba(244, 160, 0, 0.16); box-shadow: inset 0 0 0 6px rgba(244, 160, 0, 0.13); }
.trust-pill:nth-child(4)::before { background: #edf8e8; border-color: rgba(75, 148, 28, 0.16); box-shadow: inset 0 0 0 6px rgba(75, 148, 28, 0.1); }

.hero__visual {
  position: relative;
  min-height: 560px;
  display: grid;
  align-items: center;
  justify-items: center;
  isolation: isolate;
}

.hero__visual::before {
  content: "";
  position: absolute;
  inset: 12% 2% 4% 8%;
  z-index: -1;
  border-radius: 42px;
  background:
    linear-gradient(135deg, rgba(255, 241, 199, 0.86), rgba(234, 244, 255, 0.78) 62%, rgba(233, 248, 239, 0.68));
  transform: rotate(-1deg);
}

.phone-stage {
  position: relative;
  width: min(690px, 100%);
  min-height: 520px;
  display: grid;
  align-items: center;
  justify-items: center;
}

.hero-device,
.tablet-device,
.guide-demo {
  overflow: hidden;
  border: 1px solid rgba(11, 16, 32, 0.13);
  background: var(--surface-strong);
  box-shadow: var(--shadow);
}

.hero-device {
  position: absolute;
  left: 9%;
  bottom: 5%;
  z-index: 3;
  width: min(260px, 42%);
  padding: 14px;
  border-radius: 38px;
  transform: rotate(-1deg);
}

.tablet-device {
  position: absolute;
  right: 1%;
  top: 16%;
  z-index: 2;
  width: min(510px, 78%);
  padding: 14px;
  border-radius: 28px;
  transform: rotate(1deg);
}

.hero-device video,
.tablet-device img,
.feature-media img,
.feature-media video,
.guide-demo video,
.guide-demo img {
  width: 100%;
  border-radius: 22px;
  background: #fffaf1;
}

.tablet-device img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
}

.hero-note {
  position: absolute;
  left: 2%;
  top: 16%;
  z-index: 4;
  width: min(286px, 43%);
  padding: 17px 18px;
  border-radius: 18px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--accent);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
}

.hero-note strong {
  display: block;
  margin-bottom: 6px;
  color: var(--accent-deep);
  font-size: 0.86rem;
}

.hero-note p {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.55;
}

.hero-flow {
  position: absolute;
  right: 6%;
  bottom: 4%;
  z-index: 5;
  display: inline-flex;
  flex-wrap: wrap;
  gap: 7px;
  padding: 7px;
  border-radius: 17px;
  background: rgba(11, 16, 32, 0.9);
  box-shadow: 0 18px 34px rgba(11, 16, 32, 0.18);
}

.hero-flow span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 11px;
  background: rgba(255, 241, 199, 0.98);
  color: #271b07;
  font-size: 0.76rem;
  font-weight: 850;
}

.section { padding: 84px 0; }
.section--tight { padding-top: 48px; padding-bottom: 48px; }

.section-kicker,
.page-hero__eyebrow,
.eyebrow {
  color: var(--accent-deep);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.79rem;
  font-weight: 900;
}

.section-kicker { margin-bottom: 10px; }
.eyebrow { display: inline-block; margin-bottom: 14px; }

.section h2,
.guide-main h2,
.support-main h2 {
  margin: 0 0 14px;
  font-size: clamp(1.92rem, 3.25vw, 3rem);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: 0;
}

.section__intro {
  max-width: 760px;
  color: var(--muted-strong);
  font-size: 1.03rem;
}

.availability-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-soft);
}

.platform-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 18px;
  padding: 30px;
  align-items: start;
}

.platform-card + .platform-card {
  border-left: 1px solid var(--line);
}

.platform-card__icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: var(--green-soft);
  color: var(--green);
}

.platform-card--ios .platform-card__icon {
  background: rgba(11, 16, 32, 0.06);
  color: #404653;
}

.platform-card h3 {
  margin: 0 0 7px;
  font-size: 1.35rem;
  line-height: 1.15;
  font-weight: 900;
}

.platform-card p {
  margin: 0 0 12px;
  color: var(--muted);
}

.feature-mosaic {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
  gap: 18px;
  margin-top: 32px;
  align-items: stretch;
}

.feature-mosaic__intro {
  padding: 28px;
  border: 1px solid rgba(244, 160, 0, 0.2);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(255, 248, 237, 0.95), rgba(255, 255, 255, 0.78));
}

.feature-mosaic__intro h3,
.guide-card h3,
.step-card h3,
.support-card h3,
.faq-item h3,
.list-block h3,
.feature-copy h3,
.language-card h3 {
  margin: 0 0 9px;
  font-size: 1.3rem;
  line-height: 1.14;
  font-weight: 900;
}

.feature-mosaic__intro p,
.guide-card p,
.step-card p,
.support-card p,
.faq-item p,
.list-block p,
.feature-copy p,
.language-card p,
.callout p {
  margin: 0 0 12px;
  color: var(--muted);
}

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

.workflow-item,
.guide-card,
.step-card,
.support-card,
.faq-item,
.list-block,
.callout,
.language-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: 0 12px 34px rgba(74, 50, 19, 0.06);
}

.workflow-item {
  min-height: 164px;
  padding: 22px;
}

.workflow-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  border-radius: 14px;
  background: var(--blue-soft);
  color: var(--blue);
}

.workflow-item:nth-child(2) .workflow-icon,
.workflow-item:nth-child(5) .workflow-icon { background: var(--accent-soft); color: var(--accent-deep); }
.workflow-item:nth-child(3) .workflow-icon,
.workflow-item:nth-child(6) .workflow-icon { background: var(--green-soft); color: var(--green); }
.workflow-item:nth-child(4) .workflow-icon { background: var(--red-soft); color: var(--red); }

.workflow-item strong {
  display: block;
  margin-bottom: 5px;
  font-weight: 900;
}

.workflow-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.language-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 22px;
  margin-top: 28px;
  align-items: stretch;
}

.language-card {
  padding: 26px;
}

.language-chips,
.pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.language-chip,
.pill {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 13px;
  border-radius: 999px;
  border: 1px solid rgba(82, 55, 24, 0.12);
  background: rgba(255, 255, 255, 0.86);
  color: var(--muted-strong);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 720;
}

.language-chip { gap: 9px; }

.feature-runway {
  display: grid;
  gap: 26px;
  margin-top: 36px;
}

.feature-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 248, 237, 0.64));
  box-shadow: var(--shadow-soft);
}

.feature-strip--reverse .feature-copy { order: 2; }
.feature-strip--reverse .feature-media { order: 1; }

.feature-media {
  position: relative;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: var(--surface-strong);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.55);
}

.feature-media img,
.feature-media video {
  width: min(320px, 100%);
  margin: 0 auto;
  border-radius: 22px;
  box-shadow: 0 16px 40px rgba(74, 50, 19, 0.12);
}

.media-caption {
  margin-top: 12px;
  color: var(--muted);
  text-align: center;
  font-size: 0.9rem;
}

.feature-list,
.simple-list,
.step-list {
  list-style: none;
  display: grid;
  gap: 12px;
  margin: 16px 0 0;
  padding: 0;
}

.feature-list li,
.simple-list li,
.step-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
}

.feature-list li::before,
.simple-list li::before,
.step-list li::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-top: 10px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(244, 160, 0, 0.14);
}

.grid-two,
.grid-three,
.support-grid {
  display: grid;
  gap: 22px;
}

.grid-two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-three,
.support-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.guide-card,
.step-card,
.support-card,
.faq-item,
.list-block,
.callout {
  min-width: 0;
  padding: 24px;
}

.callout strong,
.support-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--accent-deep);
}

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

.step-card__number {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-deep);
  font-weight: 900;
}

.page-hero {
  padding: 86px 0 38px;
}

.page-hero h1 {
  max-width: 940px;
  margin-top: 12px;
  font-size: clamp(2.35rem, 4.4vw, 3.85rem);
  line-height: 1.05;
}

.page-hero .lead {
  max-width: 760px;
  margin: 18px 0 0;
}

.page-hero__actions {
  margin-top: 24px;
}

.guide-layout,
.support-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 28px;
  padding-bottom: 84px;
}

.guide-sidebar {
  position: sticky;
  top: 94px;
  align-self: start;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.8);
}

.guide-sidebar h2 {
  margin: 0 0 12px;
  font-size: 1rem;
}

.guide-sidebar a {
  display: block;
  padding: 10px 12px;
  border-radius: 12px;
  color: var(--muted-strong);
  text-decoration: none;
  font-weight: 720;
}

.guide-sidebar a:hover,
.guide-sidebar a:focus-visible {
  background: rgba(244, 160, 0, 0.1);
  color: var(--text);
}

.guide-main,
.support-main {
  display: grid;
  gap: 26px;
}

.guide-main section,
.support-main section {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.76);
}

.guide-main h2,
.support-main h2 {
  margin-top: 0;
  font-size: clamp(1.55rem, 2.4vw, 2.1rem);
  line-height: 1.12;
}

.feature-summary {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
  padding: 0;
  background: rgba(255, 255, 255, 0.82);
}

.feature-summary div {
  padding: 22px;
  border-right: 1px solid var(--line);
}

.feature-summary div:last-child { border-right: 0; }

.feature-summary span {
  display: block;
  margin-bottom: 14px;
  color: var(--accent-deep);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.feature-summary strong {
  display: block;
  font-size: 1rem;
  font-weight: 900;
}

.feature-summary p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

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

.guide-hero-media img {
  border-radius: 22px;
  box-shadow: 0 18px 40px rgba(73, 47, 10, 0.14);
}

.guide-demo {
  width: fit-content;
  margin-top: 26px;
  padding: 14px;
  border-radius: 26px;
}

.guide-demo video,
.guide-demo img {
  width: min(330px, 100%);
}

.link-list {
  display: grid;
  gap: 10px;
}

.link-list a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
  text-decoration: none;
  font-weight: 760;
}

.link-list a:hover,
.link-list a:focus-visible {
  color: var(--accent-deep);
}

.support-banner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 22px;
  align-items: center;
  padding: 30px;
  border: 1px solid rgba(244, 160, 0, 0.18);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(255, 241, 199, 0.76), rgba(255, 255, 255, 0.84) 52%, rgba(234, 244, 255, 0.7));
  box-shadow: var(--shadow-soft);
}

.support-banner p,
.muted { color: var(--muted); }

.footer {
  padding: 46px 0 70px;
  border-top: 1px solid rgba(82, 55, 24, 0.1);
  color: var(--muted);
}

.footer__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 15px;
}

.footer__links a {
  color: var(--muted-strong);
  text-decoration: none;
  font-weight: 720;
}

.footer__links a:hover,
.footer__links a:focus-visible { color: var(--text); }

@media (max-width: 1100px) {
  .nav a { font-size: 0.83rem; padding-inline: 8px; }
  .hero__inner { grid-template-columns: 1fr; min-height: auto; }
  .hero__visual { min-height: 580px; }
}

@media (max-width: 980px) {
  .support-banner,
  .feature-strip,
  .guide-layout,
  .support-layout,
  .feature-mosaic,
  .language-grid {
    grid-template-columns: 1fr;
  }

  .guide-sidebar { position: static; }
  .guide-hero-media,
  .feature-summary,
  .grid-three,
  .support-grid,
  .journey { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .site-header__inner {
    gap: 10px;
    padding: 12px 0;
  }

  .brand { min-width: 0; gap: 10px; }
  .brand__mark { width: 40px; height: 40px; }
  .brand__name { font-size: 1rem; }
  .brand__tag { display: none; }
  .mobile-menu {
    display: block;
    margin-left: auto;
    z-index: 60;
  }
  .mobile-menu__panel {
    position: fixed;
    left: 14px;
    right: 14px;
    top: 72px;
    width: auto;
    max-height: calc(100svh - 96px);
    overflow-y: auto;
  }
  .nav {
    width: auto;
    margin-left: 0;
    gap: 6px;
    flex-wrap: nowrap;
  }
  .nav a { display: none; }
  .nav .cta-link { display: inline-flex; padding-inline: 12px; }
  .nav > .language-select { display: none; }
  .mobile-language {
    display: grid;
    gap: 8px;
    padding: 10px 12px 12px;
  }
  .mobile-language span {
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
  }
  .mobile-language .language-select {
    width: 100%;
    max-width: none;
    min-height: 44px;
    font-size: 0.9rem;
  }

  .hero { padding-top: 26px; }
  .hero__inner { width: min(calc(100% - 28px), var(--max)); gap: 18px; }
  .hero h1 { font-size: clamp(2.4rem, 10.8vw, 3.45rem); }
  .hero .lead { font-size: 1rem; margin-bottom: 22px; }
  .hero__actions,
  .page-hero__actions { gap: 10px; }
  .store-badge { max-width: 100%; }
  .store-badge img { width: 210px; max-width: 100%; }
  .button { width: 100%; }
  .hero .ios-badge {
    width: fit-content;
    min-width: min(236px, 100%);
    max-width: 100%;
  }
  .trust-strip { gap: 9px; }
  .trust-pill {
    flex: 1 1 calc(50% - 8px);
    min-width: 0;
    gap: 7px;
    font-size: 0.84rem;
    line-height: 1.3;
    justify-content: flex-start;
  }
  .trust-pill::before { width: 18px; height: 18px; flex: 0 0 auto; }
  .hero__visual { min-height: auto; padding: 16px 0 0; }
  .phone-stage {
    min-height: auto;
    display: grid;
    gap: 14px;
    width: 100%;
  }
  .phone-stage > * {
    position: static;
    transform: none;
  }
  .tablet-device { order: 1; width: 100%; }
  .hero-device { order: 2; width: min(340px, 100%); justify-self: center; }
  .hero-note { order: 3; width: 100%; }
  .hero-flow { order: 4; justify-self: center; }
  .availability-grid,
  .workflow-grid,
  .grid-two,
  .grid-three,
  .guide-hero-media,
  .feature-summary,
  .support-grid,
  .journey {
    grid-template-columns: 1fr;
  }
  .platform-card + .platform-card {
    border-left: 0;
    border-top: 1px solid var(--line);
  }
  .platform-card { grid-template-columns: 1fr; padding: 24px; }
  .feature-summary div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .feature-summary div:last-child { border-bottom: 0; }
  .section { padding: 64px 0; }
  .section--tight { padding: 38px 0; }
  .page-hero { padding: 64px 0 30px; }
  .footer__inner { flex-direction: column; }
  .footer__links { justify-content: flex-start; }
}

@media (max-width: 360px) {
  .nav .cta-link { display: none; }
}

@keyframes riseIn {
  from { opacity: 0; translate: 0 16px; }
  to { opacity: 1; translate: 0 0; }
}

.hero h1,
.hero .lead,
.hero__actions,
.trust-strip,
.hero-note,
.hero-flow,
.hero-device,
.tablet-device {
  animation: riseIn 0.7s ease both;
}

.hero .lead { animation-delay: 0.05s; }
.hero__actions { animation-delay: 0.1s; }
.trust-strip { animation-delay: 0.15s; }
.hero-note { animation-delay: 0.14s; }
.tablet-device { animation-delay: 0.18s; }
.hero-device { animation-delay: 0.22s; }
.hero-flow { animation-delay: 0.26s; }

@supports (animation-timeline: view()) {
  .feature-strip,
  .guide-main section,
  .support-banner,
  .platform-card,
  .workflow-item,
  .guide-card {
    animation: riseIn both;
    animation-timeline: view();
    animation-range: entry 0% cover 25%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
