:root {
  --navy: #082873;
  --navy-deep: #041b50;
  --navy-soft: #153a85;
  --yellow: #ffd21f;
  --yellow-soft: #fff4b8;
  --ink: #ffffff;
  --muted: #b9c7e2;
  --surface: #082873;
  --surface-strong: #123c86;
  --white: #ffffff;
  --line: rgba(255, 255, 255, 0.16);
  --success: #167a57;
  --radius: 8px;
  --header-height: 76px;
  --shadow: 0 20px 55px rgba(2, 16, 50, 0.28);
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--surface);
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button {
  font: inherit;
}

ul {
  list-style: none;
}

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

.narrow {
  margin: 0 auto;
  width: min(820px, calc(100% - 40px));
}

.site-header {
  color: var(--white);
  height: var(--header-height);
  left: 0;
  position: fixed;
  top: 0;
  transition: background 180ms ease, box-shadow 180ms ease;
  width: 100%;
  z-index: 50;
}

.site-header.is-scrolled,
.site-header.page-header {
  background: rgba(4, 27, 80, 0.97);
  box-shadow: 0 10px 28px rgba(4, 27, 80, 0.18);
}

.navbar {
  align-items: center;
  display: flex;
  height: var(--header-height);
  justify-content: space-between;
}

.brand {
  align-items: center;
  display: inline-flex;
  flex: 0 0 auto;
  gap: 11px;
  font-size: 20px;
  font-weight: 900;
}

.brand img {
  display: block;
  height: 44px;
  object-fit: contain;
  width: auto;
}

.site-nav {
  align-items: center;
  display: flex;
  gap: 24px;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 800;
  transition: color 160ms ease;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--yellow);
}

.site-nav .nav-cta {
  align-items: center;
  background: var(--yellow);
  border-radius: 6px;
  color: var(--navy-deep);
  display: inline-flex;
  gap: 7px;
  padding: 10px 14px;
}

.site-nav .nav-cta:hover {
  color: var(--navy-deep);
}

.menu-toggle {
  align-items: center;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 6px;
  color: var(--white);
  cursor: pointer;
  display: none;
  height: 42px;
  justify-content: center;
  width: 42px;
}

.menu-toggle svg,
.btn svg,
.text-link svg,
.contact-link svg,
.footer-contact svg {
  height: 18px;
  width: 18px;
}

.hero {
  align-items: center;
  background: var(--navy);
  color: var(--white);
  display: flex;
  min-height: min(820px, calc(100svh - 28px));
  overflow: hidden;
  padding: 130px 0 76px;
  position: relative;
}

