/* ==========================================================
   Elevate CSS Cleanup 2026-06-18
   Purpose: final visual override after legacy/premium theme layers.
   Scope: public landing page, testimonials, navigation, app shell.
   Safe: CSS-only, no backend route or business logic changes.
   ========================================================== */

:root {
  --elevate-clean-bg: #f7fbff;
  --elevate-clean-surface: rgba(255, 255, 255, .94);
  --elevate-clean-surface-2: rgba(248, 252, 255, .88);
  --elevate-clean-text: #111827;
  --elevate-clean-muted: #5f6f85;
  --elevate-clean-line: rgba(15, 76, 255, .12);
  --elevate-clean-blue: #1668ff;
  --elevate-clean-blue-2: #4aa9ff;
  --elevate-clean-gold: #f4c542;
  --elevate-clean-radius: 24px;
  --elevate-clean-shadow: 0 18px 48px rgba(7, 17, 31, .10);
}

html[data-elevate-theme="dark"] {
  --elevate-clean-bg: #071426;
  --elevate-clean-surface: rgba(13, 27, 47, .94);
  --elevate-clean-surface-2: rgba(15, 35, 62, .86);
  --elevate-clean-text: #f8fafc;
  --elevate-clean-muted: #bfccdc;
  --elevate-clean-line: rgba(255, 255, 255, .14);
  --elevate-clean-shadow: 0 22px 54px rgba(0, 0, 0, .36);
}

html {
  scroll-padding-top: 96px;
}

body {
  overflow-x: hidden;
  color: var(--elevate-clean-text) !important;
}

img,
svg,
video,
canvas {
  max-width: 100%;
}

.container,
.container-lg,
.container-xl,
.container-xxl {
  padding-left: clamp(16px, 2vw, 28px);
  padding-right: clamp(16px, 2vw, 28px);
}

/* ---------- Public navbar cleanup ---------- */
.elevate-public-nav {
  z-index: 1040;
  min-height: 78px;
  padding: 10px 0 !important;
  background: rgba(255, 255, 255, .88) !important;
  border-bottom: 1px solid var(--elevate-clean-line) !important;
  box-shadow: 0 10px 32px rgba(7, 17, 31, .07) !important;
}

html[data-elevate-theme="dark"] .elevate-public-nav {
  background: rgba(7, 20, 38, .90) !important;
}

.elevate-nav-container {
  gap: 14px;
}

.elevate-nav-brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  min-width: 0;
  margin-right: 8px;
  padding: 0 !important;
}

.elevate-logo-shell {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: auto !important;
  min-width: 142px !important;
  height: 52px !important;
  border-radius: 16px !important;
  overflow: visible !important;
}

.elevate-logo-shell img {
  width: 150px !important;
  height: 52px !important;
  object-fit: contain !important;
}

.elevate-public-links {
  align-items: center;
  gap: 3px;
}

.elevate-public-links .nav-link {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 11px !important;
  border-radius: 999px !important;
  font-size: .92rem;
  font-weight: 800 !important;
  line-height: 1.1;
  white-space: nowrap;
  color: var(--elevate-clean-muted) !important;
}

.elevate-public-links .nav-link:hover,
.elevate-public-links .nav-link:focus {
  color: var(--elevate-clean-blue) !important;
  background: rgba(22, 104, 255, .09) !important;
}

.elevate-nav-actions {
  justify-content: flex-end;
  flex: 0 0 auto;
}

.elevate-nav-actions .btn,
.elevate-nav-actions .elevate-theme-toggle {
  min-height: 40px;
  padding: 9px 14px !important;
  line-height: 1.1;
  white-space: nowrap;
}

.elevate-nav-toggler {
  border: 1px solid var(--elevate-clean-line) !important;
  border-radius: 14px !important;
  padding: 9px 11px !important;
  background: var(--elevate-clean-surface) !important;
  box-shadow: none !important;
}

html[data-elevate-theme="dark"] .navbar-toggler-icon {
  filter: invert(1) grayscale(1) brightness(1.8);
}

/* ---------- Section spacing and text cleanup ---------- */
.elevate-home-section,
.elevate-testimonials-section,
.trust-privacy-section,
.cakti-section {
  position: relative;
  padding-top: clamp(66px, 8vw, 104px) !important;
  padding-bottom: clamp(58px, 7vw, 92px) !important;
}

