:root {
  --black: #0F1117;
  --dark-bg: #0F1117;
  --white: #ffffff;
  --off-white: #FAFAF8;
  --red-bg: #DC2626;
  --orange: #D4801A;
  --green-dark: #1A4731;
  --green-h: #2D6A4F;
  --light-green: #F0F4F0;
  --gray-100: #F3F4F6;
  --gray-400: #9CA3AF;
  --gray-500: #6B7280;
  --gray-600: #4B5563;
  --text: #111827;
  --border: #E5E7EB;


  --font: 'Inter', sans-serif;
  --r: 6px;
  --r-lg: 10px;
  --max: 1720px;


  --dark: #0F1117;
  --light-bg: #eeecea;
  --orange-h: #b36d22;
  --gray-200: #e6e4df;
  --gray-700: #4a4844;
  --gray-800: #2e2d2a;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

button {
  font-family: var(--font);
  cursor: pointer;
  background: none;
  border: none;
}

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 50px;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 22px;
  border-radius: var(--r);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: background .18s, border-color .18s, color .18s;
  white-space: nowrap;
}

.btn-orange {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
  font-family: 'Inter';
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  letter-spacing: 0%;
  padding: 14px 30px;
  transition: all 0.5s;
}

.btn-orange:hover {
  background: transparent;
  border-color: var(--orange);
  color: var(--orange);
}

.btn-orange-icon {
  transition: all 0.5s;
  filter: brightness(0) invert(1);
}

.btn-orange:hover .btn-orange-icon {
  filter: brightness(2) invert(1);
}

.btn-outline-nav {
  background: transparent;
  color: var(--green-dark);
  border-color: var(--green-dark);
  padding: 10px 20px;
  font-family: 'Inter';
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  letter-spacing: 0%;
  transition: all 0.5s;
}

.btn-outline-nav:hover {
  border-color: var(--green-dark);
  background-color: var(--green-dark);
  color: var(--white);
}

.btn-outline-nav-icon {
  transition: all 0.5s;
}

.btn-outline-nav:hover img.btn-outline-nav-icon {
  filter: brightness(0) invert(1);
}

.btn-full {
  width: 100%;
  justify-content: center;
  max-width: fit-content;
  margin-top: auto;
  margin-bottom: 0;
}

.about-section .section-eyebrow {
  margin: 0 auto 15px 520px;
  max-width: 635px;
}

/* EYEBROW */
.section-eyebrow {
  text-transform: uppercase;
  color: var(--green-dark);
  margin-bottom: 15px;
  font-family: 'Inter';
  font-weight: 500;
  font-size: 11px;
  line-height: 13px;
  letter-spacing: 10%;
  text-align: center;
}

.section-eyebrow.center {
  text-align: center;
}

/* SECTION TITLE */
.section-title {
  font-size: clamp(20px, 3.2vw, 32px);
  color: var(--black);
  font-family: 'Inter';
  font-weight: 500;
  /* line-height: 34px; */
  line-height: 39px;
  letter-spacing: -2%;
  max-width: 689px;
  margin: 0 auto 20px;
}

.section-title.center {
  text-align: center;
}

/* ============================ NAVBAR ============================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 60px;
  gap: 40px;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  height: 3px;
  width: 25px;
  background: #000;
  margin: 4px 0;
  display: block;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 20px;
  background: #fff;
  position: relative;
}

.mobile-menu ul {
  list-style: none;
  padding: 0;
}

.mobile-menu ul li {
  margin-bottom: 15px;
}

.mobile-btn {
  margin-top: 15px;
  display: block !important;
  width: 100%;
  max-width: fit-content;
}

/* Active State */
.mobile-menu.active {
  display: flex;
  position: absolute;
  width: 100%;
}

.nav-logo {
  color: var(--black);
  font-family: 'Inter';
  font-weight: 400;
  font-size: 30px;
  line-height: 36px;
  letter-spacing: 0%;
}

.nav-logo strong {
  font-weight: 500;
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex: 1;
}

.nav-links a {
  font-size: 14px;
  font-weight: 400;
  color: var(--gray-600);
  transition: color .18s;
}

.nav-links a:hover {
  color: var(--black);
}

/* ============================ HERO ============================ */
.hero {
  background: var(--off-white);
  padding: 286px 0 286px;
  text-align: center;
}

