@font-face {
  font-family: "Roboto";
  src: url("/assets/fonts/RobotoLight.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  src: url("/assets/fonts/RobotoRegular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  src: url("/assets/fonts/RobotoMedium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  src: url("/assets/fonts/RobotoBold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #fff;
  --paper: #fff;
  --text: #20221f;
  --muted: #62675e;
  --line: #e7e7df;
  --green: #62b246;
  --green-dark: #3f8430;
  --blue: #247ca3;
  --blue-dark: #145b78;
  --clay: #b96f55;
  --soft-green: #edf5e9;
  --soft-blue: #f3fafc;
  --shadow: 0 18px 45px rgba(36, 49, 34, .08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Roboto", Arial, Helvetica, sans-serif;
  font-size: 17px;
  line-height: 1.62;
}

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

img {
  display: block;
  height: auto;
}

a {
  color: var(--blue-dark);
  text-decoration-thickness: .08em;
  text-underline-offset: .18em;
}

a:hover {
  color: var(--blue);
}

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

.wrap {
  width: min(980px, calc(100% - 40px));
  margin: 0 auto;
}

.narrow {
  max-width: 980px;
}

.skip-link {
  position: absolute;
  top: 12px;
  left: -999px;
  z-index: 30;
  padding: 8px 12px;
  background: var(--text);
  color: #fff;
}

.skip-link:focus {
  left: 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, .95);
  backdrop-filter: blur(14px);
}

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

.brand {
  display: inline-flex;
  flex-direction: column;
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  text-decoration: none;
  line-height: 1;
  min-width: 180px;
}

.brand-name {
  color: var(--green);
  font-size: 30px;
  font-weight: 700;
}

.brand-role {
  margin-top: 7px;
  color: var(--text);
  font-size: 14px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  font-size: 16px;
}

.site-nav a {
  color: var(--text);
  text-decoration: none;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--blue-dark);
}

.nav-cta,
.btn {
  min-height: 48px;
  border-radius: 8px;
  padding: 12px 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid transparent;
  line-height: 1.2;
}

.nav-cta,
.btn.primary {
  background: var(--blue);
  color: #fff !important;
  border-color: var(--blue);
}

.nav-cta:hover,
.btn.primary:hover {
  background: var(--blue-dark);
  border-color: var(--blue-dark);
}

.btn.secondary {
  background: transparent;
  color: var(--blue-dark);
  border-color: rgba(36, 124, 163, .55);
}

.btn.secondary:hover {
  background: var(--soft-blue);
}

.text-link {
  font-weight: 700;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: var(--paper);
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--text);
}

.section {
  padding: 40px 0;
}

.section-kicker {
  margin: 0 0 12px;
  color: var(--green-dark);
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}

h1,
h2,
h3 {
  margin-top: 0;
  line-height: 1.14;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(32px, 2.5vw, 38px);
  margin-bottom: 22px;
}

h2 {
  font-size: clamp(24px, 2.2vw, 32px);
  margin-bottom: 20px;
}

h3 {
  font-size: 24px;
}

.lead {
  font-size: 19px;
  color: #343832;
  margin: 0 0 26px;
}

.hero {
  padding-top: 62px;
  background: var(--paper);
}

.hero-grid {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 26px 42px;
  align-items: start;
}

.hero-grid > h1 {
  grid-column: 1 / -1;
  grid-row: 1;
  margin-bottom: 0;
  white-space: nowrap;
}

.hero-copy {
  grid-column: 2;
  grid-row: 2;
  max-width: 760px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 30px 0 0;
}

