@font-face {
  font-family: "Fraunces";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("assets/fonts/fraunces-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("assets/fonts/inter-latin.woff2") format("woff2");
}

:root {
  color-scheme: light;
  --ink: #14201d;
  --muted: #56635d;
  --paper: #f6f4ee;
  --white: #ffffff;
  --line: #e0dcd0;
  --teal: #0b6f6a;
  --teal-dark: #084d4a;
  --teal-ghost: rgba(11, 111, 106, 0.09);
  --amber: #b56a18;
  /* Text-safe amber for light backgrounds: --amber is 3.8:1 on --paper, below
     WCAG AA for the 13px eyebrow. Decorative rules keep --amber. */
  --amber-ink: #9a5610;
  --amber-bright: #e39b3b;
  --charcoal: #101715;
  --charcoal-card: #1a2320;
  --charcoal-line: rgba(255, 255, 255, 0.12);
  --shadow: 0 18px 45px rgba(20, 32, 29, 0.13);
  --shadow-hover: 0 22px 55px rgba(20, 32, 29, 0.16);
  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  font-family: var(--sans);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.55;
  font-optical-sizing: auto;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: var(--teal);
  color: var(--white);
}

a {
  color: inherit;
}

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

.skip-link:focus {
  z-index: 100;
  width: auto;
  height: auto;
  margin: 12px;
  padding: 10px 14px;
  clip: auto;
  background: var(--white);
  border: 2px solid var(--teal);
}

/* ---------- Header ---------- */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 14px clamp(20px, 4vw, 56px);
  color: var(--white);
  transition: background 200ms ease, color 200ms ease, box-shadow 200ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(246, 244, 238, 0.92);
  color: var(--ink);
  box-shadow: 0 1px 0 var(--line);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 620;
  letter-spacing: 0.01em;
}

.brand-logo {
  display: block;
  width: 38px;
  height: 38px;
  flex: none;
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.28));
}

.site-header.is-scrolled .brand-logo,
.site-header.is-open .brand-logo {
  filter: none;
}

.brand-word {
  line-height: 1;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(8px, 1.6vw, 22px);
  font-size: 14px;
  font-weight: 600;
}

.site-nav a {
  position: relative;
  padding: 6px 2px;
  text-decoration: none;
  transition: color 150ms ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 2px;
  background: var(--amber);
  transition: right 220ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  right: 0;
}

.site-nav a:last-child {
  padding: 9px 16px;
  border: 1.5px solid currentColor;
  border-radius: 999px;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.site-nav a:last-child::after {
  display: none;
}

.site-nav a:last-child:hover {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--white);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid currentColor;
  border-radius: 10px;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.nav-toggle-bars,
.nav-toggle-bars::before,
.nav-toggle-bars::after {
  display: block;
  width: 18px;
  height: 2px;
  margin: auto;
  background: currentColor;
  content: "";
}

.nav-toggle-bars::before {
  transform: translateY(-6px);
}

.nav-toggle-bars::after {
  transform: translateY(4px);
}

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: clamp(640px, 94svh, 960px);
  display: grid;
  align-items: end;
  overflow: hidden;
}

.hero-image,
.hero-scrim {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-scrim {
  background:
    linear-gradient(90deg, rgba(9, 20, 17, 0.92) 0%, rgba(9, 20, 17, 0.72) 34%, rgba(9, 20, 17, 0.22) 70%),
    linear-gradient(0deg, rgba(9, 20, 17, 0.72), rgba(9, 20, 17, 0.05) 48%);
}

.hero-content {
  position: relative;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 160px 0 100px;
  color: var(--white);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 16px;
  color: var(--amber-ink);
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: currentColor;
  flex: none;
}

.hero .eyebrow {
  color: var(--amber-bright);
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

h1,
h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 560;
  line-height: 1.02;
  letter-spacing: -0.01em;
}

h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: -0.005em;
}

h1 {
  max-width: 15ch;
  font-size: clamp(42px, 6.4vw, 92px);
  line-height: 1.03;
}

h2 {
  font-size: clamp(34px, 4.6vw, 58px);
  letter-spacing: -0.015em;
}

