@charset "utf-8";
@import url("fonts.css");

/* =========================
   TOKENS / BASE
========================= */
:root {

  --bg: #ffffff;
  --bgAlt: #3646F5;                 /* blue block */
  --bgDark: #0C0D28;                /* dark block */
  --bgPanel: #F5F9FA;               /* light panel */
  --text: #0c0d28;
  --textMuted: #4b5563;
  --primaryBlue: #0f23ff;
  --accentGreen: #29ff65;           /* neon green */
  --accentBlue: #3b82f6;            /* blue tag */
  --border: #e5e7eb;
  --white: #fff;
  --grayLight: #D9D9D9;
  --gray: rgba(0,0,0,.5);
  --greenGradient: linear-gradient(90deg, #45ff98 0%, #3088f4 50%);

  --radiusSm: 10px;
  --radius: 16px;
  --radiusLg: 24px;
  --radiusXl: 32px;
  --radiusHero: 65px;

  --shadowSm: 0 4px 16px rgba(0, 0, 0, 0.06);
  --shadow: 0 12px 36px rgba(7, 11, 23, 0.12);
  --shadowStrong: 0 20px 60px rgba(7, 11, 23, 0.18);
  --shadowGreen: 0 28px 70px rgba(41, 251, 101, 0.40), inset 0 0 80px rgba(41, 255, 101, 0.55);

  --space1: 6px;
  --space2: 10px;
  --space3: 16px;
  --space4: 24px;
  --space5: 32px;
  --space6: 40px;
  --space7: 56px;
  --space8: 80px;

  --container: 1440px;

  --font: "Inter", ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  --leading: 1.5;
}

/*#region ========   RESET  ========================= */
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font: 400 16px / var(--leading) var(--font);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;

  max-width: 100dvw;
}
img,
svg,
video {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
}
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}
h1,
h2,
h3,
h4,
p {
  margin: 0;
}

::placeholder {
  color: var(--white);
  font-weight: 200;
  font-size: 15px;
  font-family: var(--font);
}

::-webkit-scrollbar {
  	width: 8px;
    height: 8px;
}
::-webkit-scrollbar-track {
  	background: transparent !important;
}
::-webkit-scrollbar-thumb {
	background-color: var(--accentGreen);
	border-radius: 3px;
	border: 2px solid var(--accentGreen);
}
/* ::-webkit-scrollbar-thumb:hover {
	background-color: #D9D9D9;
} */
::-webkit-scrollbar-corner {
	background-color: transparent;
}
::-webkit-scrollbar-button {
	display: none;
}


/* helpers */
.visuallyHidden,
.srOnly {
  position: absolute !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}
.center {
  text-align: center;
}
/*#endregion ---------------------------------------------- */




/*#region =============   LAYOUT   ========================= */
.mainContainer {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 3.6vw, 52px);
}

.sectionTitle {
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.1px;
  font-size: clamp(32px, 3.3vw, 47px);
}

.sectionSubtitle {
  color: var(--text);
  margin-top: 16px;
  font-weight: 300;
  font-size: clamp(13px, 2.27vw, 16px);
}

.eyebrow {
  display: block;
  font-size: 13px;
  letter-spacing: 0.32px;
  text-transform: uppercase;
  color: var(--primaryBlue);
  margin-bottom: 10px;
}

.highlight {
  color: #0c0f1a;
}
/*#endregion ---------------------------------------------- */




/*#region ===========   BUTTONS & INPUTS   ========================= */
.primaryButton,
.secondaryButton,
.accentButton,
.accentDarkButton,
.lightButton,
.formButton {
  font-family: var(--font);
  display: inline-flex;
  position: relative;
  z-index: 0;
  align-items: center;
  justify-content: center;
  color: var(--text);
  height: 48px;
  padding: 0 22px;
  overflow: hidden;
  gap: 10px;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: all 0.3s ease;
  user-select: none;
}
.blueText {
  color: #212db6;
}
.primaryButton {
  /* background: linear-gradient(135deg, #1b4bff, #6a7bff); */
  background: var(--primaryBlue);
  color: var(--white);
  box-shadow: var(--shadow);
  transition: all 0.5s;
}
.primaryButton:hover {
  background: var(--accentGreen);
  color: var(--text);
}

.secondaryButton {
  border-color: var(--border);
  color: #0b0f1a;
  transition: all 0.5s;
}
.secondaryButton:hover {
  background: var(--primaryBlue);
  color: var(--white);
}

.accentButton {
  font-size: clamp(16px, 1.53vw, 22px);
  height: 64px;
  padding: 0 50px;
  box-shadow: 0 12px 30px rgba(30, 234, 100, 0.35);
  border: 0 none;
}
.lightButton,
.accentDarkButton {
  font-size: clamp(16px, 1.53vw, 22px);
  height: 64px;
  padding: 0 50px;
  box-shadow: var(--shadow);
  border: 0 none;
}
.accentDarkButton {
  color: var(--white);
}
.formButton {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 15px;
  padding: 28px 35px;
  height: 100%;
}
.accentButton:hover,
.lightButton:hover,
.formButton:hover {
  color: var(--white);
}
.accentDarkButton:hover {
  color: var(--text);
}
.accentButton:before,
.accentButton:after,
.formButton:before,
.formButton:after,
.lightButton:before,
.lightButton:after,
.accentDarkButton:before,
.accentDarkButton:after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  background: var(--primaryBlue); /* onhover background color */
  z-index: -1;
  transition: all .3s;
}
.accentButton:before,
.formButton:before,
.lightButton:before,
.accentDarkButton:before {
  background: var(--accentGreen); /* button default background color */
  z-index: -2;
  transform: translate3D(0,0,0);
  border-radius: 999px;
}
.lightButton:before {
  background: var(--white);
}
.accentDarkButton:before {
  background: var(--primaryBlue);
}
.accentButton:after,
.formButton:after,
.lightButton:after,
.accentDarkButton:after {
  top: 50%;
  left: 50%;
  width: 100%;
  height: 0%;
  transform: translate(-50%,-50%) rotate(-45deg);
}
.accentDarkButton:after {
  background: var(--accentGreen);
}
.accentButton:hover:after,
.formButton:hover:after,
.lightButton:hover:after,
.accentDarkButton:hover:after {
  height: 380%;
}







