/* ========================================
   MOBILE HERO - EXACTLY FROM PROVIDED CODE
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@500;600;700;800&display=swap');

:root {
  --bg: #f6f7f9;
  --card: #ffffff;
  --text: #0b1220;
  --muted: #5b667a;
  --line: #e6e9f0;
  --accent: #0b5cff;
  --accent2: #00a3ff;
  --ok: #0e9f6e;
  --warn: #b54708;
  --shadow: 0 18px 50px rgba(16,24,40,.10);
  --shadow2: 0 10px 26px rgba(16,24,40,.10);
  --r: 20px;
}

.mobile-hero-wrap {
  max-width: 460px;
  margin: 0 auto;
  padding: 14px 14px 96px; /* bottom for sticky */
}

.mobile-hero-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 4px 2px 6px;
}

.mobile-hero-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  border: 0;
  background: transparent;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}

.mobile-hero-logo {
  width: 48px !important;
  height: 48px !important;
  border-radius: 12px !important;
  object-fit: contain !important;
  display: block !important;
  flex-shrink: 0 !important;
  max-width: 48px !important;
  max-height: 48px !important;
}

.mobile-hero-name {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  line-height: 1;
  min-width: 0;
  padding: 0;
}

.mobile-hero-name b {
  font-size: 14px;
  letter-spacing: .2px;
}

.mobile-hero-name span {
  font-size: 11px;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mobile-hero-trustchip {
  font-size: 12px;
  color: var(--muted);
  border: 1px solid var(--line);
  background: rgba(255,255,255,.7);
  padding: 7px 10px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 8px 18px rgba(16,24,40,.05);
  white-space: nowrap;
}

.mobile-hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: var(--ok);
  box-shadow: 0 0 0 4px rgba(14,159,110,.12);
}

.mobile-hero-hero {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(10px);
  border-radius: var(--r);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.mobile-hero-heroHead {
  padding: 16px 16px 0;
}

.mobile-hero-kicker {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}

.mobile-hero-pill {
  font-size: 12px;
  font-weight: 700;
  color: #0b2a66;
  background: rgba(11,92,255,.10);
  border: 1px solid rgba(11,92,255,.16);
  padding: 7px 10px;
  border-radius: 999px;
}

.mobile-hero-pill-gray {
  color: #2b3649;
  background: rgba(255,255,255,.8);
  border: 1px solid var(--line);
  font-weight: 700;
}

.mobile-hero-h1 {
  margin: 0;
  font-size: 26px;
  letter-spacing: -.4px;
  line-height: 1.08;
  color: var(--text);
  font-family: Manrope, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.mobile-hero-sub {
  margin: 10px 0 0;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.45;
}

.mobile-hero-form {
  padding: 14px 16px 16px;
}

.mobile-hero-field {
  display: flex;
  gap: 10px;
  align-items: stretch;
  margin-top: 12px;
}

.mobile-hero-inputWrap {
  flex: 1;
  position: relative;
}

/* Contrast strip behind input and button */
.mobile-hero-contrast {
  background: #0b1220;
  padding: 12px;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 12px;
  /* make strip extend visually to edges of the mobile container */
  width: calc(100% + 28px);
  margin-left: -14px;
  margin-right: -14px;
}

.mobile-hero-field {
  display: block;
  gap: 0;
  align-items: stretch;
  margin-top: 0;
}

.mobile-hero-input {
  width: 100%;
  height: 56px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
  padding: 0 12px 0 44px;
  font-size: 14px;
  outline: none;
  box-shadow: 0 10px 22px rgba(16,24,40,.06);
  font-family: Manrope, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
}

.mobile-hero-btn-block {
  width: 100%;
  height: 56px;
  border-radius: 12px;
  padding: 0;
  font-weight: 800;
  font-size: 14px;
  background: #FFD200;
  color: #0b1220;
  border: 0;
  box-shadow: 0 8px 18px rgba(0,0,0,.12);
}

/* Stronger, higher-specificity rules to avoid being overridden */
.mobile-device .mobile-only .mobile-hero-contrast {
  background: #0b1220 !important;
  padding: 12px !important;
  border-radius: 14px !important;
  width: calc(100% + 28px) !important;
  margin-left: -14px !important;
  margin-right: -14px !important;
  z-index: 2 !important;
  box-shadow: 0 6px 20px rgba(0,0,0,0.12) !important;
}

.mobile-device .mobile-only .mobile-hero-btn-block {
  background: #FFD200 !important;
  color: #0b1220 !important;
  box-shadow: 0 8px 18px rgba(0,0,0,.12) !important;
}

/* Ensure the hero container allows visible overflow so contrast strip can float above other elements */
.mobile-device .mobile-only .mobile-hero-hero {
  overflow: visible !important;
  position: relative !important;
  z-index: 1 !important;
}

/* Bring contrast strip and controls to the very front */
.mobile-device .mobile-only .mobile-hero-contrast {
  position: relative !important;
  z-index: 9999 !important;
  box-shadow: 0 12px 30px rgba(0,0,0,0.25) !important;
}

.mobile-device .mobile-only .mobile-hero-input,
.mobile-device .mobile-only .mobile-hero-btn-block {
  position: relative !important;
  z-index: 10000 !important;
}

/* Small visual lift: translate the contrast strip slightly upward so it overlaps hero card */
.mobile-device .mobile-only .mobile-hero-contrast {
  transform: translateY(-8px);
}

.mobile-hero-contrast .mobile-hero-vinIcon {
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 26px;
  height: 26px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, #fff, #f3f6ff);
  color: #2b3649;
  font-weight: 900;
  font-size: 12px;
}

.mobile-hero-input {
  width: 100%;
  height: 52px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #fff;
  padding: 0 12px 0 44px;
  font-size: 14px;
  outline: none;
  box-shadow: 0 10px 22px rgba(16,24,40,.06);
  font-family: Manrope, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
}

.mobile-hero-input:focus {
  border-color: rgba(11,92,255,.38);
  box-shadow: 0 0 0 4px rgba(11,92,255,.14), 0 10px 22px rgba(16,24,40,.06);
}

.mobile-hero-vinIcon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #fff, #f3f6ff);
  display: grid;
  place-items: center;
  color: #2b3649;
  font-weight: 900;
  font-size: 12px;
}

.mobile-hero-btn {
  height: 52px;
  border-radius: 14px;
  border: 0;
  padding: 0 14px;
  font-weight: 800;
  font-size: 14px;
  color: #fff;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  box-shadow: 0 14px 28px rgba(11,92,255,.22);
  cursor: pointer;
  white-space: nowrap;
  font-family: Manrope, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.mobile-hero-btn:active {
  transform: translateY(1px);
}

.mobile-hero-btn[disabled] {
  opacity: .6;
  cursor: not-allowed;
}

.mobile-hero-metaRow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 10px;
}

.mobile-hero-price {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.mobile-hero-price b {
  font-size: 14px;
}

.mobile-hero-price span {
  font-size: 12px;
  color: var(--muted);
}

.mobile-hero-secure {
  font-size: 12px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  background: #fff;
  padding: 7px 10px;
  border-radius: 999px;
  box-shadow: 0 10px 22px rgba(16,24,40,.06);
  white-space: nowrap;
}

.mobile-hero-lock {
  width: 14px;
  height: 14px;
  display: inline-block;
  background: conic-gradient(from 180deg, rgba(11,92,255,.85), rgba(0,163,255,.85));
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="black"><path d="M17 9h-1V7a4 4 0 0 0-8 0v2H7a2 2 0 0 0-2 2v8a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2v-8a2 2 0 0 0-2-2Zm-7-2a2 2 0 1 1 4 0v2h-4V7Zm7 12H7v-8h10v8Z"/></svg>') center / contain no-repeat;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="black"><path d="M17 9h-1V7a4 4 0 0 0-8 0v2H7a2 2 0 0 0-2 2v8a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2v-8a2 2 0 0 0-2-2Zm-7-2a2 2 0 1 1 4 0v2h-4V7Zm7 12H7v-8h10v8Z"/></svg>') center / contain no-repeat;
}

.mobile-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 14px;
}