.elevate-section-anchor {
  scroll-margin-top: 96px;
}

.elevate-heading-center,
.elevate-section-heading,
.elevate-section-head {
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

.elevate-section-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 7px 13px;
  border-radius: 999px;
  background: rgba(22, 104, 255, .10);
  color: var(--elevate-clean-blue);
  font-size: .78rem;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.elevate-section-title,
.elevate-hero-title {
  color: var(--elevate-clean-text) !important;
  letter-spacing: -.045em;
  text-wrap: balance;
}

.elevate-section-title {
  margin-top: 14px;
  margin-bottom: 14px;
  font-size: clamp(32px, 4.6vw, 56px) !important;
  line-height: 1.04;
}

.elevate-section-lead,
.elevate-hero-lead,
.elevate-feature-card p,
.elevate-advantage-card p,
.elevate-step-card p {
  color: var(--elevate-clean-muted) !important;
  line-height: 1.75;
}

.elevate-section-lead {
  max-width: 760px;
  margin: 0 auto;
  font-size: clamp(1rem, 1.35vw, 1.15rem);
}

/* ---------- Card/grid cleanup ---------- */
.elevate-feature-grid,
.elevate-advantage-grid,
.elevate-step-grid,
.elevate-preview-grid,
.elevate-pricing-grid {
  gap: 22px !important;
}

.elevate-feature-card,
.elevate-advantage-card,
.elevate-step-card,
.elevate-pricing-card,
.elevate-dashboard-preview,
.elevate-score-card,
.card,
.cakti-card {
  border: 1px solid var(--elevate-clean-line) !important;
  border-radius: var(--elevate-clean-radius) !important;
  background: linear-gradient(180deg, var(--elevate-clean-surface), var(--elevate-clean-surface-2)) !important;
  box-shadow: var(--elevate-clean-shadow) !important;
}

/* ---------- Testimonials cleanup ---------- */
.elevate-testimonials-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 5% 0%, rgba(22, 104, 255, .12), transparent 29%),
    radial-gradient(circle at 92% 9%, rgba(244, 197, 66, .16), transparent 28%);
}

.elevate-testimonials-section::before {
  content: "";
  position: absolute;
  inset: 28px clamp(16px, 4vw, 56px);
  z-index: 0;
  border: 1px solid var(--elevate-clean-line);
  border-radius: clamp(28px, 4vw, 44px);
  background: rgba(255, 255, 255, .28);
  pointer-events: none;
}

html[data-elevate-theme="dark"] .elevate-testimonials-section::before {
  background: rgba(255, 255, 255, .035);
}

.elevate-testimonials-section > .container {
  position: relative;
  z-index: 1;
}

.elevate-testimonial-summary {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 14px !important;
  max-width: 860px;
  margin: 30px auto 30px !important;
}

.elevate-testimonial-summary > div {
  min-height: 104px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 18px 16px !important;
  border-radius: 22px !important;
  border: 1px solid var(--elevate-clean-line) !important;
  background: var(--elevate-clean-surface) !important;
  box-shadow: 0 12px 30px rgba(7, 17, 31, .08) !important;
  text-align: center;
}

.elevate-testimonial-summary strong {
  display: block;
  color: var(--elevate-clean-text) !important;
  font-size: 1.55rem;
  line-height: 1;
  font-weight: 950;
}

.elevate-testimonial-summary span {
  color: var(--elevate-clean-muted) !important;
  font-size: .9rem;
  font-weight: 800;
}

.elevate-testimonial-grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 18px !important;
  align-items: stretch;
}

.elevate-testimonial-card {
  min-width: 0;
  height: 100%;
  min-height: 258px;
  padding: 22px !important;
  border-radius: 24px !important;
  border: 1px solid var(--elevate-clean-line) !important;
  background: linear-gradient(180deg, var(--elevate-clean-surface), var(--elevate-clean-surface-2)) !important;
  box-shadow: 0 14px 38px rgba(7, 17, 31, .09) !important;
  transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}

.elevate-testimonial-card:not(.d-none) {
  display: flex !important;
  flex-direction: column;
}

.elevate-testimonial-card:hover {
  transform: translateY(-2px);
  border-color: rgba(22, 104, 255, .22) !important;
  box-shadow: 0 20px 48px rgba(7, 17, 31, .13) !important;
}

