:root {
  --ink: #102219;
  --muted: #607069;
  --green-950: #023523;
  --green-900: #064b2f;
  --green-800: #075f38;
  --green-700: #08743e;
  --green-600: #13934f;
  --lime: #69cc2f;
  --lime-light: #dcf8cb;
  --cream: #f7f8f2;
  --white: #ffffff;
  --line: #dfe7df;
  --soft-green: #e7f4e9;
  --soft-yellow: #fff2ca;
  --soft-blue: #dcecff;
  --shadow: 0 24px 70px rgba(12, 61, 37, 0.12);
  --shadow-small: 0 12px 36px rgba(12, 61, 37, 0.09);
  --radius-large: 36px;
  --radius-medium: 24px;
  --container: 1440px;
}

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

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

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--cream);
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input {
  font: inherit;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3,
.brand strong {
  font-family: "Manrope", "DM Sans", sans-serif;
}

h1,
h2,
h3 {
  color: var(--ink);
  letter-spacing: -0.04em;
  line-height: 1.08;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2.25rem, 5vw, 4.4rem);
}

h3 {
  margin-bottom: 10px;
  font-size: 1.35rem;
}

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

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: #fff;
  background: var(--green-900);
  border-radius: 10px;
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid transparent;
  transition: background 0.25s ease, border 0.25s ease, box-shadow 0.25s ease;
}

.site-header.scrolled {
  border-color: rgba(15, 64, 39, 0.08);
  background: rgba(247, 248, 242, 0.9);
  box-shadow: 0 6px 30px rgba(14, 57, 35, 0.06);
  backdrop-filter: blur(18px);
}

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

.brand {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  gap: 11px;
}

.brand img {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(8, 116, 62, 0.1);
  border-radius: 50%;
  background: #fff;
  object-fit: cover;
}

.brand-copy {
  display: grid;
  line-height: 1;
}

.brand strong {
  color: var(--green-800);
  font-size: 1.13rem;
  letter-spacing: -0.035em;
}

.brand small {
  margin-top: 5px;
  color: #6c7d73;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.26em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 30px);
  font-size: 0.92rem;
  font-weight: 600;
}

.main-nav > a:not(.button) {
  position: relative;
  padding-block: 10px;
  color: #33473c;
}

.main-nav > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 2px;
  background: var(--lime);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.main-nav > a:not(.button):hover::after,
.main-nav > a:not(.button):focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-bio {
  display: none;
}

.menu-toggle {
  display: none;
  width: 45px;
  height: 45px;
  place-content: center;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  cursor: pointer;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 16px;
  font-weight: 700;
  line-height: 1.2;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.button:focus-visible,
.main-nav a:focus-visible,
.text-link:focus-visible,
.store-button:focus-visible,
.support-link:focus-visible,
.footer-contact:focus-visible {
  outline: 3px solid rgba(105, 204, 47, 0.5);
  outline-offset: 3px;
}

.button svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.button-small {
  min-height: 44px;
  padding: 11px 16px;
  border-radius: 13px;
}

.button-primary {
  color: #fff;
  background: var(--green-700);
  box-shadow: 0 12px 28px rgba(8, 116, 62, 0.2);
}

.button-primary:hover {
  background: var(--green-800);
  box-shadow: 0 16px 34px rgba(8, 116, 62, 0.26);
}

.button-ghost {
  border-color: #cbd8ce;
  background: rgba(255, 255, 255, 0.62);
}

.button-ghost:hover {
  border-color: var(--green-700);
  background: #fff;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 112px 0 44px;
}

.hero::before {
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  left: 0;
  height: 100%;
  background-image: radial-gradient(rgba(8, 116, 62, 0.12) 1px, transparent 1px);
  background-size: 24px 24px;
  content: "";
  mask-image: linear-gradient(to bottom, black, transparent 72%);
  opacity: 0.45;
}

.hero-glow {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  filter: blur(2px);
}

.hero-glow-one {
  top: 30px;
  right: -180px;
  width: 560px;
  height: 560px;
  background: rgba(105, 204, 47, 0.13);
}

.hero-glow-two {
  bottom: 0;
  left: -200px;
  width: 420px;
  height: 420px;
  background: rgba(255, 200, 76, 0.12);
}

.hero-grid {
  display: grid;
  align-items: center;
  gap: clamp(48px, 7vw, 92px);
  grid-template-columns: 0.92fr 1.08fr;
}

.eyebrow,
.overline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--green-700);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow {
  padding: 8px 12px;
  border: 1px solid #cbe4ce;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.06em;
  text-transform: none;
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 5px rgba(105, 204, 47, 0.15);
}