.trust-row {
  grid-column: 1 / -1;
  grid-row: 3;
  display: flex;
  flex-wrap: nowrap;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.trust-row li {
  padding: 8px 12px;
  border: 0;
  border-radius: 999px;
  background: #f7f8f5;
  color: var(--muted);
  font-size: 15px;
  white-space: nowrap;
}

.hero-media {
  grid-column: 1;
  grid-row: 2;
  position: relative;
  justify-self: start;
  width: min(100%, 240px);
}

.hero-media img,
.rounded-image {
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.hero-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.approach-section {
  background: var(--paper);
  border: 0;
}

.approach-panel {
  max-width: 920px;
}

.approach-panel p {
  max-width: 880px;
}

.quiet-band {
  background: var(--soft-green);
}

.intro-grid,
.faq-grid,
.proof-grid,
.two-column,
.split-grid,
.contact-card {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  gap: 46px;
  align-items: start;
}

.issue-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.issue-grid p,
.service-card,
.price-card,
.faq-list details,
.article-list article,
.cert-card,
.video-grid article {
  background: var(--paper);
  border: 0;
  border-radius: 8px;
}

.issue-grid p {
  margin: 0;
  padding: 18px;
}

.section-head {
  max-width: 760px;
  margin-bottom: 28px;
}

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

.service-card,
.price-card,
.video-grid article {
  padding: 26px;
}

.service-card p {
  color: var(--muted);
}

.service-card a {
  font-weight: 800;
}

.service-stack {
  display: grid;
  gap: 34px;
}

.service-detail,
.experience-card,
.education-card,
.media-card,
.video-card {
  background: var(--paper);
  border: 0;
  border-radius: 8px;
}

.service-detail {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 150px;
  gap: 16px 34px;
  align-items: start;
  padding: 34px 0;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.service-detail:first-child {
  padding-top: 0;
  border-top: 0;
}

.service-detail-head {
  display: contents;
}

.service-detail-head h3 {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.service-detail > p,
.service-detail > h4,
.service-detail > ul {
  grid-column: 1;
}

.service-detail > p {
  grid-row: 2;
  margin: 0;
}

.service-price {
  grid-column: 2;
  grid-row: 2;
  align-self: start;
  min-width: 150px;
  padding: 13px 18px;
  border: 0;
  border-radius: 8px;
  background: var(--soft-blue);
  color: var(--blue-dark);
  text-align: center;
  text-decoration: none;
}

.service-price strong {
  display: block;
  font-size: 32px;
  line-height: 1;
}

.service-price span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 500;
}

.service-detail h4 {
  margin: 24px 0 10px;
  font-size: 20px;
}

.split-section {
  background: var(--paper);
  border: 0;
}

.split-grid {
  grid-template-columns: 360px minmax(0, 1fr);
  align-items: center;
}

.proof-section {
  background: var(--paper);
}

.mini-certs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.mini-certs .cert-thumb {
  min-height: 100%;
}

.mini-certs img,
.cert-card img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: contain;
  object-position: top;
  padding: 10px;
  border-radius: 8px;
  background: #fff;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 0;
  margin: 0;
  list-style: none;
  counter-reset: steps;
}

.steps li {
  counter-increment: steps;
  padding: 24px;
  background: var(--paper);
  border-top: 4px solid var(--green);
  border-radius: 8px;
}

.steps li::before {
  content: counter(steps);
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  border-radius: 999px;
  background: var(--soft-green);
  color: var(--green-dark);
  font-weight: 800;
}

.steps strong,
.steps span {
  display: block;
}

.steps span {
  color: var(--muted);
}

.faq-section {
  background: var(--paper);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  padding: 18px 20px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 800;
}

.faq-list p {
  margin-bottom: 0;
  color: var(--muted);
}

.dark-section {
  background: var(--text);
  color: #fff;
}

.dark-section .section-kicker,
.dark-section a {
  color: #b8e0a6;
}

.contact-section,
.price-contact-section {
  scroll-margin-top: 96px;
}

.contact-card {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  align-items: center;
}

.contact-section:not(.dark-section) .contact-card {
  background: transparent;
  border: 0;
}

.contact-card h2 {
  white-space: nowrap;
}

.contact-actions {
  display: grid;
  gap: 12px;
  align-self: center;
}

.inline-contact-actions {
  margin-top: 22px;
}

.page-hero {
  background: var(--paper);
  border-bottom: 0;
}

.pricing-grid {
  align-items: stretch;
}

.pricing-section {
  scroll-margin-top: 96px;
}

.price-card {
  display: flex;
  flex-direction: column;
}

.table-wrap {
  overflow-x: auto;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 18px;
}

.price-table th,
.price-table td {
  padding: 18px 16px;
  border-bottom: 1px solid #dde2d6;
  text-align: left;
  vertical-align: top;
}

.price-table thead th {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.price-table tbody th {
  width: 56%;
  font-size: 20px;
  font-weight: 500;
}

.price-table tbody td:last-child {
  color: var(--text);
  font-size: inherit;
  font-weight: 400;
  white-space: nowrap;
}

.price-table tbody td {
  font-weight: 400;
}

.price-card.featured {
  box-shadow: none;
}

.price {
  margin: 8px 0 2px;
  font-size: 48px;
  font-weight: 900;
  color: var(--blue-dark);
}

.price-card .btn {
  margin-top: auto;
}

.check-list {
  padding-left: 20px;
}

.check-list li {
  margin-bottom: 10px;
}

.timeline {
  display: grid;
  gap: 18px;
  max-width: 880px;
}

.timeline article {
  padding: 24px;
  border-left: 5px solid var(--green);
  background: var(--paper);
  border-radius: 0 8px 8px 0;
}

.timeline span {
  color: var(--green-dark);
  font-weight: 800;
}

.experience-content {
  display: grid;
  gap: 20px;
  max-width: 980px;
}

.experience-card {
  padding: 28px;
}

.experience-card h2 {
  font-size: 26px;
  font-weight: 500;
}

.period {
  margin-top: -8px;
  color: var(--text);
  font-weight: 500;
}

.caption {
  color: var(--muted);
  font-size: 15px;
}

.experience-photo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 20px;
}

.experience-wide-image {
  width: min(420px, 100%);
  margin-top: 14px;
  border-radius: 8px;
  border: 0;
}

.experience-extra-list {
  display: grid;
  gap: 14px;
}

.experience-extra-list article {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  padding: 20px;
  background: var(--paper);
  border: 0;
  border-radius: 8px;
}

.experience-extra-list img {
  max-height: 92px;
  object-fit: contain;
}

.experience-extra-list h3 {
  margin-bottom: 8px;
  font-size: 20px;
}

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

.education-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 38px;
  row-gap: 52px;
  align-items: start;
}

.education-card {
  --cert-w: 429px;
  --cert-ratio: 429 / 626;
  display: block;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.education-card h2 {
  margin: 14px 0 8px;
  font-size: 20px;
}

.education-card p {
  margin-top: 0;
  color: var(--text);
  font-size: 16px;
  line-height: 1.5;
}

.education-card.is-landscape {
  --cert-w: 445px;
  --cert-ratio: 445 / 323;
}

.education-card.is-logo {
  --cert-w: 140px;
  --cert-ratio: 1 / 1;
}

.education-card.is-wide {
  grid-column: 1 / -1;
}

.education-card.is-wide:not(.logo-card) {
  --cert-w: 928px;
}

.education-card.logo-card.is-wide {
  max-width: 720px;
}

.education-card.logo-card {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr);
  gap: 0 20px;
  align-items: center;
}

.education-card.logo-card > div {
  align-self: center;
}

.education-card.logo-card .cert-card {
  margin: 0;
}

.education-card.logo-card h2 {
  margin-top: 0;
}

.education-card .cert-card,
.experience-photo-grid .cert-card {
  background: transparent;
  border: 0;
  border-radius: 0;
}

.education-card .cert-card img,
.experience-photo-grid .cert-card img {
  aspect-ratio: auto;
  object-fit: initial;
  object-position: initial;
  padding: 0;
  border: 0;
  border-radius: 8px;
}

.education-card .cert-card {
  width: min(100%, var(--cert-w));
  margin: 0 0 14px;
}

.education-card .cert-card img {
  width: 100%;
  aspect-ratio: var(--cert-ratio);
  object-fit: contain;
  object-position: center;
  background: #fff;
}

.cert-card {
  display: block;
  overflow: hidden;
  color: var(--text);
  text-decoration: none;
  cursor: zoom-in;
}

.cert-card img {
  border-bottom: 0;
}

.cert-card span {
  display: block;
  padding: 14px;
  font-weight: 800;
}

.video-list {
  display: grid;
  gap: 24px;
  max-width: 980px;
}

.video-card {
  padding: 28px;
}

.video-card iframe,
.video-grid iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  border-radius: 8px;
  background: #000;
}

