:root {
  --ink: #0f1f1a;
  --slate: #31413b;
  --muted: #5c6b65;
  --brand: #0f9d74;
  --brand-dark: #0b7a5a;
  --brand-soft: #e7f6f0;
  --brand-line: #bfe6d6;
  --accent: #f59e0b;
  --accent-dark: #d98304;
  --accent-soft: #fef3e2;
  --bg: #ffffff;
  --bg-soft: #f4f8f6;
  --bg-soft2: #eef4f1;
  --line: #e2ebe7;
  --danger: #c0392b;
  --danger-soft: #fdecea;
  --maxw: 1180px;
  --radius: 18px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  overflow-x: hidden;
  max-width: 100%;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3,
.disp {
  font-family: 'Sora', sans-serif;
}

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  font-size: 12.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--brand-dark);
  font-weight: 700;
}

/* buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 600;
  font-size: 15.5px;
  padding: 13px 24px;
  border-radius: 12px;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: transform .15s, box-shadow .2s, background .2s, border-color .2s;
  white-space: nowrap;
}

.btn-accent {
  background: var(--accent);
  color: #3d2600;
  box-shadow: 0 6px 18px rgba(245, 158, 11, .28);
}

.btn-accent:hover {
  transform: translateY(-2px);
  background: var(--accent-dark);
  color: #fff;
}

.btn-outline {
  border-color: var(--line);
  color: var(--ink);
  background: #fff;
}

.btn-outline:hover {
  border-color: var(--brand);
  color: var(--brand-dark);
}

.btn-lg {
  padding: 16px 30px;
  font-size: 16.5px;
}

.btn[disabled] {
  opacity: .6;
  cursor: not-allowed;
  transform: none;
}

/* nav */
header.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s;
}

header.nav.scrolled {
  border-bottom: 1px solid var(--line);
  box-shadow: 0 2px 14px rgba(16, 31, 26, .05);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 66px;
}

.brand {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: -.01em;
  display: flex;
  align-items: center;
  gap: 9px;
}

.brand .dot {
  width: 26px;
  height: 26px;
  border-radius: 8px;
  background: var(--brand);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 800;
}

