/*=========================================================
  Pavemnt — design layer
  Loaded after main.css. Everything specific to the
  fractional GTM positioning lives here so the vendor
  template CSS (main.css) stays untouched.
  ---------------------------------------------------------
  01. Tokens
  02. Base + accessibility
  03. Motion / reveal system
  04. Buttons
  05. Header + nav
  06. Hero
  07. Section scaffolding
  08. Why fractional (compare)
  09. Services cards
  10. How it works (steps)
  11. Who we serve
  12. Who we are (team)
  13. Engagements (plans)
  14. CTA band
  15. Footer
  16. Responsive
=========================================================*/

/* ---------------------------------------------------------
   01. Tokens
---------------------------------------------------------- */
:root {
  --brand: #2e75ff;
  --brand-dark: #1b4fd8;
  --brand-deep: #10204a;
  --brand-soft: #eef4ff;
  --brand-line: rgba(46, 117, 255, 0.28);

  --ink: #0f1c3f;
  --ink-2: #162447;
  --body: #5b657e;
  --muted: #66738f;

  --surface: #ffffff;
  --surface-2: #f6f9ff;
  --line: #e6ebf5;

  --radius-sm: 14px;
  --radius: 20px;
  --radius-lg: 26px;
  --radius-xl: 34px;

  --shadow-sm: 0 2px 10px rgba(15, 28, 63, 0.05);
  --shadow-md: 0 14px 34px rgba(15, 28, 63, 0.09);
  --shadow-lg: 0 30px 70px rgba(15, 28, 63, 0.14);
  --shadow-brand: 0 18px 40px rgba(46, 117, 255, 0.22);

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --font: "Open Sauce One", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, Helvetica, Arial, sans-serif;

  --header-h: 88px;
}

/* ---------------------------------------------------------
   02. Base + accessibility
---------------------------------------------------------- */
body {
  font-family: var(--font);
  color: var(--body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font);
  color: var(--ink);
  letter-spacing: -0.02em;
}

p {
  color: var(--body);
}

ul {
  list-style: none;
}

::selection {
  background: rgba(46, 117, 255, 0.18);
  color: var(--ink);
}

/* Visible, consistent keyboard focus everywhere. */
a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 3px solid var(--brand);
  outline-offset: 3px;
  border-radius: 6px;
}

.hero-section a:focus-visible {
  outline-color: #fff;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -60px;
  z-index: 999;
  background: #fff;
  color: var(--brand);
  font-weight: 700;
  padding: 12px 20px;
  border-radius: 0 0 12px 12px;
  box-shadow: var(--shadow-md);
  transition: top 0.25s var(--ease);
}

.skip-link:focus {
  top: 0;
}

/* Anchor targets clear the sticky header. */
section[id] {
  scroll-margin-top: var(--header-h);
}

/* ---------------------------------------------------------
   03. Motion / reveal system
   Replaces WOW.js + animate.css with an IntersectionObserver
   driven transition (see assets/js/main.js).
---------------------------------------------------------- */
/* Scoped to html.js: the flag is set before first paint and dropped again if
   main.js never boots, so a failed script can never leave content hidden. */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  transition-delay: var(--reveal-delay, 0s);
  will-change: opacity, transform;
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@keyframes pv-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes pv-bar {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

@keyframes pv-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(46, 117, 255, 0.45);
  }
  70% {
    box-shadow: 0 0 0 9px rgba(46, 117, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(46, 117, 255, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .js [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

/* ---------------------------------------------------------
   04. Buttons
---------------------------------------------------------- */
.main-btn {
  padding: 16px 34px;
  font-size: 17px;
  line-height: 1.2;
  border-radius: 50px;
  box-shadow: var(--shadow-brand);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease),
    background-color 0.35s var(--ease), color 0.35s var(--ease),
    border-color 0.35s var(--ease);
}

.main-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 46px rgba(46, 117, 255, 0.28);
}

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

.main-btn.border-btn {
  box-shadow: none;
}

.main-btn.border-btn:hover {
  background: var(--brand);
  color: #fff;
  box-shadow: var(--shadow-brand);
}

/* Solid white button, used on blue backgrounds. */
.main-btn.btn-light,
.hero-section .hero-content .main-btn.btn-light,
.cta-band .main-btn.btn-light {
  background: #fff;
  border: 2px solid #fff;
  color: var(--brand);
  box-shadow: 0 18px 40px rgba(3, 22, 66, 0.22);
}

.main-btn.btn-light:hover,
.hero-section .hero-content .main-btn.btn-light:hover,
.cta-band .main-btn.btn-light:hover {
  color: var(--brand-dark);
  box-shadow: 0 24px 50px rgba(3, 22, 66, 0.28);
}

/* Ghost button on blue. */
.main-btn.btn-ghost,
.hero-section .hero-content .main-btn.btn-ghost,
.cta-band .main-btn.btn-ghost {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.55);
  color: #fff;
  box-shadow: none;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

.main-btn.btn-ghost:hover,
.hero-section .hero-content .main-btn.btn-ghost:hover,
.cta-band .main-btn.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: #fff;
  color: #fff;
}

/* Quiet inline link with a sliding arrow. */
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 700;
  color: var(--brand-dark);
}

