.buhoMobile {
  background: linear-gradient(180deg, #FFF9FA 0%, #FFF5F6 100%);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: #0B1E3B;
  min-height: 100vh;
  box-sizing: border-box;
  padding: 16px;
}

.buhoMobile .container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  box-sizing: border-box;
}

/* ═══════════════ HEADER ═══════════════ */
.buhoMobile .landing-header {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  padding: 12px 0 4px 0;
  box-sizing: border-box;
}

.buhoMobile .landing-header .landing-brand {
  display: flex;
  align-items: center;
  justify-content: center;
}

.buhoMobile .landing-header .landing-brand-logo {
  height: 40px;
  width: auto;
}

.buhoMobile .landing-header .help-link {
  position: absolute;
  right: 0;
  display: flex;
  align-items: center;
  gap: 4px;
  color: #E03A60;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  border: 1px solid rgba(224, 58, 96, 0.3);
  padding: 5px 12px;
  border-radius: 24px;
  background: rgba(224, 58, 96, 0.02);
  transition: background-color 0.2s;
}

.buhoMobile .landing-header .help-link:active {
  background: rgba(224, 58, 96, 0.08);
}

.buhoMobile .landing-header .help-icon-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 15px;
  height: 15px;
  border: 1.5px solid #E03A60;
  border-radius: 50%;
  font-size: 10px;
  font-weight: 700;
}

/* ═══════════════ HERO TITLE ═══════════════ */
.buhoMobile .hero-section {
  text-align: center;
  padding: 6px 0;
}

.buhoMobile .hero-section h1 {
  font-size: 26px;
  font-weight: 800;
  color: #0B1E3B;
  margin: 0 0 10px 0;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.buhoMobile .hero-section h1 span {
  color: #E03A60;
}

.buhoMobile .hero-section p {
  font-size: 14px;
  color: #64748B;
  margin: 0;
  line-height: 1.5;
}

/* ═══════════════ DASHBOARD CARDS ═══════════════ */
.buhoMobile .dashboard-card {
  border-radius: 28px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 8px 30px rgba(224, 58, 96, 0.04);
  box-sizing: border-box;
  text-decoration: none;
  position: relative;
  transition: transform 0.2s;
}

.buhoMobile .dashboard-card:active {
  transform: scale(0.98);
}

/* Navy Login Card */
.buhoMobile .dashboard-card.navy-card {
  background-color: #0C1E3C;
  color: #FFFFFF;
}

/* White Quote Card */
.buhoMobile .dashboard-card.white-card {
  background-color: #FFFFFF;
  color: #0C1E3C;
  border: 1px solid rgba(224, 58, 96, 0.08);
}

.buhoMobile .card-main-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.buhoMobile .card-content-left {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
}

.buhoMobile .card-icon-wrapper {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background-color: #E03A60;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.buhoMobile .card-icon-wrapper img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.buhoMobile .card-text-box {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.buhoMobile .card-title {
  font-size: 18px;
  font-weight: 800;
  margin: 0;
  letter-spacing: -0.01em;
}

.buhoMobile .card-desc {
  font-size: 13px;
  line-height: 1.4;
}

.buhoMobile .navy-card .card-desc { color: #94A3B8; }
.buhoMobile .white-card .card-desc { color: #64748B; }

.buhoMobile .card-chevron {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
}

.buhoMobile .card-chevron svg {
  width: 100%;
  height: 100%;
}

.buhoMobile .navy-card .card-chevron svg { stroke: #FFFFFF; }
.buhoMobile .white-card .card-chevron svg { stroke: #E03A60; }

.buhoMobile .card-pill-row {
  display: flex;
  margin-top: 2px;
}

.buhoMobile .card-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.buhoMobile .card-pill-icon {
  width: 12px;
  height: 12px;
  object-fit: contain;
}

.buhoMobile .navy-card .card-pill {
  background-color: rgba(255, 255, 255, 0.1);
  color: #FFFFFF;
}

.buhoMobile .white-card .card-pill {
  background-color: #FFF0F2;
  color: #E03A60;
}

/* ═══════════════ ASSISTANCE CARD ═══════════════ */
.buhoMobile .assistance-card {
  background-color: #FFF7F8;
  border: 1px solid #FFD2D7;
  border-radius: 28px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-sizing: border-box;
}

.buhoMobile .assistance-header {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.buhoMobile .assistance-header-icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
  flex-shrink: 0;
  margin-top: 2px;
}

.buhoMobile .assistance-header-text h3 {
  font-size: 18px;
  font-weight: 800;
  color: #0B1E3B;
  margin: 0 0 4px 0;
  letter-spacing: -0.01em;
}

.buhoMobile .assistance-header-text p {
  font-size: 13px;
  color: #64748B;
  margin: 0;
  line-height: 1.45;
}

.buhoMobile .assistance-divider {
  height: 1px;
  background-color: rgba(224, 58, 96, 0.12);
  width: 100%;
}

.buhoMobile .assistance-contacts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.buhoMobile .contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: transform 0.2s;
}

.buhoMobile .contact-item:active {
  transform: scale(0.96);
}

.buhoMobile .contact-icon-wrapper {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background-color: #E03A60;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.buhoMobile .contact-icon-wrapper img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.buhoMobile .contact-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.buhoMobile .contact-label {
  font-size: 12px;
  color: #64748B;
  font-weight: 500;
}

.buhoMobile .contact-value {
  font-size: 13px;
  font-weight: 800;
  color: #E03A60;
  white-space: nowrap;
}

.buhoMobile .info-banner {
  background-color: #FFF0F2;
  border-radius: 16px;
  padding: 12px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.buhoMobile .info-banner-icon {
  width: 18px;
  height: 18px;
  object-fit: contain;
  flex-shrink: 0;
  margin-top: 1px;
}

.buhoMobile .info-banner-text {
  font-size: 11px;
  color: #E03A60;
  line-height: 1.45;
  font-weight: 500;
}

/* ═══════════════ FEATURE BADGES ═══════════════ */
.buhoMobile .features-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 8px;
  padding: 8px 0;
  box-sizing: border-box;
}

.buhoMobile .feature-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
}

.buhoMobile .feature-icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.buhoMobile .feature-title {
  font-size: 12px;
  font-weight: 800;
  color: #0B1E3B;
  margin: 0;
}

.buhoMobile .feature-desc {
  font-size: 10px;
  color: #64748B;
  margin: 0;
  line-height: 1.35;
}

/* ═══════════════ FOOTER ═══════════════ */
.buhoMobile .app-footer {
  background-color: #0C1E3C;
  color: #94A3B8;
  padding: 28px 16px 20px 16px;
  border-radius: 28px 28px 0 0;
  margin: auto -16px -16px -16px; /* Spans across full viewport padding */
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  position: relative;
  box-sizing: border-box;
}

.buhoMobile .footer-links {
  display: flex;
  gap: 16px;
  font-size: 13px;
  font-weight: 600;
}

.buhoMobile .footer-links a {
  color: #FFFFFF;
  text-decoration: none;
}

.buhoMobile .footer-copyright {
  font-size: 11px;
  color: #64748B;
  font-weight: 500;
}

.buhoMobile .chat-fab {
  position: absolute;
  right: 24px;
  top: -24px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #E03A60;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(224, 58, 96, 0.4);
  cursor: pointer;
  transition: transform 0.2s;
}

.buhoMobile .chat-fab:active {
  transform: scale(0.92);
}

.buhoMobile .chat-fab img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}
