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

/* ── Root tokens ── */
:root {
  --navy: #1B2B5E;
  --navy-mid: #243575;
  --teal: #0BBFAA;
  --teal-lite: #E6F9F7;
  --gold: #F5A623;
  --white: #FFFFFF;
  --off-white: #F7F8FC;
  --surface: #F0F2FA;
  --border: #E2E5F0;
  --text-1: #1B2B5E;
  --text-2: #4A5580;
  --text-3: #8A93B8;
  --shadow-sm: 0 2px 12px rgba(27, 43, 94, .07);
  --shadow-md: 0 8px 36px rgba(27, 43, 94, .11);
  --shadow-lg: 0 20px 60px rgba(27, 43, 94, .15);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --radius-xl: 32px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Nunito', sans-serif;
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-2);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Outfit', sans-serif;
  color: var(--text-1);
  line-height: 1.15;
}

a {
  text-decoration: none !important;
  transition: all .3s ease;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a,
input,
textarea,
button {
  outline: none !important;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: var(--off-white);
}

::-webkit-scrollbar-thumb {
  background: var(--teal);
  border-radius: 10px;
}

/* lazy-load blur */
.blur-up {
  filter: blur(8px);
  opacity: .15;
  transition: opacity 900ms, filter 1200ms;
}

.blur-up.lazyloaded {
  opacity: 1;
  filter: blur(0);
}

/* ── Spacing helpers ── */
.sm-padding {
  padding: 4em 0;
}

.xs-padding {
  padding: 3em 0;
}

.xs-padding-top {
  padding-top: 3em;
}

.margin-top-xl {
  margin-top: 3em;
}

.resp-margin-btm-md {
  margin-bottom: 2.5em;
}

.order-by {
  order: -1;
}

/* ── Reusable pill label ── */
.pill-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 16px;
  border-radius: 50px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: .72em;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  background: var(--teal-lite);
  color: var(--teal);
  border: 1.5px solid rgba(11, 191, 170, .25);
  margin-bottom: 1.1em;
}

/* ── Section heading block ── */
.section-head {
  margin-bottom: 3em;
}

.section-head h2 {
  font-size: clamp(1.9em, 3vw, 2.8em);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: .4em;
}

.section-head h2 span {
  color: var(--teal);
}

.section-head p {
  color: var(--text-2);
  max-width: 520px;
}

.section-head.center {
  text-align: center;
}

.section-head.center p {
  margin: 0 auto;
}

/* ── Primary CTA button ── */
.btn-primary-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  background: var(--navy);
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: .9em;
  letter-spacing: .3px;
  box-shadow: 0 6px 24px rgba(27, 43, 94, .28);
  border: none;
  cursor: pointer;
  transition: all .3s ease;
}

.btn-primary-cta:hover {
  background: var(--teal);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(11, 191, 170, .35);
}

.btn-primary-cta svg {
  width: 17px;
  height: 17px;
  flex-shrink: 0;
}

/* ── Outline button ── */
.btn-outline-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 26px;
  border-radius: var(--radius-sm);
  border: 2px solid var(--border);
  color: var(--navy);
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: .9em;
  background: transparent;
  transition: all .3s ease;
}

.btn-outline-cta:hover {
  border-color: var(--teal);
  color: var(--teal);
  background: var(--teal-lite);
}

/* ═══════════════════════════════════════
   HEADER  — top bar + main nav
═══════════════════════════════════════ */

/* Announcement bar */
.header-top-bar {
  background: var(--navy);
  padding: 9px 0;
  text-align: center;
}

.header-top-bar p {
  color: rgba(255, 255, 255, .75);
  font-size: .78em;
  font-family: 'Nunito', sans-serif;
  font-weight: 500;
  margin: 0;
}

.header-top-bar p strong {
  color: var(--teal);
}

.header-top-bar .close-bar {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, .5);
  cursor: pointer;
  background: none;
  border: none;
  font-size: 1.2em;
  line-height: 1;
}

/* Main navbar */
.main-wrapped-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
}

.header-nav-center {
  background: rgba(255, 255, 255, .97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 20px rgba(27, 43, 94, .06);
  transition: all .35s ease;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 20px;
}

.nav-logo {
  flex-shrink: 0;
}

.nav-logo img {
  height: 5em;
  width: auto;
}

/* Centered nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links li a {
  display: block;
  padding: 8px 15px;
  border-radius: var(--radius-sm);
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: .88em;
  color: var(--text-2);
  letter-spacing: .2px;
}

.nav-links li a:hover,
.nav-links li a.active {
  color: var(--teal);
  background: var(--teal-lite);
}

/* Nav right actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav-login-btn {
  padding: 9px 20px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border);
  color: var(--navy);
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: .85em;
  background: transparent;
  transition: all .3s;
}

.nav-login-btn:hover {
  border-color: var(--teal);
  color: var(--teal);
}

.nav-signup-btn {
  padding: 9px 22px;
  border-radius: var(--radius-sm);
  background: var(--teal);
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: .85em;
  border: none;
  box-shadow: 0 4px 16px rgba(11, 191, 170, .35);
  transition: all .3s;
}

.nav-signup-btn:hover {
  background: var(--navy);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(27, 43, 94, .25);
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all .3s;
}

/* Mobile drawer */
.nav-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  bottom: 0;
  width: 300px;
  background: var(--white);
  z-index: 9999;
  box-shadow: -10px 0 60px rgba(27, 43, 94, .15);
  transition: right .35s cubic-bezier(.4, 0, .2, 1);
  display: flex;
  flex-direction: column;
  padding: 28px 24px;
  overflow-y: auto;
}