.elevate-testimonial-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.elevate-testimonial-top h3 {
  margin: 0;
  color: var(--elevate-clean-text) !important;
  font-size: 1.03rem !important;
  font-weight: 950 !important;
  line-height: 1.25;
  letter-spacing: -.015em;
}

.elevate-testimonial-email {
  display: block;
  max-width: 100%;
  margin-top: 5px;
  color: var(--elevate-clean-muted) !important;
  font-size: .84rem !important;
  font-weight: 750 !important;
  overflow-wrap: anywhere;
}

.elevate-testimonial-badge {
  flex: 0 0 auto;
  max-width: 52%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 7px 10px !important;
  border-radius: 999px !important;
  border: 1px solid rgba(22, 104, 255, .16) !important;
  background: rgba(22, 104, 255, .09) !important;
  color: var(--elevate-clean-blue) !important;
  font-size: .72rem !important;
  font-weight: 950 !important;
  line-height: 1.1;
  text-align: center;
  white-space: normal !important;
}

html[data-elevate-theme="dark"] .elevate-testimonial-badge {
  color: #9bd5ff !important;
  background: rgba(77, 169, 255, .11) !important;
}

.elevate-testimonial-stars {
  margin: 0 0 12px;
  color: #d99a00 !important;
  font-size: 1.02rem !important;
  letter-spacing: .06em;
  line-height: 1;
  text-shadow: 0 1px 0 rgba(255,255,255,.42);
}

html[data-elevate-theme="dark"] .elevate-testimonial-stars {
  color: #ffd166 !important;
  text-shadow: none;
}

.elevate-testimonial-card p {
  margin: 0 !important;
  color: var(--elevate-clean-muted) !important;
  font-size: .95rem !important;
  line-height: 1.72 !important;
}

.elevate-testimonial-pagination-wrap {
  max-width: 980px;
  margin: 24px auto 0 !important;
  padding: 15px 16px !important;
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border-radius: 22px !important;
  border: 1px solid var(--elevate-clean-line) !important;
  background: var(--elevate-clean-surface) !important;
  box-shadow: 0 12px 32px rgba(7, 17, 31, .08) !important;
}

.elevate-testimonial-page-info {
  color: var(--elevate-clean-muted) !important;
  font-size: .92rem;
  font-weight: 850;
}

.elevate-testimonial-pagination {
  display: flex !important;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 7px;
}

.elevate-testimonial-page-btn {
  width: 38px;
  min-width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--elevate-clean-line) !important;
  border-radius: 999px !important;
  background: rgba(255, 255, 255, .70) !important;
  color: var(--elevate-clean-text) !important;
  font-weight: 950;
  line-height: 1;
}

html[data-elevate-theme="dark"] .elevate-testimonial-page-btn {
  background: rgba(255, 255, 255, .07) !important;
}

.elevate-testimonial-page-btn:hover:not(:disabled),
.elevate-testimonial-page-btn.active {
  color: #fff !important;
  background: linear-gradient(135deg, var(--elevate-clean-blue), var(--elevate-clean-blue-2)) !important;
  border-color: transparent !important;
}

.elevate-testimonial-page-btn:disabled {
  opacity: .45;
  cursor: not-allowed;
}

/* ---------- App/dashboard cleanup ---------- */
.elevate-app-shell,
.cakti-dashboard-shell {
  min-height: 100vh;
}

.elevate-sidebar,
.cakti-sidebar {
  border-right: 1px solid var(--elevate-clean-line) !important;
}

.elevate-main,
.cakti-main {
  min-width: 0;
}

.elevate-content,
.cakti-content {
  max-width: 1480px;
  margin-left: auto;
  margin-right: auto;
}

.table-responsive,
.result-panel,
.cakti-result-table-wrap {
  max-width: 100%;
  overflow-x: auto;
}

/* ---------- Responsive cleanup ---------- */
@media (max-width: 1199.98px) {
  .elevate-public-nav .navbar-collapse {
    margin-top: 12px;
    padding: 14px;
    border: 1px solid var(--elevate-clean-line);
    border-radius: 22px;
    background: var(--elevate-clean-surface);
    box-shadow: var(--elevate-clean-shadow);
  }

  .elevate-public-links {
    align-items: stretch;
    gap: 6px;
  }

  .elevate-public-links .nav-link {
    justify-content: flex-start;
    width: 100%;
    padding: 11px 13px !important;
  }

  .elevate-nav-actions {
    width: 100%;
    justify-content: flex-start;
    padding-top: 10px;
  }
}