.smallButton {
  height: 40px;
  padding: 0 16px;
}

.inputField {
  height: 58px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--text);
  font-size: 15px;
  font-family: var(--font);
  width: 100%;
  /* max-width: 480px; */
}
.inputField:focus {
  outline: 2px solid #a8b4ff;
  outline-offset: 2px;
}

.indicators {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  /* display: flex; */
  gap: 10px;
  z-index: 10;
  display: none;
}
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #D9D9D9;
  transition: all 0.3s ease;
}
.dot.active {
  background: var(--bgAlt);
  transform: scale(1.3);
}
/*#endregion ---------------------------------------------- */




/*#region ============   HEADER   ========================= */
.siteHeader {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(244, 248, 249, 0.5);
  backdrop-filter: saturate(180%) blur(6px);
}
.headerRow {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo,
.logoFooter {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 20px;
}
.logoMark {
  width: 172px;
  height: 37px;
  background-image: url("../img/Logo_ver1.png");
  background-repeat: no-repeat;
  display: inline-block;
}
.siteHeader .logo:hover .logoMark {
  transform: scale(1.06);
}
.navMenu {
  display: flex;
  gap: 26px;
}
.navMenuItem {
  color: #293041;
  font-weight: 500;
  transition: all 0.3s ease;
}
.navMenuItem:hover,
.activeNavItem {
  color: var(--primaryBlue);
}
.headerCta {
  display: flex;
  gap: 10px;
}
/*#endregion ---------------------------------------------- */




/*#region ======   Mobile nav wrapper  ===================== */
.mobileNavWrapper {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100vw;
  height: 100vh;
  background: var(--bgAlt);
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: clamp(20px, 5vw, 40px) 20px;
  transition: left 0.3s ease;
  z-index: 100;
}
.mobileNavHeader {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}
.closeNav {
  background: none;
  border: 1px solid var(--white);
  border-radius: 50%;
  cursor: pointer;
  padding: 5px;
}
.mobileNavList {
  list-style: none;
  padding: 0;
  margin: 40px 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.mobileNavItem {
  font-size: 32px;
  font-weight: 500;
  color: var(--white);
  transition: all 0.3s ease;
}
.mobileNavItem:hover {
  opacity: 0.8;
}
.mobileNavDevider {
  display: flex;
  width: 100%;
  border-top: 1px solid rgba(255,255,255,.5);
}
.mobileNavCta {
  display: flex;
  gap: 16px;
  width: 100%;
  justify-content: center;
  align-items: center;
  border-top: 1px solid rgba(255,255,255,.5);
  min-height: 20dvh;
  padding-top: clamp(20px, 5vw, 40px);
}
.mobileNavCta .primaryButton {
  background: var(--accentGreen);
  color: #0b0f1a;
  font-size: 15px;
}
.mobileNavCta .secondaryButton {
  color: var(--white);
  font-size: 15px;
  font-weight: 500;
}
.backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 99;
  display: none;
}

/* Mobile menu toggle */
.mobileMenuToggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburgerIcon,
.closeIcon {
  width: 24px;
  height: 24px;
  fill: var(--primaryBlue);
}
.closeIcon {
  fill: var(--white);
}
/*#endregion ---------------------------------------------- */




/*#region ==========   HERO SECTION   ========================= */
.heroSection {
  padding-top: 60px;
  padding-bottom: 56px;
  background: #f4f8f9 50% 50% no-repeat url("../img/background_hero_new.png");
  background-size: contain;
  /* min-height: 100vh; */
  display: flex;
  align-items: center;
}
.heroRow {
  display: flex;
  gap: clamp(24px, 2.8vw, 40px);
  align-items: center;
  width: 100%;
}
.heroContent {
  flex: 1 1 55%;
  max-width: 700px;
}
.heroTitle {
  font-size: clamp(40px, 3.3vw, 47px);
  line-height: 1.04;
  letter-spacing: -1%;
  font-weight: 600;
  color: #0c0d28;
  margin-bottom: var(--space2);
}
.heroTitle strong {
  color: var(--primaryBlue);
  font-weight: 600;
}
.heroSubtitle {
  margin-top: 20px;
  font-size: 15px;
  line-height: 1.5;
  font-weight: 400;
  color: #272730;
  max-width: 640px;
}
.heroActions {
  margin-top: 26px;
}

.heroMedia {
  flex: 1 1 45%;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: flex-end;
  z-index: 0;
  width: 100%;
  height: clamp(400px, 38.5vw, 555px);
}
.noteGreen {
  position: absolute;
  right: 0;
  top: 0;
  background: var(--accentGreen);
  color: #0c0d28;
  font-size: clamp(17px, 2.36vw, 34px);
  font-weight: 900;
  line-height: 1.1;
  padding: clamp(48px, 4.5vw, 64px) clamp(40px, 3.8vw, 54px);
  border-radius: clamp(20px, 5.48vw, 65px) var(--radiusSm) clamp(20px, 5.48vw, 65px) clamp(20px, 5.48vw, 65px);
  box-shadow: var(--shadowGreen);
  z-index: 4;
}

.mediaThumb {
  position: absolute;
  border-radius: var(--radiusHero);
  overflow: hidden;
  box-shadow: var(--shadowStrong);
  object-fit: cover;
}

.videoThumb {
  width: clamp(138px, 18.4vw, 265px);
  height: clamp(181px, 25vw, 350px);
  top: 0;
  left: 15px;
  border-radius: clamp(20px, 5.48vw, 65px) clamp(20px, 5.48vw, 65px) 0 clamp(20px, 5.48vw, 65px);
}

.pickThumb {
  width: clamp(140px, 21.3vw, 306px);
  height: clamp(140px, 21.3vw, 304px);
  bottom: 0;
  right: 0;
  border-radius: 0 clamp(20px, 5.48vw, 65px) clamp(20px, 5.48vw, 65px) clamp(20px, 5.48vw, 65px);
}

.badge {
  position: absolute;
  bottom: 0;
  left: 15px;
  background: var(--primaryBlue);
  color: var(--white);
  border-radius: clamp(20px, 5.48vw, 65px) var(--radiusSm) clamp(20px, 5.48vw, 65px) clamp(20px, 5.48vw, 65px);
  padding: clamp(26px, 2.74vw, 40px) clamp(46px, 4.15vw, 61px);
  box-shadow: var(--shadow);
  text-align: left;
  z-index: 3;
}
.badgeTitle {
  font-size: clamp(13px, 1.65vw, 24px);
  opacity: 0.92;
  font-weight: 800;
}
.badgeValue {
  font-size: clamp(40px, 5.15vw, 75px);
  line-height: 1;
  margin-top: 6px;
}
/*#endregion ---------------------------------------------- */




/*#region =========   FEATURE RIBBON   ========================= */
.featureRibbon {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--white);
  box-shadow: 0 0 5px #dfdfe5;
  overflow: hidden;
}
.featureRibbonListWrapper {
  width: 100%;
  overflow: hidden;
}
.featureRibbonList {
  display: flex;
  justify-content: space-between;
  gap: 0;
  padding: 0;
  text-transform: uppercase;
  font-size: 14px;
  color: #60606e;
  letter-spacing: 0.14px;
}
.featureRibbonItem {
  padding: 24px 30px;
  border-right: 1px solid #dfdfe5;
  text-align: center;
}
.featureRibbonItem:nth-child(5):not(.copyForScroll) {
  border-right: 0 none;
}
.copyForScroll {
  display: none;
}
/*#endregion ---------------------------------------------- */




