:root {
  --color-bg: #fefcf8;
  --color-surface: #ffffff;
  --color-mango: #ff9f43;
  --color-mango-light: #ffeaa7;
  --color-mango-dark: #e67e22;
  --color-accent: #00b894;
  --color-text: #2d3436;
  --color-text-muted: #636e72;
  --color-border: #dfe6e9;
  --shadow-sm: 0 2px 8px rgba(255, 159, 67, 0.08);
  --shadow-md: 0 8px 24px rgba(255, 159, 67, 0.12);
  --shadow-lg: 0 16px 48px rgba(255, 159, 67, 0.15);
  --radius: 16px;
  --radius-lg: 24px;
  --transition: 0.25s ease;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  overflow: hidden;
  height: 100%;
}

body {
  font-family: 'Outfit', -apple-system, sans-serif;
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  overflow: hidden;
  height: 100%;
}

.page {
  height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.page-content {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}

.page-view {
  display: none;
}

.page-view.active {
  display: block;
}

.header-link.active {
  color: var(--color-mango-dark);
  font-weight: 600;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  background: rgba(254, 252, 248, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(223, 230, 233, 0.5);
  transition: var(--transition);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--color-text);
  font-weight: 600;
  font-size: 1.25rem;
}

.logo-emoji {
  font-size: 1.5rem;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.header-telegram {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: transparent;
  color: var(--color-mango-dark);
  border: 2px solid var(--color-mango);
  border-radius: var(--radius);
  transition: var(--transition);
  flex-shrink: 0;
}

.header-telegram:hover {
  background: rgba(255, 159, 67, 0.1);
  border-color: var(--color-mango-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-sm);
}

.header-telegram-icon {
  width: 20px;
  height: 20px;
}

.header-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-text);
  text-decoration: none;
  transition: var(--transition);
}

.header-link:hover {
  color: var(--color-mango-dark);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-mango) 0%, var(--color-mango-dark) 100%);
  color: white;
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--color-mango-dark);
  border: 2px solid var(--color-mango);
}

.btn-outline:hover {
  background: rgba(255, 159, 67, 0.1);
  transform: translateY(-2px);
}

.btn-full {
  width: 100%;
}

/* Hero */
.hero {
  position: relative;
  min-height: auto;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 6rem 2rem 4rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(255, 159, 67, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 80%, rgba(0, 184, 148, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse 50% 30% at 20% 60%, rgba(255, 234, 167, 0.2) 0%, transparent 50%);
  pointer-events: none;
}

.hero-bg-shapes {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.4;
  animation: float 20s ease-in-out infinite;
}

.shape-1 {
  width: 300px;
  height: 300px;
  background: rgba(255, 159, 67, 0.3);
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.shape-2 {
  width: 200px;
  height: 200px;
  background: rgba(0, 184, 148, 0.2);
  top: 60%;
  right: 15%;
  animation-delay: -5s;
}

.shape-3 {
  width: 250px;
  height: 250px;
  background: rgba(255, 234, 167, 0.35);
  bottom: 20%;
  left: 30%;
  animation-delay: -10s;
}

.shape-4 {
  width: 150px;
  height: 150px;
  background: rgba(230, 126, 34, 0.2);
  top: 30%;
  right: 30%;
  animation-delay: -15s;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  25% { transform: translate(20px, -30px) scale(1.05); }
  50% { transform: translate(-15px, 20px) scale(0.95); }
  75% { transform: translate(25px, 15px) scale(1.02); }
}

.hero-layout {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
}

.hero-main {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  width: 100%;
}

.hero-side {
  flex: 0 0 240px;
  max-width: 260px;
}

.hero-frame {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border: 2px solid var(--color-mango);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: 0 0 0 1px rgba(230, 126, 34, 0.1), var(--shadow-md);
  transition: var(--transition);
}

.hero-frame:hover {
  border-color: var(--color-mango-dark);
  box-shadow: 0 0 0 1px rgba(230, 126, 34, 0.15), var(--shadow-lg);
}

.hero-frame-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--color-mango);
}

.hero-frame-list {
  list-style: none;
}

