@charset "UTF-8";
/*
Theme Name: AdellaDigital
Theme URI: https://adelladigital.com
Author: Adella Digital
Author URI: https://adelladigital.com
Description: A custom theme for Adella Digital, designed for professional digital services and modern web experiences.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: adelladigital
Tags: business, corporate, digital-agency, one-column, custom-colors, custom-menu, custom-logo, featured-images, accessibility-ready
*/
:root {
  --color-dark: #261D1D;
  --color-light: #FBFAFA;
  --color-matterhorn: #514747;
  --color-punch: #FF472E;
  --color-punch-a: #FF6952;
  --color-punch-b: #E92B13;
  --color-punch-c: #C91501;
  --color-linen: #FBF3EA;
  --color-linen-a: #E4DBD0;
  --color-linen-b: #C2B7AA;
  --color-linen-c: #A29486;
  --font-heading: Work Sans, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen-Sans, Ubuntu, Cantarell, Helvetica Neue, sans-serif;
  --font-body: Helvetica Neue, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, sans-serif;
  --font-mono: DM Mono, Courier New, monospace;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 15px;
  line-height: 24px;
  letter-spacing: 0;
  vertical-align: middle;
  color: var(--color-dark);
}

strong,
b {
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: 0;
}

a {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 15px;
  line-height: 23px;
  letter-spacing: 0;
  vertical-align: middle;
  text-decoration: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
}

p {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 15px;
  line-height: 24px;
  letter-spacing: 0;
  vertical-align: middle;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-matterhorn);
}

