*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --brand-50: #EBEEFD;
  --brand-100: #D8DEFC;
  --brand-200: #9CABF7;
  --brand-300: #758AF4;
  --brand-400: #4E69F1;
  --brand-500: #3A58EF;
  --brand-600: #314BD0;
  --brand-700: #283FB1;
  --brand-800: #12327B;
  --brand-900: #04092A;
  --purple-50: #F3F1FD;
  --purple-400: #7162EA;
  --purple-500: #5849D0;
  --purple-800: #26244A;
  --gray-50: #F9FAFB;
  --gray-100: #F2F4F7;
  --gray-200: #EAECF0;
  --gray-300: #D0D5DD;
  --gray-400: #98A2B3;
  --gray-500: #667085;
  --gray-600: #475467;
  --gray-700: #344054;
  --gray-800: #1D2939;
  --gray-900: #101828;
  --success: #12B76A;
  --success-lt: #D1FAE5;
  --warning: #F79009;
  --warning-lt: #FEF3C7;
  --shadow-sm: 0 1px 3px rgba(16, 24, 40, .10), 0 1px 2px rgba(16, 24, 40, .06);
  --shadow-md: 0 4px 8px rgba(16, 24, 40, .08);
  --shadow-lg: 0 12px 16px rgba(16, 24, 40, .08);
  --r-xs: 4px;
  --r-sm: 5px;
  --r-md: 8px;
  --r-lg: 12px;
  --r-pill: 64px;
  --ease: cubic-bezier(.4, 0, .2, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--brand-50);
  color: var(--gray-900);
  min-height: 100vh;
  padding: 0;
}

/* ── Page Header ─────────────────────────────── */
.page-header {
  max-width: 960px;
  margin: 0 auto 28px;
  text-align: center;
}

.page-header h1 {
  font-size: 28px;
  font-weight: 900;
  color: var(--brand-900);
  letter-spacing: -.02em;
  line-height: 1.2;
}

.page-header p {
  font-size: 14px;
  color: var(--gray-500);
  margin-top: 6px;
}

/* ── Controls bar ─────────────────────────────── */
.controls {
  /* max-width: 960px; */
  margin: 0 auto 20px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 16px;
}

/* ── Revenue dropdown group ───────────────────── */
.rev-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-width: 240px;
  flex: 1;
  max-width: 360px;
}

.rev-label-row {
  display: flex;
  align-items: center;
  gap: 6px;
}

.rev-lbl {
  font-size: 14px;
  font-weight: 700;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: .08em;
}

.sel-wrap {
  position: relative;
}

.sel-wrap::after {
  content: '';
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  border: 4px solid transparent;
  border-top: 5px solid var(--gray-500);
  pointer-events: none;
}

.rev-sel {
  width: 100%;
  appearance: none;
  background: #FFFFFF;
  border: 1px solid var(--gray-300);
  border-radius: var(--r-md);
  padding: 10px 36px 10px 12px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-900);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: border-color .15s var(--ease), box-shadow .15s var(--ease);
}

.rev-sel:focus {
  outline: none;
  border-color: var(--brand-400);
  box-shadow: 0 0 0 3px rgba(78, 105, 241, .12);
}

/* ── Pricing Wrap ─────────────────────────────── */
.pricing-wrap {
  /* max-width: 960px; */
  margin: 0 auto;
  background: #FFFFFF;
  border: 1px solid var(--gray-200);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

/* ── Price Card Header ────────────────────────── */
.price-card {
  background: linear-gradient(135deg, var(--brand-800) 0%, var(--brand-700) 100%);
  padding: 28px 32px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.price-left {}

.price-badge {
  display: inline-block;
  background: rgba(255, 255, 255, .15);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: var(--r-pill);
  padding: 3px 12px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.price-label {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, .65);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 4px;
}

.price-amount {
  font-size: 42px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -.03em;
  line-height: 1;
  transition: opacity .18s var(--ease);
}

.price-amount.flash {
  opacity: 0;
}

.price-sub {
  font-size: 14px;
  color: rgba(255, 255, 255, .6);
  margin-top: 4px;
}

.price-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.price-includes {
  font-size: 14px;
  color: var(--White, #FFF);
  text-align: right;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 24px;
  background: #fff;
  color: var(--brand-800);
  border: none;
  border-radius: var(--r-pill);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .18);
  transition: transform .15s var(--ease), box-shadow .15s var(--ease);
}

.cta-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, .22);
}