.text-link i {
  font-size: 14px;
  transition: transform 0.3s var(--ease);
}

.text-link:hover i {
  transform: translateX(5px);
}

/* ---------------------------------------------------------
   05. Header + nav
---------------------------------------------------------- */
.navbar-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.navbar-logo-txt,
.navbar-logo-txt-footer {
  font-size: 25px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
  height: auto;
  transition: color 0.3s var(--ease);
}

.navbar-brand img {
  width: 44px;
  height: 44px;
}

.navbar-nav .nav-item a {
  font-size: 16.5px;
  font-weight: 500;
}

/* Slimmer, cleaner active indicator than the template default. */
.navbar-nav .nav-item a::before {
  height: 2px;
  bottom: 3px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.95);
}

.sticky .navbar .navbar-nav .nav-item a::before {
  background: var(--brand);
}

.navbar-nav .nav-item.nav-item-cta {
  margin-left: 28px;
}

.nav-cta {
  display: inline-block;
  padding: 11px 24px !important;
  border-radius: 50px;
  border: 2px solid rgba(255, 255, 255, 0.6);
  font-weight: 700 !important;
  transition: all 0.3s var(--ease);
}

.nav-cta::before {
  display: none;
}

.nav-cta:hover {
  background: #fff;
  border-color: #fff;
  color: var(--brand) !important;
}

.sticky .nav-cta {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff !important;
}

.sticky .nav-cta:hover {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
  color: #fff !important;
  box-shadow: var(--shadow-brand);
}

.sticky {
  background-color: rgba(255, 255, 255, 0.94);
  -webkit-backdrop-filter: blur(12px) saturate(150%);
  backdrop-filter: blur(12px) saturate(150%);
  box-shadow: 0 6px 24px rgba(15, 28, 63, 0.07);
}

@media only screen and (min-width: 768px) and (max-width: 991px),
  (max-width: 767px) {
  .navbar-collapse {
    border-radius: 0 0 18px 18px;
    box-shadow: 0 20px 40px rgba(15, 28, 63, 0.12);
    overflow: hidden;
  }

  .navbar-nav {
    padding: 18px 26px 26px;
  }

  .navbar-nav .nav-item {
    border-bottom: 1px solid var(--line);
  }

  .navbar-nav .nav-item:last-child {
    border-bottom: 0;
  }

  .navbar-nav .nav-item a {
    display: block;
    padding: 13px 0;
  }

  .navbar-nav .nav-item.nav-item-cta {
    margin-left: 0;
    padding-top: 18px;
  }

  .nav-cta,
  .sticky .nav-cta {
    background: var(--brand);
    border-color: var(--brand);
    color: #fff !important;
    text-align: center;
  }
}

/* ---------------------------------------------------------
   06. Hero
---------------------------------------------------------- */
/* Painted in CSS rather than the fixed-size hero-bg.svg, which letterboxed
   on tall/short viewports. Same wave language, fully fluid. */
