:root {
  --page: #fbf7f1;
  --surface: #ffffff;
  --surface-soft: #fff3e3;
  --surface-warm: #fff8ed;
  --ink: #14110d;
  --text: #34291f;
  --muted: #776a5f;
  --line: #e8d9c7;
  --line-strong: #d2bba1;
  --primary: #ff8b00;
  --primary-dark: #b95f00;
  --green: #171411;
  --coral: #df5b16;
  --amber: #ffb84d;
  --footer: #11100f;
  --shadow-sm: 0 6px 18px rgba(18, 24, 38, .07);
  --shadow-md: 0 18px 48px rgba(18, 24, 38, .12);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: Inter, Arial, sans-serif;
  color: var(--text);
  background:
    linear-gradient(180deg, #ffffff 0, #fff7ed 360px, var(--page) 760px),
    var(--page);
  line-height: 1.7;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 139, 0, .055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 139, 0, .055) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, black, transparent 68%);
}

a {
  color: inherit;
}

.container {
  width: min(1320px, calc(100% - 56px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .88);
  border-bottom: 1px solid rgba(232, 217, 199, .9);
  box-shadow: 0 10px 28px rgba(18, 24, 38, .06);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 76px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
  color: var(--ink);
  text-decoration: none;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0;
}

.brand-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 14px 26px rgba(255, 138, 0, .28);
}

.brand-icon img,
.footer-logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 247, 237, .86);
}

.nav-links a,
.site-footer a {
  text-decoration: none;
  font-weight: 800;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 12px;
  border-radius: 6px;
  color: #5e5045;
  font-size: 13px;
  transition: background .2s ease, color .2s ease, box-shadow .2s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--primary-dark);
  background: #fff;
  box-shadow: var(--shadow-sm);
  outline: 0;
}

.nav-cta,
.btn,
.mini-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 10px;
  border: 1px solid transparent;
  font-weight: 900;
  text-decoration: none;
  transition:
    transform .2s ease,
    box-shadow .2s ease,
    background .2s ease,
    border-color .2s ease;
}

.nav-cta {
  min-width: 132px;
  padding: 0 18px;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--green));
  box-shadow: 0 14px 30px rgba(255, 139, 0, .28);
}

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

.nav-cta:focus-visible,
.btn:focus-visible,
.mini-btn:focus-visible,
.menu-btn:focus-visible,
.back-top:focus-visible {
  outline: 3px solid rgba(255, 139, 0, .32);
  outline-offset: 3px;
}

.menu-btn {
  position: relative;
  display: none;
  width: 46px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: transparent;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}

.menu-btn::before,
.menu-btn::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  height: 2px;
  border-radius: 999px;
  background: var(--ink);
  transition: transform .2s ease, box-shadow .2s ease;
}

.menu-btn::before {
  top: 14px;
  box-shadow: 0 7px 0 var(--ink);
}

.menu-btn::after {
  bottom: 13px;
}

.menu-btn[aria-expanded="true"]::before {
  top: 21px;
  transform: rotate(45deg);
  box-shadow: none;
}

.menu-btn[aria-expanded="true"]::after {
  bottom: 21px;
  transform: rotate(-45deg);
}

.hero {
  position: relative;
  padding: 78px 0 72px;
  background:
    linear-gradient(115deg, rgba(255, 244, 224, .94), rgba(255, 255, 255, .88) 55%, rgba(255, 247, 237, .96));
  border-bottom: 1px solid var(--line);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(440px, .72fr);
  align-items: stretch;
  gap: 72px;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 34px;
  margin-bottom: 18px;
  padding: 0 12px;
  border: 1px solid rgba(255, 139, 0, .32);
  border-radius: 999px;
  color: #8a4a00;
  background: rgba(255, 255, 255, .78);
  box-shadow: var(--shadow-sm);
  font-size: 13px;
  font-weight: 900;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(255, 139, 0, .18);
}

.hero h1 {
  margin: 0 0 22px;
  max-width: 760px;
  color: var(--ink);
  font-size: 64px;
  line-height: 1.04;
  letter-spacing: 0;
}

.hero p {
  margin: 0;
  max-width: 740px;
  color: #5f5146;
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 32px 0 20px;
}

.btn {
  min-width: 172px;
  padding: 0 22px;
}

.btn.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--green));
  box-shadow: 0 18px 34px rgba(255, 139, 0, .3);
}

