/* VoyagEase landing design system (design-only, content preserved) */

:root {
  --blue: #3d7a96;
  --accent: #e07b45;
  --primary: #2f3e47;
  --ivory: #f7f2ed;
  --gold: #d4b483;
  --label-ink: #6f4b1e;
  --label-bg: rgba(212, 180, 131, 0.16);
  --ivory-dark: #ede8e1;
  --text-muted: #6b7c86;
  --white: #ffffff;
  --radius: 14px;
  --shadow-soft: 0 8px 26px rgba(47, 62, 71, 0.07);
  --shadow-raise: 0 14px 34px rgba(47, 62, 71, 0.12);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 74px;
}
body {
  font-family: Georgia, 'Times New Roman', serif;
  background: var(--ivory);
  color: var(--primary);
  font-size: 16px;
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
}
img,
svg {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
}

/* NAV */
.nav-wrap {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(247, 242, 237, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--ivory-dark);
}
.nav {
  max-width: 1160px;
  margin: 0 auto;
  height: 64px;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.nav-left,
.nav-right {
  display: flex;
  align-items: center;
  gap: 14px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.brand-logo {
  width: 34px;
  height: 34px;
  border-radius: 8px;
}
.brand-name {
  font-family: -apple-system, 'Segoe UI', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: -0.4px;
}
.nav-links {
  display: flex;
  gap: 6px;
}
.nav-links a {
  font-family: -apple-system, 'Segoe UI', sans-serif;
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
  padding: 6px 10px;
  border-radius: 16px;
  transition:
    background 0.2s ease,
    color 0.2s ease;
}
.nav-links a:hover {
  background: var(--ivory-dark);
  color: var(--primary);
}
.lang-switch {
  display: flex;
  gap: 4px;
}
.lang-switch a {
  font-family: -apple-system, 'Segoe UI', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: none;
  padding: 5px 10px;
  border-radius: 18px;
  border: 1px solid transparent;
}
.lang-switch a.active {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.nav-cta {
  background: var(--accent);
  color: var(--white);
  border: none;
  text-decoration: none;
  padding: 9px 20px;
  border-radius: 30px;
  font-family: -apple-system, 'Segoe UI', sans-serif;
  font-size: 14px;
  font-weight: 600;
  transition: opacity 0.2s ease;
}
.nav-cta:hover {
  opacity: 0.88;
}

/* HERO */
.hero-wrap {
  padding: 116px 24px 56px;
}
.hero {
  max-width: 980px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: start;
  text-align: center;
  justify-items: center;
}
.hero .hero-content {
  max-width: 900px;
}
.hero h1 {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.hero .hero-sub {
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}
.hero .hero-cta {
  justify-content: center;
}
.hero.hero-single h1 {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
.hero.hero-single .hero-sub {
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}
.hero.hero-single .hero-cta {
  justify-content: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--gold);
  padding: 6px 16px;
  border-radius: 30px;
  margin-bottom: 26px;
  font-family: -apple-system, 'Segoe UI', sans-serif;
  font-size: 12px;
  color: var(--text-muted);
}
.hero-eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #3cb96a;
}
h1 {
  font-size: clamp(2rem, 4.4vw, 3.4rem);
  font-weight: 400;
  line-height: 1.18;
  color: var(--primary);
  letter-spacing: -0.45px;
  margin-bottom: 18px;
}
h1 em {
  font-style: italic;
  color: var(--blue);
}
.hero h1.hero-heading-ru {
  font-size: clamp(1.65rem, 3.2vw, 2.7rem);
  line-height: 1.16;
  max-width: 840px;
}
.hero-sub {
  font-family: -apple-system, 'Segoe UI', sans-serif;
  font-size: 18px;
  color: var(--text-muted);
  max-width: 590px;
  line-height: 1.6;
  margin-bottom: 28px;
}
.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.btn-store {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 14px;
  padding: 12px 22px;
  text-decoration: none;
  min-width: 170px;
  transition: all 0.2s ease;
}
.btn-store:hover {
  background: var(--blue);
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}
.btn-store.ios,
.btn-store.android {
  background: var(--primary);
}
.btn-store-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}
.btn-store-text {
  text-align: left;
  line-height: 1.1;
}
.btn-store-sub {
  font-family: -apple-system, 'Segoe UI', sans-serif;
  font-size: 11px;
  opacity: 0.72;
  display: block;
  line-height: 1.1;
}
.btn-store-name {
  font-family: -apple-system, 'Segoe UI', sans-serif;
  font-size: 16px;
  font-weight: 600;
  display: block;
  line-height: 1.2;
}
.hero-trust {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 12px;
  font-family: -apple-system, 'Segoe UI', sans-serif;
  font-size: 13px;
  color: var(--text-muted);
}
.trust-sep {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
}

.hero-side {
  background: linear-gradient(180deg, var(--white), #fbf8f4);
  border: 1px solid var(--ivory-dark);
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
  padding: 16px;
}
.stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 12px;
}
.stat-card {
  background: var(--white);
  border: 1px solid var(--ivory-dark);
  border-radius: 12px;
  padding: 12px;
}
.stat-num {
  font-family: -apple-system, 'Segoe UI', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-num span {
  color: var(--accent);
}
.stat-lbl {
  font-family: -apple-system, 'Segoe UI', sans-serif;
  font-size: 11px;
  color: var(--text-muted);
}
.routes-card {
  background: var(--white);
  border: 1px solid var(--ivory-dark);
  border-radius: 12px;
  padding: 12px;
}
.routes-card-hdr {
  font-family: -apple-system, 'Segoe UI', sans-serif;
  font-size: 11px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}
.route-item {
  display: flex;
  gap: 10px;
  align-items: center;
  border-top: 1px solid var(--ivory-dark);
  padding-top: 10px;
  margin-top: 10px;
}
.route-item:first-of-type {
  border-top: 0;
  margin-top: 0;
  padding-top: 0;
}
.route-av {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: -apple-system, 'Segoe UI', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--white);
}
.route-av.warm {
  background: linear-gradient(135deg, #e07b45, #c4622e);
}
.route-av.cool {
  background: linear-gradient(135deg, #3d7a96, #2b5f77);
}
.route-av.safe {
  background: linear-gradient(135deg, #4a8c74, #306a56);
}
.route-info {
  flex: 1;
}
.route-path {
  font-family: -apple-system, 'Segoe UI', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
}
.route-sub {
  font-family: -apple-system, 'Segoe UI', sans-serif;
  font-size: 11px;
  color: var(--text-muted);
}
.route-price {
  font-family: -apple-system, 'Segoe UI', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
}

/* PHONE MOCKUP + DOWNLOAD */
.phone-section {
  background: var(--primary);
  padding: 5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
}
.phone-text {
  max-width: 420px;
}
.phone-text .section-label {
  font-family: -apple-system, 'Segoe UI', sans-serif;
  font-size: 12px;
  letter-spacing: 1.4px;
  font-weight: 700;
  text-transform: uppercase;
  color: #f3dcb6;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  padding: 4px 10px;
  line-height: 1.25;
  margin-bottom: 10px;
  display: inline-block;
}
.phone-text h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 400;
  line-height: 1.25;
  margin: 0.8rem 0 1.2rem;
}
.phone-text h2 em {
  color: var(--gold);
  font-style: italic;
}
.phone-text p {
  font-family: -apple-system, 'Segoe UI', sans-serif;
  color: rgba(255, 255, 255, 0.65);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 2rem;
}
.phone-download-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.btn-store-light {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.btn-store-light:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}
.phone-frame {
  width: 220px;
  height: 420px;
  background: var(--ivory);
  border-radius: 36px;
  border: 8px solid #1a2730;
  box-shadow:
    0 0 0 2px #3a4f5c,
    inset 0 0 0 1px rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}
.phone-notch {
  width: 80px;
  height: 22px;
  background: #1a2730;
  border-radius: 0 0 14px 14px;
  margin: 0 auto;
  flex-shrink: 0;
}
.phone-screen {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 10px;
  overflow: hidden;
}
.phone-header {
  font-family: -apple-system, 'Segoe UI', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 10px;
}
.phone-card {
  background: var(--white);
  border-radius: 10px;
  padding: 10px 12px;
  margin-bottom: 8px;
  border: 1px solid var(--ivory-dark);
}
.phone-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4px;
}
.phone-card-route {
  font-family: -apple-system, 'Segoe UI', sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: var(--primary);
}
.phone-card-earn {
  font-family: -apple-system, 'Segoe UI', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
}
.phone-card-sub {
  font-family: -apple-system, 'Segoe UI', sans-serif;
  font-size: 10px;
  color: var(--text-muted);
}
.phone-pill {
  display: inline-block;
  background: rgba(61, 122, 150, 0.1);
  color: var(--blue);
  font-family: -apple-system, 'Segoe UI', sans-serif;
  font-size: 9px;
  padding: 2px 7px;
  border-radius: 10px;
  margin-top: 5px;
}
.phone-bar {
  height: 4px;
  background: var(--ivory-dark);
  border-radius: 4px;
  margin: 8px 0;
}
.phone-bar-fill {
  height: 100%;
  background: var(--blue);
  border-radius: 4px;
  width: 60%;
}
.phone-nav {
  display: flex;
  justify-content: space-around;
  padding: 8px 0 4px;
  border-top: 1px solid var(--ivory-dark);
}
.phone-nav-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ivory-dark);
}
.phone-nav-dot.active {
  background: var(--blue);
}
.verified-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--ivory-dark);
  margin-top: 10px;
  padding-top: 10px;
}
.verified-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: -apple-system, 'Segoe UI', sans-serif;
  font-size: 11px;
  color: var(--blue);
  background: rgba(61, 122, 150, 0.1);
  border-radius: 20px;
  padding: 3px 10px;
}
.verified-count {
  font-family: -apple-system, 'Segoe UI', sans-serif;
  font-size: 11px;
  color: var(--text-muted);
}