.nav__links {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav__links a:not(.btn) {
  font-size: 14.5px;
  color: var(--slate);
  font-weight: 500;
}

.nav__links a:not(.btn):hover {
  color: var(--brand-dark);
}

@media(max-width:900px) {
  .nav__links a:not(.btn) {
    display: none;
  }
}

/* hero */
.hero {
  padding: 70px 0 40px;
  background: linear-gradient(180deg, var(--bg-soft) 0%, #fff 100%);
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
}

.hero h1 {
  font-size: clamp(34px, 4.8vw, 58px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -.02em;
  margin: 18px 0 20px;
}

.hero h1 em {
  font-style: normal;
  color: var(--brand-dark);
}

.hero p.sub {
  font-size: clamp(16px, 1.5vw, 19px);
  color: var(--muted);
  line-height: 1.6;
  max-width: 520px;
  margin-bottom: 28px;
}

.hero__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.hero__note {
  font-size: 13.5px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero__img {
  position: relative;
}

.hero__img img {
  width: 100%;
  height: auto;
  border-radius: 22px;
  display: block;
}

.hero__badge {
  position: absolute;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px 15px;
  box-shadow: 0 12px 30px rgba(16, 31, 26, .12);
  display: flex;
  gap: 11px;
  align-items: center;
}

.hero__badge .ic {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

.hero__badge .t {
  font-family: 'Sora';
  font-weight: 700;
  font-size: 15px;
  line-height: 1.1;
}

.hero__badge .s {
  font-size: 12px;
  color: var(--muted);
}

.badge-1 {
  left: -14px;
  top: 26px;
}

.badge-2 {
  right: -10px;
  bottom: 30px;
}

@media(max-width:860px) {
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .hero__badge {
    display: none;
  }
}

/* industries */
.industries {
  padding: 36px 0 8px;
}

.industries p.lead {
  text-align: center;
  color: var(--muted);
  font-size: 14px;
  letter-spacing: .02em;
  margin-bottom: 20px;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.chip {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--slate);
  display: flex;
  align-items: center;
  gap: 8px;
}

.chip .d {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand);
}

/* pillars */
.pillars {
  padding: 80px 0 30px;
}

.pillars__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.pillar {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 34px;
  background: #fff;
  position: relative;
  overflow: hidden;
}

.pillar.profit {
  background: var(--brand-soft);
  border-color: var(--brand-line);
}

.pillar.compliance {
  background: var(--accent-soft);
  border-color: #f6dfae;
}

.pillar .tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.pillar.profit .tag {
  color: var(--brand-dark);
}

.pillar.compliance .tag {
  color: var(--accent-dark);
}

.pillar h3 {
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 800;
  line-height: 1.12;
  margin-bottom: 12px;
  letter-spacing: -.01em;
}

.pillar p {
  color: var(--slate);
  font-size: 15.5px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.pillar ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.pillar li {
  display: flex;
  gap: 10px;
  font-size: 15px;
  align-items: flex-start;
}

.pillar li svg {
  flex: 0 0 auto;
  margin-top: 2px;
}

@media(max-width:820px) {
  .pillars__grid {
    grid-template-columns: 1fr;
  }
}

/* features */
.feature {
  padding: 76px 0;
}

.feature.soft {
  background: var(--bg-soft);
}

.feature__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.feature__grid>* {
  min-width: 0;
}

.feature.reverse .feature__grid {
  direction: rtl;
}

.feature.reverse .feature__grid>* {
  direction: ltr;
}

.feature h2 {
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.02em;
  margin: 14px 0 16px;
}

.feature p.body {
  color: var(--muted);
  font-size: 16.5px;
  line-height: 1.65;
  margin-bottom: 22px;
  max-width: 490px;
}

.checks {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.checks li {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  font-size: 15.5px;
  color: var(--slate);
}

.checks .tk {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--brand-soft);
  display: grid;
  place-items: center;
  margin-top: 1px;
}

.fimg {
  position: relative;
}

.fimg img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  display: block;
  box-shadow: 0 24px 60px rgba(16, 31, 26, .14);
}

.fstat {
  position: absolute;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px 16px;
  box-shadow: 0 12px 30px rgba(16, 31, 26, .12);
}

.fstat .n {
  font-family: 'Sora';
  font-weight: 800;
  font-size: 22px;
  color: var(--brand-dark);
  line-height: 1;
}

.fstat .l {
  font-size: 12px;
  color: var(--muted);
  margin-top: 4px;
}

@media(max-width:820px) {
  .feature__grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .feature.reverse .feature__grid {
    direction: ltr;
  }

  .fimg {
    order: -1;
  }
}

/* ROI band */
.roi {
  background: var(--ink);
  color: #eaf2ee;
  padding: 66px 0;
}

.roi h2 {
  text-align: center;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  margin-bottom: 8px;
  letter-spacing: -.01em;
}

.roi p.sub {
  text-align: center;
  color: #9fb3ab;
  font-size: 16px;
  margin-bottom: 44px;
}

.roi__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.roi .stat {
  text-align: center;
}

.roi .num {
  font-family: 'Sora';
  font-weight: 800;
  font-size: clamp(30px, 4vw, 46px);
  color: #fff;
  line-height: 1;
  display: block;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.roi .num em {
  font-style: normal;
  color: var(--accent);
}

.roi .lbl {
  color: #9fb3ab;
  font-size: 13.5px;
  margin-top: 10px;
}

@media(max-width:760px) {
  .roi__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 34px 20px;
  }
}

/* how */
.how {
  padding: 84px 0;
  text-align: center;
}

.how__head {
  max-width: 620px;
  margin: 0 auto 50px;
}

.how h2 {
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 800;
  margin: 14px 0 12px;
  letter-spacing: -.02em;
}

.how p.sub {
  color: var(--muted);
  font-size: 16.5px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.step {
  text-align: left;
  padding: 30px 28px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
}

.step .n {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--brand);
  color: #fff;
  font-family: 'Sora';
  font-weight: 800;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
}

.step h3 {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 9px;
}

.step p {
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.6;
}

@media(max-width:820px) {
  .steps {
    grid-template-columns: 1fr;
  }
}

/* demo / cta */
.cta {
  padding: 90px 0;
}

.cta__card {
  background: linear-gradient(135deg, var(--brand-dark), var(--brand));
  border-radius: 26px;
  padding: 56px 48px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.cta__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: center;
}

.cta h2 {
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 14px;
  letter-spacing: -.02em;
}

.cta p {
  color: rgba(255, 255, 255, .9);
  font-size: 17px;
  max-width: 460px;
  margin-bottom: 20px;
}

.cta__points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
}

.cta__points li {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 15px;
  color: rgba(255, 255, 255, .95);
}

@media(max-width:820px) {
  .cta__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .cta__card {
    padding: 40px 26px;
  }
}

/* form */
.form-card {
  background: #fff;
  border-radius: 18px;
  padding: 28px;
  color: var(--ink);
}

.form-card h3 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 4px;
}

.form-card .fc-sub {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 18px;
}

.field {
  margin-bottom: 14px;
}

.field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--slate);
  margin-bottom: 6px;
}