.video-card h2 {
  font-size: 26px;
}

.video-grid h2 {
  margin-top: 16px;
  font-size: 24px;
}

.article-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px 40px;
  max-width: 980px;
}

.article-list article,
.article-card {
  padding: 24px;
}

.article-card {
  display: block;
}

.article-thumb img,
.article-hero-image {
  width: 100%;
  border-radius: 8px;
  border: 0;
  background: #fff;
}

.article-thumb img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.article-hero-image {
  margin-bottom: 28px;
}

.article-list h2 {
  font-size: 28px;
}

.article-page p {
  max-width: 760px;
}

.article-body img {
  display: inline-block;
  width: min(420px, 100%);
  margin: 10px 14px 16px 0;
  border-radius: 8px;
  border: 0;
}

.article-body h4 {
  margin: 28px 0 10px;
  font-size: 22px;
}

.media-mentions {
  background: var(--soft-blue);
}

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

.media-card {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 18px;
}

.media-card img {
  width: 112px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 8px;
}

.media-card p {
  grid-column: 2;
  margin: 0;
}

.media-card .text-link {
  grid-column: 2;
}

.legal {
  max-width: 860px;
}

.legal h2 {
  margin-top: 28px;
  font-size: 26px;
}

.site-footer {
  padding: 46px 0;
  background: #ebece4;
  border-top: 0;
  color: var(--muted);
  font-size: 16px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) repeat(2, minmax(180px, .7fr));
  gap: 28px;
}