.hero h1 {
  max-width: 650px;
  margin-bottom: 24px;
  font-size: clamp(2.8rem, 4.4vw, 4.5rem);
}

.hero h1 span {
  color: var(--green-700);
}

.hero-lead {
  max-width: 580px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.5vw, 1.23rem);
  line-height: 1.65;
}

.hero-actions,
.partner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 26px;
  color: #56685e;
  font-size: 0.88rem;
  font-weight: 600;
}

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

.trust-row svg {
  width: 19px;
  height: 19px;
  padding: 3px;
  border-radius: 50%;
  fill: var(--green-800);
  background: var(--lime-light);
}

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

.hero-image-card {
  position: relative;
  padding: 13px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 38px;
  background: rgba(255, 255, 255, 0.63);
  box-shadow: var(--shadow);
  transform: rotate(1.4deg);
}

.hero-image-card > img {
  width: 100%;
  height: auto;
  min-height: 0;
  border-radius: 28px;
  object-fit: cover;
}

.floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: 190px;
  padding: 12px 15px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 14px 36px rgba(8, 67, 39, 0.15);
  backdrop-filter: blur(10px);
  transform: rotate(-1.4deg);
}

.floating-card-top {
  top: 28px;
  left: -38px;
}

.floating-card-bottom {
  right: -26px;
  bottom: 28px;
}

.floating-card small,
.floating-card strong {
  display: block;
  line-height: 1.25;
}

.floating-card small {
  margin-bottom: 2px;
  color: var(--muted);
  font-size: 0.71rem;
}

.floating-card strong {
  font-size: 0.88rem;
}

.float-icon {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 12px;
  background: var(--soft-green);
  font-size: 1.2rem;
}

.status-pulse {
  width: 12px;
  height: 12px;
  margin: 13px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 7px rgba(105, 204, 47, 0.17);
}

.quick-strip {
  padding-block: 28px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.55);
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.quick-grid > div {
  display: grid;
  padding: 2px 30px;
  border-right: 1px solid var(--line);
}

.quick-grid > div:first-child {
  padding-left: 0;
}

.quick-grid > div:last-child {
  border: 0;
}

.quick-grid strong {
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
}

.quick-grid span {
  color: var(--muted);
  font-size: 0.81rem;
}

.section {
  padding: 72px 0;
}

.section-heading {
  max-width: 680px;
}

.section-heading.center {
  margin-inline: auto;
  text-align: center;
}

.section-heading p,
.app-copy > p,
.services-copy > p,
.partner-copy > p {
  color: var(--muted);
  font-size: 1.08rem;
}

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

.step-card {
  position: relative;
  min-height: 350px;
  padding: 32px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-medium);
  background: #fff;
  box-shadow: var(--shadow-small);
}

.step-card::after {
  position: absolute;
  right: -50px;
  bottom: -70px;
  width: 180px;
  height: 180px;
  border: 35px solid rgba(8, 116, 62, 0.04);
  border-radius: 50%;
  content: "";
}

.step-number {
  position: absolute;
  top: 28px;
  right: 28px;
  color: #b6c5bb;
  font-family: "Manrope", sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.step-icon {
  display: grid;
  width: 96px;
  height: 96px;
  margin-bottom: 42px;
  place-items: center;
  border-radius: 25px;
}

.step-icon img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}

.step-mint {
  background: var(--soft-green);
}

.step-yellow {
  background: var(--soft-yellow);
}

.step-blue {
  background: var(--soft-blue);
}

.step-card p {
  max-width: 290px;
  margin-bottom: 0;
  color: var(--muted);
}

.services-section {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: var(--green-950);
}

