:root {
  --primary: #0500ff;
  --primary-hover: #3333ff;
  --dark: #1a1a1a;
  --text-muted: rgba(26, 26, 26, 0.7);
  --border: rgba(26, 26, 26, 0.1);
  --white: #fff;
  --blue-soft: rgba(5, 0, 255, 0.05);
  --shadow-soft: 0 8px 32px rgba(0, 0, 0, 0.06);
  --radius-xl: 32px;
  --radius-lg: 20px;
  --container: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Manrope, Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--dark);
  background: #fff;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; }
img { max-width: 100%; display: block; }

.landing-container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.hidden-mobile { display: none; }

.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  display: flex;
  justify-content: center;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(50px);
  -webkit-backdrop-filter: blur(50px);
}
.header-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--container);
  gap: 20px;
  padding: 28px 48px;
}
.header-logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}
.header-logo-name {
  margin-left: 12px;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.header-nav-desktop {
  position: absolute;
  left: 50%;
  top: 50%;
  display: flex;
  align-items: center;
  gap: 36px;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.header-nav-item {
  position: relative;
  padding: 8px 0;
  color: rgba(26, 26, 26, 0.7);
  font-size: 16px;
  font-weight: 500;
  pointer-events: auto;
  transition: color 0.2s ease;
}
.header-nav-item:hover,
.header-nav-item.active { color: var(--primary); }
.header-right-desktop {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.header-language-btn,
.header-connect-btn,
.simple-hero-cta,
.simple-hero-cta-secondary,
.banner-cta,
.cta-banner-button,
.main-footer-get-card-btn,
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
.header-language-btn {
  height: 44px;
  gap: 8px;
  padding: 12px;
  color: var(--primary);
  background: rgba(5, 0, 255, 0.13);
  border: 1px solid var(--primary);
}
.header-language-btn:hover { background: rgba(5, 0, 255, 0.13); }
.header-language-arrow { font-size: 10px; color: var(--primary); }
.header-connect-btn {
  height: 44px;
  padding: 12px 16px;
  color: #fff;
  background: var(--primary);
  font-size: 14px;
  font-weight: 500;
}
.header-connect-btn:hover { background: var(--primary-hover); }
.header-burger {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 8px;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.header-burger span {
  width: 24px;
  height: 2px;
  border-radius: 2px;
  background: #000;
  transition: background 0.2s ease;
}
.header-mobile-menu {
  position: absolute;
  top: 100%;
  right: 28px;
  left: 28px;
  z-index: 999;
  padding: 20px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(26, 26, 26, 0.1);
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
}
.header-mobile-menu[hidden] { display: none; }
.header-nav-mobile {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.header-mobile-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.header-language-btn-mobile {
  justify-content: space-between;
  width: 100%;
}
.header-connect-btn-mobile { width: 100%; }

.simple-hero { padding: 152px 0 0; background: transparent; }
.simple-hero-wrapper { padding-bottom: 132px; }
.simple-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 72px;
}
.simple-hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
  text-align: left;
}
.simple-hero-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  color: rgba(26, 26, 26, 0.8);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--blue-soft);
  border: 1px solid rgba(26, 26, 26, 0.2);
  border-radius: 999px;
}
.simple-hero-title {
  margin: 0;
  color: #000;
  font-size: 52px;
  font-weight: 600;
  line-height: 1.1;
}
.simple-hero-title-accent { color: var(--primary); }
.simple-hero-subtitle {
  max-width: 600px;
  margin: 0;
  color: var(--text-muted);
  font-size: 18px;
  line-height: 1.6;
}
.simple-hero-buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  max-width: 600px;
}
.simple-hero-cta,
.simple-hero-cta-secondary {
  min-height: 51px;
  height: 51px;
  padding: 0 32px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  text-align: center;
}
.simple-hero-cta { color: #fff; background: var(--primary); }
.simple-hero-cta:hover {
  background: var(--primary-hover);
  transform: translateY(-1px);
}
.simple-hero-cta-secondary {
  color: var(--primary);
  background: transparent;
  border: 2px solid var(--primary);
}
.simple-hero-cta-secondary:hover {
  color: var(--primary-hover);
  border-color: var(--primary-hover);
}
.simple-hero-image {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.simple-hero-image img {
  width: 90%;
  max-width: 700px;
  height: auto;
  object-fit: contain;
}

.trust-indicators { padding: 72px 0; background: #fff; }
.trust-indicators-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  align-items: center;
  gap: 48px;
}
.trust-indicator-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}
.trust-indicator-label {
  color: var(--dark);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
}
.trust-indicator-value {
  color: var(--dark);
  font-size: 32px;
  font-weight: 700;
  line-height: 1.4;
  white-space: nowrap;
  word-break: break-word;
}
.trust-indicator-number,
.trust-indicator-value-blue { color: var(--primary); }
.trust-indicator-text { color: var(--dark); }
.trust-indicator-text-blue { color: var(--primary); }
.trust-indicator-stars {
  display: flex;
  gap: 4px;
  color: var(--primary);
  font-size: 32px;
  line-height: 1;
}

.benefits {
  width: 100%;
  padding: 132px 0;
  overflow-x: hidden;
  background: transparent;
}
.benefits-header { margin-bottom: 88px; text-align: left; }
.benefits-title {
  margin: 0 0 16px;
  color: var(--dark);
  font-size: 48px;
  font-weight: 600;
}
.benefits-subtitle {
  margin: 0;
  color: var(--text-muted);
  font-size: 20px;
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  width: 100%;
}
.benefit-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 36px;
  text-align: left;
  background: #fff;
  border: 1px solid transparent;
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  cursor: pointer;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.benefit-card:hover {
  transform: translateY(-8px);
  border-color: rgba(5, 0, 255, 0.2);
}
.benefit-image {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 200px;
  margin-bottom: 28px;
  overflow: hidden;
  border-radius: 12px;
}
.benefit-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}
.benefit-card:hover .benefit-image img { transform: scale(1.05); }
.benefit-headline {
  width: 100%;
  margin: 0 0 16px;
  color: var(--dark);
  font-size: 21px;
  font-weight: 600;
  line-height: 1.3;
  transition: color 0.3s ease;
}
.benefit-card:hover .benefit-headline { color: var(--primary); }
.benefit-description {
  max-height: calc(1.6em * 2);
  margin: 0;
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.6;
}