.footer-brand {
  color: var(--text);
  font-weight: 900;
  text-decoration: none;
}

.site-footer h2 {
  font-size: 18px;
  margin-bottom: 10px;
}

.plain-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.plain-list li {
  margin-bottom: 8px;
}

.cookie-panel {
  position: fixed;
  left: 50%;
  bottom: 12px;
  transform: translateX(-50%);
  z-index: 40;
  width: min(560px, calc(100% - 24px));
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  align-items: center;
  padding: 8px 10px;
  border: 0;
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 10px 30px rgba(31, 36, 28, .12);
  font-size: 14px;
}

.cookie-panel[hidden] {
  display: none;
}

.cookie-panel p {
  margin: 0;
  color: var(--muted);
}

.cookie-panel strong {
  color: var(--text);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  gap: 12px;
  padding: 18px;
  background: rgba(17, 20, 16, .86);
}

.lightbox[hidden] {
  display: none;
}

.lightbox-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: #fff;
}

.lightbox-title {
  font-weight: 700;
}

.lightbox-close {
  min-height: 42px;
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 8px;
  background: rgba(255,255,255,.12);
  color: #fff;
  cursor: pointer;
  font-weight: 700;
}

.lightbox-frame {
  overflow: auto;
  text-align: center;
}

.lightbox-frame img {
  width: auto;
  max-width: min(1200px, 96vw);
  max-height: none;
  margin: 0 auto;
  background: #fff;
  border-radius: 6px;
}

.cookie-actions {
  display: flex;
  gap: 6px;
  flex-wrap: nowrap;
}

.cookie-actions button {
  min-height: 32px;
  padding: 6px 10px;
  border-radius: 7px;
  border: 0;
  background: #f0f2ed;
  cursor: pointer;
  font-weight: 700;
}