.services-section::after {
  position: absolute;
  top: -220px;
  right: -190px;
  width: 620px;
  height: 620px;
  border: 110px solid rgba(105, 204, 47, 0.06);
  border-radius: 50%;
  content: "";
}

.services-grid {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  gap: clamp(54px, 8vw, 100px);
  grid-template-columns: 0.8fr 1.2fr;
}

.services-copy {
  position: sticky;
  top: 130px;
}

.services-copy h2,
.partner-copy h2 {
  color: #fff;
}

.services-copy > p,
.partner-copy > p {
  color: #bed0c4;
}

.overline-light {
  color: #8cdb5f;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-block: 8px;
  font-weight: 700;
}

.light-link {
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}

.service-cards {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr 1fr;
}

.service-card {
  min-height: 290px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.07);
}

.service-card-main {
  min-height: 330px;
  grid-column: span 2;
  background: var(--green-800);
}

.service-card img {
  width: 76px;
  height: 76px;
  margin-bottom: 28px;
  object-fit: contain;
}

.service-card > span {
  display: block;
  margin-bottom: 8px;
  color: #8cdb5f;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.service-card h3 {
  color: #fff;
  font-size: 1.55rem;
}

.service-card p {
  max-width: 410px;
  margin-bottom: 0;
  color: #bed0c4;
}

.app-section {
  overflow: hidden;
}

.app-grid {
  display: grid;
  align-items: center;
  gap: clamp(60px, 9vw, 120px);
  grid-template-columns: 1fr 0.9fr;
}

.phones {
  position: relative;
  width: min(100%, 430px);
  min-height: 480px;
  margin-inline: auto;
}

.phones::before {
  position: absolute;
  top: 80px;
  right: 10%;
  bottom: 35px;
  left: 5%;
  border-radius: 48% 52% 42% 58% / 52% 42% 58% 48%;
  background: #dcefdc;
  content: "";
  transform: rotate(-5deg);
}

.phone {
  position: absolute;
  width: 196px;
  padding: 6px;
  border: 1px solid rgba(13, 51, 31, 0.13);
  border-radius: 28px;
  background: #14231b;
  box-shadow: 0 32px 70px rgba(6, 52, 31, 0.2);
}

.phone::before {
  position: absolute;
  z-index: 1;
  top: 10px;
  left: 50%;
  width: 48px;
  height: 12px;
  border-radius: 10px;
  background: #14231b;
  content: "";
  transform: translateX(-50%);
}

.phone img {
  width: 100%;
  height: auto;
  border-radius: 22px;
  object-fit: contain;
  object-position: top;
}

.phone-front {
  z-index: 2;
  top: 0;
  left: 11%;
  transform: rotate(-4deg);
}

.phone-back {
  z-index: 1;
  top: 36px;
  right: 1%;
  transform: rotate(7deg);
}

.phone-badge {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 45px;
  padding: 12px 18px;
  color: var(--green-900);
  border: 1px solid #cde2ce;
  border-radius: 999px;
  background: #fff;
  box-shadow: var(--shadow-small);
  font-weight: 700;
}

.app-copy {
  max-width: 530px;
}

.check-list {
  display: grid;
  gap: 13px;
  margin: 28px 0 32px;
  padding: 0;
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 11px;
  font-weight: 600;
}

.check-list span {
  display: grid;
  width: 25px;
  height: 25px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--green-800);
  border-radius: 50%;
  background: var(--lime-light);
  font-size: 0.78rem;
}

.store-button {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  justify-content: center;
  padding: 14px;
  border-radius: 4px;
}

.store-button img {
  display: block;
  width: 180px;
  height: auto;
}

.store-button:focus-visible {
  outline: 3px solid var(--green-700);
  outline-offset: 2px;
}

.hero-actions .store-button {
  justify-self: center;
}

.opportunities-section {
  padding-top: 30px;
}