.hero-eyebrow {
  text-transform: uppercase;
  color: var(--green-dark);
  margin-bottom: 22px;
  font-family: 'Inter';
  font-weight: 500;
  font-size: 11px;
  line-height: 13px;
  letter-spacing: 0%;
}

.hero-title {
  font-size: clamp(30px, 4.8vw, 56px);
  color: var(--black);
  margin-bottom: 15px;
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
  font-family: 'Inter';
  font-weight: 500;
  line-height: 68px;
  letter-spacing: -3%;
  text-align: center;
  vertical-align: middle;
}

.hero-sub {
  color: var(--gray-600);
  max-width: 810px;
  margin: 0 auto 30px;
  font-family: 'Inter';
  font-weight: 400;
  font-size: 19px;
  line-height: 23px;
  letter-spacing: 0%;
  text-align: center;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.hero-alt-link {
  color: var(--green-h);
  /* text-decoration: underline; */
  /* text-underline-offset: 3px; */
  font-family: 'Inter';
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  letter-spacing: 0%;
  transition: all 0.5s;
}

.hero-alt-link:hover {
  color: var(--green-dark);
}

.hero-alt-link-icon {
  transition: all 0.5s;
  filter: brightness(1) invert(0);
}

.hero-alt-link:hover .hero-alt-link-icon {
  filter: brightness(1) invert(0);
}

.hero-micro {
  color: var(--gray-400);
  font-family: 'Inter';
  font-weight: 400;
  font-size: 13px;
  line-height: 16px;
  letter-spacing: 0%;
  text-align: center;
}

/* ============================ STATS BAR ============================ */
.stats-bar {
  background: var(--dark-bg);
  padding: 50px 0 50px;
  color: var(--white);
}

.stats-grid {
  /* display: grid; */
  /* grid-template-columns: repeat(4, 1fr); */
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 50px;
  justify-content: space-between;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: auto;
  min-width: max-content;
  max-width: fit-content;
}

.stat-number {
  font-size: clamp(36px, 4.5vw, 50px);
  color: var(--white);
  font-family: 'Inter';
  font-weight: 500;
  line-height: 61px;
  letter-spacing: 0%;
}

.stats-grid .stat-item:nth-child(1) .stat-label {
  width: 100%;
  max-width: 370px;
}

.stat-label {
  color: var(--gray-400);
  font-family: 'Inter';
  font-weight: 400;
  font-size: 19px;
  line-height: 23px;
  letter-spacing: 0%;
}

.stats-quote {
  color: var(--gray-400);
  max-width: 850px;
  margin: 0 auto;
  font-family: 'Inter';
  font-weight: 500;
  font-style: Italic;
  font-size: 19px;
  line-height: 23px;
  letter-spacing: 0%;
  text-align: center;
}

/* ============================ THE PROBLEM (CLAUSE) ============================ */
.clause-section {
  padding: 100px 0;
  background: var(--off-white);
}

.clause-sub-main {
  margin: 0 auto 51px;
}

.clause-sub-main .clause-sub:nth-child(1) {
  max-width: 800px;
}

.clause-sub {
  color: var(--gray-600);
  max-width: 880px;
  margin: 0 auto 15px;
  font-family: 'Inter';
  font-weight: 400;
  font-size: 19px;
  line-height: 23px;
  letter-spacing: 0%;
  text-align: center;
}

.quote-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.quote-card {
  padding: 30px 30px;
  border-left: 3px solid var(--green-dark);
  background-color: var(--white);
  border-radius: 6px;
}

.quote-code {
  background: var(--gray-100);
  border-radius: var(--r);
  padding: 24px 24px;
  color: var(--text);
  margin-bottom: 24px;
  font-family: 'IBM Plex Mono', monospace;
  font-weight: 400;
  font-size: 18px;
  line-height: 23px;
  letter-spacing: 0%;
  max-width: 770px;
  min-height: 117px;
}

.quote-note {
  color: var(--black);
  font-family: 'Inter';
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: 0%;
}

.clause-section-quote {
  font-family: 'Inter';
  font-weight: 500;
  font-style: Italic;
  font-size: 14px;
  line-height: 19px;
  letter-spacing: 0%;
  color: var(--gray-400);
  margin-top: 40px;
  text-align: center;
}

/* ============================ HOW IT WORKS ============================ */
.how-it-works {
  background: var(--light-green);
  padding: 60px 0;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin: 50px 0 0;
}

.step-card {
  background: var(--white);
  padding: 30px 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  border: 1px solid var(--border);
  border-radius: var(--r);
}

.step-num {
  color: var(--green-h);
  font-family: 'Inter';
  font-weight: 400;
  font-size: 50px;
  line-height: 61px;
  letter-spacing: -2%;
}

.step-card h3 {
  color: var(--black);
  font-family: 'Inter';
  font-weight: 500;
  font-size: 30px;
  line-height: 36px;
  letter-spacing: -2%;
  margin-top: 25px;
}

span.step-card-time {
  font-family: 'Inter';
  font-weight: 400;
  color: var(--gray-400);
  font-size: 18px;
  line-height: 22px;
  letter-spacing: -2%;
  vertical-align: middle;
}

.step-card p {
  color: var(--gray-600);
  font-family: 'Inter';
  font-weight: 400;
  font-size: 18px;
  line-height: 22px;
  letter-spacing: -2%;
  margin-top: 5px;
}

.steps-note {
  color: var(--gray-500);
  text-align: center;
  margin: 40px 0 20px;
  font-family: 'Inter';
  font-weight: 500;
  font-style: Italic;
  font-size: 15px;
  line-height: 18px;
  letter-spacing: 0%;
}

.cta-center {
  display: flex;
  justify-content: center;
}

/* ============================ WHAT YOU RECEIVE ============================ */
.what-you-receive {
  background: var(--off-white);
  padding: 100px 0;
}

.receive-sub {
  color: var(--gray-600);
  max-width: 800px;
  margin: 0 auto 50px;
  font-family: 'Inter';
  font-weight: 400;
  font-size: 19px;
  line-height: 23px;
  letter-spacing: 0%;
  text-align: center;
}

.receive-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 120px;
  align-items: start;
  justify-content: space-between;
}