/* TRUST STRIP */
.trust-strip {
  background: var(--primary);
  padding: 24px;
}
.trust-strip-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px 40px;
}
.trust-item {
  text-align: center;
}
.trust-num {
  color: var(--white);
  font-family: -apple-system, 'Segoe UI', sans-serif;
  font-size: 20px;
  font-weight: 700;
}
.trust-num span {
  color: var(--gold);
}
.trust-lbl {
  color: rgba(255, 255, 255, 0.62);
  font-family: -apple-system, 'Segoe UI', sans-serif;
  font-size: 11px;
}
.trust-divider {
  width: 1px;
  height: 34px;
  background: rgba(255, 255, 255, 0.2);
}

/* SECTION FRAME */
.section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 78px 24px;
}
.section-inner {
  width: 100%;
}
.section.alt-bg {
  background: transparent;
}
.section-hdr {
  margin-bottom: 34px;
}
.section-hdr.center {
  text-align: center;
}
.eyebrow {
  font-family: -apple-system, 'Segoe UI', sans-serif;
  font-size: 12px;
  letter-spacing: 1.3px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--label-ink);
  background: var(--label-bg);
  border: 1px solid rgba(111, 75, 30, 0.22);
  border-radius: 999px;
  padding: 4px 10px;
  line-height: 1.25;
  margin-bottom: 10px;
  display: inline-block;
}
h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 400;
  line-height: 1.25;
  color: var(--primary);
  margin-bottom: 12px;
}
h2 em {
  font-style: italic;
  color: var(--blue);
}
.section-sub {
  font-family: -apple-system, 'Segoe UI', sans-serif;
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.65;
  max-width: 720px;
}
.section-hdr.center .section-sub {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* HOW */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.step-card {
  background: var(--white);
  border: 1px solid var(--ivory-dark);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow-soft);
}
.step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--ivory-dark);
  border: 1px solid var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: -apple-system, 'Segoe UI', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--blue);
  margin-bottom: 12px;
}
.step-card h3 {
  font-family: -apple-system, 'Segoe UI', sans-serif;
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 6px;
}
.step-card p {
  font-family: -apple-system, 'Segoe UI', sans-serif;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.55;
}