/* ── Column header (features label row) ──────── */
.col-header {
  display: grid;
  grid-template-columns: 1fr 140px;
  align-items: center;
  padding: 12px 20px 12px 20px;
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-200);
}

.col-header-label {
  font-size: 14px;
  font-weight: 700;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: .08em;
}

.col-header-tier {
  font-size: 14px;
  font-weight: 700;
  color: var(--brand-700);
  text-transform: uppercase;
  letter-spacing: .06em;
  text-align: center;
}

/* ── Section rows ─────────────────────────────── */
.acc-section {
  border-bottom: 1px solid var(--gray-100);
}

.acc-section:last-child {
  border-bottom: none;
}

.sec-header {
  display: grid;
  grid-template-columns: 1fr 140px;
  align-items: center;
  padding: 14px 20px;
  background: #fff;
  border-bottom: 1px solid var(--gray-200);
  cursor: pointer;
  user-select: none;
  transition: background .15s var(--ease);
}

.sec-header:hover {
  background: #fff;
}

.first-tdata {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #1f2937;
  font-weight: 700;
}

.first-tdata strong {
  font-size: 20px;
  color: var(--brand-800);
  font-family: Inter, sans-serif;
  font-weight: 700;
  line-height: 30px;
  letter-spacing: -.01em;
}

.rotate-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.icon-plus {
  display: inline-flex;
}

.icon-minus {
  display: none;
}

.acc-section.open .icon-plus {
  display: none;
}

.acc-section.open .icon-minus {
  display: inline-flex;
}

.sec-count {
  font-size: 14px;
  font-weight: 600;
  color: var(--brand-500);
  background: var(--brand-100);
  border-radius: var(--r-pill);
  padding: 1px 8px;
}

.sec-check-col {
  text-align: center;
}

/* ── Feature rows ─────────────────────────────── */
.acc-body {
  display: none;
}

.acc-section.open .acc-body {
  display: block;
}

.pt-row {
  display: grid;
  grid-template-columns: 1fr 140px;
  align-items: center;
  padding: 11px 20px;
  border-bottom: 1px solid var(--gray-100);
  transition: background .12s var(--ease);
}

.pt-row:last-child {
  border-bottom: none;
}

.pt-row:hover {
  background: var(--gray-50);
}

.feat-cell {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-700);
  line-height: 1.4;
}

.feat-name {
  flex: none;
  padding-left: 50px;
}

/* ── Info tooltip (i button) ──────────────────── */
.fi {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1.5px solid #00001E;
  font-size: 9px;
  font-weight: 700;
  color: #00001E;
  cursor: default;
  font-style: normal;
  flex-shrink: 0;
  transition: border-color .12s, color .12s;
}

.fi:hover {
  border-color: var(--brand-400);
  color: var(--brand-500);
}

.ft {
  display: none;
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--gray-800);
  color: #fff;
  font-size: 11.5px;
  font-weight: 400;
  font-family: 'Inter', sans-serif;
  padding: 7px 12px;
  border-radius: var(--r-md);
  white-space: nowrap;
  z-index: 60;
  box-shadow: var(--shadow-md);
  pointer-events: none;
  max-width: 280px;
  white-space: normal;
  line-height: 1.5;
  width: max-content;
}

.ft::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: var(--gray-800);
}

.fi:hover .ft {
  display: block;
}

/* ── Check icon ───────────────────────────────── */
.check-col {
  display: flex;
  align-items: center;
  justify-content: center;
}

.chk-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #D8DEFC;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.chk-icon svg path {
  stroke: #3A58EF;
}

/* ── Footer notes ─────────────────────────────── */
.pt-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  border-top: 1px solid var(--gray-200);
  background: var(--gray-50);
}

.ft-note {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-600);
}

.ft-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--gray-300);
}

