:root {
  color-scheme: dark;
  --bg: #090909;
  --bg-soft: #111111;
  --panel: rgba(27, 27, 27, 0.82);
  --panel-strong: rgba(20, 20, 20, 0.94);
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 106, 0, 0.58);
  --text: #f4f4f4;
  --muted: #9f9f9f;
  --orange: #ff6a00;
  --orange-deep: #b94b00;
  --yellow: #ffc400;
  --green: #70c84e;
  --cyan: #10b8d6;
  --violet: #7f65ff;
  --red: #e14040;
  --radius: 8px;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.48);
  font-family: Inter, Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 80% 0%, rgba(255, 106, 0, 0.16), transparent 28rem),
    linear-gradient(180deg, #0a0a0a 0%, #070707 42%, #0d0d0d 100%);
  font-family: Inter, Arial, Helvetica, sans-serif;
  line-height: 1.5;
  letter-spacing: 0;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), transparent 74%);
}

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

button,
input {
  font: inherit;
}

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

.section {
  padding: 56px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 12px;
  min-height: 68px;
  padding: 10px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(9, 9, 9, 0.76);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand-mark {
  position: relative;
  display: block;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  isolation: isolate;
  background: #070707;
  border: 1px solid rgba(255, 106, 0, 0.28);
  box-shadow: 0 0 24px rgba(255, 106, 0, 0.32);
}

.brand-mark::before {
  position: absolute;
  inset: -9px;
  z-index: -1;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 106, 0, 0.48), rgba(255, 106, 0, 0.14) 48%, transparent 72%),
    conic-gradient(from 0deg, transparent, rgba(255, 174, 70, 0.5), transparent 42%);
  content: "";
  filter: blur(7px);
  opacity: 0.64;
  animation: logo-glow 3200ms ease-in-out infinite;
}

.brand-mark img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 18px;
  line-height: 1;
}

.brand small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
}

.nav {
  display: none;
  justify-content: center;
  gap: 8px;
  color: #d7d7d7;
  font-size: 14px;
}

.nav a,
.header-cta,
.offer-jump a {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
}

.nav a {
  padding: 9px 13px;
}

.header-cta {
  display: none;
  padding: 10px 14px;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  background: rgba(255, 106, 0, 0.14);
  border-color: rgba(255, 106, 0, 0.34);
  animation: cta-pulse 2600ms ease-in-out infinite;
}

.menu-toggle {
  display: inline-grid;
  justify-self: end;
  width: 42px;
  height: 42px;
  place-items: center;
  gap: 4px;
  padding: 10px;
  border: 1px solid rgba(255, 106, 0, 0.26);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #fff;
  transition: transform 180ms ease, opacity 180ms ease, background 180ms ease;
}

