:root {
  --container: 1160px;
  --glass-bg: linear-gradient(155deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.7));
  --glass-border: rgba(3, 7, 18, 0.18);
}

body {
  background:
    radial-gradient(circle at 12% 8%, rgba(86, 221, 121, 0.2), transparent 24%),
    radial-gradient(circle at 88% 16%, rgba(3, 7, 18, 0.08), transparent 20%),
    var(--color-bg);
  overflow-x: hidden;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(250, 249, 254, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--color-border);
}

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

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
  gap: var(--space-4);
  position: relative;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}

.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 0;
  background: url("/assets/logo.png") center/contain no-repeat;
  display: grid;
  place-items: center;
}

.nav-toggle {
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  border-radius: 10px;
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
}

.nav-toggle svg {
  width: 18px;
  height: 18px;
  color: var(--color-text);
}

.site-nav {
  display: none;
  flex-direction: column;
  gap: 10px;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  padding: 12px;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(8px);
  box-shadow: 0 18px 34px rgba(3, 7, 18, 0.12);
  z-index: 45;
}

.site-nav a {
  color: var(--color-text-muted);
  font-weight: 600;
  font-size: 14px;
  text-align: center;
  padding: 8px 10px;
  border-radius: 10px;
}

.site-nav.open {
  display: grid;
}

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

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 22%, rgba(86, 221, 121, 0.18), transparent 30%),
    radial-gradient(circle at 84% 14%, rgba(3, 7, 18, 0.08), transparent 28%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  gap: var(--space-6);
}

.hero-copy h1 {
  margin: 0 0 var(--space-3);
  font-size: clamp(34px, 6vw, 56px);
  line-height: 1.04;
}

.hero-copy p {
  margin: 0 0 var(--space-5);
  color: var(--color-text-muted);
  max-width: 58ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.hero-trust {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid rgba(3, 7, 18, 0.18);
  border-radius: 999px;
  padding: 7px 11px;
  font-size: 12px;
  color: var(--color-text-muted);
  background: rgba(255, 255, 255, 0.75);
}

.pill-icon {
  width: 22px;
  height: 22px;
  border-radius: 8px;
  background: #56dd79;
  color: #ffffff;
  display: inline-grid;
  place-items: center;
  flex-shrink: 0;
}

.pill-icon svg {
  width: 13px;
  height: 13px;
}

.hero-phones {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow: visible;
}

.hero-float-chip {
  position: absolute;
  z-index: 3;
  height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(3, 7, 18, 0.14);
  background: rgba(255, 255, 255, 0.84);
  color: #030712;
  font-size: 12px;
  font-weight: 700;
  backdrop-filter: blur(8px);
  box-shadow: 0 12px 26px rgba(3, 7, 18, 0.08);
}

.hero-float-chip::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #56dd79;
  margin-right: 8px;
}

.hero-float-chip-a {
  top: 16px;
  left: 6%;
  animation: floaty 4.2s ease-in-out infinite;
}

.hero-float-chip-b {
  top: 104px;
  right: 2%;
  animation: floaty 4.9s ease-in-out infinite 0.2s;
}

.hero-float-chip-c {
  bottom: 60px;
  left: 10%;
  animation: floaty 4.6s ease-in-out infinite 0.5s;
}

.hero-glow {
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  z-index: 0;
  filter: blur(2px);
}

.hero-glow-a {
  width: 190px;
  height: 190px;
  background: radial-gradient(circle, rgba(86, 221, 121, 0.34), rgba(86, 221, 121, 0.04));
  left: 12%;
  top: 34%;
}

.hero-glow-b {
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(3, 7, 18, 0.16), rgba(3, 7, 18, 0.02));
  right: 12%;
  top: 6%;
}

.phone-shot {
  width: min(70vw, 250px);
  border-radius: 30px;
  border: 1px solid rgba(3, 7, 18, 0.2);
  box-shadow:
    0 0 0 8px #ffffff,
    0 0 0 9px rgba(3, 7, 18, 0.14),
    var(--shadow-card);
  background: var(--color-surface);
  position: absolute;
  left: 50%;
  top: 0;
  transition: transform 0.28s ease, opacity 0.28s ease;
  z-index: 2;
}