.opportunity-grid {
  display: grid;
  gap: 22px;
  margin-top: 44px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.opportunity-card {
  display: grid;
  min-height: 330px;
  overflow: hidden;
  border: 1px solid rgba(7, 95, 56, 0.08);
  border-radius: 30px;
  grid-template-columns: minmax(160px, 0.72fr) minmax(0, 1.28fr);
}

.opportunity-courier {
  background: linear-gradient(135deg, #e7f4ff, #cfe9ff);
}

.opportunity-partner {
  background: linear-gradient(135deg, #e9f7e9, #d2efd5);
}

.opportunity-art {
  position: relative;
  display: grid;
  overflow: hidden;
  min-height: 250px;
  place-items: center;
}

.opportunity-art::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.62);
  content: "";
  transform: translate(-50%, -50%);
}

.opportunity-art img {
  position: relative;
  width: 132px;
  height: 132px;
  object-fit: contain;
}

.opportunity-copy {
  align-self: center;
  padding: 38px 38px 38px 12px;
}

.opportunity-copy .overline {
  margin-bottom: 12px;
}

.opportunity-copy h3 {
  margin-bottom: 12px;
  font-size: clamp(1.65rem, 2.4vw, 2.35rem);
}

.opportunity-copy p {
  max-width: 420px;
  margin-bottom: 24px;
  color: #4c6558;
}

.feedback-section {
  padding-top: 18px;
}

.feedback-panel {
  display: grid;
  align-items: center;
  gap: 24px;
  padding: 30px 34px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #fff;
  box-shadow: var(--shadow-small);
  grid-template-columns: auto minmax(0, 1fr) auto;
}

.feedback-icon {
  display: grid;
  width: 64px;
  height: 64px;
  color: var(--green-800);
  border-radius: 20px;
  background: var(--soft-green);
  place-items: center;
}

.feedback-copy .overline {
  margin-bottom: 7px;
}

.feedback-copy h2 {
  margin-bottom: 6px;
  font-size: clamp(1.55rem, 2.4vw, 2.25rem);
}

.feedback-copy p {
  max-width: 620px;
  margin-bottom: 0;
  color: var(--muted);
}

.feedback-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.faq-grid {
  display: grid;
  align-items: start;
  gap: clamp(50px, 8vw, 110px);
  grid-template-columns: 0.75fr 1.25fr;
}

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

.accordion details {
  border-bottom: 1px solid var(--line);
}

.accordion summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 2px;
  cursor: pointer;
  font-family: "Manrope", sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  list-style: none;
}

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

.accordion .faq-chevron {
  display: grid;
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--green-800);
  border-radius: 50%;
  background: var(--soft-green);
}

.accordion .faq-chevron::before {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  margin-top: -4px;
  transition: transform 0.2s ease;
}

.accordion details[open] .faq-chevron::before {
  transform: rotate(225deg);
  margin-top: 4px;
}

.accordion summary:focus-visible {
  outline: 2px solid var(--green-700);
  outline-offset: 4px;
  border-radius: 8px;
}

.accordion details p {
  max-width: 600px;
  padding: 0 50px 24px 2px;
  color: var(--muted);
}

.final-cta {
  padding: 0 0 80px;
}

.final-cta-inner {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 30px 34px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: #fff;
  box-shadow: var(--shadow-small);
}

.final-cta-inner img {
  flex: 0 0 auto;
  border-radius: 50%;
}

.final-cta-inner div {
  flex: 1;
}