.nav-drawer.open {
  right: 0;
}

.drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2em;
}

.drawer-header img {
  height: 34px;
}

.drawer-close {
  background: var(--surface);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1em;
  color: var(--text-2);
  transition: all .2s;
}

.drawer-close:hover {
  background: var(--border);
}

.drawer-links {
  flex: 1;
}

.drawer-links li {
  border-bottom: 1px solid var(--border);
}

.drawer-links li a {
  display: block;
  padding: 13px 4px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: .95em;
  color: var(--text-2);
}

.drawer-links li a:hover {
  color: var(--teal);
}

.drawer-actions {
  margin-top: 2em;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.drawer-actions a {
  text-align: center;
  border-radius: var(--radius-sm);
}

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(27, 43, 94, .25);
  z-index: 9998;
  backdrop-filter: blur(3px);
}

.nav-overlay.show {
  display: block;
}

/* Body padding for fixed header */
body {
  padding-top: 6em;
}

/* ═══════════════════════════════════════
   HERO / BANNER
═══════════════════════════════════════ */
.banner-warpped {
  position: relative;
  overflow: hidden;
  background: var(--white);
  padding: 70px 0 60px;
}

/* Geometric SVG shapes */
.hero-geo-1 {
  position: absolute;
  top: -80px;
  right: -80px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle at 50% 50%, rgba(11, 191, 170, .10) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-geo-2 {
  position: absolute;
  bottom: -60px;
  left: -60px;
  width: 360px;
  height: 360px;
  border: 56px solid rgba(27, 43, 94, .04);
  border-radius: 50%;
  pointer-events: none;
}

.hero-geo-3 {
  position: absolute;
  top: 30%;
  right: 30%;
  width: 12px;
  height: 12px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  opacity: .5;
}

/* Mesh pattern strip on right */
.hero-mesh {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 50%;
  background-image:
    radial-gradient(circle, rgba(27, 43, 94, .06) 1px, transparent 1px);
  background-size: 22px 22px;
  pointer-events: none;
}

.banner-wrapped_content {
  position: relative;
  z-index: 2;
}

.banner_content-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 50px;
  background: var(--teal-lite);
  border: 1.5px solid rgba(11, 191, 170, .3);
  color: var(--teal);
  font-family: 'Outfit', sans-serif;
  font-size: .76em;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 1.4em;
}

.banner_content-badge svg {
  width: 15px;
  height: 15px;
}

.banner-wrapped_content h1 {
  font-size: clamp(2.2em, 4.5vw, 3.8em);
  font-weight: 900;
  color: var(--navy);
  line-height: 1.08;
  margin-bottom: .85em;
  letter-spacing: -.5px;
}

.banner-wrapped_content h1 span {
  color: var(--teal);
}

.banner-wrapped_content>p {
  font-size: 1.05em;
  color: var(--text-2);
  max-width: 460px;
  margin-bottom: 2em;
}

.banner_content-action {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 2.5em;
}

/* Stats row */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  max-width: 400px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.hero-stat {
  padding: 16px 20px;
  border-right: 1px solid var(--border);
  text-align: center;
}

.hero-stat:last-child {
  border-right: none;
}

.hero-stat-num {
  font-family: 'Outfit', sans-serif;
  font-size: 1.55em;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 3px;
}

.hero-stat-num em {
  color: var(--teal);
  font-style: normal;
}

.hero-stat-label {
  font-size: .71em;
  font-weight: 600;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: .8px;
}

/* Banner image container */
.banner-img-wrap {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.banner_content-img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  animation: imgFloat 7s ease-in-out infinite;
  /* margin-left: auto; */
}

@keyframes imgFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-14px);
  }
}

/* Floating badge card on image */
.banner-float-card {
  position: absolute;
  bottom: 30px;
  left: -20px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 14px 18px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--border);
  min-width: 180px;
}

.bfc-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--teal-lite);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.bfc-icon svg {
  width: 20px;
  height: 20px;
  color: var(--teal);
}

.bfc-text strong {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: .9em;
  font-weight: 700;
  color: var(--navy);
}

.bfc-text span {
  font-size: .75em;
  color: var(--text-3);
}

/* ═══════════════════════════════════════
   FEATURES
═══════════════════════════════════════ */
.features-section {
  background: var(--off-white);
  position: relative;
  overflow: hidden;
}

.features-section::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  border: 80px solid rgba(11, 191, 170, .06);
  pointer-events: none;
}

.feature_title {
  margin-bottom: 3em;
  text-align: center;
}

.feature_title h5 {
  /* pill-label handled via class */
}