.phone-shot-back {
  transform: translate(calc(-50% + 38px), 38px);
  opacity: 0.92;
  z-index: 1;
}

.phone-shot-front {
  transform: translate(-50%, 0);
  z-index: 2;
}

.hero-phones.layout-g .phone-shot-front {
  transform: translate(calc(-50% - 54px), 4px);
  z-index: 2;
  opacity: 1;
}

.hero-phones.layout-g .phone-shot-back {
  transform: translate(calc(-50% + 54px), 36px);
  z-index: 1;
  opacity: 0.9;
}

.section {
  padding: 30px 0;
}

.decor-section {
  position: relative;
}

.decor-section::before,
.decor-section::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.decor-section::before {
  width: 10px;
  height: 10px;
  background: rgba(86, 221, 121, 0.55);
  left: 5%;
  top: 28px;
}

.decor-section::after {
  width: 6px;
  height: 6px;
  background: rgba(3, 7, 18, 0.35);
  right: 8%;
  top: 56px;
}

.section-title {
  margin: 0 0 8px;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.08;
  position: relative;
}

.section-title::after {
  content: "";
  display: block;
  width: 74px;
  height: 6px;
  margin-top: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, #56dd79, rgba(86, 221, 121, 0.25));
}

.section-text {
  margin: 0 0 var(--space-5);
  color: var(--color-text-muted);
  max-width: 72ch;
}

.metric-grid,
.feature-grid,
.offer-grid,
.blog-grid {
  display: grid;
  gap: var(--space-4);
}

.catalog-preview-grid {
  display: grid;
  gap: var(--space-4);
  min-width: 0;
}

.catalog-preview-block {
  padding: 0;
  min-width: 0;
  overflow: hidden;
}

.catalog-preview-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}

.catalog-preview-head h3 {
  margin: 0;
  font-size: 22px;
}

.preview-carousel {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(190px, 78%);
  gap: 12px;
  width: 100%;
  min-width: 0;
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 4px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

.preview-item {
  border: 1px solid rgba(3, 7, 18, 0.14);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.8);
  padding: 14px;
  min-height: 132px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  scroll-snap-align: start;
}

.preview-item-top {
  margin-bottom: 16px;
  min-height: 42px;
  display: flex;
  align-items: center;
}

.preview-item-logo {
  width: 146px;
  height: 80px;
  object-fit: contain;
  object-position: left center;
  display: block;
}

.preview-item-logo-lender {
  width: 164px;
  height: 80px;
}

.preview-item-title {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
}

.preview-item-meta {
  margin: 0;
  color: var(--color-text-muted);
  font-size: 14px;
}

.preview-item-foot {
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
  width: fit-content;
  height: 24px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(86, 221, 121, 0.18);
  color: #1f6b42;
  font-size: 12px;
  font-weight: 700;
}