.hero-frame-list li {
  padding: 0.4rem 0;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.4;
}

.hero-frame-left {
  animation: fadeInUp 0.8s ease 0.15s both;
}

.hero-frame-right {
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-content {
  position: relative;
  text-align: center;
  flex: 0 1 480px;
  min-width: 280px;
  order: 0;
}

.hero-side-left { order: -1; }
.hero-side-right { order: 1; }

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--color-mango-dark), var(--color-mango));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: fadeInUp 0.8s ease;
}

.hero-emoji {
  -webkit-text-fill-color: initial;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--color-text-muted);
  margin-bottom: 2rem;
  animation: fadeInUp 0.8s ease 0.1s both;
}

.btn-hero {
  padding: 1rem 2rem;
  font-size: 1.1rem;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-trust {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
  width: 100%;
  max-width: 900px;
  margin: 3.5rem auto 0;
  padding: 0 1rem;
  animation: fadeInUp 0.8s ease 0.25s both;
}

.hero-trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 0.75rem;
  background: var(--color-surface);
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text);
  text-align: center;
  transition: var(--transition);
}

.hero-trust-title {
  font-weight: 600;
}

.hero-trust-desc {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--color-text-muted);
  line-height: 1.3;
}

.hero-trust-badge:hover {
  border-color: rgba(255, 159, 67, 0.4);
  box-shadow: var(--shadow-sm);
}

.hero-trust-icon {
  font-size: 1.5rem;
  line-height: 1;
}

/* Platform icons (in footer) */
.platform-icons {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.platform-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  color: var(--color-text-muted);
  opacity: 0.75;
  transition: var(--transition);
}

.platform-icon:hover {
  color: var(--color-mango-dark);
  opacity: 1;
}

.platform-icon svg {
  width: 100%;
  height: 100%;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* FAQ */
.faq-section {
  padding: 5rem 2rem;
}

/* FAQ Apps block */
.faq-apps-block {
  max-width: 820px;
  margin: 1.5rem auto 2rem;
  padding: 0.9rem 1.1rem;
  background: linear-gradient(135deg, rgba(0, 184, 148, 0.05) 0%, rgba(255, 159, 67, 0.03) 100%);
  border: 1px solid rgba(0, 184, 148, 0.12);
  border-radius: 12px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.faq-apps-instruction {
  flex: 1;
  min-width: 0;
}

.faq-apps-divider {
  width: 1px;
  background: var(--color-border);
  align-self: stretch;
}

.faq-apps-downloads {
  flex: 1;
  min-width: 0;
}

.faq-apps-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 0.2rem;
}

.faq-apps-hint {
  font-size: 0.7rem;
  color: var(--color-text-muted);
  line-height: 1.35;
  margin-bottom: 0.5rem;
}

.faq-apps-steps {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  line-height: 1.5;
  padding-left: 1rem;
  margin: 0;
}

.faq-apps-steps li {
  margin-bottom: 0.2rem;
}

.faq-apps-steps li:last-child {
  margin-bottom: 0;
}

.faq-apps-steps strong {
  color: var(--color-mango-dark);
  font-weight: 600;
}

.faq-apps-grid {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.faq-app-card {
  position: relative;
  padding: 0.35rem 0.6rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 6px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.faq-app-card:hover {
  border-color: rgba(255, 159, 67, 0.35);
  box-shadow: 0 2px 8px rgba(255, 159, 67, 0.06);
}

.faq-app-recommended {
  border-color: rgba(255, 159, 67, 0.25);
  background: linear-gradient(180deg, rgba(255, 159, 67, 0.04) 0%, var(--color-surface) 100%);
}

.faq-app-name {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-text);
  min-width: 4.5rem;
}

.faq-app-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
}

.faq-app-links a {
  font-size: 0.62rem;
  color: var(--color-mango-dark);
  text-decoration: none;
  padding: 0.12rem 0.3rem;
  background: rgba(255, 159, 67, 0.08);
  border-radius: 4px;
  transition: var(--transition);
}

.faq-app-links a:hover {
  background: rgba(255, 159, 67, 0.18);
  color: var(--color-mango);
}

@media (max-width: 600px) {
  .faq-apps-block {
    flex-direction: column;
    gap: 0.9rem;
    padding: 0.8rem 1rem;
  }
  .faq-apps-divider {
    display: none;
  }
}

.faq-title {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--color-text);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 0 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.faq-divider {
  background: var(--color-border);
  align-self: stretch;
}

.faq-column {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1rem 0;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 500;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-text);
  transition: var(--transition);
}

