:root {
  /* Global color palette */
  --color-white: #ffffff;
  --color-green: #2e7d6b;
  --color-navy: #0e253a;
  --color-blue-tint: #dceaf5;
  --color-slate: #4f6d88;
  --color-navy-soft: rgba(14, 37, 58, 0.06);
  --color-green-soft: rgba(46, 125, 107, 0.12);
  --color-slate-soft: rgba(79, 109, 136, 0.14);

  /* Font Family */
  --font-heading: "Manrope", sans-serif;
  --font-body: "IBM Plex Sans", sans-serif;

  /* Layout */
  --container-width: 1400px;
  --section-gap: 40px;
  --section-padding: 60px;
  --radius: 20px;
}

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

html {
  scroll-behavior: smooth;
  margin-top: 0;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-navy);
  background: var(--color-white);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-heading);
  color: var(--color-navy);
  margin: 0 0 16px 0;
  line-height: 1.15;
  font-weight: 800;
}

p {
  margin: 0 0 12px 0;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  padding: 13px 23px;
  border-radius: 16px;
  border: none;
  cursor: pointer;
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease,
    background 0.15s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--color-green);
  color: var(--color-white);
}

.btn-primary:hover {
  background: #276657;
}

/* ========= Header ========== */
.site-header {
  padding: 35px 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  background: var(--color-white);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  width: 162px;
}

.logo .reg {
  font-size: 12px;
  font-weight: 600;
  vertical-align: super;
}

.logo-icon {
  display: flex;
}

/* =====================================================
   Section base
===================================================== */
main.container {
  display: flex;
  flex-direction: column;
  gap: var(--section-gap);
  padding-bottom: var(--section-gap);
  margin-top: 120px;
}

.section {
  border-radius: var(--radius);
  padding: var(--section-padding);
}

.center {
  text-align: center;
}

.section.hero-section .eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  text-transform: uppercase;
  background: var(--color-green);
  color: var(--color-white);
  padding: 15px;
  border-radius: 10px;
  margin-bottom: 20px;
  letter-spacing: 5%;
}

.eyebrow-light {
  background: var(--color-green);
  color: var(--color-white);
}

/* =====================================================
   Hero
===================================================== */
.section.hero-section {
  background: var(--color-navy);
  color: var(--color-white);
  padding: 40px 0px 40px 60px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 48px;
  align-items: center;
}

.hero-copy h1 {
  color: var(--color-white);
  font-size: 55px;
  font-weight: 800;
  margin-bottom: 20px;
}

.section.hero-section p {
  color: var(--color-white);
  font-size: 20px;
  font-weight: 500;
}

/* -- Dashboard mock -- */
.dashboard-mock {
  background: var(--color-white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
  color: var(--color-navy);
}

.dash-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  border-bottom: 1px solid var(--color-blue-tint);
}

.dash-logo {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 15px;
}

.dash-topbar-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.dash-pill {
  background: var(--color-blue-tint);
  color: var(--color-slate);
  font-size: 11px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 999px;
}

.dash-avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--color-slate);
  display: inline-block;
}

.dash-body {
  display: flex;
}

.dash-nav {
  width: 130px;
  padding: 16px 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-right: 1px solid var(--color-blue-tint);
  font-size: 11.5px;
  color: var(--color-slate);
}

.dash-nav-item {
  padding: 7px 10px;
  border-radius: 8px;
}
.dash-nav-item.active {
  background: var(--color-blue-tint);
  color: var(--color-navy);
  font-weight: 600;
}

.dash-main {
  flex: 1;
  padding: 18px 20px;
}

.dash-main-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 14px;
}

.dash-greeting {
  font-size: 11px;
  color: var(--color-slate);
  margin: 0;
}
.dash-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  margin: 2px 0 0;
}

.dash-range {
  display: flex;
  gap: 6px;
  font-size: 10.5px;
  color: var(--color-slate);
}

.dash-range span {
  padding: 4px 9px;
  border-radius: 999px;
}
.dash-range .active {
  background: var(--color-navy);
  color: var(--color-white);
}

.dash-stat-row {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
}

.dash-stat {
  flex: 1;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.dash-stat.teal {
  background: var(--color-green-soft);
}
.dash-stat.sand {
  background: #f3e7d6;
}
.dash-stat.mint {
  background: var(--color-blue-tint);
}
.dash-stat.rose {
  background: #f7dcdc;
}

.dash-panels {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 14px;
}

.dash-panel {
  background: var(--color-white);
  border: 1px solid var(--color-blue-tint);
  border-radius: 12px;
  padding: 14px;
}

.dash-panel-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 12px;
  margin: 0 0 8px;
}

.badge {
  background: #e9b44c;
  color: var(--color-white);
  font-size: 10px;
  padding: 1px 7px;
  border-radius: 999px;
  margin-left: 4px;
}

.dash-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  padding: 5px 0;
  color: var(--color-slate);
}

.tag-warn {
  background: #fcefd9;
  color: #b9791b;
  font-size: 9.5px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 999px;
}

.bar-row {
  display: grid;
  grid-template-columns: 55px 1fr 28px;
  align-items: center;
  gap: 8px;
  font-size: 10.5px;
  color: var(--color-slate);
  padding: 4px 0;
}