.preview-item-viewall {
  text-decoration: none;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-style: dashed;
  background: rgba(255, 255, 255, 0.55);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.preview-item-viewall:hover {
  transform: translateY(-2px);
  border-color: rgba(86, 221, 121, 0.8);
  box-shadow: 0 10px 24px rgba(3, 7, 18, 0.12);
}

.preview-viewall-label {
  font-weight: 700;
  color: var(--color-text);
}

.preview-viewall-arrow {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: #56dd79;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.module-grid,
.steps-grid,
.faq-grid,
.roadmap-grid,
.purpose-grid {
  display: grid;
  gap: var(--space-4);
}


.module-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: var(--space-4);
  backdrop-filter: blur(8px);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.module-card h3 {
  margin: 0 0 8px;
  font-size: 20px;
}

.card-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: inline-grid;
  place-items: center;
  margin: 10px 0;
  background: #56dd79;
  border: 1px solid #56dd79;
  color: #ffffff;
}

.card-icon svg {
  width: 22px;
  height: 22px;
}

.module-card p {
  margin: 0 0 var(--space-4);
  color: var(--color-text-muted);
}

.step-card {
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  background: var(--glass-bg);
  padding: var(--space-4);
  backdrop-filter: blur(8px);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.step-index {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: #56dd79;
  border: 1px solid #56dd79;
  margin-bottom: 10px;
  color: #ffffff;
}

.step-index svg {
  width: 22px;
  height: 22px;
}

.step-card h3 {
  margin: 0 0 8px;
  font-size: 20px;
}

.step-card p {
  margin: 0;
  color: var(--color-text-muted);
}

.roadmap-card {
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  background: var(--glass-bg);
  padding: var(--space-4);
  backdrop-filter: blur(8px);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.roadmap-card h3 {
  margin: 0 0 8px;
  font-size: 20px;
}

.roadmap-card p {
  margin: 0;
  color: var(--color-text-muted);
}

.purpose-card {
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  background: var(--glass-bg);
  padding: var(--space-4);
  backdrop-filter: blur(8px);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.module-card:hover,
.step-card:hover,
.roadmap-card:hover,
.purpose-card:hover,
.metric:hover {
  transform: translateY(-4px);
  border-color: rgba(86, 221, 121, 0.58);
  box-shadow: 0 16px 30px rgba(3, 7, 18, 0.1);
}

.purpose-card h3 {
  margin: 0 0 8px;
  font-size: 20px;
}

.purpose-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: inline-grid;
  place-items: center;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 10px;
  background: #56dd79;
  border: 1px solid #56dd79;
  color: #ffffff;
}

.purpose-icon svg {
  width: 22px;
  height: 22px;
}

.purpose-card p {
  margin: 0;
  color: var(--color-text-muted);
}

.faq-item {
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  background: var(--glass-bg);
  overflow: hidden;
  backdrop-filter: blur(8px);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  font-weight: 600;
  padding: var(--space-4);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.faq-item summary::after {
  content: "+";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  border: 1px solid rgba(3, 7, 18, 0.2);
  color: var(--color-text);
  font-size: 16px;
  line-height: 1;
  font-weight: 700;
  flex: 0 0 22px;
}

.faq-item[open] summary::after {
  content: "−";
}

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

.faq-item p {
  margin: 0;
  padding: 0 var(--space-4) var(--space-4);
  color: var(--color-text-muted);
}

.switcher {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  backdrop-filter: blur(8px);
  box-shadow: 0 14px 34px rgba(3, 7, 18, 0.07);
}

.switcher-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-bottom: var(--space-4);
}

.switcher-tab {
  height: 36px;
  border-radius: 999px;
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  color: var(--color-text-muted);
  padding: 0 14px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

.switcher-tab.active {
  background: var(--color-primary);
  border-color: transparent;
  color: var(--color-text);
  box-shadow: 0 8px 20px rgba(86, 221, 121, 0.35);
}

.switcher-panel {
  display: none;
  gap: var(--space-4);
}

.switcher-panel.active {
  display: grid;
}

.switcher-card {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-surface);
  overflow: hidden;
}

.switcher-card img {
  width: 100%;
  height: 270px;
  object-fit: cover;
  display: block;
}

.switcher-body {
  padding: var(--space-4);
}

.switcher-body h3 {
  margin: 0 0 10px;
  font-size: 24px;
  line-height: 1.15;
}

.switcher-body p {
  margin: 0 0 var(--space-4);
  color: var(--color-text-muted);
}

.switcher-list {
  display: grid;
  gap: var(--space-3);
}

.switcher-item {
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.55);
  padding: var(--space-3);
}

.switcher-item strong {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
  font-size: 15px;
}

.switcher-item-icon {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(86, 221, 121, 0.2);
  border: 1px solid rgba(86, 221, 121, 0.45);
  color: #2b9a4f;
  flex-shrink: 0;
}

.switcher-item-icon svg {
  width: 14px;
  height: 14px;
  display: block;
}

.switcher-item span {
  color: var(--color-text-muted);
  font-size: 14px;
}

.metric {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: var(--space-4);
  backdrop-filter: blur(8px);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.metric strong {
  display: block;
  font-size: 30px;
  line-height: 1;
  margin-bottom: 8px;
}

.metric span {
  color: var(--color-text-muted);
  font-size: 14px;
}

.feature-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.feature-cover {
  height: 170px;
}

.feature-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.feature-body {
  padding: var(--space-4);
}

.feature-body h3 {
  margin: 0 0 var(--space-2);
  font-size: 20px;
}

.feature-body p {
  margin: 0 0 var(--space-4);
  color: var(--color-text-muted);
}

.offer-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: var(--space-4);
  backdrop-filter: blur(8px);
}

.offer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-2);
  margin-bottom: var(--space-3);
}

