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

* {
  margin: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

body {
  min-height: 100vh;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

input,
button,
textarea,
select {
  font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

ul,
ol {
  list-style: none;
  padding: 0;
}

a {
  color: inherit;
}

/* --- Colors --- */
:root {
  --white: #FFFFFF;

  --purple: #604080;
  --blurple: #58599A;
  --blue: #4F71B3;
  --cyan: #5B9FC0;
  --sky: #66CCCC;
  --teal: #5AB396;
  --green: #4D9960;
  --jade: #73B363;
  --lime: #99CC66;
  --pear: #CCD673;
  --yellow: #FFDF80;
  --orange: #F3A97A;
  --red: #E67373;
  --rose: #C66382;
  --pink: #A65290;
  --magenta: #834988;

  --dark: #1C1326;
  --darker: #150E1D;
  --darkest: #0e0913;
  --dark-1: #2D1E3D;
  --dark-2: #3E2A53;
  --dark-3: #4F356A;

  --light-1: #EBEFF7;
  --light: color-mix(in srgb, var(--light-1) 50%, var(--white) 50%);
  --light-2: #D8DFEE;
  --light-3: #C4D0E6;
  --light-4: #b1c0dd;
  --light-5: #b6c4df;
  --light-6: #a7b8d9;
  --light-7: #98acd3;
  --light-8: #8aa0cc;
  --light-9: #7b95c6;
  --light-10: #6c89c0;
  --light-11: #5e7db9;
  --light-12: #4F71B3;

  --section-divider-height: 100px;
  --section-padding-y: 4rem;
  --layout-max: 72rem;
  --layout-gutter: 1.5rem;
  --reveal-offset: 1.5rem;
  --reveal-duration: 0.7s;
}

@media (min-width: 48rem) {
  :root {
    --section-padding-y: 6rem;
  }
}

/* --- Heading font --- */
@font-face {
  font-family: "Bricolage Grotesque";
  src: url("BricolageGrotesque[opsz,wdth,wght].ttf") format("truetype");
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
}

/* --- Page --- */
body {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 1.25rem;
  background: var(--darkest);
  color: #FFF;
}

h1,
h2,
h3 {
  font-family: "Bricolage Grotesque", system-ui, sans-serif;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.25rem, 5.5vw, 3.25rem);
  letter-spacing: 0.01em;
  margin-bottom: 0.5em;
}

h2 {
  font-size: clamp(1.875rem, 4.5vw, 2.5rem);
  margin-bottom: 0.5em;
}

h3 {
  font-size: clamp(1.25rem, 3vw, 1.5rem);
}

.section-label {
  margin: 0 0 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.2;
}

#hero .section-label,
.section--dark .section-label,
.section--darkest .section-label {
  color: var(--lime);
}

.section--light .section-label {
  color: var(--pink);
}

/* --- Site header --- */
.site-header {
  background: var(--darkest);
  border-bottom: 1px solid var(--dark);
  padding-inline: var(--layout-gutter);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: var(--layout-max);
  margin-inline: auto;
  padding-block: 1rem;
}

.site-header__logo {
  font-family: "Bricolage Grotesque", system-ui, sans-serif;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: 0.01em;
  font-size: 1.25rem;
  text-decoration: none;
  color: inherit;
  flex-shrink: 0;
}

.site-header__links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.site-header__links a {
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}

.site-header__links a:not(.cta) {
  transition: color 0.2s ease;
}

.site-header__links a:not(.cta):hover {
  color: var(--lime);
}

.site-header__links .cta.primary {
  font-size: 1rem;
  padding: 0.4rem 1.25rem;
}

@media (max-width: 47.99rem) {
  .site-header__inner {
    flex-wrap: wrap;
  }

  .site-header__links {
    gap: 0.75rem 1rem;
  }

  .site-header__links a {
    font-size: 0.875rem;
  }

  .site-header__links .cta.primary {
    font-size: 0.875rem;
    padding: 0.35rem 1rem;
  }
}

/* --- Layout --- */
/* Content column: outer gutter + inner max-width (see --layout-max / --layout-gutter). */
section {
  width: 100%;
  max-width: none;
  margin-inline: 0;
  padding-block: var(--section-padding-y);
  padding-inline: var(--layout-gutter);
}

#hero {
  display: block;
  width: 100%;
  max-width: none;
  margin-inline: 0;
}

.hero__layout {
  display: grid;
  max-width: var(--layout-max);
  margin-inline: auto;
  column-gap: 2rem;
  row-gap: 4rem;
  align-items: center;
}

@media (min-width: 48rem) {
  .hero__layout {
    grid-template-columns: 1.5fr 1fr;
  }

  .hero__logos {
    grid-column: 1 / -1;
  }
}

.hero__logos {
  width: 100%;
}

.hero__media {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__media img {
  max-width: 250px;
  max-height: 250px;
  width: 100%;
  height: auto;
}

.logo-ticker {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.logo-ticker::before,
.logo-ticker::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 4rem;
  z-index: 1;
  pointer-events: none;
}

.logo-ticker::before {
  left: 0;
  background: linear-gradient(to right, var(--darkest), transparent);
}

.logo-ticker::after {
  right: 0;
  background: linear-gradient(to left, var(--darkest), transparent);
}

.logo-ticker__track {
  display: flex;
  width: max-content;
  will-change: transform;
}

.logo-ticker__list {
  display: flex;
  align-items: center;
  gap: 3rem;
  padding-right: 3rem;
  list-style: none;
}

.logo-ticker__list li {
  flex-shrink: 0;
}

.logo-ticker__list img {
  display: block;
  height: 4.5rem;
  width: auto;
  max-width: 18rem;
  opacity: 0.85;
}

@keyframes logo-ticker {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-1 * var(--ticker-distance, 50%)));
  }
}