.hero-section {
  position: relative;
  overflow: hidden;
  padding: clamp(118px, 14vh, 160px) 0 clamp(96px, 11vw, 150px);
  background-color: var(--brand);
  background-image: radial-gradient(
      1100px 640px at 86% -14%,
      rgba(255, 255, 255, 0.16),
      rgba(255, 255, 255, 0) 62%
    ),
    radial-gradient(
      820px 560px at 4% 112%,
      rgba(9, 38, 108, 0.32),
      rgba(9, 38, 108, 0) 68%
    ),
    linear-gradient(158deg, var(--brand-dark) 0%, var(--brand) 56%, #4f8cff 100%);
}

/* Soft curve into the next section — echoes the footer wave. */
.hero-section::after {
  content: "";
  position: absolute;
  left: -10%;
  right: -10%;
  bottom: -92px;
  height: 184px;
  border-radius: 50%;
  background: #fff;
  pointer-events: none;
}

.hero-section .hero-content {
  margin-bottom: 0;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 16px 7px 12px;
  margin-bottom: 26px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #fff;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}

.hero-eyebrow span.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.25);
}

.hero-section .hero-content h1 {
  font-size: clamp(36px, 4.6vw, 60px);
  line-height: 1.07;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  color: #fff;
}

.hero-section .hero-content p.hero-sub {
  font-size: clamp(17px, 1.35vw, 20px);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 36px;
  max-width: 34rem;
  padding-right: 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 40px;
  margin-top: 48px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.hero-trust li b {
  display: block;
  font-size: clamp(21px, 1.9vw, 26px);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.03em;
}

.hero-trust li span {
  display: block;
  margin-top: 3px;
  font-size: 13.5px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.72);
}

/* --- hero panel (illustrative engagement snapshot) --- */
.hero-visual {
  position: relative;
  z-index: 1;
  padding-left: 20px;
}

.hero-panel {
  position: relative;
  background: #fff;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  padding: 28px 30px 26px;
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: 16px -16px -16px 16px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-xl);
  z-index: -1;
}

.hero-panel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 16px;
  margin-bottom: 6px;
  border-bottom: 1px solid var(--line);
}

.hero-panel__head .panel-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.hero-panel__head .tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brand);
}

.hero-panel__head .tag::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand);
  animation: pv-pulse 2.4s ease-out infinite;
}

.hero-panel__row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 10px 12px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}

.hero-panel__row:last-of-type {
  border-bottom: 0;
}

.hero-panel__row b {
  font-size: 15.5px;
  font-weight: 600;
  color: var(--ink);
}

.hero-panel__row .state {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--brand-dark);
  background: var(--brand-soft);
  padding: 4px 11px;
  border-radius: 50px;
}

.hero-panel__bar {
  grid-column: 1 / -1;
  height: 6px;
  border-radius: 50px;
  background: #edf1f9;
  overflow: hidden;
}

.hero-panel__bar i {
  display: block;
  height: 100%;
  width: var(--w, 60%);
  border-radius: 50px;
  background: linear-gradient(90deg, var(--brand-dark), #6fa2ff);
  transform-origin: left center;
  animation: pv-bar 1.2s var(--ease) both;
  animation-delay: var(--d, 0.2s);
}

.hero-panel__foot {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

/* Same chip cluster without the divider rule; sits at the card foot. */
.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
  padding-top: 24px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink-2);
  background: var(--surface-2);
  border: 1px solid var(--line);
  border-radius: 50px;
  padding: 6px 13px;
}

.chip i {
  color: var(--brand);
  font-size: 12px;
}

.hero-badge {
  position: absolute;
  right: -10px;
  bottom: -52px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border-radius: 18px;
  padding: 14px 18px;
  box-shadow: var(--shadow-md);
  animation: pv-float 5.5s ease-in-out infinite;
}

.hero-badge .ico {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  background: var(--brand-soft);
  color: var(--brand);
  font-size: 18px;
}