.btn.secondary {
  color: var(--primary-dark);
  background: #fff;
  border-color: var(--line-strong);
  box-shadow: var(--shadow-sm);
}

.btn.primary:hover,
.nav-cta:hover {
  box-shadow: 0 22px 42px rgba(255, 139, 0, .34);
}

.btn.secondary:hover {
  border-color: rgba(255, 139, 0, .5);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-row span {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px 0 34px;
  border: 1px solid rgba(232, 217, 199, .95);
  border-radius: 999px;
  color: #62564d;
  background: rgba(255, 255, 255, .72);
  font-size: 13px;
  font-weight: 800;
}

.trust-row span::before {
  content: "";
  position: absolute;
  left: 12px;
  top: 50%;
  width: 12px;
  height: 7px;
  border-left: 2px solid var(--green);
  border-bottom: 2px solid var(--green);
  transform: translateY(-62%) rotate(-45deg);
}

.phone-card {
  position: relative;
  max-width: 410px;
  margin-left: auto;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 24px;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .08), transparent 26%),
    #171411;
  box-shadow: var(--shadow-md);
}

.phone-card::before {
  content: "";
  position: absolute;
  inset: 12px;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 18px;
}

.phone-top {
  width: 72px;
  height: 6px;
  margin: 0 auto 22px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .22);
}

.search-bar {
  position: relative;
  min-height: 46px;
  margin-bottom: 16px;
  padding: 11px 14px 11px 42px;
  border: 1px solid #eadcca;
  border-radius: 10px;
  color: #73675c;
  background: #fff;
  font-size: 14px;
}

.search-bar::before,
.search-bar::after {
  content: "";
  position: absolute;
  display: block;
}

.search-bar::before {
  left: 16px;
  top: 14px;
  width: 12px;
  height: 12px;
  border: 2px solid var(--muted);
  border-radius: 50%;
}

.search-bar::after {
  left: 29px;
  top: 28px;
  width: 8px;
  height: 2px;
  border-radius: 999px;
  background: var(--muted);
  transform: rotate(45deg);
}

.preview-card {
  position: relative;
  margin: 12px 0;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .055);
}

.preview-card.active {
  border-color: transparent;
  background: linear-gradient(135deg, var(--primary), var(--green));
  box-shadow: 0 16px 28px rgba(255, 139, 0, .28);
}

.preview-card strong {
  display: block;
  color: #fff;
  font-size: 17px;
  line-height: 1.3;
}

.preview-card span {
  display: block;
  margin-top: 4px;
  color: #d8d0c7;
  font-size: 14px;
}

.preview-card.active span {
  color: rgba(255, 255, 255, .88);
}

.mini-btn {
  position: relative;
  z-index: 1;
  width: 100%;
  margin-top: 12px;
  padding: 0 18px;
  color: var(--primary-dark);
  background: #fff;
}

.hero-image-card {
  width: 100%;
  max-width: 620px;
  margin-left: auto;
  min-height: 100%;
  padding: 16px;
  border: 1px solid rgba(255, 139, 0, .36);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 24px 64px rgba(20, 17, 13, .13);
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  gap: 14px;
  align-self: stretch;
}

.hero-image-card img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  object-position: center;
  border-radius: 7px;
  background: linear-gradient(180deg, #2f83df, #25c9cf);
}

.hero-media-points {
  display: grid;
  align-content: center;
  gap: 10px;
}

.hero-media-points span {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 14px 10px 40px;
  border: 1px solid rgba(232, 217, 199, .95);
  border-radius: var(--radius);
  background: #fff8ef;
  color: #5b4e44;
  font-size: 14px;
  font-weight: 900;
}

.hero-media-points span::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 50%;
  width: 12px;
  height: 7px;
  border-left: 2px solid var(--primary-dark);
  border-bottom: 2px solid var(--primary-dark);
  transform: translateY(-62%) rotate(-45deg);
}

.hero-image-card .mini-btn {
  min-height: 52px;
  margin-top: 0;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--green));
  box-shadow: 0 14px 28px rgba(255, 139, 0, .22);
}

.quick-features {
  padding: 28px 0 34px;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

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

.feature-grid > div {
  min-height: 190px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 10px 24px rgba(18, 24, 38, .06);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.feature-grid > div:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 139, 0, .42);
  box-shadow: var(--shadow-md);
}

.feature-grid span {
  position: relative;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 16px;
  border-radius: var(--radius);
  background: var(--surface-soft);
  font-size: 0;
}