@media (prefers-reduced-motion: reduce) {
  .logo-ticker__track {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    gap: 2rem;
  }

  .logo-ticker__list:last-child {
    display: none;
  }

  .logo-ticker__list {
    padding-right: 0;
    flex-wrap: wrap;
    justify-content: center;
  }

  .logo-ticker::before,
  .logo-ticker::after {
    display: none;
  }
}

.section {
  position: relative;
  width: 100%;
  max-width: none;
  margin-inline: 0;
  padding-block: calc(var(--section-padding-y) + var(--section-divider-height)) var(--section-padding-y);
  padding-inline: var(--layout-gutter);
  background: var(--section-bg);
  overflow-x: clip;
}

/* Initial inset shadow matches GSAP from state */
section.section {
  box-shadow: inset 0 var(--section-divider-height) 0 0 var(--section-divider-fill);
}

.section--dark {
  --section-bg: var(--dark);
}

.section--darkest {
  --section-bg: var(--darkest);
}

.section--light {
  --section-bg: var(--white);
  color: var(--dark);
}

/* Divider fill matches the section above */
#portfolio {
  --section-divider-fill: var(--darkest);
  --portfolio-image-height: min(40vw, 25rem);
  --portfolio-featured-extra: 30px;
  --portfolio-featured-height: calc(var(--portfolio-image-height) + var(--portfolio-featured-extra));
  --portfolio-item-gap: 0.5rem;
  --portfolio-tags-height: 1.25rem;
  --portfolio-row-height: calc(
    var(--portfolio-featured-height) + var(--portfolio-item-gap) + var(--portfolio-tags-height)
  );
  width: 100%;
  max-width: none;
  margin-inline: 0;
  padding-inline: 0;
  overflow: hidden;
}

@media (min-width: 48rem) {
  #portfolio {
    --portfolio-featured-extra: 60px;
  }
}

/* Portfolio is full-bleed; inset the header to match the shared content column. */
#portfolio .portfolio__header {
  width: min(var(--layout-max), calc(100% - 2 * var(--layout-gutter)));
  margin-inline: auto;
}

.portfolio__header {
  margin-bottom: 2rem;
}

.portfolio-viewport {
  width: 100%;
  overflow: hidden;
  min-height: var(--portfolio-row-height);
  padding-bottom: var(--portfolio-featured-extra);
  touch-action: manipulation;
  user-select: none;
}

.portfolio-viewport.is-dragging .portfolio-track {
  cursor: grabbing;
}

.portfolio-track {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  width: max-content;
  will-change: transform;
  cursor: grab;
}

.portfolio-item {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--portfolio-item-gap);
  min-height: var(--portfolio-row-height);
  margin: 0;
}

.portfolio-item__image {
  flex: 0 0 auto;
  height: var(--portfolio-image-height);
  border-radius: 10px;
  overflow: hidden;
  background: var(--light-1);
  position: relative;
}

.portfolio-item__image::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--dark) 10%, transparent);
  pointer-events: none;
  z-index: 1;
}

.portfolio-item.featured .portfolio-item__image {
  height: var(--portfolio-featured-height);
}