.field .req {
  color: var(--danger);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  padding: 11px 13px;
  transition: border-color .15s, box-shadow .15s;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px var(--brand-soft);
}

.field textarea {
  resize: vertical;
  min-height: 84px;
}

.field .err {
  color: var(--danger);
  font-size: 12.5px;
  margin-top: 5px;
}

.field.invalid input,
.field.invalid select,
.field.invalid textarea {
  border-color: var(--danger);
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

@media(max-width:520px) {
  .grid-2 {
    grid-template-columns: 1fr;
  }
}

.form-card .btn {
  width: 100%;
  justify-content: center;
  margin-top: 6px;
}

.form-legal {
  font-size: 12px;
  color: var(--muted);
  margin-top: 12px;
  text-align: center;
}

.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* flash */
.flash {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  border-radius: 14px;
  padding: 16px 18px;
  margin-bottom: 18px;
  font-size: 15px;
}

.flash.success {
  background: var(--brand-soft);
  border: 1px solid var(--brand-line);
  color: var(--brand-dark);
}

.flash.error {
  background: var(--danger-soft);
  border: 1px solid #f2c6c0;
  color: var(--danger);
}

.flash .fi {
  flex: 0 0 auto;
  margin-top: 1px;
}

/* footer */
footer.site {
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  padding: 52px 0 36px;
}

.foot {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}

.foot__links {
  display: flex;
  gap: 52px;
  flex-wrap: wrap;
}

.foot__col h4 {
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 13px;
}

.foot__col a {
  display: block;
  color: var(--slate);
  font-size: 14.5px;
  margin-bottom: 9px;
}

.foot__col a:hover {
  color: var(--brand-dark);
}

.foot__bottom {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--muted);
  font-size: 13px;
}

/* reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s cubic-bezier(.2, .7, .2, 1), transform .7s cubic-bezier(.2, .7, .2, 1);
}

.reveal.in {
  opacity: 1;
  transform: none;
}

.reveal.d1 {
  transition-delay: .08s;
}

.reveal.d2 {
  transition-delay: .16s;
}

.reveal.d3 {
  transition-delay: .24s;
}

@media(prefers-reduced-motion:reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ============================================================
   Multi-page additions
   ============================================================ */

/* nav dropdown */
.nav__drop {
  position: relative;
}

.nav__drop-t {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  font-size: 14.5px;
  color: var(--slate);
  font-weight: 500;
}

.nav__drop:hover .nav__drop-t {
  color: var(--brand-dark);
}

.nav__menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(16, 31, 26, .14);
  padding: 8px;
  min-width: 240px;
  display: none;
  flex-direction: column;
}

.nav__drop:hover .nav__menu {
  display: flex;
}

.nav__menu a {
  padding: 9px 12px;
  border-radius: 8px;
  font-size: 14px;
  color: var(--slate);
}

.nav__menu a:hover {
  background: var(--bg-soft);
  color: var(--brand-dark);
}

@media(max-width:900px) {
  .nav__drop {
    display: none;
  }
}

/* page hero (sub-pages) */
.page-hero {
  padding: 78px 0 42px;
  background: linear-gradient(180deg, var(--bg-soft), #fff);
}

.page-hero h1 {
  font-weight: 800;
  font-size: clamp(32px, 4.4vw, 52px);
  letter-spacing: -.02em;
  margin: 14px 0 16px;
}

.page-hero .sub {
  color: var(--muted);
  font-size: clamp(16px, 1.6vw, 19px);
  max-width: 660px;
  line-height: 1.6;
}

.page-hero.tight {
  padding-bottom: 18px;
}

/* savings calculator */
.calc {
  padding: 90px 0;
}

.calc__head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 40px;
}

.calc__head h2 {
  font-weight: 800;
  font-size: clamp(26px, 3vw, 40px);
  margin: 14px 0 10px;
  letter-spacing: -.02em;
}

.calc__head .sub {
  color: var(--muted);
  font-size: 16.5px;
}

.calc__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 940px;
  margin: 0 auto;
}

.calc__inputs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 26px;
  align-content: start;
}

.calc__field {
  display: flex;
  flex-direction: column;
}

.calc__field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--slate);
  margin-bottom: 6px;
}

.calc__field label span {
  color: var(--muted);
  font-weight: 400;
}

.calc__field input {
  font-family: inherit;
  font-size: 16px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  padding: 11px 12px;
}

.calc__field input:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px var(--brand-soft);
}