/*#region ========   HOW IT WORKS SECTION    ====================== */
.howItWorksSection {
  padding: 64px 0;
  background: var(--bgAlt) url("../img/how_pattern.png") no-repeat 94% 0;
  border-radius: 0 0 60px 60px;
  color: #0c0d28;
  position: relative;
  overflow: hidden;
  min-height: 952px;
}
.cardPanel {
  background: var(--white);
  border-radius: 60px;
  padding: 60px 90px;
  box-shadow: var(--shadow);
  position: relative;
}
.howItWorksHeader {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}
.howItWorksTitleWrap {
  max-width: 440px;
}
.howItWorksAside {
  max-width: 380px;
  color: #4b5563;
  font-weight: 400;
  font-size: 16px;
}
.howItWorksAside strong {
  color: #0c0d28;
  font-weight: 600;
}
.howItWorksSteps {
  display: flex;
  gap: 30px;
  margin-top: 20px;
}
.stepCard {
  flex: 1 1 0;
  background: var(--white);
  padding: 22px 0;
  min-width: 150px;
  scroll-snap-align: start;
}
.stepIcon {
  width: 100px;
  height: 100px;
  margin-bottom: 14px;
}
.stepTitle {
  font-size: 21px;
  font-weight: 600;
}
.stepText {
  color: var(--textMuted);
  margin-top: 8px;
  font-size: 16px;
  font-weight: 300;
}

/* Inline CTA */
.inlineCta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin: 22px auto 0;
  justify-content: center;
}
.inlineCtaHeader {
  width: 100%;
  text-align: center;
  color: var(--white);
  font-size: 21px;
  margin-top: 8px;
  font-weight: 400;
}
.inlineCtaNote {
  width: 100%;
  text-align: center;
  color: var(--white);
  font-size: 13px;
  margin-top: 8px;
  font-weight: 200;
}

.emailWrapper {
  position: relative;
  width: 390px;
}
.howItWorksSection .inputField {
  background: transparent;
  padding: 0 95px 0 22px;
}
/*#endregion ---------------------------------------------- */