.feature_title h2 {
  font-size: clamp(1.9em, 3vw, 2.7em);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: .4em;
}

.feature_title h2 span {
  color: var(--teal);
}

.feature_title p {
  color: var(--text-2);
  max-width: 500px;
  margin: 0 auto;
}

.feature_tab-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  height: 100%;
  transition: all .35s cubic-bezier(.34, 1.56, .64, 1);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.feature_tab-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), #2DDDC8);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
}

.feature_tab-card:hover {
  border-color: rgba(11, 191, 170, .35);
  transform: translateY(-7px);
  box-shadow: var(--shadow-md);
}

.feature_tab-card:hover::before {
  transform: scaleX(1);
}

.tab-card_icons {
  width: 52px;
  height: 52px;
  min-width: 52px;
  background: var(--teal-lite);
  border: 1.5px solid rgba(11, 191, 170, .2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card_icons-img {
  width: 26px;
  height: 26px;
  filter: invert(60%) sepia(60%) saturate(600%) hue-rotate(133deg) brightness(95%);
}

.tab-card_info h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.02em;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .35em;
}

.tab-card_info p {
  font-size: .875em;
  color: var(--text-2);
  line-height: 1.65;
  margin: 0;
}

/* ═══════════════════════════════════════
   HOW IT WORKS
═══════════════════════════════════════ */
.step-to-step-wrapped {
  background: var(--white);
}

.step-to-step_card-box {
  background: var(--navy);
  border-radius: var(--radius-xl);
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}

/* Left panel */
.step-to-step_card-big {
  padding: 52px 44px;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.step-to-step_card-big::before {
  content: '';
  position: absolute;
  bottom: -80px;
  right: -80px;
  width: 300px;
  height: 300px;
  border: 60px solid rgba(11, 191, 170, .15);
  border-radius: 50%;
}

.step-to-step_card-big::after {
  content: '';
  position: absolute;
  top: -60px;
  left: -60px;
  width: 220px;
  height: 220px;
  background: rgba(255, 255, 255, .03);
  border-radius: 50%;
}

.step-to-step_card-big h5 {
  display: inline-flex;
  align-items: center;
  padding: 5px 14px;
  border-radius: 50px;
  background: rgba(11, 191, 170, .18);
  color: var(--teal);
  font-family: 'Outfit', sans-serif;
  font-size: .72em;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 1.1em;
}

.step-to-step_card-big h2 {
  font-size: 2em;
  font-weight: 800;
  color: #fff;
  margin-bottom: .8em;
  line-height: 1.2;
}

.step-to-step_card-big p {
  color: rgba(255, 255, 255, .65);
  font-size: .92em;
  margin-bottom: 2em;
}

.action_content-action a,
.action_content-action.white a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: .88em;
  background: var(--teal);
  color: #fff;
  box-shadow: 0 6px 20px rgba(11, 191, 170, .4);
  transition: all .3s ease;
}

.action_content-action a:hover,
.action_content-action.white a:hover {
  background: #fff;
  color: var(--navy);
  box-shadow: 0 8px 24px rgba(255, 255, 255, .2);
}

.action_content-action a svg {
  width: 16px;
  height: 16px;
}

/* Right panel — steps */
.step-to-step_card-med {
  background: var(--white);
  padding: 40px;
}

.step-to-step_subcard-box {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.step-to-step_subcard {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 18px;
  align-items: start;
  padding: 24px 0;
  border-bottom: 1px solid var(--border);
  transition: all .3s;
}

.step-to-step_subcard:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.step-to-step_subcard:first-child {
  padding-top: 0;
}

.step-to-step_subcard-icons {
  width: 56px;
  height: 56px;
  background: var(--off-white);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s;
}

.step-to-step_subcard-img {
  /* width: 26px; height: 26px; */
  /* filter: invert(45%) sepia(70%) saturate(450%) hue-rotate(133deg); */
  filter: saturate(0.5);
}

.step-to-step_subcard-title h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.02em;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .25em;
}

.step-to-step_subcard-info p {
  font-size: .875em;
  color: var(--text-2);
  margin: 0;
}

/* ═══════════════════════════════════════
   KEY VALUE
═══════════════════════════════════════ */
.key-value-wrapped {
  background: var(--off-white);
  position: relative;
  overflow: hidden;
}

.key-value-wrapped::after {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background-image: radial-gradient(circle, rgba(27, 43, 94, .05) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}

.key-value_title h5 {
  /* pill */
}

.key-value_title h2 {
  font-size: clamp(1.8em, 2.5vw, 2.6em);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: .6em;
}

.key-value_title h2 span {
  color: var(--teal);
}

.key-value_title p {
  color: var(--text-2);
  margin-bottom: 2em;
}

.key-value-card_wrapped {
  margin-top: 2.5em;
  position: relative;
  z-index: 1;
}

.key-value-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 24px;
  height: 100%;
  transition: all .35s cubic-bezier(.34, 1.56, .64, 1);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.key-value-card:hover {
  border-color: rgba(11, 191, 170, .35);
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.key-value-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--navy), var(--teal));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s;
}

.key-value-card:hover::after {
  transform: scaleX(1);
}