.feature-grid span::before,
.feature-grid span::after {
  content: "";
  position: absolute;
}

.feature-grid > div:nth-child(1) span {
  background: #fff4dd;
}

.feature-grid > div:nth-child(1) span::before {
  width: 20px;
  height: 32px;
  background: var(--amber);
  clip-path: polygon(58% 0, 18% 46%, 48% 46%, 32% 100%, 84% 36%, 54% 36%);
}

.feature-grid > div:nth-child(2) span {
  background: #fff0d7;
}

.feature-grid > div:nth-child(2) span::before {
  width: 28px;
  height: 32px;
  background: var(--green);
  clip-path: polygon(50% 0, 88% 14%, 82% 67%, 50% 100%, 18% 67%, 12% 14%);
}

.feature-grid > div:nth-child(2) span::after {
  width: 13px;
  height: 7px;
  border-left: 3px solid #fff;
  border-bottom: 3px solid #fff;
  transform: rotate(-45deg);
}

.feature-grid > div:nth-child(3) span {
  background: #fff0ee;
}

.feature-grid > div:nth-child(3) span::before {
  width: 30px;
  height: 30px;
  border: 4px solid var(--coral);
  border-radius: 50%;
}

.feature-grid > div:nth-child(3) span::after {
  width: 28px;
  height: 4px;
  border-radius: 999px;
  background: var(--coral);
  transform: rotate(-45deg);
}

.feature-grid > div:nth-child(4) span {
  background: #fff3e3;
}

.feature-grid > div:nth-child(4) span::before {
  width: 23px;
  height: 34px;
  border: 3px solid var(--primary);
  border-radius: 6px;
}

.feature-grid > div:nth-child(4) span::after {
  bottom: 11px;
  width: 7px;
  height: 2px;
  border-radius: 999px;
  background: var(--primary);
}

.feature-grid h3 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.25;
  letter-spacing: 0;
}

.feature-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.app-showcase {
  padding: 58px 0;
  border-bottom: 1px solid rgba(232, 217, 199, .76);
  background: rgba(255, 247, 237, .72);
}

.showcase-heading {
  max-width: 780px;
  margin-bottom: 26px;
}

.showcase-heading h2 {
  position: relative;
  margin: 0 0 14px;
  padding-bottom: 16px;
  color: var(--ink);
  font-size: 38px;
  line-height: 1.16;
}

.showcase-heading h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 74px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), var(--green), var(--amber));
}

.showcase-heading p {
  margin: 0;
  color: #5b4e44;
  font-size: 17px;
}

.showcase-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}

.showcase-grid figure {
  display: grid;
  place-items: center;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 139, 0, .28);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #2f83df, #25c9cf);
  box-shadow: var(--shadow-sm);
}

.showcase-grid img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.showcase-wide {
  grid-column: span 2;
}

.showcase-wide img {
  aspect-ratio: 16 / 9;
}

.content-section {
  padding: 58px 0;
  border-bottom: 1px solid rgba(232, 217, 199, .76);
}

.content-section:nth-of-type(odd) {
  background: rgba(255, 255, 255, .64);
}

.content-section:nth-of-type(even) {
  background: rgba(255, 247, 237, .5);
}

.article-card {
  max-width: 1240px;
}

.article-card h2 {
  position: relative;
  margin: 0 0 26px;
  padding-bottom: 16px;
  color: var(--ink);
  font-size: 38px;
  line-height: 1.16;
  letter-spacing: 0;
}

.article-card h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 74px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), var(--green), var(--amber));
}

.article-card h3 {
  margin: 34px 0 12px;
  padding-left: 14px;
  border-left: 4px solid var(--primary);
  color: #b95f00;
  font-size: 23px;
  line-height: 1.25;
  letter-spacing: 0;
}

.article-card p {
  margin: 0 0 16px;
  color: #5b4e44;
}

.article-card strong {
  color: var(--ink);
}

.article-card a {
  color: var(--primary-dark);
}

.download-section {
  background:
    linear-gradient(90deg, rgba(255, 139, 0, .11), rgba(23, 20, 17, .05)),
    #fff;
}