/*#region =======   WHY CHOOSE SECTION   ========================= */
.whyChooseSection {
  padding: 80px 0 100px;
}
.whyChooseSection .eyebrow,
.whyChooseSection .sectionTitle {
  text-align: center;
}
.whyChooseSection .sectionTitle {
  margin-bottom: 26px;
  font-size: clamp(25px, 4.0vw, 38px);
}
.whyChooseSection .sectionTitle strong {
  font-weight: 700;
}
.whyChooseGrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  grid-auto-rows: minmax(145px, auto);
  padding-inline: 40px;
}
.metricCard,
.panelCard {
  background: #f5f9fa;
  border-radius: 20px;
  padding: 60px;
  box-shadow: var(--shadowSm);
}
.metricTitle {
  font-weight: 600;
  font-size: 23px;
  margin-bottom: 6px;
}
.metricValue {
  font-size: 85px;
  color: var(--accentGreen);
  font-weight: 900;
  line-height: 1;
  background: var(--greenGradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.metricValueZero {
  background: #45FF98;
  background-clip: text;
}
.metricDesc {
  font-size: 16px;
  margin-top: 6px;
}

.panelCard svg {
  display: inline-block;
  margin-right: 10px;
}
.panelTitle {
  font-size: 23px;
  font-weight: 600;
}
.panelDesc {
  font-size: 15px;
}
.panelMap {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 24px;
  box-shadow: var(--shadow);
}
.panelMap .panelTitle {
  font-size: clamp(43px, 4.45vw, 65px);
  font-weight: 600;
  line-height: 60px;
  margin-bottom: 30px;
}
.panelMap .panelDesc {
  font-size: 26px;
  font-weight: 300;
}
.panelMapImage {
  flex: 1 1 auto;
  max-width: 470px;
}
.panelBlue,
.panelDark {
  color: var(--white);
  padding: 30px;
  box-shadow: var(--shadowSm);
}
.panelBlue {
  background: #2b40ff;
}
.panelDark {
  background: #0f1730;
}
.panelIcon {
  width: 18px;
  height: 22px;
}
/*#endregion ---------------------------------------------- */




/*#region =========   SERVE SECTION  ============================= */
.serveSection {
  padding: 80px 0 30px;
  background: var(--bgPanel);
  border-top: 1px solid #E2E2E2;
}
.serveGridWrapper {
  position: relative;
  padding-bottom: 50px;
}
.serveGrid {
  display: flex;
  gap: 24px;
  margin-top: 40px;
}
.tileCard {
  flex: 1;
  padding: 80px 60px;
  border-radius: 20px;
  transition: all 0.3s ease;
}
.tileCard:hover {
  transform: translateY(-4px);
}
.tileGreen {
  background: var(--accentGreen);
  border-radius: 20px 120px 20px 20px;
}
.tileDark {
  background: var(--bgDark);
  color: var(--white);
}
.tileLight {
  background: var(--bg);
  border: 1px solid var(--grayLight);
}
.tileTitle {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 8px;
}
.tileDesc {
  color: var(--textMuted);
  font-size: 16px;
}
.tileIcon {
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  fill: var(--accentGreen);
}
/*#endregion ---------------------------------------------- */




/*#region =========    INTEGRATION SECTION   ==================*/
.integrationSection {
  padding: 20px 0 240px;
  background: var(--bgPanel);
}
.integrationLogos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.integrationRow {
  display: block;
}
.integrationMobile {
  display: none;
}
/*#endregion ---------------------------------------------- */




/*#region ======   Strip section   ================================*/
.stripSection {
  padding: 0 0 180px;
  background: var(--bgAlt) url("../img/how_pattern.png") no-repeat 94% 100%;
  border-radius: 60px 60px 0 0;
  margin-top: -60px;
}
.stripCard {
  background: transparent;
  padding: 40px;
  position: relative;
  display: flex;
  gap: clamp(5px, 6.83vw, 100px);
  align-items: center;
}
/* .stripText {
  flex: 1;
} */
.stripText .eyebrow,
.stripText .sectionTitle,
.stripText .sectionSubtitle {
  color: var(--white);
}
.stripText .eyebrow {
  font-weight: 300;
}
.stripText .sectionTitle {
  font-size: clamp(25px, 2.65vw, 37px);
}
.stripText .sectionSubtitle {
  font-size: 22px;
  padding: 30px 0 60px;
}
.stripPhoto {
  flex: 1;
  border-radius: 65px 65px 65px 20px;
  overflow: hidden;
  margin-top: -120px;
  min-width: 380px;
  max-width: 520px;
}
.noteRaised {
  position: absolute;
  top: 75%;
  left: 70%;
  right: unset;
  background: var(--accentGreen);
  font-size: clamp(21px, 4.0vw, 38px);
  padding: clamp(40px, 3.8vw, 54px) clamp(48px, 4.5vw, 64px);
  color: #0c0d28;
  font-weight: 400;
  box-shadow: var(--shadowGreen);
}
/*#endregion ---------------------------------------------- */




/*#region ========   Features section    ===============================*/
.featuresSection {
  padding: 80px 0;
  background: var(--bgDark);
  color: var(--white);
  border-radius: 60px 60px 0 0;
  margin-top: -60px;
}
.featuresTitle {
  font-size: 100px;
  color: var(--accentGreen);
  font-weight: 900;
  line-height: 1;
  background: var(--greenGradient);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.compare {
  display: flex;
  gap: 0;
  /* margin-top: -28px; */
  margin: -28px auto 0;
  background: url("../img/featuresBg.png") no-repeat 100% 100%;
  background-size: cover;
  border-radius: 20px;
  overflow: hidden;
  max-width: 950px;
}
.compareCol {
  flex: 1;
  padding: 40px;
}
.compareUntreepl {
  background: rgba(41, 255, 212, .1);
  backdrop-filter: saturate(180%) blur(6px);
  border-radius: 20px 0 0 20px;
}
.compareOther {
  background: rgba(255, 255, 255, .1);
  backdrop-filter: saturate(180%) blur(6px);
  border-radius: 0 20px 20px 0;
}
.compareTitle {
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 20px;
  text-align: left;
  color: rgba(255, 255, 255, .7);
}
.featuresSubTitle {
  color: #8E8F9E;
  font-size: 13px;
  padding-top: 25px;
}
.compareUntreepl .compareTitle,
.featuresSubTitle .accented {
  color: var(--accentGreen);
}
.checkList li,
.crossList li {
  position: relative;
  padding: 14px 0 14px 32px;
  margin: 0;
  font-size: 15px;
  color: rgba(255, 255, 255, .7);
}
.checkList li:after,
.crossList li:after {
  content: '';
  position: absolute;
  left: 32px;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, .2);
  height: 1px;
}
.checkList li:last-of-type:after,
.crossList li:last-of-type:after {
  display: none;
}
.checkList li::before {
  content: url("../img/check.svg");
  position: absolute;
  left: 0;
  top: 13px;
  width: 23px;
  height: 23px;
}
.crossList li::before {
  content: url("../img/cross.svg");
  position: absolute;
  left: 0;
  top: 13px;
  width: 22px;
  height: 22px;
}
/*#endregion ---------------------------------------------- */




/*#region ========   FAQ section   ======================================= */
.faqSection {
  padding: 80px 0;
}
.faqSectionGrid {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 100px;
}
.faqTitle .sectionTitle {
  font-size: clamp(25px, 2.65vw, 37px);
}
.accordion {
  display: flex;
  flex-direction: column;
  gap: 10px;;
}
.accordionItem {
  border: 1px solid var(--border);
  border-radius: 20px;
  transition: all 0.3s ease;
}
.accordionButton {
  width: 100%;
  padding: 20px;
  background: none;
  border: none;
  border-radius: 20px;
  text-align: left;
  font-size: 19px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}
.accordionButton:hover {
  background-color: var(--bgAlt);
  color: var(--white);
}
.accordionIcon {
  font-size: 24px;
  transition: transform 0.3s ease;
}
.accordionItem[open] {
  background: rgba(54, 70, 245, 0.08);
}
.accordionItem[open] .accordionButton {
  border-radius: 20px 20px 0 0;
}
.accordionItem[open] .accordionIcon {
  transform: rotate(45deg);
}
.accordionPanel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 20px;
}
.accordionItem[open] .accordionPanel {
  max-height: 200px; /* Adjust based on content */
  padding: 20px;
}
.accordionPanel p {
  margin: 0;
  color: var(--textMuted);
  font-size: 17px;
  line-height: 1.5;
}
/*#endregion ---------------------------------------------- */



/*#region =======    New: CTA Green section   ======================= */
.ctaGreenSection {
  padding: 80px 0;
  margin: 30px 0 0;
}
.ctaGreenCard {
  background: var(--accentGreen);
  border-radius: 32px;
  padding: 100px 90px 80px;
  position: relative;
  display: flex;
  gap: 40px;
  align-items: center;
  box-shadow: var(--shadowStrong);
}
.ctaGreenText {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1;
  gap: 24px;
}
.ctaTextRow {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
}
.ctaGreenText .sectionTitle {
  font-weight: 600;
   max-width: 46%;
}
.ctaGreenText .sectionSubtitle {
  max-width: 30%;
}
.ctaGreenGoods {
  position: absolute;
  top: -100px;
  right: 50px;
  display: flex;
  gap: 10px;
  background-image: url('../img/ctaGreenCardShadow.png');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: -10px 100px;
}
.ctaGreenGoods img {
  width: 471px;
  height: 344px;
  object-fit: cover;
}
/*#endregion ---------------------------------------------- */



/*#region ============    New: Footer   ============================ */
.siteFooter {
  background: var(--grayLight);
  padding: 120px 0 20px;
  border-radius: 60px 60px 0 0;
}
.logoFooter {
  margin-bottom: 40px;
}
.logoFooter .logoMark {
  width:147px;
  height:168px;
  background-image: url("../img/Logo_footer.png");
}
.footerGrid {
  display: grid;
  grid-template-columns: 2fr 2fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footerLinkGrid {
   display: grid;
   grid-template-columns: minmax(200px, 1fr) minmax(200px, 1fr);
   gap: 40px;
}
.footerBrand {
  text-align: center;
  margin-bottom: 40px;
  text-align: left;
}
.footerCopy {
  color: var(--text);
  font-size: 14px;
  margin-top: 16px;
  max-width: 280px;
}
.footerTitle {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 16px;
  color: rgba(0, 0, 0, 0.3);
}
.footerList {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.footerList a {
  color: var(--text);
  font-size: 14px;
  transition: all 0.3s ease;
}
.footerList a:hover {
  color: #1b4bff;
}
.socialList {
  display: flex;
  gap: 16px;
  justify-content: left;
  margin-top: 16px;
}
.socialIcon {
  width: 22px;
  height: 22px;
  fill: var(--text);
  opacity: 0.4;
  transition: all 0.3s ease;
}
.socialIcon:hover {
  fill: var(--primaryBlue);
}
.footerLegal {
  text-align: center;
  border-top: 1px solid #C7CFCF;
  padding-top: 20px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.footerLegal p {
  color: var(--gray);
  font-size: 13px;
  line-height: 24px;
}
.footerLinks {
  display: flex;
  justify-content: center;
  gap: 24px;
}
.footerLinks a {
  color: var(--gray);
  font-size: 13px;
  transition: all 0.3s ease;
}
.footerLinks a:hover {
  color: var(--primaryBlue);
}
/*#endregion ---------------------------------------------- */



/*#region Responsive (additions for mobile stack, carousel snap, etc.) */
@media screen and (max-width: 619px) {

  .mainContainer {
    padding-inline: 20px;
  }


  .heroSection {
    background-size: cover;
    padding-top: 0;
  }
  .heroRow {
    flex-direction: column-reverse;
    gap: 32px;
    text-align: center;
  }
  .heroMedia {
    flex: none;
  }
  .noteGreen {
    top: 10%;
    right: 21%;
  }
  .badge {
    bottom: 10%;
    left: 20%;
  }
  .videoThumb {
    top: 30%;
    left: unset;
    right: 0;
  }
  .pickThumb {
    right: unset;
    bottom: 30%;
    left: 0;
  }


  .navMenu {
    display: none;
  }
  .mobileMenuToggle {
    display: block;
  }
  .headerCta {
    display: none;
  }



  .featureRibbonListWrapper {
    width: max-content;
    animation: scrolling linear 22s infinite;
  }
   .featureRibbonListWrapper::-webkit-scrollbar {
    display: none;
   }
  .featureRibbonListWrapper:hover,
  .featureRibbonListWrapper:focus-within {
    animation-play-state: paused;
  }
  .featureRibbonItem {
    white-space: nowrap;
  }
  .featureRibbonItem:nth-child(5):not(.copyForScroll) {
    border-right: 1px solid #dfdfe5;
  }
  .copyForScroll {
    display: block;
  }
  @keyframes scrolling {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-50%);
    }
  }



  .howItWorksSteps {
    flex-direction: row;
    gap: 8px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
  }
  .howItWorksSteps::-webkit-scrollbar {
    display: none;
  }
  .cardPanel {
    padding: 30px;
    border-radius: 20px;
  }
  .howItWorksHeader {
    flex-direction: column;
  }
  .inlineCtaNote {
    font-size: 11px;
  }
  .emailWrapper {
    width: 100%;
  }
  .stepCard {
    flex: 0 0 100%;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    padding: 22px 0 35px;
  }
  .indicators.howIndicators {
    display: flex;
  }




  .whyChooseGrid {
    grid-template-columns: 1fr;
    padding-inline: 0;
    gap: 16px;
  }
  .metricCard {
    padding: 30px;
  }
  .metricValue {
    font-size: 85px;
    line-height: 1.2;
  }
  .panelMap {
    flex-direction: column-reverse;
  }





  .serveGrid {
    flex-direction: row;
    gap: 8px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
  }
  .serveGrid::-webkit-scrollbar {
    display: none;
  }
  .tileCard {
    flex: 0 0 100%;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    padding: 60px 40px;
  }
  .tileCard:hover {
    transform: none;
  }
  .indicators.serveIndicators {
    display: flex;
  }






  .integrationSection {
    padding: 20px 0 130px;
  }
  .integrationRow {
    display: none;
  }
  .integrationMobile {
    display: block;
    margin-top: 50px;
  }






  .stripSection {
    padding: 0 0 60px;
  }
  .stripCard {
    flex-direction: column;
    gap: 24px;
    position: relative;
    padding-bottom: 280px;
  }
  .stripText {
    padding-top: 50px;
    text-align: center;
  }
  .stripText .eyebrow {
    margin-bottom: 40px;
  }
  .stripPhoto {
    margin-top: 0;
    max-width: 230px;
    min-width: 230px;
    border-radius: 20px 20px 20px 5px;
    position: absolute;
    left: 4%;
    bottom: -18px;
  }
  .noteRaised {
    top: unset;
    left: unset;
    right: 4%;
    bottom: -32px;
  }





  .featuresTitle,
  .compareOther {
    display: none;
  }
  .compare {
    flex-direction: column;
    gap: 16px;
    margin-top: -10px;
    width: 100%;
  }
  .featuresSubTitle {
    font-size: 12px;
  }
  .checkList li {
    font-size: 13px;
  }







  .faqSectionGrid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .faqTitle .sectionTitle,
  .faqTitle .sectionSubtitle {
    text-align: center;
  }
  .accordionButton {
    padding: 20px;
    min-height: 44px;
    font-size: 13px;
  }
  .accordionPanel {
    padding: 0 20px 20px;
  }
  .accordionPanel p {
    font-size: 12px;
  }







  .ctaGreenSection {
    margin: 0;
    padding: 30px 0 80px;
  }
  .ctaGreenCard {
    flex-direction: column;
    gap: 24px;
    text-align: center;
    padding: 150px 20px 85px;
  }
  .ctaTextRow {
    flex-direction: column;
    gap: 34px;
  }
  .ctaGreenText .sectionTitle {
    max-width: unset;
  }
  .ctaGreenText .sectionSubtitle {
    max-width: unset;
  }
  .ctaGreenGoods {
    right: 50%;
    top: -60px;
    transform: translateX(50%);
    background-image: url('../img/ctaGreenCardShadowSmall.png');
    background-position: -10px 30px;
  }
  .ctaGreenGoods img {
    max-width: 256px;
    max-height: 185px;
  }


  .logoFooter,
  .footerCopy {
    align-self: center;
  }
  .logoFooter .logoMark {
    width:79px;
    height:85px;
    background-image: url("../img/Logo_footer_small.png");
  }
  .footerGrid,
  .footerLinkGrid {
    grid-template-columns: 1fr;
  }
  .order1 {
    order: 1;
  }
  .order2 {
    order: 2;
  }
  .order3 {
    order: 3;
  }
  .order4 {
    order: 4;
  }
  .footerBrand {
    display: flex;
    grid-column: auto;
    flex-direction: column;
    text-align: center;
    justify-content: center;
    margin-bottom: 0;;
  }
  .footerBrand .footerTitle,
  .footerBrand .footerCopy {
    display: none;
  }
  .footerCol {
    text-align: center;
  }
  .footerList a,
  .footerList li {
    font-size: 12px;
  }
  .socialList {
    justify-content: center;
  }
  .footerLegal {
    flex-direction: column;
  }
  .footerLegal p {
    font-size: 12px;
  }
  .footerLinks {
    flex-direction: row;
    gap: 11px;
  }
  .footerLinks a {
    font-size: 10px;
  }
}
/*#endregion ---------------------------------------------- */



/* =================  PAGE 2 compare after review ============================================== */

/* New for For Brands page - Hero variations */
.heroSectionBrands .noteBlue {
  background: var(--primaryBlue);
  color: var(--white);
  font-size: clamp(20px, 1.7vw, 28px);
  font-weight: 700;
  line-height: 1.2;
  padding: clamp(32px, 2.5vw, 48px) clamp(24px, 2vw, 40px);
  border-radius: var(--radiusLg) var(--radiusSm) var(--radiusLg) var(--radiusLg);
  box-shadow: var(--shadow);
}
.heroSectionBrands .noteSupplies {
  top: 0;
  right: 0;
}
.heroSectionBrands .noteProof {
  bottom: 0;
  left: 15px;
  border-radius: 0 var(--radiusLg) var(--radiusLg) var(--radiusLg);
}

/* How It Works for Retailers (no inline form, 4 steps) */
.howItWorksRetailers .inlineCta {
  display: none; /* Hide form for this variation */
}

/* No Hidden Fees block */
.noFeesBlock {
  text-align: center;
  margin: 40px 0;
}
.noFeesTitle {
  font-size: 32px;
  font-weight: 600;
  color: var(--accentGreen);
  margin-bottom: 24px;
}
.noFeesButtons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  max-width: 600px;
  margin: 0 auto;
}
.greenButton {
  background: var(--accentGreen);
  color: #0c0d28;
  border: none;
  font-size: 14px;
  font-weight: 500;
  padding: 12px 20px;
  border-radius: var(--radius);
  transition: all 0.3s ease;
  cursor: pointer;
}
.greenButton:hover {
  box-shadow: 0 4px 12px rgba(41, 255, 101, 0.3);
}

/* Dedicated Shipper and Full Transparency panels */
.dedicatedShipper,
.fullTransparency {
  border-radius: 20px;
  padding: 40px;
  margin: 20px 0;
}
.dedicatedShipper {
  background: var(--bgDark);
  color: var(--white);
}
.fullTransparency {
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid var(--accentBlue);
}
.integrationNote {
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  color: var(--primaryBlue);
  margin-top: 40px;
  padding: 20px;
  background: var(--grayLight);
  border-radius: var(--radius);
}

/* Dashboard section */
.dashboardSection {
  padding: 80px 0;
  background: var(--grayLight);
}
.dashboardMocks {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin: 40px 0;
}
.dashboardMock {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radiusLg);
  box-shadow: var(--shadowSm);
  filter: grayscale(0.5); /* Blurred effect as in mock */
}
.dashboardSubtitle {
  text-align: center;
  font-size: 18px;
  color: var(--textMuted);
  margin-bottom: 40px;
}
.dashboardActions {
  text-align: center;
}