@media (max-width: 991.98px) {
  .elevate-testimonial-grid {
    grid-template-columns: 1fr !important;
  }

  .elevate-testimonial-card {
    min-height: auto;
  }

  .elevate-testimonial-pagination-wrap {
    align-items: flex-start;
    flex-direction: column;
  }

  .elevate-testimonial-pagination {
    justify-content: flex-start;
  }
}

@media (max-width: 767.98px) {
  html {
    scroll-padding-top: 82px;
  }

  .elevate-public-nav {
    min-height: 68px;
  }

  .elevate-logo-shell {
    min-width: 124px !important;
    height: 46px !important;
  }

  .elevate-logo-shell img {
    width: 132px !important;
    height: 46px !important;
  }

  .elevate-home-section,
  .elevate-testimonials-section,
  .trust-privacy-section,
  .cakti-section {
    padding-top: 58px !important;
    padding-bottom: 58px !important;
  }

  .elevate-section-title {
    font-size: clamp(28px, 9vw, 40px) !important;
  }

  .elevate-testimonials-section::before {
    inset: 14px 10px;
    border-radius: 26px;
  }

  .elevate-testimonial-summary {
    grid-template-columns: 1fr !important;
    max-width: 420px;
    margin-top: 24px !important;
  }

  .elevate-testimonial-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .elevate-testimonial-badge {
    max-width: 100%;
  }

  .elevate-testimonial-page-btn {
    width: 34px;
    min-width: 34px;
    height: 34px;
    font-size: .86rem;
  }

  .elevate-nav-actions .btn,
  .elevate-nav-actions .elevate-theme-toggle {
    flex: 1 1 100%;
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 420px) {
  .elevate-testimonial-pagination {
    gap: 5px;
  }

  .elevate-testimonial-page-btn {
    width: 31px;
    min-width: 31px;
    height: 31px;
  }
}

/* ELEVATE HOMEPAGE COPY GRADIENT PATCH 20260618 START */
.elevate-gradient-heading,
.elevate-demo-title-white.elevate-gradient-heading {
  color: #0f172a !important;
  background: linear-gradient(
    90deg,
    #0284c7 0%,
    #2563eb 42%,
    #d97706 74%,
    #f59e0b 100%
  ) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  text-shadow: none !important;
  font-weight: 900 !important;
  letter-spacing: -0.045em !important;
}

.elevate-gradient-heading-hero {
  letter-spacing: -0.065em !important;
}

.elevate-home-hero-v2 .elevate-hero-subtitle,
.elevate-section-lead,
.elevate-trust-head p,
.elevate-testimonials-section .elevate-section-lead {
  color: #475569 !important;
  font-weight: 560 !important;
}

.elevate-demo-frame .elevate-demo-title-white,
.elevate-demo-frame .elevate-gradient-heading {
  display: inline-block !important;
  line-height: 1.06 !important;
  padding-bottom: 2px !important;
}

.elevate-final-cta .elevate-gradient-heading {
  max-width: 820px;
}

html[data-elevate-theme="dark"] .elevate-gradient-heading,
html[data-bs-theme="dark"] .elevate-gradient-heading,
body.dark .elevate-gradient-heading {
  background: linear-gradient(
    90deg,
    #38bdf8 0%,
    #60a5fa 42%,
    #facc15 78%,
    #fde68a 100%
  ) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}

@media (max-width: 767.98px) {
  .elevate-gradient-heading,
  .elevate-demo-title-white.elevate-gradient-heading {
    letter-spacing: -0.035em !important;
  }
}
/* ELEVATE HOMEPAGE COPY GRADIENT PATCH 20260618 END */



/* ELEVATE PROMO GOLD BANNER 20260618 START */
.elevate-promo-gold-section {
  padding: 28px 0 18px !important;
  position: relative;
  z-index: 2;
}

.elevate-promo-gold-card {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(217, 119, 6, .34);
  background:
    radial-gradient(circle at 12% 20%, rgba(255,255,255,.45), transparent 15rem),
    radial-gradient(circle at 90% 0%, rgba(255,255,255,.24), transparent 18rem),
    linear-gradient(135deg, #7c4a03 0%, #d97706 30%, #f5c542 62%, #fff3b0 100%);
  box-shadow: 0 26px 78px rgba(146, 64, 14, .22), 0 12px 34px rgba(15, 23, 42, .10);
  padding: clamp(22px, 4vw, 36px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 24px;
  align-items: center;
  color: #1f1300;
}

.elevate-promo-gold-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(255,255,255,.32) 36%, transparent 58%);
  transform: translateX(-38%);
  opacity: .8;
  pointer-events: none;
}

.elevate-promo-gold-left,
.elevate-promo-gold-right {
  position: relative;
  z-index: 1;
}

.elevate-promo-gold-badge,
.topup-promo-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  padding: 8px 13px;
  background: rgba(255,255,255,.58);
  border: 1px solid rgba(255,255,255,.52);
  color: #7c2d12;
  font-size: .84rem;
  font-weight: 900;
  letter-spacing: .02em;
  margin-bottom: 12px;
}