.bar {
  height: 6px;
  background: var(--color-blue-tint);
  border-radius: 999px;
  overflow: hidden;
}
.bar i {
  display: block;
  height: 100%;
  background: var(--color-slate);
  border-radius: 999px;
}

.dash-alert {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  padding: 8px 0;
  border-bottom: 1px solid var(--color-blue-tint);
  color: var(--color-navy);
}
.dash-alert:last-child {
  border-bottom: none;
}
.dash-alert small {
  color: var(--color-slate);
  font-weight: 400;
}
.dash-alert span:nth-child(2) {
  flex: 1;
  font-weight: 600;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.dot.red {
  background: #d9534f;
}

/* =====================================================
   Banner (green value prop)
===================================================== */
.banner-section {
  background: var(--color-green);
  color: var(--color-white);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.inner-banner-section {
  max-width: 1000px;
  margin: auto;
}

.banner-section h2 {
  color: var(--color-white);
  font-size: 40px;
  line-height: 48px;
  text-align: center;
  margin-bottom: 16px;
  font-family: var(--font-heading);
  z-index: 2;
}

.banner-section p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 15.5px;
  font-size: 20px;
  line-height: 28px;
  text-align: center;
  font-weight: 500;
  font-family: var(--font-body);
  z-index: 2;
}

.banner-icon {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
}

/* =====================================================
   Triple card grid
===================================================== */
.triple-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  padding: 0;
  background: transparent;
}

.card {
  border-radius: var(--radius);
  padding: 36px 32px;
}

.card-blue {
  background: var(--color-blue-tint);
  padding: 60px;
  position: relative;
}
.card-blue img {
  position: absolute;
  right: 0;
  top: 10px;
}
.card-blue h3 {
  font-size: 40px;
  margin-bottom: 26px;
  line-height: 48px;
}
.card-blue p {
  font-size: 20px;
  margin: 0;
  line-height: 28px;
  font-weight: 500;
}

/* =====================================================
   Vendor section
===================================================== */
section.vendor-section {
  background: var(--color-navy);
  color: var(--color-white);
  padding:60px 0 60px 60px;
}

.vendor-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 48px;
  align-items: center;
}

.vendor-copy h2 {
  color: var(--color-white);
  font-size: 40px;
  line-height: 48px;
  font-family: var(--font-heading);
  font-weight: 900;
  margin-bottom: 26px;
}
.vendor-copy p {
  color: var(--color-white);
  font-size: 20px;
  line-height: 28px;
  font-family: var(--font-body);
  max-width: 374px;
  font-weight: 500;
}

.vendor-row {
  align-items: center;
  gap: 10px;
  padding: 44px 0 0 0;
  font-size: 16px;
  color: var(--color-white);
  font-family: var(--font-heading);
  display: flex;
}
.vendor-table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  position: relative;
}
.vendor-table::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0),
    rgba(14, 37, 58, 0.5)
  );
  top: 0;
  pointer-events: none;
}
.vendor-table tr {
  width: 100%;
}
.vendor-table th,
.vendor-table td {
  width: 20%; /* 5 columns = 20% each */
}
.vendor-row.vendor-head {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  color: var(--color-white);
  text-transform: none;
  padding: 17px 0 39px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.4);
}
.vendor-head th {
  text-align: start;
}
.vendor-row-muted {
  color: rgba(255, 255, 255, 0.55);
  border-bottom: none;
}

.progress-cell {
  display: flex;
  align-items: center;
  gap: 10px;
}
.progress-bar {
  width: 87px;
  height: 11px;
  background: #d6efe6;
  border-radius: 999px;
  overflow: hidden;
  display: inline-block;
}
.progress-bar i {
  display: block;
  height: 100%;
  background: var(--color-green);
  border-radius: 999px;
}

/* =====================================================
   Comparison section
===================================================== */
.comparison-section {
  padding: var(--section-padding) 40px 0;
  background: var(--color-blue-tint);
  border-radius: var(--radius);
}

.comparison-heading {
  text-align: center;
  margin-bottom: 50px;
}

.comparison-heading h2 {
  font: 800 48px var(--font-heading);
  color: var(--color-navy);
  margin: 0;
  line-height: 48px;
}

.comparison-heading p {
  margin-top: 10px;
  font: 500 30px var(--font-heading);
  color: var(--color-navy);
}

.comparison-table {
  display: grid;
  grid-template-columns: 340px 1fr 1fr;
  align-items: stretch;
}

.comparison-features {
  display: flex;
  flex-direction: column;
}

.feature-row,
.column-row,
.column-header {
  border-bottom: 1px solid rgba(14, 37, 58, 0.12);
  min-height: 105px;
}
.column-header img {
  width: 240px;
}

.feature-row:last-child,
.column-row:last-child {
  border-bottom: none;
}

.empty,
.column-header {
  height: 170px;
}

.feature-row {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 10px;
}

.feature-icon {
  width: 52px;
  height: 52px;
  display: flex;
  background: var(--color-navy);
  border-radius: 12px;
  flex: none;
  align-items: center;
  justify-content: center;
}
.feature-icon img {
  width: 25px;
}