.calc__out {
  background: var(--ink);
  color: #fff;
  border-radius: 18px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  justify-content: center;
}

.calc__result {
  display: flex;
  flex-direction: column;
}

.calc__num {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 30px;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.calc__result.big .calc__num {
  font-size: 46px;
}

.calc__num.accent {
  color: var(--accent);
}

.calc__lbl {
  color: #9fb3ab;
  font-size: 13.5px;
  margin-top: 5px;
}

.calc__out .btn {
  margin-top: 10px;
  align-self: flex-start;
}

.calc__note {
  color: #8fa39b;
  font-size: 12px;
}

@media(max-width:820px) {
  .calc__grid {
    grid-template-columns: 1fr;
  }
}

/* why switch / comparison */
.why {
  padding: 90px 0;
}

.why__head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 40px;
}

.why__head h2 {
  font-weight: 800;
  font-size: clamp(26px, 3vw, 40px);
  margin: 14px 0 10px;
  letter-spacing: -.02em;
}

.why__head .sub {
  color: var(--muted);
  font-size: 16.5px;
}

.compare {
  max-width: 980px;
  margin: 0 auto;
  overflow-x: auto;
}

.compare table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  min-width: 640px;
}

.compare th,
.compare td {
  padding: 15px 18px;
  text-align: left;
  font-size: 14.5px;
  border-bottom: 1px solid var(--line);
}

.compare thead th {
  font-weight: 700;
  font-size: 13px;
  color: var(--slate);
  background: var(--bg-soft);
}

.compare thead th.win {
  color: var(--brand-dark);
  background: var(--brand-soft);
}

.compare td.win {
  background: var(--brand-soft);
}

.compare td.no {
  color: var(--muted);
}

.compare td.mid {
  color: var(--slate);
}

.compare td.yes {
  color: var(--brand-dark);
  font-weight: 700;
}

.compare td:first-child {
  font-weight: 600;
  color: var(--ink);
}

.compare tbody tr:last-child td {
  border-bottom: 0;
}

/* social proof */
.proof {
  padding: 90px 0;
}

.proof__head {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 40px;
}

.proof__head h2 {
  font-weight: 800;
  font-size: clamp(24px, 2.8vw, 36px);
  margin-top: 12px;
  letter-spacing: -.02em;
}

.proof__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.quote {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0;
}

.quote blockquote {
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  font-weight: 500;
  margin: 0;
}

.quote figcaption {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--brand-dark);
  display: flex;
  flex-direction: column;
}

.quote figcaption span {
  color: var(--muted);
  font-weight: 400;
  margin-top: 2px;
}

.proof__note {
  text-align: center;
  color: var(--muted);
  font-size: 13px;
  margin-top: 24px;
}

@media(max-width:820px) {
  .proof__grid {
    grid-template-columns: 1fr;
  }
}

/* integrations */
.integrations {
  padding: 80px 0;
}

.int__head {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 34px;
}

.int__head h2 {
  font-weight: 800;
  font-size: clamp(24px, 2.8vw, 36px);
  margin: 12px 0 8px;
  letter-spacing: -.02em;
}

.int__head .sub {
  color: var(--muted);
  font-size: 16px;
}

.int__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 820px;
  margin: 0 auto;
}

.int__card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 20px 22px;
  font-weight: 600;
  font-size: 15px;
  color: var(--slate);
  text-align: center;
}

@media(max-width:640px) {
  .int__grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* pricing teaser */
.ptease {
  padding: 70px 0;
}

.ptease__inner {
  background: var(--brand-soft);
  border: 1px solid var(--brand-line);
  border-radius: 20px;
  padding: 40px 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.ptease__inner h2 {
  font-weight: 800;
  font-size: clamp(22px, 2.6vw, 32px);
  margin: 8px 0;
  letter-spacing: -.02em;
}

.ptease__inner p {
  color: var(--slate);
  font-size: 15.5px;
  max-width: 520px;
}

/* faq */
.faq {
  padding: 90px 0;
}

.faq__head {
  text-align: center;
  margin-bottom: 36px;
}

.faq__head h2 {
  font-weight: 800;
  font-size: clamp(24px, 2.8vw, 36px);
  margin-top: 12px;
  letter-spacing: -.02em;
}

.faq__list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0 20px;
}

.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 0;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq .chev {
  width: 20px;
  height: 20px;
  position: relative;
  flex: 0 0 auto;
}

.faq .chev::before,
.faq .chev::after {
  content: "";
  position: absolute;
  background: var(--brand);
  border-radius: 2px;
}

.faq .chev::before {
  top: 9px;
  left: 3px;
  right: 3px;
  height: 2px;
}

.faq .chev::after {
  left: 9px;
  top: 3px;
  bottom: 3px;
  width: 2px;
  transition: opacity .2s;
}

.faq details[open] .chev::after {
  opacity: 0;
}

.faq details p {
  padding: 0 0 20px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

/* pricing plans */
.pricing {
  padding: 20px 0 70px;
}

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}

.plan {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
}

.plan.featured {
  border-color: var(--brand);
  border-width: 2px;
}

.plan__badge {
  position: absolute;
  top: -12px;
  left: 28px;
  background: var(--brand);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 999px;
}

.plan__name {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--brand-dark);
}