.final-cta-inner span {
  color: var(--green-700);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.final-cta-inner h2 {
  margin: 3px 0 0;
  font-size: clamp(1.4rem, 2.7vw, 2.1rem);
}

.site-footer {
  padding: 72px 0 26px;
  color: #bdcec3;
  background: #061b11;
}

.footer-grid {
  display: grid;
  gap: 50px;
  padding-bottom: 58px;
  grid-template-columns: 1.8fr repeat(3, 0.75fr);
}

.brand-light strong {
  color: #fff;
}

.brand-light small {
  color: #90a99a;
}

.footer-brand p {
  max-width: 330px;
  margin: 20px 0 0;
  font-size: 0.92rem;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-column strong {
  margin-bottom: 8px;
  color: #fff;
  font-family: "Manrope", sans-serif;
}

.footer-column a {
  font-size: 0.9rem;
}

.support-link {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
}

.support-link img {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  object-fit: contain;
}

.faq-help {
  margin-top: 20px;
  color: var(--green-800);
  font-size: 0.9rem;
  font-weight: 700;
}

.faq-help:hover {
  text-decoration: underline;
}

.footer-contact {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
}

.footer-contact span {
  min-width: 0;
}

/* Equal 24px alignment slots; visible artwork is approximately 20px.
   Official Meta PNGs fill their canvas; outlined SVGs have internal margins. */
.footer-contact-icon {
  display: grid;
  place-items: center;
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  color: #fff;
}

.footer-contact-icon img {
  display: block;
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.footer-contact-icon svg {
  display: block;
  width: 24px;
  height: 24px;
}

.footer-column a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.78rem;
}

.footer-bottom div {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-bottom a:hover {
  color: #fff;
}

.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-delay-small {
  transition-delay: 0.1s;
}

.reveal-delay {
  transition-delay: 0.2s;
}

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

@media (max-width: 1200px) and (min-width: 861px) {
  .main-nav > a:not(.button):nth-child(4),
  .main-nav > a:not(.button):nth-child(5),
  .main-nav > a:not(.button):nth-child(6) {
    display: none;
  }
}

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

  .main-nav > a:not(.button):nth-child(4),
  .main-nav > a:not(.button):nth-child(5),
  .main-nav > a:not(.button):nth-child(6) {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 0.95fr 1.05fr;
  }

  .hero h1 {
    font-size: clamp(2.8rem, 4.8vw, 4rem);
  }

  .floating-card-top {
    left: -10px;
  }

  .floating-card-bottom {
    right: -10px;
  }

  .phone {
    width: 180px;
  }

  .opportunity-card {
    grid-template-columns: 140px minmax(0, 1fr);
  }

  .opportunity-copy {
    padding-left: 6px;
  }
}

@media (max-width: 860px) {
  .menu-toggle {
    display: grid;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .main-nav {
    position: fixed;
    z-index: 999;
    top: 84px;
    right: 16px;
    left: 16px;
    display: grid;
    max-height: calc(100vh - 105px);
    padding: 24px;
    overflow-y: auto;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: #fff;
    box-shadow: var(--shadow);
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .main-nav.open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav > a:not(.button),
  .main-nav > a:not(.button):nth-child(4),
  .main-nav > a:not(.button):nth-child(5),
  .main-nav > a:not(.button):nth-child(6),
  .nav-bio {
    display: block;
    padding: 9px 4px;
    font-size: 1.05rem;
  }

  .main-nav .button {
    margin-top: 8px;
  }

  .hero {
    padding-top: 132px;
  }

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

  .hero-copy {
    text-align: center;
  }

  .hero h1,
  .hero-lead {
    margin-right: auto;
    margin-left: auto;
  }

  .hero-actions,
  .trust-row {
    justify-content: center;
  }

  .hero-visual {
    width: min(100%, 680px);
    margin-inline: auto;
  }

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

  .step-card {
    min-height: 0;
  }

  .step-icon {
    margin-bottom: 26px;
  }

  .services-copy {
    position: static;
    max-width: 620px;
  }

  .app-grid {
    gap: 30px;
  }

  .phones {
    width: min(100%, 400px);
    min-height: 450px;
    margin-inline: auto;
    order: 2;
  }

  .app-copy {
    max-width: 650px;
  }

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

  .opportunity-card {
    grid-template-columns: minmax(180px, 0.7fr) minmax(0, 1.3fr);
  }

  .feedback-panel {
    align-items: start;
    grid-template-columns: auto minmax(0, 1fr);
  }

  .feedback-actions {
    justify-content: flex-start;
    grid-column: 2;
  }

  .footer-grid {
    grid-template-columns: 1.5fr repeat(3, 1fr);
  }
}

@media (max-width: 680px) {
  :root {
    --radius-large: 26px;
  }

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

  .nav-wrap {
    min-height: 74px;
  }

  .main-nav {
    top: 74px;
  }

  .hero {
    padding: 100px 0 40px;
  }

  .hero h1 {
    font-size: clamp(2.4rem, 10vw, 3.5rem);
  }

  .hero-lead {
    font-size: 1rem;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    width: min(100%, 320px);
    margin-inline: auto;
  }

  .order-button {
    width: 180px;
    max-width: 100%;
    justify-self: center;
    text-align: center;
    line-height: 1.35;
  }

  .order-channel {
    display: block;
  }

  .hero-image-card {
    padding: 8px;
    border-radius: 28px;
    transform: none;
  }

  .hero-image-card > img {
    min-height: 0;
    border-radius: 21px;
  }

  .floating-card {
    min-width: 170px;
    padding: 10px 12px;
    transform: none;
  }

  .floating-card-top {
    top: 16px;
    left: 16px;
  }

  .floating-card-bottom {
    right: 16px;
    bottom: 16px;
  }

  .quick-grid {
    gap: 20px 0;
    grid-template-columns: 1fr 1fr;
  }

  .quick-grid > div,
  .quick-grid > div:first-child {
    padding: 2px 16px;
  }

  .quick-grid > div:nth-child(2) {
    border-right: 0;
  }

  .section {
    padding: 48px 0;
  }

  .section-heading p,
  .app-copy > p,
  .services-copy > p,
  .partner-copy > p {
    font-size: 1rem;
  }

  .steps-grid {
    margin-top: 38px;
  }

  .step-card {
    padding: 26px;
    min-height: 0;
    display: grid;
    column-gap: 18px;
    grid-template-columns: 54px 1fr;
  }

  .step-icon {
    width: 54px;
    height: 54px;
    margin: 0;
    border-radius: 16px;
    grid-row: span 2;
  }

  .step-icon img {
    width: 38px;
    height: 38px;
  }

  .step-card h3,
  .step-card p {
    grid-column: 2;
  }

  .step-number {
    top: 12px;
    right: 14px;
  }

  .service-cards {
    grid-template-columns: 1fr;
  }

  .service-card-main {
    min-height: 0;
    grid-column: auto;
  }

  .service-card {
    min-height: 0;
    padding: 22px;
  }

  .service-card img {
    width: 48px;
    height: 48px;
    margin-bottom: 12px;
    float: right;
  }

  .phones {
    width: min(100%, 330px);
    min-height: 380px;
  }

  .phone {
    width: 150px;
  }

  .phone-front {
    left: 2%;
  }

  .phone-back {
    right: 2%;
  }

  .phone-badge {
    right: 1%;
    bottom: 20px;
  }

  .opportunity-card {
    grid-template-columns: 108px minmax(0, 1fr);
  }

  .opportunity-art {
    min-height: 220px;
  }

  .opportunity-art::before {
    width: 150px;
    height: 150px;
  }

  .opportunity-art img {
    width: 88px;
    height: 88px;
  }

  .opportunity-copy {
    padding: 26px 22px 26px 4px;
  }

  .feedback-panel {
    display: grid;
    grid-template-columns: 1fr;
    padding: 26px;
  }

  .feedback-actions {
    display: grid;
    justify-content: stretch;
    grid-column: 1;
  }

  .faq-grid {
    gap: 28px;
  }

  .final-cta-inner {
    display: grid;
    padding: 27px;
    text-align: center;
  }

  .final-cta-inner img {
    margin-inline: auto;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

}

@media (max-width: 430px) {
  .brand strong {
    font-size: 1rem;
  }

  .hero-visual {
    width: calc(100% + 8px);
    margin-left: -4px;
  }

  .floating-card {
    min-width: 150px;
  }

  .floating-card small {
    font-size: 0.64rem;
  }

  .floating-card strong {
    font-size: 0.77rem;
  }

  .float-icon {
    width: 34px;
    height: 34px;
  }

  .quick-grid span {
    font-size: 0.75rem;
  }

  .phones {
    width: min(100%, 300px);
    min-height: 350px;
  }

  .phone {
    width: 140px;
    border-radius: 24px;
  }

  .phone::before {
    width: 42px;
    height: 10px;
  }

  .phone img {
    border-radius: 18px;
  }

  .phone-badge {
    font-size: 0.78rem;
  }

  .footer-grid {
    gap: 36px 24px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

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