.banner { width: 100%; padding: 112px 0 72px; }
.banner-wrapper {
  padding: 64px 48px;
  background: var(--primary);
  border: 0;
  border-radius: var(--radius-xl);
}
.banner-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 68px;
}
.banner-text { display: flex; flex-direction: column; gap: 20px; }
.banner-title {
  margin: 0;
  color: #fff;
  font-size: 56px;
  font-weight: 600;
  line-height: 1.2;
}
.banner-subtitle { margin: 0; color: #fff; font-size: 20px; }
.banner-cta {
  align-self: flex-start;
  flex-shrink: 0;
  gap: 8px;
  margin-left: 0;
  padding: 14px 32px;
  color: #fff;
  background: transparent;
  border: 1px solid #fff;
  font-size: 16px;
  font-weight: 500;
}
.banner-cta:hover { color: var(--primary); background: #fff; }
.banner-cta-arrow { color: #fff; font-size: 18px; transition: transform 0.2s ease, color 0.2s ease; }
.banner-cta:hover .banner-cta-arrow { color: var(--primary); transform: translateX(4px); }
.banner-image { display: flex; align-items: center; justify-content: flex-end; }

.faq-two-column { width: 100%; padding: 120px 0; background: transparent; }
.faq-two-column-header { margin-bottom: 60px; text-align: left; }
.faq-two-column-title {
  margin: 0 0 16px;
  color: #000;
  font-size: 48px;
  font-weight: 600;
}
.faq-two-column-subtitle { margin: 0; color: var(--text-muted); font-size: 20px; }
.faq-two-column-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: 40px;
}
.faq-two-column-questions {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-two-column-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 24px 28px;
  color: var(--dark);
  font-size: 18px;
  font-weight: 600;
  text-align: left;
  background: #fff;
  border: 1px solid rgba(26, 26, 26, 0.1);
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  cursor: pointer;
  transition: transform 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}
.faq-two-column-question:hover,
.faq-two-column-question.active {
  color: var(--primary);
  border-color: var(--primary);
  transform: translateY(-2px);
}
.faq-two-column-question span:last-child {
  flex-shrink: 0;
  font-size: 22px;
  transition: transform 0.3s ease;
}
.faq-two-column-question.active span:last-child { transform: rotate(90deg); }
.faq-two-column-answer {
  min-height: 200px;
  padding: 40px;
  background: #fff;
  border: 1px solid rgba(26, 26, 26, 0.1);
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}
.faq-two-column-answer-content {
  color: rgba(26, 26, 26, 0.85);
  font-size: 18px;
  line-height: 1.8;
}
.faq-two-column-answer-content p { margin: 0; }

.cta-banner { width: 100%; padding: 120px 0; background: transparent; }
.cta-banner-content {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  padding: 60px 40px;
  overflow: hidden;
  background: var(--primary);
  border: 0;
  border-radius: var(--radius-xl);
}
.cta-banner-text { display: flex; flex-direction: column; gap: 16px; }
.cta-banner-title {
  margin: 0;
  color: #fff;
  font-size: 56px;
  font-weight: 600;
  line-height: 1.2;
}
.cta-banner-subtitle { margin: 0; color: #fff; font-size: 20px; }
.cta-banner-button {
  align-self: flex-start;
  gap: 8px;
  padding: 14px 32px;
  color: #fff;
  background: transparent;
  border: 1px solid #fff;
  font-size: 16px;
  font-weight: 500;
}
.cta-banner-button:hover { color: var(--primary); background: #fff; }
.cta-banner-button-arrow { color: #fff; font-size: 18px; transition: transform 0.2s ease, color 0.2s ease; }
.cta-banner-button:hover .cta-banner-button-arrow { color: var(--primary); transform: translateX(4px); }
.cta-banner-image { display: flex; align-items: center; justify-content: flex-end; }
.cta-banner-image img {
  width: 70%;
  max-width: 500px;
  height: auto;
  object-fit: contain;
}

.main-footer {
  width: 100%;
  padding: 40px 0;
  background: transparent;
  border-top: 1px solid rgba(26, 26, 26, 0.1);
}
.main-footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.main-footer-logo-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
}
.main-footer-logo { display: flex; align-items: center; }
.main-footer-logo-name {
  color: var(--dark);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.main-footer-copyright {
  margin: 0;
  color: rgba(26, 26, 26, 0.5);
  font-size: 14px;
  text-align: center;
}
.main-footer-right { display: flex; align-items: center; justify-content: flex-end; }
.main-footer-get-card-btn {
  height: fit-content;
  padding: 8px 16px;
  color: #fff;
  background: var(--primary);
  border: 0;
  font-size: 14px;
  font-weight: 500;
}
.main-footer-get-card-btn:hover { background: var(--primary-hover); }

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2400;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: rgba(0, 0, 0, 0.5);
}
.modal-overlay[hidden] { display: none; }
.modal {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 2500;
  width: 90%;
  max-width: 550px;
  max-height: calc(100vh - 20px);
  overflow: visible;
  transform: translate(-50%, -50%);
}
.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  max-height: calc(100vh - 20px);
  padding: 1rem;
  overflow-y: auto;
  background: #fff;
  border-radius: 20px;
}
.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  color: #999;
  background: none;
  border: 0;
  font-size: 2rem;
  cursor: pointer;
  transition: color 0.3s ease;
}
.modal-close:hover { color: var(--dark); }
.modal-header {
  margin-bottom: 0.8rem;
  padding-bottom: 0.8rem;
  text-align: center;
  border-bottom: 1px solid #f0f0f0;
}
.modal-header h2 { margin: 0; color: var(--dark); font-size: 1.2rem; }
.steps-container { display: flex; flex: 1; flex-direction: column; gap: 0.6rem; }
.step {
  padding: 0.7rem;
  background: #f5f8ff;
  border: 2px solid var(--primary);
  border-radius: 10px;
  transition: opacity 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}
.step.inactive { opacity: 0.5; background: #f9f9f9; border-color: #e0e0e0; }
.step-header { display: flex; align-items: flex-start; gap: 0.6rem; margin-bottom: 0.3rem; }
.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  color: #fff;
  background: var(--primary);
  border-radius: 50%;
  font-size: 0.85rem;
  font-weight: 700;
}
.step.inactive .step-number { color: #999; background: #ddd; }
.step-title-group h3 { margin: 0 0 0.05rem; color: var(--dark); font-size: 0.9rem; font-weight: 600; }
.step-subtitle { margin: 0; color: #999; font-size: 0.75rem; }
.step-content { min-height: auto; margin-left: 36px; }
.step-content p { margin: 0 0 0.5rem; color: #666; font-size: 0.8rem; line-height: 1.3; }
.btn-primary {
  min-height: 36px;
  padding: 0.5rem 1rem;
  color: #fff;
  background: var(--primary);
  border: 0;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  text-align: center;
}
.btn-primary:hover:not(:disabled) { background: var(--primary-hover); }
.step-button { display: block; width: 100%; margin-top: 0.3rem; }

.toast {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 3000;
  max-width: min(420px, calc(100vw - 40px));
  padding: 14px 16px;
  color: #fff;
  background: #1a1a1a;
  border-radius: 14px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.toast.show { opacity: 1; transform: translateY(0); }
.toast.success { background: #16a34a; }
.toast.error { background: #dc2626; }

@media (min-width: 768px) { .hidden-mobile { display: inline; } }

@media (max-width: 1024px) {
  .header-nav-desktop, .header-right-desktop { display: none; }
  .header-content { margin: 0 auto; padding: 22px 28px; }
  .header-logo img { height: 32px; }
  .simple-hero { padding-top: 88px; }
  .simple-hero-wrapper { padding-bottom: 108px; }
  .simple-hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .simple-hero-image { order: 1; justify-content: center; }
  .simple-hero-content { order: 0; align-items: center; text-align: center; }
  .simple-hero-title { font-size: 48px; }
  .simple-hero-image img { width: 90%; max-width: 600px; }
  .trust-indicators-grid { grid-template-columns: repeat(3, 1fr); gap: 36px; }
  .benefits { padding: 108px 0; }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .benefit-card { align-items: center; padding: 28px 20px; text-align: center; }
  .benefit-image { height: 160px; margin-bottom: 20px; }
  .banner { padding: 56px 0; }
  .banner-wrapper { padding: 56px 28px; }
  .banner-content { grid-template-columns: 1fr; gap: 48px; }
  .banner-left { align-items: center; text-align: center; }
  .banner-image { justify-content: center; }
  .banner-title { font-size: 36px; text-align: center; }
  .banner-subtitle { font-size: 16px; text-align: center; }
  .banner-cta { width: 100%; justify-content: center; }
  .faq-two-column-content { grid-template-columns: 1fr; gap: 32px; }
  .cta-banner { padding: 50px 0; }
  .cta-banner-content { grid-template-columns: 1fr; gap: 40px; padding: 50px 24px; }
  .cta-banner-left { align-items: center; text-align: center; }
  .cta-banner-button { width: 100%; margin: 0 auto; justify-content: center; }
  .cta-banner-image { justify-content: center; }
  .cta-banner-image img { width: 100%; max-width: 100%; }
  .cta-banner-title { font-size: 36px; text-align: center; }
  .cta-banner-subtitle { font-size: 16px; text-align: center; }
}

@media (max-width: 768px) {
  .landing-container { padding: 0 20px; }
  .header-content { padding: 20px 24px; }
  .header-logo img { height: 30px; }
  .header-logo-name { font-size: 18px; }
  .header-burger { display: flex; }
  .simple-hero { padding-top: 68px; }
  .simple-hero-wrapper { padding-bottom: 88px; }
  .simple-hero-grid { gap: 36px; }
  .simple-hero-title { font-size: 40px; }
  .simple-hero-subtitle { max-width: 100%; font-size: 16px; }
  .simple-hero-buttons { width: 100%; flex-direction: column; }
  .simple-hero-cta, .simple-hero-cta-secondary { width: 100%; white-space: normal; }
  .simple-hero-image img { width: 90%; max-width: 500px; }
  .trust-indicators { padding: 48px 0; }
  .trust-indicators-grid { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .trust-indicator-label { font-size: 16px; font-weight: 600; }
  .trust-indicator-value { font-size: 26px; font-weight: 700; }
  .trust-indicator-stars .star { font-size: 26px; }
  .benefits { padding: 88px 0; }
  .benefits-header { margin-bottom: 52px; }
  .benefits-title { font-size: 32px; margin-bottom: 12px; }
  .benefits-subtitle { font-size: 16px; }
  .benefits-grid { grid-template-columns: 1fr; gap: 24px; }
  .benefit-card { padding: 28px 24px; }
  .benefit-image { height: 140px; margin-bottom: 16px; }
  .benefit-headline { font-size: 18px; }
  .benefit-description { font-size: 15px; }
  .banner { padding: 48px 0; }
  .banner-wrapper { padding: 44px 24px; }
  .banner-content { gap: 36px; }
  .banner-title { font-size: 32px; }
  .banner-subtitle { font-size: 15px; }
  .faq-two-column { padding: 80px 0; }
  .faq-two-column-header { margin-bottom: 40px; }
  .faq-two-column-title { font-size: 32px; }
  .faq-two-column-subtitle { font-size: 16px; }
  .faq-two-column-question { padding: 20px 24px; font-size: 16px; border-radius: 12px; }
  .faq-two-column-answer { display: none; }
  .cta-banner { padding: 40px 0; }
  .cta-banner-content { gap: 32px; padding: 40px 20px; border-radius: 24px; }
  .cta-banner-title { font-size: 32px; }
  .cta-banner-subtitle { font-size: 15px; }
  .cta-banner-button { width: 100%; justify-content: center; font-size: 15px; }
  .main-footer { padding: 32px 0; }
  .main-footer-content { gap: 24px; }
  .main-footer-logo img { height: 36px; }
  .main-footer-logo-name { font-size: 18px; }
  .main-footer-copyright { font-size: 13px; }
  .main-footer-right { justify-content: center; }
  .main-footer-get-card-btn { max-width: 200px; justify-content: center; text-align: center; }
  .modal { top: auto; right: 0; bottom: 0; left: 0; width: 100%; max-width: none; transform: none; }
  .modal, .modal-content { border-radius: 20px 20px 0 0; }
  .modal-content { max-height: calc(100vh - 40px); padding: 1.8rem 1.2rem 1.2rem; }
}

@media (max-width: 480px) {
  .landing-container { padding: 0 16px; }
  .header-content { gap: 14px; padding: 18px 24px; }
  .header-logo img { height: 28px; }
  .header-mobile-menu { right: 24px; left: 24px; padding: 20px; }
  .simple-hero { padding-top: 50px; }
  .simple-hero-wrapper { padding-bottom: 60px; }
  .simple-hero-grid { gap: 24px; }
  .simple-hero-title { font-size: 32px; line-height: 1.2; }
  .simple-hero-subtitle { font-size: 15px; }
  .simple-hero-badge { padding: 6px 12px; font-size: 12px; }
  .simple-hero-image img { width: 90%; max-width: 400px; }
  .trust-indicators { padding: 40px 0; }
  .trust-indicators-grid { grid-template-columns: 1fr; gap: 24px; }
  .trust-indicator-item { padding: 0 10px; }
  .trust-indicator-label { font-size: 14px; font-weight: 600; }
  .trust-indicator-value { font-size: 20px; font-weight: 700; white-space: normal; }
  .trust-indicator-stars .star { font-size: 20px; }
  .benefits { padding: 68px 0; }
  .benefits-header { margin-bottom: 44px; }
  .benefits-title { font-size: 28px; margin-bottom: 12px; }
  .benefits-subtitle { font-size: 15px; }
  .benefit-card { padding: 24px 20px; }
  .benefit-image { height: 120px; margin-bottom: 18px; }
  .benefit-headline { font-size: 16px; margin-bottom: 14px; }
  .benefit-description { font-size: 14px; }
  .banner { padding: 40px 0; }
  .banner-wrapper { padding: 36px 20px; }
  .banner-title { font-size: 28px; line-height: 1.2; }
  .banner-subtitle { font-size: 14px; }
  .faq-two-column { padding: 60px 0; }
  .faq-two-column-title { font-size: 28px; }
  .faq-two-column-question { padding: 18px 20px; font-size: 15px; }
  .cta-banner { padding: 32px 0; }
  .cta-banner-content { gap: 24px; padding: 32px 16px; border-radius: 20px; }
  .cta-banner-title { font-size: 28px; line-height: 1.2; }
  .cta-banner-subtitle { font-size: 14px; }
  .cta-banner-button { font-size: 14px; }
  .main-footer { padding: 24px 0; }
  .main-footer-copyright { font-size: 12px; }
  .main-footer-get-card-btn { max-width: 180px; padding: 10px 20px; margin: 0 auto; }
}

.header-wallet-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 8px 12px;
  color: var(--primary);
  background: rgba(5, 0, 255, 0.08);
  border: 1px solid rgba(5, 0, 255, 0.18);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.header-wallet-chip:hover {
  background: rgba(5, 0, 255, 0.12);
}

@media (max-width: 1024px) {
  .header-wallet-chip {
    display: none;
  }
}