.plan__price {
  margin: 14px 0 6px;
}

.plan__price .amt {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 40px;
  letter-spacing: -.02em;
}

.plan__price .per {
  color: var(--muted);
  font-size: 15px;
  margin-left: 4px;
}

.plan__for {
  color: var(--muted);
  font-size: 14.5px;
  margin-bottom: 20px;
}

.plan__feats {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 24px;
  flex: 1;
}

.plan__feats li {
  font-size: 14.5px;
  color: var(--slate);
  padding-left: 26px;
  position: relative;
}

.plan__feats li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 3px;
  width: 14px;
  height: 8px;
  border-left: 2px solid var(--brand);
  border-bottom: 2px solid var(--brand);
  transform: rotate(-45deg);
}

.plan .btn {
  justify-content: center;
}

.pricing__note {
  text-align: center;
  color: var(--muted);
  font-size: 13px;
  margin-top: 28px;
}

.pricing__note a {
  color: var(--brand-dark);
  font-weight: 600;
}

@media(max-width:820px) {
  .pricing__grid {
    grid-template-columns: 1fr;
  }
}

/* about */
.about {
  padding: 70px 0;
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.about__grid h2 {
  font-weight: 800;
  font-size: clamp(22px, 2.4vw, 30px);
  margin-bottom: 16px;
  letter-spacing: -.01em;
}

.about__grid p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 16px;
}

.values {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.values li {
  font-size: 15.5px;
  color: var(--muted);
  line-height: 1.55;
}

.values li strong {
  color: var(--ink);
}

@media(max-width:820px) {
  .about__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* contact */
.contact {
  padding: 20px 0 90px;
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact__copy h2 {
  font-weight: 800;
  font-size: 24px;
  margin-bottom: 18px;
}

.cta__points.dark li {
  color: var(--slate);
}

.contact__alt {
  margin-top: 22px;
  color: var(--muted);
  font-size: 14.5px;
}

.contact__alt a {
  color: var(--brand-dark);
  font-weight: 600;
}

@media(max-width:820px) {
  .contact__grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* pains (industry) */
.checks .tk.bad {
  background: var(--danger-soft);
}

/* quick optimizer */
.optim {
  padding: 24px 0 90px;
}

.optim__form {
  max-width: 820px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 30px;
}

.optim__id {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 22px;
}

.optim__id .field {
  margin: 0;
}

.optim__id input,
.optim__row input {
  width: 100%;
  font-family: inherit;
  font-size: 15px;
  color: var(--ink);
  border: 1.5px solid var(--line);
  border-radius: 10px;
  padding: 11px 12px;
}

.optim__id input:focus,
.optim__row input:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px var(--brand-soft);
}

.optim__stopshead {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin: 6px 0 12px;
  flex-wrap: wrap;
}

.optim__h {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 16px;
  margin: 0;
}

.optim__h span {
  color: var(--muted);
  font-weight: 400;
  font-size: 13px;
}

.optim__stopshead .btn {
  padding: 8px 16px;
  font-size: 14px;
}

.optim__rowhead {
  display: grid;
  grid-template-columns: 1fr 140px 140px 96px;
  gap: 10px;
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
  padding: 0 2px 6px;
}

.optim__row {
  display: grid;
  grid-template-columns: 1fr 140px 140px 96px;
  gap: 10px;
  margin-bottom: 8px;
}

.optim__row input[type=time] {
  padding-left: 10px;
  padding-right: 8px;
}

.optim__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 22px;
  flex-wrap: wrap;
}

.optim__price {
  font-size: 15px;
  color: var(--slate);
}

.optim__price strong {
  font-family: 'Sora', sans-serif;
  font-size: 22px;
  color: var(--ink);
  margin-right: 4px;
}

@media(max-width:720px) {
  .optim__id {
    grid-template-columns: 1fr;
  }

  .optim__rowhead,
  .optim__row {
    grid-template-columns: 1fr 118px 118px 80px;
  }
}

.optim__summary {
  display: flex;
  gap: 44px;
  justify-content: center;
  margin: 0 auto 34px;
  flex-wrap: wrap;
}

.optim__summary .stat {
  text-align: center;
}

.optim__summary .num {
  display: block;
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 32px;
  color: var(--brand-dark);
  line-height: 1;
}

.optim__summary .lbl {
  color: var(--muted);
  font-size: 13px;
  margin-top: 6px;
}

.optim__result {
  max-width: 760px;
  margin: 0 auto 30px;
  list-style: none;
  padding: 0;
}

.optim__result li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  margin-bottom: 10px;
}

.optim__num {
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-weight: 700;
  display: grid;
  place-items: center;
  font-size: 14px;
}

.optim__addr {
  font-weight: 600;
  color: var(--ink);
}

.optim__meta {
  color: var(--muted);
  font-size: 13.5px;
  margin-top: 3px;
}

.optim__actions {
  text-align: center;
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* full-service / custom builds (home, dark band) */
.eyebrow.light {
  color: #7fd3b5;
}

.custom {
  background: var(--ink);
  color: #eaf2ee;
  padding: 96px 0;
}

.custom__head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 48px;
}

.custom__head h2 {
  color: #fff;
  font-weight: 800;
  font-size: clamp(26px, 3vw, 40px);
  margin: 14px 0 12px;
  letter-spacing: -.02em;
}

.custom__head .sub {
  color: #9fb3ab;
  font-size: 17px;
  line-height: 1.6;
}

.custom__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 40px;
}