h1 {
  font-weight: 500;
  font-size: 80px;
  line-height: 66px;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

h2 {
  font-weight: 500;
  font-size: 46px;
  line-height: 54px;
}

h3 {
  font-weight: 500;
  font-size: 24px;
  line-height: 30px;
}

h4 {
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
}

h5 {
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
}

.super-text {
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 13px;
  line-height: 20px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.btn-cta {
  font-family: var(--font-mono);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.site-header {
  position: relative;
  z-index: 1000;
  background-color: #ffffff;
  border-bottom: 1px solid #e8e8e8;
}
.site-header .header-container {
  max-width: 1248px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  height: 70px;
}
@media (min-width: 768px) {
  .site-header .header-container {
    padding: 0 60px;
  }
}
.site-header .site-branding {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.site-header .site-branding .custom-logo-link {
  display: flex;
  align-items: center;
  padding: 0;
}
.site-header .site-branding .custom-logo-link img {
  height: 28px;
  width: auto;
  object-fit: contain;
}
.site-header .main-navigation {
  display: flex;
  align-items: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.site-header .main-navigation .menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 40px;
}
.site-header .main-navigation .menu-item a {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 20px;
  line-height: 70px;
  color: var(--color-dark);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s ease;
}
.site-header .main-navigation .menu-item a:hover {
  color: var(--color-punch);
}
.site-header .main-navigation .menu-item a .menu-number {
  display: none;
}
.site-header .header-cta {
  margin-left: auto;
  flex-shrink: 0;
}
.site-header .header-cta .btn-outline {
  display: inline-block;
  padding: 12px 36px;
  border: 1px solid var(--color-dark);
  border-radius: 50px;
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-dark);
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.site-header .header-cta .btn-outline:hover {
  background-color: var(--color-dark);
  color: #ffffff;
}
.site-header .menu-toggle {
  display: none;
  align-items: center;
  background: none;
  border: none;
  padding: 5px;
  cursor: pointer;
  z-index: 999;
  margin-left: auto;
}
.site-header .menu-toggle .dots-menu {
  width: 35px;
  height: 17px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.site-header .menu-toggle .dots-menu span, .site-header .menu-toggle .dots-menu::before, .site-header .menu-toggle .dots-menu::after {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: var(--color-punch);
}
.site-header .menu-close {
  display: none;
  position: absolute;
  top: 26px;
  right: 30px;
  background: transparent;
  border: 2px solid var(--color-matterhorn);
  border-radius: 50%;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.site-header .menu-close:hover {
  background-color: var(--color-matterhorn);
}
.site-header .menu-close:hover::before, .site-header .menu-close:hover::after {
  background-color: var(--color-light);
}
.site-header .menu-close::before, .site-header .menu-close::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 2px;
  background-color: var(--color-matterhorn);
  transition: all 0.3s ease;
}
.site-header .menu-close::before {
  transform: rotate(45deg);
}
.site-header .menu-close::after {
  transform: rotate(-45deg);
}
.site-header .menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(38, 29, 29, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 1000;
}
.site-header .menu-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

body.menu-open {
  overflow: hidden;
}

@media (max-width: 1023px) {
  .site-header .menu-toggle {
    display: flex;
  }
  .site-header .header-cta {
    display: none;
  }
  .site-header .main-navigation {
    position: fixed;
    top: 0;
    right: -100%;
    left: auto;
    transform: none;
    width: 100%;
    max-width: 90%;
    height: 100vh;
    background-color: var(--color-light);
    padding: 100px 40px 40px;
    transition: right 0.3s ease, visibility 0s 0.3s;
    overflow-y: auto;
    z-index: 1001;
    visibility: hidden;
    box-sizing: border-box;
  }
}
@media (max-width: 1023px) and (min-width: 768px) {
  .site-header .main-navigation {
    max-width: 430px;
  }
}
@media (max-width: 1023px) {
  .site-header .main-navigation.is-open {
    right: 0;
    visibility: visible;
    transition: right 0.3s ease;
  }
  .site-header .main-navigation .menu {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }
  .site-header .main-navigation .menu-item {
    margin: 0 0 30px 0;
  }
  .site-header .main-navigation .menu-item a {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 24px;
    line-height: 30px;
    color: var(--color-matterhorn);
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .site-header .main-navigation .menu-item a .menu-number {
    display: inline;
    font-family: var(--font-mono);
    font-size: 14px;
    color: var(--color-punch);
    min-width: 25px;
  }
  .site-header .menu-close {
    display: flex;
  }
}
.site-footer {
  background-color: #ffffff;
  padding: 60px 20px 40px;
}
@media (min-width: 768px) {
  .site-footer {
    padding: 80px 40px 50px;
  }
}

.footer-container {
  max-width: 1248px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 1024px) {
  .footer-container {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 60px;
  }
}

.footer-logo {
  text-align: center;
}
@media (min-width: 1024px) {
  .footer-logo {
    text-align: left;
  }
}
.footer-logo .custom-logo-link {
  display: inline-block;
  text-decoration: none;
}
.footer-logo .custom-logo-link img {
  max-width: 294px;
  max-height: none;
  width: 100%;
  height: auto;
  object-fit: contain;
}
@media (min-width: 1024px) {
  .footer-logo .custom-logo-link img {
    max-width: 294px;
  }
}

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  text-align: center;
}
@media (min-width: 1024px) {
  .footer-content {
    align-items: flex-start;
    text-align: left;
  }
}

.footer-navigation .footer-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0px;
}
.footer-navigation .footer-menu li {
  margin: 0;
  padding: 0;
}
.footer-navigation .footer-menu a {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  color: var(--color-matterhorn);
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-navigation .footer-menu a:hover {
  color: var(--color-punch);
}
.footer-navigation .footer-menu .current-menu-item a,
.footer-navigation .footer-menu .current_page_item a {
  color: var(--color-punch);
  font-weight: 500;
}

.footer-contact {
  margin-top: 8px;
}
.footer-contact p {
  margin: 0;
  font-family: "Helvetica Neue", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 24px;
  color: var(--color-dark);
}
.footer-contact .footer-contact-title {
  font-weight: 500;
}
.footer-contact .footer-contact-email a {
  color: var(--color-punch);
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.footer-contact .footer-contact-email a:hover {
  opacity: 0.8;
}

.footer-social {
  display: flex;
  gap: 16px;
  margin-top: 8px;
  justify-content: center;
}
@media (min-width: 1024px) {
  .footer-social {
    justify-content: flex-start;
  }
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.footer-social a:hover {
  opacity: 0.7;
}
.footer-social a img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.footer-copyright {
  margin-top: 8px;
}
.footer-copyright p {
  margin: 0;
  font-family: "Helvetica Neue", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 400;
  font-size: 13px;
  line-height: 20px;
  color: var(--color-matterhorn);
}

.footer-empty {
  display: none;
}
@media (min-width: 1024px) {
  .footer-empty {
    display: block;
  }
}

.custom-logo-link,
.site-logo {
  display: inline-block;
}
.custom-logo-link img,
.site-logo img {
  height: auto;
  max-height: 60px;
  width: auto;
  max-width: 100%;
  display: block;
}

.logo-light-bg .custom-logo,
.logo-light-bg .site-logo img {
  filter: none;
}

.site-header .custom-logo-link {
  padding: 0;
}
.site-header .custom-logo-link img {
  width: 118px;
  height: 30px;
  object-fit: contain;
}

.btn,
.cta {
  font-family: "DM Mono", "Courier New", monospace;
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
  vertical-align: middle;
  text-transform: uppercase;
  border-radius: 20px;
  height: 44px;
  padding: 0 40px;
  border: 1px solid;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  cursor: pointer;
  box-sizing: border-box;
  transition: all 0.3s ease;
}

.btn-primary,
.wp-block-button.is-style-outline .wp-block-button__link {
  background-color: transparent;
  border-color: #514747;
  color: #514747;
}
.btn-primary:hover,
.wp-block-button.is-style-outline .wp-block-button__link:hover {
  background-color: #514747;
  color: #FBFAFA;
}

.btn-primary-flip {
  background-color: transparent;
  border-color: #FBFAFA;
  color: #FBFAFA;
}
.btn-primary-flip:hover {
  background-color: #FBFAFA;
  color: #261D1D;
}

.btn-secondary,
.wp-block-button.is-style-fill .wp-block-button__link,
.wp-block-button__link {
  background-color: #FF472E;
  border-color: #FF472E;
  color: #FBFAFA;
}
.btn-secondary:hover,
.wp-block-button.is-style-fill .wp-block-button__link:hover,
.wp-block-button__link:hover {
  background-color: #E92B13;
  border-color: #E92B13;
}

.btn-dropdown,
select.btn {
  background-color: transparent;
  border-color: #514747;
  color: #514747;
  padding: 10px 15px;
  text-align: left;
  width: 100%;
  max-width: 266px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.btn-dropdown::after,
select.btn::after {
  content: "▼";
  margin-left: 10px;
  font-size: 12px;
}

.btn-toggle,
.btn-accordion {
  width: 133px;
  height: 44px;
  border-radius: 40px;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 24px;
  font-weight: 300;
  line-height: 1;
  transition: all 0.3s ease;
}
.btn-toggle.plus, .btn-toggle[aria-expanded=false],
.btn-accordion.plus,
.btn-accordion[aria-expanded=false] {
  background-color: #FF472E;
  color: #FBFAFA;
}
.btn-toggle.plus::before, .btn-toggle[aria-expanded=false]::before,
.btn-accordion.plus::before,
.btn-accordion[aria-expanded=false]::before {
  content: "+";
}
.btn-toggle.plus:hover, .btn-toggle[aria-expanded=false]:hover,
.btn-accordion.plus:hover,
.btn-accordion[aria-expanded=false]:hover {
  background-color: #E92B13;
}
.btn-toggle.minus, .btn-toggle[aria-expanded=true],
.btn-accordion.minus,
.btn-accordion[aria-expanded=true] {
  background-color: #514747;
  color: #FBFAFA;
}
.btn-toggle.minus::before, .btn-toggle[aria-expanded=true]::before,
.btn-accordion.minus::before,
.btn-accordion[aria-expanded=true]::before {
  content: "−";
}
.btn-toggle.minus:hover, .btn-toggle[aria-expanded=true]:hover,
.btn-accordion.minus:hover,
.btn-accordion[aria-expanded=true]:hover {
  opacity: 0.9;
}

.btn-large {
  font-family: "Work Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 1;
  letter-spacing: 0;
  text-transform: uppercase;
  width: auto;
  min-width: 256px;
  height: 65px;
  border-radius: 40px;
  padding: 0 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  background-color: #FBF3EA;
  border-color: #FBF3EA;
  color: #FF472E;
}
.btn-large:hover {
  background-color: #E4DBD0;
  border-color: #E4DBD0;
}

.icon-hamburger,
.hamburger-menu {
  width: 30px;
  height: 20px;
  display: inline-flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  position: relative;
}
.icon-hamburger span,
.hamburger-menu span {
  display: block;
  width: 100%;
  height: 4px;
  background-color: #514747;
  transition: all 0.3s ease;
}
.icon-hamburger::before, .icon-hamburger::after,
.hamburger-menu::before,
.hamburger-menu::after {
  content: "";
  display: block;
  width: 100%;
  height: 4px;
  background-color: #514747;
  transition: all 0.3s ease;
}

.icon-dots,
.dots-menu {
  width: 43px;
  height: 17px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}
.icon-dots::before, .icon-dots::after,
.dots-menu::before,
.dots-menu::after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #FF472E;
}
.icon-dots span,
.dots-menu span {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #FF472E;
}

.mobile-menu-toggle {
  background: none;
  border: none;
  padding: 10px;
  cursor: pointer;
}
.mobile-menu-toggle .icon-hamburger,
.mobile-menu-toggle .hamburger-menu {
  margin: 0;
}

.hero-banner {
  background-image: url("assets/images/hero-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 100px 20px 100px;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) {
  .hero-banner {
    padding: 100px 40px 100px;
  }
}
@media (min-width: 1024px) {
  .hero-banner {
    padding: 100px 60px 100px;
  }
}

.hero-container {
  max-width: 1248px;
  margin: 0 auto;
  width: 100%;
}

.hero-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 60px;
}
@media (min-width: 1024px) {
  .hero-top {
    grid-template-columns: 1fr 1fr;
    gap: 140px;
    align-items: start;
    margin-bottom: 80px;
  }
}

.hero-title-col {
  display: flex;
  align-items: flex-start;
}

.hero-title {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 48px;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--color-punch);
  margin: 0;
  text-transform: none;
}
@media (min-width: 768px) {
  .hero-title {
    font-size: 64px;
  }
}
@media (min-width: 1024px) {
  .hero-title {
    font-size: 72px;
  }
}
@media (min-width: 1280px) {
  .hero-title {
    font-size: 80px;
  }
}

.hero-copy-col {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: 8px;
}

.hero-description {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 20px;
  line-height: 28px;
  color: var(--color-matterhorn);
  margin: 0 0 32px 0;
}
.hero-description p {
  font-family: inherit;
  font-weight: inherit;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
  margin: 0 0 16px;
}
.hero-description p:last-child {
  margin-bottom: 0;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-image {
  position: relative;
  width: 100%;
  margin: 0 auto;
}
.hero-image .hero-screenshot {
  width: 100%;
  height: auto;
  display: block;
}

@keyframes noise-animation {
  0% {
    transform: translate3d(0, 9rem, 0);
  }
  10% {
    transform: translate3d(-1rem, -4rem, 0);
  }
  20% {
    transform: translate3d(-8rem, 2rem, 0);
  }
  30% {
    transform: translate3d(9rem, -9rem, 0);
  }
  40% {
    transform: translate3d(-2rem, 7rem, 0);
  }
  50% {
    transform: translate3d(-9rem, -4rem, 0);
  }
  60% {
    transform: translate3d(2rem, 6rem, 0);
  }
  70% {
    transform: translate3d(7rem, -8rem, 0);
  }
  80% {
    transform: translate3d(-9rem, 1rem, 0);
  }
  90% {
    transform: translate3d(6rem, -5rem, 0);
  }
  100% {
    transform: translate3d(-7rem, 0, 0);
  }
}
.content-section {
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) {
  .content-section {
    padding: 100px 40px;
  }
}
@media (min-width: 1024px) {
  .content-section {
    padding: 100px 40px;
  }
}

.content-section__noise {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.08;
  z-index: 1;
}
.content-section__noise::after {
  content: "";
  position: absolute;
  top: -10rem;
  left: -10rem;
  width: calc(100% + 20rem);
  height: calc(100% + 20rem);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.5' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  animation: noise-animation 1s steps(2) infinite;
  will-change: transform;
}

.content-section--light {
  background-color: var(--color-light);
  color: var(--color-dark);
}

.content-section--dark {
  background-color: var(--color-matterhorn);
  color: var(--color-light);
}

.content-section--beige {
  background-color: var(--color-linen);
  color: var(--color-dark);
}

.content-section__container {
  max-width: 1248px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 2;
}
@media (min-width: 1024px) {
  .content-section__container {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  }
}

.content-section--reverse .content-section__text {
  order: 2;
}
@media (min-width: 1024px) {
  .content-section--reverse .content-section__text {
    order: 2;
  }
}
.content-section--reverse .content-section__image {
  order: 1;
}
@media (min-width: 1024px) {
  .content-section--reverse .content-section__image {
    order: 1;
  }
}

.content-section__text {
  order: 2;
}
@media (min-width: 1024px) {
  .content-section__text {
    order: 1;
  }
}

.content-section__subtitle {
  font-family: "DM Mono", "Courier New", monospace;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin: 0 0 16px 0;
}
.content-section--light .content-section__subtitle, .content-section--beige .content-section__subtitle {
  color: var(--color-punch);
}
.content-section--dark .content-section__subtitle {
  color: var(--color-punch);
}

.content-section__title {
  margin: 0 0 24px 0;
}
.content-section--dark .content-section__title {
  color: var(--color-light);
}

.content-section__description {
  font-family: "Work Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 24px;
  margin: 0 0 16px 0;
}
.content-section--dark .content-section__description {
  color: var(--color-punch);
}

.content-section__body {
  font-family: "Work Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 24px;
  margin: 0 0 32px 0;
}

.content-section__image {
  order: 1;
  width: 100%;
}
@media (min-width: 1024px) {
  .content-section__image {
    order: 2;
  }
}
.content-section__image img,
.content-section__image div {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
}
.content-section__image h3.quote {
  text-align: center;
  color: var(--color-punch);
}

.logo-grid {
  background-color: #ffffff;
  padding: 80px 20px;
}
@media (min-width: 768px) {
  .logo-grid {
    padding: 80px 40px;
  }
}
@media (min-width: 1024px) {
  .logo-grid {
    padding: 80px 40px;
  }
}

.logo-grid__header {
  max-width: 1248px;
  margin: 0 auto 50px;
  text-align: center;
}

.logo-grid__title {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 24px;
  line-height: 30px;
  color: var(--color-punch);
  margin: 0 0 16px 0;
}

.logo-grid__description {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 15px;
  line-height: 24px;
  color: var(--color-matterhorn);
  margin: 0;
}

.logo-grid__container {
  max-width: 1248px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (min-width: 768px) {
  .logo-grid__container {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
  }
}
@media (min-width: 1024px) {
  .logo-grid__container {
    grid-template-columns: repeat(6, 1fr);
    gap: 40px;
  }
}

.logo-grid__item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}
.logo-grid__item img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.logo-grid__placeholder {
  width: 100%;
  height: 100%;
  background-color: #f5f5f5;
  border: 2px dashed #cccccc;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999999;
  font-size: 14px;
  font-family: "Helvetica Neue", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

@keyframes noise-animation {
  0% {
    transform: translate3d(0, 9rem, 0);
  }
  10% {
    transform: translate3d(-1rem, -4rem, 0);
  }
  20% {
    transform: translate3d(-8rem, 2rem, 0);
  }
  30% {
    transform: translate3d(9rem, -9rem, 0);
  }
  40% {
    transform: translate3d(-2rem, 7rem, 0);
  }
  50% {
    transform: translate3d(-9rem, -4rem, 0);
  }
  60% {
    transform: translate3d(2rem, 6rem, 0);
  }
  70% {
    transform: translate3d(7rem, -8rem, 0);
  }
  80% {
    transform: translate3d(-9rem, 1rem, 0);
  }
  90% {
    transform: translate3d(6rem, -5rem, 0);
  }
  100% {
    transform: translate3d(-7rem, 0, 0);
  }
}
.simple-section {
  padding: 60px 20px;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) {
  .simple-section {
    padding: 60px 40px;
  }
}
@media (min-width: 1024px) {
  .simple-section {
    padding: 60px 40px;
  }
}

.simple-section--light {
  background-color: var(--color-light);
  color: var(--color-dark);
}

.simple-section--dark {
  background-color: var(--color-matterhorn);
  color: var(--color-light);
}

.simple-section--beige {
  background-color: var(--color-linen);
  color: var(--color-dark);
}

.simple-section__noise {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.08;
  z-index: 1;
}
.simple-section__noise::after {
  content: "";
  position: absolute;
  top: -10rem;
  left: -10rem;
  width: calc(100% + 20rem);
  height: calc(100% + 20rem);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.5' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  animation: noise-animation 1s steps(2) infinite;
  will-change: transform;
}

.simple-section__container {
  max-width: 1248px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 2;
}
@media (min-width: 1024px) {
  .simple-section__container {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }
}

@media (min-width: 1024px) {
  .simple-section--reverse .simple-section__container {
    grid-template-columns: 1fr 1fr;
  }
}
.simple-section--reverse .simple-section__text {
  order: 2;
}
@media (min-width: 1024px) {
  .simple-section--reverse .simple-section__text {
    order: 2;
  }
}
.simple-section--reverse .simple-section__image {
  order: 1;
}
@media (min-width: 1024px) {
  .simple-section--reverse .simple-section__image {
    order: 1;
  }
}

.simple-section__text {
  order: 2;
}
@media (min-width: 1024px) {
  .simple-section__text {
    order: 1;
  }
}

.simple-section__title {
  margin: 0 0 24px 0;
  color: var(--color-matterhorn);
}
.simple-section--dark .simple-section__title {
  color: var(--color-light);
}

.simple-section__body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 15px;
  line-height: 24px;
  margin: 0 0 32px 0;
  color: var(--color-matterhorn);
}
.simple-section--dark .simple-section__body {
  color: var(--color-light);
}

.simple-section__image {
  order: 1;
  width: 100%;
}
@media (min-width: 1024px) {
  .simple-section__image {
    order: 2;
  }
}
.simple-section__image img,
.simple-section__image div {
  width: 100%;
  height: auto;
  border-radius: 24px;
  display: block;
}

.testimonials-carousel {
  background-color: #ffffff;
  padding: 80px 20px;
}
@media (min-width: 768px) {
  .testimonials-carousel {
    padding: 100px 40px;
  }
}
@media (min-width: 1024px) {
  .testimonials-carousel {
    padding: 100px 60px;
  }
}

.testimonials-carousel__container {
  max-width: 1248px;
  margin: 0 auto;
  background-image: url("assets/images/hero-bg.png");
  background-size: cover;
  background-position: center;
  border-radius: 16px;
  box-sizing: border-box;
  padding: 50px 40px 40px;
}
@media (min-width: 768px) {
  .testimonials-carousel__container {
    padding: 60px 60px 50px;
  }
}

.testimonials-carousel__track {
  position: relative;
  min-height: 180px;
}

.testimonials-carousel__slide {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.testimonials-carousel__slide.is-active {
  opacity: 1;
  visibility: visible;
  position: relative;
}

.testimonials-carousel__quote {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 24px;
  line-height: 30px;
  color: var(--color-matterhorn);
  margin: 0 0 32px 0;
}

.testimonials-carousel__author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.testimonials-carousel__avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #ffffff;
  flex-shrink: 0;
}
.testimonials-carousel__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonials-carousel__author-info {
  display: flex;
  flex-direction: column;
}

.testimonials-carousel__author-name {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.3;
  color: var(--color-dark);
}

.testimonials-carousel__author-title {
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 13px;
  line-height: 1.4;
  color: var(--color-matterhorn);
  text-transform: uppercase;
}

.testimonials-carousel__dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 32px;
}

.testimonials-carousel__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background-color: var(--color-linen-a);
  cursor: pointer;
  padding: 0;
  transition: background-color 0.3s ease;
}
.testimonials-carousel__dot.is-active {
  background-color: var(--color-punch);
}

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

@keyframes noise-animation {
  0% {
    transform: translate3d(0, 9rem, 0);
  }
  10% {
    transform: translate3d(-1rem, -4rem, 0);
  }
  20% {
    transform: translate3d(-8rem, 2rem, 0);
  }
  30% {
    transform: translate3d(9rem, -9rem, 0);
  }
  40% {
    transform: translate3d(-2rem, 7rem, 0);
  }
  50% {
    transform: translate3d(-9rem, -4rem, 0);
  }
  60% {
    transform: translate3d(2rem, 6rem, 0);
  }
  70% {
    transform: translate3d(7rem, -8rem, 0);
  }
  80% {
    transform: translate3d(-9rem, 1rem, 0);
  }
  90% {
    transform: translate3d(6rem, -5rem, 0);
  }
  100% {
    transform: translate3d(-7rem, 0, 0);
  }
}
.cta-section {
  padding: 20px 20px;
}
@media (min-width: 768px) {
  .cta-section {
    padding: 40px 40px;
  }
}
@media (min-width: 1024px) {
  .cta-section {
    padding: 40px 40px;
  }
}

.cta-section__noise {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.2;
  z-index: 1;
}
.cta-section__noise::after {
  content: "";
  position: absolute;
  top: -10rem;
  left: -10rem;
  width: calc(100% + 20rem);
  height: calc(100% + 20rem);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.5' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  animation: noise-animation 1s steps(2) infinite;
  will-change: transform;
}

.cta-section__container {
  max-width: 1248px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  text-align: center;
  border-radius: 24px;
  background: linear-gradient(-135deg, #FF6952 0%, #E92B13 100%);
  padding: 80px 40px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .cta-section__container {
    gap: 48px;
    padding: 95px 60px;
  }
}
@media (min-width: 1024px) {
  .cta-section__container {
    padding: 95px 80px;
  }
}

.cta-section__title {
  font-family: "Work Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 500;
  font-size: 48px;
  line-height: 1.1;
  letter-spacing: 0;
  color: #ffffff;
  margin: 0;
}
@media (min-width: 768px) {
  .cta-section__title {
    font-size: 64px;
  }
}
@media (min-width: 1024px) {
  .cta-section__title {
    font-size: 64px;
  }
}

.btn-cta {
  z-index: 3;
}

.expertise-section {
  padding: 80px 0;
}
.expertise-section__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.expertise-section__title {
  font-family: "Work Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 500;
  line-height: 1.2;
  color: var(--color-matterhorn);
  margin-bottom: 60px;
  text-align: left;
}
@media (max-width: 768px) {
  .expertise-section__title {
    margin-bottom: 40px;
  }
}
.expertise-section__items {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.expertise-section__item {
  border-top: 1px solid var(--color-linen-a);
}
.expertise-section__item:last-child {
  border-bottom: 1px solid var(--color-linen-a);
}
.expertise-section__item-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 32px 0;
  gap: 20px;
}
@media (max-width: 1023px) {
  .expertise-section__item-header {
    flex-direction: column;
    padding: 24px 0;
    gap: 16px;
  }
}
.expertise-section__item-header-content {
  flex: 1;
}
@media (max-width: 1023px) {
  .expertise-section__item-header-content {
    width: 100%;
  }
}
@media (max-width: 1023px) {
  .expertise-section__item-header .btn-toggle {
    width: 100%;
    border-radius: 40px;
  }
}
.expertise-section__item-tag {
  font-family: "DM Mono", "Courier New", monospace;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.02em;
  color: var(--color-punch);
  margin: 0 0 8px 0;
}
.expertise-section__item-title {
  color: var(--color-matterhorn);
  margin: 0;
  flex: 1;
}
.expertise-section__item-content {
  padding-bottom: 32px;
}
@media (max-width: 768px) {
  .expertise-section__item-content {
    padding-bottom: 24px;
  }
}
.expertise-section__content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 1024px) {
  .expertise-section__content-grid {
    grid-template-columns: 2fr 1fr;
    gap: 60px;
  }
}
.expertise-section__item-text {
  color: var(--color-matterhorn);
  margin: 0;
}
.expertise-section__outcomes-title {
  color: var(--color-punch);
  margin: 0 0 16px 0;
}
.expertise-section__outcomes-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.expertise-section__outcomes-list li {
  position: relative;
  padding-left: 0;
}
.expertise-section__outcomes-list li h4 {
  color: var(--color-matterhorn);
  margin: 0;
}

.blog-header {
  background-color: #514747;
  padding: 140px 20px 60px;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) {
  .blog-header {
    padding: 160px 40px 80px;
  }
}

.blog-header__container {
  max-width: 1248px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.blog-header__title {
  font-family: "Work Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-weight: 500;
  font-size: 48px;
  line-height: 1.1;
  color: #FBFAFA;
  text-transform: uppercase;
  margin: 0;
}
@media (min-width: 768px) {
  .blog-header__title {
    font-size: 64px;
  }
}
@media (min-width: 1024px) {
  .blog-header__title {
    font-size: 80px;
  }
}

.blog-section {
  padding: 40px 20px 80px;
  background-color: #ffffff;
}
@media (min-width: 768px) {
  .blog-section {
    padding: 60px 40px 100px;
  }
}

.blog-container {
  max-width: 1248px;
  margin: 0 auto;
}

.blog-filter {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  padding-bottom: 40px;
  border-bottom: 1px solid #E4DBD0;
}

.blog-filter__label {
  font-family: "DM Mono", "Courier New", monospace;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #514747;
}

.blog-filter__dropdown select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: transparent;
  border: 1px solid #514747;
  border-radius: 20px;
  padding: 12px 40px 12px 20px;
  font-family: "DM Mono", "Courier New", monospace;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #514747;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='none' stroke='%23514747' stroke-width='1.5' d='M1 1l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  min-width: 180px;
  height: auto;
  line-height: 1;
  width: 100%;
}
.blog-filter__dropdown select:hover {
  border-color: #FF472E;
}
.blog-filter__dropdown select:focus {
  outline: none;
  border-color: #FF472E;
}

.blog-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding: 48px 0;
}
@media (min-width: 768px) {
  .blog-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}
@media (min-width: 1024px) {
  .blog-row {
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
  }
}

.blog-divider {
  border: none;
  border-top: 1px solid #E4DBD0;
  margin: 0;
}

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

.blog-crad__share {
  display: flex;
  align-items: center;
}
.blog-crad__share .blog-hero__share-label {
  margin: 10px 20px 10px 0px;
  color: #514747;
  font-size: 16px;
}
.blog-crad__share .blog-hero__social a svg {
  width: 18px;
  height: 18px;
  margin-top: 5px;
}

.blog-card__link {
  text-decoration: none;
  display: grid;
  grid-template-rows: auto auto 1fr;
  height: 100%;
}
.blog-card__link:hover .blog-card__title {
  color: #FF472E;
}
.blog-card__link:hover .blog-card__image img,
.blog-card__link:hover .blog-card__placeholder {
  transform: scale(1.02);
}

.blog-card__title {
  font-family: "Work Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 30px;
  color: #514747;
  margin: 0 0 8px 0;
  transition: color 0.3s ease;
}

.blog-card__meta {
  font-family: "Work Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #FF472E;
  margin: 16px 0 16px 0;
  text-decoration: none;
}
.blog-card__meta a {
  text-decoration: none;
  color: inherit;
}

.blog-card__separator {
  color: #C2B7AA;
  margin: 0 8px;
}

.blog-card__date {
  color: #FF472E;
}

.blog-card__image {
  width: 100%;
  border-radius: 16px;
  align-self: end;
}
.blog-card__image img {
  width: 100%;
  height: auto;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 16px;
  transition: transform 0.3s ease;
}

.blog-card__placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background-color: #514747;
  border-radius: 16px;
  transition: transform 0.3s ease;
}

.blog-empty {
  text-align: center;
  padding: 80px 20px;
}
.blog-empty p {
  color: #514747;
  font-size: 18px;
}

.blog-hero__title-link {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
  font-family: inherit;
  font-weight: inherit;
  font-size: inherit;
  line-height: inherit;
  text-transform: inherit;
}
.blog-hero__title-link:hover {
  color: #FF472E;
}

.hero-image a {
  display: block;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.hero-image a:hover {
  opacity: 0.9;
}

.blog-hero__title {
  font-family: "Work Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-weight: 500;
  font-size: 36px;
  line-height: 1.15;
  color: #FBFAFA;
  text-transform: none;
  margin: 0 0 24px 0;
}
@media (min-width: 768px) {
  .blog-hero__title {
    font-size: 46px;
  }
}
@media (min-width: 1024px) {
  .blog-hero__title {
    font-size: 54px;
  }
}

.blog-hero__meta {
  font-family: "DM Mono", "Courier New", monospace;
}

.blog-hero__date {
  color: #FF472E;
}

.blog-hero__separator {
  color: #C2B7AA;
  margin: 0 8px;
}

.blog-hero__read-time {
  color: #FF472E;
}

.blog-hero__share-label {
  font-family: "Work Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  color: #FBF3EA;
}

.blog-hero__social {
  display: flex;
  gap: 16px;
}
.blog-hero__social a {
  color: #FF472E;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
.blog-hero__social a:hover {
  opacity: 0.7;
}
.blog-hero__social a svg {
  width: 24px;
  height: 24px;
}

.single-post {
  background-color: #ffffff;
}

.single-post__container {
  max-width: 1248px;
  margin: 0 auto;
}

.single-post__author {
  font-family: "DM Mono", "Courier New", monospace;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #FF472E;
  text-align: center;
  margin: 40px 0 40px 0;
}
@media (min-width: 768px) {
  .single-post__author {
    margin: 60px 0 60px 0;
  }
}

.single-post__author-name {
  color: #FF472E;
}

.related-articles {
  background-color: #FBFAFA;
  padding: 60px 20px 80px;
}
@media (min-width: 768px) {
  .related-articles {
    padding: 80px 40px 100px;
  }
}

.related-articles__container {
  max-width: 1248px;
  margin: 0 auto;
}

.related-articles__title {
  font-family: "Work Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-weight: 500;
  font-size: 36px;
  line-height: 1.2;
  color: #514747;
  margin: 0 0 40px 0;
}
@media (min-width: 768px) {
  .related-articles__title {
    font-size: 48px;
    margin: 0 0 60px 0;
  }
}

.single-post__content h2 {
  font-family: "Work Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-weight: 500;
  font-size: 32px;
  line-height: 1.25;
  color: #514747;
  margin: 48px 0 24px 0;
}
@media (min-width: 768px) {
  .single-post__content h2 {
    font-size: 38px;
  }
}
.single-post__content h3 {
  font-family: "Work Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 1.3;
  color: #514747;
  margin: 40px 0 20px 0;
}
.single-post__content h4 {
  font-family: "Work Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.4;
  color: #514747;
  margin: 32px 0 16px 0;
}
.single-post__content p {
  font-family: "Work Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: #261D1D;
  margin: 0 0 24px 0;
}
.single-post__content ul, .single-post__content ol {
  margin: 0 0 24px 0;
  padding-left: 24px;
}
.single-post__content ul li, .single-post__content ol li {
  font-family: "Work Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.7;
  color: #261D1D;
  margin-bottom: 8px;
}
.single-post__content blockquote {
  border-left: 4px solid #FF472E;
  margin: 32px 0;
  padding: 16px 24px;
  background-color: #FBF3EA;
}
.single-post__content blockquote p {
  font-style: italic;
  font-size: 18px;
  margin: 0;
}
.single-post__content img {
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  margin: 32px 0;
}
.single-post__content a {
  color: #FF472E;
  text-decoration: underline;
}
.single-post__content a:hover {
  text-decoration: none;
}

.error-404 {
  background-color: #514747;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 140px 20px 80px;
}
@media (min-width: 768px) {
  .error-404 {
    padding: 160px 40px 100px;
  }
}

.error-404__container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.error-404__code {
  font-family: "Work Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-weight: 500;
  font-size: 120px;
  line-height: 1;
  color: #FF472E;
  margin: 0 0 24px 0;
}
@media (min-width: 768px) {
  .error-404__code {
    font-size: 180px;
  }
}
@media (min-width: 1024px) {
  .error-404__code {
    font-size: 240px;
  }
}

.error-404__title {
  font-family: "Work Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-weight: 500;
  font-size: 32px;
  line-height: 1.2;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #FBFAFA;
  margin: 0 0 24px 0;
}
@media (min-width: 768px) {
  .error-404__title {
    font-size: 48px;
  }
}
@media (min-width: 1024px) {
  .error-404__title {
    font-size: 64px;
  }
}

.error-404__description {
  font-family: "Work Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: #FBFAFA;
  margin: 0 0 48px 0;
}
@media (min-width: 768px) {
  .error-404__description {
    font-size: 18px;
  }
}

.error-404__actions {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.contact-hero {
  background-color: #FBFAFA;
  padding: 140px 20px 60px;
}
@media (min-width: 768px) {
  .contact-hero {
    padding: 160px 40px 80px;
  }
}

.contact-hero__container {
  max-width: 1248px;
  margin: 0 auto;
}

.contact-hero__subtitle {
  font-family: "DM Mono", "Courier New", monospace;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #FF472E;
  margin: 0 0 16px 0;
}

.contact-hero__title {
  font-family: "Work Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  line-height: 1.1;
  margin: 0;
  text-transform: capitalize;
}

.contact-section {
  background-color: #ffffff;
  padding: 60px 20px 80px;
}
@media (min-width: 768px) {
  .contact-section {
    padding: 80px 40px 100px;
  }
}

.contact-section__container {
  max-width: 1248px;
  margin: 0 auto;
}

.contact-section__title {
  font-family: "Work Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-weight: 500;
  line-height: 1.2;
  color: #FF472E;
  margin: 0 0 40px 0;
}
@media (min-width: 768px) {
  .contact-section__title {
    margin: 0 0 60px 0;
  }
}

.wpcf7 p {
  margin: 0 0 8px 0;
  font-family: "Work Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  color: #514747;
}
.wpcf7 p a {
  color: inherit;
  text-decoration: underline;
  vertical-align: baseline;
}
.wpcf7 p a:hover {
  color: #FF472E;
}
.wpcf7 .wpcf7-form-control-wrap {
  display: block;
  margin-bottom: 24px;
}
.wpcf7 input[type=text],
.wpcf7 input[type=email],
.wpcf7 input[type=tel],
.wpcf7 textarea,
.wpcf7 select {
  width: 100%;
  padding: 16px 0;
  border: none;
  border-bottom: 1px solid #A29486;
  background-color: transparent;
  font-family: "Work Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-size: 16px;
  color: #514747;
  transition: border-color 0.3s ease;
}
.wpcf7 input[type=text]::placeholder,
.wpcf7 input[type=email]::placeholder,
.wpcf7 input[type=tel]::placeholder,
.wpcf7 textarea::placeholder,
.wpcf7 select::placeholder {
  color: #A29486;
}
.wpcf7 input[type=text]:focus,
.wpcf7 input[type=email]:focus,
.wpcf7 input[type=tel]:focus,
.wpcf7 textarea:focus,
.wpcf7 select:focus {
  outline: none;
  border-bottom-color: #FF472E;
}
.wpcf7 textarea {
  min-height: 90px;
  resize: vertical;
}
.wpcf7 .wpcf7-submit {
  font-family: "DM Mono", "Courier New", monospace;
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
  text-transform: uppercase;
  border-radius: 20px;
  height: 44px;
  padding: 0 40px;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  cursor: pointer;
  background-color: #FF472E;
  color: #FBFAFA;
  transition: background-color 0.3s ease;
  margin-top: 16px;
}
.wpcf7 .wpcf7-submit:hover {
  background-color: #E92B13;
}
.wpcf7 .wpcf7-response-output {
  border: 2px solid;
  padding: 16px;
  margin: 24px 0 0;
  border-radius: 8px;
}
.wpcf7 .wpcf7-mail-sent-ok {
  border-color: #46b450;
  background-color: #ecf7ed;
  color: #46b450;
}
.wpcf7 .wpcf7-validation-errors,
.wpcf7 .wpcf7-mail-sent-ng {
  border-color: #FF472E;
  background-color: rgba(255, 71, 46, 0.1);
  color: #FF472E;
}
.wpcf7 .wpcf7-not-valid-tip {
  color: #FF472E;
  font-size: 13px;
  margin-top: 4px;
  display: block;
}
.wpcf7 .wpcf7-spinner {
  margin-left: 16px;
}

.wpcf7-form .form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 768px) {
  .wpcf7-form .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-section__alternative {
  margin-top: 60px;
}

.contact-section__alt-title {
  margin: 0 0 16px 0;
}

.contact-section__alt-text {
  letter-spacing: 1px;
}
.contact-section__alt-text a {
  color: #261D1D;
  text-decoration: underline;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  vertical-align: baseline;
}
.contact-section__alt-text a:hover {
  text-decoration: none;
}

.pricing-packages {
  background-color: var(--color-light);
  padding: 80px 20px;
}
@media (min-width: 768px) {
  .pricing-packages {
    padding: 100px 40px;
  }
}
@media (min-width: 1024px) {
  .pricing-packages {
    padding: 100px 60px;
  }
}

.pricing-packages__container {
  max-width: 1248px;
  margin: 0 auto;
}

.pricing-packages__header {
  text-align: center;
  margin-bottom: 50px;
}

.pricing-packages__title {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 36px;
  line-height: 1.1;
  color: var(--color-punch);
  margin: 0 0 12px;
}
@media (min-width: 768px) {
  .pricing-packages__title {
    font-size: 46px;
  }
}

.pricing-packages__subtitle {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 15px;
  line-height: 24px;
  color: var(--color-matterhorn);
  margin: 0;
}

.pricing-packages__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 768px) {
  .pricing-packages__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .pricing-packages__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pricing-package {
  background-color: #ffffff;
  border: 1px solid #e8e8e8;
  border-radius: 12px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.pricing-package__number {
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 14px;
  color: var(--color-punch);
  margin-bottom: 10px;
}

.pricing-package__name {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 24px;
  line-height: 30px;
  color: var(--color-matterhorn);
  margin: 0 0 20px;
}

.pricing-package__price {
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin-bottom: 16px;
}

.pricing-package__price-amount {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 64px;
  line-height: 1;
  color: var(--color-punch);
}

.pricing-package__price-period {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 20px;
  color: var(--color-punch);
}

.pricing-package__price-alt {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 48px;
  line-height: 1;
  color: var(--color-punch);
}

.pricing-package__divider {
  height: 1px;
  background-color: var(--color-linen-a);
  margin-bottom: 20px;
}

.pricing-package__subtitle {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 20px;
  line-height: 28px;
  color: var(--color-matterhorn);
  margin: 0 0 12px;
}

.pricing-package__description {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 15px;
  line-height: 24px;
  color: var(--color-matterhorn);
  margin: 0 0 24px;
  flex: 1;
}

.pricing-package__button {
  width: 100%;
  margin-top: auto;
}

.three-column-copy {
  padding: 80px 20px;
  background-color: var(--color-light);
}
@media (min-width: 768px) {
  .three-column-copy {
    padding: 100px 40px;
  }
}
@media (min-width: 1024px) {
  .three-column-copy {
    padding: 100px 60px;
  }
}

.three-column-copy__container {
  max-width: 1248px;
  margin: 0 auto;
}

.three-column-copy__header {
  margin-bottom: 40px;
}

.three-column-copy__title {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 36px;
  line-height: 1.1;
  margin: 0 0 12px;
  color: var(--color-punch);
}
@media (min-width: 768px) {
  .three-column-copy__title {
    font-size: 46px;
  }
}

.three-column-copy__subtitle {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 15px;
  line-height: 24px;
  margin: 0;
  color: var(--color-matterhorn);
}

.three-column-copy__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 768px) {
  .three-column-copy__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .three-column-copy__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.three-column-copy__column {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.three-column-copy__number {
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 14px;
  color: var(--color-punch);
  margin-bottom: 10px;
}

.three-column-copy__column-title {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 24px;
  line-height: 30px;
  margin: 0 0 10px;
  color: var(--color-matterhorn);
}

.three-column-copy__column-text {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  margin: 0;
  color: var(--color-matterhorn);
}
.three-column-copy__column-text p {
  font-family: inherit;
  font-weight: inherit;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
  margin: 0 0 12px;
}
.three-column-copy__column-text p:last-child {
  margin-bottom: 0;
}

@keyframes noise-animation {
  0% {
    transform: translate3d(0, 9rem, 0);
  }
  10% {
    transform: translate3d(-1rem, -4rem, 0);
  }
  20% {
    transform: translate3d(-8rem, 2rem, 0);
  }
  30% {
    transform: translate3d(9rem, -9rem, 0);
  }
  40% {
    transform: translate3d(-2rem, 7rem, 0);
  }
  50% {
    transform: translate3d(-9rem, -4rem, 0);
  }
  60% {
    transform: translate3d(2rem, 6rem, 0);
  }
  70% {
    transform: translate3d(7rem, -8rem, 0);
  }
  80% {
    transform: translate3d(-9rem, 1rem, 0);
  }
  90% {
    transform: translate3d(6rem, -5rem, 0);
  }
  100% {
    transform: translate3d(-7rem, 0, 0);
  }
}
.side-by-side-blocks {
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) {
  .side-by-side-blocks {
    padding: 100px 40px;
  }
}
@media (min-width: 1024px) {
  .side-by-side-blocks {
    padding: 120px 40px;
  }
}
.side-by-side-blocks--light {
  background-color: #FBFAFA;
  color: #261D1D;
}
.side-by-side-blocks--dark {
  background-color: #514747;
  color: #FBFAFA;
}
.side-by-side-blocks--beige {
  background-color: #FBF3EA;
  color: #261D1D;
}

.side-by-side-blocks__noise {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.08;
  z-index: 1;
}
.side-by-side-blocks__noise::after {
  content: "";
  position: absolute;
  top: -10rem;
  left: -10rem;
  width: calc(100% + 20rem);
  height: calc(100% + 20rem);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.5' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  animation: noise-animation 1s steps(2) infinite;
  will-change: transform;
}

.side-by-side-blocks__container {
  max-width: 1248px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.side-by-side-blocks__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 768px) {
  .side-by-side-blocks__grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
  }
}
@media (min-width: 1024px) {
  .side-by-side-blocks__grid {
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 48px;
  }
}

.side-by-side-blocks__block {
  display: flex;
  flex-direction: column;
  padding: 24px;
  border-radius: 8px;
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
  .side-by-side-blocks__block {
    padding: 32px;
  }
}
.side-by-side-blocks--light .side-by-side-blocks__block {
  background-color: #ffffff;
}
.side-by-side-blocks--dark .side-by-side-blocks__block {
  background-color: rgba(251, 250, 250, 0.05);
}
.side-by-side-blocks--beige .side-by-side-blocks__block {
  background-color: rgba(255, 255, 255, 0.4);
}

.side-by-side-blocks__title {
  font-family: "Work Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.25;
  margin: 0 0 16px;
}
@media (min-width: 768px) {
  .side-by-side-blocks__title {
    font-size: 22px;
    margin-bottom: 20px;
  }
}
.side-by-side-blocks--light .side-by-side-blocks__title {
  color: #261D1D;
}
.side-by-side-blocks--dark .side-by-side-blocks__title {
  color: #ffffff;
}
.side-by-side-blocks--beige .side-by-side-blocks__title {
  color: #261D1D;
}

.side-by-side-blocks__content {
  font-family: "Work Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.75;
  margin: 0 0 24px;
  flex: 1;
}
@media (min-width: 768px) {
  .side-by-side-blocks__content {
    font-size: 16px;
    margin-bottom: 28px;
  }
}
.side-by-side-blocks--light .side-by-side-blocks__content {
  color: #514747;
}
.side-by-side-blocks--dark .side-by-side-blocks__content {
  color: #e8e8e8;
}
.side-by-side-blocks--beige .side-by-side-blocks__content {
  color: #514747;
}
.side-by-side-blocks--dark .side-by-side-blocks__content h2, .side-by-side-blocks--dark .side-by-side-blocks__content h3, .side-by-side-blocks--dark .side-by-side-blocks__content h4, .side-by-side-blocks--dark .side-by-side-blocks__content h5, .side-by-side-blocks--dark .side-by-side-blocks__content h6 {
  color: #ffffff;
}
.side-by-side-blocks__content p {
  margin: 0 0 16px;
}
.side-by-side-blocks__content p:last-child {
  margin-bottom: 0;
}
.side-by-side-blocks__content ul, .side-by-side-blocks__content ol {
  margin: 0 0 16px;
  padding-left: 24px;
}
.side-by-side-blocks__content ul:last-child, .side-by-side-blocks__content ol:last-child {
  margin-bottom: 0;
}
.side-by-side-blocks__content ul li, .side-by-side-blocks__content ol li {
  margin-bottom: 8px;
}
.side-by-side-blocks__content strong {
  font-weight: 600;
}
.side-by-side-blocks__content em {
  font-style: italic;
}
.side-by-side-blocks__content a {
  text-decoration: underline;
}
.side-by-side-blocks--light .side-by-side-blocks__content a {
  color: #FF472E;
}
.side-by-side-blocks--dark .side-by-side-blocks__content a {
  color: #FF472E;
}
.side-by-side-blocks--beige .side-by-side-blocks__content a {
  color: #FF472E;
}
.side-by-side-blocks__content a:hover {
  text-decoration: none;
}

.side-by-side-blocks__button {
  align-self: center;
  margin-top: auto;
}
.side-by-side-blocks--light .side-by-side-blocks__button.btn-primary, .side-by-side-blocks--beige .side-by-side-blocks__button.btn-primary {
  background-color: transparent;
  border-color: #514747;
  color: #514747;
}
.side-by-side-blocks--light .side-by-side-blocks__button.btn-primary:hover, .side-by-side-blocks--beige .side-by-side-blocks__button.btn-primary:hover {
  background-color: #514747;
  color: #FBFAFA;
}
.side-by-side-blocks--light .side-by-side-blocks__button.btn-secondary, .side-by-side-blocks--beige .side-by-side-blocks__button.btn-secondary {
  background-color: #FF472E;
  border-color: #FF472E;
  color: #FBFAFA;
}
.side-by-side-blocks--light .side-by-side-blocks__button.btn-secondary:hover, .side-by-side-blocks--beige .side-by-side-blocks__button.btn-secondary:hover {
  background-color: #E92B13;
  border-color: #E92B13;
}
.side-by-side-blocks--dark .side-by-side-blocks__button.btn-primary {
  background-color: transparent;
  border-color: #FBFAFA;
  color: #FBFAFA;
}
.side-by-side-blocks--dark .side-by-side-blocks__button.btn-primary:hover {
  background-color: #FBFAFA;
  color: #261D1D;
}
.side-by-side-blocks--dark .side-by-side-blocks__button.btn-secondary {
  background-color: #FF472E;
  border-color: #FF472E;
  color: #FBFAFA;
}
.side-by-side-blocks--dark .side-by-side-blocks__button.btn-secondary:hover {
  background-color: #E92B13;
  border-color: #E92B13;
}

@keyframes noise-animation {
  0% {
    transform: translate3d(0, 9rem, 0);
  }
  10% {
    transform: translate3d(-1rem, -4rem, 0);
  }
  20% {
    transform: translate3d(-8rem, 2rem, 0);
  }
  30% {
    transform: translate3d(9rem, -9rem, 0);
  }
  40% {
    transform: translate3d(-2rem, 7rem, 0);
  }
  50% {
    transform: translate3d(-9rem, -4rem, 0);
  }
  60% {
    transform: translate3d(2rem, 6rem, 0);
  }
  70% {
    transform: translate3d(7rem, -8rem, 0);
  }
  80% {
    transform: translate3d(-9rem, 1rem, 0);
  }
  90% {
    transform: translate3d(6rem, -5rem, 0);
  }
  100% {
    transform: translate3d(-7rem, 0, 0);
  }
}
.text-block {
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) {
  .text-block {
    padding: 100px 40px;
  }
}
@media (min-width: 1024px) {
  .text-block {
    padding: 120px 40px;
  }
}

.text-block__noise {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.08;
  z-index: 1;
}
.text-block__noise::after {
  content: "";
  position: absolute;
  top: -10rem;
  left: -10rem;
  width: calc(100% + 20rem);
  height: calc(100% + 20rem);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.5' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  animation: noise-animation 1s steps(2) infinite;
  will-change: transform;
}

.text-block--light {
  background-color: #ffffff;
  color: var(--color-dark);
}

.text-block--dark {
  background-color: var(--color-matterhorn);
  color: var(--color-light);
}

.text-block--beige {
  background-color: var(--color-linen);
  color: var(--color-dark);
}

.text-block__container {
  max-width: 1248px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.text-block__subtitle {
  font-family: "DM Mono", "Courier New", monospace;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin: 0 0 16px 0;
}
.text-block--light .text-block__subtitle, .text-block--beige .text-block__subtitle {
  color: var(--color-punch);
}
.text-block--dark .text-block__subtitle {
  color: var(--color-punch);
}

.text-block__title {
  margin: 0 0 24px 0;
}
.text-block--dark .text-block__title {
  color: var(--color-light);
}

.text-block__body {
  font-family: "Work Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 24px;
  margin: 0;
}
.text-block--dark .text-block__body {
  color: var(--color-light);
}
.text-block__body a {
  color: var(--color-punch);
  text-decoration: none;
}
.text-block__body a:hover {
  text-decoration: underline;
}
.text-block__body strong {
  font-weight: 600;
}
.text-block__body em {
  font-style: italic;
}
.text-block__body p {
  margin: 0 0 16px 0;
}
.text-block__body p:last-child {
  margin-bottom: 0;
}
.text-block__body ul,
.text-block__body ol {
  margin: 0 0 16px 0;
  padding-left: 24px;
}
.text-block__body ul:last-child,
.text-block__body ol:last-child {
  margin-bottom: 0;
}
.text-block__body li {
  margin: 0 0 8px 0;
}
.text-block__body li:last-child {
  margin-bottom: 0;
}
.text-block__body h2,
.text-block__body h3,
.text-block__body h4,
.text-block__body h5,
.text-block__body h6 {
  margin: 24px 0 16px 0;
}
.text-block--dark .text-block__body h2,
.text-block--dark .text-block__body h3,
.text-block--dark .text-block__body h4,
.text-block--dark .text-block__body h5,
.text-block--dark .text-block__body h6 {
  color: var(--color-light) !important;
}

.jotform-section {
  padding: 60px 20px;
}
@media (min-width: 768px) {
  .jotform-section {
    padding: 80px 40px;
  }
}
@media (min-width: 1024px) {
  .jotform-section {
    padding: 80px 60px;
  }
}

.jotform-section__container {
  max-width: 1248px;
  margin: 0 auto;
}

.jotform-form {
  font-family: "Work Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif !important;
  color: #261D1D !important;
}
.jotform-form * {
  box-sizing: border-box;
}

.jotform-form .form-all {
  background: transparent !important;
  margin: 0 !important;
  padding: 0 !important;
}

.jotform-form .form-line {
  margin: 0 0 24px 0 !important;
  padding: 0 !important;
}

.jotform-form .form-label {
  font-family: "Work Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif !important;
  font-weight: 500 !important;
  font-size: 16px !important;
  color: #261D1D !important;
  margin-bottom: 8px !important;
  display: block !important;
}

.jotform-form .form-textbox,
.jotform-form .form-textarea,
.jotform-form .form-input,
.jotform-form input[type=text],
.jotform-form input[type=email],
.jotform-form input[type=tel],
.jotform-form input[type=url],
.jotform-form input[type=number],
.jotform-form textarea,
.jotform-form select {
  font-family: "Work Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif !important;
  font-size: 16px !important;
  border: none !important;
  border-bottom: 1px solid #A29486 !important;
  border-radius: 0 !important;
  padding: 12px 0 !important;
  background-color: transparent !important;
  color: #261D1D !important;
  transition: border-color 0.3s ease;
}
.jotform-form .form-textbox:focus,
.jotform-form .form-textarea:focus,
.jotform-form .form-input:focus,
.jotform-form input[type=text]:focus,
.jotform-form input[type=email]:focus,
.jotform-form input[type=tel]:focus,
.jotform-form input[type=url]:focus,
.jotform-form input[type=number]:focus,
.jotform-form textarea:focus,
.jotform-form select:focus {
  outline: none !important;
  border-bottom-color: #FF472E !important;
}
.jotform-form .form-textbox::placeholder,
.jotform-form .form-textarea::placeholder,
.jotform-form .form-input::placeholder,
.jotform-form input[type=text]::placeholder,
.jotform-form input[type=email]::placeholder,
.jotform-form input[type=tel]::placeholder,
.jotform-form input[type=url]::placeholder,
.jotform-form input[type=number]::placeholder,
.jotform-form textarea::placeholder,
.jotform-form select::placeholder {
  color: #A29486 !important;
}

.jotform-form textarea {
  min-height: 120px !important;
  resize: vertical !important;
}

.jotform-form select {
  appearance: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  padding-right: 30px !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='none' stroke='%23A29486' stroke-width='1.5' d='M1 1l4 4 4-4'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right center !important;
  background-size: 20px !important;
}

.jotform-form .form-checkbox,
.jotform-form .form-radio {
  margin-right: 8px !important;
}

.jotform-form .form-checkbox input[type=checkbox],
.jotform-form .form-radio input[type=radio] {
  accent-color: #FF472E !important;
  width: 16px !important;
  height: 16px !important;
  cursor: pointer !important;
}

.jotform-form .form-checkbox-item label,
.jotform-form .form-radio-item label {
  font-family: "Work Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif !important;
  font-size: 16px !important;
  color: #261D1D !important;
  margin-left: 8px !important;
  cursor: pointer !important;
}

.jotform-form .form-submit-button,
.jotform-form button[type=submit],
.jotform-form input[type=submit] {
  font-family: "DM Mono", "Courier New", monospace !important;
  font-weight: 400 !important;
  font-size: 16px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
  background-color: #FF472E !important;
  border: 1px solid #FF472E !important;
  border-radius: 20px !important;
  color: #FBFAFA !important;
  padding: 12px 40px !important;
  height: auto !important;
  line-height: 1 !important;
  cursor: pointer !important;
  transition: all 0.3s ease;
}
.jotform-form .form-submit-button:hover,
.jotform-form button[type=submit]:hover,
.jotform-form input[type=submit]:hover {
  background-color: #E92B13 !important;
  border-color: #E92B13 !important;
}
.jotform-form .form-submit-button:active,
.jotform-form button[type=submit]:active,
.jotform-form input[type=submit]:active {
  opacity: 0.9 !important;
}

.jotform-form .form-line.error {
  background-color: transparent !important;
}

.jotform-form .form-error-message {
  font-family: "Work Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif !important;
  font-size: 14px !important;
  color: #FF472E !important;
  margin-top: 4px !important;
  display: block !important;
}

.jotform-form .form-required {
  color: #FF472E !important;
}

.jotform-form .form-sub-label {
  font-family: "Work Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif !important;
  font-size: 13px !important;
  color: #A29486 !important;
  margin-top: 4px !important;
}

.jotform-form .form-section-head {
  font-family: "Work Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif !important;
  font-weight: 600 !important;
  font-size: 20px !important;
  color: #261D1D !important;
  margin-bottom: 24px !important;
  margin-top: 32px !important;
}

.jotform-form .form-page-break {
  margin: 32px 0 !important;
}

.jotform-form .form-all.form-completed {
  text-align: center !important;
}

.jotform-form .form-completion-message {
  font-family: "Work Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif !important;
  font-size: 18px !important;
  color: #261D1D !important;
  line-height: 1.6 !important;
}

.jotform-form .jotform-footer {
  display: none !important;
}

.jotform-form .g-recaptcha {
  margin: 16px 0 !important;
}

.jotform-form .hasDatepicker {
  border-bottom: 1px solid #A29486 !important;
}

.jotform-form .form-timepicker {
  border-bottom: 1px solid #A29486 !important;
}

/* Page Hero Banner */
.page-hero {
  background-image: url("assets/images/hero-bg.png");
  background-size: cover;
  background-position: center;
  padding: 80px 20px;
}

@media (min-width: 768px) {
  .page-hero {
    padding: 100px 40px;
  }
}
@media (min-width: 1024px) {
  .page-hero {
    padding: 100px 60px;
  }
}
.page-hero__container {
  max-width: 1248px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

@media (min-width: 1024px) {
  .page-hero__container {
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
  }
}
.page-hero__title {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 48px;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--color-punch);
  margin: 0;
  text-transform: none;
}

@media (min-width: 768px) {
  .page-hero__title {
    font-size: 64px;
  }
}
@media (min-width: 1024px) {
  .page-hero__title {
    font-size: 72px;
  }
}
.page-hero__description {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  color: var(--color-matterhorn);
  margin: 0;
}

/* Problem Result */
.problem-result {
  background-color: #ffffff;
  padding: 80px 0 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .problem-result {
    padding: 100px 0 0;
  }
}
.problem-result__container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

@media (min-width: 1024px) {
  .problem-result__container {
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }
}
.problem-result__content {
  padding: 0 20px;
  max-width: 624px;
}

@media (min-width: 768px) {
  .problem-result__content {
    padding: 0 40px;
  }
}
@media (min-width: 1024px) {
  .problem-result__content {
    padding: 0 60px;
    margin-left: auto;
  }
}
.problem-result--reverse .problem-result__content {
  order: 2;
}

@media (min-width: 1024px) {
  .problem-result--reverse .problem-result__content {
    margin-left: 0;
    margin-right: auto;
    order: 2;
  }
}
.problem-result--reverse .problem-result__image {
  order: 1;
}

.problem-result__super-text {
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-punch);
  display: block;
  margin-bottom: 12px;
}

.problem-result__title {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 24px;
  line-height: 30px;
  color: var(--color-matterhorn);
  margin: 0 0 16px;
}

.problem-result__description {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 15px;
  line-height: 24px;
  color: var(--color-matterhorn);
  margin: 0 0 40px;
}

.problem-result__results {
  margin-top: 0;
}

.problem-result__results-label {
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-punch);
  display: block;
  margin-bottom: 12px;
}

.problem-result__results-title {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 16px;
  line-height: 22px;
  color: var(--color-matterhorn);
  margin: 0 0 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--color-linen-a);
}

.problem-result__bullets {
  list-style: disc;
  padding: 0 0 0 20px;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 40px;
}

.problem-result__bullets li {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 15px;
  line-height: 24px;
  color: var(--color-matterhorn);
}

.problem-result__image {
  position: relative;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .problem-result__image {
    margin-right: -100px;
  }
  .problem-result--reverse .problem-result__image {
    margin-right: 0;
    margin-left: -100px;
  }
}
@media (min-width: 1920px) {
  .problem-result__image {
    margin-right: 0;
    max-width: 750px;
  }
  .problem-result--reverse .problem-result__image {
    margin-left: 0;
  }
}
.problem-result__image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Stats Highlight */
.stats-highlight {
  background-color: var(--color-light);
  padding: 80px 20px;
}

@media (min-width: 768px) {
  .stats-highlight {
    padding: 100px 40px;
  }
}
@media (min-width: 1024px) {
  .stats-highlight {
    padding: 100px 60px;
  }
}
.stats-highlight__container {
  max-width: 1248px;
  margin: 0 auto;
}

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

@media (min-width: 768px) {
  .stats-highlight__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .stats-highlight__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.stats-highlight__description {
  background-color: var(--color-matterhorn);
  border-radius: 12px;
  padding: 20px;
  display: flex;
  flex-direction: column;
}

.stats-highlight__number {
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 14px;
  color: var(--color-punch);
  margin-bottom: 10px;
}

.stats-highlight__text {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 20px;
  line-height: 28px;
  color: var(--color-light);
  margin: 0;
}

.stats-highlight__card {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  min-height: 180px;
}

.stats-highlight__label {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  color: var(--color-matterhorn);
  margin: 0;
}

.stats-highlight__value {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 64px;
  line-height: 1;
  color: var(--color-matterhorn);
  margin-top: auto;
}

/* Content Block */
.content-block {
  padding: 80px 20px;
}

@media (min-width: 768px) {
  .content-block {
    padding: 100px 40px;
  }
}
@media (min-width: 1024px) {
  .content-block {
    padding: 100px 60px;
  }
}
.content-block__container {
  max-width: 900px;
  margin: 0 auto;
}

.content-block--no-bottom {
  padding-bottom: 0 !important;
}

.content-block--dark {
  background-color: var(--color-matterhorn);
}

.content-block--light {
  background-color: #ffffff;
}

.content-block--beige {
  background-color: var(--color-linen);
}

/* Dark text colors */
.content-block--dark .content-block__title {
  color: var(--color-light);
}

.content-block--dark .content-block__body,
.content-block--dark .content-block__body p {
  color: var(--color-linen);
}

/* Light & Beige text colors */
.content-block--light .content-block__title,
.content-block--beige .content-block__title {
  color: var(--color-matterhorn);
}

.content-block--light .content-block__body,
.content-block--light .content-block__body p,
.content-block--beige .content-block__body,
.content-block--beige .content-block__body p {
  color: var(--color-matterhorn);
}

.content-block__super-text {
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-punch);
  display: block;
  margin-bottom: 16px;
}

.content-block__title {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 36px;
  line-height: 1.15;
  color: var(--color-light);
  margin: 0 0 24px;
}

@media (min-width: 768px) {
  .content-block__title {
    font-size: 46px;
  }
}
.content-block__body {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  color: var(--color-linen);
  margin: 0 0 32px;
}

.content-block__body p {
  font-family: inherit;
  font-weight: inherit;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
  margin: 0 0 16px;
}

.content-block__body p:last-child {
  margin-bottom: 0;
}

.content-block__buttons {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 8px;
}

/* FAQ Section */
.faq-section {
  background-color: #ffffff;
  padding: 20px 20px;
}

@media (min-width: 768px) {
  .faq-section {
    padding: 20px 40px;
  }
}
@media (min-width: 1024px) {
  .faq-section {
    padding: 20px 60px;
  }
}
.faq-section__container {
  max-width: 1248px;
  margin: 0 auto;
}

.faq-section__items {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-section__item {
  border-bottom: 1px solid var(--color-linen-a);
  margin: 0;
  padding: 0 0 25px;
}

.faq-section__question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 0 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}

.faq-section__question span:first-child {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  color: var(--color-matterhorn);
  text-transform: none;
}

@media (min-width: 768px) {
  .faq-section__question span:first-child {
    font-size: 24px;
    line-height: 30px;
  }
}
.faq-section__toggle {
  flex-shrink: 0;
  width: 60px;
  height: 36px;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--color-punch-a), var(--color-punch));
  color: #ffffff;
  font-family: var(--font-mono);
  font-size: 24px;
  font-weight: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

@media (min-width: 768px) {
  .faq-section__toggle {
    width: 133px;
    height: 44px;
    font-size: 40px;
  }
}
.faq-section__item.is-open .faq-section__toggle {
  background: var(--color-matterhorn);
}

.faq-section__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  margin: 0;
  padding: 0;
}

.faq-section__item.is-open .faq-section__answer {
  max-height: 500px;
  padding-bottom: 25px;
}

.faq-section__answer p {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 15px;
  line-height: 22px;
  color: var(--color-matterhorn);
  margin: 0;
  padding-top: 15px;
}

@media (min-width: 768px) {
  .faq-section__answer p {
    font-size: 20px;
    line-height: 28px;
    padding-top: 25px;
  }
}
/* Feature Tabs */
.feature-tabs__nav-wrapper {
  background-color: #ffffff;
  border-bottom: 1px solid var(--color-linen-a);
  position: sticky;
  top: 0;
  z-index: 100;
  margin-top: 0;
}

.feature-tabs__nav {
  margin: 0 auto;
  padding: 0 20px;
}

@media (min-width: 768px) {
  .feature-tabs__nav {
    padding: 0 40px;
  }
}
@media (min-width: 1024px) {
  .feature-tabs__nav {
    padding: 0 60px;
  }
}
.feature-tabs__nav-container {
  display: flex;
  gap: 12px;
  padding: 20px 0;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}

.feature-tabs__nav-item {
  white-space: nowrap;
  font-size: 14px;
  width: 100%;
}

@media (min-width: 768px) {
  .feature-tabs__nav-item {
    font-size: 16px;
    width: auto;
  }
}
.feature-tabs__panel {
  padding: 60px 20px;
}

@media (min-width: 768px) {
  .feature-tabs__panel {
    padding: 80px 40px;
  }
}
@media (min-width: 1024px) {
  .feature-tabs__panel {
    padding: 80px 60px;
  }
}
.feature-tabs__panel--light {
  background-color: #ffffff;
}

.feature-tabs__panel--dark {
  background-color: var(--color-matterhorn);
}

.feature-tabs__panel--beige {
  background-color: var(--color-linen);
}

.feature-tabs__panel-container {
  max-width: 1248px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 1024px) {
  .feature-tabs__panel-container {
    grid-template-columns: 1fr 1fr;
    gap: 80px;
  }
}
@media (min-width: 1024px) {
  .feature-tabs__panel--reverse .feature-tabs__content {
    order: 2;
  }
  .feature-tabs__panel--reverse .feature-tabs__insights {
    order: 1;
  }
}
.feature-tabs__title {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 32px;
  line-height: 1.15;
  color: var(--color-matterhorn);
  margin: 0 0 20px;
  text-transform: none;
}

@media (min-width: 768px) {
  .feature-tabs__title {
    font-size: 46px;
  }
}
.feature-tabs__panel--dark .feature-tabs__title {
  color: var(--color-light);
}

.feature-tabs__body {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  color: var(--color-matterhorn);
}

.feature-tabs__body p {
  font-family: inherit;
  font-weight: inherit;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
  margin: 0 0 16px;
}

.feature-tabs__body p:last-child {
  margin-bottom: 0;
}

.feature-tabs__panel--dark .feature-tabs__body,
.feature-tabs__panel--dark .feature-tabs__body p {
  color: var(--color-linen);
}

.feature-tabs__insights-content {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 15px;
  line-height: 24px;
  color: var(--color-matterhorn);
}

.feature-tabs__insights-content p {
  font-family: inherit;
  font-weight: inherit;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
  margin: 0 0 16px;
}

.feature-tabs__insights-content p:last-child {
  margin-bottom: 0;
}

.feature-tabs__insights-content strong,
.feature-tabs__insights-content b {
  font-weight: 500;
  color: inherit;
  vertical-align: baseline;
}

.feature-tabs__insights-content ul,
.feature-tabs__insights-content ol {
  padding-left: 20px;
  margin: 0 0 16px;
}

.feature-tabs__insights-content li {
  margin-bottom: 12px;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
}

.feature-tabs__panel--dark .feature-tabs__insights-content,
.feature-tabs__panel--dark .feature-tabs__insights-content p,
.feature-tabs__panel--dark .feature-tabs__insights-content li {
  color: var(--color-linen);
}

/* Add your custom styles below */