.mobile-hero-feat {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 16px;
  padding: 10px 10px;
  box-shadow: var(--shadow2);
  min-height: 62px;
}

.mobile-hero-feat b {
  display: block;
  font-size: 12px;
  letter-spacing: .1px;
  margin-bottom: 3px;
}

.mobile-hero-feat span {
  display: block;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.25;
}

.mobile-hero-hint {
  margin-top: 10px;
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 12px;
  color: var(--muted);
}

.mobile-hero-badgeOk {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  color: #0b2a66;
  background: rgba(14,159,110,.10);
  border: 1px solid rgba(14,159,110,.18);
  padding: 6px 9px;
  border-radius: 999px;
}

.mobile-hero-badgeOk i {
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: var(--ok);
  display: inline-block;
}

.mobile-hero-disclaimer {
  margin-top: 12px;
  font-size: 11px;
  color: var(--muted);
  line-height: 1.35;
}

.mobile-hero-disclaimer a {
  color: #2b4cff;
  text-decoration: none;
}

.mobile-hero-disclaimer a:hover {
  text-decoration: underline;
}

/* Sticky bottom action */
.mobile-hero-sticky {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(246,247,249,.82);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(230,233,240,.9);
  box-shadow: 0 -18px 40px rgba(16,24,40,.10);
  z-index: 1000;
}

.mobile-hero-stickyInner {
  max-width: 460px;
  margin: 0 auto;
  display: flex;
  gap: 10px;
  align-items: center;
}

.mobile-hero-sticky .mobile-hero-btn {
  flex: 1;
}

.mobile-hero-mini {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 112px;
  border: 1px solid var(--line);
  background: #fff;
  padding: 8px 10px;
  border-radius: 14px;
  box-shadow: 0 10px 22px rgba(16,24,40,.06);
}

.mobile-hero-mini b {
  font-size: 12px;
}

.mobile-hero-mini span {
  font-size: 11px;
  color: var(--muted);
}

/* Mobile only */
@media (max-width: 1023px) {
  .mobile-hero-wrap,
  .mobile-hero-sticky {
    display: block !important;
  }
}

@media (min-width: 1024px) {
  .mobile-hero-wrap,
  .mobile-hero-sticky {
    display: none !important;
  }
}