.scard {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .10);
  border-radius: 16px;
  padding: 28px;
}

.scard__ic {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(15, 157, 116, .18);
  display: grid;
  place-items: center;
  margin-bottom: 16px;
}

.scard h3 {
  color: #fff;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 10px;
}

.scard p {
  color: #9fb3ab;
  font-size: 14.5px;
  line-height: 1.6;
}

.custom__cta {
  text-align: center;
}

@media(max-width:820px) {
  .custom__grid {
    grid-template-columns: 1fr;
  }
}

/* per-location pricing card */
.perloc {
  padding: 10px 0 40px;
}

.perloc__card {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 36px;
  align-items: center;
  background: var(--brand-soft);
  border: 1px solid var(--brand-line);
  border-radius: 20px;
  padding: 40px 44px;
}

.perloc__left h2 {
  font-weight: 800;
  font-size: clamp(22px, 2.6vw, 30px);
  line-height: 1.12;
  margin: 12px 0 12px;
  letter-spacing: -.02em;
}

.perloc__left p {
  color: var(--slate);
  font-size: 15.5px;
  line-height: 1.6;
  margin-bottom: 18px;
}

.perloc__left .checks li {
  font-size: 15px;
}

.perloc__right {
  background: #fff;
  border: 1px solid var(--brand-line);
  border-radius: 16px;
  padding: 26px;
  text-align: center;
}

.perloc__from {
  color: var(--muted);
  font-size: 13px;
}

.perloc__price {
  margin: 4px 0 6px;
}

.perloc__price .amt {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 44px;
  letter-spacing: -.02em;
  color: var(--ink);
}

.perloc__price .per {
  color: var(--muted);
  font-size: 15px;
  margin-left: 4px;
}

.perloc__note {
  color: var(--muted);
  font-size: 12px;
  margin-bottom: 18px;
  line-height: 1.5;
}

.perloc__right .btn {
  width: 100%;
  justify-content: center;
}

@media(max-width:820px) {
  .perloc__card {
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 32px 24px;
  }
}

/* custom build band (pricing page) */
.custom-band-wrap {
  padding: 10px 0 70px;
}

.custom-band__inner {
  background: var(--ink);
  color: #eaf2ee;
  border-radius: 20px;
  padding: 40px 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}

.custom-band__inner .eyebrow {
  color: #7fd3b5;
}

.custom-band__inner h2 {
  color: #fff;
  font-weight: 800;
  font-size: clamp(22px, 2.6vw, 30px);
  margin: 8px 0;
  letter-spacing: -.02em;
}

.custom-band__inner p {
  color: #9fb3ab;
  font-size: 15.5px;
  max-width: 640px;
}

.custom-band__feats {
  list-style: none;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.custom-band__feats li {
  color: #cfe0d9;
  font-size: 14px;
  padding-left: 22px;
  position: relative;
}

.custom-band__feats li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 13px;
  height: 7px;
  border-left: 2px solid #7fd3b5;
  border-bottom: 2px solid #7fd3b5;
  transform: rotate(-45deg);
}