/* ── Disclaimer ───────────────────────────────── */
.disclaimer {
  max-width: inherit;
  margin: 20px auto 24px;
  border-radius: 4px;
  border: 1px solid var(--Theme-Yellow-400, #F1C94E);
  background: var(--Theme-Yellow-50, #FDF9EB);
  padding: 10px;
  color: var(--Text-Grey-700, #344054);
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.6;
}

.disclaimer-body {
  display: block;
  margin-top: 4px;
}

.disclaimer-body p {
  margin: 5px 0 0;
  line-height: 1.5;
  font-size: 14px;
}

.disclaimer-extra {
  display: none;
}

.disclaimer-body.expanded .disclaimer-extra {
  display: block;
}

.disclaimer-toggle-btn {
  background: none;
  border: none;
  color: #344054;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  padding: 4px 0 0;
  text-decoration: underline;
  font-family: Inter, sans-serif;
  display: inline-block;
  margin-top: 2px;
}

/* ── Custom price note ───────────────────────── */
.custom-note {
  font-size: 14px;
  color: rgba(255, 255, 255, .7);
  font-style: italic;
  margin-top: 4px;
}

#customNote {
  display: none;
}

/* ── Add-on section ──────────────────────────── */
.addons-section {
  /* max-width: 960px; */
  margin: 36px auto 0;
}

.addons-heading {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.addons-heading h2 {
  font-size: 18px;
  font-weight: 800;
  color: var(--brand-900);
  letter-spacing: -.02em;
}

.addons-heading p {
  font-size: 14px;
  color: var(--gray-500);
  margin-top: 3px;
}

.addons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

@media (max-width: 700px) {
  .addons-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .addons-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Add-on Card ──────────────────────────────── */
.addon-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-sm);
  cursor: default;
  transition: box-shadow .2s var(--ease), border-color .2s var(--ease), transform .2s var(--ease);
  display: grid;
  grid-template: 1fr / 1fr;
  overflow: hidden;
}

.addon-card>* {
  grid-area: 1 / 1;
}

.addon-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--brand-200);
  transform: translateY(-2px);
}

/* Price badge - always top-right */
.addon-price {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--brand-800);
  color: #fff;
  border-radius: var(--r-pill);
  padding: 3px 11px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .02em;
  white-space: nowrap;
  z-index: 2;
  max-width: 45%;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Default state: icon + title */
.addon-default {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 10px;
  padding: 20px 18px 18px;
  transition: opacity .2s var(--ease);
}

.addon-card:hover .addon-default {
  opacity: 0;
  pointer-events: none;
}

.addon-icon {
  font-size: 26px;
  line-height: 1;
}