.feature-row h4 {
  margin: 0;
  color: var(--color-navy);
  font: 800 20px var(--font-heading);
  line-height: 28px;
}

.study-column {
  background: #fbebcb;
  border-radius: 22px 22px 0 0;
  overflow: hidden;
}

.column-header {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 35px;
}

.traditional-column .column-header {
  justify-content: flex-start;
  padding: 0 0 0 20px;
  background: none;
  font: 500 30px var(--font-body);
  color: var(--color-slate);
}

.column-row {
  padding: 20px 20px;
  font: 500 20px var(--font-body);
  color: var(--color-navy);
  line-height: 28px;
}

.traditional-column .column-row {
  color: var(--color-slate);
}

.comparison-tabs {
  display: none;
}

@media (max-width: 991px) {
  .comparison-section {
    padding: 30px 18px;
  }

  .comparison-heading h2 {
    font-size: 30px;
  }

  .comparison-heading p {
    font-size: 18px;
  }

  .comparison-tabs {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    gap: 8px;
  }

  .tab-btn {
    border: none;
    background: #fff;
    padding: 10px 18px;
    border-radius: 50px;
    cursor: pointer;
    font: 700 14px var(--font-heading);
  }

  .tab-btn.active {
    background: #fbebcb;
  }

  .comparison-table {
    grid-template-columns: 50% 1fr;
  }

  .traditional-column,
  .study-column {
    display: none;
  }

  .study-column.active-mobile,
  .traditional-column.active-mobile {
    display: block;
  }

  .feature-row {
    padding: 18px 10px;
    gap: 12px;
  }

  .feature-icon {
    width: 38px;
    height: 38px;
  }
  .feature-icon img {
    width: 18px;
  }

  .feature-row h4 {
    font-size: 14px;
  }

  .empty,
  .column-header {
    height: 110px;
  }

  .column-row {
    padding: 18px;
    font-size: 14px;
  }
  .traditional-column {
    background: #f2f5f8;
    border-radius: 22px 22px 0 0;
    overflow: hidden;
  }
  button.tab-btn img {
    width: 100px;
  }
  .tab-btn.active[data-tab="traditional"] {
    background-color: #f2f5f8;
  }
  .comparison-section .container {
    padding: 0px;
  }
}

/* ===========================
   MOBILE
=========================== */

@media (max-width: 768px) {
  .comparison-section {
    padding: 30px 12px 0;
  }

  .comparison-heading {
    margin-bottom: 22px;
  }

  .comparison-heading h2 {
    font-size: 25px;
    line-height: 35px;
  }

  .comparison-heading p {
    font-size: 20px;
    line-height: 28px;
    margin-top: 8px;
  }
  .column-header,
  .feature-row.empty {
    display: none !important;
  }
  .feature-row,
  .column-row,
  .column-header {
    border-bottom: 1px solid rgba(14, 37, 58, 0.12);
    min-height: 180px !important;
  }
  /*-------------------
TABLE
-------------------*/

  .comparison-table {
    display: grid;
    grid-template-columns: 50% 50%;
    align-items: stretch;
    gap: 0;
  }

  /* hide desktop right column */

  .study-column,
  .traditional-column {
    display: none;
  }

  .study-column.active-mobile,
  .traditional-column.active-mobile {
    display: flex;
    flex-direction: column;
  }

  /*-------------------
LEFT COLUMN
-------------------*/

  .comparison-features {
    width: 100%;
  }

  .empty {
    height: 58px;
  }

  .feature-row {
    padding: 12px 30px 12px 0;
    gap: 10px;
    align-items: self-start;
    flex-direction: column;
    justify-content: center;
  }
  .feature-icon {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    flex: 0 0 34px;
  }
  .feature-icon img {
    width: 18px;
  }

  .feature-row h4 {
    font-size: 16px;
    line-height: 22px;
    font-weight: 700;
    font-family: var(--font-body);
  }

  .study-column {
    border-radius: 12px 12px 0 0;
    overflow: hidden;
  }

  .column-header {
    height: 58px;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .column-header img {
    max-width: 88px;
  }

  .traditional-column .column-header {
    justify-content: center;
    padding: 0;
    font-size: 13px;
    font-weight: 800;
    text-align: center;
    color: var(--color-slate);
  }
  .traditional-column {
    border-radius: 12px 12px 0 0;
  }
  .column-row {
    padding: 12px;
    display: flex;
    align-items: center;
    font-size: 16px;
    line-height: 22px;
    font-weight: 700;
    font-family: "IBM Plex Sans";
  }

  .traditional-column .column-row {
    color: var(--color-slate);
  }

  .comparison-tabs {
    width: fit-content;
    padding: 2px;
    background: var(--color-white);
    margin: 0 auto 20px;
    border-radius: 50px;
  }

  .tab-btn {
    border: none;
    background: var(--color-white);
    border-radius: 50px;
    padding: 7px 16px;
    font-size: 15px;
    font-weight: 700;
    color: var(--color-slate);
    cursor: pointer;
    transition: 0.3s;
    line-height: 28px;
  }

  /* align tabs with right column */
}

/* =====================================================
   Accountability banner
===================================================== */
.accountability-section {
  background: var(--color-green);
  color: var(--color-white);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 28px;
}

.accountability-section h2 {
  color: var(--color-white);
  font-size: 40px;
  line-height: 48px;
  margin: 0;
  flex: 1;
  min-width: 260px;
}

.pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  flex: 1.4;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #d6efe6;
  color: var(--color-white);
  font-family: var(--font-body);
  color: var(--color-green);
  font-weight: 700;
  font-size: 20px;
  line-height: 28px;
  padding: 7px 10px;
  border-radius: 999px;
  font-weight: 700;
}