.hero-badge b {
  display: block;
  font-size: 16px;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.hero-badge span {
  font-size: 12.5px;
  color: var(--muted);
}

/* ---------------------------------------------------------
   07. Section scaffolding
---------------------------------------------------------- */
.section {
  padding: clamp(74px, 8.5vw, 128px) 0;
  position: relative;
}

/* Fades in at the edges so the band boundaries don't read as hard seams. */
.section--tint {
  background: linear-gradient(
    180deg,
    #fbfcff 0%,
    var(--surface-2) 14%,
    var(--surface-2) 86%,
    #fbfcff 100%
  );
}

.section--tight {
  padding-top: clamp(56px, 6vw, 88px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-dark);
}

.eyebrow::before {
  content: "";
  width: 24px;
  height: 2px;
  border-radius: 2px;
  background: var(--brand);
}

.section-head h2 {
  font-size: clamp(27px, 3.1vw, 42px);
  line-height: 1.2;
  margin-bottom: 18px;
}

/* :not(.eyebrow) so the label above the headline keeps its own scale. */
.section-head p:not(.eyebrow) {
  font-size: 17.5px;
  line-height: 1.72;
  margin-bottom: 0;
}

.section-head p + p {
  margin-top: 14px;
}

.section-head--center {
  max-width: 780px;
  margin: 0 auto clamp(42px, 5vw, 66px);
  text-align: center;
}

.section-head--center .eyebrow::before {
  display: none;
}

.section-head--center h2 {
  margin-left: auto;
  margin-right: auto;
}

/* ---------------------------------------------------------
   08. Why fractional (compare)
---------------------------------------------------------- */
.why-copy {
  padding-right: 30px;
}

.why-copy .main-btn {
  margin-top: 32px;
}

.compare {
  display: grid;
  gap: 16px;
  position: relative;
}

.compare-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.compare-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.compare-card--muted {
  background: var(--surface-2);
  box-shadow: none;
}

.compare-card--brand {
  border-color: var(--brand-line);
  box-shadow: 0 20px 44px rgba(46, 117, 255, 0.14);
}

.compare-card__top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.compare-card__label {
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.compare-card--brand .compare-card__label {
  color: var(--brand);
}

.compare-card__price {
  font-size: 27px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.compare-card__price small {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0;
}

.compare-list li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: 15.5px;
  line-height: 1.55;
  padding: 6px 0;
  color: var(--body);
}

.compare-list li i {
  flex: 0 0 auto;
  margin-top: 3px;
  font-size: 14px;
  font-weight: 700;
}

.compare-list li i.lni-close {
  color: #c3ccdd;
}

.compare-list li i.lni-checkmark {
  color: var(--brand);
}

.compare-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.compare-divider::before,
.compare-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}

/* ---------------------------------------------------------
   09. Services cards
---------------------------------------------------------- */
.card-grid {
  display: grid;
  gap: 26px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.svc-card {
  position: relative;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 34px 30px 32px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease),
    border-color 0.45s var(--ease);
}

.svc-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-dark), #6fa2ff);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.5s var(--ease);
}

.svc-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-md);
  border-color: var(--brand-line);
}

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

.svc-card__num {
  position: absolute;
  top: 28px;
  right: 30px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #ccd6e8;
}

.svc-card .icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  font-size: 27px;
  color: var(--brand);
  background: var(--brand-soft);
  transition: transform 0.45s var(--ease), background-color 0.45s var(--ease),
    color 0.45s var(--ease);
}

.svc-card:hover .icon {
  background: var(--brand);
  color: #fff;
  transform: translateY(-2px) rotate(-5deg);
}

.svc-card h3 {
  font-size: 20.5px;
  line-height: 1.35;
  margin: 24px 0 12px;
}

.svc-card p {
  font-size: 16px;
  line-height: 1.72;
  margin: 0;
}

/* ---------------------------------------------------------
   10. How it works (steps)
---------------------------------------------------------- */
.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
  position: relative;
}

.steps::before {
  content: "";
  position: absolute;
  top: 25px;
  left: 12%;
  right: 12%;
  height: 2px;
  background-image: linear-gradient(
    90deg,
    var(--brand-line) 0 8px,
    transparent 8px 16px
  );
  background-size: 16px 2px;
  background-repeat: repeat-x;
  z-index: 0;
}

.step {
  position: relative;
  z-index: 1;
  padding-right: 14px;
}

.step__n {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  background: #fff;
  border: 2px solid var(--brand);
  color: var(--brand);
  font-size: 17px;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(46, 117, 255, 0.16);
  transition: background-color 0.4s var(--ease), color 0.4s var(--ease),
    transform 0.4s var(--ease);
}

.step:hover .step__n {
  background: var(--brand);
  color: #fff;
  transform: translateY(-3px);
}

.step h3 {
  font-size: 19.5px;
  margin: 22px 0 11px;
}

.step p {
  font-size: 16px;
  line-height: 1.72;
  margin: 0;
}

.step__meta {
  display: inline-block;
  margin-top: 14px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---------------------------------------------------------
   11. Who we serve
---------------------------------------------------------- */
.serve-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.serve-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 38px 36px 34px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease),
    border-color 0.45s var(--ease);
}