.elevate-promo-gold-card h2 {
  margin: 0 0 10px;
  font-size: clamp(1.8rem, 4vw, 3.25rem);
  line-height: 1.02;
  font-weight: 950;
  letter-spacing: -.055em;
  color: #1f1300;
}

.elevate-promo-gold-card p {
  margin: 0;
  max-width: 760px;
  color: rgba(31, 19, 0, .78);
  font-size: 1.02rem;
  font-weight: 650;
}

.elevate-promo-gold-right {
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,.48);
  background: rgba(255,255,255,.44);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.58), 0 18px 40px rgba(120, 53, 15, .16);
  padding: 18px;
  display: grid;
  gap: 10px;
}

.elevate-promo-code-box {
  border-radius: 20px;
  background: rgba(255,255,255,.70);
  border: 1px dashed rgba(124, 45, 18, .42);
  padding: 14px 16px;
  text-align: center;
}

.elevate-promo-code-box span {
  display: block;
  font-size: .78rem;
  color: #92400e;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.elevate-promo-code-box strong {
  display: block;
  color: #1f1300;
  font-size: clamp(1.55rem, 4vw, 2.15rem);
  font-weight: 950;
  letter-spacing: .08em;
}

.elevate-promo-discount {
  text-align: center;
  border-radius: 18px;
  padding: 10px 12px;
  color: #ffffff;
  background: linear-gradient(135deg, #7c2d12, #b45309);
  box-shadow: 0 12px 30px rgba(124, 45, 18, .24);
  font-size: 1.22rem;
  font-weight: 950;
  letter-spacing: .04em;
}

.elevate-promo-copy-btn,
.elevate-promo-topup-btn,
.topup-promo-copy-btn {
  width: 100%;
  border-radius: 16px !important;
  font-weight: 900 !important;
  border: 1px solid rgba(124, 45, 18, .18) !important;
}

.elevate-promo-copy-btn,
.topup-promo-copy-btn {
  color: #7c2d12 !important;
  background: rgba(255,255,255,.80) !important;
}

.elevate-promo-copy-btn.is-copied,
.topup-promo-copy-btn.is-copied {
  color: #166534 !important;
  background: rgba(220,252,231,.88) !important;
  border-color: rgba(22, 101, 52, .24) !important;
}

.elevate-promo-topup-btn {
  color: #ffffff !important;
  background: linear-gradient(135deg, #0f172a, #1e293b) !important;
}

.topup-promo-elevateku-card {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  border: 1px solid rgba(217, 119, 6, .30);
  background:
    radial-gradient(circle at 10% 0%, rgba(255,255,255,.42), transparent 15rem),
    linear-gradient(135deg, #fef3c7 0%, #fbbf24 45%, #d97706 100%);
  box-shadow: 0 18px 55px rgba(146, 64, 14, .18);
  padding: 22px;
  color: #1f1300;
}

.topup-promo-elevateku-card h3 {
  font-weight: 950;
  letter-spacing: -.035em;
  color: #1f1300;
}

.topup-promo-elevateku-card h3 span {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 10px;
  background: rgba(255,255,255,.66);
  letter-spacing: .04em;
}

.topup-promo-elevateku-card p {
  color: rgba(31, 19, 0, .76);
  font-weight: 650;
}

.topup-promo-copy-btn {
  width: auto;
  min-width: 150px;
}

html[data-elevate-theme="dark"] .elevate-promo-gold-card,
html[data-bs-theme="dark"] .elevate-promo-gold-card,
body.dark .elevate-promo-gold-card {
  box-shadow: 0 28px 86px rgba(245, 158, 11, .18), 0 12px 34px rgba(0,0,0,.32);
}

@media (max-width: 991.98px) {
  .elevate-promo-gold-card {
    grid-template-columns: 1fr;
  }
  .elevate-promo-gold-right {
    max-width: 440px;
  }
}

@media (max-width: 575.98px) {
  .elevate-promo-gold-section {
    padding-top: 18px !important;
  }
  .elevate-promo-gold-card,
  .topup-promo-elevateku-card {
    border-radius: 22px;
    padding: 18px;
  }
  .elevate-promo-gold-right {
    max-width: none;
  }
  .topup-promo-copy-btn {
    width: 100%;
  }
}
/* ELEVATE PROMO GOLD BANNER 20260618 END */

/* ELEVATE ABOUT ELEGANT SECTION 20260618 START */
.elevate-about-elegant-section {
  position: relative;
  overflow: hidden;
}

.elevate-about-elegant-shell {
  position: relative;
  overflow: hidden;
  border-radius: clamp(28px, 4vw, 46px);
  padding: clamp(26px, 4vw, 54px);
  border: 1px solid rgba(148, 163, 184, .26);
  background:
    radial-gradient(circle at 8% 0%, rgba(2, 132, 199, .15), transparent 24rem),
    radial-gradient(circle at 94% 10%, rgba(245, 158, 11, .18), transparent 22rem),
    linear-gradient(135deg, rgba(255,255,255,.96), rgba(248,250,252,.90));
  box-shadow: 0 30px 95px rgba(15, 23, 42, .11);
}

.elevate-about-elegant-bg {
  position: absolute;
  inset: auto -12% -34% 42%;
  height: 360px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(2,132,199,.10), rgba(245,158,11,.14));
  filter: blur(10px);
  transform: rotate(-8deg);
  pointer-events: none;
}

.elevate-about-elegant-intro,
.elevate-about-elegant-panel,
.elevate-about-metric-card {
  position: relative;
  z-index: 1;
}

.elevate-about-elegant-intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.elevate-about-kicker {
  width: fit-content;
  color: #075985;
  background: rgba(14, 165, 233, .10);
  border: 1px solid rgba(14, 165, 233, .20);
  box-shadow: 0 12px 34px rgba(2, 132, 199, .10);
}

.elevate-about-elegant-sublead {
  color: #475569;
  line-height: 1.72;
  margin: 14px 0 0;
  font-weight: 650;
}

.elevate-about-elegant-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.elevate-about-elegant-panel {
  border-radius: 30px;
  padding: clamp(22px, 3vw, 34px);
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(148, 163, 184, .28);
  box-shadow: 0 24px 70px rgba(15,23,42,.08);
  backdrop-filter: blur(18px);
}

.elevate-about-elegant-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.elevate-about-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  color: #d97706;
  font-size: .78rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.elevate-about-elegant-head h3 {
  margin: 0;
  font-weight: 950;
  letter-spacing: -.045em;
  color: #0f172a;
  font-size: clamp(1.45rem, 2.7vw, 2.1rem);
  line-height: 1.08;
}

.elevate-about-mini-mark {
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 950;
  font-size: 1.4rem;
  background: linear-gradient(135deg, #0284c7, #2563eb 48%, #d97706 100%);
  box-shadow: 0 16px 36px rgba(37, 99, 235, .23);
}

.elevate-about-workflow,
.elevate-about-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.elevate-about-step,
.elevate-about-feature-card {
  border-radius: 24px;
  padding: 19px;
  background: linear-gradient(180deg, #ffffff, #f8fafc);
  border: 1px solid rgba(226, 232, 240, .95);
  min-height: 245px;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.elevate-about-step:hover,
.elevate-about-feature-card:hover {
  transform: translateY(-3px);
  border-color: rgba(37, 99, 235, .24);
  box-shadow: 0 18px 46px rgba(15,23,42,.08);
}

.elevate-about-step span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: #075985;
  background: linear-gradient(135deg, #e0f2fe, #dbeafe);
  margin-bottom: 12px;
  font-size: 1.1rem;
}

.elevate-about-step:nth-child(2) span {
  color: #92400e;
  background: linear-gradient(135deg, #fff7ed, #fef3c7);
}

.elevate-about-step:nth-child(3) span {
  color: #065f46;
  background: linear-gradient(135deg, #dcfce7, #ccfbf1);
}

.elevate-about-step:nth-child(4) span {
  color: #5b21b6;
  background: linear-gradient(135deg, #ede9fe, #dbeafe);
}

.elevate-about-step strong {
  display: block;
  color: #0f172a;
  font-weight: 950;
  margin-bottom: 8px;
  letter-spacing: -.02em;
}

.elevate-about-step small {
  display: block;
  color: #64748b;
  line-height: 1.58;
  font-weight: 650;
}

.elevate-about-note {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-top: 18px;
  border-radius: 20px;
  padding: 15px 16px;
  color: #92400e;
  background: rgba(255, 251, 235, .86);
  border: 1px solid rgba(253, 230, 138, .95);
  line-height: 1.62;
  font-size: .94rem;
}

.elevate-about-note i {
  margin-top: 2px;
  color: #d97706;
}

.elevate-about-metric-row {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.elevate-about-metric-card {
  border-radius: 24px;
  padding: 20px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(148, 163, 184, .24);
  box-shadow: 0 16px 50px rgba(15,23,42,.06);
}

.elevate-about-metric-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 13px;
  margin-bottom: 12px;
  font-weight: 950;
  color: #fff;
  background: linear-gradient(135deg, #0f172a, #2563eb);
}

.elevate-about-metric-card strong {
  display: block;
  color: #0f172a;
  font-weight: 950;
  letter-spacing: -.025em;
  margin-bottom: 6px;
}

.elevate-about-metric-card p {
  margin: 0;
  color: #64748b;
  line-height: 1.55;
  font-weight: 600;
}

html[data-elevate-theme="dark"] .elevate-about-elegant-shell,
html[data-bs-theme="dark"] .elevate-about-elegant-shell,
body.dark .elevate-about-elegant-shell {
  border-color: rgba(148, 163, 184, .18);
  background:
    radial-gradient(circle at 8% 0%, rgba(14, 165, 233, .18), transparent 24rem),
    radial-gradient(circle at 94% 10%, rgba(245, 158, 11, .16), transparent 22rem),
    linear-gradient(135deg, rgba(15, 23, 42, .92), rgba(30, 41, 59, .86));
  box-shadow: 0 30px 95px rgba(0, 0, 0, .34);
}

html[data-elevate-theme="dark"] .elevate-about-elegant-panel,
html[data-bs-theme="dark"] .elevate-about-elegant-panel,
body.dark .elevate-about-elegant-panel,
html[data-elevate-theme="dark"] .elevate-about-metric-card,
html[data-bs-theme="dark"] .elevate-about-metric-card,
body.dark .elevate-about-metric-card {
  background: rgba(15, 23, 42, .68);
  border-color: rgba(148, 163, 184, .16);
}

html[data-elevate-theme="dark"] .elevate-about-elegant-head h3,
html[data-bs-theme="dark"] .elevate-about-elegant-head h3,
body.dark .elevate-about-elegant-head h3,
html[data-elevate-theme="dark"] .elevate-about-step strong,
html[data-bs-theme="dark"] .elevate-about-step strong,
body.dark .elevate-about-step strong,
html[data-elevate-theme="dark"] .elevate-about-metric-card strong,
html[data-bs-theme="dark"] .elevate-about-metric-card strong,
body.dark .elevate-about-metric-card strong {
  color: #f8fafc;
}

html[data-elevate-theme="dark"] .elevate-about-elegant-sublead,
html[data-bs-theme="dark"] .elevate-about-elegant-sublead,
body.dark .elevate-about-elegant-sublead,
html[data-elevate-theme="dark"] .elevate-about-step small,
html[data-bs-theme="dark"] .elevate-about-step small,
body.dark .elevate-about-step small,
html[data-elevate-theme="dark"] .elevate-about-metric-card p,
html[data-bs-theme="dark"] .elevate-about-metric-card p,
body.dark .elevate-about-metric-card p {
  color: #cbd5e1;
}

html[data-elevate-theme="dark"] .elevate-about-step,
html[data-bs-theme="dark"] .elevate-about-step,
body.dark .elevate-about-step {
  background: rgba(30, 41, 59, .74);
  border-color: rgba(148, 163, 184, .16);
}

@media (max-width: 1199.98px) {
  .elevate-about-workflow,
  .elevate-about-feature-grid {
    grid-template-columns: 1fr;
  }
  .elevate-about-step,
  .elevate-about-feature-card {
    min-height: auto;
  }
}

@media (max-width: 991.98px) {
  .elevate-about-metric-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575.98px) {
  .elevate-about-elegant-shell {
    border-radius: 28px;
    padding: 22px;
  }
  .elevate-about-elegant-head {
    flex-direction: column;
  }
  .elevate-about-elegant-actions .btn {
    width: 100%;
  }
}
/* ELEVATE ABOUT ELEGANT SECTION 20260618 END */


/* ELEVATE ABOUT REFINED FINAL START */
.elevate-about-refined-section{
  padding:72px 0;
  position:relative;
}

.elevate-about-refined-shell{
  position:relative;
  overflow:hidden;
  border-radius:34px;
  padding:42px;
  background:
    radial-gradient(circle at 0% 0%, rgba(2,132,199,.16), transparent 34%),
    radial-gradient(circle at 100% 8%, rgba(245,158,11,.18), transparent 30%),
    linear-gradient(135deg, rgba(255,255,255,.96), rgba(248,250,252,.92));
  border:1px solid rgba(148,163,184,.28);
  box-shadow:0 24px 80px rgba(15,23,42,.10);
}

.elevate-about-refined-head{
  max-width:820px;
  margin-bottom:28px;
}

.elevate-about-refined-head .elevate-section-title{
  margin-bottom:14px;
}

.elevate-about-refined-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:16px;
}

.elevate-about-refined-card{
  min-height:230px;
  padding:22px;
  border-radius:26px;
  background:rgba(255,255,255,.92);
  border:1px solid rgba(226,232,240,.95);
  box-shadow:0 16px 42px rgba(15,23,42,.07);
  transition:transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.elevate-about-refined-card:hover{
  transform:translateY(-4px);
  box-shadow:0 22px 58px rgba(15,23,42,.11);
  border-color:rgba(2,132,199,.24);
}

.elevate-about-refined-icon{
  width:46px;
  height:46px;
  border-radius:17px;
  display:grid;
  place-items:center;
  margin-bottom:16px;
  background:linear-gradient(135deg,#e0f2fe,#dbeafe);
  color:#1d4ed8;
  font-size:21px;
}

.elevate-about-refined-card:nth-child(2) .elevate-about-refined-icon{
  background:linear-gradient(135deg,#fff7ed,#fef3c7);
  color:#b45309;
}

.elevate-about-refined-card:nth-child(3) .elevate-about-refined-icon{
  background:linear-gradient(135deg,#dcfce7,#ccfbf1);
  color:#047857;
}

.elevate-about-refined-card:nth-child(4) .elevate-about-refined-icon{
  background:linear-gradient(135deg,#ede9fe,#dbeafe);
  color:#6d28d9;
}

.elevate-about-refined-card h3{
  margin:0 0 9px;
  font-size:19px;
  line-height:1.2;
  letter-spacing:-.035em;
  color:#0f172a;
  font-weight:900;
}

.elevate-about-refined-card p{
  margin:0;
  color:#64748b;
  font-size:14px;
  line-height:1.62;
}

.elevate-about-refined-note{
  margin-top:18px;
  display:flex;
  gap:10px;
  align-items:flex-start;
  padding:15px 17px;
  border-radius:22px;
  background:#fffbeb;
  border:1px solid #fde68a;
  color:#92400e;
  font-weight:650;
  font-size:13.5px;
  line-height:1.55;
}

.elevate-about-refined-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:22px;
}

@media (max-width: 1199px){
  .elevate-about-refined-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}

@media (max-width: 767px){
  .elevate-about-refined-section{
    padding:48px 0;
  }

  .elevate-about-refined-shell{
    padding:24px;
    border-radius:28px;
  }

  .elevate-about-refined-grid{
    grid-template-columns:1fr;
  }

  .elevate-about-refined-card{
    min-height:auto;
  }
}
/* ELEVATE ABOUT REFINED FINAL END */