.offer-title {
  margin: 0;
  font-size: 18px;
}

.offer-rate {
  margin: 0 0 10px;
  font-size: 30px;
  line-height: 1;
}

.offer-meta {
  margin: 0 0 var(--space-4);
  color: var(--color-text-muted);
  font-size: 14px;
}

.split {
  display: grid;
  gap: var(--space-4);
}

.tracker-card {
  background: linear-gradient(135deg, #ffffff, rgba(255, 255, 255, 0.75));
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
}

.cockpit {
  background: radial-gradient(circle at top right, rgba(86, 221, 121, 0.18), transparent 46%),
    var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: var(--space-4);
  backdrop-filter: blur(8px);
}

.cockpit-grid {
  display: grid;
  gap: var(--space-3);
}

.cockpit-card {
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.75);
  padding: var(--space-3);
}

.cockpit-label {
  margin: 0 0 6px;
  color: var(--color-text-muted);
  font-size: 12px;
}

.cockpit-value {
  margin: 0;
  font-size: 32px;
  line-height: 1;
}

.timeline {
  display: grid;
  gap: 10px;
}

.timeline-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.timeline-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--color-primary);
  margin-top: 6px;
  flex-shrink: 0;
}

.timeline-copy p {
  margin: 0;
  font-size: 14px;
}

.timeline-copy span {
  color: var(--color-text-muted);
  font-size: 13px;
}

.tracker-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
}

.ring {
  width: 66px;
  height: 66px;
  border-radius: 999px;
  border: 7px solid var(--color-primary);
  border-right-color: rgba(3, 7, 18, 0.15);
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 700;
}

.ring.warn {
  border-color: #f1cc2b;
  border-right-color: rgba(3, 7, 18, 0.15);
}

.quote {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: var(--space-5);
  backdrop-filter: blur(8px);
}

.quote p {
  margin: 0 0 var(--space-3);
  color: var(--color-text-muted);
  font-size: 15px;
}

.quote strong {
  font-size: 14px;
}

.blog-card {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  backdrop-filter: blur(8px);
  display: block;
  color: var(--color-text);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.accent-dark-chip {
  display: inline-flex;
  align-items: center;
  height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  background: #030712;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}

.blog-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.blog-body {
  padding: var(--space-4);
}

.blog-body h3 {
  margin: 0 0 var(--space-2);
  font-size: 20px;
  color: var(--color-text);
  line-height: 1.2;
}

.blog-body p {
  margin: 0;
  color: var(--color-text-muted);
}

.blog-card:hover {
  transform: translateY(-2px);
  border-color: rgba(3, 7, 18, 0.28);
  box-shadow: 0 10px 24px rgba(3, 7, 18, 0.08);
}

.cta {
  padding: 38px 0 56px;
}

.cta-box {
  background: var(--color-text);
  color: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: grid;
  gap: var(--space-4);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.cta-box::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(86, 221, 121, 0.34), rgba(86, 221, 121, 0.02));
  right: -80px;
  top: -110px;
  pointer-events: none;
}

.cta-box::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0));
  left: -60px;
  bottom: -80px;
  pointer-events: none;
}

.cta-box > * {
  position: relative;
  z-index: 1;
}

.cta-kicker {
  display: inline-flex;
  align-items: center;
  height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(86, 221, 121, 0.22);
  border: 1px solid rgba(86, 221, 121, 0.5);
  color: #d6ffe2;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 10px;
}

.cta-points {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cta-point {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 32px;
  padding: 6px 11px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.92);
  font-size: 13px;
  font-weight: 600;
}