.receive-item {
  padding: 20px 0;
}

.receive-item h4 {
  color: var(--black);
  margin-bottom: 20px;
  font-family: 'Inter';
  font-weight: 500;
  font-size: 30px;
  line-height: 36px;
  letter-spacing: -2%;
  text-align: left;
}

.receive-item p {
  color: var(--gray-600);
  font-family: 'Inter';
  font-weight: 400;
  font-size: 18px;
  line-height: 22px;
  letter-spacing: -2%;
}

.receive-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 10px 0;
}

.receive-disclaimer,
.receive-disclaimer-mobile {
  color: var(--gray-500);
  margin-top: 20px;
  font-family: 'Inter';
  font-weight: 500;
  font-style: Italic;
  font-size: 15px;
  line-height: 18px;
  letter-spacing: 0%;
}

/* Report Card */
.report-card {
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  background-color: var(--white);
}

.report-card-header {
  background: var(--dark);
  color: var(--white);
  padding: 19px 40px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: 'Inter';
  font-weight: 500;
  font-size: 30px;
  line-height: 36px;
  letter-spacing: 0%;
}

.badge-critical {
  background: var(--red-bg);
  color: var(--white);
  padding: 10px 20px;
  border-radius: var(--r);
  font-family: 'Inter';
  font-weight: 500;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: 0%;
}

.report-card-body {
  background: #fff;
  padding: 0;
}

.report-subtitle {
  color: var(--black);
  padding: 40px 40px 24px;
  font-family: 'Inter';
  font-weight: 400;
  font-size: 24px;
  line-height: 29px;
  letter-spacing: 0%;
}

.report-code-block {
  font-family: 'IBM Plex Mono';
  background: var(--gray-100);
  border-radius: var(--r);
  padding: 24px 24px;
  margin: 0 40px 8px;
  color: var(--text);
  font-weight: 400;
  font-size: 18px;
  line-height: 23px;
  letter-spacing: 0%;
}

.report-row {
  padding: 24px 40px;
}

.report-row p {
  color: var(--black);
  font-family: 'Inter';
  font-weight: 400;
  font-size: 18px;
  line-height: 22px;
  letter-spacing: 0%;
}

.report-row strong {
  color: var(--black);
  font-weight: 500;
}

.report-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0 40px;
}

/* ============================ PRICING ============================ */
.pricing-section {
  background: var(--light-green);
  padding: 60px 0;
}

.pricing-headline {
  font-size: clamp(20px, 3.2vw, 32px);
  color: var(--black);
  margin-bottom: 15px;
  font-family: 'Inter';
  font-weight: 500;
  line-height: 39px;
  letter-spacing: -2%;
  text-align: center;
}