.hero-lede {
  max-width: 720px;
  margin: 22px 0 0;
  font-family: var(--serif);
  font-size: clamp(21px, 2.2vw, 29px);
  font-weight: 480;
  font-style: italic;
  line-height: 1.22;
  color: rgba(255, 255, 255, 0.96);
}

.hero-copy {
  max-width: 620px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(16.5px, 1.7vw, 19px);
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.hero-note {
  max-width: 620px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 14.5px;
  line-height: 1.55;
}

.hero-note strong {
  color: var(--amber-bright);
  font-weight: 750;
}

/* ---------- Buttons ---------- */

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 24px;
  border: 1.5px solid transparent;
  border-radius: 999px;
  font-size: 15.5px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.button.primary {
  background: var(--teal);
  color: var(--white);
  box-shadow: 0 10px 26px rgba(8, 77, 74, 0.32);
}

.button.primary::after {
  content: "\2192";
  font-weight: 500;
  transition: transform 180ms ease;
}

.button.primary:hover {
  background: var(--teal-dark);
  transform: translateY(-1px);
}

.button.primary:hover::after {
  transform: translateX(3px);
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.55);
  color: var(--white);
}

.button.secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.85);
}

/* ---------- Sections ---------- */

.section,
.band,
.contact-band {
  padding: clamp(76px, 10vw, 138px) 0;
}

.band {
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.intro {
  padding: clamp(48px, 6vw, 84px) 0;
}

.intro-grid,
.split-grid,
.about-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(32px, 7vw, 86px);
  align-items: start;
}

.intro-grid p:last-child,
.about-copy,
.statement-list {
  color: var(--muted);
  font-size: clamp(17px, 1.9vw, 21px);
}

.intro-grid p:last-child {
  border-left: 3px solid var(--teal);
  padding-left: clamp(18px, 2.5vw, 28px);
  margin: 6px 0 0;
}

.section-heading {
  max-width: 880px;
  margin-bottom: clamp(36px, 5vw, 56px);
}

.section-heading h2 {
  margin-top: 0;
}

.section-lede {
  max-width: 62ch;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 1.7vw, 19px);
}

/* ---------- Proof band ---------- */

.proof {
  padding: clamp(44px, 5vw, 68px) 0;
  background: var(--charcoal);
  color: var(--white);
}

.proof-lede {
  max-width: 72ch;
  margin: 0 0 clamp(26px, 3vw, 36px);
  color: rgba(255, 255, 255, 0.62);
  font-size: 14.5px;
  line-height: 1.6;
}

.proof-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 34px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.proof-list li {
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.proof-list strong {
  display: block;
  margin-bottom: 8px;
  font-family: var(--serif);
  font-size: clamp(24px, 2.4vw, 32px);
  font-weight: 560;
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--amber-bright);
}

.proof-list span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14.5px;
  line-height: 1.55;
}

/* ---------- Cards ---------- */

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  counter-reset: service;
}

.service-card,
.assessment-grid article,
.step {
  position: relative;
  min-height: 188px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.service-card:hover,
.assessment-grid article:hover {
  transform: translateY(-4px);
  border-color: rgba(11, 111, 106, 0.38);
  box-shadow: var(--shadow-hover);
}

#services .service-card {
  counter-increment: service;
}

#services .service-card::before {
  content: counter(service, decimal-leading-zero);
  display: block;
  margin-bottom: 16px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  font-weight: 560;
  color: var(--teal);
}

.band .service-card,
.band .assessment-grid article,
.band .step {
  background: var(--paper);
}

.service-card p,
.assessment-grid p,
.step p,
.statement-list p,
.about-copy p {
  margin: 12px 0 0;
  color: var(--muted);
}

#services .service-card > p:first-of-type {
  color: var(--ink);
  font-size: 15.5px;
  line-height: 1.5;
}

.card-detail {
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--muted);
  opacity: 0.85;
}

/* ---------- Approach steps ---------- */

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.step {
  min-height: 200px;
  overflow: hidden;
}