.check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--color-white);
  color: var(--color-green);
  font-size: 11px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-style: normal;
}

/* =====================================================
   Trust + logos
===================================================== */
.trust-grid {
  display: flex;
  flex-direction: row;
  gap: 40px;
  padding: 0;
  background: transparent;
}

.trusted-card {
  padding: 60px 0px;
  max-width: 767px;
  background-color: var(--color-blue-tint);
}
.trusted-card h2 {
  font-size: 40px;
  line-height: 48px;
  margin-bottom: 28px;
  padding-inline: 60px;
}

.logo-marquee {
  width: 100%;
  overflow: hidden;
  margin-top: 29px;
}

.logo-grid {
  overflow: hidden;
  width: 100%;
}

.logo-track {
  display: inline-flex;
  align-items: center;
  gap: 29px;
  white-space: nowrap;
  animation: marquee 50s linear infinite;
}
.logo-marquee-2:hover .logo-track,
.logo-marquee:hover .logo-track {
  animation-play-state: paused;
}
.logo-item {
  flex: 0 0 auto;
  width: 280px; /* fixed width instead of fit-content */
}
.logo-marquee-2 .logo-track {
  animation: marqueeReverse 50s linear infinite;
}
@keyframes marquee {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}
@keyframes marqueeReverse {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.logo-item {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 10px;
  background: var(--color-white);
  border-radius: 20px;
  width: fit-content;
}
.logo-item p {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 20px;
  line-height: 28px;
  color: var(--color-navy);
  margin: 0;
}
.logo-item p:last-child {
  font-weight: 400;
}

.logo-badge {
  width: 88px;
}

.trust-card {
  padding: 60px;
  position: relative;
  width: 100%;
  background-color: var(--color-slate);
}
.trust-card h2 {
  color: var(--color-white);
  font-size: 40px;
  line-height: 48px;
}
.trust-card p {
  color: var(--color-white);
  font-size: 20px;
  line-height: 28px;
  font-weight: 500;
  max-width: 374px;
}
.trust-card img {
  position: absolute;
  right: 0;
  top: 0;
}

/* =====================================================
   Footer
===================================================== */
.footer-section {
  background: var(--color-navy);
  color: var(--color-white);
  border-radius: var(--radius);
  padding: var(--section-padding);
  margin: 0 0 20px 0;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 28px;
}

.footer-logo {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 16px;
  line-height: 30px;
  margin: 0 0 30px;
}

.footer-links a {
  font-size: 16px;
  line-height: 30px;
  color: var(--color-slate);
}

footer p {
  font-size: 20px;
  color: var(--color-slate);
  margin-top: 6px;
  line-height: 28px;
}
.footer-left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
}
.footer-right {
  text-align: right;
}
.footer-right h2 {
  color: var(--color-white);
  font-size: 40px;
  margin-bottom: 50px;
  line-height: 48px;
  max-width: 450px;
}

/* =====================================================
   Responsive
===================================================== */
@media (max-width: 1100px) {
  .hero-grid,
  .vendor-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }
  .triple-grid {
    grid-template-columns: 1fr;
  }
  .compare-row {
    grid-template-columns: 1fr;
  }
  .compare-cell {
    border-bottom: none;
    padding: 10px 26px;
  }
  .compare-row {
    border-bottom: 1px solid var(--color-blue-tint);
    padding-bottom: 12px;
    margin-bottom: 4px;
  }
  .logo-grid {
    grid-template-columns: 1fr;
  }
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
  .footer-right {
    text-align: left;
  }
}

@media (max-width: 640px) {
  .hero-copy h1 {
    font-size: 32px;
  }
  .accountability-section {
    flex-direction: column;
    align-items: flex-start;
  }
  .dash-body {
    flex-direction: column;
  }
  .dash-nav {
    display: none;
  }
}

/* =====================================================
   CARD 1 — Donut
===================================================== */
.card-donut {
  background: #f2f5f8;
  padding: 50px 40px;
}

.budget-box {
  display: inline-block;
  background: var(--color-white);
  border-radius: 20px;
  padding: 36px 24px;
}

.budget-amount {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 30px;
  line-height: 28px;
  color: var(--color-navy);
  margin: 0;
}

.budget-label {
  font-size: 20px;
  line-height: 28px;
  color: var(--color-navy);
  margin: 4px 0 0;
  font-family: var(--font-heading);
}

.donut-wrap {
  position: relative;
  width: 260px;
  max-width: 100%;
  margin: 0 auto;
  margin-top: -30px;
}

.donut-svg {
  width: 100%;
  height: auto;
  display: block;
}

.donut-base {
  fill: none;
  stroke: var(--color-slate);
  stroke-width: 26;
}

