/* ============================================================
   QRBELL — Shared Inner Page Styles
   ============================================================ */

/* ---------- Design tokens (already in landing.css; duplicate only what's needed) ---------- */
:root {
  --ip-navy:      #031B4E;
  --ip-navy-2:    #082C7A;
  --ip-gold:      #F4B400;
  --ip-gold-dark: #d89e00;
  --ip-cream:     #f4f6fb;
  --ip-green:     #2bb673;
  --ip-red:       #e23b3b;
  --ip-muted:     #6b7280;
}

/* ---- Inner Hero ---- */
.inner-hero {
  background: linear-gradient(135deg, #031B4E 0%, #062155 100%);
  padding: 48px 0 44px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.inner-hero::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 40%, rgba(244,180,0,.07) 0%, transparent 60%);
  pointer-events: none;
}
.inner-hero-body { position: relative; z-index: 1; }
.inner-hero h1 {
  font-size: 2.4rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 10px;
  line-height: 1.15;
}
.inner-breadcrumb .breadcrumb-item,
.inner-breadcrumb .breadcrumb-item a {
  color: rgba(255,255,255,.55);
  font-size: .82rem;
  text-decoration: none;
}
.inner-breadcrumb .breadcrumb-item a:hover { color: var(--ip-gold); }
.inner-breadcrumb .breadcrumb-item.active { color: rgba(255,255,255,.88); }
.inner-breadcrumb .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.3); }