.step::after {
  content: "";
  position: absolute;
  left: 26px;
  right: 26px;
  top: 74px;
  height: 1px;
  background: var(--line);
}

.step span {
  display: inline-block;
  margin-bottom: 34px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 30px;
  font-weight: 520;
  line-height: 1;
  color: var(--teal);
}

/* ---------- Statement lists ---------- */

.statement-list {
  display: grid;
  gap: 20px;
}

.statement-list p {
  margin: 0;
  padding-left: clamp(18px, 2.5vw, 28px);
  border-left: 3px solid var(--amber);
}

/* ---------- Candor (signature dark section) ---------- */

#candor {
  background:
    radial-gradient(1300px 640px at 85% -18%, rgba(11, 111, 106, 0.16), rgba(11, 111, 106, 0.05) 45%, transparent 70%),
    var(--charcoal);
  color: var(--white);
}

#candor .section-heading h2 {
  color: var(--white);
}

#candor .eyebrow {
  color: var(--amber-bright);
}

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

#candor .service-card {
  min-height: 210px;
  background: var(--charcoal-card);
  border-color: var(--charcoal-line);
}

#candor .service-card:hover {
  border-color: rgba(227, 155, 59, 0.5);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.45);
}

#candor .service-card h3 {
  color: var(--white);
}

#candor .service-card p {
  color: rgba(255, 255, 255, 0.72);
}

.verdict {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 14px 0 2px;
}

.chip {
  display: inline-flex;
  align-items: center;
  padding: 4px 11px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.chip-known {
  border-color: rgba(255, 255, 255, 0.28);
  color: rgba(255, 255, 255, 0.85);
}

.chip-no {
  background: rgba(227, 100, 59, 0.16);
  border-color: rgba(227, 100, 59, 0.45);
  color: #f4a58c;
}

.chip-yes {
  background: rgba(11, 111, 106, 0.28);
  border-color: rgba(80, 190, 180, 0.45);
  color: #8fdcd4;
}

.candor-statements {
  margin-top: clamp(40px, 5vw, 60px);
  max-width: 880px;
}

#candor .statement-list p {
  color: rgba(255, 255, 255, 0.78);
  border-left-color: var(--amber-bright);
}

#candor .statement-list p:last-child {
  border-left: 0;
  padding-left: 0;
  margin-top: 14px;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 500;
  line-height: 1.2;
  color: var(--white);
}

/* ---------- Assessments ---------- */

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

.assessment-grid article {
  min-height: 0;
  padding-left: 30px;
}

.assessment-grid article::before {
  content: "";
  position: absolute;
  left: 0;
  top: 26px;
  bottom: 26px;
  width: 3px;
  border-radius: 3px;
  background: var(--teal);
  opacity: 0.35;
  transition: opacity 220ms ease;
}

.assessment-grid article:hover::before {
  opacity: 1;
}

.offer-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px;
  margin: 10px 0 0;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.offer-meta .price {
  color: var(--teal);
}

.offer-meta .term {
  color: var(--muted);
  opacity: 0.85;
}

.offer-meta .price + .term::before {
  content: "\00b7";
  margin-right: 10px;
}

.assessment-note {
  max-width: 78ch;
  margin: clamp(28px, 3vw, 38px) 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

/* ---------- About ---------- */

.about-copy p:first-child {
  font-family: var(--serif);
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 520;
  line-height: 1.3;
  color: var(--ink);
}

.about-copy a {
  color: var(--teal);
  font-weight: 650;
  text-decoration-color: rgba(11, 111, 106, 0.4);
  text-underline-offset: 3px;
}

.about-copy a:hover {
  text-decoration-color: var(--teal);
}

/* ---------- Contact ---------- */

.contact-band {
  background:
    radial-gradient(1100px 560px at 12% -8%, rgba(11, 111, 106, 0.18), rgba(11, 111, 106, 0.05) 45%, transparent 70%),
    var(--charcoal);
  color: var(--white);
}

.contact-band p:not(.eyebrow):not(.form-note) {
  color: rgba(255, 255, 255, 0.75);
  font-size: 19px;
}

.contact-band .eyebrow {
  color: var(--amber-bright);
}

.contact-facts {
  display: grid;
  gap: 12px;
  margin: clamp(24px, 3vw, 34px) 0 0;
  padding: 0;
  list-style: none;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15.5px;
  line-height: 1.55;
}

.contact-facts li {
  padding-left: 20px;
  position: relative;
}

.contact-facts li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--amber-bright);
}