.serve-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--brand-line);
}

.serve-card__head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
}

.serve-card .icon {
  flex: 0 0 auto;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  font-size: 23px;
  color: #fff;
  background: linear-gradient(140deg, var(--brand-dark), var(--brand));
  box-shadow: 0 10px 22px rgba(46, 117, 255, 0.24);
}

.serve-card h3 {
  font-size: 21px;
  line-height: 1.3;
  margin: 0;
}

.serve-card p {
  font-size: 16.5px;
  line-height: 1.75;
  margin: 0;
}

.serve-card .text-link {
  margin-top: 26px;
  align-self: flex-start;
}

/* ---------------------------------------------------------
   12. Who we are (team)
---------------------------------------------------------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.team-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 36px 34px 32px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.team-card__head {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-bottom: 22px;
  margin-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.avatar {
  flex: 0 0 auto;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  font-size: 21px;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #fff;
  background: linear-gradient(140deg, var(--brand-dark), #6fa2ff);
  box-shadow: 0 10px 22px rgba(46, 117, 255, 0.24);
}

.team-card__head h3 {
  font-size: 20px;
  margin: 0 0 4px;
}

.team-card__head .role {
  font-size: 14px;
  font-weight: 600;
  color: var(--brand);
}

.team-card__head .social {
  margin-left: auto;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  color: var(--brand);
  background: var(--brand-soft);
  transition: all 0.3s var(--ease);
}

.team-card__head .social:hover {
  background: var(--brand);
  color: #fff;
}

.team-bio p {
  font-size: 16px;
  line-height: 1.78;
  margin: 0 0 14px;
}

.team-bio p:last-child {
  margin-bottom: 0;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

/* Bio + foot are siblings in a flex column, so the foot pins to the bottom
   and both team cards line up regardless of bio length. */
.team-bio {
  margin-bottom: 26px;
}

.stat b {
  display: block;
  font-size: 23px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.stat span {
  display: block;
  margin-top: 5px;
  font-size: 12.5px;
  line-height: 1.45;
  color: var(--muted);
}

/* ---------------------------------------------------------
   13. Engagements (plans)
---------------------------------------------------------- */
.plans {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
  align-items: stretch;
}

.plan {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 36px 32px 34px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease),
    border-color 0.45s var(--ease);
}

.plan:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-md);
  border-color: var(--brand-line);
}

.plan__name {
  font-size: 20px;
  margin: 0 0 10px;
}

.plan__price {
  font-size: 38px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.plan__price span {
  font-size: 16px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0;
}

.plan__desc {
  font-size: 16px;
  line-height: 1.65;
  margin: 14px 0 0;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.plan__list {
  margin: 22px 0 30px;
  display: grid;
  gap: 13px;
}

.plan__list li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: 15.5px;
  line-height: 1.55;
}

.plan__list li i {
  flex: 0 0 auto;
  margin-top: 3px;
  font-size: 13px;
  font-weight: 700;
  color: var(--brand);
}

.plan .main-btn {
  margin-top: auto;
  width: 100%;
}

/* Straddles the top edge so it never collides with the plan name. */
.plan__badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 50px;
  background: var(--brand);
  color: #fff;
  box-shadow: 0 10px 22px rgba(46, 117, 255, 0.35);
}