.faq-question:hover {
  color: var(--color-mango-dark);
}

.faq-icon {
  font-size: 1.5rem;
  color: var(--color-mango);
  flex-shrink: 0;
  transition: transform var(--transition);
}

.faq-answer {
  display: none;
}

/* FAQ Modal */
.faq-modal .modal {
  max-width: 480px;
  padding: 1.5rem 1.75rem;
}

.faq-modal-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 1rem;
  padding-right: 2rem;
}

.faq-modal-answer {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.faq-modal-answer p {
  margin: 0;
}

.faq-modal .modal-close {
  top: 0.75rem;
  right: 0.75rem;
}

/* Tariffs */
.tariffs {
  padding: 5.5rem 2rem 3rem;
  background: linear-gradient(180deg, rgba(255, 159, 67, 0.03) 0%, transparent 50%, rgba(0, 184, 148, 0.02) 100%);
}

.tariffs-header {
  text-align: center;
  margin-bottom: 2rem;
}

.tariffs .section-title {
  margin-bottom: 0.35rem;
}

.tariffs-subtitle {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  font-weight: 400;
}

.tariff-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  max-width: 960px;
  margin: 0 auto;
}

@media (max-width: 700px) {
  .tariff-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

.tariff-card {
  position: relative;
  background: var(--color-surface);
  border-radius: 20px;
  padding: 1.5rem 1.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(223, 230, 233, 0.8);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.tariff-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-border), var(--color-border));
  opacity: 0.5;
}

.tariff-card.tariff-free::before {
  background: linear-gradient(90deg, var(--color-accent), rgba(0, 184, 148, 0.5));
  opacity: 1;
}

.tariff-card.tariff-standard::before {
  background: linear-gradient(90deg, var(--color-mango), var(--color-mango-dark));
  opacity: 1;
}

.tariff-card.tariff-premium::before {
  background: linear-gradient(90deg, #a29bfe, #6c5ce7);
  opacity: 1;
}

.tariff-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(255, 159, 67, 0.12);
  border-color: rgba(255, 159, 67, 0.25);
}

.tariff-card.popular {
  border-color: rgba(255, 159, 67, 0.4);
  box-shadow: 0 8px 32px rgba(255, 159, 67, 0.15);
}

.tariff-card.popular:hover {
  box-shadow: 0 16px 48px rgba(255, 159, 67, 0.2);
  border-color: rgba(255, 159, 67, 0.5);
}

.popular-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--color-mango), var(--color-mango-dark));
  color: white;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.35rem 1rem;
  border-radius: 0 0 12px 12px;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(255, 159, 67, 0.35);
  letter-spacing: 0.02em;
}

.tariff-badge {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--color-text);
  margin-top: 0.25rem;
}

.tariff-desc {
  color: var(--color-text-muted);
  font-size: 0.88rem;
  margin-bottom: 1.25rem;
  flex-grow: 1;
  line-height: 1.45;
  min-height: 2.6em;
}

.tariff-features {
  list-style: none;
  margin-bottom: 1.25rem;
}

.tariff-features li {
  padding: 0.35rem 0;
  padding-left: 1.5rem;
  position: relative;
  font-size: 0.88rem;
  color: var(--color-text);
}

.tariff-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 6px;
  background: var(--color-accent);
  border-radius: 50%;
}

.tariff-card.popular .tariff-features li::before {
  background: linear-gradient(135deg, var(--color-mango), var(--color-mango-dark));
}

.tariff-card .btn {
  margin-top: auto;
  border-radius: 12px;
  font-weight: 600;
  padding: 0.75rem 1.25rem;
}

.footer {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.35rem 1.5rem 0.5rem;
  color: var(--color-text-muted);
  font-size: 0.75rem;
  flex-shrink: 0;
}