.download-section .article-card {
  position: relative;
  padding: 36px;
  border: 1px solid rgba(255, 139, 0, .34);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.download-section .article-card::before {
  content: "SAFE APK DOWNLOAD";
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin-bottom: 18px;
  padding: 0 10px;
  border-radius: 6px;
  color: #8a4a00;
  background: #fff0d7;
  font-size: 12px;
  font-weight: 900;
}

.download-section .article-card h2 {
  margin-top: 0;
}

.check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 22px 0;
  padding: 0;
}

.check-list li {
  position: relative;
  min-height: 64px;
  padding: 14px 16px 14px 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 8px 18px rgba(18, 24, 38, .045);
  color: #5b4e44;
  list-style: none;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 21px;
  width: 14px;
  height: 8px;
  border-left: 3px solid var(--green);
  border-bottom: 3px solid var(--green);
  transform: rotate(-45deg);
}

.steps {
  display: grid;
  gap: 12px;
  margin: 22px 0;
  padding: 0;
  counter-reset: item;
}

.steps li {
  position: relative;
  min-height: 64px;
  padding: 16px 18px 16px 66px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 8px 18px rgba(18, 24, 38, .045);
  list-style: none;
}

.steps li::before {
  content: counter(item);
  counter-increment: item;
  position: absolute;
  left: 18px;
  top: 15px;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--green));
  font-weight: 900;
  line-height: 1;
}

.table-wrap {
  margin: 26px 0;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

table {
  width: 100%;
  min-width: 760px;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
}

th,
td {
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

th {
  color: #fff;
  background: var(--ink);
  font-weight: 900;
}

th:nth-child(2) {
  background: linear-gradient(135deg, var(--primary), var(--green));
}

td:first-child {
  color: var(--ink);
  background: #f8fafc;
  font-weight: 900;
}

td:nth-child(2) {
  color: #8a4a00;
  background: #fff4e5;
  font-weight: 800;
}

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

.faq-accordion {
  display: grid;
  gap: 12px;
}

details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 8px 18px rgba(18, 24, 38, .045);
  overflow: hidden;
}

details[open] {
  border-color: rgba(255, 139, 0, .5);
  box-shadow: 0 14px 30px rgba(255, 139, 0, .14);
}

summary {
  position: relative;
  min-height: 62px;
  padding: 18px 58px 18px 20px;
  color: var(--ink);
  cursor: pointer;
  font-weight: 900;
  line-height: 1.35;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  position: absolute;
  right: 18px;
  top: 50%;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  color: var(--primary-dark);
  background: #fff0d7;
  font-size: 22px;
  line-height: 1;
}

details[open] summary::after {
  content: "-";
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--green));
}

.faq-answer {
  padding: 0 20px 20px;
}

.faq-answer p {
  margin-bottom: 0;
}

.final-cta {
  padding: 62px 0 76px;
  background: #fff;
}

.cta-box {
  position: relative;
  overflow: hidden;
  padding: 52px 36px;
  border-radius: var(--radius);
  color: #fff;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .12), transparent 38%),
    linear-gradient(135deg, #ff8b00, #171411 68%, #ffb84d);
  box-shadow: var(--shadow-md);
  text-align: center;
}

.cta-box::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 6px;
  pointer-events: none;
}

.cta-box h2 {
  position: relative;
  margin: 0 auto 14px;
  max-width: 780px;
  font-size: 38px;
  line-height: 1.15;
  letter-spacing: 0;
}

.cta-box p {
  position: relative;
  margin: 0 auto 28px;
  max-width: 680px;
  color: rgba(255, 255, 255, .92);
  font-size: 17px;
}

.cta-box .btn.primary {
  position: relative;
  color: var(--primary-dark);
  background: #fff;
  box-shadow: 0 16px 32px rgba(18, 24, 38, .18);
}

.download-page {
  background: var(--page);
}

.download-hero {
  padding: 92px 0 74px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(115deg, rgba(255, 244, 224, .96), rgba(255, 255, 255, .9) 54%, rgba(255, 247, 237, .96));
}

.download-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  align-items: center;
  gap: 54px;
}

.download-copy h1 {
  max-width: 780px;
  margin: 0 0 20px;
  color: var(--ink);
  font-size: 58px;
  line-height: 1.06;
  letter-spacing: 0;
}

.download-copy p {
  max-width: 760px;
  margin: 0;
  color: #5f5146;
  font-size: 18px;
}

.download-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.download-panel {
  padding: 30px;
  border: 1px solid rgba(255, 139, 0, .28);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-md);
}