.menu-toggle.is-open span {
  background: var(--orange);
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-menu {
  grid-column: 1 / -1;
  display: grid;
  gap: 8px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: max-height 220ms ease, opacity 180ms ease, transform 180ms ease;
}

.mobile-menu.is-open {
  max-height: 280px;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mobile-menu a {
  min-height: 44px;
  display: flex;
  align-items: center;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: #f4f4f4;
  background: rgba(255, 255, 255, 0.045);
  font-weight: 800;
}

.mobile-menu-cta {
  justify-content: center;
  border-color: rgba(255, 106, 0, 0.36) !important;
  background: rgba(255, 106, 0, 0.16) !important;
  animation: cta-pulse 2600ms ease-in-out infinite;
}

.hero {
  position: relative;
  min-height: calc(100svh - 68px);
  display: grid;
  align-items: end;
  overflow: hidden;
  padding-top: 42px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 8, 8, 0.98) 0%, rgba(8, 8, 8, 0.78) 46%, rgba(8, 8, 8, 0.26) 100%),
    linear-gradient(0deg, #090909 0%, rgba(9, 9, 9, 0.12) 42%),
    url("assets/qpay-hero-bg.png") center / cover no-repeat;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 22px;
  padding-bottom: 32px;
}

.hero-copy {
  max-width: 620px;
}

.doc-chip,
.section-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border: 1px solid rgba(255, 106, 0, 0.28);
  border-radius: 8px;
  color: #fff;
  background: rgba(185, 75, 0, 0.42);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.doc-chip {
  padding: 8px 12px;
}

.section-kicker {
  padding: 7px 11px;
  color: var(--orange);
  background: rgba(255, 106, 0, 0.08);
}

.eyebrow {
  margin: 18px 0 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

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

h1 {
  margin-bottom: 12px;
  font-size: clamp(42px, 12vw, 86px);
  line-height: 0.92;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 12px;
  font-size: clamp(30px, 8vw, 52px);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 18px;
  line-height: 1.2;
}

h4 {
  margin: 0 0 5px;
  color: #f2f2f2;
  font-size: 16px;
  line-height: 1.2;
}

.hero-lead {
  max-width: 430px;
  margin-bottom: 16px;
  font-size: clamp(24px, 7vw, 42px);
  font-weight: 900;
  line-height: 1.06;
}

.hero-region {
  display: inline-block;
  margin-bottom: 22px;
  padding-left: 14px;
  border-left: 7px solid var(--orange);
  color: var(--orange);
  font-size: 26px;
  font-weight: 900;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 17px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

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

.button.primary {
  color: #fff;
  background: var(--orange);
  box-shadow: 0 14px 40px rgba(255, 106, 0, 0.26);
}

.button.ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
}

.glass {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.proof-panel {
  display: grid;
  gap: 10px;
  padding: 12px;
}

.proof-item {
  position: relative;
  min-height: 74px;
  padding: 13px 14px;
  overflow: hidden;
  border-left: 7px solid var(--orange);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.proof-item::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background: linear-gradient(105deg, transparent 0%, rgba(255, 106, 0, 0.16) 44%, transparent 72%);
  transform: translateX(-120%);
}

.proof-panel.reveal .proof-item {
  opacity: 0;
  transform: translateX(-18px);
}

.proof-panel.is-visible .proof-item {
  animation: proof-enter 360ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.proof-panel.is-visible .proof-item::after {
  animation: proof-sheen 520ms ease-out both;
}

.proof-panel.is-visible .proof-item:nth-child(1),
.proof-panel.is-visible .proof-item:nth-child(1)::after {
  animation-delay: 40ms;
}

.proof-panel.is-visible .proof-item:nth-child(2),
.proof-panel.is-visible .proof-item:nth-child(2)::after {
  animation-delay: 105ms;
}

.proof-panel.is-visible .proof-item:nth-child(3),
.proof-panel.is-visible .proof-item:nth-child(3)::after {
  animation-delay: 170ms;
}

.proof-panel.is-visible .proof-item:nth-child(4),
.proof-panel.is-visible .proof-item:nth-child(4)::after {
  animation-delay: 235ms;
}

.proof-item span,
.proof-item strong {
  display: block;
}

.proof-item span {
  color: var(--muted);
  font-size: 13px;
}

.proof-item strong {
  margin-top: 2px;
  color: var(--orange);
  font-size: 22px;
  line-height: 1.1;
}

.trust-strip {
  padding: 34px 0 18px;
}

.trust-grid {
  display: grid;
  gap: 18px;
}

.trust-grid p,
.section-head p,
.contact-copy p {
  color: var(--muted);
  font-size: 17px;
}

.feature-carousel {
  max-width: 100%;
  overflow: hidden;
}

.feature-slider-ui {
  display: grid;
  grid-template-columns: 42px 1fr 42px;
  align-items: center;
  gap: 10px;
  width: 100%;
  max-width: 100%;
  margin-bottom: 12px;
  padding: 8px;
}

.feature-arrow {
  position: relative;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, opacity 180ms ease, transform 180ms ease;
}

.feature-arrow:hover {
  border-color: rgba(255, 106, 0, 0.42);
  background: rgba(255, 106, 0, 0.12);
}

.feature-arrow:active {
  transform: scale(0.96);
}

.feature-arrow::before {
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
}

.feature-prev::before {
  content: "<";
}

.feature-next::before {
  content: ">";
}

.feature-arrow.is-disabled {
  opacity: 0.42;
}

.feature-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.feature-dot {
  width: 34px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  cursor: pointer;
  transition: width 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.feature-dot.is-active {
  width: 48px;
  background: var(--orange);
  box-shadow: 0 0 20px rgba(255, 106, 0, 0.36);
}

.feature-grid {
  display: flex;
  gap: 14px;
  width: 100%;
  max-width: 100%;
  margin-right: -16px;
  padding: 2px 16px 10px 0;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-padding-left: 0;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.feature-grid::-webkit-scrollbar {
  display: none;
}

.feature-pillar {
  position: relative;
  flex: 0 0 min(88%, 360px);
  padding: 16px;
  overflow: hidden;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.feature-pillar::before,
.rate-block::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  content: "";
  background: var(--orange);
  box-shadow: 0 0 20px rgba(255, 106, 0, 0.5);
}

.feature-pillar header {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 11px;
  padding: 8px 0 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-pillar header span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 8px;
  color: var(--orange);
  background: rgba(255, 106, 0, 0.12);
  font-weight: 950;
}

.feature-pillar header h3 {
  margin: 0;
}

.benefit-list {
  display: grid;
  gap: 0;
}

.benefit-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  padding: 15px 0;
}

.benefit-item .code {
  margin-bottom: 0;
}

.benefit-item + .benefit-item {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.code {
  display: inline-grid;
  min-width: 56px;
  height: 36px;
  margin-bottom: 12px;
  place-items: center;
  border-radius: 7px;
  color: var(--orange);
  background: rgba(255, 106, 0, 0.12);
  font-size: 13px;
  font-weight: 900;
}

.benefit-item p {
  margin-bottom: 0;
  color: var(--muted);
}

.confidential {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  margin-top: 16px;
  padding: 14px;
  border-color: rgba(255, 106, 0, 0.62);
  background: linear-gradient(90deg, rgba(255, 106, 0, 0.26), rgba(255, 106, 0, 0.06));
}

.confidential > span {
  display: grid;
  width: 52px;
  min-height: 52px;
  place-items: center;
  border-radius: 8px;
  background: var(--orange);
  color: #fff;
  font-weight: 900;
}

.confidential h3 {
  color: var(--orange);
}

.confidential p {
  margin-bottom: 0;
  color: #c9c9c9;
}

.offers-section {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(255, 106, 0, 0.08), rgba(9, 9, 9, 0));
}

.section-head {
  margin-bottom: 18px;
}

.offer-jump {
  position: sticky;
  top: 78px;
  z-index: 10;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 16px;
  padding: 8px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.32);
}

.offer-jump a {
  min-height: 42px;
  display: grid;
  place-items: center;
  color: #f5f5f5;
  font-size: 13px;
  font-weight: 900;
}

.offer-layout {
  display: grid;
  gap: 16px;
}

.offer-card {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(12, 12, 12, 0.86);
  box-shadow: var(--shadow);
  scroll-margin-top: 146px;
}

.offer-title {
  position: relative;
  overflow: hidden;
  margin: 10px;
  border: 3px solid var(--accent);
  background: rgba(255, 255, 255, 0.06);
}

.offer-title > span {
  display: block;
  padding: 12px 16px;
  color: var(--accent);
  font-size: 28px;
  font-weight: 950;
  line-height: 1;
}

.offer-toggle {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  width: 100%;
  min-height: 58px;
  padding: 0;
  border: 0;
  color: var(--accent);
  background: transparent;
  cursor: pointer;
  text-align: left;
}

.offer-toggle > span:first-child {
  display: block;
  padding: 12px 16px;
  color: var(--accent);
  font-size: 28px;
  font-weight: 950;
  line-height: 1;
}

.offer-toggle-icon {
  position: relative;
  display: grid;
  width: 54px;
  align-self: stretch;
  place-items: center;
  color: var(--accent);
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
}

.offer-toggle-icon::before {
  width: 11px;
  height: 11px;
  border-right: 3px solid currentColor;
  border-bottom: 3px solid currentColor;
  content: "";
  transform: translateY(-3px) rotate(45deg);
  animation: offer-arrow-bounce 1050ms ease-in-out infinite;
  transition: transform 220ms ease, opacity 180ms ease;
}

.offer-toggle-icon::after {
  content: none;
}

.offer-collapsible.is-open .offer-toggle-icon::before {
  animation: none;
  transform: translateY(3px) rotate(225deg);
}

.offer-collapsible.is-open .offer-toggle-icon::after {
  content: none;
}

.offer-content {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: max-height 420ms ease, opacity 260ms ease, transform 260ms ease;
}

.offer-collapsible.is-open .offer-content {
  max-height: 2600px;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.offer-collapsible.is-collapsed {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.018));
}

.offer-orange {
  --accent: var(--orange);
}

.offer-yellow {
  --accent: var(--yellow);
}

.offer-green {
  --accent: var(--green);
}

.rate-block {
  position: relative;
  margin: 12px 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.045);
}

.offer-card .rate-block::before {
  background: var(--accent);
  box-shadow: 0 0 18px color-mix(in srgb, var(--accent) 40%, transparent);
}

.rate-block h3 {
  margin: 0;
  padding: 15px 16px 11px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--accent);
  font-size: 16px;
  text-transform: uppercase;
}

.block-head {
  display: grid;
  gap: 4px;
  padding: 13px 16px 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.block-head h3 {
  padding: 0;
  border-bottom: 0;
}

.block-head span {
  color: #858585;
  font-size: 12px;
  font-weight: 800;
}

.crypto-block {
  --accent: var(--cyan);
  background: rgba(0, 163, 190, 0.08);
}

.rub-block {
  --accent: var(--violet);
  background: rgba(127, 101, 255, 0.08);
}

.crypto-block p {
  margin: 0;
  padding: 13px 16px;
  color: #afafaf;
  background: rgba(0, 163, 190, 0.08);
}

.rate-list {
  margin: 0;
}

.rate-list div {
  display: grid;
  grid-template-columns: minmax(112px, 0.9fr) minmax(0, 1.1fr);
  gap: 10px;
  padding: 8px 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.025);
}

.rate-list div:nth-child(even) {
  background: rgba(255, 255, 255, 0.05);
}

.rate-list dt {
  color: #9c9c9c;
}

.rate-list dd {
  margin: 0;
  color: #f4f4f4;
  font-weight: 900;
  text-align: right;
  overflow-wrap: anywhere;
}

.restricted {
  margin: 12px 10px 14px;
  padding-bottom: 14px;
  border: 1px solid rgba(225, 64, 64, 0.62);
  background: rgba(225, 64, 64, 0.08);
}

.restricted h3 {
  margin: 0 0 12px;
  padding: 13px 16px;
  border-bottom: 1px solid rgba(225, 64, 64, 0.34);
  color: var(--red);
  font-size: 15px;
}

.restricted p {
  margin: 0;
  padding: 0 16px 8px;
  color: #c99b9b;
}

.contact-section {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-grid {
  display: grid;
  gap: 18px;
}

.contact-copy h2 {
  max-width: 660px;
}

.contact-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.contact-badges span {
  padding: 8px 11px;
  border: 1px solid rgba(255, 106, 0, 0.28);
  border-radius: 8px;
  color: var(--orange);
  background: rgba(255, 106, 0, 0.08);
  font-weight: 900;
}

.lead-form {
  display: grid;
  gap: 12px;
  padding: 16px;
}

.lead-form label {
  display: grid;
  gap: 7px;
}

.lead-form label span {
  color: #d9d9d9;
  font-size: 13px;
  font-weight: 900;
}

.lead-form input {
  width: 100%;
  min-height: 50px;
  padding: 13px 14px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  outline: none;
  color: #fff;
  background: rgba(0, 0, 0, 0.28);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.lead-form input:focus {
  border-color: rgba(255, 106, 0, 0.78);
  box-shadow: 0 0 0 4px rgba(255, 106, 0, 0.12);
}

.lead-form input::placeholder {
  color: #737373;
}

.honeypot {
  position: absolute;
  left: -9999px;
}

.form-button {
  width: 100%;
  margin-top: 4px;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.form-status.success {
  color: var(--green);
}

.form-status.error {
  color: #ff8585;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 20px 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: #0b0b0b;
  color: #f4f4f4;
  white-space: nowrap;
}

.footer-brand {
  display: inline-flex;
  align-items: baseline;
  gap: 7px;
  color: #f4f4f4;
}

.footer-brand strong {
  color: #fff;
  font-size: 16px;
  line-height: 1.1;
}

.footer-brand span {
  color: var(--muted);
  font-size: 13px;
}

.footer-year {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
}

.footer-year::before {
  width: 1px;
  height: 16px;
  background: rgba(255, 255, 255, 0.14);
  content: "";
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 420ms ease, transform 420ms ease;
}

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

@keyframes proof-enter {
  from {
    opacity: 0;
    transform: translateX(-18px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes proof-sheen {
  from {
    transform: translateX(-120%);
  }

  to {
    transform: translateX(120%);
  }
}

@keyframes offer-arrow-bounce {
  0%,
  100% {
    opacity: 0.58;
    transform: translateY(-6px) rotate(45deg);
  }

  50% {
    opacity: 0.95;
    transform: translateY(4px) rotate(45deg);
  }
}

@keyframes cta-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(255, 106, 0, 0.18);
  }

  50% {
    box-shadow: 0 0 0 7px rgba(255, 106, 0, 0);
  }
}

@keyframes logo-glow {
  0%,
  100% {
    opacity: 0.44;
    transform: scale(0.92) rotate(0deg);
  }

  50% {
    opacity: 0.95;
    transform: scale(1.08) rotate(18deg);
  }
}

@media (min-width: 680px) {
  .container {
    width: min(1180px, calc(100% - 48px));
  }

  .feature-carousel {
    overflow: visible;
  }

  .feature-slider-ui {
    display: none;
  }

  .feature-grid {
    display: grid;
    margin-right: 0;
    padding: 0;
    overflow: visible;
    scroll-snap-type: none;
  }

  .feature-pillar {
    flex: auto;
    scroll-snap-align: none;
  }

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

  .contact-grid {
    grid-template-columns: 0.92fr 1.08fr;
    align-items: start;
  }

}

@media (min-width: 960px) {
  .site-header {
    padding-inline: 28px;
  }

  .nav {
    display: flex;
  }

  .header-cta {
    display: inline-flex;
  }

  .menu-toggle,
  .mobile-menu {
    display: none;
  }

  .hero {
    align-items: center;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) 380px;
    align-items: end;
    padding-bottom: 0;
  }

  .proof-panel {
    align-self: end;
  }

  .trust-grid {
    grid-template-columns: 0.8fr 1.2fr;
    align-items: end;
  }

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

  .offer-layout {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }

  .offer-collapsible[data-desktop-open] {
    background: rgba(12, 12, 12, 0.86);
  }

  .offer-collapsible[data-desktop-open] .offer-toggle {
    grid-template-columns: 1fr;
    cursor: default;
  }

  .offer-collapsible[data-desktop-open] .offer-toggle-icon {
    display: none;
  }

  .offer-collapsible[data-desktop-open] .offer-content {
    max-height: 2600px;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .offer-green {
    grid-column: span 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .offer-green .offer-title {
    grid-column: 1 / -1;
  }

  .offer-green .offer-content {
    grid-column: 1 / -1;
  }

  .offer-green.is-open .offer-content,
  .offer-green[data-desktop-open] .offer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1220px) {
  .offer-layout {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .offer-green {
    grid-column: auto;
    display: block;
  }

  .offer-green.is-open .offer-content,
  .offer-green[data-desktop-open] .offer-content {
    display: block;
  }
}

@media (max-width: 420px) {
  .container {
    width: min(100% - 24px, 1180px);
  }

  .site-header {
    grid-template-columns: 1fr auto;
  }

  .brand small {
    display: none;
  }

  .hero {
    min-height: calc(100svh - 64px);
  }

  .hero-actions .button {
    width: 100%;
  }

  .rate-list div {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .rate-list dd {
    text-align: left;
  }

  .offer-title > span,
  .offer-toggle > span:first-child {
    font-size: 24px;
  }

  .footer {
    gap: 8px;
    padding-inline: 12px;
  }

  .footer-brand {
    gap: 5px;
  }

  .footer-brand strong {
    font-size: 15px;
  }

  .footer-brand span {
    font-size: 12px;
  }

  .footer-year {
    gap: 8px;
    font-size: 11px;
  }

}

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

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

  .proof-panel.reveal .proof-item {
    opacity: 1;
    transform: none;
  }

  .proof-panel.is-visible .proof-item,
  .proof-panel.is-visible .proof-item::after,
  .offer-toggle-icon::before,
  .brand-mark::before,
  .header-cta,
  .mobile-menu-cta {
    animation: none;
  }
}