.hero::before,
.page-hero::before {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 64px 64px;
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.hero::after {
  background: var(--yellow);
  bottom: 0;
  content: "";
  height: 7px;
  left: 0;
  position: absolute;
  width: 33%;
}

.hero-grid {
  align-items: center;
  display: grid;
  gap: 70px;
  grid-template-columns: 1.08fr 0.92fr;
  position: relative;
  z-index: 1;
}

.hero-grid > * {
  min-width: 0;
}

.hero-brand-name {
  color: var(--yellow);
  font-size: clamp(76px, 7vw, 104px);
  font-weight: 900;
  line-height: 0.84;
  margin-bottom: 30px;
  max-width: 800px;
  overflow-wrap: break-word;
  white-space: nowrap;
}

.hero-tagline {
  color: var(--white);
  font-size: clamp(26px, 2.8vw, 38px);
  font-weight: 900;
  line-height: 1.08;
  max-width: 660px;
}

.hero-tagline span {
  color: var(--yellow);
}

.hero-copy {
  color: rgba(255, 255, 255, 0.76);
  font-size: 17px;
  margin-top: 24px;
  max-width: 620px;
}

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

.btn {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 6px;
  cursor: pointer;
  display: inline-flex;
  font-size: 14px;
  font-weight: 900;
  gap: 9px;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

.btn-primary {
  background: var(--yellow);
  color: var(--navy-deep);
}

.btn-secondary {
  border-color: rgba(255, 255, 255, 0.44);
  color: var(--white);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--white);
}

.btn-dark {
  background: var(--navy);
  color: var(--white);
}

.hero-visual {
  align-items: center;
  display: flex;
  justify-content: center;
  min-height: 560px;
  position: relative;
}

.phone-scene {
  align-items: center;
  display: flex;
  height: 590px;
  justify-content: center;
  position: relative;
  width: min(100%, 470px);
}

.phone-orbit {
  border: 1px solid rgba(255, 210, 31, 0.35);
  border-radius: 50%;
  position: absolute;
}

.phone-orbit::after {
  background: var(--yellow);
  border-radius: 50%;
  box-shadow: 0 0 0 8px rgba(255, 210, 31, 0.12);
  content: "";
  height: 9px;
  left: 50%;
  position: absolute;
  top: -5px;
  width: 9px;
}

.phone-orbit-one {
  animation: phoneOrbit 8s linear infinite;
  height: 440px;
  width: 440px;
}

.phone-orbit-two {
  animation: phoneOrbit 11s linear infinite reverse;
  height: 520px;
  opacity: 0.45;
  width: 520px;
}

.phone {
  animation: phoneFloat 4.8s ease-in-out infinite;
  background: #020b25;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 42px;
  box-shadow:
    0 36px 70px rgba(1, 11, 38, 0.5),
    18px 18px 0 rgba(255, 210, 31, 0.16);
  height: 540px;
  padding: 10px;
  position: relative;
  transform: rotate(3deg);
  width: 275px;
  z-index: 2;
}

.phone::before {
  background: #020b25;
  border-radius: 0 0 12px 12px;
  content: "";
  height: 25px;
  left: 50%;
  position: absolute;
  top: 8px;
  transform: translateX(-50%);
  width: 92px;
  z-index: 4;
}

.phone-side-button {
  background: rgba(255, 255, 255, 0.5);
  border-radius: 0 3px 3px 0;
  height: 72px;
  position: absolute;
  right: -5px;
  top: 128px;
  width: 3px;
}

.phone-screen {
  background: var(--navy);
  border-radius: 32px;
  height: 100%;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.phone-status {
  align-items: center;
  color: rgba(255, 255, 255, 0.76);
  display: flex;
  font-size: 9px;
  font-weight: 800;
  height: 34px;
  justify-content: space-between;
  padding: 0 18px;
}

.phone-status-icons {
  align-items: center;
  display: flex;
  gap: 3px;
}

.phone-status-icons svg {
  height: 10px;
  width: 10px;
}

.phone-appbar {
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  color: var(--white);
  display: grid;
  font-size: 13px;
  font-weight: 900;
  gap: 8px;
  grid-template-columns: 1fr auto;
  padding: 12px 16px;
}

.phone-appbar svg {
  color: var(--yellow);
  height: 16px;
  width: 16px;
}

.phone-map {
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 32px 32px;
  height: 315px;
  overflow: hidden;
  position: absolute;
  top: 88px;
  width: 100%;
}

.map-road {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  height: 7px;
  position: absolute;
  width: 260px;
}

.map-road-one {
  left: -34px;
  top: 75px;
  transform: rotate(25deg);
}

.map-road-two {
  left: 60px;
  top: 175px;
  transform: rotate(-32deg);
}

.map-road-three {
  left: -20px;
  top: 240px;
  transform: rotate(12deg);
}

.map-route {
  border-left: 3px dashed var(--yellow);
  border-top: 3px dashed var(--yellow);
  height: 135px;
  left: 58px;
  position: absolute;
  top: 68px;
  transform: skewY(-18deg);
  width: 135px;
}

.map-pin {
  align-items: center;
  background: var(--white);
  border: 4px solid rgba(255, 210, 31, 0.22);
  border-radius: 50%;
  color: var(--navy-deep);
  display: flex;
  height: 38px;
  justify-content: center;
  position: absolute;
  width: 38px;
  z-index: 2;
}

.map-pin svg {
  height: 16px;
  width: 16px;
}

.map-pickup {
  left: 42px;
  top: 48px;
}

.map-drop {
  right: 35px;
  top: 190px;
}

.delivery-rider {
  align-items: center;
  animation: riderRoute 5s ease-in-out infinite;
  background: var(--yellow);
  border: 4px solid rgba(255, 210, 31, 0.22);
  border-radius: 50%;
  color: var(--navy-deep);
  display: flex;
  height: 42px;
  justify-content: center;
  left: 60px;
  position: absolute;
  top: 78px;
  width: 42px;
  z-index: 3;
}

.delivery-rider svg {
  height: 18px;
  width: 18px;
}

.phone-order {
  align-items: center;
  animation: orderPulse 2.4s ease-in-out infinite;
  background: var(--navy-deep);
  border-left: 4px solid var(--yellow);
  bottom: 42px;
  display: grid;
  gap: 10px;
  grid-template-columns: 40px 1fr auto;
  left: 15px;
  padding: 13px;
  position: absolute;
  right: 15px;
}

.phone-order-icon {
  align-items: center;
  background: var(--yellow);
  border-radius: 5px;
  color: var(--navy-deep);
  display: flex;
  height: 38px;
  justify-content: center;
  width: 38px;
}

.phone-order svg {
  color: var(--yellow);
  height: 18px;
  width: 18px;
}

.phone-order-icon svg {
  color: var(--navy-deep);
}

.phone-order-lines {
  display: grid;
  gap: 7px;
}

.phone-order-lines i {
  background: rgba(255, 255, 255, 0.58);
  border-radius: 4px;
  height: 5px;
  width: 82px;
}

.phone-order-lines i:last-child {
  background: rgba(255, 255, 255, 0.22);
  width: 55px;
}

.phone-home-indicator {
  background: rgba(255, 255, 255, 0.72);
  border-radius: 10px;
  bottom: 14px;
  height: 4px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 78px;
}

@keyframes phoneFloat {
  0%,
  100% {
    transform: translateY(0) rotate(3deg);
  }
  50% {
    transform: translateY(-16px) rotate(-1deg);
  }
}

@keyframes phoneOrbit {
  to {
    transform: rotate(360deg);
  }
}

@keyframes riderRoute {
  0%,
  12% {
    transform: translate(0, 0) rotate(-12deg);
  }
  45% {
    transform: translate(82px, 55px) rotate(12deg);
  }
  78%,
  100% {
    transform: translate(125px, 130px) rotate(8deg);
  }
}

@keyframes orderPulse {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

.section {
  padding: 96px 0;
}

.section-white {
  background: var(--navy-soft);
}

.section-dark {
  background: var(--navy-deep);
  color: var(--white);
}

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

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

.kicker {
  color: var(--yellow);
  display: block;
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.section-dark .kicker,
.cta-band .kicker {
  color: var(--yellow);
}

.section-heading h2,
.content-title {
  color: var(--yellow);
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.1;
}

.section-heading p {
  color: var(--muted);
  margin-top: 14px;
  max-width: 650px;
}

.section-dark .section-heading p {
  color: rgba(255, 255, 255, 0.68);
}

.text-link {
  align-items: center;
  color: var(--yellow);
  display: inline-flex;
  flex: 0 0 auto;
  font-size: 14px;
  font-weight: 900;
  gap: 7px;
}

.section-dark .text-link {
  color: var(--yellow);
}

.service-list {
  border-top: 1px solid var(--line);
}

.service-row {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 24px;
  grid-template-columns: 54px 1fr 1.15fr auto;
  min-height: 104px;
  padding: 20px 0;
  transition: background 160ms ease, padding 160ms ease;
}

.service-row:hover {
  background: var(--surface-strong);
  padding-left: 12px;
  padding-right: 12px;
}

.service-number {
  color: var(--yellow);
  font-size: 13px;
  font-weight: 900;
}

.service-row h3 {
  color: var(--white);
  font-size: 19px;
}

.service-row p {
  color: var(--muted);
  font-size: 14px;
}

.service-row svg {
  color: var(--yellow);
  height: 21px;
  width: 21px;
}

.choice-grid,
.info-grid,
.steps-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(3, 1fr);
}

.choice-item,
.info-item,
.step-item {
  border-top: 3px solid var(--yellow);
  padding-top: 22px;
}

.section-dark .choice-item {
  border-color: var(--yellow);
}

.choice-icon,
.info-icon,
.step-number {
  align-items: center;
  background: var(--yellow);
  border-radius: 6px;
  color: var(--navy-deep);
  display: flex;
  height: 42px;
  justify-content: center;
  margin-bottom: 18px;
  width: 42px;
}

.choice-icon svg,
.info-icon svg {
  height: 21px;
  width: 21px;
}

.choice-item h3,
.info-item h3,
.step-item h3 {
  color: var(--white);
  font-size: 18px;
  line-height: 1.3;
  margin-bottom: 8px;
}

.choice-item p,
.info-item p,
.step-item p {
  color: var(--muted);
  font-size: 14px;
}

.section-dark .choice-item p {
  color: rgba(255, 255, 255, 0.65);
}

.partner-grid {
  display: grid;
  gap: 1px;
  grid-template-columns: 1fr 1fr;
}

.partner-panel {
  background: var(--navy);
  color: var(--white);
  min-height: 360px;
  padding: 48px;
  position: relative;
}

.partner-panel:nth-child(2) {
  background: var(--navy-soft);
  color: var(--white);
}

.partner-panel .panel-icon {
  margin-bottom: 54px;
}

.partner-panel .panel-icon svg {
  height: 34px;
  width: 34px;
}

.partner-panel h3 {
  color: var(--yellow);
  font-size: 30px;
  line-height: 1.15;
}

.partner-panel p {
  color: rgba(255, 255, 255, 0.68);
  margin: 14px 0 22px;
  max-width: 450px;
}

.partner-panel:nth-child(2) p {
  color: rgba(255, 255, 255, 0.68);
}

.partner-panel .text-link {
  color: var(--yellow);
}

.partner-panel:nth-child(2) .text-link {
  color: var(--yellow);
}

.cta-band {
  background: var(--navy);
  color: var(--white);
  padding: 74px 0;
}

.cta-inner {
  align-items: center;
  display: flex;
  gap: 40px;
  justify-content: space-between;
}

.cta-inner h2 {
  color: var(--yellow);
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1.1;
  max-width: 720px;
}

.page-hero {
  background-color: var(--navy);
  background-image:
    linear-gradient(90deg, rgba(8, 40, 115, 1) 0%, rgba(8, 40, 115, 0.98) 52%, rgba(8, 40, 115, 0.7) 100%),
    url("logo.jpeg");
  background-position: center, calc(100% - 7vw) center;
  background-repeat: no-repeat;
  background-size: auto, 430px auto;
  color: var(--white);
  overflow: hidden;
  padding: 156px 0 78px;
  position: relative;
}

.page-hero::after {
  background: var(--yellow);
  bottom: 0;
  content: "";
  height: 6px;
  left: 0;
  position: absolute;
  width: 22%;
}

.page-hero-content {
  max-width: 880px;
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  color: var(--yellow);
  font-size: clamp(42px, 6vw, 70px);
  line-height: 1.04;
  overflow-wrap: break-word;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.74);
  font-size: 17px;
  margin-top: 20px;
  max-width: 720px;
}

.breadcrumb {
  color: var(--yellow);
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 18px;
  text-transform: uppercase;
}

.content-section {
  padding: 86px 0;
}

.content-section + .content-section {
  padding-top: 0;
}

.intro-copy {
  color: var(--muted);
  font-size: 18px;
  margin-bottom: 46px;
  max-width: 920px;
}

.content-block {
  border-top: 1px solid var(--line);
  display: grid;
  gap: 50px;
  grid-template-columns: 0.42fr 1fr;
  padding: 46px 0;
}

.content-block:last-child {
  border-bottom: 1px solid var(--line);
}

.content-block h2 {
  color: var(--yellow);
  font-size: 25px;
  line-height: 1.2;
}

.content-block h3 {
  color: var(--white);
  font-size: 18px;
  margin-bottom: 7px;
}

.content-block p,
.content-block li,
.policy-article p,
.policy-article li {
  color: var(--muted);
}

.check-list {
  display: grid;
  gap: 12px;
}

.check-list li {
  align-items: flex-start;
  display: flex;
  gap: 11px;
}

.check-list li::before {
  background: var(--yellow);
  border-radius: 50%;
  content: "";
  flex: 0 0 auto;
  height: 8px;
  margin-top: 9px;
  width: 8px;
}

.value-list {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(2, 1fr);
}

.value-item {
  border-left: 3px solid var(--yellow);
  padding-left: 18px;
}

.value-item h3 {
  color: var(--yellow);
}

.policy-layout {
  align-items: start;
  display: grid;
  gap: 64px;
  grid-template-columns: 250px 1fr;
}

.policy-aside {
  border-top: 3px solid var(--yellow);
  position: sticky;
  top: 108px;
}

.policy-aside strong {
  display: block;
  font-size: 14px;
  padding: 17px 0;
}

.policy-aside a {
  border-top: 1px solid var(--line);
  color: var(--muted);
  display: block;
  font-size: 13px;
  padding: 11px 0;
}

.policy-aside a:hover {
  color: var(--yellow);
}

.policy-article section {
  border-top: 1px solid var(--line);
  padding: 36px 0;
}

.policy-article section:first-child {
  border-top: 0;
  padding-top: 0;
}

.policy-article h2 {
  color: var(--yellow);
  font-size: 25px;
  margin-bottom: 14px;
}

.policy-article p + p,
.policy-article p + ul,
.policy-article ul + p {
  margin-top: 14px;
}

.policy-article ul {
  display: grid;
  gap: 8px;
}

.policy-article li {
  padding-left: 18px;
  position: relative;
}

.policy-article li::before {
  background: var(--yellow);
  content: "";
  height: 7px;
  left: 0;
  position: absolute;
  top: 10px;
  width: 7px;
}

.contact-layout {
  display: grid;
  gap: 70px;
  grid-template-columns: 0.82fr 1.18fr;
}

.contact-list {
  border-top: 1px solid var(--line);
}

.contact-link {
  align-items: flex-start;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 15px;
  padding: 22px 0;
}

.contact-link svg {
  color: var(--yellow);
  flex: 0 0 auto;
  margin-top: 4px;
}

.contact-link strong,
.contact-link span {
  display: block;
}

.contact-link strong {
  color: var(--white);
}

.contact-link span {
  color: var(--muted);
  font-size: 14px;
  margin-top: 3px;
}

.office-panel {
  background: var(--navy);
  color: var(--white);
  min-height: 410px;
  padding: 46px;
  position: relative;
}

.office-panel::after {
  border: 2px dashed rgba(255, 210, 31, 0.55);
  bottom: 28px;
  content: "";
  left: 28px;
  position: absolute;
  right: 28px;
  top: 28px;
}

.office-panel > * {
  position: relative;
  z-index: 1;
}

.office-panel svg {
  color: var(--yellow);
  height: 40px;
  margin-bottom: 80px;
  width: 40px;
}

.office-panel h2 {
  color: var(--yellow);
  font-size: 30px;
  margin-bottom: 14px;
}

.office-panel p {
  color: rgba(255, 255, 255, 0.72);
  max-width: 420px;
}

.site-footer {
  background: #03143c;
  color: var(--white);
  padding: 68px 0 26px;
}

.footer-grid {
  display: grid;
  gap: 50px;
  grid-template-columns: 1.35fr 0.8fr 0.8fr 1fr;
}

.footer-brand {
  margin-bottom: 16px;
}

.footer-copy {
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  max-width: 340px;
}

.footer-title {
  color: var(--yellow);
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 16px;
  text-transform: uppercase;
}

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

.footer-links a,
.footer-contact {
  color: rgba(255, 255, 255, 0.66);
  font-size: 13px;
  transition: color 160ms ease;
}

.footer-links a:hover,
.footer-contact:hover {
  color: var(--yellow);
}

.footer-contact {
  align-items: flex-start;
  display: flex;
  gap: 9px;
  margin-bottom: 13px;
}

.footer-contact svg {
  color: var(--yellow);
  flex: 0 0 auto;
  margin-top: 2px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  color: rgba(255, 255, 255, 0.5);
  display: grid;
  font-size: 12px;
  gap: 18px;
  grid-template-columns: auto 1fr;
  margin-top: 48px;
  padding-top: 24px;
}

.footer-bottom p:last-child {
  justify-self: end;
  max-width: 720px;
  text-align: right;
}

.download-modal-open {
  overflow: hidden;
}

.download-modal {
  align-items: center;
  background: rgba(2, 10, 30, 0.72);
  display: flex;
  inset: 0;
  justify-content: center;
  opacity: 0;
  padding: 22px;
  pointer-events: none;
  position: fixed;
  transition: opacity 180ms ease;
  z-index: 100;
}

.download-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.download-modal-dialog {
  background: var(--white);
  border: 1px solid rgba(4, 27, 80, 0.08);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(2, 10, 30, 0.32);
  color: var(--navy-deep);
  max-width: 430px;
  padding: 30px;
  position: relative;
  transform: translateY(14px);
  transition: transform 180ms ease;
  width: 100%;
}

.download-modal.is-open .download-modal-dialog {
  transform: translateY(0);
}

.download-modal-close {
  align-items: center;
  background: rgba(4, 27, 80, 0.07);
  border: 0;
  border-radius: 6px;
  color: var(--navy-deep);
  cursor: pointer;
  display: inline-flex;
  height: 36px;
  justify-content: center;
  position: absolute;
  right: 16px;
  top: 16px;
  width: 36px;
}

.download-modal-close svg,
.download-modal-icon svg,
.download-option > svg {
  height: 18px;
  width: 18px;
}

.download-modal-icon {
  align-items: center;
  background: var(--yellow);
  border-radius: 8px;
  color: var(--navy-deep);
  display: inline-flex;
  height: 44px;
  justify-content: center;
  margin-bottom: 18px;
  width: 44px;
}

.download-modal h2 {
  font-size: 26px;
  line-height: 1.1;
  margin-bottom: 8px;
}

.download-modal p {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 22px;
}

.download-options {
  display: grid;
  gap: 12px;
}

.download-option {
  align-items: center;
  border-radius: 8px;
  display: grid;
  gap: 12px;
  grid-template-columns: 42px 1fr;
  padding: 13px;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.download-option:hover {
  transform: translateY(-1px);
}

.download-option > svg {
  justify-self: center;
}

.download-option span {
  display: grid;
  gap: 2px;
}

.download-option strong {
  font-size: 14px;
}

.download-option small {
  font-size: 12px;
  font-weight: 700;
  opacity: 0.7;
}

.download-option-android {
  background: var(--yellow);
  color: var(--navy-deep);
}

.download-option-ios {
  background: var(--navy-deep);
  color: var(--white);
}

.reveal {
  opacity: 1;
  transform: translateY(0);
}

.reveal.is-visible {
  animation: reveal-up 500ms ease both;
}

@keyframes reveal-up {
  from {
    opacity: 0.2;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

@media (max-width: 1040px) {
  .site-nav {
    gap: 16px;
  }

  .site-nav a {
    font-size: 12px;
  }

  .hero-grid {
    gap: 34px;
  }

  .phone-scene {
    transform: scale(0.9);
  }

  .choice-grid,
  .info-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 860px) {
  :root {
    --header-height: 68px;
  }

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

  .site-nav {
    align-items: stretch;
    background: var(--navy-deep);
    box-shadow: var(--shadow);
    display: none;
    flex-direction: column;
    gap: 0;
    left: 20px;
    padding: 18px;
    position: fixed;
    right: 20px;
    top: 76px;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
    padding: 13px 4px;
  }

  .site-nav .nav-cta {
    border-bottom: 0;
    justify-content: center;
    margin-top: 12px;
  }

  .hero {
    min-height: auto;
    padding: 124px 0 70px;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
    width: 100%;
  }

  .hero-visual {
    min-height: 540px;
  }

  .service-row {
    grid-template-columns: 42px 1fr auto;
  }

  .service-row p {
    grid-column: 2 / -1;
  }

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

  .partner-panel {
    min-height: 320px;
  }

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

  .policy-layout {
    grid-template-columns: 1fr;
  }

  .policy-aside {
    display: none;
  }

  .content-block {
    gap: 22px;
    grid-template-columns: 1fr;
  }

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

  .footer-bottom p:last-child {
    justify-self: start;
    text-align: left;
  }
}

@media (max-width: 620px) {
  .container,
  .narrow {
    width: min(100% - 28px, 1160px);
  }

  .brand {
    font-size: 17px;
  }

  .brand img {
    height: 40px;
  }

  .download-modal {
    align-items: flex-end;
    padding: 14px;
  }

  .download-modal-dialog {
    padding: 28px 20px 20px;
  }

  .hero-brand-name {
    font-size: clamp(44px, 14.1vw, 80px);
    margin-bottom: 22px;
  }

  .hero-tagline {
    font-size: clamp(23px, 6vw, 30px);
  }

  .hero-copy {
    font-size: 15px;
  }

  .hero-actions .btn,
  .cta-actions .btn {
    width: 100%;
  }

  .hero-visual {
    justify-content: center;
    min-height: 520px;
    min-width: 0;
    width: 100%;
  }

  .phone-scene {
    height: 540px;
    transform: scale(0.84);
    width: 100%;
  }

  .phone-orbit-two {
    display: none;
  }

  .section,
  .content-section {
    padding: 68px 0;
  }

  .section-heading {
    align-items: start;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 34px;
  }

  .section-heading h2,
  .content-title {
    font-size: 34px;
  }

  .service-row {
    align-items: start;
    gap: 10px;
    grid-template-columns: 30px 1fr auto;
    padding: 18px 0;
  }

  .service-row p {
    font-size: 13px;
  }

  .choice-grid,
  .info-grid,
  .steps-grid,
  .value-list {
    grid-template-columns: 1fr;
  }

  .partner-panel {
    min-height: 0;
    padding: 34px 26px;
  }

  .partner-panel .panel-icon {
    margin-bottom: 42px;
  }

  .cta-inner {
    align-items: stretch;
    flex-direction: column;
  }

  .page-hero {
    padding: 132px 0 58px;
  }

  .page-hero h1 {
    font-size: 40px;
  }

  .office-panel {
    min-height: 360px;
    padding: 34px;
  }

  .office-panel svg {
    margin-bottom: 62px;
  }

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

  .footer-grid > div:first-child,
  .footer-grid > div:last-child {
    grid-column: 1 / -1;
  }
}