/* TWO SIDES */
.two-sides {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.side-card {
  background: var(--white);
  border: 1px solid var(--ivory-dark);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-soft);
}
.side-tag {
  display: inline-block;
  font-family: -apple-system, 'Segoe UI', sans-serif;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 18px;
  padding: 3px 10px;
  margin-bottom: 12px;
}
.side-tag.s {
  color: var(--blue);
  background: rgba(61, 122, 150, 0.08);
}
.side-tag.t {
  color: var(--accent);
  background: rgba(224, 123, 69, 0.1);
}
.side-card h3 {
  font-family: -apple-system, 'Segoe UI', sans-serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
}
.side-desc {
  font-family: -apple-system, 'Segoe UI', sans-serif;
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.check-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.check-item {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  font-family: -apple-system, 'Segoe UI', sans-serif;
  font-size: 14px;
  color: var(--primary);
}
.chk {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  margin-top: 2px;
}
.chk.s {
  background: rgba(61, 122, 150, 0.14);
  color: var(--blue);
}
.chk.t {
  background: rgba(224, 123, 69, 0.14);
  color: var(--accent);
}
.side-cta {
  display: inline-flex;
  align-items: center;
  margin-top: 18px;
  background: var(--accent);
  color: var(--white);
  text-decoration: none;
  padding: 10px 18px;
  border-radius: 28px;
  font-family: -apple-system, 'Segoe UI', sans-serif;
  font-size: 13px;
  font-weight: 600;
}
.side-cta.s {
  background: var(--blue);
}
.side-cta.t {
  background: var(--accent);
}
.side-cta:hover {
  box-shadow: var(--shadow-raise);
  transform: translateY(-1px);
}

/* FEATURES */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.feat-card {
  background: var(--white);
  border: 1px solid var(--ivory-dark);
  border-radius: var(--radius);
  padding: 20px;
}
.feat-ico {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  font-size: 20px;
}
.feat-card h3 {
  font-family: -apple-system, 'Segoe UI', sans-serif;
  font-size: 15px;
  margin-bottom: 6px;
}
.feat-card p {
  font-family: -apple-system, 'Segoe UI', sans-serif;
  font-size: 13px;
  color: var(--text-muted);
}

/* SECURITY */
.safety-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 16px;
  align-items: start;
}
.safety-main {
  background: var(--white);
  border: 1px solid var(--ivory-dark);
  border-radius: 20px;
  padding: 24px;
}
.safety-main h3 {
  font-family: -apple-system, 'Segoe UI', sans-serif;
  font-size: 21px;
  margin-bottom: 10px;
}
.safety-desc {
  font-family: -apple-system, 'Segoe UI', sans-serif;
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.escrow-steps {
  display: flex;
  flex-direction: column;
}
.escrow-step {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  border-top: 1px solid var(--ivory-dark);
  padding-top: 12px;
  margin-top: 12px;
}
.escrow-step:first-child {
  border-top: 0;
  margin-top: 0;
  padding-top: 0;
}
.escrow-num {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(224, 123, 69, 0.12);
  color: var(--accent);
  font-family: -apple-system, 'Segoe UI', sans-serif;
  font-size: 11px;
  font-weight: 700;
}
.escrow-step h4 {
  font-family: -apple-system, 'Segoe UI', sans-serif;
  font-size: 14px;
  margin-bottom: 3px;
}
.escrow-step p {
  font-family: -apple-system, 'Segoe UI', sans-serif;
  font-size: 13px;
  color: var(--text-muted);
}
.stripe-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  padding: 8px 12px;
  border-radius: 10px;
  background: rgba(61, 122, 150, 0.08);
  border: 1px solid rgba(61, 122, 150, 0.22);
  font-family: -apple-system, 'Segoe UI', sans-serif;
  font-size: 12px;
  color: var(--blue);
}
.safety-side {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.safety-mini {
  background: var(--white);
  border: 1px solid var(--ivory-dark);
  border-radius: var(--radius);
  padding: 18px;
}
.safety-mini h4 {
  font-family: -apple-system, 'Segoe UI', sans-serif;
  font-size: 14px;
  margin-bottom: 6px;
}
.safety-mini p {
  font-family: -apple-system, 'Segoe UI', sans-serif;
  font-size: 13px;
  color: var(--text-muted);
}

/* SERVICES */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 12px;
}
.svc {
  background: var(--white);
  border: 1px solid var(--ivory-dark);
  border-radius: var(--radius);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.svc-tag {
  display: inline-block;
  width: fit-content;
  font-family: -apple-system, 'Segoe UI', sans-serif;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--blue);
  background: rgba(61, 122, 150, 0.08);
  padding: 3px 10px;
  border-radius: 20px;
}
.svc h3 {
  font-family: -apple-system, 'Segoe UI', sans-serif;
  font-size: 15px;
  font-weight: 600;
}
.svc p {
  font-family: -apple-system, 'Segoe UI', sans-serif;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.55;
}