.portfolio-item img {
  display: block;
  height: 100%;
  width: auto;
  max-width: none;
  -webkit-user-drag: none;
  user-select: none;
  pointer-events: none;
}

.portfolio-tags {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  gap: 0.35rem 0.65rem;
  flex: 0 0 var(--portfolio-tags-height);
  min-height: var(--portfolio-tags-height);
  margin: 0;
  padding: 0;
  list-style: none;
}

.portfolio-tags li {
  font-size: 0.8rem;
  line-height: 1.2;
  color: var(--blue);
}

@media (prefers-reduced-motion: reduce) {
  .portfolio-viewport {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    cursor: auto;
  }

  .portfolio-track {
    will-change: auto;
    cursor: auto;
  }

  .portfolio-item {
    scroll-snap-align: start;
  }
}

#trust {
  --section-divider-fill: var(--white);
}

#why {
  --section-divider-fill: var(--dark);
}

#why .box-with-icon .box-text p {
  font-size: 1rem;
  line-height: 1.4;
}

#capabilities {
  --section-divider-fill: var(--darkest);
}

#faq {
  --section-divider-fill: var(--white);
}

@media (min-width: 48rem) {
  #faq .section__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
    column-gap: 3rem;
    align-items: start;
  }

  #faq .faq__intro {
    grid-column: 1;
  }

  #faq .faq-list {
    grid-column: 2;
    margin-top: 0;
  }
}

.faq__contact {
  margin: 1rem 0 0;
  max-width: 40rem;
  font-size: 1rem;
  color: var(--light-6);
}

.faq__contact a {
  white-space: nowrap;
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.faq__contact a:hover {
  color: var(--white);
}

#pricing {
  --section-divider-fill: var(--darkest);
}

.section__inner {
  max-width: var(--layout-max);
  margin-inline: auto;
}

.section-divider {
  position: absolute;
  top: 0;
  left: 50%;
  width: 101%;
  height: 0;
  transform: translateX(-50%);
  overflow: visible;
  pointer-events: none;
  z-index: 2;
}

.section-divider__svg {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  overflow: visible;
}

@media (prefers-reduced-motion: reduce) {
  .section-divider {
    top: 0;
    height: var(--section-divider-height);
  }

  .section {
    box-shadow: inset 0 0px 0 0 var(--section-divider-fill);
  }
}

.section-divider path {
  fill: var(--section-divider-fill);
}

.section-divider path.shape-stroke {
  fill: none;
  stroke: var(--dark-2);
  stroke-width: 1px;
  vector-effect: non-scaling-stroke;
}

.subhead {
  max-width: 40rem;
}

#hero .subhead {
  font-size: clamp(1.375rem, 2.5vw, 1.625rem);
  font-weight: 300;
  line-height: 1.5;
}

#hero .cta-group {
  margin-top: 2.5rem;
}

/* Reveal — hidden only when JS is enabled (see inline script in head) */
html.js #hero .hero__content > *,
html.js #hero .hero__media,
html.js .section__inner > h1,
html.js .section__inner > h2,
html.js .section__inner > .section-label,
html.js .section__inner > .subhead,
html.js #faq .faq__intro > .section-label,
html.js #faq .faq__intro > h2,
html.js #faq .faq__intro > .subhead,
html.js #faq .faq__contact,
html.js #hero .hero__logos,
html.js .boxes > .box,
html.js .faq-list > .faq-item,
html.js #portfolio .portfolio-viewport {
  opacity: 0;
}

@media (prefers-reduced-motion: reduce) {
  html.js #hero .hero__content > *,
html.js #hero .hero__media,
  html.js .section__inner > h1,
  html.js .section__inner > h2,
  html.js .section__inner > .section-label,
  html.js .section__inner > .subhead,
  html.js #faq .faq__intro > .section-label,
  html.js #faq .faq__intro > h2,
  html.js #faq .faq__intro > .subhead,
  html.js #faq .faq__contact,
  html.js #hero .hero__logos,
  html.js .boxes > .box,
  html.js .faq-list > .faq-item,
  html.js #portfolio .portfolio-viewport {
    opacity: 1;
  }
}