.cookie-actions button:first-child {
  background: var(--green-dark);
  border-color: var(--green-dark);
  color: #fff;
}

@media (max-width: 920px) {
  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    display: none;
    padding: 16px 20px 22px;
    background: var(--paper);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: grid;
    gap: 4px;
    justify-content: stretch;
    justify-items: stretch;
  }

  .site-nav a,
  .nav-cta {
    justify-content: flex-start;
    width: 100%;
  }

  .hero-grid,
  .intro-grid,
  .faq-grid,
  .proof-grid,
  .two-column,
  .split-grid,
  .contact-card,
  .education-grid,
  .education-card,
  .article-card,
  .media-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 34px;
  }

  .hero-grid > h1,
  .hero-copy,
  .hero-media,
  .trust-row {
    grid-column: auto;
    grid-row: auto;
  }

  .hero-media {
    order: -1;
    max-width: 160px;
    justify-self: center;
    margin: 0 auto;
  }

  .hero-media img {
    border-radius: 999px;
  }

  .hero-grid > h1,
  .contact-card h2 {
    white-space: normal;
  }

  .trust-row {
    flex-wrap: wrap;
  }

  .education-card.logo-card {
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 0 16px;
  }

  .education-card.is-logo {
    --cert-w: 96px;
  }

  .service-grid,
  .pricing-grid,
  .video-grid,
  .steps,
  .cert-grid {
    grid-template-columns: 1fr;
  }

  .issue-grid,
  .mini-certs,
  .article-list,
  .experience-photo-grid {
    grid-template-columns: 1fr;
  }

  .service-detail {
    display: block;
  }

  .service-detail-head {
    display: grid;
    gap: 14px;
    margin-bottom: 16px;
  }

  .service-price {
    grid-column: auto;
    grid-row: auto;
    justify-self: start;
    width: min(100%, 220px);
  }

  .media-card,
  .experience-extra-list article {
    grid-template-columns: 88px minmax(0, 1fr);
  }

  .media-card img {
    width: 88px;
  }
}

@media (max-width: 560px) {
  body {
    font-size: 17px;
  }

  .wrap {
    width: min(100% - 28px, 980px);
  }

  .section {
    padding: 34px 0;
  }

  h1 {
    font-size: 32px;
  }

  .lead {
    font-size: 18px;
  }

  .table-wrap {
    overflow: visible;
  }

  .price-table,
  .price-table tbody,
  .price-table tr,
  .price-table th,
  .price-table td {
    display: block;
  }

  .price-table thead {
    display: none;
  }

  .price-table tr {
    padding: 16px;
    margin-bottom: 12px;
    border-radius: 8px;
    background: #f7f8f5;
  }

  .price-table th,
  .price-table td {
    padding: 0;
    border-bottom: 0;
  }

  .price-table tbody th {
    width: auto;
    margin-bottom: 10px;
    font-size: 20px;
  }

  .price-table tbody td {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    color: var(--text);
    font-size: 17px;
    font-weight: 400;
  }

  .price-table tbody td + td {
    margin-top: 4px;
  }

  .price-table tbody td:nth-child(2)::before {
    content: "Длительность";
    color: var(--muted);
  }

  .price-table tbody td:nth-child(3)::before {
    content: "Стоимость";
    color: var(--muted);
  }

  .price-table tbody td:last-child {
    color: var(--text);
    font-size: 17px;
    font-weight: 400;
    white-space: normal;
  }

  .hero-actions .btn,
  .contact-actions .btn,
  .price-card .btn {
    width: 100%;
  }

  .contact-card {
    padding: 24px;
  }

  .cookie-panel {
    left: 10px;
    right: 10px;
    bottom: 10px;
    transform: none;
    width: auto;
    padding: 8px;
    font-size: 12px;
  }

  .cookie-actions {
    gap: 6px;
  }

  .cookie-actions button {
    min-height: 36px;
    padding: 7px 10px;
  }
}