.download-logo {
  display: grid;
  place-items: center;
  width: 90px;
  height: 90px;
  margin-bottom: 22px;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 16px 34px rgba(255, 139, 0, .24);
}

.download-logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.download-panel h2 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 30px;
  line-height: 1.2;
}

.download-panel p {
  margin: 0;
  color: #5b4e44;
}

.download-meta {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.download-meta span {
  position: relative;
  min-height: 42px;
  padding: 10px 14px 10px 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff8ef;
  color: #5b4e44;
  font-weight: 800;
}

.download-meta span::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 17px;
  width: 12px;
  height: 7px;
  border-left: 2px solid var(--primary-dark);
  border-bottom: 2px solid var(--primary-dark);
  transform: rotate(-45deg);
}

.download-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.download-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.download-card h2 {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: 32px;
  line-height: 1.16;
}

.download-card p {
  margin: 0 0 8px;
  color: #5b4e44;
}

.download-card .steps {
  width: 100%;
}

.download-card .btn {
  margin-top: auto;
}

.download-notes {
  padding-top: 12px;
}

.policy-meta {
  display: inline-flex;
  margin-top: 26px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 139, 0, .34);
  border-radius: 999px;
  background: rgba(255, 255, 255, .78);
  color: #8a4a00;
  font-size: 14px;
  font-weight: 900;
}

.policy-card h2:not(:first-child) {
  margin-top: 42px;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 24px;
  align-items: start;
}

.contact-card {
  max-width: none;
}

.contact-form {
  display: grid;
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 900;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: var(--text);
  font: inherit;
  font-weight: 500;
  padding: 14px 16px;
  outline: 0;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.contact-form textarea {
  resize: vertical;
  min-height: 150px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(255, 139, 0, .62);
  box-shadow: 0 0 0 4px rgba(255, 139, 0, .14);
}

.contact-form .btn {
  width: fit-content;
  cursor: pointer;
}

.contact-side {
  position: sticky;
  top: 98px;
}

.site-footer {
  padding: 58px 0 28px;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .08), transparent 38%),
    var(--primary);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 0 24px;
}

.footer-logo {
  display: grid;
  place-items: center;
  justify-self: center;
  grid-column: 1 / -1;
  width: 132px;
  height: 82px;
  padding: 14px 24px;
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 38px rgba(20, 17, 13, .14);
}

.footer-description {
  grid-column: 1 / -1;
  justify-self: center;
  max-width: 760px;
  margin: 26px 0 54px;
  color: #fff;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.75;
  text-align: center;
}

.footer-links {
  display: flex;
  grid-column: 1 / -1;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin-bottom: 42px;
}

.site-footer a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  color: #fff;
  text-decoration: none;
  font-weight: 900;
  transition: color .2s ease, background .2s ease, border-color .2s ease;
}

.footer-links a {
  padding: 0;
  border: 0;
  border-radius: 0;
  font-size: 14px;
  letter-spacing: 0;
}

.footer-links a:first-child,
.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--ink);
  outline: 0;
}

.footer-divider {
  grid-column: 1 / -1;
  width: min(100%, 760px);
  height: 1px;
  justify-self: center;
  margin-bottom: 28px;
  background-image: linear-gradient(90deg, rgba(20, 17, 13, .32) 40%, transparent 40%);
  background-size: 4px 1px;
}

.site-footer p:not(.footer-description) {
  margin: 0;
  color: #fff;
  font-size: 14px;
}

.footer-grid > a[href="#top"] {
  display: none;
}

.footer-social {
  display: flex;
  justify-self: end;
  align-items: center;
  gap: 14px;
}

.footer-social a {
  min-width: 20px;
  min-height: 20px;
  padding: 0;
  color: #fff;
  border: 0;
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
}

.footer-social a:hover,
.footer-social a:focus-visible {
  color: var(--ink);
}

.back-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 90;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: var(--radius);
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--green));
  box-shadow: 0 14px 30px rgba(255, 139, 0, .32);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity .2s ease, transform .2s ease;
}

.back-top::before {
  content: "";
  width: 12px;
  height: 12px;
  border-left: 3px solid #fff;
  border-top: 3px solid #fff;
  transform: translateY(3px) rotate(45deg);
}

.back-top.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.reveal {
  opacity: 1;
  transform: none;
  transition: none;
}

.reveal.in-view {
  opacity: 1;
  transform: none;
}

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