.cta-point span {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  background: #56dd79;
  color: #081122;
  font-size: 12px;
  line-height: 1;
  font-weight: 800;
}

.cta-box h2 {
  margin: 0;
  font-size: clamp(26px, 4vw, 38px);
}

.cta-box p {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
}

.cta-box .btn-secondary {
  width: fit-content;
  box-shadow: 0 12px 22px rgba(3, 7, 18, 0.35);
}

.cta-box .btn-secondary:hover {
  box-shadow: 0 14px 28px rgba(86, 221, 121, 0.35);
}

.store-links {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 132px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 10px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 13px;
  font-weight: 600;
}

.btn {
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

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

.btn-primary:hover {
  box-shadow: 0 12px 24px rgba(86, 221, 121, 0.35);
}

@media (max-width: 640px) {
  .container {
    width: calc(100% - 20px);
  }

  .header-inner {
    min-height: 58px;
    gap: 8px;
  }

  .brand {
    min-width: 0;
    gap: 8px;
  }

  .brand span:last-child {
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 150px;
  }

  .brand-mark {
    width: 28px;
    height: 28px;
  }

  .nav-toggle {
    width: 36px;
    height: 32px;
    border-radius: 8px;
    font-size: 11px;
  }

  .section {
    padding: 48px 0;
  }

  .section-title {
    font-size: 38px;
  }

  .section-text {
    font-size: 14px;
    line-height: 1.45;
  }

  .switcher {
    padding: 12px;
  }

  .switcher-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: thin;
  }

  .switcher-tab {
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .switcher-card img {
    height: 150px;
  }

  .switcher-body {
    padding: 12px;
  }

  .switcher-body h3 {
    font-size: 32px;
    line-height: 1.15;
  }

  .switcher-body p {
    margin-bottom: 0;
    font-size: 14px;
    line-height: 1.45;
  }

  .switcher-item {
    padding: 10px;
  }

  .switcher-item strong {
    font-size: 14px;
  }

  .switcher-item span {
    font-size: 13px;
    line-height: 1.4;
  }

  .catalog-preview-head h3 {
    font-size: 26px;
  }

  .preview-carousel {
    grid-auto-columns: minmax(150px, 72%);
    gap: 10px;
  }

  .preview-item {
    min-height: 132px;
    padding: 12px;
  }

  .preview-item-logo {
    width: 120px;
    height: 66px;
  }

  .preview-item-logo-lender {
    width: 136px;
    height: 66px;
  }

  .module-card {
    padding: 14px;
  }

  .module-card h3 {
    font-size: 30px;
    line-height: 1.2;
  }

  .module-card p {
    font-size: 14px;
    line-height: 1.45;
  }
}


@media (min-width: 768px) {
  .site-nav {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 14px;
    position: static;
    top: auto;
    left: auto;
    right: auto;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    backdrop-filter: none;
    box-shadow: none;
  }

  .nav-toggle {
    display: none;
  }

  .hero {
    padding: 56px 0 84px;
  }

  .hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
  }

  .hero-phones {
    min-height: 640px;
  }

  .hero-float-chip-a {
    top: 14px;
    left: 4%;
  }

  .hero-float-chip-b {
    top: 110px;
    right: 0;
  }

  .hero-float-chip-c {
    bottom: 88px;
    left: 6%;
  }

  .phone-shot {
    width: min(30vw, 270px);
  }

  .hero-phones.layout-g .phone-shot-front {
    transform: translate(calc(-50% - 72px), 0);
  }

  .hero-phones.layout-g .phone-shot-back {
    transform: translate(calc(-50% + 72px), 42px);
  }

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

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

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

  .catalog-preview-grid {
    grid-template-columns: 1fr;
  }

  .preview-carousel {
    grid-auto-columns: minmax(190px, 64%);
  }

  .switcher-panel.active {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: start;
  }

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

  .split {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
  }

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

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

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

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

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

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

  .cta-box {
    grid-template-columns: 1fr auto;
    align-items: end;
    padding: 36px;
  }

}

@media (min-width: 1024px) {
  .module-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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