@font-face {
    font-family: 'Fira Sans';
    src: url('../fonts/FiraSans-Regular.woff2') format('woff2'),
         url('../fonts/FiraSans-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}


@font-face {
    font-family: 'Fira Sans Book';
    src: url('../fonts/FiraSans-Book.woff2') format('woff2'),
         url('../fonts/FiraSans-Book.woff') format('woff');
    font-style: normal;
    font-weight: normal;
    }

@font-face {
    font-family: 'Fira Sans Bold';
    src: url('../fonts/FiraSans-Bold.woff2') format('woff2'),
        url('../fonts/FiraSans-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}


@font-face {
  font-family: 'Fira Sans Semibold';
  src: url('../fonts/FiraSans-SemiBold.woff2') format('woff2'),
      url('../fonts/FiraSans-SemiBold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Fira Sans Medium';
  src: url('../fonts/FiraSans-Medium.woff2') format('woff2'),
      url('../fonts/FiraSans-Medium.woff') format('woff');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

:root {
  --green-950: #062a17;
  --green-900: #073b20;
  --green-850: #004d29;
  --green-800: #005e2a;
  --green-700: #007e32;
  --green-600: #00983c;
  --green-500: #00ae2a;
  --green-100: #dff2e5;
  --green-050: #f2faf4;
  --orange-600: #d87800;
  --orange-500: #f39300;
  --orange-100: #fff0d7;
  --ink: #17211b;
  --ink-soft: #4a574e;
  --line: #d9e1db;
  --surface: #ffffff;
  --surface-muted: #f5f8f5;
  --shadow: 0 20px 55px rgba(6, 42, 23, 0.13);
  --shadow-soft: 0 10px 30px rgba(6, 42, 23, 0.08);
  --container: 1180px;
  --focus: #ffb340;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 112px;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--surface);
  font-family: "Fira Sans JEP", "Segoe UI", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.62;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button {
  font: inherit;
}

button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: #fff;
  background: var(--green-950);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.utility-bar {
  color: #fff;
  background: var(--green-950);
  font-size: 0.875rem;
}

.utility-content {
  min-height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.utility-content p {
  margin: 0;
}

.utility-content a {
  font-weight: 500;
  text-decoration: none;
}

.utility-content a:hover {
  text-decoration: underline;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  background: #007e32;
  border-bottom: 1px solid rgba(0, 126, 50, 0.14);
  backdrop-filter: blur(12px);
}

.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  width: 200px;
  height: auto;
  padding: 1rem 0rem;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 25px;
}

.main-nav > a:not(.button) {
  position: relative;
  color: #ffffff;
  font-size: 0.94rem;
  font-weight: 500;
  text-decoration: none;
}

.main-nav > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--green-700);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.main-nav > a:not(.button):hover::after,
.main-nav > a:not(.button):focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
}

.menu-toggle span:not(.sr-only) {
  width: 100%;
  height: 3px;
  margin-block: 3px;
  background: #606060;
  border-radius: 5px;
}

.button {
  font-family: 'Fira Sans Semibold';
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 20px;
  border: 2px solid transparent;
  border-radius: 5px;
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  color: #ffffff;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-small {
  min-height: 42px;
  padding: 9px 16px;
  font-size: 0.92rem;
}

.button-primary {
  color: #fff;
  background: #f39200;
  border-color: #f39200;
  border-radius: 8px;
}

.button-primary:hover {
  background: var(--green-800);
  border-color: var(--green-800);
}

.button-orange {
  color: #ffffff;
  background: var(--orange-500);
  border-color: var(--orange-500);
}

.button-orange:hover {
  background: #ffa315;
  border-color: #ffa315;
}

.button-dark {
  border-radius: 8px;
  color: #fff;
  background: #f39200;
  border-color: #f39200;
}

.button-dark:hover {
  background: #faae02;
  border-color: #faae02;
}

.button-block {
  width: 100%;
}

.text-link {
  display: inline-flex;
  align-items: center;
  padding-block: 8px;
  font-weight: 500;
  text-underline-offset: 5px;
}

.text-link-light {
  color: #606060;
}

.eyebrow,
.card-kicker,
.catalog-index,
.panel-label {
  font-family: 'Fira Sans Semibold';
  margin: 0 0 8px;
  color: #f39200;
  font-size: 15px;
  font-weight: 500;
  line-height: 17px;
  text-transform: uppercase;
}

.eyebrow-light {
  color: #f39200;
}

.hero {
  position: relative;
  overflow: hidden;
  color: #fff;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background-image: url('../assets/background-jepimpulsa.webp');
  background-size: cover;
  background-position: right;
}

.hero-grid {
  position: relative;
  z-index: 1;
  min-height: 650px;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(370px, 0.88fr);
  align-items: center;
  gap: clamp(48px, 7vw, 98px);
  padding-block: 76px 82px;
}

.hero-copy {
  max-width: 690px;
}

.hero h1 {
  font-family: 'Fira Sans Bold';
  max-width: 760px;
  margin: 0;
  font-size: 52px;
  letter-spacing: -0.048em;
  line-height: 54px;
  color: #606060;
}

.hero-lead {
  font-family: 'Fira Sans Book';
  max-width: 650px;
  margin: 26px 0 0;
  color: #606060;
  font-size: 20px;
  line-height: 22px;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 34px;
}

.hero-actions svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.hero-note {
  margin: 18px 0 0;
  color: rgba(255,255,255,.72);
  font-size: 0.86rem;
}

.hero-guide {
  padding: 32px;
  color: var(--ink);
  background: rgba(255,255,255,.98);
  border-top: 6px solid var(--orange-500);
  box-shadow: var(--shadow);
}

.hero-guide h2 {
  margin: 0 0 21px;
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.15;
}

.need-links {
  display: grid;
}

.need-links a {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 51px;
  color: var(--ink);
  border-top: 1px solid var(--line);
  font-weight: 500;
  text-decoration: none;
  transition: color 160ms ease, padding-left 160ms ease;
}

.need-links a:last-child {
  border-bottom: 1px solid var(--line);
}

.need-links a:hover {
  padding-left: 5px;
  color: var(--green-700);
}

.need-links span {
  min-width: 31px;
  color: var(--green-700);
  font-size: 0.78rem;
  letter-spacing: 0.09em;
}

.intro-strip {
  position: relative;
  z-index: 3;
  color: #fff;
  background: var(--green-700);
}

.intro-strip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.intro-strip-grid p {
  min-height: 112px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
  margin: 0;
  padding: 24px 32px;
  border-left: 1px solid rgba(255,255,255,.22);
}

.intro-strip-grid p:last-child {
  border-right: 1px solid rgba(255,255,255,.22);
}

.intro-strip-grid strong {
  font-size: 1.15rem;
  font-weight: 500;
}

.intro-strip-grid span {
  color: rgba(255,255,255,.78);
  font-size: 0.94rem;
}

.section {
  padding-block: clamp(76px, 9vw, 118px);
}

.section-tint {
  background: #f8f8f8;
}

.section-heading h2,
.product-copy h2,
.request-grid h2,
.closing-grid h2 {
  font-family: 'Fira Sans Bold';
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 2.75rem);
  line-height: 1.05;
  color: #606060;
}

.heading-split {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, .72fr);
  align-items: end;
  gap: 70px;
  margin-bottom: 45px;
}

.heading-split > p {
  font-family: 'Fira Sans Book';
  margin: 0 0 4px;
  color: #606060;
  font-size: 18px;
  line-height: 20px;
  text-align: justify;
}

.catalog-section {
  background: #fff;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.catalog-card {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  padding: 31px;
  border-radius: 15px;
  background: #f2f2f2;
  border: 1px solid #f2f2f2;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.catalog-card:hover {
  transform: translateY(-6px);
  border-color: #f39200;
  box-shadow: var(--shadow-soft);
}

.catalog-card-featured {
  color: #fff;
  background: #f2f2f2;
  border-color: #f2f2f2;
  border-radius: 15px;
}

.catalog-card-featured .catalog-index,
.catalog-card-featured .card-link {
  font-family: 'Fira Sans Semibold';
  color: #f39200;
}

.catalog-card-featured > p:not(.catalog-index) {
  color: rgba(255,255,255,.78);
}

.catalog-card-digital {
  background: #f2f2f2;
  border-top-color: #f2f2f2;
}

.catalog-card h3 {
  font-family: 'Fira Sans Semibold';
  color: #606060;
  margin: 6px 0 14px;
  font-size: 24px;
  font-weight: 500;
  line-height: 26px;
}

.catalog-card > p:not(.catalog-index) {
  font-family: 'Fira Sans Book';
  font-size: 15px;
  line-height: 17px;
  text-align: justify;
  margin: 0;
  color: #606060;
}

.card-link {
  font-family: 'Fira Sans Semibold';
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: auto;
  padding-top: 24px;
  color: #f39200;
}

.card-link span {
  font-size: 1.45rem;
  transition: transform 160ms ease;
}

.card-link:hover span {
  transform: translateX(5px);
}

.business-banner {
  padding: 0 0 clamp(70px, 8vw, 100px);
  background: #fff;
}

.business-banner img {
  width: 100%;
  height: auto;
  min-height: 220px;
  object-fit: cover;
}

.product-section {
  scroll-margin-top: 100px;
}

.product-hero {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(520px, 1.18fr);
  align-items: end;
  gap: clamp(44px, 7vw, 92px);
  padding-bottom: 44px;
  border-bottom: 1px solid var(--line);
}

.product-copy > p:last-child {
  font-family: 'Fira Sans Book';
  max-width: 620px;
  margin: 19px 0 0;
  color: #606060;
  font-size: 18px;
  line-height: 20px;
  text-align: justify;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.metric {
  min-height: 132px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  padding: 20px;
  background: #fff;
  border-radius: 15px;
}

.section:not(.section-tint) .metric {
  background: #f8f8f8;
}

.metric span {
  font-family: 'Fira Sans Semibold';
  color: #606060;
  font-size: 15px;
  line-height: 17px;
  text-transform: uppercase;
}

.metric strong {
  font-family: 'Fira Sans Book';
  color: #606060;
  font-size: 15px;
  line-height: 17px;
}

.product-body {
  display: grid;
  grid-template-columns: minmax(280px, .36fr) minmax(0, .64fr);
  align-items: start;
  gap: 30px;
  padding-top: 34px;
}

.benefit-panel {
  position: sticky;
  top: 114px;
  padding: 32px;
  color: #fff;
  background: #ffffff;
  border-radius: 15px;
}

.benefit-panel-dark {
  background: #f8f8f8;
}

.benefit-panel-orange {
  color: var(--green-950);
  background: #ffffff;
}

.benefit-panel .panel-label {
  color: #007e32;
}

.benefit-panel-orange .panel-label {
  color: var(--green-900);
}

.benefit-panel h3 {
  font-family: 'Fira Sans Bold';
  color: #606060;
  margin: 0;
  font-size: 18px;
  line-height: 20px;
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 25px 0 30px;
  padding: 0;
  list-style: none;
}

.check-list li {
  font-family: 'Fira Sans Book';
  font-size: 15px;
  line-height: 17px;
  color: #606060;
  position: relative;
  padding-left: 28px;
}

.check-list li::before {
  position: absolute;
  top: .44em;
  left: 0;
  width: 14px;
  height: 8px;
  border-bottom: 2px solid var(--orange-500);
  border-left: 2px solid var(--orange-500);
  content: "";
  transform: rotate(-45deg);
}

.benefit-panel-orange .check-list li::before {
  border-color: var(--green-900);
}

.detail-stack {
  display: grid;
  gap: 12px;
}

.detail-card {
  overflow: clip;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 15px;
}

.detail-card > summary {
  font-family: 'Fira Sans Bold';
  color: #606060;
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 22px;
  font-size: 18px;
  line-height: 20px;
  cursor: pointer;
  list-style: none;
}

.detail-card > summary::-webkit-details-marker,
.nested-faq summary::-webkit-details-marker {
  display: none;
}

.detail-card[open] > summary {
  color: #007e32;
  border-bottom: 1px solid var(--line);
}

.summary-icon {
  position: relative;
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
}

.summary-icon::before,
.summary-icon::after {
  position: absolute;
  top: 9px;
  left: 2px;
  width: 16px;
  height: 2px;
  background: currentColor;
  content: "";
  transition: transform 160ms ease;
}

.summary-icon::after {
  transform: rotate(90deg);
}

.detail-card[open] .summary-icon::after {
  transform: rotate(0);
}

.detail-content {
  padding: 26px 26px 30px;
}

.detail-content h3 {
  font-family: 'Fira Sans Semibold';
  color: #606060;
  margin: 0 0 11px;
  font-size: 15px;
  line-height: 17px;
}

.detail-content h3:not(:first-child) {
  margin-top: 25px;
}

.detail-content ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 0px;
}
.detail-content ul li{
  list-style: none;
  position: relative; 
  padding-left: 25px;  
  font-family: 'Fira Sans Book';
  font-size: 15px;
  line-height: 17px;
  color: #606060;
  text-align: justify;
}
.detail-content ul li::before{
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 0rem; 
  width: 15px;
  height: 15px;
  background-image: url('../assets/icon-checklist.svg');
  background-size: contain;
  background-repeat: no-repeat;
}
.requirement-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 38px;
}

.feature-list {
  margin: 0;
}

.feature-list > div {
  display: grid;
  grid-template-columns: minmax(145px, .28fr) minmax(0, .72fr);
  gap: 24px;
  padding-block: 15px;
  border-bottom: 1px solid var(--line);
}

.feature-list > div:first-child {
  padding-top: 0;
}

.feature-list > div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.feature-list dt {
  font-family: 'Fira Sans Medium';
  color: #007e32;
  font-size: 15px;
  line-height: 17px;
}

.feature-list dd {
  font-family: 'Fira Sans Book';
  font-size: 15px;
  line-height: 17px;
  color: #606060;
  margin: 0;
}

.nested-faq {
  padding-top: 8px;
}

.nested-faq details {
  border-bottom: 1px solid var(--line);
}

.nested-faq details:last-child {
  border-bottom: 0;
}

.nested-faq summary {
  font-family: 'Fira Sans Medium';
  font-size: 15px;
  color: #606060;
  position: relative;
  padding: 17px 35px 17px 0;
  cursor: pointer;
  list-style: none;
}

.nested-faq summary::after {
  position: absolute;
  top: 16px;
  right: 4px;
  color: var(--green-700);
  content: "+";
  font-size: 1.35rem;
  font-weight: 300;
}

.nested-faq details[open] summary::after {
  content: "−";
}

.nested-faq p {
  font-family: 'Fira Sans Book';
  font-size: 15px;
  line-height: 17px;
  margin: -2px 0 18px;
  color: #606060;
}

.digital-section {
  color: #fff;
  background:#f2f2f2;
}

.digital-section .product-hero {
  border-color: rgba(255,255,255,.2);
}

.digital-section .product-copy > p:last-child {
  color: #606060;
}

.metric-grid-light .metric {
  color: #fff;
  background: #ffffff !important;
  border-color: rgba(255,255,255,.18);
  border-top-color: var(--orange-500);
}

.metric-grid-light .metric span {
  color: #606060;
}

.detail-stack-light {
  color: var(--ink);
}

.request-section {
  background: #fff;
}

.request-grid {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  align-items: start;
  gap: clamp(55px, 9vw, 120px);
}

.request-grid > div > p:last-child {
  font-family: 'Fira Sans Book';
  font-size: 15px;
  color: #606060;
  line-height: 17px;
  max-width: 510px;
  margin: 22px 0 0;
  text-align: justify;
}

.step-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.step-list li {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 22px;
  padding: 25px 0;
  border-bottom: 1px solid var(--line);
}

.step-list li:first-child {
  padding-top: 0;
}

.step-list span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--green-700);
  border-radius: 50%;
  font-weight: 500;
}