.key-value-card_icons {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, #E8EEFE, var(--teal-lite));
  border: 1.5px solid rgba(27, 43, 94, .1);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2em;
}

.key-value-card_img {
  width: 30px;
  height: 30px;
  filter: saturate(0.5);
}

.key-value-card_titles h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.02em;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .4em;
}

.key-value-card_info p {
  font-size: .875em;
  color: var(--text-2);
  margin: 0;
}

/* ═══════════════════════════════════════
   CTA SECTION
═══════════════════════════════════════ */
.cta-sec {
  background: var(--white);
}

.cta-box {
  background: linear-gradient(135deg, var(--navy) 0%, #243575 55%, #1B3A5E 100%);
  border-radius: var(--radius-xl);
  padding: 64px 60px;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
  box-shadow: var(--shadow-lg);
}

.cta-box::before {
  content: '';
  position: absolute;
  top: -100px;
  right: 200px;
  width: 400px;
  height: 400px;
  border: 70px solid rgba(11, 191, 170, .1);
  border-radius: 50%;
  pointer-events: none;
}

.cta-box::after {
  content: '';
  position: absolute;
  bottom: -120px;
  left: -80px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(11, 191, 170, .12) 0%, transparent 70%);
  pointer-events: none;
}

.cta-left-sec {
  position: relative;
  z-index: 2;
}

.cta-left-sec h2 {
  font-size: clamp(1.8em, 2.8vw, 2.8em);
  font-weight: 800;
  color: #fff;
  margin-bottom: .9em;
  line-height: 1.12;
}

.cta-left-sec h2 em {
  color: var(--teal);
  font-style: normal;
}

.cta-list-sec {
  margin-bottom: 2em;
}

.cta-list-sec li {
  color: rgba(255, 255, 255, .75);
  font-size: .92em;
  padding: 7px 0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.cta-list-sec li::before {
  content: '→';
  color: var(--teal);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.cta-list-sec li strong {
  color: #fff;
}

.cta-btn-sec {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: .9em;
  transition: all .3s ease;
}

.cta-btn:first-child {
  background: var(--teal);
  color: #fff;
  box-shadow: 0 6px 24px rgba(11, 191, 170, .45);
}

.cta-btn:first-child:hover {
  background: #fff;
  color: var(--navy);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(255, 255, 255, .2);
}

.cta-btn:last-child {
  background: rgba(255, 255, 255, .1);
  border: 1.5px solid rgba(255, 255, 255, .2);
  color: #fff;
}

.cta-btn:last-child:hover {
  background: rgba(255, 255, 255, .18);
  transform: translateY(-2px);
  color: #fff;
}

.cta-btn svg {
  width: 17px;
  height: 17px;
}

.cta-right-sec {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.cta-img {
  width: 100%;
  border-radius: var(--radius);
  filter: drop-shadow(0 20px 50px rgba(0, 0, 0, .25));
}

/* ═══════════════════════════════════════
   SECURITY / TRUST / INDUSTRY
═══════════════════════════════════════ */
.security-trust-sec {
  background: var(--off-white);
}

.industry-recognition-img,
.security-trust-img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.security-trust-info-sec h2 {
  font-size: clamp(1.7em, 2.5vw, 2.4em);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: .6em;
}

.security-trust-info-sec p {
  color: var(--text-2);
  margin-bottom: 1.5em;
}

.security-trust-list {}

.security-trust-list li {
  color: var(--text-2);
  font-size: .9em;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 1em;
}

.security-trust-list li:last-child {
  border-bottom: none;
}

.security-trust-list li::before {
  content: '';
  display: block;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--teal-lite);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%230BBFAA' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  margin-top: 2px;
  border: 1px solid rgba(11, 191, 170, .25);
}

.security-trust-list li strong {
  color: var(--navy);
  font-weight: 700;
}

/* ═══════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════ */
.testimonials-sec {
  background: var(--white);
}

.section-title {
  text-align: center;
  margin-bottom: 3em;
}

.section-title h2 {
  font-size: clamp(1.9em, 3vw, 2.7em);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: .4em;
}

.section-title p {
  color: var(--text-2);
}

.client-slider {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonials-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: all .35s ease;
  overflow: hidden;
}

.testimonials-card::after {
  content: '\201C';
  position: absolute;
  top: 14px;
  right: 22px;
  font-family: 'Outfit', serif;
  font-size: 5.5em;
  font-weight: 900;
  color: rgba(11, 191, 170, .1);
  line-height: 1;
  pointer-events: none;
}

.testimonials-card:hover {
  border-color: rgba(11, 191, 170, .3);
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.testimonials-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--teal), var(--navy));
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .35s;
}

.testimonials-card:hover::before {
  transform: scaleY(1);
}

.star-row {
  display: flex;
  gap: 3px;
  margin-bottom: 1em;
}

.star-row span {
  color: var(--gold);
  font-size: .9em;
}

.testimonials-quotes-info p {
  color: var(--text-2);
  font-size: .9em;
  line-height: 1.8;
  margin-bottom: 1.4em;
  font-style: italic;
}

.testimonials-user-details {
  display: flex;
  align-items: center;
  gap: 12px;
}