/* Featured — deep navy fill for hierarchy. */
.plan--featured {
  background: linear-gradient(155deg, #10204a 0%, #17356f 55%, #1b4fd8 140%);
  border-color: transparent;
  box-shadow: 0 30px 60px rgba(16, 32, 74, 0.28);
}

.plan--featured:hover {
  border-color: transparent;
  box-shadow: 0 38px 74px rgba(16, 32, 74, 0.34);
}

.plan--featured .plan__name,
.plan--featured .plan__price {
  color: #fff;
}

.plan--featured .plan__price span,
.plan--featured .plan__desc {
  color: rgba(255, 255, 255, 0.72);
}

.plan--featured .plan__desc {
  border-bottom-color: rgba(255, 255, 255, 0.18);
}

.plan--featured .plan__list li {
  color: rgba(255, 255, 255, 0.9);
}

.plan--featured .plan__list li i {
  color: #7fb0ff;
}

.plans-note {
  margin-top: 34px;
  text-align: center;
  font-size: 15.5px;
  color: var(--body);
}

/* ---------------------------------------------------------
   14. CTA band
---------------------------------------------------------- */
.cta-band {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  padding: clamp(42px, 5vw, 68px) clamp(26px, 5vw, 70px);
  text-align: center;
  color: #fff;
  background: linear-gradient(135deg, var(--brand-dark) 0%, var(--brand) 62%, #5b95ff 100%);
  box-shadow: 0 30px 70px rgba(27, 79, 216, 0.28);
}

.cta-band::before {
  content: "";
  position: absolute;
  top: -55%;
  right: -12%;
  width: 640px;
  height: 640px;
  background: radial-gradient(
    circle closest-side,
    rgba(255, 255, 255, 0.2),
    rgba(255, 255, 255, 0)
  );
  pointer-events: none;
}

.cta-band > * {
  position: relative;
  z-index: 1;
}

.cta-band h2 {
  color: #fff;
  font-size: clamp(25px, 2.8vw, 38px);
  line-height: 1.22;
  margin: 0 auto 16px;
  max-width: 20ch;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 17.5px;
  line-height: 1.65;
  max-width: 54ch;
  margin: 0 auto 32px;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

/* ---------------------------------------------------------
   15. Footer
---------------------------------------------------------- */
.footer {
  padding-bottom: 34px;
}

.footer .navbar-brand {
  gap: 10px;
}

.footer .widget-wrapper .footer-widget .desc {
  font-size: 16.5px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.86);
}

.footer .widget-wrapper .footer-widget h3 {
  font-size: 17px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.92);
}

.footer .widget-wrapper .footer-widget ul.links li {
  font-size: 16.5px;
  line-height: 2;
}

.footer .widget-wrapper .footer-widget ul.links li a {
  display: inline-block;
  color: rgba(255, 255, 255, 0.82);
  transition: color 0.3s var(--ease), transform 0.3s var(--ease);
}

.footer .widget-wrapper .footer-widget ul.links li a:hover {
  padding-left: 0;
  color: #fff;
  transform: translateX(5px);
}

.footer .widget-wrapper .footer-widget .socials li a {
  transition: all 0.3s var(--ease);
}

.footer .widget-wrapper .footer-widget .socials li a:hover {
  transform: translateY(-3px);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px 24px;
  margin-top: 14px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-bottom p {
  margin: 0;
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.72);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.85);
}

.footer-bottom a:hover {
  color: #fff;
}

.scroll-top {
  border-radius: 12px;
  display: none;
}

/* ---------------------------------------------------------
   16. Responsive
---------------------------------------------------------- */
@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .navbar-nav .nav-item {
    margin-left: 26px;
  }

  .navbar-nav .nav-item a {
    font-size: 15.5px;
  }

  .navbar-nav .nav-item.nav-item-cta {
    margin-left: 18px;
  }

  .why-copy {
    padding-right: 0;
  }
}

@media (max-width: 991px) {
  .hero-visual {
    padding-left: 0;
    margin-top: 56px;
    max-width: 560px;
  }

  .hero-badge {
    left: auto;
    right: 8px;
    bottom: -22px;
  }

  .why-copy {
    padding-right: 0;
    margin-bottom: 44px;
  }

  .card-grid,
  .steps,
  .serve-grid,
  .team-grid,
  .plans {
    grid-template-columns: minmax(0, 1fr);
  }

  .steps::before {
    display: none;
  }

  .step {
    padding-right: 0;
  }

  /* .plan--featured {
    order: -1;
  } */
}

@media (max-width: 767px) {
  .hero-section::after {
    bottom: -70px;
    height: 140px;
  }

  .hero-trust {
    gap: 18px 28px;
    margin-top: 38px;
  }

  .hero-actions .main-btn {
    width: 100%;
    text-align: center;
  }

  .hero-panel {
    padding: 22px 22px 20px;
  }

  .hero-panel::before {
    display: none;
  }

  .hero-badge {
    position: static;
    margin-top: 18px;
    animation: none;
  }

  .serve-card,
  .team-card,
  .plan {
    padding-left: 26px;
    padding-right: 26px;
  }

  .stat-row {
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
  }

  .footer-bottom {
    justify-content: flex-start;
  }
}