.step-list h3 {
  font-family: 'Fira Sans Medium';
  font-size: 15px;
  line-height: 17px;
  margin: 0 0 3px;
  color: #606060;
}

.step-list p {
  font-family: 'Fira Sans Book';
  font-size: 15px;
  line-height: 17px;
  margin: 0;
  color: #606060;
}

.closing-cta {
  padding-block: 66px;
  color: #fff;
  background: #f2f2f2;
}

.closing-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 60px;
}

.closing-grid h2 {
  font-size: clamp(2.15rem, 4vw, 3.5rem);
}

.closing-grid p:last-child {
  font-family: 'Fira Sans Book';
  font-size: 15px;
  line-height: 17px;
  max-width: 700px;
  margin: 16px 0 0;
  color: #606060;
}

.closing-actions {
  min-width: 225px;
  display: grid;
  justify-items: stretch;
  gap: 10px;
  text-align: center;
}

.site-footer {
  padding: 58px 0 24px;
  color: #dce8df;
  background: #007e32;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr .7fr .7fr;
  gap: 70px;
}

.footer-grid img {
  width:220px;
  padding: 8px;
}

.footer-grid p {
  font-family: 'Fira Sans Book';
  font-size: 15px;
  line-height: 17px;
  max-width: 390px;
  margin: 20px 0 0;
  color: #ffffff;
}

