@font-face {
  font-family: "Anton";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/fonts/anton-latin.23aab0b2692a.woff2") format("woff2");
}

@font-face {
  font-family: "DM Sans";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("/assets/fonts/dm-sans-latin.468d56b6b25b.woff2") format("woff2");
}

:root {
  --ink: #11271a;
  --forest: #0d3b22;
  --forest-deep: #082c19;
  --green: #1ea557;
  --green-bright: #49d37d;
  --lime: #a9e783;
  --teal: #0ea895;
  --cream: #f3f5ee;
  --paper: #ffffff;
  --gold: #f4b41b;
  --orange: #ff4b12;
  --yellow: #ffcd3f;
  --border: #dce5d2;
  --shadow: 0 5px 0 rgba(13, 59, 34, 0.11);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "DM Sans", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { color: inherit; }
img { max-width: 100%; }
::selection { color: var(--forest); background: var(--lime); }

.container { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0, 0, 0, 0); }
.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 12px 18px;
  transform: translateY(-160%);
  border: 3px solid var(--ink);
  border-radius: 8px;
  color: var(--ink);
  background: var(--yellow);
  font-weight: 800;
  transition: transform .15s ease;
}
.skip-link:focus { transform: translateY(0); }
:where(a, button, input, textarea, select, summary, [tabindex]):focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 4px;
  box-shadow: 0 0 0 2px var(--ink);
}
#main-content:focus { outline: none; box-shadow: none; }
.dotted-dark { background-image: radial-gradient(rgba(166, 232, 156, .11) 1px, transparent 1px); background-size: 20px 20px; }
.dotted-light { background-image: radial-gradient(rgba(13, 59, 34, .09) 1px, transparent 1px); background-size: 20px 20px; }
.dotted-white { background-image: radial-gradient(rgba(13, 59, 34, .07) 1px, transparent 1px); background-size: 20px 20px; }