.donut-spent {
  fill: none;
  stroke: var(--color-green);
  stroke-width: 26;
  stroke-linecap: round;
  /* circumference = 2 * PI * 80 = 502.65 */
  stroke-dasharray: calc(502.65 * var(--spent-percent) / 100) 502.65;
  stroke-dashoffset: 0;
  transform-origin: 100px 100px;
  transform: rotate(-90deg);
  transition: stroke-dasharray 0.4s ease;
}

.donut-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.donut-percent {
  display: block;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 40px;
  color: var(--color-navy);
  line-height: 48px;
}

.donut-sub {
  display: block;
  font-size: 20px;
  line-height: 20px;
  color: var(--color-slate);
  margin-top: 2px;
}

.donut-tag {
  position: absolute;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 16px;
  padding: 6px 14px;
  border-radius: 999px;
  white-space: nowrap;
}

.donut-tag.tag-spent {
  top: 16%;
  right: -63px;
  background: #d6efe6;
  color: var(--color-green);
  z-index: 999;
}

.donut-tag.tag-remaining {
  bottom: 8%;
  left: -12%;
  background: var(--color-blue-soft);
  color: var(--color-slate);
  background: var(--color-blue-tint);
}

.legend {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-top: 60px;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 20px;
  line-height: 28px;
  color: var(--color-navy);
  font-weight: 500;
  font-family: var(--font-heading);
}
.line-legend .legend-item {
  flex-direction: column;
  align-items: start;
  color: var(--color-white);
}

.dot {
  width: 30px;
  height: 30px;
  border-radius: 10px;
  display: inline-block;
}

.dot-spent {
  background: var(--color-green);
}
.dot-remaining {
  background: var(--color-slate);
}

/* =====================================================
   CARD 2 — Line chart
===================================================== */
.card-line {
  background: var(--color-slate);
  color: var(--color-white);
  display: flex;
  flex-direction: column;
  padding: 60px 0 0;
  position: relative;
}

.line-legend {
  display: flex;
  gap: 28px;
  margin-bottom: 18px;
  padding-inline: 40px;
}

.line-swatch {
  width: 22px;
  height: 0;
  display: inline-block;
  border-top-width: 3px;
  border-top-style: solid;
}

.swatch-actual {
  border-color: var(--color-navy);
  width: 75px;
}
.swatch-projected {
  border-color: var(--color-blue-tint);
  width: 75px;
}

.line-chart-wrap {
  position: relative;
  flex: 1;
  min-height: 200px;
}
.line-chart-wrap svg {
  margin-top: -110px;
  width: 100%;
}
.line-svg {
  width: 100%;
  height: 90%;
  display: block;
  overflow: visible;
}

.grid line {
  stroke: rgba(255, 255, 255, 0.18);
  stroke-width: 1;
}