.pricing-sub {
  color: var(--gray-600);
  max-width: 800px;
  margin: 0px auto 50px;
  font-family: 'Inter';
  font-weight: 400;
  font-size: 19px;
  line-height: 23px;
  letter-spacing: 0%;
  text-align: center;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 40px;
}

.pricing-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 40px 40px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
}

.pricing-featured {
  border: 2px solid var(--green-dark);
}

.most-popular {
  position: absolute;
  top: -21px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green-dark);
  color: var(--white);
  padding: 10px 20px;
  border-radius: var(--r);
  white-space: nowrap;
  font-family: 'Inter';
  font-weight: 400;
  font-size: 18px;
  line-height: 22px;
  letter-spacing: 0%;
}

.pricing-card h3 {
  color: var(--black);
  font-family: 'Inter';
  font-weight: 500;
  font-size: 30px;
  line-height: 36px;
  letter-spacing: -2%;
}

.pricing-tagline {
  color: var(--gray-600);
  margin-bottom: 20px;
  font-family: 'Inter';
  font-weight: 400;
  font-size: 18px;
  line-height: 22px;
  letter-spacing: 0%;
}

.pricing-tiers {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-bottom: 20px;
}

.pricing-tiers p {
  color: var(--gray-600);
  font-family: 'Inter';
  font-weight: 400;
  font-size: 20px;
  line-height: 23px;
  letter-spacing: 0%;
}

.pricing-tiers strong {
  color: var(--black);
  font-family: 'Inter';
  font-weight: 500;
  font-size: 22px;
  line-height: 27px;
  letter-spacing: 0%;
}

.pricing-rush {
  color: var(--orange);
  font-family: 'Inter';
  font-weight: 400;
  font-size: 18px;
  line-height: 22px;
  letter-spacing: 0%;
}

.pricing-includes {
  color: var(--gray-500);
  font-family: 'Inter';
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  letter-spacing: 0%;
  padding-bottom: 20px;
}

.pricing-footnote-box .pricing-footnote:nth-child(1) {
  max-width: 800px;
}

.pricing-footnote {
  color: var(--gray-500);
  max-width: 870px;
  margin: 0px auto 20px;
  font-family: 'Inter';
  font-weight: 500;
  font-style: Italic;
  font-size: 15px;
  line-height: 18px;
  letter-spacing: 0%;
  text-align: center;
}

/* ============================ WHO I WORK WITH ============================ */
.who-section {
  background: var(--off-white);
  padding: 100px 0;
}

.who-section .section-title {
  line-height: 39px;
  max-width: 750px;
}

.who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 50px;
}

.who-card {
  background: var(--white);
  padding: 30px 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-radius: var(--r);
  border: 1px solid var(--border);
}

.who-icon {
  color: var(--black);
  display: flex;
  align-items: center;
}

.who-card h4 {
  color: var(--black);
  font-family: 'Inter';
  font-weight: 500;
  font-size: 24px;
  line-height: 29px;
  letter-spacing: -2%;
  margin-top: 10px;
}

.who-card p {
  color: var(--gray-600);
  font-family: 'Inter';
  font-weight: 400;
  font-size: 18px;
  line-height: 22px;
  letter-spacing: -2%;
}

/* ============================ FAQ ============================ */
.faq-section {
  background: var(--light-green);
  padding: 60px 0;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 50px;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--r);
  background-color: var(--white);
}

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 24px;
  text-align: left;
  gap: 15px;
  transition: background .15s;
}

.faq-q:hover {
  background: var(--gray-100);
}

.faq-q span:first-child {
  color: var(--text);
  font-family: 'Inter';
  font-weight: 500;
  font-size: 22px;
  line-height: 27px;
  letter-spacing: 0%;
}

.faq-icon {
  font-size: 20px;
  font-weight: 300;
  color: var(--gray-500);
  flex-shrink: 0;
  transition: transform .25s;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  padding: 4px 24px 20px;
}

.faq-item.open .faq-answer {
  display: block;
}

.faq-answer p {
  color: var(--gray-600);
  font-family: 'Inter';
  font-weight: 400;
  font-size: 18px;
  line-height: 22px;
  letter-spacing: -2%;
}

/* ============================ ABOUT ============================ */
.about-section {
  background: var(--off-white);
  padding: 100px 0;
}