.cta-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.cta {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  border-radius: 99px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.cta.primary {
  font-size: 1.25rem;
  background: var(--lime);
  color: var(--darkest);
}

.cta.primary:hover {
  background: var(--yellow);
  color: var(--darkest);
}

.cta.secondary {
  background: transparent;
  box-shadow: inset 0 0 0 2px var(--lime);
  color: var(--lime);
}

.cta.secondary:hover {
  background: transparent;
  box-shadow: inset 0 0 0 2px var(--yellow);
  color: var(--yellow);
}

.boxes {
  display: grid;
  gap: 1.5rem;
  margin-top: 2rem;
}

@media (min-width: 48rem) {
  .boxes {
    grid-template-columns: repeat(3, 1fr);
  }
}

.box {
  padding: 1.5rem;
  border: 1px solid var(--dark-3);
  border-radius: 15px;
  box-shadow: inset 0 0 0 1px var(--darkest);
}

#pricing .box {
  position: relative;
  background: var(--dark);
  border: none;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 2.25rem 1.5rem;
}

#pricing .box--featured {
  box-shadow: inset 0 0 0 5px var(--purple);
  box-shadow: inset 0 0 0 3px var(--green), inset 0 0 0 5px #FFF;
  box-shadow: 0 0 0 3px #FFF, 0 0 0 6px var(--green);
}

#pricing .pricing__heading {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

#pricing .pricing__badge {
  padding: 0.375rem 0.75rem;
  border-radius: 99px;
  background: var(--dark-2);
  color: #FFF;
  color: var(--light-4);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.2;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
}

#pricing .box h3 {
  margin: 0;
  color: var(--lime);
}

#pricing .pricing__price {
  margin: 0;
  line-height: 1.1;
}

#pricing .pricing__amount {
  font-size: 2.125rem;
  font-weight: 700;
  color: var(--white);
}

#pricing .pricing__period {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: var(--light-4);
}

#pricing .pricing__features {
  margin-top: 1rem;
  margin-bottom: 1.5rem;
}

#pricing .pricing__features hr {
  margin: 0 0 0.75rem;
  border: 0;
  border-top: 1px solid var(--dark-2);
}

#pricing .pricing__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

#pricing .pricing__item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--light-4);
}

#pricing .pricing__item:first-child {
  color: var(--white);
  font-weight: 700;
}

#pricing .pricing__check {
  flex-shrink: 0;
  width: 1.125rem;
  height: 1.125rem;
  color: var(--lime);
}

#pricing .pricing__tagline {
  margin: 0;
  font-style: italic;
  color: var(--light-4);
}

#pricing .pricing__cta {
  margin-top: auto;
  align-self: flex-start;
  font-size: 1.25rem;
}

#capabilities .box {
  background: var(--darkest);
  box-shadow: none;
  color: var(--white);
}

#capabilities .box h3 {
  margin-bottom: 1.5rem;
}

.box-tags--launch .tags li:nth-child(1) {
  --tag-color: var(--orange);
}

.box-tags--launch .tags li:nth-child(2) {
  --tag-color: var(--red);
}

.box-tags--launch .tags li:nth-child(3) {
  --tag-color: var(--rose);
}

.box-tags--launch .tags li:nth-child(4) {
  --tag-color: var(--pink);
}

.box-tags--launch .tags li:nth-child(5) {
  --tag-color: var(--magenta);
}

.box-tags--brand .tags li:nth-child(1) {
  --tag-color: var(--purple);
}

.box-tags--brand .tags li:nth-child(2) {
  --tag-color: var(--blurple);
}

.box-tags--brand .tags li:nth-child(3) {
  --tag-color: var(--blue);
}

.box-tags--brand .tags li:nth-child(4) {
  --tag-color: var(--cyan);
}

.box-tags--brand .tags li:nth-child(5) {
  --tag-color: var(--sky);
}

.box-tags--product .tags li:nth-child(1) {
  --tag-color: var(--green);
}

.box-tags--product .tags li:nth-child(2) {
  --tag-color: var(--jade);
}

.box-tags--product .tags li:nth-child(3) {
  --tag-color: var(--lime);
}

.box-tags--product .tags li:nth-child(4) {
  --tag-color: var(--pear);
}

[class*="box-tags--"] .tags li {
  color: color-mix(in srgb, var(--tag-color) 50%, var(--white));
  border-color: var(--tag-color);
}

.box-with-icon .box-row {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 1rem;
  align-items: start;
}

.box-with-icon svg {
  width: 40px;
  height: 40px;
}

.box-with-icon svg :is(path, circle) {
  fill: var(--sky);
}

.box-with-icon svg :is(path, circle).icon-accent {
  opacity: 0.4;
}

.box-icon--yellow svg :is(path, circle) {
  fill: var(--yellow);
}

.box-icon--blue svg :is(path, circle) {
  fill: var(--cyan);
}

.box-icon--green svg :is(path, circle) {
  fill: var(--green);
}