/* ---- Inner CTA Strip ---- */
.inner-cta-strip {
  background: linear-gradient(110deg, #031B4E 0%, #062155 100%);
  border-radius: 16px;
  padding: 28px 36px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; flex-wrap: wrap; margin-top: 4px;
}
.inner-cta-strip h5 { color: #fff; font-size: 1.1rem; font-weight: 700; margin-bottom: 4px; }
.inner-cta-strip p  { color: rgba(255,255,255,.6); font-size: .85rem; margin: 0; }

/* ---- Shared section eyebrow ---- */
.eyebrow {
  display: inline-block;
  color: var(--ip-gold);
  font-weight: 600;
  letter-spacing: 1.5px;
  font-size: .78rem;
  margin-bottom: 8px;
  text-transform: uppercase;
}
.section-title {
  font-size: 2rem;
  color: var(--ip-navy);
  margin-bottom: 14px;
  font-weight: 800;
}
.section-lead {
  color: #6b7280;
  font-size: .93rem;
  line-height: 1.7;
}
.section-pad { padding: 56px 0; }

/* ---- Shared gold button ---- */
.btn-gold {
  background: var(--ip-gold);
  color: #1a1a1a;
  font-weight: 700;
  border: none;
  border-radius: 12px;
  padding: 11px 22px;
  transition: background .2s, transform .2s;
}
.btn-gold:hover { background: var(--ip-gold-dark); color: #1a1a1a; transform: translateY(-2px); }

.btn-outline-navy {
  color: var(--ip-navy);
  border: 2px solid var(--ip-navy);
  border-radius: 12px;
  font-weight: 700;
  padding: 10px 22px;
  transition: .2s;
}
.btn-outline-navy:hover { background: var(--ip-navy); color: #fff; }

/* ============================================================
   USE CASES PAGE
   ============================================================ */

.uc-section { background: #F8FAFC; }

.uc-section .case-img {
  height: 185px !important;
  overflow: hidden;
}
.uc-section .case-img img {
  width: 100%;
  height: 100% !important;
  object-fit: cover;
  display: block;
  transition: transform .45s ease;
}
.uc-section .case-card:hover .case-img img {
  transform: scale(1.06);
}
.uc-section .case-body { text-align: center; }

.case-tag {
  display: inline-block;
  background: rgba(3,27,78,.08);
  color: var(--ip-navy);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 20px;
  margin-bottom: 7px;
}

@media (max-width: 991px) {
  .uc-section .case-img { height: 170px; }
}
@media (max-width: 767px) {
  .uc-section .case-img { height: 160px; }
  .uc-section .case-body { padding: 26px 12px 14px; }
  .inner-cta-strip .d-flex { justify-content: center; }
}
@media (max-width: 575px) {
  .uc-section .case-img { height: 200px; }
  .uc-section .case-body h5 { font-size: .92rem; }
  .uc-section .case-body p  { font-size: .75rem; }
  .uc-section .case-tag     { font-size: .6rem; }
}
@media (max-width: 420px) {
  .uc-section .case-img { height: 180px; }
  .uc-section .case-body { padding: 24px 10px 12px; }
  .inner-cta-strip .d-flex { flex-direction: column; align-items: stretch; width: 100%; gap: 10px !important; }
  .inner-cta-strip .d-flex .btn { text-align: center; justify-content: center; }
}
@media (hover: none) {
  .uc-section .case-card:hover { transform: none !important; box-shadow: 0 6px 18px rgba(0,0,0,.05) !important; }
  .uc-section .case-card:hover .case-img img { transform: none !important; }
}

/* ============================================================
   HOW IT WORKS PAGE
   ============================================================ */

/* Inner hero QR background */
.hiw-hero {
  position: relative;
  background:
    linear-gradient(135deg, rgba(3,27,78,.92) 0%, rgba(6,33,85,.88) 100%),
    url('/images/hero-image.png') center/cover no-repeat;
}
.hiw-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url('/images/favicon.jpeg') center/200px 200px repeat;
  opacity: .04;
  pointer-events: none;
}

/* Steps section */
.hiw-section {
  position: relative;
  padding: 72px 0 56px;
  background: #f4f6fb;
  overflow: hidden;
}
.hiw-section::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(244,246,251,.96) 0%, rgba(244,246,251,.98) 100%);
  pointer-events: none; z-index: 0;
}
.hiw-container { position: relative; z-index: 1; }

.hiw-heading-wrap { margin-bottom: 52px; }
.hiw-eyebrow {
  font-size: .82rem; font-weight: 600; color: var(--ip-gold);
  letter-spacing: 1.5px; margin-bottom: 10px; display: block;
}
.hiw-title { font-size: 2.2rem; font-weight: 800; color: var(--ip-navy); line-height: 1.18; margin: 0; }

/* Steps row */
.hiw-steps-row {
  display: flex; align-items: flex-start; justify-content: center;
  gap: 0; flex-wrap: nowrap; margin-bottom: 56px;
}
.hiw-step-card {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; flex: 0 0 220px; max-width: 220px;
  position: relative;
}
.hiw-step-icon-wrap { margin-bottom: 20px; position: relative; }
.hiw-step-icon {
  width: 88px; height: 88px; border-radius: 50%;
  background: var(--ip-navy);
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; color: #fff;
  box-shadow: 0 10px 32px rgba(3,27,78,.22);
  transition: transform .25s, box-shadow .25s;
  position: relative; z-index: 1;
}
.hiw-step-icon::before {
  content: '';
  position: absolute; inset: -4px; border-radius: 50%;
  border: 2px dashed rgba(3,27,78,.15);
}
.hiw-step-card:hover .hiw-step-icon { transform: translateY(-4px); box-shadow: 0 18px 44px rgba(3,27,78,.3); }

.hiw-step-body { padding: 0 8px; }
.hiw-step-label {
  display: inline-block; font-size: .72rem; font-weight: 700;
  color: var(--ip-gold); letter-spacing: 1.2px; text-transform: uppercase;
  margin-bottom: 8px; background: rgba(244,180,0,.1);
  padding: 3px 10px; border-radius: 20px; border: 1px solid rgba(244,180,0,.25);
}
.hiw-step-title { font-size: 1.05rem; font-weight: 800; color: var(--ip-navy); margin: 0 0 10px; }
.hiw-step-desc  { font-size: .81rem; color: #6b7280; line-height: 1.65; margin: 0; }

/* Dotted connector */
.hiw-connector {
  display: flex; align-items: center; gap: 6px;
  flex-shrink: 0; padding: 0 8px; margin-top: 44px;
}
.hiw-connector span {
  display: block; width: 7px; height: 7px;
  border-radius: 50%; background: rgba(3,27,78,.18); flex-shrink: 0;
}
.hiw-connector span:nth-child(3) { background: rgba(244,180,0,.5); width: 9px; height: 9px; }

/* Features bar */
.hiw-features-bar {
  display: flex; align-items: center; justify-content: center;
  background: #fff; border: 1.5px solid #e2e8f0;
  border-radius: 16px; padding: 20px 36px;
  gap: 0; flex-wrap: wrap;
  box-shadow: 0 4px 20px rgba(3,27,78,.07);
}
.hiw-feature {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 28px; transition: transform .2s;
}
.hiw-feature:hover { transform: translateY(-2px); }
.hiw-feat-icon {
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(3,27,78,.06);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--ip-navy); flex-shrink: 0;
}
.hiw-feat-label { font-size: .88rem; font-weight: 700; color: var(--ip-navy); white-space: nowrap; }
.hiw-feat-divider { width: 1px; height: 36px; background: #e2e8f0; flex-shrink: 0; }

/* Detailed steps section */
.hiw-detail-section { padding: 72px 0 56px; background: #fff; }
.hiw-detail-card {
  background: #f8fafc; border-radius: 20px; padding: 38px 36px;
  height: 100%; border-left: 4px solid transparent;
  transition: transform .25s, box-shadow .25s;
  position: relative; overflow: hidden;
}
.hiw-detail-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(3,27,78,.1); }
.hiw-detail-card::before {
  content: ''; position: absolute; top: -30px; right: -30px;
  width: 120px; height: 120px; border-radius: 50%; opacity: .06;
}
.hiw-card-gold { border-left-color: var(--ip-gold); }
.hiw-card-gold::before { background: var(--ip-gold); }
.hiw-card-blue { border-left-color: #3b82f6; }
.hiw-card-blue::before { background: #3b82f6; }
.hiw-card-green { border-left-color: #22c55e; }
.hiw-card-green::before { background: #22c55e; }
.hiw-detail-num  { font-size: 3.5rem; font-weight: 800; line-height: 1; margin-bottom: 16px; opacity: .1; color: var(--ip-navy); }
.hiw-detail-title { font-size: 1.4rem; font-weight: 800; color: var(--ip-navy); margin-bottom: 12px; }
.hiw-detail-desc  { font-size: .875rem; color: #6b7280; line-height: 1.65; margin-bottom: 18px; }
.hiw-detail-list  { list-style: none; padding: 0; margin: 0 0 18px; display: flex; flex-direction: column; gap: 8px; }
.hiw-detail-list li { font-size: .85rem; color: #1c2333; display: flex; align-items: center; gap: 10px; font-weight: 500; }
.hiw-detail-list .bi-check-circle-fill { color: #22c55e; font-size: .8rem; flex-shrink: 0; }
.hiw-detail-note {
  font-size: .78rem; font-weight: 600; color: var(--ip-navy);
  background: rgba(3,27,78,.05); border-radius: 8px; padding: 8px 14px;
  margin: 0; border-left: 3px solid var(--ip-navy);
}

/* Visual card */
.hiw-visual-card {
  background: linear-gradient(135deg, var(--ip-navy) 0%, #082C7A 100%);
  border-radius: 20px; padding: 56px 32px;
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 20px;
  box-shadow: 0 20px 60px rgba(3,27,78,.2);
  min-height: 280px; position: relative; overflow: hidden;
}
.hiw-visual-card::before {
  content: ''; position: absolute; top: -40px; right: -40px;
  width: 160px; height: 160px; border-radius: 50%;
  background: rgba(244,180,0,.08);
}
.hiw-visual-icon {
  width: 100px; height: 100px; border-radius: 50%;
  background: rgba(255,255,255,.1); border: 2px solid rgba(255,255,255,.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 2.8rem; color: var(--ip-gold);
}
.hiw-visual-caption { font-size: .82rem; font-weight: 600; color: rgba(255,255,255,.6); letter-spacing: .5px; text-align: center; }

/* Why strip */
.hiw-why-strip {
  background: linear-gradient(135deg, var(--ip-navy) 0%, #082C7A 100%);
  padding: 72px 0 64px; position: relative; overflow: hidden;
}
.hiw-why-card {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  border-radius: 18px; padding: 32px 20px 28px; height: 100%;
  transition: background .25s, transform .25s, border-color .25s;
}
.hiw-why-card:hover { background: rgba(255,255,255,.1); border-color: rgba(244,180,0,.3); transform: translateY(-4px); }
.hiw-why-icon {
  width: 58px; height: 58px; border-radius: 50%;
  background: rgba(244,180,0,.12); border: 1.5px solid rgba(244,180,0,.3);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.45rem; color: var(--ip-gold); margin-bottom: 16px;
}
.hiw-why-title { font-size: .95rem; font-weight: 700; color: #fff; margin-bottom: 8px; }
.hiw-why-desc  { font-size: .78rem; color: rgba(255,255,255,.6); line-height: 1.6; margin: 0; }
.bo-hero {
  position: relative;
  background:  linear-gradient(100deg, rgba(14, 26, 54, 0.97) 0%, rgba(15, 30, 65, 0.85) 40%, rgba(8,22,55,.35) 70%, rgba(15, 28, 60, 0.15) 100%), url('/images/hero-image.png') right 25% / cover no-repeat;
  color: #fff;
  padding: 70px 0 70px;
  overflow: hidden;
}
.bo-hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(244,180,0,.07) 0%, transparent 65%);
  pointer-events: none;
}

.bo-breadcrumb {
  padding: 24px 0 0;
  position: relative;
  z-index: 2;
  margin-bottom: 0;
}
.bo-breadcrumb .breadcrumb-item a { color: rgba(255,255,255,.6); font-size: .8rem; }
.bo-breadcrumb .breadcrumb-item a:hover { color: var(--ip-gold); text-decoration: none; }
.bo-breadcrumb .breadcrumb-item.active { color: rgba(255,255,255,.9); }
.bo-breadcrumb .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.35); }

.bo-hero-row {
  padding: 2px 0 0;
  min-height: 520px;
  align-items: flex-end;
}
.bo-hero-text {
  position: relative;
  z-index: 2;
}

.bo-hero-text .eyebrow { margin-bottom: 14px; }
.bo-hero-right {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: stretch;
  position: relative;
  z-index: 4;
}

.hero-title {
  font-size: 44px;
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 18px;
}
.hero-sub {
  color: rgba(255,255,255,.88);
  font-size: .97rem;
  line-height: 1.7;
  max-width: 540px;
  margin-bottom: 28px;
}
.text-gold { color: var(--ip-gold) !important; }

/* Feature badges in hero */
.hero-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin: 28px 0;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.feature-icon {
  width: 46px;
  height: 46px;
  border: 1.5px solid rgba(255,255,255,.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--ip-gold);
  background: rgba(244,180,0,.1);
  flex-shrink: 0;
}
.feature-item strong { display: block; font-size: .82rem; line-height: 1.2; }
.feature-item span   { display: block; font-size: .75rem; opacity: .75; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 28px; }

/* Perfect For card */
.bo-perfect-for {
  background: rgba(2,10,44,.82);
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 14px;
  padding: 20px 28px;
  width: 100%;
  backdrop-filter: blur(14px);
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: nowrap;
}
.bo-pf-icon-col { flex-shrink: 0; }
.bo-pf-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(244,180,0,.13);
  border: 1.5px solid rgba(244,180,0,.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  color: var(--ip-gold);
}
.bo-pf-eyebrow {
  font-size: .66rem;
  font-weight: 600;
  color: rgba(255,255,255,.5);
  letter-spacing: .8px;
  text-transform: uppercase;
  margin: 0 0 2px;
}
.bo-perfect-title { color: #fff; font-size: 1rem; margin: 0 0 10px; font-weight: 800; line-height: 1.2; }
.bo-perfect-list { list-style: none; padding: 0; margin: 0; }
.bo-perfect-list li {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: .78rem;
  color: rgba(255,255,255,.85);
  padding: 3px 0;
  font-weight: 500;
}
.bo-perfect-list .bi-check-circle-fill { color: var(--ip-gold); font-size: .78rem; flex-shrink: 0; }
.bo-pf-left  { flex: 1 1 220px; min-width: 0; }
.bo-pf-right { flex: 1 1 220px; min-width: 0; }

/* Why section */
.bo-why { background: #fff; }

.info-item {
  text-align: center; padding: 26px 14px; height: 100%;
  border: 1px solid #eee; border-radius: 12px;
  transition: background .25s, transform .25s, box-shadow .25s;
}
.info-item:hover { background: #f4f6fb; transform: translateY(-5px); box-shadow: 0 8px 24px rgba(3,27,78,.08); }
.info-icon {
  width: 54px; height: 54px; border-radius: 50%;
  background: rgba(244,180,0,.15); color: var(--ip-navy);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 12px;
}
.info-item h6 { margin: 0 0 4px; color: var(--ip-navy); font-size: .95rem; font-weight: 700; }
.info-item p  { margin: 0; font-size: .78rem; color: var(--ip-muted); }

/* Use case cards */
.use-cases { background: #f4f6fb; }
.case-card {
  background: #fff; border-radius: 14px; overflow: hidden; height: 100%;
  transition: transform .25s, box-shadow .25s;
  box-shadow: 0 4px 14px rgba(3,27,78,.06);
}
.case-card:hover { transform: translateY(-6px); box-shadow: 0 16px 36px rgba(3,27,78,.12); }
.case-img {
  height: 110px; background-size: cover; background-position: center;
  transition: transform .4s;
}
.case-body { position: relative; padding: 28px 12px 16px; text-align: center; }
.case-icon {
  position: absolute; top: -18px; left: 50%; transform: translateX(-50%);
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--ip-navy); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: .95rem; border: 3px solid #fff;
  box-shadow: 0 4px 12px rgba(3,27,78,.25);
}
.case-body h5 { color: var(--ip-navy); font-size: .88rem; margin-bottom: 4px; font-weight: 700; }
.case-body p  { color: var(--ip-muted); font-size: .72rem; margin: 0; line-height: 1.4; }

/* Plans */
.bo-plans { background: #f8f9fc; }
.bo-plan-card {
  background: #fff; border: 2px solid #eef2fa;
  border-radius: 18px; padding: 28px 24px; height: 100%;
  position: relative; transition: border-color .25s, transform .25s, box-shadow .25s;
}
.bo-plan-card:hover { transform: translateY(-4px); box-shadow: 0 14px 36px rgba(3,27,78,.1); border-color: var(--ip-navy); }
.bo-plan-card.bo-plan-featured {
  border-color: var(--ip-gold);
  background: linear-gradient(160deg, #fff 70%, #fffbea 100%);
  box-shadow: 0 10px 36px rgba(244,180,0,.15);
}
.bo-plan-popular-badge {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--ip-gold); color: #1a1a1a;
  font-size: .68rem; font-weight: 700; letter-spacing: 1px;
  padding: 4px 14px; border-radius: 99px;
}
.bo-plan-name    { font-size: 1.15rem; font-weight: 700; color: var(--ip-navy); display: block; margin-bottom: 4px; }
.bo-plan-tagline { font-size: .8rem; color: var(--ip-muted); margin: 0 0 18px; }
.bo-plan-price   { margin-bottom: 20px; }
.bo-price-currency { font-size: 1.2rem; font-weight: 700; color: var(--ip-navy); vertical-align: top; margin-top: 6px; display: inline-block; }
.bo-price-amount   { font-size: 2.6rem; font-weight: 800; color: var(--ip-navy); line-height: 1; }
.bo-price-period   { font-size: .82rem; color: var(--ip-muted); }
.bo-price-custom   { font-size: 1.3rem; font-weight: 700; color: var(--ip-navy); }
.bo-plan-features  { list-style: none; padding: 0; margin: 0 0 22px; }
.bo-plan-features li { display: flex; align-items: flex-start; gap: 8px; font-size: .86rem; color: #374151; margin-bottom: 9px; }
.bo-plan-features .bi-check-circle-fill { color: var(--ip-green); margin-top: 2px; flex-shrink: 0; }

/* Exclusive sidebar */
.bo-exclusive-card {
  background: linear-gradient(140deg, #031B4E 0%, #062155 100%);
  border-radius: 18px; padding: 26px 20px; height: 100%; color: #fff;
}
.bo-exclusive-title { font-size: .68rem; font-weight: 700; letter-spacing: 1.2px; color: var(--ip-gold); text-transform: uppercase; margin-bottom: 18px; }
.bo-exclusive-list  { list-style: none; padding: 0; margin: 0 0 20px; }
.bo-exclusive-list li { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 14px; }
.bo-excl-icon {
  width: 36px; height: 36px; border-radius: 10px;
  background: rgba(244,180,0,.12); border: 1px solid rgba(244,180,0,.2);
  display: flex; align-items: center; justify-content: center;
  font-size: .95rem; color: var(--ip-gold); flex-shrink: 0;
}
.bo-exclusive-list strong { display: block; font-size: .84rem; color: #fff; margin-bottom: 1px; }
.bo-exclusive-list span   { font-size: .75rem; color: rgba(255,255,255,.6); }

/* How it works for business */
.bo-hiw { background: #f4f6fb; }
.bo-step-item { display: flex; flex-direction: column; align-items: center; text-align: center; flex: 1; min-width: 110px; padding: 14px 6px; }
.bo-step-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--ip-navy); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 12px;
}
.bo-step-title { font-size: .84rem; font-weight: 700; color: var(--ip-navy); margin-bottom: 4px; }
.bo-step-desc  { font-size: .75rem; color: var(--ip-muted); line-height: 1.5; }
.bo-step-arrow { color: var(--ip-gold); font-size: 1.4rem; align-self: center; margin-top: -10px; padding: 0 2px; flex-shrink: 0; }

/* CTA Banner */
.bo-cta-banner {
  background: linear-gradient(100deg, #031B4E 0%, #082C7A 100%);
  padding: 32px 28px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  margin: 40px;
}
.bo-cta-icon-wrap {
  width: 80px; height: 80px; border-radius: 50%;
  background: rgba(244,180,0,.12); border: 2px solid rgba(244,180,0,.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 2.2rem; color: var(--ip-gold); flex-shrink: 0;
}
.bo-cta-text h3 { color: #fff; font-size: 1.4rem; margin-bottom: 6px; }
.bo-cta-text p  { color: rgba(255,255,255,.7); font-size: .9rem; margin: 0; }

/* Trust bar */
.bo-trust-bar {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 0;
  padding: 16px 12px;
  border-top: 1px solid #dde3f0;
}
.bo-trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 20px;
  flex: 1 1 160px;
  min-width: 0;
}
.bo-trust-item i { font-size: 1.4rem; color: var(--ip-gold); flex-shrink: 0; }
.bo-trust-item strong { display: block; font-size: .82rem; font-weight: 700; color: #1a1a2e; line-height: 1.2; }
.bo-trust-item span  { display: block; font-size: .72rem; color: var(--ip-muted); }

/* Business steps flow */
.bo-steps-flow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.bo-step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 0 0 130px;
  max-width: 130px;
  padding: 14px 6px;

}
.bo-step-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--ip-navy); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 12px;
  transition: transform .2s, box-shadow .2s;
}
.bo-step-item:hover .bo-step-icon { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(3,27,78,.2); }
.bo-step-title { font-size: .84rem; font-weight: 700; color: var(--ip-navy); margin-bottom: 4px; }
.bo-step-desc  { font-size: .75rem; color: var(--ip-muted); line-height: 1.5; margin: 0; }
.bo-step-arrow {
  color: var(--ip-gold);
  font-size: 2rem;
  flex-shrink: 0;
  line-height: 1;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991px) {
  .inner-hero h1 { font-size: 2rem; }
  .hero-title { font-size: 38px; }
  .hero-features { grid-template-columns: repeat(2, 1fr); }
  .bo-hero-row { min-height: auto;  }
  .bo-hero-right { justify-content: flex-start; padding-bottom: 0; }
  .bo-perfect-for { gap: 16px; padding: 18px 20px; }
  .hiw-title { font-size: 1.85rem; }

  .hiw-steps-row { flex-direction: column; align-items: center; gap: 0; max-width: 420px; margin: 0 auto 40px; }
  .hiw-step-card { flex: unset; max-width: 100%; width: 100%; flex-direction: row; text-align: left; gap: 20px; padding: 20px 0; border-bottom: 1px solid rgba(3,27,78,.08); }
  .hiw-step-card:last-of-type { border-bottom: none; }
  .hiw-step-icon-wrap { margin-bottom: 0; flex-shrink: 0; }
  .hiw-step-body { padding: 0; }
  .hiw-connector { flex-direction: column; margin: 0; padding: 2px 0 2px 44px; gap: 4px; height: 28px; align-self: flex-start; }
  .hiw-features-bar { padding: 16px 20px; flex-wrap: wrap; justify-content: space-around; }
  .hiw-feat-divider { display: none; }
  .hiw-feature { padding: 10px 16px; }

  .bo-step-arrow { transform: rotate(90deg); }
}

@media (max-width: 767px) {
  .inner-hero { padding: 32px 0 32px; }
  .inner-hero h1 { font-size: 1.75rem; }
  .inner-cta-strip { flex-direction: column; text-align: center; padding: 24px 20px; }
  .hero-title { font-size: 32px; }
  .hero-features { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .bo-trust-item { flex: 1 1 45%; padding: 10px 12px; }
}

@media (max-width: 575px) {
  .inner-hero h1 { font-size: 1.55rem; }
  .hero-title { font-size: 26px; }
  .hero-sub { font-size: .9rem; }
  .hero-features { grid-template-columns: 1fr 1fr; gap: 8px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; text-align: center; }
  .bo-perfect-for { flex-wrap: wrap; gap: 12px; padding: 16px; }
  .bo-pf-left, .bo-pf-right { flex: 1 1 100%; }
  .section-title { font-size: 1.6rem; }
  .hiw-title { font-size: 1.4rem; }
  .hiw-step-icon { width: 60px; height: 60px; font-size: 1.4rem; }
  .hiw-features-bar { border-radius: 12px; padding: 8px 10px; }
  .hiw-feat-icon { width: 32px; height: 32px; font-size: .9rem; }
  .hiw-feat-label { font-size: .76rem; }
  .hiw-feature { flex: 0 0 50%; padding: 10px 8px; border-bottom: 1px solid #f1f5f9; }
  .hiw-feature:nth-child(odd) { border-right: 1px solid #f1f5f9; }
  .hiw-feature:nth-last-child(-n+2) { border-bottom: none; }
}


/* ============================================================
   PRICING PAGE
   ============================================================ */

/* Dark header for pricing page */
.bo-page-header {
  background: var(--ip-navy);
  padding: 50px 0 40px;
  text-align: center;
}
.bo-page-header .eyebrow { margin-bottom: 10px; }
.bo-page-header .section-title { color: #fff; margin-bottom: 10px; }
.bo-page-header-sub { color: rgba(255,255,255,.65); font-size: .98rem; margin: 0; }

/* Plan card head block */
.bo-plan-head { margin-bottom: 20px; }

/* Billing toggle */
.billing-toggle-wrap {
  display: inline-flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2);
  border-radius: 50px; padding: 8px 20px;
  font-size: .9rem; font-weight: 600; color: rgba(255,255,255,.7);
  cursor: pointer; margin-top: 20px;
}
.billing-toggle-wrap .lbl-active { color: #fff; }
.billing-toggle-wrap .save-badge {
  background: #22c55e; color: #fff;
  font-size: .72rem; padding: 2px 9px; border-radius: 50px; font-weight: 700;
}

/* Why Upgrade section */
.why-upgrade-section { background: #f8f9fc; padding: 48px 0; }
.why-upgrade-title {
  font-size: 1.55rem; font-weight: 700;
  color: var(--ip-navy); margin-bottom: 0;
}
.why-upgrade-grid {
  display: flex; justify-content: center;
  gap: 40px; flex-wrap: wrap; margin-top: 32px;
}
.why-upgrade-item {
  display: flex; flex-direction: column;
  align-items: center; gap: 10px; min-width: 110px;
}
.why-upgrade-icon {
  width: 64px; height: 64px; border-radius: 16px;
  background: #fff; border: 1.5px solid #e3e8f0;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.7rem; color: var(--ip-navy);
  box-shadow: 0 2px 10px rgba(8,22,55,.07);
  transition: box-shadow .2s, border-color .2s, color .2s;
}
.why-upgrade-item:hover .why-upgrade-icon {
  border-color: var(--ip-gold); color: var(--ip-gold);
  box-shadow: 0 4px 18px rgba(212,175,55,.2);
}
.why-upgrade-label { font-size: .88rem; font-weight: 600; color: #3a3a5c; text-align: center; }

/* CTA inner layout */
.bo-cta-inner {
  display: flex; align-items: center; gap: 28px;
  flex-wrap: wrap; position: relative; z-index: 1;
}
.bo-cta-actions {
  display: flex; gap: 12px; flex-wrap: wrap; flex-shrink: 0;
}

/* Responsive additions */
@media (max-width: 991px) {
  .bo-cta-inner { justify-content: center; text-align: center; }
  .bo-cta-actions { justify-content: center; }
  .bo-cta-text { text-align: center; }
  .bo-exclusive-card { margin-top: 0; }
}
@media (max-width: 767px) {
  .why-upgrade-grid { gap: 24px; }
  .bo-cta-actions { flex-direction: column; width: 100%; }
  .bo-cta-actions .btn { width: 100%; text-align: center; }
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */

/* Story section */
.au-story-section { background: #fff; }
.au-story-heading {
  font-size: 2.1rem; font-weight: 800;
  color: var(--ip-navy); line-height: 1.2; margin-bottom: 22px;
}
.au-story-lead {
  font-size: .95rem; color: #374151; line-height: 1.8; margin-bottom: 14px;
}
.au-story-body {
  font-size: .92rem; color: #4b5563; line-height: 1.8; margin-bottom: 14px;
}
.au-story-img {
  width: 100%; border-radius: 20px;
  box-shadow: 0 20px 60px rgba(3,27,78,.13);
  object-fit: cover; max-height: 420px; display: block;
}

/* Values strip */
.au-values {
  background: linear-gradient(110deg, #031B4E 0%, #062155 100%);
  margin: 0 48px; border-radius: 20px;
}
.au-values-card { padding: 8px 0; }
.au-values-row {
  display: flex; align-items: stretch;
  justify-content: center; flex-wrap: wrap; gap: 0;
}
.au-value-item {
  text-align: center; padding: 28px 24px; flex: 1; min-width: 180px;
}
.au-value-icon {
  width: 68px; height: 68px; border-radius: 50%;
  border: 2px solid rgba(244,180,0,.55);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.6rem; color: var(--ip-gold);
  margin-bottom: 18px; background: rgba(244,180,0,.07); transition: .3s;
}
.au-value-item:hover .au-value-icon {
  background: rgba(244,180,0,.15); border-color: rgba(244,180,0,.8);
  transform: translateY(-3px);
}
.au-value-title { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 8px; }
.au-value-desc  { font-size: .8rem; color: rgba(255,255,255,.65); line-height: 1.6; margin: 0; }
.au-values-divider {
  width: 1px; background: rgba(255,255,255,.14); align-self: stretch; margin: 16px 0;
}

/* Journey / stats */
.au-journey-section { background: #f8f9fc; }
.au-journey-heading {
  font-size: 2rem; font-weight: 800; color: var(--ip-navy); margin-bottom: 15px;
}
.au-journey-text { font-size: .95rem; line-height: 1.8; color: #64748b; max-width: 480px; }
.au-stats-wrapper {
  background: #efeeee; border-radius: 16px;
  display: flex; overflow: hidden; margin-top: 60px;
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
}
.au-stat-item {
  flex: 1; text-align: center; padding: 28px 15px;
  border-right: 1px solid #eef2f7;
}
.au-stat-item:last-child { border-right: none; }
.au-stat-num  { font-size: 28px; font-weight: 700; color: #1e3a8a; margin-bottom: 8px; }
.au-stat-label { font-size: 14px; color: #64748b; line-height: 1.4; }

/* CTA section */
.au-cta-section { background: #fff; }
.inner-cta-strip-text h5 { color: #fff; font-size: 1.1rem; font-weight: 700; margin-bottom: 4px; }
.inner-cta-strip-text p  { color: rgba(255,255,255,.6); font-size: .85rem; margin: 0; }

/* About responsive */
@media (max-width: 991px) {
  .au-values { margin: 0 20px; }
  .au-value-item { min-width: 220px; }
  .au-story-heading { font-size: 1.85rem; }
  .au-journey-heading { font-size: 1.75rem; }
  .au-stats-wrapper { margin-top: 30px; flex-wrap: wrap; }
  .au-stat-item { width: 50%; flex: unset; border-bottom: 1px solid #eef2f7; }
}
@media (max-width: 767px) {
  .au-values { margin: 0 12px; }
  .au-value-item { min-width: 160px; padding: 20px 14px; }
  .inner-cta-strip { flex-direction: column; text-align: center; padding: 24px 22px; }
}
@media (max-width: 575px) {
  .au-story-heading { font-size: 1.55rem; }
  .au-value-item { min-width: 140px; flex: 0 0 48%; }
  .au-value-icon { width: 58px; height: 58px; font-size: 1.3rem; }
  .au-stat-item { width: 100%; border-right: none; }
}
@media (max-width: 400px) {
  .au-value-item { flex: 0 0 100%; }
  .au-story-heading { font-size: 1.4rem; }
}

/* ── About page layout helpers (no Bootstrap dependency) ── */
.ip-container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }

.au-two-col {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
}
.au-col-stats { display: flex; flex-direction: column; }

@media (max-width: 991px) {
  .au-two-col { grid-template-columns: 1fr; gap: 32px; }
  .au-col-img { order: -1; }
  .au-stats-wrapper { margin-top: 0; }
}
@media (max-width: 575px) {
  .ip-container { padding: 0 16px; }
}

/* ── Section heading with gold rule ── */
.au-section-head { margin-bottom: 40px; }
.au-section-head .section-title { margin-bottom: 14px; }
.au-title-rule {
  width: 52px; height: 3px; border-radius: 2px;
  background: var(--ip-gold); margin: 0 auto;
}

/* ── Leadership message cards ── */
.au-ceo-card {
  display: flex; align-items: center; gap: 48px;
  margin-bottom: 40px;
  background: #fff;
  border-radius: 24px;
  border: 1px solid rgba(3,27,78,.08);
  box-shadow: 0 8px 40px rgba(3,27,78,.09);
  padding: 48px 44px;
}
.au-ceo-card:last-child { margin-bottom: 0; }

/* Reversed layout — photo left, text right */
.au-ceo-card--reverse { flex-direction: row-reverse; }

/* ── Circle image side ── */
.au-leader-circle-wrap {
  flex-shrink: 0;
  display: flex; flex-direction: column; align-items: center;
  width: 220px;
}
.au-leader-circle-img {
  width: 200px; height: 200px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 5px #fff, 0 0 0 8px rgba(30,100,255,.25), 0 12px 32px rgba(3,27,78,.18);
}
.au-leader-card-cgo .au-leader-circle-img {
  box-shadow: 0 0 0 5px #fff, 0 0 0 8px rgba(244,180,0,.45), 0 12px 32px rgba(3,27,78,.18);
}
.au-leader-circle-name {
  margin: 16px 0 3px; font-size: 1rem; font-weight: 700; color: #1a2340; text-align: center;
}
.au-leader-circle-role {
  margin: 0; font-size: .78rem; color: #6b7280; text-align: center; letter-spacing: .3px;
}
@media (max-width: 900px) {
  .au-ceo-card, .au-ceo-card--reverse { flex-direction: column; align-items: center; gap: 32px; padding: 36px 24px; }
  .au-leader-circle-wrap { width: 100%; max-width: 260px; }
}

/* Role badge above the quote */
.au-leader-badge {
  display: inline-flex; align-items: center; gap: 8px;
  width: fit-content;
  align-self: flex-start;
  font-size: .78rem; font-weight: 900; letter-spacing: 3px;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(120deg, #0f1f5c 0%, #1e40af 60%, #3b82f6 100%);
  border-radius: 6px;
  padding: 9px 20px;
  margin-bottom: 20px;
  box-shadow: 0 4px 18px rgba(30,64,175,.35);
  position: relative;
  overflow: hidden;
}
.au-leader-badge::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(255,255,255,.12) 0%, transparent 60%);
  pointer-events: none;
}
.au-leader-badge--gold {
  background: linear-gradient(120deg, #92600a 0%, #c8890f 60%, var(--ip-gold) 100%);
  color: #fff;
  box-shadow: 0 4px 18px rgba(200,137,15,.4);
}

.au-ceo-body {
  flex: 1;
  display: flex; flex-direction: column; justify-content: center;
}
.au-ceo-quote-mark {
  font-size: 2.4rem; color: var(--ip-gold);
  line-height: 1; margin-bottom: 10px;
}
.au-ceo-body p { font-size: .95rem; color: #374151; line-height: 1.85; margin-bottom: 12px; }
.au-ceo-sign {
  margin-top: 20px; padding-top: 16px;
  border-top: 2px solid var(--ip-gold);
}
.au-sign-name { font-size: 1.05rem; color: var(--ip-navy); }
.au-sign-role { font-size: .8rem; color: #555; font-weight: 600; letter-spacing: .3px; margin-top: 2px; }

/* Dark photo card (blue glow = CEO, gold glow = CGO) */
.au-ceo-img-wrap {
  flex-shrink: 0; width: 300px;
  display: flex; flex-direction: column;
  align-items: center; gap: 20px;
  padding: 40px 30px;
  background: #080c18;
  border-radius: 18px;
  border: 1.5px solid rgba(30,100,255,.45);
  box-shadow:
    0 0 0 1px rgba(30,100,255,.15),
    0 0 32px rgba(30,100,255,.25),
    0 0 64px rgba(0,180,255,.12);
}
.au-leader-card-cgo .au-ceo-img-wrap {
  border-color: rgba(244,180,0,.5);
  box-shadow:
    0 0 0 1px rgba(244,180,0,.15),
    0 0 32px rgba(244,180,0,.22),
    0 0 64px rgba(244,180,0,.10);
}

/* Spinning ring — blue (CEO) */
.au-ceo-glow-wrap {
  position: relative;
  width: 220px; height: 220px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 0 24px rgba(30,100,255,.5), 0 0 48px rgba(0,180,255,.3);
}
.au-ceo-glow-wrap::before {
  content: '';
  position: absolute;
  inset: -60%;
  background: conic-gradient(
    #1e40ff 0deg,
    #38bdf8 72deg,
    #e0f2fe 144deg,
    #38bdf8 216deg,
    #1e40ff 288deg,
    #1e40ff 360deg
  );
  animation: ceo-ring-spin 3s linear infinite;
  z-index: 0;
}
.au-ceo-glow-wrap::after {
  content: '';
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  background: #080c18;
  z-index: 1;
}

/* Spinning ring — gold (CGO) */
.au-ceo-glow-wrap--gold {
  box-shadow: 0 0 24px rgba(244,180,0,.55), 0 0 48px rgba(244,180,0,.28);
}
.au-ceo-glow-wrap--gold::before {
  background: conic-gradient(
    #b8860b 0deg,
    #F4B400 72deg,
    #fff5cc 144deg,
    #F4B400 216deg,
    #b8860b 288deg,
    #b8860b 360deg
  );
}
.au-ceo-glow-wrap--gold::after { background: #080c18; }

.au-ceo-img {
  position: relative; z-index: 2;
  width: 208px; height: 208px;
  border-radius: 50%;
  object-fit: cover; object-position: top;
  display: block;
}
@keyframes ceo-ring-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.au-ceo-name-plate { text-align: center; }
.au-ceo-name-plate strong {
  display: block; font-size: 1rem; color: #fff; font-weight: 800;
}
.au-ceo-name-plate span {
  display: block; font-size: .72rem; color: var(--ip-gold);
  font-weight: 700; letter-spacing: .7px;
  text-transform: uppercase; margin-top: 5px;
}

@media (max-width: 479px) {
  .au-ceo-glow-wrap { width: 180px; height: 180px; }
  .au-ceo-img { width: 168px; height: 168px; }
  .au-ceo-img-wrap { padding: 28px 20px; }
}

/* ── Leadership grid ── */
.au-leadership-section { background: #f8f9fc; }
.au-leadership-grid {
  display: flex; flex-wrap: wrap; gap: 28px; justify-content: center;
}
.au-leader-card {
  background: #fff; border-radius: 20px;
  box-shadow: 0 6px 28px rgba(3,27,78,.09);
  width: 300px; max-width: 100%;
  display: flex; flex-direction: column; align-items: center;
  padding: 36px 28px 32px;
  text-align: center;
  transition: transform .25s, box-shadow .25s;
}
.au-leader-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 44px rgba(3,27,78,.14);
}
.au-leader-img-wrap {
  width: 140px; height: 140px;
  flex-shrink: 0;
  margin-bottom: 20px;
}
.au-leader-img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top;
  display: block; transition: transform .4s;
}
.au-leader-card:hover .au-leader-img { transform: scale(1.06); }
.au-leader-body { flex: 1; }
.au-leader-name {
  font-size: 1.1rem; font-weight: 800;
  color: var(--ip-navy); margin: 0 0 6px;
}
.au-leader-role {
  display: inline-block; font-size: .72rem; font-weight: 700;
  color: #fff; background: var(--ip-gold);
  border-radius: 20px; padding: 3px 14px;
  text-transform: uppercase; letter-spacing: .8px; margin-bottom: 14px;
}
.au-leader-desc {
  font-size: .83rem; color: #6b7280; line-height: 1.72; margin: 0;
}

/* ── Business Offer: Trust bar mobile fix ── */
@media (max-width: 575px) {
  .bo-trust-bar { gap: 0; padding: 8px 4px; }
  .bo-trust-item { flex: 1 1 100%; padding: 10px 16px; border-bottom: 1px solid #dde3f0; }
  .bo-trust-item:last-child { border-bottom: none; }
}
@media (min-width: 576px) and (max-width: 767px) {
  .bo-trust-item { flex: 1 1 45%; padding: 10px 12px; }
}

/* ── Trust bar: 2 cards per row on mobile ── */
@media (max-width: 767px) {
  .bo-trust-bar { flex-wrap: wrap; gap: 0; padding: 8px 4px; }
  .bo-trust-item { flex: 0 0 50%; padding: 10px 12px; border-bottom: 1px solid #dde3f0; }
  .bo-trust-item:nth-child(odd) { border-right: 1px solid #dde3f0; }
  .bo-trust-item:nth-last-child(-n+2) { border-bottom: none; }
}

.bo-trust-bar {
    padding: 20px 0;
}

.bo-trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 18px;
}

.bo-trust-item i {
    font-size: 1.75rem;
}

.bo-trust-item strong {
    display: block;
    font-size: 14px;
    line-height: 1.2;
}

.bo-trust-item span {
    display: block;
    font-size: 12px;
    line-height: 1.2;
}

/* Mobile */
@media (max-width: 767px) {
    .bo-trust-bar .d-flex {
        flex-direction: column;
        align-items: stretch;
    }

    .bo-trust-item {
        width: 100%;
        justify-content: flex-start;
        padding: 14px 16px;
    }

    .bo-trust-item i {
        font-size: 1.5rem;
    }
}