.addon-title-default {
  font-size: 14px;
  font-weight: 700;
  color: var(--brand-900);
  line-height: 1.35;
  padding-right: 70px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* Hover state: title on top + description */
.addon-hover {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px 18px 18px;
  background: #fff;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s var(--ease);
}

.addon-card:hover .addon-hover {
  opacity: 1;
  pointer-events: auto;
}

.addon-title-hover {
  font-size: 14px;
  font-weight: 700;
  color: var(--brand-800);
  line-height: 1.35;
  padding-right: 75px;
  margin-top: 2px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.addon-desc {
  font-size: 11.5px;
  font-weight: 400;
  color: var(--gray-600);
  line-height: 1.55;
  flex: 1;
}

/* Accent stripe on left */
.addon-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 16px;
  bottom: 16px;
  width: 3px;
  border-radius: 0 2px 2px 0;
  background: var(--brand-400);
  opacity: 0;
  transition: opacity .2s var(--ease);
  z-index: 3;
}

.addon-card:hover::before {
  opacity: 1;
}


@media (max-width: 600px) {
  .price-card {
    padding: 20px 16px 18px;
  }

  .price-amount {
    font-size: 36px;
  }

  .price-right {
    align-items: flex-start;
  }

  .col-header,
  .sec-header,
  .pt-row {
    grid-template-columns: 1fr 80px;
  }

  .col-header-tier,
  .sec-check-col,
  .check-col {}
}

/* ── Hero Header ─────────────────────────────── */
.hero {
  max-width: inherit;
  margin: 0 auto 48px;
  padding: 72px 0;
  background: var(--White, #FFF);
  padding-block: 56px;
  text-align: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid var(--brand-200);
  letter-spacing: .04em;
  text-transform: inherit;
  margin-bottom: 18px;
  border-radius: 31px;
  background: var(--White, #FFF);
  padding: 4px 13px;
  color: var(--Theme-Blue-800, #182878);
  text-align: center;
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 18px;
}

.hero-eyebrow svg {
  flex-shrink: 0;
}

.hero h1 {
  color: var(--Text-Grey-900, #101828);
  font-family: Inter;
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 60px;
  letter-spacing: -0.96px;
  margin-bottom: 16px;
}

.hero h1 span {
  color: var(--Theme-Blue-500, #3A58EF);
  text-align: center;
  font-family: Inter;
  font-size: 48px;
  font-style: normal;
  font-weight: 700;
  line-height: 60px;
  letter-spacing: -0.96px;
}

.hero h2.hero-sub {
 
  
  max-width: inherit;
  margin: 0 auto 16px;
  color: var(--Text-Grey-700, #344054);
  text-align: center;
  font-family: Inter;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 32px;
  margin-bottom: 16px;
}

.hero h3.hero-desc {
  color: var(--Text-Grey-600, #475467);
  text-align: center;
  font-family: Inter;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  margin-bottom: 16px;
}

.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-primary {
  align-items: center;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background .18s var(--ease), box-shadow .18s var(--ease);
  border-radius: 4px;
  background: var(--Theme-Blue-500, #3A58EF);
  box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05);
  padding: 12px 20px;
  display: inline-block;
  color: var(--White, #FFF);
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
}

.btn-primary:hover {
  border-radius: 4px;
  background: var(--Theme-Blue-800, #182878);
  box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05);
}

.btn-outline {
  background: transparent;
  cursor: pointer;
  text-decoration: none;
  transition: border-color .18s var(--ease), background .18s var(--ease);
  border-radius: 4px;
  border: 1px solid var(--Theme-Blue-500, #3A58EF);
  padding: 12px 20px;
  color: var(--Theme-Blue-500, #3A58EF);
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-outline:hover {
  border-color: var(--brand-500);
  background: var(--Theme-Blue-500, #3A58EF);
  color: #fff;
}

.hero-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--Text-Grey-600, #475467);
  text-align: center;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

.trust-item svg {
  color: var(--success);
  flex-shrink: 0;
}

/* Lets_Build / cta_section / bg-grey */
section.Lets_Build {
    background: var(--White, #FFF);
    padding: 72px 0;
}
.Lets_Build.bg-grey {
    background: #EBEEFD;
}
section.Lets_Build .Sec_Title h2 {
    color: var(--Theme-Dark-Blue-800, #26244A);
    font-family: Inter;
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: 48px;
    letter-spacing: -0.72px;
    text-align: center;
    padding-bottom: 0;
}
section.Lets_Build .Sec_Title h2 span {
    color: var(--Theme-Blue-500, #3A58EF);
    text-align: center;
    font-family: Inter;
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: 48px;
    letter-spacing: -0.72px;
}
section.Lets_Build .Sec_Title p {
    color: var(--Text-Grey-600, #475467);
    text-align: center;
    font-family: Inter;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
    margin-bottom: 36px;
}
.Lets_Build_Box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-bottom: 0px;
}
.Lets_Build_Box a.Schedule_Call_Btn {
    border-radius: 4px;
    background: var(--Theme-Blue-500, #3A58EF);
    box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05);
    padding: 12px 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--White, #FFF);
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px;
    text-decoration: none;
}
.Lets_Build_Box a.Schedule_Call_Btn:hover {
    border-radius: 4px;
    background: var(--Theme-Blue-800, #182878);
    box-shadow: 0 1px 2px 0 rgba(16, 24, 40, 0.05);
}
.Lets_Build.bg-grey section.Schedule_Contact {
    background: #EBEEFD;
    padding: 0;
}
.vcfo-hidden {
    display: none;
}
@media (max-width: 768px) {
    .Lets_Build_Box {
        flex-direction: column;
    }
    .Lets_Build_Box a.Schedule_Call_Btn {
        padding: 12px 14px;
    }
    section.Lets_Build .Sec_Title h2 {
        font-size: 24px;
        line-height: inherit;
    }
    section.Lets_Build .Sec_Title h2 span {
        font-size: 24px;
    }
}