.user-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: .9em;
  color: #fff;
  flex-shrink: 0;
}

.testimonials-user-details h4 {
  font-family: 'Outfit', sans-serif;
  font-size: .95em;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .1em;
}

.testimonials-user-details p {
  font-size: .76em;
  color: var(--text-3);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .7px;
  margin: 0;
}

/* ═══════════════════════════════════════
   FAQ
═══════════════════════════════════════ */
.faq-wrapped {
  background: var(--off-white);
}

.faq-frame-img img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.accordion-item {
  background: var(--white) !important;
  border: 1.5px solid var(--border) !important;
  border-radius: var(--radius) !important;
  margin-bottom: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.accordion-button {
  background: var(--white) !important;
  color: var(--navy) !important;
  font-family: 'Outfit', sans-serif !important;
  font-weight: 700 !important;
  font-size: .65em !important;
  padding: 18px 22px !important;
  box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
  background: var(--teal-lite) !important;
  color: var(--teal) !important;
}

.accordion-button::after {
  filter: invert(20%) sepia(60%) saturate(500%) hue-rotate(195deg);
}

.accordion-button:not(.collapsed)::after {
  filter: invert(60%) sepia(60%) saturate(500%) hue-rotate(133deg);
}

.accordion-body {
  color: var(--text-2);
  font-size: .9em;
  padding: 22px 22px 22px 22px !important;
  line-height: 1.8;
}

.faq-list {
  margin-top: .8em;
  padding-left: 1.2em;
}

.faq-list li {
  margin-bottom: .5em;
  color: var(--text-2);
}

.faq-list li strong {
  color: var(--navy);
}

/* ═══════════════════════════════════════
   CONTACT
═══════════════════════════════════════ */
.contact-wrapped {
  background: var(--white);
}

.contact_avater img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.contact_form {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: var(--shadow-md);
}

.form-label {
  color: var(--text-2);
  font-size: .8em;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  margin-bottom: 7px;
}

.form-control {
  background: var(--off-white) !important;
  border: 1.5px solid var(--border) !important;
  border-radius: var(--radius-sm) !important;
  color: var(--text-1) !important;
  padding: 12px 16px !important;
  font-family: 'Nunito', sans-serif !important;
  font-size: .92em !important;
  transition: all .3s !important;
}

.form-control:focus {
  border-color: var(--teal) !important;
  background: #fff !important;
  box-shadow: 0 0 0 3px rgba(11, 191, 170, .12) !important;
}

.form-control::placeholder {
  color: var(--text-3) !important;
}

textarea.form-control {
  resize: vertical;
}

.btn.btn-primary {
  background: var(--navy) !important;
  border: none !important;
  padding: 13px 32px !important;
  border-radius: var(--radius-sm) !important;
  font-family: 'Outfit', sans-serif !important;
  font-weight: 700 !important;
  font-size: .9em !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  box-shadow: 0 6px 24px rgba(27, 43, 94, .25) !important;
  transition: all .3s !important;
}

.btn.btn-primary:hover {
  background: var(--teal) !important;
  box-shadow: 0 10px 32px rgba(11, 191, 170, .35) !important;
  transform: translateY(-2px) !important;
}

.btn.btn-primary svg {
  width: 16px;
  height: 16px;
}

/* ═══════════════════════════════════════
   FOOTER  — completely new design
═══════════════════════════════════════ */
.footer-sec {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

/* mesh background */
.footer-sec::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, .04) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

/* glow blobs */
.footer-sec::after {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(11, 191, 170, .12) 0%, transparent 65%);
  pointer-events: none;
}

/* CTA strip at top of footer */
.footer-cta-strip {
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  padding: 48px 0;
  position: relative;
  z-index: 2;
}

.footer-cta-strip .fcs-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-cta-strip h3 {
  font-size: clamp(1.5em, 2.5vw, 2.1em);
  font-weight: 800;
  color: #fff;
  margin: 0;
}

.footer-cta-strip h3 em {
  color: var(--teal);
  font-style: normal;
}

.footer-cta-strip p {
  color: rgba(255, 255, 255, .6);
  font-size: .9em;
  margin: .5em 0 0;
}

.fcs-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  border-radius: var(--radius-sm);
  background: var(--teal);
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: .9em;
  flex-shrink: 0;
  box-shadow: 0 6px 24px rgba(11, 191, 170, .4);
  transition: all .3s;
}

.fcs-btn:hover {
  background: #fff;
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 255, 255, .15);
}

.fcs-btn svg {
  width: 17px;
  height: 17px;
}

/* Footer body */
.footer-body {
  padding: 60px 0 40px;
  position: relative;
  z-index: 2;
}

.footer-brand-col {}

.footer-logo {
  height: 9em;
  width: auto;
  margin-bottom: 1.4em;
}

.footer-tagline {
  color: rgba(255, 255, 255, .9);
  font-size: .87em;
  line-height: 1.85;
  margin-bottom: 1.8em;
}

/* Social icons */
.footer-socials {
  display: flex;
  gap: 10px;
}

.fsoc-btn {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  border: 1.5px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .06);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s;
  color: rgba(255, 255, 255, .5);
}