.contact-facts a {
  color: #8fdcd4;
  font-weight: 650;
  text-underline-offset: 3px;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid var(--charcoal-line);
  border-radius: 18px;
  background: var(--charcoal-card);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
  font: inherit;
  font-size: 16px;
  padding: 13px 14px;
  transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(80, 190, 180, 0.8);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(11, 111, 106, 0.35);
}

.contact-form textarea {
  resize: vertical;
}

.contact-form .button.primary {
  margin-top: 4px;
}

.form-trap {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-note {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  letter-spacing: 0;
  text-transform: none;
  scroll-margin-top: 96px;
}

.form-note.is-success {
  color: #9ee5da;
}

.form-note.is-error {
  color: #ffb3ad;
}

/* ---------- Footer ---------- */

.site-footer {
  padding: 34px 0;
  background: #0b100e;
  color: rgba(255, 255, 255, 0.68);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 20px;
  font-size: 14px;
}

.footer-inner p {
  margin: 0;
}

.footer-inner > div > p:first-child::before {
  content: "CoreFeld";
  display: inline-block;
  margin-right: 14px;
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.92);
}

.footer-sub {
  margin-top: 6px !important;
  color: rgba(255, 255, 255, 0.5);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration-color: rgba(255, 255, 255, 0.3);
  text-underline-offset: 3px;
}

.footer-links a:hover {
  color: var(--white);
  text-decoration-color: rgba(255, 255, 255, 0.8);
}

/* ---------- Scroll reveal ---------- */

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 600ms ease, transform 600ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media print {
  .reveal {
    opacity: 1;
    transform: none;
  }
}

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

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

  .service-card,
  .assessment-grid article,
  .button {
    transition: none;
  }
}

/* ---------- Responsive ---------- */

@media (max-width: 1024px) {
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  #candor .service-card {
    min-height: 0;
  }

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

@media (max-width: 900px) {
  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .site-nav {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 20px 18px;
    background: rgba(246, 244, 238, 0.98);
    color: var(--ink);
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
  }

  .site-nav a::after {
    display: none;
  }

  .site-nav a:last-child {
    border: 0;
    border-radius: 0;
    padding: 14px 0;
  }

  .site-nav a:last-child:hover {
    background: transparent;
    color: var(--teal);
  }

  .hero {
    min-height: clamp(620px, 92svh, 960px);
  }

  .hero-image {
    object-position: 58% center;
  }

  .hero-scrim {
    background:
      linear-gradient(90deg, rgba(9, 20, 17, 0.94), rgba(9, 20, 17, 0.6)),
      linear-gradient(0deg, rgba(9, 20, 17, 0.72), rgba(9, 20, 17, 0.1));
  }

  .intro-grid,
  .split-grid,
  .about-grid,
  .contact-grid,
  .service-grid,
  .steps,
  .assessment-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    flex-direction: column;
  }

  h1 {
    max-width: none;
  }
}

@media (max-width: 620px) {
  .proof-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 540px) {
  .site-header {
    min-height: 66px;
    padding: 12px 16px;
  }

  .brand {
    gap: 9px;
    font-size: 19px;
  }

  .brand-logo {
    width: 34px;
    height: 34px;
  }

  .hero {
    min-height: clamp(600px, 92svh, 960px);
  }

  .hero-content,
  .section-inner {
    width: min(100% - 28px, 1180px);
  }

  .hero-content {
    padding-bottom: 72px;
  }

  .button {
    width: 100%;
  }

  .service-card,
  .assessment-grid article,
  .step,
  .contact-form {
    padding: 20px;
  }

  .assessment-grid article {
    padding-left: 26px;
  }
}