.announcement {
  min-height: 37px;
  padding: 7px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #041f10;
  background: #22a654;
  font-size: 13px;
  font-weight: 700;
}
.announcement__badge {
  padding: 2px 8px;
  border-radius: 99px;
  color: #baf1a1;
  background: #0c4927;
  font-size: 10px;
  letter-spacing: .08em;
}
.announcement a { text-decoration: underline; text-underline-offset: 3px; }
.nav-shell {
  height: 72px;
  padding-inline: max(24px, calc((100vw - 1180px) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #e5f2db;
  background: #315b43;
}
.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand__mark {
  width: 33px;
  height: 33px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #07351d;
  background: var(--green);
  box-shadow: 0 3px 0 rgba(0, 0, 0, .16);
  font-size: 23px;
  font-weight: 800;
}
.brand span:last-child { display: flex; flex-direction: column; line-height: 1; }
.brand strong, .brand small { font-family: "Anton", Impact, sans-serif; font-weight: 400; letter-spacing: .06em; }
.brand strong { font-size: 15px; }
.brand small { margin-top: 4px; color: #dcebd6; opacity: 1; font-size: 9px; letter-spacing: .18em; }
.primary-nav { display: flex; align-items: center; gap: 29px; font-size: 14px; font-weight: 600; }
.primary-nav > a:not(.button) { opacity: .78; transition: opacity .2s; }
.primary-nav > a:hover { opacity: 1; }
.menu-toggle { display: none; border: 0; background: none; }
.menu-toggle span { width: 24px; height: 2px; display: block; margin: 5px; background: currentColor; }

.button {
  --button-bg: var(--green);
  --button-hover-bg: var(--forest);
  min-height: 48px;
  padding: 0 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--green);
  border-radius: 12px;
  color: #fff;
  background: linear-gradient(to right, var(--button-hover-bg) 0 50%, var(--button-bg) 50% 100%);
  background-size: 220% 100%;
  background-position: 95% 0;
  font-family: "Anton", Impact, sans-serif;
  font-size: 16px;
  letter-spacing: .025em;
  text-transform: uppercase;
  transition: background-position .32s ease;
}
.button:hover { background-position: 0 0; }
.button--small { min-height: 43px; padding-inline: 22px; border-radius: 11px; font-family: "DM Sans", sans-serif; font-size: 14px; font-weight: 700; text-transform: none; }
.button--large { min-height: 61px; padding-inline: 29px; font-size: 20px; }
.button--outline { border-color: rgba(169, 231, 131, .32); color: #e7f4df; background: transparent; font-family: "DM Sans", sans-serif; font-size: 14px; font-weight: 700; text-transform: none; }
.button--outline-dark { border-color: #b8d69f; color: var(--ink); background: transparent; font-family: "DM Sans", sans-serif; font-size: 14px; font-weight: 700; text-transform: none; }
.button--block { width: 100%; }

.hero {
  position: relative;
  overflow: hidden;
  color: #e9f4e3;
  background-color: #0f5833;
}
.hero::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 72px;
  background-color: var(--forest-deep);
  background-image: radial-gradient(rgba(166, 232, 156, .11) 1px, transparent 1px);
  background-size: 20px 20px;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 72' preserveAspectRatio='none'%3E%3Cpath fill='white' d='M0 43C120 37 210 34 318 36C455 39 570 48 700 51C835 54 970 52 1080 46C1130 43 1165 40 1200 39V72H0Z'/%3E%3C/svg%3E") bottom / 100% 72px no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 72' preserveAspectRatio='none'%3E%3Cpath fill='white' d='M0 43C120 37 210 34 318 36C455 39 570 48 700 51C835 54 970 52 1080 46C1130 43 1165 40 1200 39V72H0Z'/%3E%3C/svg%3E") bottom / 100% 72px no-repeat;
}
.hero-grid {
  min-height: 700px;
  padding-block: 92px 108px;
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  align-items: center;
  gap: 72px;
}
.hero-logo { width: 22px; height: auto; display: block; margin-right: 5px; }
.pill {
  width: fit-content;
  padding: 7px 15px;
  display: inline-flex;
  align-items: center;
  border-radius: 99px;
  color: #2c824a;
  background: #e5f3db;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .06em;
}
.pill--dark { border: 1px solid rgba(174, 232, 138, .3); color: #a9dc91; background: rgba(12, 56, 30, .78); }
.hero h1, .section-heading h2, .feature h3, .steps h3, .cta-card h3, .site-footer h2 {
  margin: 0;
  font-family: "Anton", Impact, sans-serif;
  font-weight: 400;
  line-height: .96;
  letter-spacing: -.015em;
  text-transform: uppercase;
}
.hero h1 { margin-top: 24px; color: #fff; font-size: clamp(60px, 6vw, 87px); }
.hero h1 span { display: block; }
.accent-text {
  color: var(--green);
  background-image: linear-gradient(105deg, #b8ed8c 0%, #59db82 22%, #1ea557 45%, #0ea895 68%, #72dc78 84%, #b8ed8c 100%);
  background-size: 250% 100%;
  background-position: 0 50%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: accent-green-cycle 4s ease-in-out infinite alternate;
}
@keyframes accent-green-cycle {
  to { background-position: 100% 50%; }
}
.hero h1 .accent-text { position: relative; width: fit-content; }
.hero h1 .accent-text::after {
  content: "";
  position: absolute;
  right: -2%;
  bottom: -9px;
  left: -1%;
  height: 14px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 14' preserveAspectRatio='none'%3E%3Cpath d='M3 8C35 4 58 10 91 6C124 2 151 9 197 5' fill='none' stroke='%2359d981' stroke-width='5' stroke-linecap='round'/%3E%3Cpath d='M5 10C38 7 63 11 94 8C128 5 155 10 195 7' fill='none' stroke='%23a9e783' stroke-width='1.5' stroke-linecap='round' opacity='.55'/%3E%3C/svg%3E") center / 100% 100% no-repeat;
  pointer-events: none;
  transform: rotate(-.4deg);
}
.hero-copy > p { max-width: 560px; margin: 25px 0 31px; color: #c7d9c9; font-size: 18px; line-height: 1.55; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.rating { margin-top: 27px; display: flex; align-items: center; gap: 14px; font-size: 13px; }
.rating span, .stars { color: var(--gold); font-size: 19px; letter-spacing: .05em; }
.rating strong { font-weight: 600; }
.hero-visual { position: relative; min-width: 0; aspect-ratio: 634 / 597; }
.hero-visual > img { position: absolute; display: block; height: auto; border-radius: 10px; }
.hero-merchandiser {
  z-index: 1;
  top: 9%;
  right: 5%;
  width: 79%;
  transform: rotate(1.5deg);
  border-radius: 10px;
}
.hero-performance {
  z-index: 4;
  top: 1%;
  left: 6%;
  width: 25%;
}
.hero-automation {
  z-index: 5;
  bottom: 7%;
  left: 5%;
  width: 40%;
}
.hero-product {
  z-index: 3;
  right: 15%;
  bottom: 10%;
  width: 32%;
  transform: rotate(-1deg);
}
.hero-float {
  filter: drop-shadow(0 17px 19px rgba(0, 31, 14, .24));
  animation: hero-asset-float 4.8s ease-in-out infinite;
  will-change: translate;
}
.hero-performance { animation-delay: -.8s; }
.hero-product { filter: drop-shadow(0 25px 32px rgba(0, 31, 14, .38)); animation-delay: -1.9s; animation-duration: 5.4s; }
.hero-automation { animation-delay: -3s; animation-duration: 5.8s; }
@keyframes hero-asset-float {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -5px; }
}

.logo-strip { padding: 52px 0 62px; color: #9eb59e; background-color: var(--forest-deep); }
.logo-strip h2 { margin: 0 0 25px; text-align: center; font-size: 11px; letter-spacing: .17em; }
.logo-strip .container > div { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.logo-strip span {
  min-height: 77px;
  padding: 10px;
  display: grid;
  place-items: center;
  border: 5px solid #fff;
  border-radius: 12px;
  background: rgba(255, 255, 255, .03);
  background: #ffffff;
}
@keyframes logo-border-switch {
  from { border-color: var(--lime); }
  to { border-color: #fff; }
}
/* .logo-strip span.is-switching { animation: logo-border-switch .7s ease-out; } */
.logo-strip img { width: auto; height: auto; object-fit: contain; opacity: 1; transition: opacity .35s ease; }
.logo-strip img.is-changing { opacity: 0; }
.logo-strip span:nth-child(n+6) { grid-column: auto; }

.section { padding-block: 88px; }
.section-heading { margin: 0 auto 48px; text-align: center; }
.section-heading .pill { margin-bottom: 28px; }
.section-heading h2 { font-size: clamp(46px, 5vw, 70px); }
.section-heading p { max-width: 680px; margin: 22px auto 0; color: #58665c; font-size: 17px; }
.stats { background-color: var(--cream); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stat-card {
  position: relative;
  overflow: hidden;
  min-height: 180px;
  padding: 30px 28px;
  border: 1px solid #e2e3d6;
  border-radius: 17px;
  background: #fff;
  box-shadow: var(--shadow);
}
.stat-card::before { content: ""; position: absolute; top: 0; right: 0; left: 0; height: 5px; background: var(--green); }
.stat-card > strong { color: var(--green); font-family: "Anton", Impact, sans-serif; font-size: 54px; font-weight: 400; line-height: 1; }
.stat-card h3 { margin: 11px 0 4px; font-size: 14px; }
.stat-card p { margin: 0; color: #899288; font-size: 12px; }
.stat-card--lime::before { background: #55d987; }
.stat-card--teal::before { background: var(--teal); }
.stat-card--teal > strong { color: var(--teal); }
.stat-card--gold::before { background: var(--gold); }
.stat-card--gold > strong { color: #db9900; }

.case-study-section { padding: 72px 0; background: #fff; }
.case-study-section--afterFeatures { background: #fff; }
.case-study-card {
  max-width: 1020px;
  margin-inline: auto;
  overflow: hidden;
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  border: 1px solid rgba(169,231,131,.25);
  border-radius: 19px;
  color: #e8f4e0;
  background-color: var(--forest);
  box-shadow: 0 14px 30px rgba(13,59,34,.14);
}
.case-study-section--afterStats { padding-top: 0; }
.case-study-card--teal { background-color: #07574d; }
.case-study-card--flip { grid-template-columns: 1.22fr .78fr; }
.case-study-card--flip .case-study-card__media { order: 2; }
.case-study-card--flip .case-study-card__copy { order: 1; }
.case-study-card__media { min-height: 340px; overflow: hidden; background: #e4eadf; }
.case-study-card__media img { width: 100%; height: 100%; display: block; object-fit: cover; object-position: top; max-height: 400px; }
.case-study-card__media--top img { object-position: center; }
.case-study-card__copy { padding: 32px 38px 34px; display: flex; flex-direction: column; align-items: flex-start; }
.case-study-card__copy h2 {
  margin: 0;
  color: #fff;
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(32px, 3.4vw, 43px);
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}
.case-study-card__copy h2 span { display: block; }
.case-study-card__copy > p { margin: 16px 0 18px; color: #c6dabe; font-size: 14px; line-height: 1.55; }
.case-study-card__result { width: 100%; padding: 13px 0; display: flex; align-items: center; gap: 14px; border-top: 1px solid rgba(169,231,131,.24); }
.case-study-card__result strong { color: var(--green-bright); font-family: "Anton", Impact, sans-serif; font-size: 43px; font-weight: 400; line-height: .9; white-space: nowrap; }
.case-study-card__result span { max-width: 230px; color: #dcebd6; font-size: 12px; font-weight: 700; line-height: 1.35; }
.case-study-card__link {
  margin-top: auto;
  color: #fff;
  font-family: "Anton", Impact, sans-serif;
  font-size: 15px;
  letter-spacing: .035em;
  text-underline-offset: 5px;
  text-transform: uppercase;
}
.case-study-card__link:hover { color: var(--lime); }

.features { padding-bottom: 135px; background-color: #fff; }
.features .section-heading { margin-bottom: 85px; }
.feature-list { display: flex; flex-direction: column; gap: 150px; }
.feature { display: grid; grid-template-columns: 1fr 1.08fr; align-items: center; gap: 68px; }
.feature--flip .feature-copy { order: 2; }
.feature--flip .feature-visual { order: 1; }
.feature-pill {
  padding: 8px 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 99px;
  color: #fff;
  background: var(--green);
  font-family: "Anton", Impact, sans-serif;
  letter-spacing: .05em;
}
.feature-pill b { margin-left: 5px; padding: 3px 5px; border-radius: 4px; color: #bff59d; background: var(--forest); font-family: "DM Sans", sans-serif; font-size: 8px; }
.feature-pill--teal { background: var(--teal); }
.feature-pill--olive { background: #5b9f12; }
.feature-pill--lime { color: var(--ink); background: #53d982; }
.feature h3 { margin-top: 20px; font-size: clamp(39px, 4vw, 55px); }
.feature-copy > p { margin: 21px 0; color: #56635a; line-height: 1.5; }
.feature ul { margin: 0; padding: 0; display: grid; gap: 13px; list-style: none; }
.feature li { display: flex; gap: 11px; color: var(--green); }
.feature li span { color: #3b493f; }
.feature-visual {
  min-width: 0;
  overflow: hidden;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 22px 40px rgba(30, 70, 45, .13);
}
.feature-image {
  width: 100%;
  border: 3px solid #1ea557;
  height: auto;
  display: block;
  border-radius: inherit;
}

.app-window {
  position: relative;
  padding: 17px;
  border: 1px solid #cadfc2;
  border-radius: 18px;
  color: var(--ink);
  background: #fff;
  box-shadow: 0 22px 40px rgba(30, 70, 45, .12);
  font-size: 12px;
}
.window-bar, .panel-heading { min-height: 35px; display: flex; align-items: center; gap: 6px; }
.window-bar i { width: 10px; height: 10px; border-radius: 50%; background: #ed655c; }
.window-bar i:nth-child(2) { background: #f4bd4f; }
.window-bar i:nth-child(3) { background: #55c16a; }
.window-bar span { color: #879187; }
.window-bar strong { margin-left: auto; }
.product-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.product-card { overflow: hidden; border: 1px solid #dce4d6; border-radius: 9px; background: #f6f8f2; }
.product-card > span { margin: 7px; padding: 3px 7px; display: inline-block; border-radius: 99px; color: #27834b; background: #dff2d6; font-size: 8px; font-weight: 700; }
.product-card:nth-child(2) > span { color: #c34c4e; background: #fbe1e1; }
.product-card:nth-child(3) > span { color: #4c74bf; background: #ece7ff; }
.product-card:nth-child(4) > span { color: #ac7c07; background: #fff0bf; }
.product-image { height: 115px; display: grid; place-items: center; color: #8a958b; background: #dde8d2; font-size: 25px; }
.product-card:nth-child(2) .product-image { background: #939c92; }
.product-card:nth-child(3) .product-image { background: #f0efef; }
.product-card:nth-child(4) .product-image { background: #eef0e6; }
.product-image small { display: block; margin-top: -35px; font-size: 9px; }
.product-card > strong, .product-card > small { padding-inline: 9px; display: block; }
.product-card > strong { padding-top: 8px; font-size: 10px; }
.product-card > small { padding-block: 4px 9px; color: #758076; font-size: 7px; }
.tool-rail { position: absolute; top: 60px; right: -14px; padding: 7px; border-radius: 10px; background: #f7f9f4; box-shadow: 0 5px 15px rgba(0, 0, 0, .12); color: #78877b; line-height: 2.2; text-align: center; }
.panel-heading { justify-content: space-between; }
.panel-heading > span { padding: 5px 8px; border-radius: 7px; color: #389550; background: #edf7e8; font-size: 9px; }
.automation-steps { display: grid; gap: 7px; }
.automation-steps div { padding: 10px; border: 1px solid #d7e7ce; border-radius: 8px; background: #f4f8ef; color: #677267; }
.automation-steps b { width: 22px; height: 22px; margin-right: 9px; display: inline-grid; place-items: center; border-radius: 50%; color: #39a458; background: #e4f3db; }
.automation-options { margin-top: 9px; padding: 12px; border: 1px solid #d7e7ce; border-radius: 8px; background: #f4f8ef; }
.automation-options small { color: #8a9288; line-height: 2.5; }
.automation-options em { padding: 3px 7px; border-radius: 4px; color: #258a47; background: #d8efc9; font-style: normal; font-weight: 700; }
.panel-footer { padding-top: 12px; display: flex; align-items: center; justify-content: space-between; color: #687468; font-size: 10px; }
.panel-footer button { padding: 8px 11px; border: 0; border-radius: 7px; color: #54714f; background: #eef1e3; font-size: 9px; font-weight: 700; }
.score { margin-top: 5px; padding: 12px; display: flex; gap: 13px; align-items: center; border-radius: 10px; background: #e2f2ef; }
.score > b { width: 55px; height: 55px; display: grid; place-items: center; border: 8px solid var(--teal); border-radius: 50%; color: var(--teal); }
.score span { display: flex; flex-direction: column; font-size: 13px; font-weight: 700; }
.score small { color: #85918a; font-weight: 400; }
.metrics { margin-top: 10px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.metrics div { padding: 9px; display: flex; flex-direction: column; border-radius: 8px; background: #f2f5ed; }
.metrics small { color: #879087; }
.metrics b { font-family: "Anton", Impact, sans-serif; font-size: 23px; font-weight: 400; }
.chart { height: 95px; margin-top: 8px; }
.chart svg { width: 100%; height: 100%; overflow: visible; }
.chart path { fill: rgba(14, 168, 149, .12); }
.chart polyline { fill: none; stroke: var(--teal); stroke-width: 3; }
.insight { position: absolute; bottom: -10px; left: -20px; padding: 10px; display: flex; flex-direction: column; gap: 5px; border-radius: 8px; background: #fff; box-shadow: 0 10px 20px rgba(0, 0, 0, .12); }
.insight span { padding: 4px 7px; border-radius: 4px; color: #c2554d; background: #fee4df; font-size: 8px; }
.insight span:last-child { color: #9f770d; background: #fff0bd; }
.variants { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.variants > div { position: relative; padding: 11px; border: 1px solid #d8e3d1; border-radius: 10px; }
.variant-image { height: 155px; margin: 10px 0; display: grid; place-items: center; color: #89928a; background: #f2f2f2; font-size: 28px; }
.variant-image span { margin-top: -50px; font-size: 9px; }
.bar { height: 12px; margin-right: 24px; overflow: hidden; border-radius: 3px; background: #e1e8dd; }
.bar i { height: 100%; display: block; background: var(--green); }
.variants > div:nth-child(2) .bar i { background: #ef6258; }
.variants > div > b { position: absolute; right: 8px; bottom: 10px; color: var(--green); font-family: "Anton", Impact, sans-serif; font-size: 18px; font-weight: 400; }
.variants > div:nth-child(2) > b { color: #dd534a; }
.test-result { margin-top: 12px; padding: 13px; border-radius: 8px; color: #2b7643; background: #e4f2d9; font-weight: 700; }

.video-showcase { padding-top: 0; padding-bottom: 120px; background: #fff; }
.video-showcase__trigger {
  width: min(1300px, 100%);
  margin: 0 auto;
  padding: 0;
  overflow: hidden;
  display: block;
  border: 0;
  border-radius: 24px;
  color: inherit;
  background: #000;
  box-shadow: 0 24px 50px rgba(13,59,34,.3);
  cursor: pointer;
}
.video-showcase__preview {
  position: relative;
  aspect-ratio: 16 / 9;
  display: block;
  overflow: hidden;
  background: #000;
}
.video-showcase__preview video { width: 100%; height: 100%; display: block; object-fit: cover; pointer-events: none; }
.video-showcase__play {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  width: 88px;
  height: 88px;
  padding-left: 6px;
  display: grid;
  place-items: center;
  transform: translate(-50%, -50%);
  border: 2px solid rgba(255,255,255,.55);
  border-radius: 50%;
  color: var(--forest);
  background: var(--green-bright);
  font-size: 29px;
  transition: transform .25s, background-color .25s;
}
.video-showcase__trigger:hover .video-showcase__play { transform: translate(-50%, -50%) scale(1.07); background: var(--lime); }
.video-modal {
  width: min(1120px, calc(100% - 32px));
  max-width: none;
  padding: 0;
  overflow: visible;
  border: 0;
  background: transparent;
}
.video-modal::backdrop { background: rgba(3,20,10,.88); backdrop-filter: blur(5px); }
.video-modal__inner { position: relative; }
.video-modal video { width: 100%; max-height: calc(100vh - 80px); display: block; border-radius: 16px; background: #000; }
.video-modal__close {
  position: absolute;
  z-index: 2;
  top: -18px;
  right: -18px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 2px solid #dcebd6;
  border-radius: 50%;
  color: var(--forest);
  background: var(--green-bright);
  font-size: 27px;
  line-height: 1;
  cursor: pointer;
}

.steps { color: #d6e4d4; background-color: var(--forest); }
.section-heading--dark h2 { color: #fff; }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); align-items: start; gap: 22px; }
.steps-grid article { min-height: 235px; padding: 34px; border: 1px solid rgba(128, 203, 137, .23); border-radius: 18px; background: rgba(5, 42, 21, .72); }
.steps-grid article:nth-child(2) { margin-top: 35px; }
.steps-grid article:nth-child(3) { margin-top: 70px; }
.steps-grid strong { color: var(--green-bright); font-family: "Anton", Impact, sans-serif; font-size: 45px; font-weight: 400; }
.steps-grid h3 { margin-top: 17px; color: #fff; font-size: 24px; }
.steps-grid p { color: #9eb1a0; font-size: 14px; line-height: 1.45; }

.reviews { background-color: #fff; }
.rating--center { margin: 0 0 23px; justify-content: center; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); align-items: start; gap: 24px; }
.reviews-grid article { box-shadow: 0 24px 35px rgba(13, 59, 34, .1); position: relative; isolation: isolate; overflow: hidden; min-height: 280px; padding: 30px; border: 1px solid #dce5d4; border-top: 4px solid var(--green); border-radius: 16px; background: #fff; }
.reviews-grid article::before { content: ""; position: absolute; z-index: -2; inset: 0; background-image: var(--review-image); background-position: var(--review-position, center); background-size: cover; background-repeat: no-repeat; opacity: .32; filter: brightness(1.65) saturate(.65); transform: scale(1.04); }
.reviews-grid article::after { content: ""; position: absolute; z-index: -1; inset: 0; background: rgba(255, 255, 255, .58); }
.reviews-grid article:nth-child(2) { margin-top: 42px; border-top-color: var(--teal); }
.reviews-grid article:nth-child(3) { margin-top: 84px; border-top-color: #69a92f; }
.reviews-grid blockquote { min-height: 125px; margin: 14px 0 25px; font-size: 15px; line-height: 1.55; }
.reviews-grid blockquote strong { font-weight: 800; }
.reviewer { display: flex; gap: 12px; align-items: center; }
.reviewer-logo { width: 80px; height: 80px; flex: 0 0 80px; overflow: hidden; display: grid; place-items: center; border: 2px solid var(--green); border-radius: 50%; background: #fff; }
.reviewer-logo img { width: 72%; height: 72%; object-fit: contain; }
.reviewer-details { display: flex; flex-direction: column; }
.reviewer small { color: #859087; font-size: 11px; }

.pricing { background: #fff; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); align-items: center; gap: 22px; }
.pricing-grid article { position: relative; min-height: 450px; padding: 35px; display: flex; flex-direction: column; border: 1px solid #dce6d3; border-radius: 20px; background: #f7f9f2; }
.pricing-grid article.featured { min-height: 500px; color: #d8ead8; background: linear-gradient(150deg, #0e4829, #0d3b22); box-shadow: 0 24px 35px rgba(13, 59, 34, .2); }
.pricing-grid h3 { margin: 0; color: var(--green); font-family: "Anton", Impact, sans-serif; font-size: 22px; font-weight: 400; }
.pricing-grid p { min-height: 46px; color: #849087; font-size: 13px; }
.pricing-grid .featured p { color: #9db7a2; }
.plan-badge { position: absolute; top: -13px; left: 50%; padding: 7px 14px; transform: translateX(-50%); border-radius: 99px; color: #174529; background: #54db82; font-family: "Anton", Impact, sans-serif; font-size: 11px; letter-spacing: .08em; white-space: nowrap; }
.price { margin: 10px 0 18px; color: var(--ink); font-family: "Anton", Impact, sans-serif; font-size: 49px; line-height: 1; }
.featured .price { color: #fff; }
.price small { color: #859187; font-family: "DM Sans", sans-serif; font-size: 12px; }
.price .price-prefix { margin-bottom: 6px; display: block; font-size: 14px; font-weight: 700; line-height: 1.2; }
.pricing-grid ul { margin: 0 0 25px; padding: 0; display: grid; gap: 13px; list-style: none; font-size: 13px; }
.pricing-grid li::first-letter { color: var(--green); }
.pricing-grid .button { margin-top: auto; }

.faq { background-color: #f1f4ea; }
.faq-layout { max-width: 825px; margin-inline: auto; display: grid; grid-template-columns: .9fr 1.1fr; gap: 20px; }
.faq-tabs { display: grid; gap: 9px; }
.faq-tabs button { min-height: 64px; padding: 13px 17px; display: flex; align-items: center; gap: 21px; border: 1px solid #dedfd5; border-radius: 13px; background: #fff; text-align: left; font-size: 14px; font-weight: 700; cursor: pointer; transition: .2s ease; }
.faq-tabs button span { color: #59655c; font-family: "Anton", Impact, sans-serif; font-weight: 400; }
.faq-tabs button[aria-selected="true"] { border-color: var(--forest); color: #fff; background: var(--forest); box-shadow: 0 4px 0 #062611; }
.faq-tabs button[aria-selected="true"] span { color: #dcebd6; }
.faq-answer { min-height: 355px; padding: 45px; display: flex; align-items: center; border-radius: 18px; color: #cde2c6; background-color: #0e4b2b; }
.faq-answer article > b { display: block; margin-bottom: -30px; color: rgba(57, 177, 91, .22); font-family: "Anton", Impact, sans-serif; font-size: 100px; font-weight: 400; line-height: 1; }
.faq-answer h3 { margin: 0; color: #b8ec8d; font-family: "Anton", Impact, sans-serif; font-size: 32px; font-weight: 400; line-height: 1; text-transform: uppercase; }
.faq-answer p { color: #bbcfba; line-height: 1.55; }

.cta-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.cta-card { min-height: 425px; padding: 44px; display: flex; flex-direction: column; border-radius: 25px; color: #08351c; background: linear-gradient(45deg, var(--green), #00e361); }
.cta-card h3 { color: #e0eedc; }
.cta-card--dark { color: #e0eedc; background: linear-gradient(45deg, #0d3a22, #020c07); }
.cta-card h3 { margin-top: 25px; font-size: 45px; }
.cta-card p { max-width: 500px; color: rgba(5, 49, 24, .78); line-height: 1.55; }
.cta-card--dark p { color: #acc3af; }
.proof { width: fit-content; margin: auto 0 20px; padding: 12px 15px; border-radius: 9px; background: rgba(255, 255, 255, .8); font-size: 12px; }
.cta-card--dark .proof { color: #a7c7a8; background: rgba(255, 255, 255, .06); }
.cta-card .button { --button-bg: var(--forest); --button-hover-bg: var(--forest-deep); border-color: var(--forest); }
.cta-card--dark .button { --button-bg: var(--green); --button-hover-bg: var(--forest); border-color: var(--green); }
.cta-card > small { margin-top: 13px; text-align: center; opacity: .72; }

.home-page { min-height: 420px; background: var(--cream); }
.error-page {
  min-height: 680px;
  padding: 92px 0 145px;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: #8a2d00;
  text-align: center;
  background-color: var(--yellow);
  background-image:
    radial-gradient(rgba(138,45,0,.13) 1.5px, transparent 1.5px),
    radial-gradient(90% 100% at 50% 0%, #ffe66f 0%, var(--yellow) 62%, #ffc728 100%);
  background-size: 24px 24px, auto;
}
.error-page__inner { position: relative; }
.error-page__eyebrow {
  width: fit-content;
  margin: 0 auto 18px;
  padding: 7px 15px;
  border: 1px solid rgba(138,45,0,.25);
  border-radius: 99px;
  background: rgba(255,247,239,.48);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
}
.error-page__code {
  margin: 0;
  color: #d8410a;
  font-family: "Anton", Impact, sans-serif;
  font-size: clamp(112px, 19vw, 260px);
  line-height: .78;
  letter-spacing: -.025em;
  text-shadow: 0 7px 0 #8a2d00;
}
.error-page h1 {
  max-width: 820px;
  margin: 38px auto 17px;
  color: #8a2d00;
  font-size: clamp(42px, 6vw, 84px);
  line-height: .98;
}
.error-page__inner > p:not(.error-page__eyebrow, .error-page__code) {
  margin: 0 auto 30px;
  color: #71320f;
  font-size: 18px;
}
.error-page__button {
  --button-bg: #d8410a;
  --button-hover-bg: #b93405;
  border-color: #d8410a;
  color: #fff7ef;
  box-shadow: 0 5px 0 #8a2d00;
}
.error-page__nacho {
  position: absolute;
  width: 0;
  height: 0;
  border-right: 52px solid transparent;
  border-bottom: 94px solid #ed5310;
  border-left: 52px solid transparent;
  filter: drop-shadow(0 6px 0 #8a2d00);
}
.error-page__nacho::before,
.error-page__nacho::after {
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #8a2d00;
  content: "";
}
.error-page__nacho::before { top: 48px; left: -25px; }
.error-page__nacho::after { top: 69px; left: 16px; }
.error-page__nacho--left { top: 20%; left: -3%; transform: rotate(-25deg); }
.error-page__nacho--right { right: -1%; bottom: 12%; transform: rotate(28deg) scale(.72); }
.site-footer { position: relative; overflow: hidden; padding-top: 100px; color: #fff1dd; background-color: var(--orange); background-image: radial-gradient(rgba(255,255,255,.12) 1px, transparent 1px); background-size: 21px 21px; }
.footer-angle { position: absolute; top: -45px; right: -2%; left: -2%; height: 80px; transform: rotate(-2.3deg); background: var(--orange); }
.footer-intro { display: grid; grid-template-columns: 1fr; gap: 90px; align-items: center; }
.pill--footer { border: 1px solid rgba(255,255,255,.45); color: #fff6e7; background: rgba(255,255,255,.12); }
.site-footer h2 { margin-top: 22px; max-width: 590px; font-size: clamp(50px, 5.5vw, 78px); }
.footer-intro > div > p { max-width: 510px; line-height: 1.6; }
.newsletter { padding: 30px; border-radius: 18px; color: #853110; background: var(--yellow); }
.newsletter h3 { margin: 0; font-family: "Anton", Impact, sans-serif; font-size: 22px; font-weight: 400; }
.newsletter p { margin: 8px 0 20px; font-size: 12px; }
.newsletter > div { display: grid; grid-template-columns: 1fr auto; gap: 9px; }
.newsletter input { min-width: 0; height: 49px; padding: 0 16px; border: 0; border-radius: 10px; outline: none; }
.newsletter button { padding: 0 21px; border: 0; border-radius: 9px; color: #fff4df; background: #bd3b06; font-family: "Anton", Impact, sans-serif; cursor: pointer; }
.newsletter output { min-height: 16px; margin-top: 8px; display: block; font-size: 11px; }
.footer-links { margin-top: 80px; padding-bottom: 47px; display: grid; grid-template-columns: 1.2fr repeat(2, .8fr); gap: 50px; border-bottom: 1px solid rgba(255,255,255,.24); }
.brand--inverted { color: #fff5de; }
.brand--inverted .brand__mark { color: #bd3a00; background: var(--yellow); }
.social-links { margin-top: 20px; display: flex; gap: 10px; }
.social-links a { width: 36px; height: 36px; display: grid; place-items: center; border-radius: 8px; background: rgba(255,255,255,.17); font-size: 11px; }
.footer-column { display: flex; flex-direction: column; gap: 10px; }
.footer-column h3 { margin: 2px 0 7px; font-family: "Anton", Impact, sans-serif; font-size: 14px; letter-spacing: .04em; font-weight: 400; }
.footer-column a { color: #ffd9c9; font-size: 13px; }
.footer-bottom { min-height: 90px; display: flex; align-items: center; justify-content: space-between; color: #ffd3c1; font-size: 12px; }
.footer-bottom div { display: flex; gap: 25px; }
.footer-wordmark { height: 190px; overflow: hidden; color: var(--yellow); font-family: "Anton", Impact, sans-serif; font-size: clamp(130px, 17vw, 260px); line-height: .95; text-align: center; white-space: nowrap; }

@keyframes revealUp { from { opacity: 0; transform: translateY(25px); } to { opacity: 1; transform: none; } }
.js [data-reveal], .js [data-slide] { opacity: 0; }
.js [data-reveal].is-visible, .js [data-slide].is-visible { animation: revealUp .75s cubic-bezier(.2,.7,.3,1) forwards; }

@media (max-width: 1000px) {
  .hero-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .feature { gap: 35px; }
  .feature-list { gap: 150px; }
}

@media (max-width: 820px) {
  .container { width: min(100% - 32px, 680px); }
  .announcement { font-size: 11px; }
  .nav-shell { height: 67px; padding-inline: 16px; }
  .menu-toggle { z-index: 12; display: block; }
  .primary-nav {
    position: fixed;
    z-index: 10;
    inset: 104px 0 auto;
    padding: 30px 24px 36px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    color: #fff;
    background: #315b43;
    box-shadow: 0 25px 30px rgba(0,0,0,.2);
  }
  .primary-nav.is-open { display: flex; }
  .primary-nav a { text-align: center; }
  .hero-grid { padding-block: 68px 100px; grid-template-columns: 1fr; }
  .hero-copy { text-align: center; }
  .hero-copy .pill, .hero h1 .accent-text { margin-inline: auto; }
  .hero-copy > p { margin-inline: auto; }
  .hero-actions, .rating { justify-content: center; }
  .hero-visual { width: min(620px, 92%); margin: 55px auto 0; }
  .logo-strip .container > div { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .case-study-card,
  .case-study-card--flip { grid-template-columns: 1fr; }
  .case-study-card--flip .case-study-card__media,
  .case-study-card--flip .case-study-card__copy { order: initial; }
  .case-study-card__media { min-height: 0; aspect-ratio: 16 / 9; }
  .feature, .feature--flip { grid-template-columns: 1fr; }
  .feature--flip .feature-copy, .feature--flip .feature-visual { order: initial; }
  .feature-copy { text-align: center; }
  .feature-copy ul { max-width: 560px; margin-inline: auto; text-align: left; }
  .feature-visual { width: min(620px, 100%); margin-inline: auto; }
  .steps-grid, .reviews-grid, .pricing-grid { grid-template-columns: 1fr; }
  .steps-grid article, .steps-grid article:nth-child(2), .steps-grid article:nth-child(3),
  .reviews-grid article, .reviews-grid article:nth-child(2), .reviews-grid article:nth-child(3) { margin-top: 0; min-height: 0; }
  .pricing-grid { max-width: 520px; margin-inline: auto; }
  .faq-layout { grid-template-columns: 1fr; }
  .faq-answer { min-height: 300px; }
  .cta-grid { grid-template-columns: 1fr; }
  .footer-intro { grid-template-columns: 1fr; gap: 45px; }
  .footer-links { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 540px) {
  .announcement span:not(.announcement__badge) { max-width: 215px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
  .announcement a { display: none; }
  .brand strong { font-size: 13px; }
  .hero-grid { min-height: 0; padding-top: 52px; }
  .hero h1 { font-size: 54px; }
  .hero-copy > p { font-size: 16px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .hero-visual { width: 100%; margin-top: 40px; }
  .logo-strip { padding-top: 60px; }
  .logo-strip .container > div { grid-template-columns: 1fr 1fr; }
  .logo-strip span { min-height: 63px; }
  .section { padding-block: 68px; }
  .section-heading { margin-bottom: 38px; }
  .section-heading h2 { font-size: 44px; }
  .section-heading p { font-size: 15px; }
  .stats-grid { grid-template-columns: 1fr; }
  .stat-card { min-height: 150px; }
  .case-study-section { padding-bottom: 54px; }
  .case-study-card { border-radius: 19px; }
  .case-study-card__media { aspect-ratio: 16 / 9; }
  .case-study-card__copy { padding: 27px; }
  .case-study-card__copy h2 { font-size: 34px; }
  .case-study-card__result { gap: 12px; }
  .case-study-card__result strong { font-size: 40px; }
  .feature-list { gap: 88px; }
  .feature h3 { font-size: 39px; }
  .product-image { height: 95px; }
  .app-window { padding: 10px; font-size: 10px; }
  .tool-rail { display: none; }
  .panel-footer { align-items: flex-end; gap: 8px; }
  .panel-footer span { max-width: 50%; }
  .variants > div { padding: 7px; }
  .variant-image { height: 100px; }
  .video-showcase { padding-bottom: 78px; }
  .video-showcase__trigger { border-radius: 17px; }
  .video-showcase__play { width: 72px; height: 72px; font-size: 24px; }
  .video-modal__close { top: -14px; right: -5px; }
  .steps-grid article { padding: 28px; }
  .reviews-grid article { min-height: 0; }
  .reviews-grid blockquote { min-height: 0; }
  .pricing-grid article, .pricing-grid article.featured { min-height: 440px; padding: 29px; }
  .faq-tabs button { font-size: 12px; }
  .faq-answer { padding: 30px; }
  .faq-answer h3 { font-size: 29px; }
  .cta-card { min-height: 390px; padding: 29px; }
  .cta-card h3 { font-size: 39px; }
  .site-footer { padding-top: 70px; }
  .newsletter { padding: 22px; }
  .newsletter > div { grid-template-columns: 1fr; }
  .newsletter button { height: 46px; }
  .footer-links { grid-template-columns: 1fr 1fr; gap: 36px 25px; }
  .footer-links > div:first-child { grid-column: 1 / -1; }
  .footer-bottom { padding-block: 25px; flex-direction: column; align-items: flex-start; gap: 18px; }
  .footer-wordmark { height: 110px; font-size: 95px; text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

/* Agency homepage and shared agency header */
.agency-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid rgba(255, 210, 63, .28);
  background: #a92f06;
  backdrop-filter: blur(14px);
}
.agency-header .nav-shell {
  height: 66px;
  color: #fff7ef;
  background: transparent;
}
.agency-header .brand__mark {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  color: #d8410a;
  background: var(--yellow);
  box-shadow: 0 3px 0 #8a2d00;
  font-family: "Anton", Impact, sans-serif;
  font-weight: 400;
}
.agency-header .brand strong { font-size: 18px; letter-spacing: .03em; }
.agency-header .brand small { color: var(--yellow); opacity: 1; }
.agency-header .primary-nav > a:not(.button) { color: #ffe9d6; opacity: 1; font-weight: 500; }
.agency-nav-cta {
  --button-bg: var(--yellow);
  --button-hover-bg: #ffb300;
  border-color: var(--yellow);
  color: #8a2d00;
  box-shadow: 0 3px 0 #b23a00;
}

.home-page { background: #fff7ef; }
.home-hero {
  position: relative;
  overflow: hidden;
  color: #ffe9d6;
  background-color: #ed5310;
  background-image:
    radial-gradient(rgba(255,255,255,.13) 2px, transparent 2px),
    radial-gradient(120% 120% at 15% 0%, #ff7a2b 0%, #f1590e 42%, #d8410a 100%);
  background-size: 26px 26px, auto;
}
.home-hero__inner { padding-block: 90px 105px; text-align: center; }
.home-eyebrow {
  width: fit-content;
  margin: 0 auto 26px;
  padding: 7px 15px;
  display: flex;
  align-items: center;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 99px;
  color: #fff3e4;
  background: rgba(255,255,255,.16);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.home-hero h1,
.home-section-heading h2,
.home-app-card h3,
.home-service-card h3,
.home-contact h1,
.home-contact h2 {
  font-family: "Anton", Impact, sans-serif;
  font-weight: 400;
  text-transform: uppercase;
}
.home-hero h1 {
  margin: 0 0 25px;
  color: #fff7ef;
  font-size: clamp(54px, 8vw, 96px);
  letter-spacing: .005em;
  line-height: .9;
  text-shadow: 0 5px 0 rgba(150,50,0,.25);
}
.home-hero h1 span { display: block; }
.home-hero h1 .home-hero__accent { color: var(--yellow); }
.home-hero__inner > p {
  max-width: 650px;
  margin: 0 auto 34px;
  color: #ffe3cc;
  font-size: 19px;
  line-height: 1.6;
}
.home-hero__actions { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }
.home-button--yellow {
  --button-bg: var(--yellow);
  --button-hover-bg: #ffb300;
  border-color: var(--yellow);
  color: #8a2d00;
  box-shadow: 0 5px 0 #b23a00;
}
.home-button--ghost {
  border-color: rgba(255,255,255,.34);
  color: #fff7ef;
  background: rgba(255,255,255,.14);
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-transform: none;
}
.home-credentials {
  margin-top: 54px;
  display: flex;
  justify-content: center;
  gap: 34px;
  color: #ffd9bc;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.home-credentials span + span::before { content: "·"; margin-right: 34px; }

.home-featured { padding: 88px 0 96px; background: #fff7ef; }
.home-section-heading { margin-bottom: 34px; display: flex; align-items: baseline; gap: 16px; flex-wrap: wrap; }
.home-section-heading h2 { margin: 0; color: #8a2d00; font-size: clamp(36px, 4.5vw, 50px); }
.home-section-heading p { margin: 0; color: #a65a34; font-size: 15px; }
.home-app-card {
  position: relative;
  overflow: hidden;
  padding: 52px 48px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 44px;
  border-radius: 28px;
  color: #eaf6dc;
  background-color: var(--forest);
  box-shadow: 0 26px 54px rgba(13,59,34,.28);
}
.home-app-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 88% 12%, rgba(35,164,91,.5), transparent 44%);
}
.home-app-card > * { position: relative; z-index: 1; }
.home-app-card .pill { margin-bottom: 20px; color: var(--forest); background: #c6e8a6; }
.home-app-card h3 { margin: 0 0 18px; color: #f5f4ec; font-size: clamp(40px, 4.6vw, 56px); line-height: .94; text-shadow: 0 4px 0 rgba(6,32,18,.35); }
.home-app-card h3 span { display: block; }
.home-app-card__copy > p { max-width: 500px; margin: 0 0 26px; color: #dcefc7; font-size: 17px; line-height: 1.6; }
.home-app-card ul { margin: 0 0 30px; padding: 0; display: grid; gap: 11px; list-style: none; }
.home-app-card li { display: flex; align-items: center; gap: 11px; font-size: 15px; }
.home-app-card li > span {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 7px;
  color: #0a3019;
  background: var(--green);
  font-weight: 700;
}
.home-app-card__actions { display: flex; gap: 13px; flex-wrap: wrap; }
.home-app-card__visual { display: flex; justify-content: center; }
.home-app-card__visual img {
  width: 100%;
  height: auto;
  max-width: 420px;
  aspect-ratio: 1002 / 1024;
  display: block;
  border-radius: 18px;
  filter: drop-shadow(0 22px 40px rgba(6,32,18,.4));
}

.home-services {
  padding: 88px 0 96px;
  border-block: 1px solid rgba(216,65,10,.14);
  background: #ffefdf;
}
.home-section-heading--stacked { max-width: 620px; display: block; }
.home-section-heading--stacked h2 { margin-bottom: 14px; }
.home-section-heading--stacked p { color: #7a4526; font-size: 17px; line-height: 1.6; }
.home-services__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.home-service-card {
  padding: 32px 30px 34px;
  border: 1px solid rgba(216,65,10,.16);
  border-radius: 22px;
  background: #fff7ef;
  transition: transform .3s, box-shadow .3s;
}
.home-service-card:hover { transform: translateY(-5px); box-shadow: 0 18px 34px rgba(138,45,0,.1); }
.home-service-card__icon {
  width: 52px;
  height: 52px;
  margin-bottom: 22px;
  display: grid;
  place-items: center;
  border-radius: 15px;
  background: var(--yellow);
  box-shadow: 0 4px 0 #b23a00;
  font-size: 24px;
}
.home-service-card h3 { margin: 0 0 13px; color: #8a2d00; font-size: 23px; line-height: 1.1; }
.home-service-card > p { margin: 0 0 20px; color: #7a4526; font-size: 15px; line-height: 1.6; }
.home-service-card__tags { display: flex; flex-wrap: wrap; gap: 8px; }
.home-service-card__tags span { padding: 5px 12px; border-radius: 99px; color: #a6522a; background: rgba(216,65,10,.09); font-size: 12px; font-weight: 600; }

.home-contact {
  padding: 100px 0 125px;
  color: #ffe9d6;
  background-color: #e74b0d;
  background-image: radial-gradient(rgba(255,255,255,.13) 2px, transparent 2px);
  background-size: 26px 26px;
}
.home-contact__copy { max-width: 680px; text-align: center; }
.home-contact h1,
.home-contact h2 { margin: 0 0 18px; color: #fff7ef; font-size: clamp(48px, 6vw, 68px); line-height: .92; text-shadow: 0 4px 0 rgba(150,50,0,.25); }
.home-contact__copy > p { max-width: 620px; margin: 0 auto 30px; color: #ffe3cc; font-size: 18px; line-height: 1.6; }
.contact-page__section { min-height: 650px; display: grid; align-items: center; }
.contact-page__grid { display: grid; grid-template-columns: 1fr .8fr; align-items: center; gap: 70px; }
.contact-page .home-contact__copy { max-width: 620px; margin: 0; text-align: left; }
.contact-page .home-contact__copy > p { margin-inline: 0; }
.business-address {
  padding: 38px;
  display: flex;
  flex-direction: column;
  border-radius: 22px;
  color: #7a4526;
  background: #fff7ef;
  box-shadow: 0 18px 40px rgba(120,40,0,.24);
  font-style: normal;
  font-size: 17px;
  line-height: 1.65;
}
.business-address > span:first-child {
  width: fit-content;
  margin-bottom: 22px;
  padding: 6px 13px;
  border-radius: 99px;
  color: #8a2d00;
  background: var(--yellow);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.business-address strong { margin-bottom: 8px; color: #8a2d00; font-family: "Anton", Impact, sans-serif; font-size: 27px; font-weight: 400; text-transform: uppercase; }

.standard-page { min-height: 620px; padding: 92px 0 125px; background: #fff7ef; }
.standard-page__inner { max-width: 900px; }
.standard-page__header { margin-bottom: 44px; padding-bottom: 28px; border-bottom: 1px solid rgba(216,65,10,.18); }
.standard-page__header h1 { margin: 0; color: #8a2d00; font-family: "Anton", Impact, sans-serif; font-size: clamp(48px, 7vw, 78px); font-weight: 400; line-height: .95; text-transform: uppercase; }
.standard-page__content { color: #503b2f; font-size: 17px; line-height: 1.75; }
.standard-page__content > :first-child { margin-top: 0; }
.standard-page__content > :last-child { margin-bottom: 0; }
.standard-page__content h2,
.standard-page__content h3 { margin: 2em 0 .65em; color: #8a2d00; font-family: "Anton", Impact, sans-serif; font-weight: 400; line-height: 1.1; text-transform: uppercase; }
.standard-page__content h2 { font-size: 34px; }
.standard-page__content h3 { font-size: 25px; }
.standard-page__content p,
.standard-page__content ul,
.standard-page__content ol,
.standard-page__content blockquote { margin: 0 0 1.35em; }
.standard-page__content a { color: #c33808; font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.standard-page__content blockquote { padding: 20px 24px; border-left: 5px solid var(--yellow); background: #ffefdf; }
.standard-page__content img { height: auto; border-radius: 16px; }
.standard-page__content table { width: 100%; margin: 1.5em 0; border-collapse: collapse; }
.standard-page__content th,
.standard-page__content td { padding: 12px 14px; border: 1px solid rgba(216,65,10,.18); text-align: left; }
.standard-page__content th { color: #8a2d00; background: #ffefdf; }

@media (max-width: 900px) {
  .agency-header .menu-toggle { z-index: 12; display: block; }
  .agency-header .primary-nav {
    position: fixed;
    z-index: 10;
    inset: 66px 0 auto;
    padding: 30px 24px 36px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    color: #fff;
    background: #a92f06;
    box-shadow: 0 25px 30px rgba(0,0,0,.2);
  }
  .agency-header .primary-nav.is-open { display: flex; }
  .agency-header .primary-nav a { text-align: center; }
  .home-app-card { grid-template-columns: 1fr; }
  .home-app-card__visual img { max-width: 560px; }
  .home-services__grid { grid-template-columns: 1fr; }
  .contact-page__grid { grid-template-columns: 1fr; gap: 45px; }
  .contact-page .home-contact__copy { text-align: center; margin-inline: auto; }
  .contact-page .home-contact__copy > p { margin-inline: auto; }
}

@media (max-width: 820px) {
  .agency-header .nav-shell { height: 66px; }
  .agency-header .primary-nav { inset: 66px 0 auto; background: #a92f06; }
  .home-hero__inner { padding-block: 86px 96px; }
  .home-credentials { gap: 20px; }
  .home-credentials span + span::before { margin-right: 20px; }
}

@media (max-width: 540px) {
  .agency-header .brand strong { font-size: 15px; }
  .error-page { min-height: 620px; padding-block: 78px 110px; }
  .error-page__nacho { display: none; }
  .error-page__code { font-size: 126px; text-shadow: 0 5px 0 #8a2d00; }
  .error-page h1 { margin-top: 32px; font-size: 45px; }
  .home-hero__inner { padding-block: 88px 86px; }
  .home-hero h1 { font-size: 47px; }
  .home-hero__inner > p { font-size: 16px; }
  .home-hero__actions { flex-direction: column; }
  .home-hero__actions .button { width: 100%; }
  .home-credentials { align-items: center; flex-direction: column; gap: 22px; }
  .home-credentials span + span::before { content: none; }
  .home-featured, .home-services { padding-block: 68px 74px; }
  .home-section-heading { align-items: flex-start; flex-direction: column; gap: 8px; }
  .home-app-card { padding: 36px 25px; border-radius: 22px; }
  .home-app-card h3 { font-size: 40px; }
  .home-app-card__actions { flex-direction: column; }
  .home-app-card__actions .button { width: 100%; }
  .home-contact { padding-block: 74px 105px; }
  .standard-page { padding-block: 68px 90px; }
  .standard-page__header { margin-bottom: 34px; }
  .standard-page__content { font-size: 16px; }
}

/* Testimonial pages */
.testimonial-page { color: #16231b; background: var(--cream); }
.testimonial-container { width: min(1024px, calc(100% - 56px)); margin-inline: auto; }
.testimonial-wide { width: min(1124px, calc(100% - 56px)); margin-inline: auto; }
.testimonial-hero {
  position: relative;
  overflow: hidden;
  padding: 88px 0 96px;
  color: #f5f4ec;
  background-color: var(--forest);
  background-image:
    radial-gradient(circle at 15% 20%, rgba(35,164,91,.28), transparent 42%),
    radial-gradient(circle at 90% 15%, rgba(14,158,142,.2), transparent 42%),
    radial-gradient(rgba(198,232,166,.14) 1.2px, transparent 1.2px);
  background-size: auto, auto, 26px 26px;
}
.testimonial-eyebrow {
  width: fit-content;
  margin-bottom: 24px;
  padding: 7px 15px;
  display: inline-flex;
  border: 1px solid rgba(198,232,166,.3);
  border-radius: 99px;
  color: #dcefc7;
  background: rgba(198,232,166,.14);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.testimonial-hero h1,
.testimonial-story h2,
.testimonial-solution h2,
.testimonial-quote p {
  font-family: "Anton", Impact, sans-serif;
  font-weight: 400;
  text-transform: uppercase;
}
.testimonial-hero h1 {
  margin: 0 0 24px;
  color: #f5f4ec;
  font-size: clamp(46px, 7vw, 80px);
  line-height: .92;
  letter-spacing: .005em;
  text-wrap: pretty;
  text-shadow: 0 5px 0 rgba(6,32,18,.35);
}
.testimonial-hero > .testimonial-container > p { max-width: 650px; margin: 0 0 36px; color: #dcefc7; font-size: 19px; line-height: 1.65; }
.testimonial-meta { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; color: #b8d6a0; font-size: 14px; }
.testimonial-meta strong { color: #f4c542; font-size: 17px; letter-spacing: .12em; }
.testimonial-meta span::before { content: "|"; margin-right: 16px; color: rgba(198,232,166,.35); }
.testimonial-meta span:first-child::before { content: none; margin: 0; }

.testimonial-media { padding: 0 28px; background: var(--cream); }
.testimonial-media figure { position: relative; z-index: 1; max-width: 1180px; margin: -54px auto 0; }
.testimonial-media__image {
  width: 100%;
  aspect-ratio: 16 / 7;
  overflow: hidden;
  display: block;
  border: 1px solid #dde7d3;
  border-radius: 26px;
  object-fit: cover;
  background: #e7ece3;
  box-shadow: 0 30px 60px rgba(13,59,34,.22);
}
.testimonial-media figcaption,
.testimonial-solution figcaption { padding: 16px 6px 0; color: #66736a; font-size: 13px; line-height: 1.5; }
.testimonial-image-placeholder { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px; color: #7a867d; text-align: center; }
.testimonial-image-placeholder > span { font-size: 28px; }

.testimonial-story { padding: 80px 0 74px; background: var(--cream); }
.testimonial-story__grid { display: grid; grid-template-columns: .68fr 1.32fr; align-items: start; gap: 64px; }
.testimonial-story header > span,
.testimonial-kicker { margin-bottom: 14px; display: block; color: #1c8c4c; font-size: 11px; font-weight: 700; letter-spacing: .17em; text-transform: uppercase; }
.testimonial-story h2 { margin: 0; font-size: clamp(32px, 4vw, 44px); line-height: .95; }
.testimonial-story__body { max-width: 680px; display: flex; flex-direction: column; gap: 20px; }
.testimonial-story__body > p,
.testimonial-solution__copy > p { margin: 0; color: #3e4a42; font-size: 16px; line-height: 1.75; text-wrap: pretty; }
.testimonial-story__body .testimonial-lead { color: #16231b; font-size: 19px; font-weight: 500; line-height: 1.62; }
.testimonial-stats { margin-top: 14px; display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.testimonial-stat { padding: 30px 28px; border: 1px solid #dde7d3; border-top: 4px solid var(--green); border-radius: 20px; background: #fff; }
.testimonial-stat--teal { border-top-color: var(--teal); }
.testimonial-stat > strong { color: #1c8c4c; font-family: "Anton", Impact, sans-serif; font-size: clamp(52px, 7vw, 72px); font-weight: 400; line-height: .9; }
.testimonial-stat--teal > strong { color: var(--teal); }
.testimonial-stat h3 { margin: 14px 0 6px; font-size: 15px; }
.testimonial-stat p { margin: 0; color: #7a867d; font-size: 13px; line-height: 1.5; }

.testimonial-solution { padding: 82px 0 88px; border-block: 1px solid #dde7d3; background: #edf2e6; }
.testimonial-solution__grid { display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 62px; }
.testimonial-solution h2 { margin: 0 0 20px; font-size: clamp(30px, 3.6vw, 42px); line-height: 1; }
.testimonial-solution__copy > p { margin-bottom: 18px; }
.testimonial-solution ul { margin: 28px 0 0; padding: 26px 0 0; display: grid; gap: 13px; border-top: 1px solid #dde7d3; list-style: none; }
.testimonial-solution li { display: flex; align-items: flex-start; gap: 12px; font-size: 15px; line-height: 1.5; }
.testimonial-solution li > span { width: 22px; height: 22px; flex: 0 0 auto; display: grid; place-items: center; border-radius: 7px; color: #0a3019; background: var(--green); font-size: 13px; font-weight: 700; }
.testimonial-solution figure { margin: 0; }
.testimonial-solution__image {
  width: 100%;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  display: block;
  border: 1px solid #dde7d3;
  border-radius: 22px;
  object-fit: cover;
  background: #e1e8da;
  box-shadow: 0 24px 48px rgba(13,59,34,.16);
}

.testimonial-result { padding: 86px 0 92px; color: var(--forest); background: #c6e8a6; }
.testimonial-result__grid { display: grid; grid-template-columns: .8fr 1.2fr; align-items: start; gap: 70px; }
.testimonial-result header > span { margin-bottom: 14px; display: block; font-size: 11px; font-weight: 800; letter-spacing: .17em; text-transform: uppercase; }
.testimonial-result h2 { margin: 0; font-family: "Anton", Impact, sans-serif; font-size: clamp(38px, 5vw, 58px); font-weight: 400; line-height: .95; text-transform: uppercase; }
.testimonial-result__body > strong { display: block; color: var(--green); font-family: "Anton", Impact, sans-serif; font-size: clamp(92px, 14vw, 164px); font-weight: 400; line-height: .78; text-shadow: 0 5px 0 var(--forest); }
.testimonial-result__body h3 { margin: 30px 0 20px; font-size: 19px; }
.testimonial-result__body p { max-width: 670px; margin: 0 0 18px; color: #284f35; font-size: 16px; line-height: 1.75; }

.testimonial-quote {
  position: relative;
  overflow: hidden;
  padding: 96px 28px 104px;
  background-color: var(--forest);
  background-image:
    radial-gradient(circle at 80% 8%, rgba(35,164,91,.3), transparent 46%),
    radial-gradient(rgba(198,232,166,.13) 1.2px, transparent 1.2px);
  background-size: auto, 26px 26px;
}
.testimonial-quote blockquote { max-width: 960px; margin: 0 auto; text-align: center; }
.testimonial-quote__mark { display: block; margin-bottom: 22px; color: var(--green); font-family: "Anton", Impact, sans-serif; font-size: 110px; line-height: .5; }
.testimonial-quote p { margin: 0 0 34px; color: #f5f4ec; font-size: clamp(32px, 5vw, 58px); line-height: 1.06; text-wrap: pretty; }
.testimonial-quote p > span { color: #c6e8a6; }
.testimonial-quote footer { display: flex; align-items: center; justify-content: center; gap: 14px; }
.testimonial-avatar { width: 52px; height: 52px; flex: 0 0 auto; display: grid; place-items: center; border-radius: 50%; color: #0a3019; background: var(--green); font-family: "Anton", Impact, sans-serif; font-size: 19px; }
.testimonial-quote cite { display: flex; flex-direction: column; color: #b8d6a0; text-align: left; font-size: 14px; font-style: normal; }
.testimonial-quote cite strong { color: #f5f4ec; font-size: 16px; }

@media (max-width: 820px) {
  .testimonial-story__grid,
  .testimonial-solution__grid,
  .testimonial-result__grid { grid-template-columns: 1fr; gap: 40px; }
  .testimonial-story__body { max-width: none; }
  .testimonial-solution figure { width: min(520px, 100%); }
}

@media (max-width: 540px) {
  .testimonial-container,
  .testimonial-wide { width: min(100% - 32px, 680px); }
  .testimonial-hero { padding-block: 68px 90px; }
  .testimonial-hero h1 { font-size: 47px; }
  .testimonial-hero > .testimonial-container > p { font-size: 16px; }
  .testimonial-meta { align-items: flex-start; flex-direction: column; gap: 9px; }
  .testimonial-meta span::before { content: none; }
  .testimonial-media { padding-inline: 16px; }
  .testimonial-media__image { aspect-ratio: 4 / 3; border-radius: 18px; }
  .testimonial-story,
  .testimonial-solution,
  .testimonial-result { padding-block: 64px; }
  .testimonial-stats { grid-template-columns: 1fr; }
  .testimonial-stat { padding: 26px 23px; }
  .testimonial-result__body > strong { font-size: 104px; }
  .testimonial-quote { padding: 78px 16px 86px; }
  .testimonial-quote__mark { font-size: 90px; }
}