/* Pricing Calculator */
.pricingCalculatorSection {
  padding: 80px 0;
}
.calculatorCard {
  background: var(--grayLight);
  border-radius: var(--radiusXl);
  padding: 60px;
  text-align: center;
}
.calculatorTitle {
  font-size: 28px;
  color: var(--primaryBlue);
}
.calculatorSubtitle {
  font-size: 24px;
  margin-bottom: 40px;
}
.calculatorForm {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 400px;
  margin: 0 auto 40px;
}
.calculatorButton {
  align-self: center;
  width: auto;
}
.costOutput {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  font-size: 48px;
  font-weight: 700;
  color: var(--primaryBlue);
  margin-bottom: 24px;
}
.costLabel {
  font-size: 18px;
  color: var(--textMuted);
}
.calculatorNote {
  font-size: 14px;
  color: var(--textMuted);
  font-style: italic;
}

/* Serve Products (icons row) */
.serveProducts .serveGrid {
  display: none; /* Hide tiles for products variation */
}
.productIconsRow {
  display: flex;
  gap: 40px;
  justify-content: center;
  margin: 40px 0;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
}
.productIcon {
  width: 80px;
  height: 80px;
  object-fit: contain;
  flex-shrink: 0;
  scroll-snap-align: center;
}
.serveActions {
  text-align: center;
  margin: 40px 0;
}