.box-icon--pink svg :is(path, circle) {
  fill: var(--pink);
}

.box-icon--light svg :is(path, circle) {
  fill: var(--light-6);
}

.box-icon--orange svg :is(path, circle) {
  fill: var(--orange);
}

.box-with-icon .box-text h3 {
  margin: 0;
}

.box-with-icon .box-text p {
  margin: 0.5rem 0 0;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tags li {
  padding: 0.375rem 0.75rem;
  border: 1px solid var(--dark-3);
  border-radius: 5px;
  font-size: .9rem;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 2rem;
}

.faq-item {
  background: var(--dark);
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.35s ease;
}

.faq-item.is-open {
  background: var(--dark-1);
}

.faq-item:hover {
  background: var(--dark-1);
}

html:not(.js) .faq-item {
  background: var(--dark-1);
}

.faq-item dt {
  margin: 0;
}

.faq-item__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: 1rem 1.25rem;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  font-weight: 600;
  text-align: left;
  cursor: inherit;
}

.faq-item__question {
  flex: 1;
}

.faq-item__icon {
  display: block;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: var(--light-6);
  transform-origin: center;
}

.faq-item__icon-svg {
  display: block;
}

.faq-item dd {
  margin: 0;
  overflow: hidden;
}

.faq-item__panel {
  max-width: 65ch;
  padding: 0 1.25rem 1rem;
  color: var(--light-4);
}

html:not(.js) .faq-item__panel {
  padding-top: 0.5rem;
}

html.js .faq-item dd {
  height: 0;
}

html.js .faq-item.is-open dd {
  height: auto;
}

html.js .faq-item:not(.is-open) .faq-item__panel {
  opacity: 0;
}

html.js:not(.has-gsap) .faq-item__trigger[aria-expanded="true"] .faq-item__icon {
  transform: rotate(135deg);
}

.testimonials {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

@media (min-width: 48rem) {
  .testimonials {
    grid-template-columns: repeat(2, 1fr);
    overflow: visible;
  }

  .testimonial:nth-child(-n + 2) {
    transform: translateX(-30px);
  }

  .testimonial:nth-child(n + 3) {
    transform: translateX(30px);
  }
}

.testimonial {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 30px 45px;
  background: var(--white);
  border-radius: 10px;
}

.testimonial__quote {
  margin: 0;
  color: var(--dark);
  font-size: 1.375rem;
  line-height: 1.35;
}

.testimonial__quote p {
  margin: 0;
}

.testimonial__quote strong {
  color: var(--pink);
}

.testimonial__rule {
  border: none;
  border-top: 2px dotted var(--light-1);
  margin: 0;
}

.testimonial__attribution {
  display: grid;
  grid-template-columns: 70px 1fr;
  column-gap: 1rem;
  align-items: center;
}

.testimonial__thumb img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial__meta {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.testimonial__name,
.testimonial__role,
.testimonial__location {
  margin: 0;
  font-size: .9rem;
  line-height: 1.2;
}

.testimonial__name,
.testimonial__role,
.testimonial__location {
  color: var(--blue);
}

.testimonial__name {
  font-weight: 700;
}

/* --- Get started / contact form --- */
.get-started .section-label,
.contact .section-label,
.thank-you .section-label {
  color: var(--lime);
}

.thank-you .cta-group {
  margin-top: 2rem;
}

.contact-form {
  display: grid;
  gap: 1.25rem;
  max-width: 32rem;
  margin-top: 2rem;
}

.contact-form__field {
  display: grid;
  gap: 0.375rem;
}

.contact-form__field label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--light-4);
}

.contact-form__required {
  color: var(--red);
}

.contact-form__checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--light-4);
  cursor: pointer;
}

.contact-form__checkbox-label input[type="checkbox"] {
  flex-shrink: 0;
  width: 1.125rem;
  height: 1.125rem;
  margin-top: 0.125rem;
  accent-color: var(--lime);
  cursor: pointer;
}

.contact-form button[type="submit"] {
  justify-self: start;
  width: auto;
  border: none;
  cursor: pointer;
}

.contact-form button[type="submit"]:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.6rem 0.75rem;
  border: 1px solid var(--dark-3);
  border-radius: 8px;
  background: var(--dark);
  color: var(--white);
  font-size: 1rem;
}

.contact-form select {
  cursor: pointer;
}

.contact-form__botcheck {
  display: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 2px solid var(--lime);
  outline-offset: 2px;
}

.contact-form textarea {
  resize: vertical;
}