.fsoc-btn:hover {
  background: var(--teal);
  border-color: var(--teal);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(11, 191, 170, .35);
}

.fsoc-btn svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* Footer columns */
.footer-col-title {
  font-family: 'Outfit', sans-serif;
  font-size: .72em;
  font-weight: 800;
  color: #fff;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  margin-bottom: 1.3em;
  padding-bottom: .7em;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  display: block;
}

.footer-link-list {}

.footer-link-list li {
  margin-bottom: .75em;
}

.footer-link-list li a {
  color: rgba(255, 255, 255, .9);
  font-size: .87em;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all .25s;
}

.footer-link-list li a:hover {
  color: var(--teal);
  padding-left: 4px;
}

.footer-link-list li a svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
  transition: opacity .25s;
}

.footer-link-list li a:hover svg {
  opacity: 1;
}

/* Contact list in footer */
.footer-contact-list {}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255, 255, 255, .9);
  font-size: .86em;
  margin-bottom: 1em;
}

.footer-contact-list li:last-child {
  margin-bottom: 0;
}

.footer-contact-list li .fci-icon {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  background: rgba(11, 191, 170, .15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-contact-list li .fci-icon svg {
  width: 14px;
  height: 14px;
  stroke: var(--teal);
}

.footer-contact-list li a {
  color: rgba(255, 255, 255, .9);
}

.footer-contact-list li a:hover {
  color: var(--teal);
}

/* Footer bottom bar */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding: 22px 0;
  position: relative;
  z-index: 2;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.footer-bottom p {
  color: rgba(255, 255, 255, .9);
  font-size: .8em;
  font-weight: 500;
  margin: 0;
}

.footer-reg-text {
  color: rgba(255, 255, 255, .9) !important;
  font-size: .76em !important;
  text-align: right;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, .9);
  font-size: .8em;
  font-weight: 500;
  transition: color .25s;
}

.footer-bottom-links a:hover {
  color: var(--teal);
}

/* Misc */
.footer-box {
  background: transparent !important;
}

.footer-top-sec {
  display: none;
}

.footer-bottom-sec {
  display: none;
}

.footer-company-info-box,
.footer-widget-link-sec,
.footer-widget-company-info-sec {
  display: none;
}

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media (max-width: 1199px) {
  .cta-box {
    padding: 50px 44px;
  }
}

@media (max-width: 991px) {
  body {
    padding-top: 65px;
  }

  .nav-links,
  .nav-actions .nav-login-btn,
  .nav-actions .nav-signup-btn {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .step-to-step_card-box {
    grid-template-columns: 1fr;
    border-radius: var(--radius-lg);
  }

  .step-to-step_card-big {
    padding: 40px 32px;
  }

  .step-to-step_card-med {
    padding: 20px 20px;
  }

  .feature_tab-card {
    padding: 20px 20px;
    gap: 12px;
  }

  .cta-box {
    grid-template-columns: 1fr;
    padding: 44px 32px;
  }

  .cta-right-sec {
    display: none;
  }

  .client-slider {
    grid-template-columns: 1fr;
  }

  .footer-cta-strip .fcs-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
  }

  .banner-float-card {
    display: none;
  }

  .resp-margin-btm-md {
    margin-bottom: 2.5em;
  }

  .step-to-step_subcard {
    gap: 10px
  }
}

@media (max-width: 767px) {
  .sm-padding {
    padding: 2em 0;
  }

  .banner-warpped {
    padding: 2em 0;
  }

  .contact_form {
    padding: 28px 20px;
  }

  .footer-body {
    padding: 44px 0 32px;
  }

  .footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .footer-reg-text {
    text-align: left !important;
  }

  .footer-bottom-links {
    flex-wrap: wrap;
    gap: 14px;
  }

  .hero-stats {
    max-width: 100%;
  }

  .cta-box {
    padding: 36px 22px;
  }

  .banner_content-action {
    gap: 10px;
    margin-bottom: 0;
  }
}


.static-page-box {
  padding: 2em;
  background: #f2f2f2;
  border-radius: 30px;
  margin: 2em 0;
  box-shadow: 0px 1px 10px -6px rgba(0, 0, 0, .15);
}

.static-page-header-sec h2 {
  font-size: 2.5em;
  font-weight: 700;
  color: var(--tertiary-color);
  position: relative;
  margin-bottom: 0.5em;
  text-align: center;
  position: relative;
  z-index: 2;
}

.static-page-card h3 {
  color: var(--tertiary-color);
  font-size: 1.4em;
  font-weight: 700;
}

.static-page-card p {
  color: var(--quaternary-color);
  font-size: 1em;
  font-weight: 400;
  line-height: 1.8;
}

.static-page-card ul {
  margin-bottom: .8em;
}

.static-page-card ul li {
  padding-bottom: 1em;
  color: var(--quaternary-color);
  font-size: 1em;
  font-weight: 400;
  line-height: 1.8;
}

.static-page-card ul li:last-child {
  padding-bottom: 0;
}

.static-page-card {
  margin-bottom: 2em;
}

/* ═══════════════════════════════════════
   DROPDOWN NAV
═══════════════════════════════════════ */
.nav-has-dropdown {
  position: relative;
}

.nav-has-dropdown:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 5px;
}