/* ============================================================
   Mobile responsive enhancements
   Appended after the existing stylesheet so desktop styling and
   all current component rules remain unchanged.
   ============================================================ */

/* Tablet and smaller screens */
@media (max-width: 760px) {
  html {
    scroll-padding-top: 66px;
  }

  .wrap {
    padding-left: 18px;
    padding-right: 18px;
  }

  img,
  video,
  iframe {
    max-width: 100%;
  }

  .hero,
  .page-hero {
    padding-top: 48px;
  }

  .pillars,
  .feature,
  .how,
  .cta,
  .calc,
  .why,
  .proof,
  .faq {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .custom {
    padding-top: 68px;
    padding-bottom: 68px;
  }

  .integrations {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .about {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .contact {
    padding-bottom: 64px;
  }

  .optim {
    padding-bottom: 64px;
  }

  .hero__grid,
  .feature__grid,
  .cta__grid,
  .calc__grid,
  .about__grid,
  .contact__grid,
  .perloc__card {
    min-width: 0;
  }

  .hero__grid>*,
  .feature__grid>*,
  .cta__grid>*,
  .calc__grid>*,
  .about__grid>*,
  .contact__grid>*,
  .perloc__card>* {
    min-width: 0;
  }

  .hero p.sub,
  .feature p.body,
  .page-hero .sub,
  .cta p,
  .ptease__inner p,
  .custom-band__inner p {
    max-width: none;
  }

  .hero__cta,
  .optim__actions {
    align-items: stretch;
  }

  .hero__cta .btn,
  .optim__actions .btn {
    flex: 1 1 210px;
    justify-content: center;
  }

  .fstat {
    position: static;
    margin-top: 12px;
    display: inline-flex;
    flex-direction: column;
  }

  .cta__card,
  .ptease__inner,
  .custom-band__inner {
    border-radius: 20px;
  }

  .ptease__inner,
  .custom-band__inner {
    padding: 32px 26px;
  }

  .ptease__inner>.btn,
  .custom-band__inner>.btn {
    width: 100%;
    justify-content: center;
  }

  .form-card,
  .optim__form {
    padding: 24px;
  }

  .calc__inputs {
    padding: 22px;
  }

  .calc__out {
    padding: 26px;
  }

  .calc__result.big .calc__num {
    font-size: clamp(36px, 10vw, 46px);
  }

  .compare {
    margin-left: -18px;
    margin-right: -18px;
    padding-left: 18px;
    padding-right: 18px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
  }

  .pricing__grid,
  .proof__grid,
  .custom__grid {
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
  }

  .foot {
    flex-direction: column;
  }

  .foot__links {
    gap: 30px 42px;
  }

  .foot__bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .optim__rowhead {
    display: none;
  }

  .optim__row {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) auto;
    align-items: center;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 12px;
    margin-bottom: 12px;
  }

  .optim__row> :first-child {
    grid-column: 1 / -1;
  }

  .optim__row input {
    min-width: 0;
  }

  .optim__row input[type="time"] {
    padding-left: 10px;
    padding-right: 8px;
  }

  .optim__foot {
    align-items: stretch;
  }

  .optim__foot .btn {
    justify-content: center;
  }

  .optim__summary {
    gap: 28px;
  }

  .optim__summary .stat {
    flex: 1 1 120px;
  }
}

/* Phones */
@media (max-width: 520px) {
  .wrap {
    padding-left: 16px;
    padding-right: 16px;
  }

  header.nav {
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
  }

  .nav__inner {
    height: 62px;
    gap: 12px;
  }

  .brand {
    font-size: 18px;
    gap: 7px;
    min-width: 0;
  }

  .brand .dot {
    width: 24px;
    height: 24px;
    border-radius: 7px;
  }

  .nav__links {
    gap: 8px;
    flex: 0 0 auto;
  }

  .nav__links .btn {
    padding: 10px 14px;
    font-size: 14px;
  }

  .hero {
    padding: 42px 0 30px;
  }

  .hero h1 {
    font-size: clamp(32px, 10.5vw, 44px);
    margin-top: 14px;
  }

  .hero p.sub {
    font-size: 16px;
    line-height: 1.55;
    margin-bottom: 24px;
  }

  .hero__grid {
    gap: 28px;
  }

  .hero__cta {
    flex-direction: column;
  }

  .hero__cta .btn {
    width: 100%;
    flex-basis: auto;
  }

  .hero__note {
    align-items: flex-start;
    line-height: 1.45;
  }

  .hero__img img {
    border-radius: 16px;
  }

  .industries {
    padding-top: 28px;
  }

  .chips {
    gap: 9px;
  }

  .chip {
    padding: 9px 13px;
    font-size: 13.5px;
  }

  .pillars,
  .feature,
  .how,
  .cta,
  .calc,
  .why,
  .proof,
  .faq {
    padding-top: 52px;
    padding-bottom: 52px;
  }

  .pillar,
  .step,
  .quote,
  .plan,
  .scard {
    padding: 24px 20px;
  }

  .pillar h3,
  .feature h2,
  .how h2,
  .calc__head h2,
  .why__head h2,
  .proof__head h2,
  .faq__head h2 {
    overflow-wrap: anywhere;
  }

  .feature__grid {
    gap: 28px;
  }

  .feature p.body {
    font-size: 15.5px;
  }

  .fimg img {
    border-radius: 15px;
    box-shadow: 0 16px 38px rgba(16, 31, 26, .13);
  }

  .roi {
    padding: 52px 0;
  }

  .roi p.sub {
    margin-bottom: 34px;
  }

  .roi__grid {
    gap: 30px 14px;
  }

  .roi .num {
    font-size: clamp(28px, 9vw, 38px);
  }

  .how__head,
  .calc__head,
  .why__head,
  .proof__head,
  .custom__head {
    margin-bottom: 32px;
  }

  .cta__card {
    padding: 30px 20px;
    border-radius: 18px;
  }

  .cta h2 {
    font-size: clamp(27px, 8.5vw, 36px);
  }

  .cta p {
    font-size: 16px;
  }

  .cta__points li {
    align-items: flex-start;
  }

  .form-card,
  .optim__form {
    padding: 20px 16px;
    border-radius: 14px;
  }

  .field input,
  .field select,
  .field textarea,
  .calc__field input,
  .optim__id input,
  .optim__row input {
    font-size: 16px;
  }

  .calc__inputs {
    grid-template-columns: 1fr;
    padding: 20px 16px;
  }

  .calc__out {
    padding: 24px 20px;
  }

  .calc__out .btn {
    width: 100%;
    justify-content: center;
  }

  .compare {
    margin-left: -16px;
    margin-right: -16px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .compare table {
    min-width: 580px;
  }

  .compare th,
  .compare td {
    padding: 13px 14px;
    font-size: 13.5px;
  }

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

  .ptease {
    padding: 52px 0;
  }

  .ptease__inner,
  .custom-band__inner {
    padding: 28px 20px;
    border-radius: 16px;
  }

  .faq details {
    padding: 0 16px;
  }

  .faq summary {
    font-size: 15px;
    padding: 16px 0;
  }

  .plan__badge {
    left: 20px;
  }

  .plan__price .amt {
    font-size: 36px;
  }

  .perloc__card {
    padding: 26px 18px;
    border-radius: 16px;
  }

  .perloc__right {
    padding: 22px 18px;
  }

  .perloc__price .amt {
    font-size: 40px;
  }

  .custom {
    padding: 56px 0;
  }

  .custom__head .sub {
    font-size: 16px;
  }

  .custom-band-wrap {
    padding-bottom: 52px;
  }

  .custom-band__feats {
    flex-direction: column;
    gap: 11px;
  }

  .optim__stopshead {
    align-items: stretch;
  }

  .optim__stopshead .btn {
    width: 100%;
    justify-content: center;
  }

  .optim__row {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) auto;
    gap: 8px;
    padding: 10px;
  }

  .optim__foot {
    flex-direction: column;
  }

  .optim__foot .btn {
    width: 100%;
  }

  .optim__price {
    text-align: center;
  }

  .optim__result li {
    gap: 12px;
    padding: 14px;
  }

  .optim__actions {
    flex-direction: column;
  }

  .optim__actions .btn {
    width: 100%;
    flex-basis: auto;
  }

  footer.site {
    padding: 42px 0 28px;
  }

  .foot__links {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px 20px;
  }
}

/* Very narrow phones */
@media (max-width: 380px) {
  .wrap {
    padding-left: 14px;
    padding-right: 14px;
  }

  .brand {
    font-size: 16.5px;
  }

  .nav__links .btn {
    padding: 9px 11px;
    font-size: 13px;
  }

  .hero h1 {
    font-size: 31px;
  }

  .btn,
  .btn-lg {
    padding-left: 18px;
    padding-right: 18px;
  }

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

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

  .optim__row> :first-child {
    grid-column: 1 / -1;
  }

  .optim__row> :last-child {
    grid-column: 1 / -1;
    width: 100%;
  }

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