.line-actual {
  fill: none;
  stroke: var(--color-navy);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.line-projected {
  fill: none;
  stroke: rgba(255, 255, 255, 0.75);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.line-marker {
  fill: var(--color-navy);
  stroke: var(--color-white);
  stroke-width: 2;
}

.chart-tag {
  position: absolute;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 13px;
  padding: 6px 14px;
  border-radius: 999px;
  white-space: nowrap;
}
.chart-tag.tag-remaining {
  background-color: var(--color-blue-tint);
  color: var(--color-slate);
  font-size: 16px;
  line-height: 28px;
  top: 87px;
  left: 120px;
  font-family: var(--font-heading);
}

.chart-tag.tag-spent {
  top: -14px;
  left: -30px;
  background: var(--color-navy);
  color: var(--color-white);
}

.spent-box {
  width: fit-content;
  position: absolute;
  bottom: 40px;
  right: 20px;
}

.spent-amount {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 24px;
  color: var(--color-navy);
  margin: 0;
}

.spent-label {
  font-size: 13px;
  color: var(--color-slate);
  margin: 4px 0 0;
}

/* =====================================================
   Responsive
===================================================== */
@media (max-width: 720px) {
  .cards-row {
    grid-template-columns: 1fr;
  }
  .donut-tag {
    font-size: 11.5px;
    padding: 5px 10px;
  }
}

/* =====================================================================
   =====================================================================
   RESPONSIVE — 992px BREAKPOINT (tablet)
   Scales: section padding/gap, headings, subheadings, paragraphs,
   grids, cards, tables, donut + line-chart cards.
   =====================================================================
===================================================================== */
@media (max-width: 992px) {
  :root {
    --section-gap: 28px;
    --section-padding: 44px;
  }

  .container {
    padding: 0 20px;
  }

  /* ---------- Header ---------- */
  .site-header {
    padding: 26px 0;
  }
  .btn {
    font-size: 15px;
    padding: 12px 20px;
  }

  /* ---------- Eyebrow ---------- */
  .eyebrow {
    font-size: 14px;
    line-height: 18px;
    padding: 12px;
    margin-bottom: 16px;
  }

  /* ---------- Hero ---------- */
  .section.hero-section {
    padding: 32px 0 32px 40px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .hero-copy h1 {
    font-size: 40px;
    margin-bottom: 16px;
  }
  .hero-sub {
    font-size: 17px;
    line-height: 26px;
  }

  /* ---------- Banner ---------- */
  .banner-section h2 {
    font-size: 30px;
    line-height: 38px;
    margin-bottom: 12px;
  }
  .banner-section p {
    font-size: 17px;
    line-height: 26px;
  }
  .inner-banner-section {
    max-width: 720px;
  }

  /* ---------- Triple card grid ---------- */
  .triple-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .card {
    padding: 28px 24px;
  }
  .card-blue {
    padding: 40px;
  }
  .card-blue h3 {
    font-size: 30px;
    line-height: 38px;
    margin-bottom: 18px;
  }
  .card-blue p {
    font-size: 17px;
    line-height: 26px;
  }

  /* ---------- Vendor section ---------- */
  .vendor-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .vendor-copy h2 {
    font-size: 30px;
    line-height: 38px;
    margin-bottom: 18px;
  }
  .vendor-copy p {
    font-size: 17px;
    line-height: 26px;
    max-width: 100%;
  }
  .vendor-row {
    grid-template-columns: 1fr 1fr 1fr 1.2fr 1fr;
    padding: 28px 0 0;
    font-size: 14px;
    gap: 8px;
  }
  .vendor-row.vendor-head {
    font-size: 14px;
    padding: 14px 0 20px;
  }
  .progress-bar {
    width: 64px;
    height: 9px;
  }
  .vendor-table th,
  .vendor-table td {
    min-width: 80px; /* 5 columns = 20% each */
  }
  .vendor-table {
    overflow-x: scroll;
    scrollbar-width: none;
  }
  /* ---------- Comparison table ---------- */
  .section.compare-section {
    padding: 44px 24px 0;
  }
  .compare-section h2 {
    font-size: 30px;
    line-height: 38px;
  }
  .subhead {
    font-size: 22px;
    margin-bottom: 26px;
  }
  .compare-cell {
    font-size: 16px;
    line-height: 24px;
    padding: 16px 20px;
  }
  .compare-feature {
    font-size: 16px;
    line-height: 24px;
  }
  .feat-icon {
    min-width: 40px;
    min-height: 40px;
  }
  .compare-trad h4 {
    font-size: 22px;
  }
  .compare-logo {
    width: 180px;
  }

  /* ---------- Accountability banner ---------- */
  .accountability-section {
    padding: 44px;
    gap: 22px;
  }
  .accountability-section h2 {
    font-size: 30px;
    line-height: 38px;
  }
  .pill-grid {
    gap: 14px;
  }
  .pill {
    font-size: 16px;
    line-height: 24px;
    padding: 6px 12px;
  }

  /* ---------- Trust + logos ---------- */
  .trust-grid {
    gap: 20px;
    flex-direction: column;
  }
  .trusted-card,
  .trust-card {
    width: 100%;
    padding: 40px 0;
  }
  .trusted-card h2 {
    font-size: 30px;
    line-height: 38px;
    padding-inline: 40px;
    margin-bottom: 20px;
  }
  .trust-card {
    padding: 40px;
  }
  .trust-card h2 {
    font-size: 30px;
    line-height: 38px;
  }
  .trust-card p {
    font-size: 17px;
    line-height: 26px;
    max-width: 100%;
  }
  .logo-item p {
    font-size: 17px;
    line-height: 24px;
  }
  .logo-badge {
    width: 70px;
  }

  /* ---------- Footer ---------- */
  .footer-section {
    padding: 44px;
  }
  .footer-right h2 {
    font-size: 30px;
    margin-bottom: 30px;
    line-height: 38px;
  }
  .footer-logo {
    font-size: 15px;
  }
  .footer-links a {
    font-size: 15px;
  }

  /* ---------- Card 1 — Donut ---------- */
  .card-donut {
    padding: 36px 28px;
  }
  .budget-amount {
    font-size: 24px;
  }
  .budget-label {
    font-size: 16px;
    line-height: 24px;
  }
  .donut-wrap {
    width: 220px;
    margin-top: -18px;
  }
  .donut-percent {
    font-size: 32px;
    line-height: 38px;
  }
  .donut-sub {
    font-size: 16px;
  }
  .donut-tag {
    font-size: 14px;
    padding: 5px 12px;
  }
  .legend {
    gap: 34px;
    margin-top: 40px;
  }
  .legend-item {
    font-size: 17px;
    line-height: 24px;
  }
  .dot {
    width: 22px;
    height: 22px;
  }

  /* ---------- Card 2 — Line chart ---------- */
  .card-line {
    padding: 30px 0 0;
  }
  .line-legend {
    padding-inline: 28px;
    gap: 34px;
  }
  .swatch-actual,
  .swatch-projected {
    width: 56px;
  }
  .chart-tag {
    font-size: 12px;
    padding: 5px 12px;
  }
  .chart-tag.tag-remaining {
    font-size: 14px;
    line-height: 22px;
    left: 90px;
  }
  .spent-amount {
    font-size: 20px;
  }
  .spent-label {
    font-size: 12px;
  }
}

/* =====================================================================
   =====================================================================
   RESPONSIVE — 768px BREAKPOINT (mobile)
   Scales: section padding/gap, headings, subheadings, paragraphs,
   grids, cards, tables, donut + line-chart cards.
   =====================================================================
===================================================================== */
@media (max-width: 768px) {
  :root {
    --section-gap: 20px;
    --section-padding: 32px;
    --radius: 16px;
  }
  .btn {
    border-radius: 10px;
  }
  .container {
    padding: 0 10px;
  }

  /* ---------- Header ---------- */
  .site-header {
    padding: 20px 0;
  }
  .header-inner {
    flex-wrap: wrap;
    gap: 14px;
  }
  .logo {
    width: 130px;
  }
  .btn {
    font-size: 14px;
    padding: 11px 18px;
  }

  /* ---------- Eyebrow ---------- */
  main.container {
    margin-top: 80px;
  }
  .section.hero-section .eyebrow {
    font-size: 15px;
    line-height: 20px;
    padding: 10px;
    margin-bottom: 14px;
  }

  /* ---------- Hero ---------- */
  .section.hero-section {
    padding: 30px;
  }
  .hero-grid {
    gap: 24px;
  }
  .hero-copy h1 {
    font-size: 35px;
    line-height: 45px;
    margin-bottom: 14px;
  }
  .hero-sub {
    font-size: 16px;
    line-height: 22px;
  }
  .dash-panels {
    grid-template-columns: 1fr;
  }
  .dash-nav {
    display: none;
  }
  .dash-body {
    flex-direction: column;
  }
  .section.hero-section img {
    height: 190px;
    border-radius: 12px;
    width: 100%;
    object-fit: cover;
  }

  /* ---------- Banner ---------- */
  .banner-section {
    padding: 32px 30px;
  }
  .banner-section h2 {
    font-size: 25px;
    line-height: 35px;
    margin-bottom: 10px;
  }
  .banner-section p {
    font-size: 16px;
    line-height: 22px;
  }

  /* ---------- Triple card grid ---------- */
  .triple-grid {
    gap: 20px;
  }
  .card-blue {
    padding: 30px;
  }
  .card-blue img {
    width: 222px;
  }
  .card-blue h3 {
    font-size: 25px;
    line-height: 35px;
    margin-bottom: 14px;
  }
  .card-blue p {
    font-size: 16px;
    line-height: 22px;
  }

  /* ---------- Vendor section ---------- */
  section.vendor-section {
    padding: 30px 0 30px 30px;
  }
  .vendor-grid {
    gap: 24px;
  }
  .vendor-copy {
    padding-right: 30px;
  }
  .vendor-copy h2 {
    font-size: 25px;
    line-height: 35px;
    margin-bottom: 14px;
  }
  .vendor-copy p {
    font-size: 16px;
    line-height: 22px;
    max-width: 282px;
  }
  .vendor-row {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    overflow: scroll;
    scrollbar-width: none;
    row-gap: 4px;
    padding: 20px 0 0;
    font-size: 13px;
  }
  .progress-cell {
    grid-column: span 2;
  }
  .progress-bar {
    width: 100px;
    height: 8px;
  }

  /* ---------- Accountability banner ---------- */
  .accountability-section {
    padding: 32px 30px;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  .accountability-section h2 {
    font-size: 25px;
    line-height: 35px;
  }
  .pill-grid {
    gap: 10px;
  }
  .pill {
    font-size: 13px;
    line-height: 18px;
    padding: 3px 13px 3px 5px;
  }
  .pill img {
    width: 22px;
  }

  /* ---------- Trust + logos ---------- */
  .trusted-card h2 {
    font-size: 25px;
    line-height: 35px;
    padding-inline: 15px;
    margin-bottom: 16px;
  }
  .trust-card {
    padding: 30px;
  }
  .trust-card h2 {
    font-size: 25px;
    line-height: 35px;
  }
  .trust-card p {
    font-size: 16px;
    line-height: 22px;
  }
  .trust-card img {
    width: 165px;
  }
  .logo-item {
    gap: 15px;
  }
  .logo-item p {
    font-size: 15px;
    line-height: 22px;
  }
  .logo-badge {
    width: 56px;
  }

  /* ---------- Footer ---------- */
  .footer-section {
    padding: 20px;
  }
  .footer-section .container {
    padding: 0px;
    flex-direction: column-reverse;
    gap: 50px;
  }
  .footer-right h2 {
    font-size: 25px;
    margin-bottom: 35px;
    line-height: 35px;
    text-align: center;
    max-width: 100%;
  }
  .footer-section .footer-right button.btn,
  .footer-section .footer-right a.btn {
    display: block;
    margin: auto;
  }
  .footer-logo {
    margin-bottom: 20px;
  }
  .footer-logo img {
    max-width: 217px;
    margin: 0 auto;
  }

  footer p {
    font-size: 16px;
    color: var(--color-slate);
    margin-top: 6px;
    line-height: 30px;
    text-align: center;
  }
  .footer-links a {
    font-size: 14px;
  }
  .footer-copy {
    font-size: 11px;
  }

  /* ---------- Card 1 — Donut ---------- */
  .card-donut {
    padding: 28px 20px;
  }
  .budget-box {
    padding: 24px 18px;
  }
  .budget-amount {
    font-size: 20px;
  }
  .budget-label {
    font-size: 14px;
    line-height: 20px;
  }
  .donut-wrap {
    width: 180px;
    margin-top: -12px;
  }
  .donut-percent {
    font-size: 26px;
    line-height: 32px;
  }
  .donut-sub {
    font-size: 14px;
  }
  .donut-tag {
    font-size: 12px;
    padding: 4px 10px;
  }
  .donut-tag.tag-spent {
    right: -20px;
  }
  .donut-tag.tag-remaining {
    left: -6%;
  }
  .legend {
    gap: 34px;
    margin-top: 28px;
  }
  .legend-item {
    font-size: 15px;
    line-height: 22px;
    gap: 6px;
  }
  .dot {
    width: 18px;
    height: 18px;
    border-radius: 6px;
  }

  /* ---------- Card 2 — Line chart ---------- */
  .card-line {
    padding: 40px 0 0;
  }
  .line-legend {
    padding-inline: 20px;
    gap: 34px;
    flex-wrap: wrap;
  }
  .swatch-actual,
  .swatch-projected {
    width: 40px;
  }
  .line-chart-wrap {
    min-height: 160px;
  }
  .chart-tag {
    font-size: 11px;
    padding: 4px 10px;
  }
  .chart-tag.tag-remaining {
    font-size: 12px;
    line-height: 18px;
    left: 100px;
    top: 67px;
  }
  .chart-tag.tag-spent {
    top: -10px;
    left: -16px;
  }
  .spent-box {
    bottom: 30px;
    right: 35px;
  }
  .spent-amount {
    font-size: 18px;
  }
  .spent-label {
    font-size: 11px;
  }
  .footer-left,
  .footer-right {
    width: 100%;
  }
}
@media (max-width: 450px) {
  .line-chart-wrap svg {
    margin-top: -110px;
    width: 100%;
    height: 450px;
  }
}
@media (max-width: 320px) {
  .line-chart-wrap svg {
    margin-top: -110px;
    width: 100%;
    height: 370px;
  }
}
/* Form Popup Style */

.popup-overlay {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(14, 37, 58, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: 0.35s;
  z-index: 9999;
}
.popup-overlay.active {
  opacity: 1;
  visibility: visible;
}
.popup-modal {
  position: relative;
  width: 900px;
  background: var(--color-blue-tint);
  border-radius: 20px;
  padding: 40px;
  transform: translateY(40px);
  transition: 0.35s;
}
.popup-overlay.active .popup-modal {
  transform: none;
}
.popup-close {
  position: absolute;
  top: -18px;
  right: -18px;
  width: 50px;
  height: 50px;
  border: none;
  border-radius: 50%;
  background: #4f6d88;
  color: var(--color-white);
  font-size: 42px;
  cursor: pointer;
  line-height: 1;
}
/* .form-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
} */
.form-grid input,
.form-grid textarea {
  width: 100%;
  border: none;
  outline: none;
  background: var(--color-white);
  border-radius: 50px;
  padding: 10px 20px;
  font-size: 20px;
  line-height: 28px;
  font-family: var(--font-body);
  color: var(--color-slate);
  font-weight: 500;
}
.full-width {
  grid-column: 1/-1;
}
textarea {
  min-height: 220px;
  resize: none;
  border-radius: 24px !important;
}
.submit-btn {
  margin-top: 22px;
}

@media (max-width: 992px) {
  .popup-overlay {
    padding: 20px;
  }
  .popup-modal {
    max-width: 900px;
    width: 100%;
  }
}
@media (max-width: 768px) {
  .popup-modal {
    padding: 20px 20px;
    border-radius: 18px;
  }
  .form-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .full-width {
    grid-column: auto;
  }
  textarea {
    min-height: 180px;
  }
  .popup-close {
    width: 44px;
    height: 44px;
    font-size: 30px;
    top: -14px;
    right: -14px;
  }
  .submit-btn {
    margin-top: 10px;
  }
}

/* Contact Form 7 */

.form-grid .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}

.form-grid input,
.form-grid textarea {
  width: 100%;
  border: none;
  outline: none;
  background: var(--color-white);
  border-radius: 50px;
  padding: 10px 20px;
  font-size: 20px;
  line-height: 28px;
  font-family: var(--font-body);
  color: var(--color-slate);
  font-weight: 500;
  box-sizing: border-box;
}

.full-width {
  grid-column: 1/-1;
}

.form-grid textarea {
  min-height: 100px;
  resize: none;
  border-radius: 24px;
}

.submit-btn {
  margin-top: 22px;
}

.form-grid p br {
  display: none;
}
.form-grid p {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.form-grid .full-width p {
  display: block;
}
.wpcf7-form .hidden-fields-container {
  padding: 0;
  opacity: 0;
}
@media (max-width: 992px) {
  .popup-overlay {
    padding: 20px;
  }

  .popup-modal {
    max-width: 900px;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .popup-modal {
    padding: 20px;
    border-radius: 18px;
  }

  .form-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .form-grid p {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    margin-bottom: 10px;
  }
  .full-width {
    grid-column: auto;
  }

  .form-grid textarea {
    min-height: 180px;
  }

  .popup-close {
    width: 44px;
    height: 44px;
    font-size: 30px;
    top: -14px;
    right: -14px;
  }

  .submit-btn {
    margin-top: 10px;
  }
}