/* Mobile adjustments for brands (add to existing @media) */
@media (max-width: 619px) {
  .noFeesButtons {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .dashboardMocks {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .calculatorForm {
    gap: 16px;
  }
  .costOutput {
    font-size: 36px;
  }
  .productIconsRow {
    gap: 20px;
  }
  .productIcon {
    width: 60px;
    height: 60px;
  }
}








/* =================  PAGE 3 compare after review ============================================== */

/* New for For Shippers page - Hero variations */
.heroSectionShippers .noteDark {
  background: var(--bgDark);
  color: var(--white);
  font-size: clamp(20px, 1.7vw, 28px);
  font-weight: 700;
  line-height: 1.2;
  padding: clamp(32px, 2.5vw, 48px) clamp(24px, 2vw, 40px);
  border-radius: var(--radiusLg) var(--radiusSm) var(--radiusLg) var(--radiusLg);
  box-shadow: var(--shadow);
}
.heroSectionShippers .noteVolume {
  top: 0;
  right: 0;
}
.heroSectionShippers .noteLight {
  background: var(--grayLight);
  color: var(--text);
  bottom: 0;
  left: 15px;
  border-radius: 0 var(--radiusLg) var(--radiusLg) var(--radiusLg);
}

/* How It Works for Shippers (dark card, numbered steps, button CTA) */
.howItWorksShippers .cardPanelDark {
  background: var(--bgDark);
  color: var(--white);
}
.howItWorksShippers .howItWorksAside {
  color: rgba(255, 255, 255, 0.8);
}
.howItWorksShippers .howItWorksAside strong {
  color: var(--white);
}
.howItWorksShippers .stepCard {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px;
  position: relative;
}
.stepNumber {
  position: absolute;
  top: -10px;
  left: 20px;
  background: var(--accentGreen);
  color: #0c0d28;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
}
.howItWorksShippers .stepText {
  color: rgba(255, 255, 255, 0.8);
}
.howItWorksShippers .inlineCta {
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-top: 40px;
}
.howItWorksShippers .inlineCtaHeader {
  display: none; /* No header for this variation */
}
.howItWorksShippers .inlineCtaNote {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
}

/* Requirements section */
.requirementsSection {
  padding: 80px 0;
}
.requirementsGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin: 40px 0;
}
.requirementCard {
  padding: 40px;
  border-radius: 20px;
  transition: all 0.3s ease;
  text-align: center;
}
.requirementEmpty {
  background: var(--grayLight);
}
.requirementInsurance {
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid var(--accentBlue);
}
.requirementDriver {
  background: rgba(41, 255, 101, 0.1);
  border: 1px solid var(--accentGreen);
}
.requirementIcon {
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  fill: var(--primaryBlue);
}
.requirementTitle {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
}
.requirementDesc {
  color: var(--textMuted);
  font-size: 14px;
  line-height: 1.5;
}
.requirementsFooter {
  font-size: 18px;
  font-weight: 500;
  color: var(--primaryBlue);
  margin-top: 40px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Platform section */
.platformSection {
  padding: 80px 0;
  background: var(--grayLight);
}
.platformMocks {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin: 40px 0;
}
.platformMock {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radiusLg);
  box-shadow: var(--shadowSm);
}
.platformMock.desktop {
  grid-column: 1 / -1; /* Full width for desktop mock */
  height: 300px;
}
.platformActions {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin: 40px 0;
}

/* CTA Shippers variation */
.ctaShippers .ctaGreenText {
  text-align: center;
}

/* Mobile adjustments for shippers (add to existing @media) */
@media (max-width: 619px) {
  .howItWorksShippers .howItWorksSteps {
    flex-direction: column;
    gap: 16px;
  }
  .stepNumber {
    position: static;
    margin-bottom: 8px;
  }
  .requirementsGrid {
    grid-template-columns: 1fr;
  }
  .platformMocks {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .platformActions {
    flex-direction: column;
  }
  .platformMock.desktop {
    grid-column: auto;
  }
}










/* =================  PAGE 4 compare after review ============================================== */



/* New for Pricing page - Hero variations */
.heroSectionPricing {
  background-image: url("../img/pricing-lines-bg.png"); /* Line drawings bg */
  background-size: cover;
  background-position: center;
}
.heroSectionPricing .heroContent {
  flex: none;
  max-width: 100%;
  text-align: center;
  padding: 80px 0;
}
.heroUIcon {
  display: block;
  margin: 40px auto;
  width: 100px;
  height: 100px;
}
.uIcon {
  width: 100%;
  height: 100%;
  fill: var(--primaryBlue);
}

/* Plan section */
.planSection {
  padding: 80px 0;
  background: var(--bgDark);
  color: var(--white);
}
.planCard {
  background: var(--bgDark);
  border-radius: var(--radiusXl);
  padding: 60px;
  text-align: center;
}
.cyanTitle {
  color: var(--accentBlue);
  font-weight: 700;
}
.planSizes {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin: 60px 0;
}
.planSize {
  flex: 1;
  max-width: 300px;
  padding: 40px 24px;
  border-radius: var(--radiusLg);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}
.planSize:hover {
  background: rgba(255, 255, 255, 0.1);
}
.planSizeTitle {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 8px;
}
.planSizeDesc {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  margin-bottom: 16px;
}
.planPrice {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 4px;
}
.planAdditional {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}
.planCube {
  width: 50px;
  height: 50px;
  margin: 20px auto 0;
  fill: var(--accentGreen);
}
.planFeatures {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  max-width: 400px;
  margin: 40px auto;
  text-align: left;
}
.featureCheck {
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-right: 8px;
  vertical-align: middle;
}
.greenCheck {
  background: var(--accentGreen);
  border-radius: 50%;
  color: #0c0d28;
  font-size: 12px;
  line-height: 16px;
  text-align: center;
  font-weight: bold;
  content: '✓';
}
.planFeatures li {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.planFeatures li:last-child {
  border-bottom: none;
}
.planActions {
  margin: 40px 0;
}
.planNote {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  font-style: italic;
}

/* Features Comparison (variation for pricing) */
.featuresComparison .compare {
  background: var(--white);
  border-radius: var(--radiusXl);
  overflow: hidden;
  margin: 40px 0;
}
.featuresComparison .compareCol {
  padding: 40px;
}
.featuresComparison .checkList li::before {
  color: var(--accentGreen);
}
.featuresComparison .crossList li::before {
  color: var(--textMuted);
}

/* Mobile adjustments for pricing (add to existing @media) */
@media (max-width: 619px) {
  .planSizes {
    flex-direction: column;
    gap: 16px;
  }
  .planSize {
    max-width: 100%;
  }
  .planFeatures {
    max-width: 100%;
    text-align: center;
  }
  .featuresComparison .compare {
    margin: 20px 0;
  }
  .featuresComparison .compareCol {
    padding: 24px;
  }
}




















/* =================  PAGE 5 compare after review ============================================== */