/* EARN */
.earn-section {
  background: var(--primary);
  border-radius: 24px;
  padding: 4rem;
  color: var(--white);
  margin: 0 auto 5rem;
  max-width: 1100px;
}
.earn-section .eyebrow {
  color: #f3dcb6;
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.22);
}
.earn-section h2 {
  color: var(--white);
}
.earn-section h2 em {
  color: var(--gold);
}
.earn-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 2.5rem;
}
.earn-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.earn-dot {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  margin-top: 8px;
}
.earn-item h3 {
  font-family: -apple-system, 'Segoe UI', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}
.earn-item p {
  font-family: -apple-system, 'Segoe UI', sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.5;
}

/* FAQ */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 44px;
}
.faq-list {
  display: flex;
  flex-direction: column;
}
.faq-item {
  border-top: 1px solid var(--ivory-dark);
  padding: 18px 0;
}
.faq-item:last-child {
  border-bottom: 1px solid var(--ivory-dark);
}
.faq-item h3 {
  font-family: -apple-system, 'Segoe UI', sans-serif;
  font-size: 16px;
  margin-bottom: 8px;
}
.faq-item p {
  font-family: -apple-system, 'Segoe UI', sans-serif;
  font-size: 14px;
  color: var(--text-muted);
}

/* CTA */
.cta-wrap {
  padding: 0 24px 54px;
}
.cta-band {
  max-width: 1100px;
  margin: 0 auto;
  background: var(--blue);
  border-radius: 24px;
  padding: 48px 38px;
  display: flex;
  justify-content: space-between;
  gap: 26px;
  align-items: center;
  flex-wrap: wrap;
}
.cta-eyebrow {
  font-family: -apple-system, 'Segoe UI', sans-serif;
  font-size: 12px;
  letter-spacing: 1.3px;
  font-weight: 700;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  padding: 4px 10px;
  line-height: 1.25;
  margin-bottom: 10px;
  display: inline-block;
}
.cta-band h2 {
  color: var(--white);
  margin-bottom: 8px;
}
.cta-sub {
  font-family: -apple-system, 'Segoe UI', sans-serif;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
  max-width: 560px;
}
.cta-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.cta-band .btn-store {
  background: var(--primary);
}