.about-section .section-title {
  max-width: 635px;
  margin: 0 auto 20px 520px;
}

.about-layout {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 120px;
  align-items: start;
  margin-top: 50px;
  margin-bottom: 40px;
}

.about-avatar {
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: var(--green-dark);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter';
  font-weight: 500;
  font-size: 50px;
  line-height: 61px;
  letter-spacing: 0%;
  margin: 0 auto;
}

.about-right p {
  color: var(--gray-600);
  margin-bottom: 18px;
  font-family: 'Inter';
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: -2%;
  margin: 0 0 30px 0;
}

.about-content {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
}

.about-content.expanded {
  -webkit-line-clamp: unset;
}

.read-more-btn {
  background: none;
  border: none;
  color: var(--green-dark);
  cursor: pointer;
  margin: 15px auto 0;
  width: auto;
  max-width: fit-content;
  display: flex;
  font-family: 'Inter';
  font-weight: 500;
  font-size: 11px;
  line-height: 13px;
  letter-spacing: 10%;
  text-align: center;
}

.about-right p:last-child {
  margin-bottom: 0;
}

.credential-tags {
  display: flex;
  flex-wrap: wrap;
  column-gap: 61px;
  row-gap: 30px;
  margin-bottom: 40px;
}

.credential-tags span {
  background: var(--green-h);
  color: var(--white);
  padding: 15px 20px;
  border-radius: var(--r);
  font-family: 'Inter';
  font-weight: 400;
  font-size: 18px;
  line-height: 22px;
  letter-spacing: -2%;
}

.about-quote {
  border-left: 3px solid var(--green-dark);
  color: var(--gray-500);
  max-width: 450px;
  font-family: 'Inter';
  font-weight: 500;
  font-style: Italic;
  font-size: 11px;
  line-height: 13px;
  letter-spacing: 0%;
  padding: 10px 0 10px 30px;
}

/* ============================ BOTTOM CTA ============================ */
.bottom-cta {
  background: var(--dark-bg);
  padding: 100px 0;
  text-align: center;
}

.bottom-cta-title {
  font-size: clamp(20px, 4.5vw, 32px);
  color: var(--white);
  font-family: 'Inter';
  font-weight: 500;
  line-height: 39px;
  letter-spacing: -2%;
  text-align: center;
  max-width: 400px;
  margin: 0 auto 15px;
}

.bottom-cta-sub {
  color: var(--white);
  max-width: 680px;
  margin: 0 auto 30px;
  font-family: 'Inter';
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: 0%;
  text-align: center;
}

.bottom-cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.bottom-link {
  color: var(--green-dark);
  font-family: 'Inter';
  font-weight: 500;
  font-size: 18px;
  line-height: 22px;
  letter-spacing: 0%;
}

.bottom-micro {
  color: var(--gray-400);
  font-family: 'Inter';
  font-weight: 400;
  font-size: 13px;
  line-height: 16px;
}

/* ============================ FOOTER ============================ */
.footer {
  background: var(--dark-bg);
}

.footer-inner-box {
  display: flex;
  flex-direction: row;
  gap: 30px;
  padding: 40px 0px 40px;
  border-top: 1px solid #ffffff66;
  border-bottom: 1px solid #ffffff66;
  justify-content: space-between;
}

.footer-border {
  border-top: 1px solid #ffffff66;
}

.footer-brand {
  width: 100%;
  max-width: 55%;
}