@media (max-width: 1120px) {
  .nav-links a {
    padding-inline: 9px;
    font-size: 12px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) 420px;
    gap: 48px;
  }

  .hero h1 {
    font-size: 56px;
  }
}

@media (max-width: 980px) {
  html {
    scroll-padding-top: 82px;
  }

  .nav {
    min-height: 70px;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 10px);
    left: 24px;
    right: 24px;
    display: none;
    align-items: stretch;
    padding: 10px;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .98);
    box-shadow: var(--shadow-md);
  }

  .nav-links.show {
    display: grid;
  }

  .nav-links a {
    min-height: 44px;
    justify-content: center;
    font-size: 14px;
  }

  .menu-btn {
    display: inline-grid;
  }

  .nav-cta {
    display: none;
  }

  .hero {
    padding: 60px 0 64px;
  }

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

  .download-hero-grid {
    grid-template-columns: 1fr;
  }

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

  .hero h1 {
    font-size: 48px;
  }

  .phone-card {
    width: min(100%, 430px);
    margin-inline: auto;
  }

  .hero-image-card {
    width: min(100%, 620px);
    margin-inline: auto;
    margin-top: 0;
    min-height: 0;
  }

  .hero-image-card img {
    height: auto;
    aspect-ratio: 16 / 9;
  }

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

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

  .showcase-wide {
    grid-column: 1 / -1;
  }

  .showcase-grid img {
    max-height: 620px;
  }

  .showcase-wide img {
    max-height: none;
  }

  .download-card-grid {
    grid-template-columns: 1fr;
  }

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

  .contact-side {
    position: static;
  }

  .check-list {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .footer-description {
    margin-bottom: 36px;
  }

  .footer-links {
    gap: 8px 18px;
    margin-bottom: 32px;
  }

  .site-footer p:not(.footer-description),
  .footer-social {
    justify-self: center;
  }

  .footer-social {
    margin-top: 16px;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(100% - 28px, 1320px);
  }

  body {
    line-height: 1.64;
  }

  .brand {
    gap: 10px;
    font-size: 18px;
  }

  .brand-icon {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
    font-size: 20px;
  }

  .nav-links {
    left: 14px;
    right: 14px;
  }

  .hero {
    padding: 44px 0 52px;
  }

  .download-hero {
    padding: 48px 0 46px;
  }

  .eyebrow {
    align-items: flex-start;
    height: auto;
    padding-block: 8px;
    line-height: 1.35;
  }

  .eyebrow::before {
    margin-top: 5px;
    flex: 0 0 auto;
  }

  .hero h1 {
    font-size: 38px;
    line-height: 1.08;
  }

  .download-copy h1 {
    font-size: 38px;
    line-height: 1.08;
  }

  .hero p,
  .download-copy p,
  .cta-box p {
    font-size: 16px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .download-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
    min-width: 0;
    padding-inline: 16px;
  }

  .trust-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .phone-card {
    padding: 18px;
    border-radius: 18px;
  }

  .hero-image-card {
    padding: 8px;
    max-width: 520px;
  }

  .phone-card::before {
    border-radius: 12px;
  }

  .quick-features,
  .app-showcase,
  .content-section,
  .final-cta {
    padding-block: 42px;
  }

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

  .showcase-heading h2 {
    font-size: 30px;
  }

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

  .showcase-grid img {
    max-height: 720px;
  }

  .showcase-wide img,
  .hero-image-card img {
    aspect-ratio: 16 / 9;
  }

  .hero-media-points {
    gap: 8px;
  }

  .hero-media-points span {
    min-height: 38px;
    font-size: 13px;
  }

  .feature-grid > div {
    min-height: auto;
  }

  .article-card h2,
  .cta-box h2 {
    font-size: 30px;
  }

  .article-card h3 {
    font-size: 21px;
  }

  .download-section .article-card,
  .download-panel,
  .download-card,
  .contact-card,
  .cta-box {
    padding: 28px 18px;
  }

  .contact-form .btn {
    width: 100%;
  }

  .steps li {
    padding-right: 14px;
  }

  th,
  td {
    padding: 14px 15px;
  }
}

@media (max-width: 420px) {
  .brand span:last-child {
    max-width: 146px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .hero h1 {
    font-size: 34px;
  }

  .article-card h2,
  .cta-box h2 {
    font-size: 27px;
  }

  .search-bar {
    font-size: 13px;
  }

  summary {
    padding-left: 16px;
  }
}