.footer .platform-icons {
  position: absolute;
  left: 7.5rem;
  top: 50%;
  transform: translateY(calc(-50% - 0.5rem));
  margin: 0;
  padding: 0;
  gap: 1rem;
}

.footer .platform-icon {
  width: 28px;
  height: 28px;
}

.footer-copyright {
  margin: 0;
  text-align: center;
}

/* Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(45, 52, 54, 0.5);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.modal-overlay[aria-hidden="false"] {
  opacity: 1;
  visibility: visible;
}

.modal {
  position: relative;
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  max-width: 420px;
  width: 100%;
  padding: 2.5rem;
  box-shadow: var(--shadow-lg);
  transform: scale(0.95);
  transition: var(--transition);
}

.modal-overlay[aria-hidden="false"] .modal {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  border: none;
  background: transparent;
  font-size: 1.5rem;
  color: var(--color-text-muted);
  cursor: pointer;
  border-radius: 50%;
  transition: var(--transition);
}

.modal-close:hover {
  background: var(--color-border);
  color: var(--color-text);
}

.modal-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.modal-subtitle {
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.auth-options {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.auth-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  padding: 1rem 1.5rem;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 500;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
}

.auth-telegram {
  background: #0088cc;
  color: white;
}

.auth-telegram:hover {
  background: #0077b5;
  transform: translateY(-1px);
}

.auth-icon {
  width: 24px;
  height: 24px;
}

.auth-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

.auth-divider::before,
.auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--color-border);
}

.auth-email-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.auth-input {
  width: 100%;
  padding: 1rem 1.25rem;
  font-family: inherit;
  font-size: 1rem;
  border: 2px solid var(--color-border);
  border-radius: var(--radius);
  transition: var(--transition);
}

.auth-input:focus {
  outline: none;
  border-color: var(--color-mango);
}

.auth-hint {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
  .header {
    padding: 1rem;
  }

  .logo-text {
    display: none;
  }

  .header-nav {
    gap: 1.25rem;
  }

  .header-link {
    font-size: 0.9rem;
  }

  .hero {
    padding: 5rem 1rem 3rem;
  }

  .hero-subtitle {
    margin-bottom: 0.5rem;
  }

  .hero-main {
    flex-direction: column;
    gap: 0;
  }

  .hero-content {
    order: -2;
    margin-bottom: 0;
    padding-bottom: 0;
  }

  .hero-side-left {
    order: -1;
    margin-top: -10rem;
  }

  .btn-hero {
    margin-bottom: 0;
  }

  .hero-side-right {
    order: 0;
    margin-top: 0.5rem;
  }

  .hero-side {
    flex: none;
    max-width: 100%;
    width: 100%;
  }

  .hero-frame {
    max-width: 400px;
    margin: 0 auto;
  }

  .hero-trust {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 1rem;
    width: 100%;
  }

  .hero-trust-badge {
    padding: 0.75rem 0.5rem;
    font-size: 0.85rem;
  }

  .faq-section {
    padding: 3rem 1rem;
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .faq-divider {
    display: none;
  }

  .tariffs {
    padding: 4.5rem 1rem 2rem;
  }

  .tariff-cards {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .tariff-card {
    padding: 1.25rem 1.25rem;
  }

  .footer {
    flex-direction: column;
    flex-wrap: nowrap;
    padding: 0.75rem 1rem;
    padding-bottom: calc(4rem + env(safe-area-inset-bottom, 0px));
    gap: 0.5rem;
  }

  .footer .platform-icons {
    position: static;
    transform: none;
  }

}

@media (max-width: 480px) {
  .hero-side-left {
    margin-top: -12rem;
  }

  .hero-trust {
    grid-template-columns: 1fr;
  }

  .footer {
    flex-direction: column;
    flex-wrap: nowrap;
    padding: 0.75rem 1rem;
    padding-bottom: calc(4rem + env(safe-area-inset-bottom, 0px));
    gap: 0.5rem;
  }

  .footer .platform-icons {
    position: static;
    transform: none;
  }

  .footer .platform-icon {
    width: 24px;
    height: 24px;
  }
}