.nav-dropdown-toggle svg {
  transition: transform .3s;
}

.nav-has-dropdown:hover .nav-dropdown-toggle svg {
  transform: rotate(180deg);
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 260px;
  background: #fff;
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  list-style: none;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transition: all .25s ease;
  z-index: 999;
}

.nav-dropdown::before {
  content: '';
  position: absolute;
  top: -7px;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-bottom-color: #fff;
  border-top: none;
  filter: drop-shadow(0 -2px 2px rgba(27, 43, 94, .06));
}

.nav-dropdown li a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 10px;
  color: var(--text-2) !important;
  font-family: 'Outfit', sans-serif;
  font-size: .88em;
  transition: all .2s;
}

.nav-dropdown li a:hover {
  background: var(--teal-lite);
  color: var(--teal) !important;
}

.nav-dropdown li a .ndd-icon {
  font-size: 1.3em;
  flex-shrink: 0;
}

.nav-dropdown li a span strong {
  display: block;
  font-size: .92em;
  color: var(--navy);
  font-weight: 700;
}

.nav-dropdown li a span small {
  display: block;
  font-size: .78em;
  color: var(--text-3);
  font-weight: 400;
}

/* ═══════════════════════════════════════
   INNER PAGE HERO (shared)
═══════════════════════════════════════ */
.inner-hero {
  position: relative;
  overflow: hidden;
  padding: 80px 0 70px;
}

.inner-hero .container {
  position: relative;
  z-index: 2;
}

.inner-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 50px;
  border: 1.5px solid rgba(255, 255, 255, .3);
  background: rgba(255, 255, 255, .15);
  color: #fff;
  backdrop-filter: blur(6px);
  font-family: 'Outfit', sans-serif;
  font-size: .74em;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin-bottom: 1.2em;
}

.inner-hero h1 {
  font-size: clamp(2em, 4vw, 3.2em);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin-bottom: .7em;
  letter-spacing: -.4px;
  text-transform: capitalize;
}
h2{
  text-transform: capitalize;
}
.inner-hero h1 em {
  font-style: normal;
}

.inner-hero p {
  color: rgba(255, 255, 255, .8);
  font-size: 1.05em;
  max-width: 520px;
  margin-bottom: 2em;
}

.inner-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-btn-white {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--navy);
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: .9em;
  box-shadow: 0 6px 24px rgba(0, 0, 0, .15);
  transition: all .3s;
}

.hero-btn-white:hover {
  background: var(--teal);
  color: #fff;
  transform: translateY(-3px);
}

.hero-btn-white svg {
  width: 16px;
  height: 16px;
}

.hero-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 12px 26px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, .12);
  border: 1.5px solid rgba(255, 255, 255, .3);
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: .9em;
  transition: all .3s;
}

.hero-btn-ghost:hover {
  background: rgba(255, 255, 255, .22);
  color: #fff;
  transform: translateY(-2px);
}

/* Breadcrumb */
.inner-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 1.4em;
  font-size: .8em;
  color: rgba(255, 255, 255, .55);
}

.inner-breadcrumb a {
  color: rgba(255, 255, 255, .65);
  font-weight: 500;
}

.inner-breadcrumb a:hover {
  color: #fff;
}

.inner-breadcrumb span {
  color: rgba(255, 255, 255, .35);
}

/* Hero stat pills */
.hero-pills {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 2em;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, .12);
  border: 1px solid rgba(255, 255, 255, .2);
  backdrop-filter: blur(8px);
  color: #fff;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: .82em;
  font-weight: 600;
}

.hero-pill-icon {
  font-size: 1em;
}

/* ═══════════════════════════════════════
   CONTENT SECTIONS (inner pages)
═══════════════════════════════════════ */
.content-section {
  padding: 5.5em 0;
}

.content-section.alt-bg {
  background: var(--off-white);
}

.content-section.navy-bg {
  background: var(--navy);
}

.content-section.surface-bg {
  background: var(--surface);
}

/* Card grid */
.icon-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 26px;
  height: 100%;
  box-shadow: var(--shadow-sm);
  transition: all .35s cubic-bezier(.34, 1.56, .64, 1);
  position: relative;
  overflow: hidden;
}

.icon-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-md);
  border-color: rgba(11, 191, 170, .35);
}

.icon-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--navy), var(--teal));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s;
}

.icon-card:hover::after {
  transform: scaleX(1);
}

.icon-card-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2em;
  font-size: 1.5em;
}

.icon-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.05em;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .45em;
}

.icon-card p {
  font-size: .88em;
  color: var(--text-2);
  line-height: 1.7;
  margin: 0;
}

/* Numbered step card */
.step-card {
  display: flex;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
  position: relative;
  transition: all .3s;
}

.step-card:last-child {
  border-bottom: none;
}

.step-card:hover .step-num {
  background: var(--teal);
  color: #fff;
}