.footer-brand-col {
  width: 100%;
  max-width: 45%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.footer-brand p {
  color: var(--white);
  margin-top: 20px;
  font-family: 'Inter';
  font-weight: 400;
  font-size: 18px;
  line-height: 22px;
  letter-spacing: 0%;
  max-width: 320px;
}

.footer-logo {
  color: var(--white);
  font-family: 'Inter';
  font-weight: 400;
  font-size: 32px;
  line-height: 39px;
  letter-spacing: 0%;
}

.footer-logo strong {
  font-weight: 500;
}

.footer-col h5 {
  color: var(--white);
  margin-bottom: 30px;
  font-family: 'Inter';
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: 0%;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-col ul li a {
  color: var(--white);
  transition: color .18s;
  font-family: 'Inter';
  font-weight: 400;
  font-size: 18px;
  line-height: 22px;
  letter-spacing: 0%;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-contact img {
  width: auto;
  max-width: 20px;
  height: 100%;
}

.footer-col ul li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-col ul li a:hover {
  color: var(--white);
}

.footer-bottom {
  padding: 15px 0 20px;
}

.footer-bottom p {
  color: var(--white);
  text-align: center;
  font-family: 'Inter';
  font-weight: 400;
  font-size: 9px;
  line-height: 11px;
  letter-spacing: 0%;
}

.footer-bottom a {
  color: var(--white);
  text-decoration: underline;
}

.footer-bottom a:hover {
  color: var(--white);
}

/* ============================ RESPONSIVE â‰¤1440px ============================ */
@media (max-width:1440px) {
  .container {
    padding: 0 20px;
  }

  .footer .footer-inner-box {
    padding: 40px 0px;
  }

  .credential-tags {
    column-gap: 30px;
  }

  .receive-layout,
  .about-layout {
    gap: 60px;
  }

  .about-section .section-title {
    margin: 0 auto 20px 460px;
  }

  .about-section .section-eyebrow {
    margin: 0 auto 15px 460px;
  }
}

@media (max-width:1366px) {
  .quote-code {
    min-height: 140px;
  }

  .step-card h3 {
    margin-top: 0px;
  }

  .report-card-header,
  .pricing-card h3,
  .receive-item h4,
  .step-card h3 {
    font-size: 26px;
    line-height: 32px;
  }

  .stats-grid,
  .quote-grid,
  .steps-grid,
  .pricing-grid,
  .who-grid {
    gap: 20px;
  }

  .stats-grid .stat-item:nth-child(1) .stat-label,
  .stats-grid .stat-item:nth-child(2) .stat-label {
    max-width: 320px;
  }

  .pricing-tiers p {
    font-size: 18px;
    line-height: 21px;
  }

  .pricing-tiers strong {
    font-size: 20px;
    line-height: 25px;
  }

  .pricing-card {
    padding: 35px 20px;
  }

  .report-card-header {
    padding: 15px 30px 15px;
  }

  .report-subtitle {
    padding: 30px 30px 20px;
  }

  .report-code-block {
    padding: 15px 15px;
    margin: 0 30px 5px;
  }

  .report-row {
    padding: 20px 30px;
  }

  .receive-layout,
  .about-layout {
    gap: 30px;
  }

  .about-section .section-title {
    margin: 0 auto 20px 430px;
  }

  .about-section .section-eyebrow {
    margin: 0 auto 15px 430px;
  }

  .about-layout {
    margin-top: 30px;
  }

  .about-right p {
    margin: 0 0 20px 0;
  }

  .receive-item {
    padding: 15px 0;
  }

  .hero-sub,
  .stat-label,
  .clause-sub,
  .receive-sub,
  .pricing-sub {
    font-size: 18px;
    line-height: 22px;
  }
}

@media (max-width:1199.98px) {
  .stat-item {
    min-width: 23%;
    max-width: 23%;
  }
}

@media (max-width:1024.98px) {

  .receive-layout,
  .about-layout {
    grid-template-columns: 1fr;
  }

  .about-section .section-title {
    margin: 0 auto 20px;
  }

  .about-section .section-eyebrow {
    margin: 0 auto 15px;
  }

  .credential-tags,
  .footer-inner-box {
    column-gap: 20px;
    row-gap: 20px;
  }

  .quote-card,
  .step-card,
  .who-card {
    padding: 30px 20px;
  }

  .hero {
    padding: 275px 0 275px;
  }

  .clause-section,
  .what-you-receive,
  .who-section,
  .about-section,
  .bottom-cta {
    padding: 70px 0;
  }

  .pricing-grid,
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .faq-q {
    padding: 20px 15px;
  }

  .footer-brand {
    max-width: 45%;
  }

  .footer-brand-col {
    max-width: 52%;
    gap: 10px;
  }

  .footer-col ul li a,
  .footer-brand p {
    font-size: 16px;
    line-height: 20px;
  }
}

/* ============================ RESPONSIVE â€” TABLET â‰¤900px ============================ */
@media(max-width:881px) {

  .hero-title,
  .section-title {
    line-height: 130%;
  }

  .stat-item {
    min-width: 48%;
    max-width: 48%;
  }

  .stats-grid .stat-item:nth-child(1) .stat-label,
  .stats-grid .stat-item:nth-child(2) .stat-label {
    max-width: 100%;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }



  .quote-grid {
    grid-template-columns: 1fr;
    border-left: none;
  }

  .quote-card:nth-child(odd) {
    border-right: none;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .receive-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .who-grid {
    grid-template-columns: 1fr;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .faq-item:nth-child(odd) {
    border-right: none;
  }

  .about-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-inner-box {
    grid-template-columns: 1fr 1fr;
  }

  .faq-q span:first-child {
    text-indent: -15px;
    padding-left: 15px;
  }
}

@media(max-width:768px) {

  .pricing-slider {
    overflow: hidden;
  }

  .pricing-grid {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    margin-bottom: 26px;
  }

  .pricing-card {
    flex: 0 0 100%;
    scroll-snap-align: start;
  }

  .pricing-grid::-webkit-scrollbar {
    display: none;
  }

  /* Pagination */
  .slider-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-top: 0px;
    margin-bottom: 30px;
  }

  .slider-dot {
    width: 6px;
    height: 6px;
    background: #415D4F;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
  }

  .slider-dot.active {
    background: var(--green-dark);
    width: 8px;
    height: 8px;
    border-radius: 100px;
  }

  .nav-links,
  .btn-outline-nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .footer .footer-inner-box {
    flex-wrap: wrap;
    justify-content: center;
  }

  .footer-brand {
    max-width: 100%;
  }

  .footer-brand-col {
    max-width: 100%;
  }

  .footer-brand p {
    margin: 15px auto 0;
    text-align: center;
  }

  .footer-logo {
    text-align: center;
  }

  .receive-disclaimer {
    display: none;
  }
}

/* ============================ RESPONSIVE â€” MOBILE â‰¤600px ============================ */
@media(max-width:575px) {
  .hero-eyebrow {
    font-size: 10px;
    line-height: 12px;
    max-width: 265px;
    margin: 0 auto 15px;
  }

  .hero-title,
  .section-title,
  .pricing-headline {
    line-height: 120%;
  }

  .hero-sub,
  .stat-label,
  .clause-sub,
  .receive-sub,
  .pricing-sub {
    font-size: 16px;
    line-height: 19px;
  }

  .hero-sub {
    margin: 0 auto 25px;
  }

  .btn-orange {
    font-size: 14px;
    line-height: 17px;
    padding: 10px 15px;
  }

  .hero-alt-link {
    font-size: 12px;
    line-height: 15px;
  }

  .hero-alt-link-icon {
    width: 12px;
  }

  .hero-actions {
    gap: 20px;
  }

  .hero-micro {
    font-size: 10px;
    line-height: 12px;
  }

  .stat-item {
    min-width: 100%;
    max-width: 100%;
    align-items: center;
    gap: 10px;
  }

  .stat-number {
    font-size: 40px;
    line-height: 48px;
  }

  .stat-label {
    text-align: center;
    max-width: 330px !important;
  }

  .stats-grid {
    gap: 60px;
  }

  .stats-quote {
    font-size: 16px;
    line-height: 19px;
  }

  .clause-section,
  .how-it-works,
  .what-you-receive,
  .pricing-section,
  .who-section,
  .faq-section,
  .about-section {
    padding: 50px 0;
  }

  .section-title {
    margin: 0 auto 15px;
  }

  .clause-sub-main {
    margin: 0 auto 40px;
  }

  .quote-card {
    padding: 20px 20px 20px 15px;
  }

  .quote-code {
    padding: 15px 10px;
    font-size: 14px;
    line-height: 18px;
    min-height: auto;
    margin-bottom: 20px;
  }

  .quote-note {
    font-size: 16px;
    line-height: 19px;
  }

  .clause-section-quote {
    font-size: 10px;
    line-height: 12px;
  }

  .steps-grid {
    margin: 30px 0 0;
    gap: 30px;
  }

  .step-card {
    padding: 20px 20px;
  }

  .step-num {
    font-size: 40px;
    line-height: 48px;
  }

  .step-card h3 {
    font-size: 18px;
    line-height: 22px;
    margin-top: 5px;
  }

  span.step-card-time {
    font-size: 14px;
    line-height: 17px;
  }

  .step-card p {
    font-size: 14px;
    line-height: 17px;
    margin-top: 0px;
  }

  .steps-note {
    margin: 20px 0 30px;
    font-size: 12px;
    line-height: 15px;
  }

  .btn-orange-icon {
    width: 14px;
  }

  .receive-sub {
    margin: 0 auto 40px;
  }

  .receive-item h4 {
    margin-bottom: 10px;
    font-size: 20px;
    line-height: 24px;
  }

  .report-card-header {
    padding: 15px 15px 15px;
    font-size: 20px;
    line-height: 24px;
  }

  .report-card-header span {
    max-width: 160px;
  }

  .badge-critical {
    padding: 8px 10px;
    font-size: 16px;
    line-height: 19px;
  }

  .report-subtitle {
    font-size: 17px;
    line-height: 21px;
    padding: 20px 28px 15px 15px;
  }

  .report-code-block {
    padding: 15px 10px;
    margin: 0 15px 0px;
    font-size: 16px;
    line-height: 19px;
    letter-spacing: -2%;
  }

  .report-row p {
    font-size: 16px;
    line-height: 19px;
  }

  .report-row {
    padding: 20px 15px;
  }

  .report-divider {
    margin: 0 15px;
  }

  .receive-layout {
    gap: 40px;
  }

  .receive-disclaimer-mobile {
    margin-top: 0px;
    font-size: 12px;
    line-height: 15px;
    text-align: center;
  }

  .pricing-sub {
    margin: 0px auto 20px;
  }

  .pricing-card {
    padding: 20px 20px 20px 15px;
  }

  .pricing-card h3 {
    font-size: 20px;
    line-height: 24px;
  }

  .pricing-tagline {
    font-size: 16px;
    line-height: 19px;
  }

  .pricing-tiers strong {
    font-size: 18px;
    line-height: 22px;
  }

  .pricing-footnote {
    font-size: 12px;
    line-height: 15px;
  }

  .pricing-footnote-box .pricing-footnote {
    margin-bottom: 20px;
  }

  .pricing-footnote-box .pricing-footnote:last-child {
    margin-bottom: 0;
  }

  .who-section .section-title {
    line-height: 120%;
  }

  .who-grid {
    margin-top: 25px;
    gap: 30px;
  }

  .who-card {
    padding: 20px 20px;
    gap: 15px;
  }

  .who-card h4 {
    font-size: 20px;
    line-height: 24px;
    margin-top: 5px;
  }

  .who-card p {
    font-size: 16px;
    line-height: 19px;
  }

  .faq-grid {
    margin-top: 30px;
    gap: 15px;
  }

  .faq-q {
    padding: 15px 15px;
  }

  .faq-q span:first-child {
    font-size: 16px;
    line-height: 19px;
  }

  .about-layout {
    margin-top: 40px;
    gap: 40px;
  }

  .about-avatar {
    width: 200px;
    height: 200px;
  }

  .about-right p {
    font-size: 16px;
    line-height: 19px;
    margin: 0 0 30px 0;
    text-align: center;
  }

  .credential-tags span {
    font-size: 14px;
    padding: 8px 15px;
    line-height: 17px;
  }

  .credential-tags {
    gap: 15px;
  }

  .about-quote {
    border-left: 3px solid #2B211F;
    padding: 0px 0 0px 10px;
  }

  .bottom-cta {
    padding: 50px 0 40px;
  }

  .bottom-cta-title {
    max-width: 290px;
    line-height: 120%;
  }

  .bottom-cta-sub {
    margin: 0 auto 25px;
    font-size: 16px;
    line-height: 19px;
  }

  .bottom-link {
    font-size: 12px;
    line-height: 15px;
  }

  .bottom-cta-actions {
    gap: 20px;
  }

  .bottom-micro {
    font-size: 11px;
    line-height: 13px;
  }

  .footer-logo {
    font-size: 20px;
    line-height: 24px;
  }

  .footer-inner-box {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-col h5 {
    margin-bottom: 25px;
    font-size: 20px;
    line-height: 24px;
  }

  .footer-bottom {
    padding: 20px 0;
  }

  .nav-links {
    display: none;
  }

  .nav-inner {
    padding: 0 20px;
  }

  .nav-logo {
    font-weight: 600;
    font-size: 18px;
    line-height: 22px;
  }
}

@media (max-width:390px) {

  .footer-col ul li a,
  .footer-brand p {
    font-size: 14px;
    line-height: 18px;
  }
}

@media (min-width: 768px) {
  .about-content {
    -webkit-line-clamp: unset;
  }

  .read-more-btn,
  .receive-disclaimer-mobile {
    display: none;
  }
}