.footer-grid h2 {
  font-family: 'Fira Sans Semibold';
  margin: 0 0 13px;
  color: #fff;
  font-size: 15px;
  line-height: 17px;
  text-transform: uppercase;
}

.footer-grid a {
  font-family: 'Fira Sans Book';
  font-size: 15px;
  display: block;
  width: fit-content;
  margin: 8px 0;
  color: #ffffff;
  text-decoration: none;
}

.footer-grid a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 38px;
  margin-top: 46px;
  padding-top: 22px;
  color: #91a598;
  border-top: 1px solid rgba(255,255,255,.12);
  font-size: .82rem;
}

.footer-bottom p {
  font-family: 'Fira Sans Book';
  font-size: 13px;
  line-height: 15px;
  color: #ffffff;
  margin: 0;
}

.footer-bottom p:last-child {
  max-width: 700px;
  text-align: right;
}

.mobile-cta {
  display: none;
}
.eyebrow-light img{
  width: 400px;
  height: auto;
  margin-bottom: 1.5rem;
}
@media (max-width: 1080px) {
  .main-nav {
    gap: 16px;
  }

  .main-nav > a:not(.button) {
    font-size: .88rem;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(340px, .8fr);
    gap: 45px;
  }

  .product-hero {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .product-copy {
    max-width: 760px;
  }
}

@media (max-width: 980px) {
  html {
    scroll-padding-top: 78px;
  }

  .utility-bar {
    display: none;
  }

  .site-header {
    top: 0;
  }

  .nav-wrap {
    min-height: 70px;
  }

  .menu-toggle {
    display: grid;
  }

  .main-nav {
    position: fixed;
    inset: 70px 0 auto;
    max-height: calc(100vh - 70px);
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 18px 20px 28px;
    overflow-y: auto;
    background: #fff;
    border-top: 1px solid var(--line);
    box-shadow: 0 18px 35px rgba(6,42,23,.13);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav > a:not(.button) {
    padding: 15px 2px;
    border-bottom: 1px solid var(--line);
    font-size: 1rem;
    color: #606060;
  }

  .main-nav > a:not(.button)::after {
    display: none;
  }

  .main-nav .button {
    margin-top: 18px;
  }

  .hero-grid {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 46px;
    padding-block: 70px;
  }

  .hero-copy {
    max-width: 740px;
  }

  .hero-guide {
    max-width: 650px;
  }

  .catalog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-body {
    grid-template-columns: 1fr;
  }

  .benefit-panel {
    position: static;
  }

  .request-grid {
    grid-template-columns: 1fr;
  }

  .closing-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .closing-actions {
    max-width: 300px;
  }
}

@media (max-width: 680px) {
  body {
    padding-bottom: 64px;
  }

  .container {
    width: min(calc(100% - 30px), var(--container));
  }

  .brand img {
    width: 98px;
  }

  .hero-grid {
    padding-block: 54px;
  }

  .hero h1 {
    font-size: clamp(2.5rem, 13vw, 3.7rem);
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 8px;
  }

  .hero-actions .button,
  .hero-actions .text-link {
    width: 100%;
    justify-content: center;
  }

  .hero-guide {
    padding: 25px 21px;
  }

  .intro-strip-grid {
    grid-template-columns: 1fr;
  }

  .intro-strip-grid p {
    min-height: 0;
    padding: 20px 5px;
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.22);
    border-left: 0;
  }

  .intro-strip-grid p:last-child {
    border-right: 0;
    border-bottom: 0;
  }

  .section {
    padding-block: 72px;
  }

  .heading-split {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 32px;
  }

  .catalog-grid {
    grid-template-columns: 1fr;
  }

  .catalog-card {
    min-height: 210px;
    padding: 26px;
  }

  .business-banner {
    padding-bottom: 62px;
  }

  .business-banner .container {
    width: 100%;
  }

  .business-banner img {
    min-height: 85px;
    object-position: 21% center;
  }

  .product-hero {
    gap: 34px;
    padding-bottom: 34px;
  }

  .metric-grid {
    grid-template-columns: 1fr;
  }

  .metric {
    min-height: 104px;
    gap: 13px;
  }

  .benefit-panel {
    padding: 27px 23px;
  }

  .detail-card > summary {
    padding-inline: 18px;
  }

  .detail-content {
    padding: 23px 19px 27px;
  }

  .requirement-columns {
    grid-template-columns: 1fr;
    gap: 27px;
  }

  .feature-list > div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .footer-bottom p:last-child {
    text-align: left;
  }

  .mobile-cta {
    position: fixed;
    z-index: 120;
    right: 0;
    bottom: 0;
    left: 0;
    height: 64px;
    display: grid;
    place-items: center;
    color: var(--green-950);
    background: var(--orange-500);
    border-top: 1px solid rgba(6,42,23,.16);
    font-weight: 500;
    text-decoration: none;
    box-shadow: 0 -8px 25px rgba(6,42,23,.15);
  }
    .hero-pattern{
    background-position: center;
  }
  .catalog-card h3{
    font-size: 20px;
  }
  .eyebrow-light img{
  width: 300px;
}
.section-heading h2, .product-copy h2, .request-grid h2, .closing-grid h2{
  font-size: clamp(1.6rem, 4vw, 2.75rem);
}
.eyebrow, .card-kicker, .catalog-index, .panel-label{
  text-align: center;
}
.section-heading h2, .product-copy h2, .request-grid h2, .closing-grid h2{
  text-align: center;
}
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}

@media print {
  .utility-bar,
  .site-header,
  .hero-actions,
  .button,
  .closing-cta,
  .mobile-cta,
  .site-footer {
    display: none !important;
  }

  body {
    padding: 0;
    color: #000;
  }

  .hero,
  .digital-section {
    color: #000;
    background: #fff;
  }

  .hero-grid,
  .product-body,
  .product-hero {
    display: block;
  }

  .hero-guide,
  .benefit-panel,
  .catalog-card,
  .metric,
  .detail-card {
    color: #000;
    background: #fff !important;
    box-shadow: none;
  }

  .detail-card {
    break-inside: avoid;
  }

  .detail-card > .detail-content {
    display: block !important;
  }
}