.step-num {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  min-width: 46px;
  background: var(--teal-lite);
  border: 2px solid rgba(11, 191, 170, .3);
  color: var(--teal);
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1em;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s;
}

.step-card h4 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  color: var(--navy);
  font-size: 1em;
  margin-bottom: .3em;
}

.step-card p {
  font-size: .875em;
  color: var(--text-2);
  margin: 0;
}

/* Info table */
.info-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.info-table thead th {
  background: var(--navy);
  color: #fff;
  padding: 14px 20px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: .85em;
  text-align: left;
  letter-spacing: .3px;
}

.info-table thead th:first-child {
  border-radius: var(--radius) 0 0 0;
}

.info-table thead th:last-child {
  border-radius: 0 var(--radius) 0 0;
}

.info-table tbody tr {
  transition: background .2s;
}

.info-table tbody tr:hover {
  background: var(--teal-lite);
}

.info-table tbody tr:nth-child(even) {
  background: var(--off-white);
}

.info-table tbody tr:nth-child(even):hover {
  background: var(--teal-lite);
}

.info-table tbody td {
  padding: 13px 20px;
  font-size: .88em;
  color: var(--text-2);
  border-bottom: 1px solid var(--border);
}

.info-table tbody td:first-child {
  font-weight: 600;
  color: var(--navy);
}

.info-table tbody tr:last-child td {
  border-bottom: none;
}

.rate-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--teal-lite);
  color: var(--teal);
  padding: 3px 12px;
  border-radius: 50px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: .82em;
  border: 1px solid rgba(11, 191, 170, .25);
}

/* FAQ within pages */
.page-faq .accordion-item {
  margin-bottom: 10px;
}

/* Highlight strip */
.highlight-strip {
  background: linear-gradient(135deg, var(--navy) 0%, #243575 55%, #1B3A5E 100%);
  border-radius: var(--radius-xl);
  padding: 52px 50px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.highlight-strip::before {
  content: '';
  position: absolute;
  top: -80px;
  right: 200px;
  width: 380px;
  height: 380px;
  border: 65px solid rgba(11, 191, 170, .1);
  border-radius: 50%;
  pointer-events: none;
}

.highlight-strip::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -60px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(11, 191, 170, .12) 0%, transparent 70%);
  pointer-events: none;
}

.highlight-strip h2 {
  font-size: clamp(1.7em, 2.8vw, 2.6em);
  font-weight: 800;
  color: #fff;
  margin-bottom: .7em;
}

.highlight-strip h2 em {
  color: var(--teal);
  font-style: normal;
}

.highlight-strip p {
  color: rgba(255, 255, 255, .7);
  font-size: .95em;
  margin-bottom: 1.8em;
}

.hs-inner {
  position: relative;
  z-index: 2;
}

/* Eligibility checklist */
.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: .9em;
  color: var(--text-2);
}

.check-list li:last-child {
  border-bottom: none;
}

.check-list li::before {
  content: '';
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  border-radius: 50%;
  margin-top: 1px;
  background: var(--teal-lite) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='11' viewBox='0 0 24 24' fill='none' stroke='%230BBFAA' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") no-repeat center;
  border: 1px solid rgba(11, 191, 170, .3);
}

.check-list li strong {
  color: var(--navy);
}

/* Testimonial mini (inner page) */
.testimonial-mini {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

.testimonial-mini::before {
  content: '\201C';
  position: absolute;
  top: 8px;
  right: 18px;
  font-size: 5em;
  color: rgba(11, 191, 170, .1);
  font-family: 'Outfit', serif;
  line-height: 1;
  pointer-events: none;
}

.testimonial-mini p {
  font-size: .88em;
  font-style: italic;
  color: var(--text-2);
  margin-bottom: 1em;
  line-height: 1.8;
}

.tm-user {
  display: flex;
  align-items: center;
  gap: 10px;
}

.tm-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: .85em;
  color: #fff;
  flex-shrink: 0;
}

.tm-user strong {
  font-family: 'Outfit', sans-serif;
  font-size: .88em;
  font-weight: 700;
  color: var(--navy);
  display: block;
}

.tm-user span {
  font-size: .75em;
  color: var(--text-3);
}

/* Page pattern helpers */
.pg-mesh {
  background-image: radial-gradient(circle, rgba(27, 43, 94, .055) 1px, transparent 1px);
  background-size: 24px 24px;
}

.pg-diag {
  background-image: repeating-linear-gradient(-45deg, transparent, transparent 10px, rgba(11, 191, 170, .04) 10px, rgba(11, 191, 170, .04) 11px);
}

.pg-grid {
  background-image: linear-gradient(rgba(27, 43, 94, .04) 1px, transparent 1px), linear-gradient(90deg, rgba(27, 43, 94, .04) 1px, transparent 1px);
  background-size: 32px 32px;
}

.pg-waves {
  background-image: repeating-radial-gradient(circle at 50% 50%, transparent 0, transparent 30px, rgba(11, 191, 170, .04) 30px, rgba(11, 191, 170, .04) 31px);
}

.thankyou-img {
  width: 34em;
  object-fit: contain;
}

.thank-you-sec {
  height: 80vh;
  display: grid;
  place-items: center;
}