@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Outfit:wght@400;500;600;700;800;900&display=swap');

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: #f8fafc;
  color: #1e293b;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.platform-gateway {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  user-select: none;
  background:
    radial-gradient(ellipse at top left, rgba(20,60,107,0.03), transparent 60%),
    radial-gradient(ellipse at bottom right, rgba(200,157,31,0.04), transparent 60%),
    #f8fafc;
}

a { text-decoration: none; color: inherit; }
button { font-family: inherit; }

.lg-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(226,232,240,0.8);
  padding: 14px 24px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.02);
}
.lg-header-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.lg-logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  flex-shrink: 0;
}
.lg-logo img { width: 40px; height: 40px; object-fit: contain; }
.lg-logo-text {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 24px;
  letter-spacing: -0.02em;
  white-space: nowrap;
}
.lg-logo-text .que  { color: #143C6B; }
.lg-logo-text .kart { color: #C89D1F; }

.lg-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.lg-nav-link,
.lg-nav-link-plain {
  font-size: 13px;
  font-weight: 700;
  color: #0B1E36;
  transition: color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}
.lg-nav-link svg { width: 16px; height: 16px; }
.lg-nav-link:hover { color: #143C6B; }
.lg-nav-link-plain { color: #556987; }
.lg-nav-link-plain:hover { color: #0B1E36; }

.lg-enter-btn {
  background: #143C6B;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  padding: 9px 16px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}
.lg-enter-btn:hover { background: #0C2340; transform: scale(0.97); }
.lg-enter-btn svg { width: 14px; height: 14px; }

.lg-hero-wrap {
  padding: 24px 20px 8px;
  max-width: 768px;
  margin: 0 auto;
  width: 100%;
}
.lg-hero {
  position: relative;
  display: flex;
  align-items: center;
  gap: 20px;
  background: #07182E;
  padding: 16px 22px;
  border-radius: 26px;
  border: 2px solid #D4AF37;
  overflow: hidden;
  box-shadow: 0 6px 25px rgba(7,24,46,0.5), 0 0 15px rgba(212,175,55,0.25);
}
.lg-hero-glow-top,
.lg-hero-glow-bottom {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 75%;
  height: 24px;
  pointer-events: none;
  filter: blur(8px);
}
.lg-hero-glow-top { top: -24px; background: linear-gradient(to right, transparent, rgba(251,191,36,0.3), transparent); }
.lg-hero-glow-bottom { bottom: -24px; background: linear-gradient(to right, transparent, rgba(251,191,36,0.2), transparent); }
.lg-hero-radial {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top, rgba(30,78,140,0.2), transparent 70%);
  pointer-events: none;
}
.lg-hero-bag {
  position: relative;
  z-index: 10;
  flex-shrink: 0;
  width: 44px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: drop-shadow(0 2px 10px rgba(245,166,35,0.45));
}
.lg-hero-bag svg { width: 100%; height: 100%; }
.lg-hero-text { flex: 1; min-width: 0; position: relative; z-index: 10; padding: 2px 0; }
.lg-hero-svg { width: 100%; height: auto; display: block; }
.hero-txt-title { font-family: 'Inter', sans-serif; font-weight: 900; paint-order: stroke fill; }
.hero-txt-sub { font-family: 'Inter', sans-serif; font-weight: 800; }

.lg-marquee-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 8px 0;
  margin: 8px 0;
  user-select: none;
}
.lg-marquee-fade-left,
.lg-marquee-fade-right {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 64px;
  z-index: 20;
  pointer-events: none;
}
.lg-marquee-fade-left  { left: 0;  background: linear-gradient(to right, rgba(248,250,252,1) 0%, rgba(248,250,252,0.8) 50%, transparent 100%); }
.lg-marquee-fade-right { right: 0; background: linear-gradient(to left, rgba(248,250,252,1) 0%, rgba(248,250,252,0.8) 50%, transparent 100%); }
.lg-marquee-rows { display: flex; flex-direction: column; gap: 10px; width: 100%; }
.lg-row { overflow: hidden; width: 100%; display: flex; align-items: center; }
.lg-marquee {
  display: flex;
  width: max-content;
  gap: 12px;
  padding: 0 8px;
  will-change: transform;
}
.lg-marquee.left  { animation: marqueeLeftInfinite  40s linear infinite; }
.lg-marquee.right { animation: marqueeRightInfinite 40s linear infinite; }

@keyframes marqueeLeftInfinite {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes marqueeRightInfinite {
  0%   { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.lg-tile {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #f1f5f9;
  box-shadow: 0 1px 2px rgba(0,0,0,0.03);
  flex-shrink: 0;
  overflow: hidden;
}
.lg-tile img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 12px;
  filter: drop-shadow(0 1px 1px rgba(0,0,0,0.08));
}
@media (min-width: 640px) {
  .lg-tile { width: 80px; height: 80px; }
}

.lg-translucent-block { position: relative; padding-top: 4px; }
.lg-cta-overlay {
  position: absolute;
  inset: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  background: linear-gradient(to top, #f8fafc 0%, rgba(248,250,252,0.7) 60%, transparent 100%);
}
.lg-cta-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  padding: 24px;
  border-radius: 24px;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.8);
  box-shadow: 0 12px 30px rgba(15,23,42,0.08);
}
@media (min-width: 640px) { .lg-cta-box { flex-direction: row; } }

.lg-btn {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 24px;
  border-radius: 16px;
  font-size: 15px;
  font-weight: 900;
  color: #fff;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.2s, filter 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.lg-btn svg { width: 20px; height: 20px; flex-shrink: 0; }
.lg-btn:hover { filter: brightness(1.1); box-shadow: 0 8px 24px rgba(0,0,0,0.12); }
.lg-btn:active { transform: scale(0.98); }
@media (min-width: 640px) { .lg-btn { width: 50%; } }
.lg-btn-navy { background: #143C6B; }
.lg-btn-navy:hover { background: #0D2C4E; }
.lg-btn-gold { background: #C89D1F; }
.lg-btn-gold:hover { background: #B08A15; }

.lg-why {
  max-width: 1280px;
  margin: 0 auto;
  padding: 48px 20px 60px;
  width: 100%;
}
.lg-why-title {
  text-align: center;
  font-family: 'Inter', sans-serif;
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0;
  line-height: 1.15;
}
.lg-why-title .navy { color: #0B1E36; }
.lg-why-title .gold { color: #E5A812; }
@media (min-width: 640px) { .lg-why-title { font-size: 40px; } }
@media (min-width: 768px) { .lg-why-title { font-size: 48px; } }

.lg-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 14px 0;
}
.lg-divider .bar-gold,
.lg-divider .bar-navy { width: 48px; height: 2.5px; border-radius: 2px; }
.lg-divider .bar-gold { background: #E5A812; }
.lg-divider .bar-navy { background: #0B1E36; }
.lg-divider .dot-navy { width: 8px; height: 8px; background: #0B1E36; border-radius: 50%; }
@media (min-width: 640px) {
  .lg-divider .bar-gold,
  .lg-divider .bar-navy { width: 64px; }
}

.lg-why-sub {
  text-align: center;
  font-size: 14px;
  color: #556987;
  font-weight: 500;
  margin: 8px 0 0;
}
@media (min-width: 640px) { .lg-why-sub { font-size: 16px; } }
@media (min-width: 768px) { .lg-why-sub { font-size: 18px; } }

.lg-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 36px;
}
@media (min-width: 768px) {
  .lg-cards { grid-template-columns: repeat(3, 1fr); gap: 24px; }
}

.lg-card {
  background: #fff;
  border: 1px solid #E2EAF2;
  border-radius: 20px;
  padding: 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  text-align: left;
  box-shadow: 0 2px 12px rgba(0,0,0,0.03);
  transition: all 0.3s ease;
}
.lg-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(20,60,107,0.08);
  border-color: #BED4EB;
}
@media (min-width: 768px) {
  .lg-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    padding: 28px 32px;
    border-radius: 24px;
  }
}
.lg-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 12px;
}
.lg-card-icon svg { width: 100%; height: 100%; }
@media (min-width: 640px) { .lg-card-icon { width: 64px; height: 64px; } }
@media (min-width: 768px) { .lg-card-icon { width: 80px; height: 80px; border-radius: 24px; padding: 18px; } }

.icon-blue  { background: #EAF3FA; border: 1px solid #D8E6F3; }
.icon-cream { background: #FEF8EC; border: 1px solid #FDEECC; }
.icon-mint  { background: #E8F7EE; border: 1px solid #D2EFE0; }

.lg-card h3 { font-size: 16px; font-weight: 700; color: #0B1E36; letter-spacing: -0.01em; margin: 0; }
@media (min-width: 640px) { .lg-card h3 { font-size: 18px; } }
@media (min-width: 768px) { .lg-card h3 { font-size: 20px; } }

.lg-card-bar { width: 48px; height: 2.5px; border-radius: 2px; margin: 8px 0 10px; }
.bar-blue { background: #143C6B; }
.bar-gold { background: #E5A812; }
.bar-mint { background: #059669; }

.lg-card p { font-size: 13px; color: #556987; line-height: 1.6; margin: 0; font-weight: 400; }
@media (min-width: 640px) { .lg-card p { font-size: 14px; } }
.lg-card > div:last-child { flex: 1; min-width: 0; }

.lg-footer {
  background: #fff;
  border-top: 1px solid #E8EEF5;
  padding: 40px 20px 32px;
  margin-top: 40px;
}
.lg-footer-inner { max-width: 1280px; margin: 0 auto; width: 100%; }
.lg-footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding-bottom: 32px;
  align-items: start;
}
@media (min-width: 768px) {
  .lg-footer-grid { grid-template-columns: repeat(12, 1fr); gap: 32px; }
  .lg-footer-brand { grid-column: span 5; }
  .lg-footer-col { grid-column: span 4; }
  .lg-footer-col:last-child { grid-column: span 3; }
}

.lg-footer-brand { display: flex; flex-direction: column; gap: 16px; }
.lg-footer-logo { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 6px; }
.lg-footer-logo img { width: 36px; height: 36px; object-fit: contain; }

.lg-footer-desc { font-size: 14px; color: #556987; line-height: 1.6; margin: 0; max-width: 480px; }

.lg-footer-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.lg-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 12px;
  background: #F0F5FA;
  color: #143C6B;
  font-size: 12px;
  font-weight: 700;
  border: 1px solid #D8E6F3;
  transition: background 0.2s;
}
.lg-pill:hover { background: #E2EAF2; }
.lg-pill svg { width: 16px; height: 16px; }

.lg-footer-help {
  padding: 12px;
  background: rgba(248,250,252,0.8);
  border: 1px solid #f1f5f9;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  max-width: 480px;
}
.lg-help-left { display: flex; align-items: center; gap: 10px; min-width: 0; }
.lg-green-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 0 4px rgba(16,185,129,0.15);
  flex-shrink: 0;
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.6; } }
.lg-help-title { display: block; font-size: 12px; font-weight: 700; color: #0B1E36; }
.lg-help-sub {
  display: block;
  font-size: 11px;
  color: #6B7F96;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.lg-help-link {
  font-size: 12px;
  font-weight: 700;
  color: #E57E00;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
  flex-shrink: 0;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}
.lg-help-link:hover { color: #C46A00; }

.lg-footer-col { display: flex; flex-direction: column; gap: 12px; }
.lg-footer-heading {
  font-size: 12px;
  font-weight: 700;
  color: #0B1E36;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0;
}

.lg-info-card {
  display: flex;
  gap: 12px;
  padding: 12px;
  background: rgba(248,250,252,0.8);
  border: 1px solid #f1f5f9;
  border-radius: 16px;
}
.lg-info-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #EAF3FA;
  border: 1px solid #D8E6F3;
  color: #143C6B;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.lg-info-icon svg { width: 18px; height: 18px; }
.lg-info-text { display: flex; flex-direction: column; min-width: 0; }
.lg-info-label {
  font-size: 10px;
  font-weight: 700;
  color: #8B9EB2;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.lg-info-title {
  font-size: 13.5px;
  font-weight: 700;
  color: #0B1E36;
  line-height: 1.3;
  overflow: hidden;
  text-overflow: ellipsis;
}
.lg-info-sub { font-size: 11px; color: #6B7F96; }

.lg-policy-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
  border: 1px solid #f1f5f9;
  border-radius: 16px;
  padding: 6px;
  background: rgba(248,250,252,0.5);
}
.lg-policy-item {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px;
  border-radius: 12px;
  background: none;
  border: none;
  cursor: pointer;
  transition: background 0.15s;
  text-align: left;
  color: #0B1E36;
}
.lg-policy-item:hover { background: #fff; color: #143C6B; }
.lg-policy-item > span:first-child {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}
.lg-policy-item svg { width: 16px; height: 16px; }
.lg-policy-item > span:last-child { color: #94a3b8; font-size: 16px; }

.lg-buyer-protection {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px;
  background: #EBF5EE;
  border: 1px solid #D3EBD9;
  border-radius: 16px;
}
.lg-protect-icon {
  width: 32px;
  height: 32px;
  border-radius: 12px;
  background: #059669;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 4px rgba(5,150,105,0.15);
}
.lg-protect-icon svg { width: 18px; height: 18px; }
.lg-protect-title { display: block; font-size: 12px; font-weight: 700; color: #0B1E36; }
.lg-protect-sub { display: block; font-size: 11px; color: #3D5B46; line-height: 1.2; }

.lg-seo-links { padding: 20px 0; border-top: 1px solid #E8EEF5; }
.lg-seo-links h4 {
  font-size: 12px;
  font-weight: 900;
  color: #0B1E36;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 10px;
}
.lg-seo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 16px;
  font-size: 11px;
  font-weight: 600;
  color: #556987;
}
@media (min-width: 1024px) { .lg-seo-grid { grid-template-columns: repeat(5, 1fr); } }
.lg-seo-grid a {
  text-align: left;
  cursor: pointer;
  transition: color 0.2s;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.lg-seo-grid a:hover { color: #143C6B; text-decoration: underline; }
.lg-seo-grid a.gold { color: #E57E00; font-weight: 700; }

.lg-footer-bottom {
  padding-top: 16px;
  border-top: 1px solid #E8EEF5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
@media (min-width: 768px) { .lg-footer-bottom { flex-direction: row; } }

.lg-copyright { display: flex; align-items: center; gap: 12px; }
.lg-copyright-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  border: 2px solid #143C6B;
  color: #143C6B;
  font-weight: 700;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.lg-copyright span:last-child { font-size: 12px; color: #4A5D73; line-height: 1.5; }
.lg-copyright strong { color: #0B1E36; }

.lg-certs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: #6B7F96;
  font-weight: 500;
  white-space: nowrap;
}
@media (min-width: 640px) { .lg-certs { font-size: 12px; gap: 12px; } }
.lg-certs .sep { color: #cbd5e1; }

.lg-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 50;
  background: rgba(15,23,42,0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  overflow-y: auto;
}
.lg-modal-backdrop[style*="display:none"] { display: none !important; }

.lg-modal {
  background: #fff;
  border-radius: 16px;
  max-width: 672px;
  width: 100%;
  border: 1px solid #e2e8f0;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
  display: flex;
  flex-direction: column;
  max-height: 85vh;
  overflow: hidden;
  animation: modalIn 0.2s ease;
}
@keyframes modalIn {
  from { opacity: 0; transform: scale(0.95); }
  to   { opacity: 1; transform: scale(1); }
}

.lg-modal-header {
  padding: 16px 20px;
  border-bottom: 1px solid #f1f5f9;
  background: #f8fafc;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.lg-modal-header h3 {
  font-size: 14px;
  font-weight: 900;
  color: #1e293b;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0;
}
@media (min-width: 640px) { .lg-modal-header h3 { font-size: 16px; } }
.lg-modal-close {
  background: none;
  border: none;
  font-size: 24px;
  line-height: 1;
  color: #64748b;
  cursor: pointer;
  padding: 4px 8px;
  border-radius: 8px;
  transition: background 0.15s;
}
.lg-modal-close:hover { background: #e2e8f0; color: #1e293b; }

.lg-modal-body {
  padding: 20px;
  overflow-y: auto;
  max-height: 60vh;
  font-size: 12px;
  color: #475569;
  line-height: 1.7;
  font-weight: 600;
}
.lg-modal-body p { margin: 0 0 12px; }
.lg-modal-body h4 {
  font-size: 11px;
  font-weight: 900;
  color: #1e293b;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 16px 0 6px;
}
.lg-modal-body input,
.lg-modal-body textarea {
  width: 100%;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  padding: 8px;
  background: #fff;
  font-family: inherit;
  font-size: 12px;
  font-weight: 500;
  color: #1e293b;
}
.lg-modal-body input:focus,
.lg-modal-body textarea:focus { outline: 2px solid #143C6B; outline-offset: 0; border-color: #143C6B; }
.lg-modal-body button[type="submit"] {
  background: #143C6B;
  color: #fff;
  border: none;
  padding: 10px 16px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 12px;
  cursor: pointer;
  width: 100%;
}
.lg-modal-body button[type="submit"]:hover { background: #0C2340; }

.lg-modal-footer {
  padding: 12px 20px;
  border-top: 1px solid #f1f5f9;
  background: #f8fafc;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.lg-modal-footer > span { font-size: 10px; color: #94a3b8; font-family: monospace; font-weight: 700; }
.lg-modal-btn {
  background: #143C6B;
  color: #fff;
  border: none;
  font-size: 12px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 12px;
  cursor: pointer;
}
.lg-modal-btn:hover { background: #0C2340; }

@media (max-width: 767px) {
  .lg-header { padding: 10px 16px; }
  .lg-header-inner { gap: 8px; }
  .lg-nav { display: none; }
  .lg-hero-wrap { padding: 16px 12px 4px; }
  .lg-hero { padding: 10px 14px; gap: 12px; border-radius: 20px; }
  .lg-hero-bag { width: 34px; height: 38px; }
  .lg-why { padding: 32px 16px 40px; }
  .lg-footer { padding: 32px 16px 24px; }
  .lg-certs { flex-wrap: wrap; justify-content: center; }
  .lg-footer-bottom { text-align: center; }
  .lg-copyright { flex-direction: column; text-align: center; }
}