/* FOOTER */
.footer-wrap {
  background: var(--primary);
  padding: 44px 24px 28px;
}
.footer {
  max-width: 1100px;
  margin: 0 auto;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  margin-bottom: 10px;
}
.footer-brand-logo {
  width: 28px;
  height: 28px;
  border-radius: 8px;
}
.footer-brand-name {
  font-family: -apple-system, 'Segoe UI', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
}
.footer-tagline {
  font-family: -apple-system, 'Segoe UI', sans-serif;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.68);
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-links a {
  font-family: -apple-system, 'Segoe UI', sans-serif;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
}
.footer-links a:hover {
  color: var(--white);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 14px;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}
.footer-bottom span {
  font-family: -apple-system, 'Segoe UI', sans-serif;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.62);
}
.footer-bottom .lang-switch a {
  color: rgba(255, 255, 255, 0.78);
  border-color: transparent;
}
.footer-bottom .lang-switch a.active {
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
}

/* MOBILE CTA */
.mobile-cta {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 210;
  padding: 10px 12px 14px;
  background: rgba(247, 242, 237, 0.97);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--ivory-dark);
}
.mobile-cta-inner {
  display: flex;
  gap: 8px;
}
.mobile-cta .btn-store {
  flex: 1;
  justify-content: center;
  min-width: 0;
  padding: 12px 14px;
}

.hero-cta .btn-store,
.cta-btns .btn-store {
  min-width: 170px;
  padding: 12px 22px;
}

/* RESPONSIVE */
@media (max-width: 1040px) {
  .hero {
    grid-template-columns: 1fr;
  }
  .hero-side {
    margin-top: 8px;
  }
  .faq-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 800px) {
  .nav-links {
    display: none;
  }
  .two-sides,
  .steps-grid,
  .features-grid,
  .safety-grid,
  .earn-grid {
    grid-template-columns: 1fr;
  }
  .trust-divider {
    display: none;
  }
  .cta-band {
    padding: 34px 24px;
  }
  .earn-section {
    padding: 2.5rem 1.5rem;
  }
  .phone-section {
    padding: 2.5rem 1.5rem;
  }
  .phone-frame {
    display: none;
  }
}

@media (max-width: 640px) {
  .hero-wrap {
    padding: 92px 16px 34px;
  }
  .section {
    padding: 54px 16px;
  }
  .cta-wrap {
    padding: 0 16px 26px;
  }
  .nav {
    padding: 0 12px;
  }
  .nav-cta {
    display: none;
  }
  .hero h1.hero-heading-ru {
    font-size: clamp(1.45rem, 5.4vw, 2rem);
    line-height: 1.14;
    max-width: 100%;
  }
  .stat-grid {
    grid-template-columns: 1fr 1fr;
  }
  .mobile-cta {
    display: block;
  }
  body {
    padding-bottom: 80px;
  }

  .eyebrow,
  .phone-text .section-label,
  .cta-eyebrow {
    font-size: 12px;
    letter-spacing: 1px;
  }

  .section-sub,
  .hero-sub {
    font-size: 17px;
    line-height: 1.72;
    color: #5c6c75;
  }
}
