
/* PlayfairDisplay Font Family */
@font-face {
  font-family: 'PlayfairDisplay';
  src: url('../fonts/PlayfairDisplay-Regular.woff2') format('woff2'),
       url('../fonts/PlayfairDisplay-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* Manrope Font Family */
@font-face {
  font-family: 'Manrope';
  src: url('../fonts/Manrope-Regular.woff2') format('woff2'),
       url('../fonts/Manrope-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Manrope';
  src: url('../fonts/Manrope-Medium.woff2') format('woff2'),
       url('../fonts/Manrope-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Manrope';
  src: url('../fonts/Manrope-SemiBold.woff2') format('woff2'),
       url('../fonts/Manrope-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Manrope';
  src: url('../fonts/Manrope-Bold.woff2') format('woff2'),
       url('../fonts/Manrope-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* Global HTML font-size setup */
html {
  font-size: 0.6944444444vw; /* 1rem = 10px */
}

@media screen and (max-width: 1089px) {
  html {
    font-size: 10px;
  }
}

/* Reset and Base Styles */
* {
  box-sizing: border-box;
}

.site {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

#content {
  flex: 1;
  padding-top: 0;
}

/* CSS Variables */
:root {
  /* Colors */
  --white: #ffffff;
  --gray: #f8f7f6;
  --black: #121212;
  --red: #de3b3b;
  --light-red: #f7e4e4;
  --red-50: #fbe9e9;
  --red-100: #f8d3d3;
  --red-200: #f0a8a8;
  --red-300: #e97c7c;
  --red-400: #e25050;
  --red-600: #af1d1d;
  --red-700: #831616;
  --red-800: #570f0f;
  --red-900: #2c0707;
  --red-950: #160404;
  --black-500: #121212;
  --black-50: #f2f2f2;
  --black-100: #e6e6e6;
  --black-200: #cccccc;
  --black-300: #b3b3b3;
  --black-400: #999999;
  --black-600: #666666;
  --black-700: #4d4d4d;
  --black-800: #333333;
  --black-900: #1a1a1a;
  --black-950: #0d0d0d;
  
  /* Typography */
  --font-primary: Manrope, sans-serif;
  --font-secondary: PlayfairDisplay, sans-serif;
}

body {
  font-family: var(--font-primary);
  font-size: 1.4rem;
  line-height: 120%;
  letter-spacing: 0.01em;
  font-weight: 400;
}

.page:not(article), .single, .archive {
  padding: 0 3.2rem!important;
}

@media screen and (max-width: 1089px) {
  .page:not(article), .single, .archive {
    padding: 0!important;
  }
}

.entry-title {
  margin: 2.4rem 0;
  font-family: var(--font-primary);
  font-size: 3.2rem;
  line-height: 100%;
  letter-spacing: -0.02em;
  font-weight: 600;
  text-transform: uppercase; 
  color: var(--black);
}

/* Header Block */
.header {
  background: var(--white);
  padding: 1.6rem 0;
  position: relative;
  overflow: hidden;
}

.header__container {
  display: flex;
  flex-direction: row;
  gap: 0.8rem;
  align-items: flex-start;
  justify-content: flex-start;
  max-width: 140rem;
  margin: 0 auto;
}

/* Header Logo Element */
.header__logo {
  flex-shrink: 0;
  width: 24rem;
  height: 6.4rem;
  position: relative;
}

.header__logo-wrapper {
  background: var(--black-50);
  border-radius: 4.8rem;
  width: 16rem;
  height: 6.4rem;
  position: absolute;
  left: 0;
  top: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.custom-logo {
  width: 16rem;
  height: 6.4rem;
  object-fit: contain;
}

/* Header Navigation Element */
.header__nav {
  display: flex;
  flex-direction: row;
  gap: 1.6rem;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  flex: 1;
  min-height: 3.2rem;
  position: relative;
}

.header__menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.8rem;
  color: var(--black);
  font-family: var(--font-primary);
  font-size: 1.7rem;
  font-weight: 500;
  text-transform: uppercase;
}

.header__menu {
  display: flex;
  flex-direction: row;
  gap: 1.6rem;
  align-items: center;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.header__menu-item {
  display: flex;
  align-items: center;
}

.header__menu-link {
  color: var(--black);
  text-align: right;
  font-family: var(--font-primary);
  font-size: 1.7rem;
  line-height: 100%;
  letter-spacing: -0.02em;
  font-weight: 500;
  text-transform: uppercase;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  transition: color 0.3s ease;
}

.header__menu-link:hover {
  color: var(--red);
}

.header__menu-actions {
  display: none;
}

/* Header Actions Element */
.header__actions {
  display: flex;
  flex-direction: row;
  gap: 0.8rem;
  align-items: center;
  justify-content: flex-end;
  flex-shrink: 0;
  width: 24rem;
  position: relative;
}

.header__button {
  background: var(--red);
  border: none;
  border-radius: 4.8rem;
  padding: 2rem 2.4rem;
  display: flex;
  flex-direction: row;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  transition: background-color 0.3s ease;
  cursor: pointer;
}

.page-template-page-packages .header__button {
  display: none;
}

.header__button:hover {
  background: var(--red-600);
}

.header__button-icon {
  width: 2.4rem; 
  height: 2.4rem;
  object-fit: contain;
  aspect-ratio: 1; 
}

.header__button-icon path {
  stroke: var(--white);
}

.header__button-text {
  color: var(--white);
  text-align: right;
  font-family: var(--font-primary);  
  font-size: 1.5rem;
  line-height: 100%;
  letter-spacing: -0.02em;
  font-weight: 500;
  text-transform: uppercase;
  min-height: 2.4rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.header__user {
  background: var(--light-red);
  border-radius: 3.2rem;
  flex-shrink: 0;
  width: 6.4rem;
  height: 6.4rem;
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
}

.header__user:hover {
  background: var(--red-100); 
  transform: translateY(-0.2rem);
}

.header__user-icon {
  width: 6.4rem;
  height: 6.4rem;
  object-fit: cover;
  aspect-ratio: 1;
  border-radius: 50%;
}

.header__currency {
  position: relative;
}

.header__currency-select {
  font-family: var(--font-primary);  
  background: var(--white);
  border: 1px solid var(--white);
  display: flex;
  font-size: 1.7rem;
  line-height: 100%;
  letter-spacing: -0.02em;
  font-weight: 500;
  text-transform: uppercase;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.header__currency:after {
  content: '';
  border-left: 2px solid var(--black);
  border-bottom: 2px solid var(--black);
  width: .6rem;
  height: .6rem;
  transform: rotate(-45deg);
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}

.header__currency-select:focus-visible {
  outline: -webkit-focus-ring-color auto 0;
}

.header__menu-wrapper {
  display: flex;
  flex-direction: row;
  gap: 1.6rem;
  align-items: center;
  justify-content: flex-end;
}

/* Tablet Responsive Design - 1089px */
@media screen and (max-width: 1089px) {
  body.overflow-hidden {
    overflow: hidden;
  }

  .site-main {
    padding-top: 6.8rem;
  }

  .header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: .8rem 1.6rem; 
  }
  
  .header__container {
    gap: 1.6rem;
    justify-content: space-between;
  }
  
  .header__logo {
    width: 18rem;
  }
  
  .header__logo-wrapper {
    position: relative;
    width: auto;
    height: 5.2rem;
  }
  
  .header__nav {
    order: 3; 
    min-height: auto;
    flex: 0 0 auto;
    justify-content: flex-end;
  }
  
  .header__menu {
    gap: 1.2rem;
  }
  
  .header__menu-link {
    font-size: 1.5rem;
  }
  
  .header__actions {
    display: none;
  }

  .header__menu-action {
    display: flex;
    width: 100%;
    height: 6.4rem;
    padding: 0 11.8rem 0 11.9rem;
    margin: 3.2rem 0;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
    border-radius: 4.8rem;
    background: var(--red);
    color: var(--white);
    border: none;
    font-size: 1.7rem;
    font-weight: 500;
    line-height: 100%; /* 1.7rem */
    letter-spacing: -0.034rem;
    text-transform: uppercase;
    text-decoration: none;
  }

  
  
  .header__button {
    padding: 1.6rem 2rem;
  }
  
  .header__button-text {
    font-size: 1.4rem;
  }
  
  .header__user {
    width: 5.6rem;
    height: 5.6rem;
  }
  
  .header__user:hover {
    background: var(--red);
    transform: translateY(-0.2rem);
  }
  
  .header__user-icon {
    width: 2.8rem;
    height: 2.8rem;
  }
  
  .header__logo {
    width: fit-content;
    height: 5.2rem;
    display: flex;
    justify-content: center;
  }

  .custom-logo {
    width: auto;
    height: 5.2rem;
    object-fit: cover;
  }
  
  .header__menu-toggle {
    padding: 0;
    display: flex;
    width: fit-content;
    text-align: right;
  }

  .header__menu-toggle svg {
    width: 5.2rem;
    height: 5.2rem;
  }
  .header__menu-wrapper {
    display: none;
    background: var(--white);
  }
  
  .header__menu-wrapper.is-open { 
    position: fixed;
    top: 6.7rem;
    left: 0;
    width: 100vw;
    z-index: 1000;
    min-height: calc(100svh - 6.7rem);
    display: flex;
    flex-direction: column;
    padding: 0 1.6rem 4.8rem;
    height: fit-content;
    flex-direction: column;
    padding: 0 1.6rem 4.8rem;
    overflow-y: auto;
  }

  .header__menu-wrapper.is-open::webkit-scrollbar {
    display: none;
  }
  
  .header__menu {
    padding: 4.6rem 0 1.6rem;
    flex-direction: column;
    gap: 3.2rem;
    margin: 0;
    border-radius: 0;
    box-shadow: none;
  }
  
  .header__menu-link {
    text-align: center; 
    font-size: 2.4rem;
    font-weight: 600;
    line-height: 100%; /* 2.4rem */
    letter-spacing: -0.048rem;
    text-transform: uppercase;
    padding: 0.8rem 0;
    color: var(--black);
  }
  
  .header__button {
    flex: 1;
    margin-right: 0.8rem;
    padding: 1.4rem 2rem;
    justify-content: center;
  }
  
  .header__button-text {
    font-size: 1.4rem;
    text-align: center;
  }
  
  .header__user {
    width: 4.8rem;
    height: 4.8rem;
  }
  
  .header__user:hover {
    background: var(--red);
    transform: translateY(-0.2rem);
  }
  
  .header__user-icon {
    width: 2.4rem;
    height: 2.4rem;
  }

  .header__menu-toggle[aria-expanded="true"] + .header__menu {
    display: flex;
  }

  .header__menu-actions {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .header__menu-actions a,
  .header__menu-actions .footer__contact-item {
    font-size: 2.4rem;
    font-style: normal;
    font-weight: 600;
    line-height: 100%; /* 2.4rem */
    letter-spacing: -0.048rem;
    text-transform: uppercase;
    text-align: center;
    justify-content: center;
  }
  
  /* Mobile menu animations */
  .header__menu {
    transition: all 0.3s ease;
  }
  
  /* Ensure menu items are properly styled on mobile */
  .header__menu-item {
    width: 100%;
  }
  
  .header__menu-link {
    width: 100%;
    justify-content: center;
    padding: 0;
    color: var(--black);
  }
  
  .header__menu-item:last-child .header__menu-link {
    border-bottom: none;
  }

  .header__currency-select {
    text-align: center;
    font-size: 2.4rem;
    font-weight: 600;
    line-height: 100%;
    letter-spacing: -0.048rem;
    text-transform: uppercase;
  }
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
  .header__menu {
    transition: none;
  }
  
  .header__button {
    transition: none;
  }
  
  .header__menu-link {
    transition: none;
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  .header__button {
    border: 0.2rem solid var(--white);
  }
  
  .header__menu-link {
    border-bottom: 0.1rem solid transparent;
  }
  
  .header__menu-link:focus {
    border-bottom-color: currentColor;
  }
}

/* Hero Section - BEM Methodology */

/* Hero Block */
.hero {
  padding: 1.6rem 0;
  display: flex;
  flex-direction: row;
  gap: 1.6rem;
  align-items: flex-start;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.hero__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.6rem;
  width: 100%;
  max-width: 140rem;
  margin: 0 auto;
}

/* Hero Content Element */
.hero__content {
  background: var(--red);
  border-radius: 1.6rem;
  padding: 3.2rem 6.4rem;
  display: flex;
  flex-direction: column;
  gap: 4rem;
  align-items: center;
  justify-content: center;
  flex: 1;
  height: 68rem;
  position: relative;
  overflow: hidden;
}

.hero__text {
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
  align-items: flex-start;
  justify-content: flex-start;
  flex-shrink: 0;
  position: relative;
}

.hero__title {
  color: var(--white);
  text-align: center;
  font-family: var(--font-secondary);
  font-size: 6.2rem;
  line-height: 100%;
  letter-spacing: -0.02em;
  font-weight: 400;
  text-transform: uppercase;
  position: relative;
  width: 58rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
}

.hero__description {
  color: var(--white);
  text-align: center;
  font-family: var(--font-primary);
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  font-weight: 500;
  position: relative;
  width: 58rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
}

.hero__button {
  background: var(--white);
  border: none;
  border-radius: 3.2rem;
  padding: 0.4rem 0.4rem 0.4rem 1.6rem;
  display: flex;
  flex-direction: row;
  gap: 1.2rem;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  text-decoration: none;
  transition: background-color 0.3s ease;
  cursor: pointer;
}


.hero__button:hover {
  background: var(--black-50);
}

.hero__button svg {
  height: 3.2rem;
  width: 3.2rem;
  transition: transform 0.3s ease;
}

.hero__button:hover svg {
  transform: rotate(45deg);
}

.hero__button-text {
  color: var(--black);
  text-align: center;
  font-family: var(--font-primary);
  font-size: 1.3rem;
  letter-spacing: 0.01em;
  font-weight: 700;
  text-transform: uppercase;
  position: relative;
  min-height: 3.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__button-icon {
  border-radius: 2.4rem;
  flex-shrink: 0;
  width: 3.2rem;
  height: 3.2rem;
  position: relative;
  color: var(--black);
  background: var(--black-100);
  padding: 0.8rem;
}

/* Hero Media Element */
.hero__media {
  background: var(--light-red);
  border-radius: 1.6rem;
  flex: 1;
  height: 68rem;
  position: relative;
  overflow: hidden;
}

.hero__image {
  width: 71.009rem;
  height: 106.5rem;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: calc(50% - 60.1rem);
  object-fit: cover;
  aspect-ratio: 710.09/1065;
}

.hero__badge {
  background: var(--white);
  border-radius: 1.2rem;
  padding: 0.8rem;
  display: flex;
  flex-direction: row;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 0.8rem;
  left: 0.8rem;
  bottom: 0.8rem;
  backdrop-filter: blur(1.6rem);
}

.hero__badge-icon {
  flex-shrink: 0;
  width: 1.8rem;
  height: 1.8rem;
  position: relative;
  color: var(--black);
  aspect-ratio: 1;
}

.hero__badge-text {
  color: var(--black);
  text-align: left;
  font-family: var(--font-primary);
  font-size: 1.2rem;
  letter-spacing: -0.02em;
  font-weight: 600;
  position: relative;
  min-height: 2rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

/* Hero Tablet Responsive Design - 1089px */
@media screen and (max-width: 1089px) {
  .hero {
    padding: 0.8rem 1.6rem 0;
  }
  
  .hero__container {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
  
  .hero__content {
    height: 30rem;
    padding: 1.6rem 2rem;
    width: 100%;
  }
  
  .hero__title {
    font-size: 2.8rem;
    width: 100%;
  }
  
  .hero__description {
    font-size: 1.3rem;
    width: 100%;
  }
  
  .hero__media {
    height: 30rem;
    width: 100%;
  }
  
  .hero__image {
    width: 100vw;
    height: 100vw;
    top: -70px;
    left: 0;
    transform: none;
    aspect-ratio: 1 / 1;
  }
  
  .hero__badge {
    padding: 0.6rem 6.4rem;
    gap: 0.8rem;
  }
  
  .hero__badge-icon {
    width: 1.6rem;
    height: 1.6rem;
  }
  
  .hero__badge-text {
    font-size: 1.1rem;
    min-height: 1.8rem;
  }
}

/* Footer Styles - BEM Methodology */

/* Footer Block */
.footer {
  background: var(--white);
  padding: 3.2rem 0;
  display: flex; 
  flex-direction: column;
  gap: 1.6rem;
  align-items: flex-start;
  justify-content: flex-start;
  position: relative;
  overflow: hidden;
}

.footer__container {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  width: 100%;
  max-width: 140rem;
  margin: 0 auto;
}

/* CTA Section */
.footer__cta-section {
  display: flex;
  flex-direction: row;
  gap: 1.6rem;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  position: relative;
}

/* Newsletter Element */
.footer__newsletter {
  border-radius: 1.6rem;
  border: 0.15rem solid var(--red);
  padding: 3.2rem 6.4rem;
  display: flex;
  flex-direction: column;
  gap: 4rem;
  align-items: center;
  justify-content: center;
  flex: 1;
  height: 68rem;
  position: relative;
  overflow: hidden;
}

.footer__newsletter-content {
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
  align-items: flex-start;
  justify-content: flex-start;
  flex-shrink: 0;
  position: relative;
}

.footer__newsletter-title {
  color: var(--red);
  text-align: center;
  font-family: var(--font-secondary);
  font-size: 6.2rem;
  line-height: 100%;
  letter-spacing: -0.02em;
  font-weight: 400;
  text-transform: uppercase;
  position: relative;
  width: 58rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
}

.footer__newsletter-description {
  color: var(--red);
  text-align: center;
  font-family: var(--font-primary);
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  font-weight: 500;
  position: relative;
  width: 58rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
}

.footer__newsletter-form {
  border-radius: 4.8rem;
  border: 0.15rem solid var(--red);
  padding: 0.6rem;
  display: flex;
  flex-direction: row;
  gap: 0;
  align-items: flex-start;
  justify-content: center;
  flex-shrink: 0;
  width: 40rem;
  min-width: 40rem;
  position: relative;
}

.footer__email-form {
  margin: 0;
  display: flex;
  flex-direction: row;
  gap: 0;
  align-items: center;
  width: 100%;
}

.footer__email-input {
  padding: 1.8rem 2.4rem;
  display: flex;
  flex-direction: row;
  gap: 1rem;
  align-items: center;
  justify-content: flex-start;
  flex: 1;
  position: relative;
}

.footer__email-field {
  color: var(--red-200);
  text-align: left;
  font-family: var(--font-primary);
  font-size: 1.5rem;
  letter-spacing: 0.01em;
  font-weight: 700;
  text-transform: uppercase;
  position: relative;
  flex: 1;
  border: none;
  background: transparent;
  outline: none;
}

.footer__email-field::placeholder {
  color: var(--red-200);
}

.footer__email-submit {
  width: 5.6rem;
  height: 5.6rem;
  position: relative;
  border: none;
  aspect-ratio: 1;
  background-color: transparent;
  cursor: pointer;
  margin-right: .5rem;
}

.footer__email-submit svg {
  width: 5.6rem;
  height: 5.6rem;
  transform: rotate(0deg);
  transition: transform 0.3s ease;
}

.footer__email-submit:hover svg {
  transform: rotate(45deg);
}

/* CTA Element */
.footer__cta {
  background: var(--red);
  border-radius: 1.6rem;
  padding: 3.2rem 6.4rem;
  display: flex;
  flex-direction: column;
  gap: 4rem;
  align-items: center;
  justify-content: center;
  flex: 1;
  height: 68rem;
  position: relative;
  overflow: hidden;
}

.footer__cta-content {
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
  align-items: flex-start;
  justify-content: flex-start;
  flex-shrink: 0;
  position: relative;
}

.footer__cta-title {
  color: var(--white);
  text-align: center;
  font-family: var(--font-secondary);
  font-size: 6.2rem;
  line-height: 100%;
  letter-spacing: -0.02em;
  font-weight: 400;
  text-transform: uppercase; 
  position: relative;
  width: 58rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
} 

.footer__cta-description { 
  color: var(--white);
  text-align: center; 
  font-family: var(--font-primary);
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  font-weight: 500;
  position: relative;
  width: 58rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
}

.footer__cta-button {
  background: var(--white);
  border: none;
  border-radius: 3.2rem;
  padding: 0.4rem 0.4rem 0.4rem 1.6rem;
  display: flex;
  flex-direction: row;
  gap: 1.2rem;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  text-decoration: none;
  transition: background-color 0.3s ease;
  cursor: pointer;
} 

.page-template-page-packages .footer__cta-button {
  display: none;
}

.footer__cta-button:hover {
  background: var(--black-50);
}

.footer__cta-button svg {
  width: 3.2rem;
  height: 3.2rem;
  transform: rotate(0deg);
  transition: transform 0.3s ease;
}

.footer__cta-button:hover svg {
  transform: rotate(45deg);
}

.footer__cta-text {
  color: var(--black);
  text-align: center;
  font-family: var(--font-primary);
  font-size: 1.3rem;
  letter-spacing: 0.01em;
  font-weight: 700;
  text-transform: uppercase;
  position: relative;
  min-height: 3.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer__cta-icon {
  border-radius: 2.4rem;
  flex-shrink: 0;
  width: 3.2rem;
  height: 3.2rem;
  position: relative;
  color: var(--black);
  background: var(--black-100);
  padding: 0.8rem;
}

/* Main Footer */
.footer__main {
  background: var(--red-50);
  border-radius: 1.6rem;
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 5.6rem;
  align-items: flex-start;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.footer__content {
  display: flex;
  flex-direction: row;
  gap: 1.6rem;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  position: relative;
}

/* Logo and Contact Info */
.footer__info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  align-self: stretch;
  flex: 1;
  position: relative;
}

.footer__logo-image {
  width: auto;
  height: 5.2rem;
  object-fit: contain;
}

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  align-items: flex-start;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  height: 7.2rem;
  position: relative;
  margin-top: 1.6rem;
}

.footer__contact-item {
  display: flex;
  align-items: center;
  width: 100%;
}

.footer__contact-link {
  color: var(--red);
  text-align: left;
  font-family: var(--font-primary);
  font-size: 2.4rem;
  line-height: 100%;
  letter-spacing: -0.02em;
  font-weight: 600;
  text-transform: uppercase;
  position: relative;
  align-self: stretch;
  min-height: 3.2rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer__contact-link:hover {
  color: var(--red-600);
}

/* Navigation */
.footer__navigation {
  display: flex;
  flex-direction: row;
  gap: 0;
  align-items: flex-start;
  justify-content: flex-start;
  flex: 1;
  position: relative;
}

.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  align-items: flex-start;
  justify-content: flex-start;
  flex: 1;
  position: relative;
}

.footer__nav--legal {
  height: 19.2rem;
}

.footer__menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  width: 100%;
}

.footer__menu-item {
  display: flex;
  align-items: center;
  width: 100%;
}

.footer__menu-link {
  color: var(--red);
  text-align: right;
  font-family: var(--font-primary);
  font-size: 1.7rem;
  line-height: 100%;
  letter-spacing: -0.02em;
  font-weight: 500;
  text-transform: uppercase;
  position: relative;
  align-self: stretch;
  min-height: 3.2rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  text-decoration: none;
  transition: color 0.3s ease;
  width: 100%;
}

.footer__menu-link:hover {
  color: var(--red-600);
}

/* Bottom Section */
.footer__bottom {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
}

.footer__copyright {
  display: flex;
  align-items: center;
}

.footer__copyright-text {
  color: var(--red-300);
  text-align: left;
  font-family: var(--font-primary);
  font-size: 1.3rem;
  line-height: 110%;
  letter-spacing: -0.02em;
  font-weight: 500;
  position: relative;
  min-height: 3.2rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 0;
}

.footer__payment {
  display: flex;
  flex-direction: row;
  gap: 0.4rem;
  align-items: center;
  justify-content: flex-start;
  flex-shrink: 0;
  position: relative;
}

.footer__payment-link {
  border-radius: 0.8rem;
  flex-shrink: 0;
  width: 6.4rem;
  height: 4rem;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer__payment-link:hover {
  transform: translateY(-0.2rem);
  box-shadow: 0 0.4rem 0.8rem rgba(0, 0, 0, 0.1);
}

.footer__payment-icon {
  width: auto;
  height: 3.2rem;
  object-fit: contain;
  display: block;
}

/* Legacy support for old structure */
.footer__payment-item {
  border-radius: 0.8rem;
  flex-shrink: 0;
  width: 6.4rem;
  height: 4rem;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
}

.footer__payment-item .footer__payment-icon {
  width: auto;
  height: 2.4rem;
  max-width: 5.6rem;
  object-fit: contain;
}
  
.footer__contact.m-none {
  display: block;
}

.footer__contact.d-none {
  display: none;
}

/* Footer Tablet Responsive Design - 1089px */
@media screen and (max-width: 1089px) {
  .footer {
    padding: 6.4rem 1.6rem 1.6rem;
  }
  
  .footer__cta-section {
    flex-direction: column;
    gap: 1.2rem;
  }
  
  .footer__newsletter,
  .footer__cta {
    min-height: 36rem;
    aspect-ratio: 1/1;
    padding: 3.2rem 2.4rem;
    gap: 2.4rem;
    width: 100%;
  }
  
  .footer__newsletter-title,
  .footer__cta-title {
    font-size: 3.2rem;
    line-height: 100%; /* 3.2rem */
    letter-spacing: -0.064rem;
    width: 100%;
  }

  .footer__newsletter-content {
    gap: 1.6rem;
  }
  
  .footer__newsletter-description,
  .footer__cta-description {
    font-size: 1.4rem;
    font-weight: 500;
    letter-spacing: -0.028rem;
    width: 100%;
  }
  
  .footer__newsletter-form {
    width: 100%;
    min-width: 100%;
    gap: 0.8rem;
    padding: 0.6rem;
  }
  
  .footer__email-form {
    gap: 0.8rem;
  }
  
  .footer__email-input {
    padding: 1.2rem 1.6rem;
    width: 100%;
  }
  
  .footer__email-submit {
    margin: 0;
    padding: 0;
  }
  
  .footer__content {
    margin-bottom: 3.2rem;
    flex-direction: column;
    gap: 1.6rem;
  }

  .footer__main { 
    padding: 1rem; 
    gap: 1.6rem;
  }
  
  .footer__info {
    margin-bottom: 3.2rem;
    text-align: left;
    align-items: flex-start;
  }
  
  .footer__logo {
    width: auto;
    height: 5.2rem;
  }
  
  .footer__contact.m-none {
    display: none;
  }
  
  .footer__contact.d-none {
    display: block;
    margin: 0;
  }
  
  .footer__contact-link {
    font-size: 2rem;
    font-weight: 600;
    line-height: 100%; /* 2rem */
    letter-spacing: -0.04rem;
  }
  
  .footer__navigation {
    gap: 1.6rem;
    width: 100%;
  }
  
  .footer__nav {
    
  }
  
  .footer__menu-link {
    font-size: 1.7rem;
    font-weight: 500;
    line-height: 100%; /* 1.7rem */
    letter-spacing: -0.034rem;
    justify-content: flex-start;
    text-align: left;
  }
  
  .footer__bottom {
    flex-direction: column-reverse;
    gap: 1.6rem;
    align-items: flex-start;
  }

  .footer__copyright-text {
    font-size: 1.3rem;
    font-weight: 500;
    line-height: 110%; /* 1.43rem */
    letter-spacing: -0.026rem;
    text-align: left;
    justify-content: flex-start;
  }

  .footer__payment {
    gap: 0;
  }
  
  .footer__payment-link,
  .footer__payment-item {
    width: 5.6rem;
    height: 3.6rem;
  }
  
  .footer__payment-icon {
    height: 4rem;
    max-width: 6rem;
    object-fit: contain;
  }
}

/* About Section - BEM Methodology */

/* About Block */
.about {
  background: var(--white);
  padding: 6.4rem 3.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

.about__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 140rem;
  margin: 0 auto;
}

.about__content {
  display: flex;
  flex-direction: column;
  gap: 6.4rem;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.about__text {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  align-items: center;
  justify-content: center;
  text-align: center;
  max-width: 80rem;
}

.about__title {
  color: var(--black);
  text-align: center;
  font-family: var(--font-secondary);
  font-size: 5.2rem;
  line-height: 110%;
  letter-spacing: -0.02em;
  font-weight: 400;
  text-transform: uppercase;
  margin: 0;
}

.about__description {
  color: var(--black-600);
  text-align: center;
  font-family: var(--font-primary);
  font-size: 1.8rem;
  line-height: 140%;
  letter-spacing: -0.01em;
  font-weight: 500;
  margin: 0;
}

.about__features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
  width: 100%;
  max-width: 120rem;
}

.about__feature {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  padding: 3.2rem 2.4rem;
  background: var(--red-50);
  border-radius: 1.6rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about__feature:hover {
  transform: translateY(-0.8rem);
  box-shadow: 0 1.6rem 3.2rem rgba(222, 59, 59, 0.1);
}

.about__feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 8rem;
  height: 8rem;
  background: var(--red);
  border-radius: 50%;
  color: var(--white);
  flex-shrink: 0;
}

.about__feature-title {
  color: var(--black);
  text-align: center;
  font-family: var(--font-primary);
  font-size: 2.4rem;
  line-height: 120%;
  letter-spacing: -0.01em;
  font-weight: 600;
  text-transform: uppercase;
  margin: 0;
}

.about__feature-description {
  color: var(--black-600);
  text-align: center;
  font-family: var(--font-primary);
  font-size: 1.6rem;
  line-height: 140%;
  letter-spacing: -0.01em;
  font-weight: 500;
  margin: 0;
}

/* About Tablet Responsive Design - 1089px */
@media screen and (max-width: 1089px) {
  .about {
    padding: 4.8rem 2.4rem;
  }
  
  .about__content {
    gap: 4.8rem;
  }
  
  .about__title {
    font-size: 4.2rem;
  }
  
  .about__description {
    font-size: 1.6rem;
  }
  
  .about__features {
    grid-template-columns: repeat(2, 1fr);
    gap: 3.2rem;
    max-width: 80rem;
  }
  
  .about__feature {
    padding: 2.4rem 1.8rem;
  }
  
  .about__feature-icon {
    width: 6.4rem;
    height: 6.4rem;
  }
  
  .about__feature-title {
    font-size: 2rem;
  }
  
  .about__feature-description {
    font-size: 1.4rem;
  }
}

/* About Mobile Responsive Design - 767px */
@media screen and (max-width: 767px) {
  .about {
    padding: 3.2rem 1.6rem;
  }
  
  .about__content {
    gap: 3.2rem;
  }
  
  .about__title {
    font-size: 2.8rem;
  }
  
  .about__description {
    font-size: 1.4rem;
  }
  
  .about__features {
    grid-template-columns: 1fr;
    gap: 2.4rem;
    max-width: 48rem;
  }
  
  .about__feature {
    padding: 2.4rem 2rem;
  }
  
  .about__feature-icon {
    width: 6rem;
    height: 6rem;
  }
  
  .about__feature-title {
    font-size: 1.8rem;
  }
  
  .about__feature-description {
    font-size: 1.3rem;
  }
}

/* How It Works Section - BEM Methodology */

/* How Works Block */
.how-works {
  background: var(--white);
  padding: 6.4rem 0;
  display: flex;
  flex-direction: column;
  gap: 4.8rem;
  align-items: center;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.how-works__container {
  display: flex;
  flex-direction: column;
  gap: 4.8rem;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  max-width: 140rem;
  margin: 0 auto;
}

.how-works__header {
  display: flex;
  flex-direction: row;
  gap: 1.2rem;
  align-items: flex-end;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
}

.how-works__title {
  color: var(--black);
  text-align: left;
  font-family: var(--font-primary);
  font-size: 5.6rem;
  line-height: 100%;
  letter-spacing: 0.01em;
  font-weight: 600;
  text-transform: uppercase;
  position: relative;
  flex: 1;
  min-height: 7.2rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 0;
}

.how-works__demo-button {
  background: var(--white);
  border-radius: 3.2rem;
  border: 0.15rem solid var(--black);
  padding: 0.4rem 0.4rem 0.4rem 1.6rem;
  display: flex;
  flex-direction: row;
  gap: 1.2rem;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  text-decoration: none;
  transition: all 0.3s ease;
}

.how-works__demo-button:hover {
  background: var(--black);
  color: var(--white);
}

.how-works__demo-button svg {
  width: 3.2rem;
  height: 3.2rem;
  transition: fill 0.3s ease;
}

.how-works__demo-button:hover svg path {
  fill: var(--black);
}

.how-works__demo-button:hover svg rect {
  fill: var(--white);
}

.how-works__demo-text {
  color: var(--black);
  text-align: center;
  font-family: var(--font-primary);
  font-size: 1.3rem;
  letter-spacing: 0.01em;
  font-weight: 700;
  text-transform: uppercase;
  position: relative;
  min-height: 3.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease;
}

.how-works__demo-button:hover .how-works__demo-text {
  color: var(--white);
}

.how-works__demo-icon {
  border-radius: 2.4rem;
  flex-shrink: 0;
  width: 3.2rem;
  height: 3.2rem;
  position: relative;
  color: var(--black);
  background: var(--black-100);
  padding: 0.8rem;
  transition: all 0.3s ease;
}

.how-works__demo-button:hover .how-works__demo-icon {
  background: var(--white);
  color: var(--black);
}

.how-works__steps {
  display: flex;
  flex-direction: row;
  gap: 1.4rem;
  align-items: flex-start;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  height: 35rem;
  position: relative;
}

.how-works__step {
  background: var(--light-red);
  border-radius: 1.6rem;
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  align-self: stretch;
  flex: 1;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.how-works__step:hover {
  transform: translateY(-0.8rem);
  box-shadow: 0 1.6rem 3.2rem rgba(222, 59, 59, 0.15);
}

.how-works__step-icon {
  background: var(--white);
  border-radius: 3.2rem;
  flex-shrink: 0;
  width: 6.4rem;
  height: 6.4rem;
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
}

.how-works__step-content {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  align-items: flex-start;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
}

.how-works__step-title {
  color: var(--red);
  text-align: left;
  font-family: var(--font-primary);
  font-size: 2.4rem;
  line-height: 100%;
  letter-spacing: -0.02em;
  font-weight: 500;
  text-transform: uppercase;
  position: relative;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 0;
}

.how-works__step-description {
  color: var(--red);
  text-align: left;
  font-family: var(--font-primary);
  font-size: 1.3rem;
  line-height: 120%;
  letter-spacing: -0.02em;
  font-weight: 400;
  position: relative;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 0;
}

.how-works__demo-button.d-none {
  display: none;
}

.how-works__demo-button.m-none {
  display: flex;
}

/* How Works Tablet Responsive Design - 1089px */
@media screen and (max-width: 1089px) {
  .how-works {
    padding: 6.4rem 1.6rem 0;
  }
  
  .how-works__container {
    gap: 2.4rem;
  }
  
  .how-works__header {
    flex-direction: column;
    gap: 2.4rem;
    align-items: flex-start;
  }
  
  .how-works__title {
    font-size: 3.2rem;
    font-weight: 600;
    line-height: 100%; /* 3.2rem */
    letter-spacing: 0.032rem;
    min-height: auto;
  }
  
  .how-works__steps {
    flex-direction: column;
    gap: 1rem;
  }
  
  .how-works__step {
    flex-direction: column;
    gap: 3.2rem;
    padding: 1.6rem;
    min-height: fit-content; 
  }
  
  .how-works__step-icon {
    width: 5.2rem;
    height: 5.2rem;
  }
  
  .how-works__step-content {
    gap: .8rem;
  }
  
  .how-works__step-title {
    font-size: 2.2rem;
    font-weight: 500;
    line-height: 100%; /* 2.2rem */
    letter-spacing: -0.044rem;
  }

  .how-works__step-title br {
    display: none;
  }
  
  .how-works__step-description {
    font-size: 1.3rem;
    line-height: 120%; /* 1.56rem */
    letter-spacing: -0.026rem;
  }

  .how-works__demo-button.d-none {
    display: flex;
    width: 100%;
    justify-content: space-between;
  }
  
  .how-works__demo-button.m-none {
    display: none;
  }

  .how-works__steps {
    height: fit-content;
  }
}

/* Gallery Section - BEM Methodology */

/* Gallery Block */
.gallery {
  background: var(--white);
  padding: 6.4rem 0;
  display: flex;
  flex-direction: column;
  gap: 4.8rem;
  align-items: center;
  justify-content: flex-start;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.gallery__container {
  display: flex;
  flex-direction: column;
  gap: 4.8rem;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  max-width: 140rem;
  margin: 0 auto;
}

.gallery__header {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  align-items: center;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
}

.gallery__title {
  color: var(--black);
  text-align: left;
  font-family: var(--font-primary);
  font-size: 5.6rem;
  line-height: 100%;
  letter-spacing: 0.01em;
  font-weight: 600;
  text-transform: uppercase;
  position: relative;
  align-self: stretch;
  min-height: 7.2rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 0;
}

.gallery__info {
  display: flex;
  flex-direction: row;
  gap: 1.2rem;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
  width: 100%;
  height: 4rem;
  position: relative;
}

.gallery__description {
  color: var(--black);
  text-align: left;
  font-family: var(--font-primary);
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  font-weight: 500;
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 0;
}

.gallery__navigation {
  display: flex;
  flex-direction: row;
  gap: 0.4rem;
  align-items: center;
  justify-content: flex-start;
  flex-shrink: 0;
  position: relative;
}

.gallery__nav-button {
  background: var(--white);
  border-radius: 3.2rem;
  border: 0.15rem solid var(--black);
  padding: 0.4rem;
  display: flex;
  flex-direction: row;
  gap: 1.2rem;
  opacity: 1;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
}

.gallery__nav-button:hover {
  opacity: 0.5;
}

.gallery__nav-button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.gallery__nav-button svg {
  width: 5.6rem;
  height: 3.2rem;
  color: var(--black);
  transition: color 0.3s ease;
}

.gallery__layout {
  display: flex;
  gap: 1.6rem;
  align-items: flex-start;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
}

.gallery__column {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  align-items: flex-start;
  justify-content: flex-start;
  position: relative;
  flex-shrink: 0;
}

.gallery__column--main {
  width: 67rem;
}

.gallery__column--side {
  width: 33.2rem;
}

.gallery__slide-content {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  align-items: flex-start;
  justify-content: flex-start;
  position: relative;
  width: 100%;
  opacity: 1;
  transition: opacity 0.4s ease;
}

.gallery__slide-content--fade-out {
  opacity: 0;
}

.gallery__slide-content--fade-in {
  opacity: 1;
}

/* Gallery slide images */
.gallery__slide-image {
  background: var(--gray);
  border-radius: 1.6rem;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  width: 100%;
  transition: all 0.4s ease;
}

/* Main column image (large square) */
.gallery__column--main .gallery__slide-image {
  height: 67rem; 
  aspect-ratio: 1;
}

/* Side column images (smaller rectangles) */
.gallery__column--side .gallery__slide-image {
  height: 42rem;
  aspect-ratio: 332/420;
}

.gallery__slide-caption {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
}

.gallery__slide-text {
  color: var(--black);
  text-align: left;
  font-family: var(--font-primary);
  font-size: 1.3rem;
  letter-spacing: -0.02em;
  font-weight: 500;
  position: relative;
  flex: 1;
  height: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 0;
}

/* Main column caption styling (left-aligned) */
.gallery__column--main .gallery__slide-caption {
  padding: 0 7.2rem 0 0;
}

.gallery__column--main .gallery__slide-text {
  text-align: left;
  justify-content: flex-start;
}

/* Side columns caption styling (right-aligned) */
.gallery__column--side .gallery__slide-caption {
  padding: 0 0 0 7.2rem;
}

.gallery__column--side .gallery__slide-text {
  text-align: right;
  justify-content: flex-end;
}

/* Gallery Tablet Responsive Design - 1089px */
@media screen and (max-width: 1089px) {
  .gallery {
    padding: 6.4rem 1.6rem 0;
  }
  
  .gallery__container {
    gap: 2.4rem;
  }
  
  .gallery__title {
    font-size: 3.2rem;
    font-weight: 600;
    line-height: 100%; /* 3.2rem */
    letter-spacing: 0.032rem;
    text-transform: uppercase;
    min-height: auto;
  }
  
  .gallery__info {
    gap: 1.6rem;
    align-items: flex-start;
    flex-direction: column;
    height: fit-content;
  }
  
  .gallery__description {
    font-size: 1.4rem;
    max-width: 25rem;
  }

  .gallery__description br {
    display: none;
  }
  
  .gallery__nav-button svg {
    width: 4rem;
    height: 2.4rem;
  }
  
  .gallery__layout {
    flex-direction: column;
    align-items: center;
  }
  
  .gallery__column--main {
    width: 100%;
  }
  
  .gallery__column--side {
    width: 100%;
    display: none; /* Hide side columns on mobile */
  }
  
  .gallery__column--main .gallery__slide-image {
    height: 32rem;
  }
  
  .gallery__slide-text {
    font-size: 1.2rem;
    letter-spacing: -0.024rem;
  }

  .gallery__slide-text {
    height: auto;
  }
}

/* Target Audience Section - BEM Methodology */

/* Target Audience Block */
.target-audience {
  background: var(--white);
  padding: 6.4rem 0 8rem 0;
  display: flex;
  flex-direction: column;
  gap: 4.8rem;
  align-items: center;
  justify-content: flex-start;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.target-audience__container {
  display: flex;
  flex-direction: column;
  gap: 4.8rem;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  max-width: 140rem;
  margin: 0 auto;
}

.target-audience__header {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  align-items: center;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
}

.target-audience__title {
  color: var(--black);
  text-align: left;
  font-family: var(--font-primary);
  font-size: 5.6rem;
  line-height: 100%;
  letter-spacing: 0.01em;
  font-weight: 600;
  text-transform: uppercase;
  position: relative;
  align-self: stretch;
  min-height: 7.2rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 0;
}

.target-audience__description {
  color: var(--black);
  text-align: left;
  font-family: var(--font-primary);
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  font-weight: 500;
  position: relative;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 0;
}

.target-audience__cards {
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: flex-start;
  justify-content: flex-start;
  flex-shrink: 0;
  position: relative;
  width: 100%;
}

.target-audience__card {
  background: var(--white);
  border-style: solid;
  border-color: var(--black);
  border-width: 0.15rem 0 0 0;
  padding: 1.2rem 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 100%;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
}

.target-audience__card:last-child {
  border-bottom-width: 0.15rem;
}

.target-audience__card:hover {
  border-color: var(--red);
  background: var(--red);
  border-radius: 1.6rem;
  padding: 1.2rem;
}

.target-audience__card:hover + .target-audience__card {
  border-color: var(--white);
}

.target-audience__card-header {
  display: flex;
  flex-direction: row;
  gap: 1.6rem;
  align-items: center;
  justify-content: flex-start;
  flex: 1;
  position: relative;
}

.target-audience__card-title {
  color: var(--black);
  text-align: left;
  font-family: var(--font-primary);
  font-size: 3rem;
  line-height: 100%;
  letter-spacing: 0.01em;
  font-weight: 600;
  text-transform: uppercase;
  position: relative;
  flex: 1;
  min-height: 5.2rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 0;
  transition: color 0.3s ease;
}

.target-audience__card:hover .target-audience__card-title {
  color: var(--white);
}

.target-audience__card-icon {
  flex-shrink: 0;
  margin-left: -3.2rem;
  margin-right: 1.6rem;
  width: 3.2rem;
  height: 3.2rem;
  position: relative;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s ease;
  color: var(--white);
}

.target-audience__card:hover .target-audience__card-icon {
  opacity: 1;
  margin-left: 0;
  visibility: visible;
}

.target-audience__card-icon svg {
    width: 3.2rem;
    height: 3.2rem;
  }

.target-audience__card-content {
  padding: 0;
  display: flex;
  flex-direction: row;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  flex: 1;
  position: relative;
}

.target-audience__card:hover .target-audience__card-content {
  padding: 0;
}

.target-audience__card-text {
  color: var(--black);
  text-align: left;
  font-family: var(--font-primary);
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  font-weight: 500;
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 0;
  transition: color 0.3s ease;
}

.target-audience__card:hover .target-audience__card-text {
  color: var(--white);
}

/* Target Audience Tablet Responsive Design - 1089px */
@media screen and (max-width: 1089px) {
  .target-audience {
    padding: 6.4rem 1.6rem 0 1.6rem;
  }
  
  .target-audience__container {
    gap: 3.2rem;
  }
  
  .target-audience__title {
    font-size: 3.2rem;
    font-weight: 600;
    line-height: 100%; /* 3.2rem */
    letter-spacing: 0.032rem;
    text-transform: uppercase;
    min-height: auto;
  }
  
  .target-audience__description {
    font-size: 1.4rem;
    letter-spacing: -0.028rem;
    max-width: 25rem;
  }

  .target-audience__description br {
    display: none;
  }
  
  .target-audience__card {
    padding: 1.6rem 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.2rem;
  }
  
  .target-audience__card:hover {
    padding: 1.2rem;
  }
  
  .target-audience__card-title {
    font-size: 2rem;
    min-height: auto;
    text-align: left;
    letter-spacing: 0.02rem;
  }
  
  .target-audience__card-text {
    font-size: 1.4rem;
  }

  .target-audience__card-icon {
    display: none;
  }
}

/* Showcase Section - BEM Methodology */

/* Showcase Block */
.showcase {
  background: var(--white);
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
}

.showcase__container {
  width: 100%;
  max-width: 140rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.showcase__image-wrapper {
  border-radius: 3.2rem;
  flex-shrink: 0;
  height: 160rem;
  width: 100%;
  position: relative;
  overflow: hidden;
}

.showcase__image-wrapper img {
  width: inherit;
  height: 100%;
}

/* Showcase Tablet Responsive Design - 1089px */
@media screen and (max-width: 1089px) {
  .showcase {
    padding: 6.2rem 0 0;
  }
  
  .showcase__image-wrapper {
    height: 50rem;
    padding: 0;
    border-radius: 2.4rem;
    overflow: hidden;
  }
  
  .showcase__image-wrapper::before {
    width: 100%;
    height: 50rem;
    bottom: 0;
  }
}

/* Comparison Section - BEM Methodology */

/* Comparison Block */
.comparison {
  background: var(--white);
  padding: 8rem 0;
  display: flex;
  flex-direction: column;
  gap: 4.8rem;
  align-items: center;
  justify-content: flex-start;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.comparison__container {
  display: flex;
  flex-direction: column;
  gap: 4.8rem;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  max-width: 140rem;
  margin: 0 auto;
}

.comparison__header {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  align-items: center;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
}

.comparison__title {
  color: var(--black);
  text-align: left;
  font-family: var(--font-primary);
  font-size: 5.6rem;
  line-height: 100%;
  letter-spacing: 0.01em;
  font-weight: 600;
  text-transform: uppercase;
  position: relative;
  align-self: stretch;
  min-height: 7.2rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 0;
}

.comparison__description {
  color: var(--black);
  text-align: left;
  font-family: var(--font-primary);
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  font-weight: 500;
  position: relative;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 0;
}

.comparison__table {
  border-radius: 1.6rem;
  border: 0.15rem solid var(--black);
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: flex-start;
  justify-content: flex-start;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  width: 100%;
}

.comparison__table-header {
  background: var(--black);
  border-radius: 1.2rem 1.2rem 0 0;
  padding: 0.8rem 2.4rem;
  display: flex;
  flex-direction: row;
  gap: 3.2rem;
  align-items: flex-start;
  justify-content: flex-start;
  flex-shrink: 0;
  width: 100%;
  position: relative;
}

.comparison__table-row {
  background: var(--white);
  border-bottom: 0.15rem solid var(--black);
  padding: 1.6rem 2.4rem;
  display: flex;
  flex-direction: row;
  gap: 3.2rem;
  align-items: flex-start;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
}

.comparison__table-row:last-child {
  border-bottom: none;
}

.comparison__table-cell {
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.comparison__table-cell--empty {
  min-height: 2.4rem;
}

.comparison__table-cell--header {
  color: var(--white);
  text-align: left;
  font-family: var(--font-primary);
  font-size: 1.3rem;
  line-height: 100%;
  letter-spacing: 0.01em;
  font-weight: 600;
  text-transform: uppercase;
  min-height: 2.4rem;
}

.comparison__table-cell--label {
  color: var(--black-400);
  text-align: left;
  font-family: var(--font-primary);
  font-size: 1.9rem;
  line-height: 100%;
  letter-spacing: -0.02em;
  font-weight: 600;
  min-height: 3.2rem;
}

.comparison__table-cell--ai,
.comparison__table-cell--traditional {
  color: var(--black);
  text-align: left;
  font-family: var(--font-primary);
  font-size: 1.9rem;
  line-height: 100%;
  letter-spacing: 0.01em;
  font-weight: 600;
  text-transform: uppercase;
  min-height: 3.2rem;
}

/* Add vertical divider between columns */
.comparison__table-cell--label::after {
  content: '';
  position: absolute;
  right: -1.6rem;
  top: 50%;
  transform: translateY(-50%);
  width: 0.15rem;
  height: 6.4rem;
  background: var(--black);
}

/* Comparison Tablet Responsive Design - 1089px */
@media screen and (max-width: 1089px) {
  .comparison {
    padding: 6.4rem 1.6rem;
  }
  
  .comparison__container {
    gap: 3.2rem;
  }
  
  .comparison__title {
    font-size: 3.2rem;
    font-weight: 600;
    line-height: 100%; /* 3.2rem */
    letter-spacing: 0.032rem;
    text-transform: uppercase;
    min-height: auto;
  }

  .comparison__title br {
    display: none;
  }
  
  .comparison__description {
    font-size: 1.4rem;
    letter-spacing: -0.028rem;
  }
  
  .comparison__table-header,
  .comparison__table-row {
    gap: 1.2rem;
    padding: 1.2rem 1.6rem;
  }
  
  .comparison__table-cell {
    width: 100%;
  }
  
  .comparison__table-cell--label::after,
  .comparison__table-cell--empty {
    display: none;
  }
  
  /* Mobile card-style layout */
  .comparison__table-row {
    border-radius: 0;
    margin-bottom: 0.8rem;
    padding: 1.2rem;
  }
  
  .comparison__table-row:last-child {
    margin-bottom: 0;
  }
  
  .comparison__table-cell--label {
    display: none;
  }
  
  .comparison__table-cell--ai,
  .comparison__table-cell--traditional {
    font-size: 1.1rem;
    margin-bottom: 0.4rem;
  }

  .comparison__table-cell--header {
    font-size: 1.1rem;
  }
}

/* Pricing Section - BEM Methodology */

/* Pricing Block */
.pricing {
  background: var(--red);
  border-radius: 3.2rem;
  padding: 6.4rem 3.2rem;
  display: flex;
  flex-direction: column;
  gap: 4.8rem;
  align-items: center;
  justify-content: flex-start;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

/* Pricing White Background Modifier */
.pricing--white {
  background: var(--white);
}

.pricing--white .pricing__title {
  color: var(--black);
}

.pricing--white .pricing__description {
  color: var(--black);
}

/* Pricing Packages Variant Modifier */
.pricing--packages .pricing__plan {
  background: var(--light-red);
}

.pricing--packages .pricing__plan--custom {
  border: 0.2rem solid var(--black);
  background-color: transparent;
}

.pricing--packages .pricing__plan-custom-title {
  color: var(--black);
}

.pricing--packages .pricing__plan-custom-description {
  color: var(--black);
}

.pricing__plan-buy {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.pricing__container {
  display: flex;
  flex-direction: column;
  gap: 4.8rem;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  max-width: 140rem;
  margin: 0 auto;
}

.pricing__header {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  align-items: center;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
}

.pricing__title {
  color: var(--white);
  text-align: left;
  font-family: var(--font-primary);
  font-size: 5.6rem;
  line-height: 100%;
  letter-spacing: 0.01em;
  font-weight: 600;
  text-transform: uppercase;
  position: relative;
  align-self: stretch;
  min-height: 7.2rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 0;
}

.pricing__description {
  color: var(--white);
  text-align: left;
  font-family: var(--font-primary);
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  font-weight: 500;
  position: relative;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 0;
}

.pricing__plans {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  align-items: flex-start;
  justify-content: flex-start;
  flex-shrink: 0;
  position: relative;
  width: 100%;
}

.pricing__plans-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem;
  flex-shrink: 0;
  width: 100%;
  position: relative;
}

.pricing__plan {
  background: var(--white);
  border-radius: 1.6rem;
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 20rem;
  align-items: flex-start;
  justify-content: flex-start;
  flex: 1;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
}

.pricing__plan:hover {
  transform: translateY(-0.5rem);
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.1);
  background: var(--red-50);
}

.pricing__plan--custom {
  border-radius: 19.2rem;
  border: 0.2rem solid var(--white);
  background-color: transparent;
  padding: 1.6rem 2rem;
  gap: 3.2rem;
  align-items: center;
  justify-content: center;
  align-self: stretch;
}
.pricing__plan.pricing__plan--custom:hover {
  background: transparent;
}

.pricing__plan-content {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  align-items: flex-start;
  justify-content: flex-start;
  flex-shrink: 0;
  position: relative;
  width: 100%;
}

.pricing__plan-header {
  display: flex;
  flex-direction: row;
  gap: 2.4rem;
  align-items: flex-start;
  justify-content: flex-start;
  flex-shrink: 0;
  width: 100%;
  height: 4rem;
  min-height: 4rem;
  position: relative;
}

.pricing__plan-name {
  color: var(--red);
  text-align: left;
  font-family: var(--font-primary);
  font-size: 3.8rem;
  line-height: 100%;
  letter-spacing: 0.01em;
  font-weight: 600;
  text-transform: uppercase;
  position: relative;
  flex: 1;
  min-height: 4rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 0;
}

.pricing__plan-price {
  color: var(--red);
  text-align: right;
  font-family: var(--font-primary);
  font-size: 2.4rem;
  line-height: 100%;
  letter-spacing: -0.02em;
  font-weight: 400;
  text-transform: uppercase;
  position: relative;
  padding: 0.4rem 0 0 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.pricing__plan-description {
  color: var(--red-300);
  text-align: left;
  font-family: var(--font-primary);
  font-size: 1.3rem;
  line-height: 120%;
  letter-spacing: -0.02em;
  font-weight: 400;
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 0;
}

.pricing__plan-description .dynamic-price {
  margin: 0 .3rem
}

.pricing__plan-icon {
  border-radius: 2.4rem;
  flex-shrink: 0;
  width: 3.2rem;
  height: 3.2rem;
  position: relative;
  color: var(--red);
}

.pricing__plan .pricing__plan-icon svg {
  transform: rotate(0deg);
  transition: transform 0.3s ease;
}

.pricing__plan:hover .pricing__plan-icon svg {
  transform: rotate(45deg);
}

.pricing__plan-icon svg {
  width: 100%;
  height: 100%;
}

.pricing__plan-custom-title {
  color: var(--white);
  text-align: center;
  font-family: var(--font-primary);
  font-size: 3.2rem;
  line-height: 100%;
  letter-spacing: 0.01em;
  font-weight: 600;
  text-transform: uppercase;
  position: relative;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
}

.pricing__plan-custom-description {
  color: var(--white);
  text-align: center;
  font-family: var(--font-family);
  font-size: 1.3rem;
  line-height: 120%;
  letter-spacing: -0.02em;
  font-weight: 400;
  position: relative;
  align-self: stretch;
  margin: 0;
}

.pricing__plan-custom-description .dynamic-price {
  margin: 0 .3rem
}

.pricing__plan-buy.d-none {
  display: none;
}

/* Pricing Tablet Responsive Design - 1089px */
@media screen and (max-width: 1089px) {
  .pricing {
    padding: 6.4rem 1.6rem;
    border-radius: 1.6rem;
  }
  
  .pricing__container {
    gap: 2.4rem;
  }
  
  .pricing__title {
    font-size: 2.8rem;
    min-height: auto;
  }
  
  .pricing__description {
    font-size: 1.4rem;
  }
  
  .pricing__plans-row {
    grid-template-columns: 1fr;
    gap: .8rem;
  }
  
  .pricing__plan {
    width: 100%;
    gap: 2.4rem;
  }
  
  .pricing__plan-header {
    gap: 0.8rem;
    height: auto;
    align-items: center;
    justify-content: space-between;
  }
  
  .pricing__plan-name {
    font-size: 2.4rem;
    letter-spacing: 0.024rem;
  }
  
  .pricing__plan-price {
    font-size: 1.8rem;
    justify-content: center;
    padding: 0;
  }
  
  .pricing__plan-description {
    font-size: 1.2rem;
    letter-spacing: -0.024rem;
  }
  
  .pricing__plan-custom-title {
    font-size: 2.4rem;
  }
  
  .pricing__plan-custom-description {
    font-size: 1.2rem;
    line-height: 120%;
    letter-spacing: -0.024rem;
  }
  .pricing--packages .pricing__plan--custom {
    padding: 4rem 4rem 3.2rem 4rem;
  }
  .pricing__plan-buy.d-none {
    margin-top: 1.6rem;
    display: flex;
    justify-content: center;
  }
}

/* Testimonials Section - BEM Methodology */

/* Testimonials Block */
.testimonials {
  background: var(--white);
  padding: 8rem 0 6.4rem 0;
  display: flex;
  flex-direction: column;
  gap: 4.8rem;
  align-items: center;
  justify-content: flex-start;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.testimonials__container {
  display: flex;
  flex-direction: column;
  gap: 4.8rem;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  max-width: 140rem;
  margin: 0 auto;
}

.testimonials__header {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  align-items: center;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
}

.testimonials__title {
  color: var(--black);
  text-align: left;
  font-family: var(--font-primary);
  font-size: 5.6rem;
  line-height: 100%;
  letter-spacing: 0.01em;
  font-weight: 600;
  text-transform: uppercase;
  position: relative;
  align-self: stretch;
  min-height: 7.2rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 0;
}

.testimonials__description {
  color: var(--black);
  text-align: left;
  font-family: var(--font-primary);
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  font-weight: 500;
  position: relative;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 0;
}

.testimonials__grid {
  display: flex;
  flex-direction: row;
  gap: 1.6rem;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
  align-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
}

.testimonials__card {
  background: var(--light-red);
  border-radius: 1.6rem;
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  flex-shrink: 0;
  width: 44.4rem;
  height: 35rem;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
}

.testimonials__card:hover {
  transform: translateY(-0.5rem);
  box-shadow: 0 1rem 3rem rgba(222, 59, 59, 0.1);
}

.testimonials__quote {
  color: var(--red);
  text-align: left;
  font-family: var(--font-primary);
  font-size: 2.4rem;
  line-height: 100%;
  letter-spacing: -0.02em;
  font-weight: 500;
  text-transform: uppercase;
  position: relative;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 0;
}

.testimonials__author {
  display: flex;
  flex-direction: row;
  gap: 1.2rem;
  align-items: flex-start;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
}

.testimonials__avatar img {
  border-radius: 50%;
  flex-shrink: 0;
  width: 4.4rem;
  height: 4.4rem;
  position: relative;
  color: var(--red-200);
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonials__author-info {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  align-items: flex-start;
  justify-content: center;
  align-self: stretch;
  flex: 1;
  position: relative;
}

.testimonials__author-name {
  color: var(--red);
  text-align: left;
  font-family: var(--font-primary);
  font-size: 1.5rem;
  line-height: 120%;
  letter-spacing: -0.02em;
  font-weight: 600;
  position: relative;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 0;
}

.testimonials__author-location {
  color: var(--red-300);
  text-align: left;
  font-family: var(--font-primary);
  font-size: 1.3rem;
  line-height: 120%;
  letter-spacing: -0.02em;
  font-weight: 400;
  position: relative;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 0;
}

/* Testimonials Tablet Responsive Design - 1089px */
@media screen and (max-width: 1089px) {
  .testimonials {
    padding: 6.4rem 1.6rem 0;
  }
  
  .testimonials__container {
    gap: 3.2rem;
  }
  
  .testimonials__title {
    font-size: 3.2rem;
    font-weight: 600;
    line-height: 100%; /* 3.2rem */
    letter-spacing: 0.032rem;
    text-transform: uppercase;
    min-height: auto;
  }
  
  .testimonials__description {
    font-size: 1.4rem;
    font-weight: 500;
    letter-spacing: -0.028rem;
  }
  
  .testimonials__grid {
    margin: 0 -1.6rem;
    padding: 0 1.6rem;
    flex-wrap: nowrap;
    align-items: center;
    scroll-snap-type: x mandatory;
    scroll-snap-align: start;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
    overflow-y: hidden;
  }

  .testimonials__grid::-webkit-scrollbar {
    display: none;
  }
  
  .testimonials__card {
    width: 100%;
    max-width: 29rem;
    height: 22.4rem;
  }
  
  .testimonials__quote {
    font-size: 1.8rem;
    line-height: 110%;
  }
  
  .testimonials__author-name {
    font-size: 1.4rem;
  }
  
  .testimonials__author-location {
    font-size: 1.2rem;
  }
  
  .testimonials__avatar {
    width: 4rem;
    height: 4rem;
  }
}

/* Page Hero Section - BEM Methodology */

/* Page Hero Block */
.page-hero {
  padding: 1.6rem 0 0 0;
  display: flex;
  flex-direction: row;
  gap: 1.6rem;
  align-items: flex-start;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.page-hero__container {
  background: var(--red);
  border-radius: 1.6rem;
  padding: 3.2rem 39.8rem;
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
  align-items: center;
  justify-content: center;
  flex: 1;
  min-height: 45rem;
  position: relative;
  overflow: hidden;
}

.page-hero__content {
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
}

.page-hero__title {
  color: var(--white);
  text-align: center;
  font-family: var(--font-secondary);
  font-size: 6.2rem;
  line-height: 100%;
  letter-spacing: -0.02em;
  font-weight: 400;
  text-transform: uppercase;
  position: relative;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
}

.page-hero__description-wrapper {
  padding: 0 2.4rem;
  display: flex;
  flex-direction: row;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
}

.page-hero__description {
  color: var(--white);
  text-align: center;
  font-family: var(--font-primary);
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  font-weight: 500;
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
}

/* Page Hero Tablet Responsive Design - 1089px */
@media screen and (max-width: 1089px) {
  .page-hero {
    padding: 0.4rem 1.6rem 0 1.6rem;
  }
  
  .page-hero__container {
    padding: 2rem 1.6rem;
    min-height: 32rem;
  }
  
  .page-hero__content {
    gap: 2.4rem;
  }
  
  .page-hero__title {
    font-size: 3.2rem;
  }
  
  .page-hero__description-wrapper {
    padding: 0;
  }
  
  .page-hero__description {
    font-size: 1.4rem;
  }
}

/* Savings CTA Section - BEM Methodology */

/* Savings CTA Block */
.savings-cta {
  background: var(--black);
  border-radius: 3.2rem;
  padding: 6.4rem 0;
  display: flex;
  flex-direction: column;
  gap: 4.8rem;
  align-items: center;
  justify-content: flex-start;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.savings-cta__container {
  display: flex;
  flex-direction: column;
  gap: 4.8rem;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  max-width: 140rem;
  margin: 0 auto;
}

.savings-cta__content {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  align-items: flex-start;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
}

.savings-cta__title {
  color: var(--white);
  text-align: center;
  font-family: var(--font-secondary);
  font-size: 4.8rem;
  line-height: 100%;
  letter-spacing: 0.01em;
  font-weight: 400;
  text-transform: uppercase;
  position: relative;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
}

.savings-cta__description {
  color: var(--white);
  text-align: center;
  font-family: var(--font-primary);
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  font-weight: 500;
  position: relative;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
}

.savings-cta__button-wrapper {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
}

.savings-cta__button {
  background: var(--white);
  border-radius: 3.2rem;
  padding: 0.4rem 0.4rem 0.4rem 1.6rem;
  border: 2px solid var(--white);
  display: flex;
  flex-direction: row;
  gap: 1.2rem;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}  

.savings-cta__button:hover {
  background: var(--black);
  color: var(--white);
}

.savings-cta__button svg {
  width: 3.2rem;
  height: 3.2rem;
  transform: rotate(0deg);
  transition: all 0.3s ease;
}

.savings-cta__button:hover svg {
  transform: rotate(45deg);
}


.savings-cta__button svg path {
  transition: all 0.3s ease;
} 

.savings-cta__button:hover svg path {
  stroke: var(--black);
}
 

.savings-cta__button:hover svg rect {
  fill: var(--white);
}

.savings-cta__button-text {
  color: var(--black);
  text-align: center;
  font-family: var(--font-primary);
  font-size: 1.3rem;
  letter-spacing: 0.01em;
  line-height: 100%;
  font-weight: 700;
  text-transform: uppercase;
  position: relative;
  min-height: 3.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.savings-cta__button:hover .savings-cta__button-text {
  color: var(--white);
}

.savings-cta__button-icon {
  border-radius: 2.4rem;
  flex-shrink: 0;
  width: 3.2rem;
  height: 3.2rem;
  position: relative;
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Savings CTA Tablet Responsive Design - 1089px */
@media screen and (max-width: 1089px) {
  .savings-cta {
    padding: 6.4rem 3.2rem;
    border-radius: 3.2rem;
  }
  
  .savings-cta__container {
    gap: 2.4rem;
  }
  
  .savings-cta__title {
    font-size: 3.2rem;
    font-style: normal;
    font-weight: 400;
    line-height: 100%; /* 3.2rem */
    letter-spacing: -0.064rem;
  }

  .savings-cta__title br {
    display: none;
  }
  
  .savings-cta__description {
    font-size: 1.4rem;
  }
  
  .savings-cta__button {
    padding: 0.2rem 0.4rem 0.2rem 1.2rem;
    gap: 1rem;
  }
  
  .savings-cta__button-text {
    font-size: 1.2rem;
  }
}

/* FAQ Section - BEM Methodology */

/* FAQ Block */
.faq {
  background: var(--white);
  padding: 8rem 0;
  display: flex;
  flex-direction: row;
  gap: 1.6rem;
  align-items: flex-start;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.faq__container {
  display: flex;
  flex-direction: row;
  gap: 1.6rem;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  max-width: 140rem;
  margin: 0 auto;
}

.faq__header {
  padding: 0 14.4rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  align-items: center;
  justify-content: flex-start;
  flex: 1;
  position: relative;
}

.faq__title {
  color: var(--black);
  text-align: left;
  font-family: var(--font-primary);
  font-size: 5.6rem;
  line-height: 100%;
  letter-spacing: 0.01em;
  font-weight: 600;
  text-transform: uppercase;
  position: relative;
  align-self: stretch;
  min-height: 7.2rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 0;
}

.faq__description {
  color: var(--black);
  text-align: left;
  font-family: var(--font-primary);
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  font-weight: 500;
  position: relative;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 0;
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: flex-start;
  justify-content: center;
  flex: 1;
  position: relative;
}

.faq__item {
  background: var(--white);
  border-top: 0.15rem solid var(--black);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
}

.faq__item:last-child {
  border-bottom: 0.15rem solid var(--black);
}

.faq__question {
  padding: 3rem 0;
  display: flex;
  flex-direction: row;
  gap: 1.2rem;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq__question:hover {
  background: rgba(0, 0, 0, 0.02);
}

.faq__question-text {
  color: var(--black);
  text-align: left;
  font-family: var(--font-primary);
  font-size: 2.4rem;
  line-height: 100%;
  letter-spacing: -0.02em;
  font-weight: 600;
  position: relative;
  flex: 1;
  min-height: 3.2rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.faq__icon {
  border-radius: 2.4rem;
  flex-shrink: 0;
  width: 2.4rem;
  height: 2.4rem;
  position: relative;
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq__icon-plus {
  width: 2.4rem;
  height: 2.4rem;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.faq__icon-minus {
  position: absolute;
  width: 2.4rem;
  height: 2.4rem;
  opacity: 0;
  transform: rotate(90deg);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.faq__item--open .faq__icon-plus {
  opacity: 0;
  transform: rotate(90deg);
}

.faq__item--open .faq__icon-minus {
  opacity: 1;
  transform: rotate(0deg);
}

.faq__answer {
  overflow: hidden;
  transition: height 0.3s ease;
  height: 0;
}

.faq__answer-text {
  padding: 0 0 3rem 0;
}

.faq__answer-text p {
  color: var(--black);
  text-align: left;
  font-family: var(--font-primary);
  font-size: 1.6rem;
  line-height: 140%;
  letter-spacing: -0.02em;
  font-weight: 400;
  margin: 0;
}

/* FAQ Tablet Responsive Design - 1089px */
@media screen and (max-width: 1089px) {
  .faq {
    padding: 6.4rem 1.6rem 0;
  }
  
  .faq__container {
    gap: 2.4rem;
    flex-direction: column;
  }

  .faq__header {
    padding: 0;
  }

  .faq__title {
    font-size: 2.8rem;
    min-height: auto;
  }
  
  .faq__description {
    font-size: 1.4rem;
    max-width: 30rem;
  }
  
  .faq__question {
    padding: 2.4rem 0;
  }
  
  .faq__question-text {
    font-size: 1.8rem;
    line-height: 110%;
  }
  
  .faq__answer-text {
    padding: 0 0 2.4rem 0;
  }
  
  .faq__answer-text p {
    font-size: 1.4rem;
    line-height: 130%;
  }
}

/* About Hero Section - BEM Methodology */

/* About Hero Block */
.about-hero {
  padding: 1.6rem 0;
  display: flex;
  flex-direction: row;
  gap: 1.6rem;
  align-items: flex-start;
  justify-content: flex-start;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.about-hero__container {
  display: flex;
  flex-direction: row;
  gap: 1.6rem;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
  max-width: 140rem;
  margin: 0 auto;
}

.about-hero__content {
  background: var(--red);
  border-radius: 1.6rem;
  padding: 3.2rem 6.4rem;
  display: flex;
  flex-direction: column;
  gap: 4rem;
  align-items: center;
  justify-content: center;
  flex: 1;
  height: 68rem;
  position: relative;
  overflow: hidden;
}

.about-hero__text {
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
  align-items: flex-start;
  justify-content: flex-start;
  flex-shrink: 0;
  position: relative;
}

.about-hero__title {
  color: var(--white);
  text-align: center;
  font-family: var(--font-secondary);
  font-size: 6.2rem;
  line-height: 100%;
  letter-spacing: -0.02em;
  font-weight: 400;
  text-transform: uppercase;
  position: relative;
  width: 58rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
}

.about-hero__description-wrapper {
  padding: 0 6.4rem;
  display: flex;
  flex-direction: row;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
}

.about-hero__description {
  color: var(--white);
  text-align: center;
  font-family: var(--font-primary);
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  font-weight: 500;
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
}

.about-hero__image {
  background: linear-gradient(to left, #f2f2f2, #f2f2f2);
  border-radius: 1.6rem;
  flex: 1;
  height: 68rem;
  position: relative;
  overflow: hidden;
}

/* About Hero Tablet Responsive Design - 1089px */
@media screen and (max-width: 1089px) {
  .about-hero {
    padding: 0.8rem 1.6rem 0;
  }
  
  .about-hero__content {
    padding: 3.2rem 2.4rem;
    height: fit-content;
    gap: 1.6rem;
    width: 100%;
    aspect-ratio: 1 / 1;
    max-height: 35rem;
  }

  .about-hero__container {
    flex-direction: column;
    max-width: 100%;
  }
  
  .about-hero__text {
    gap: 1.6rem;
  }
  
  .about-hero__title {
    font-size: 3.2rem;
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .about-hero__title br {
    display: none;
  }
  
  .about-hero__description-wrapper {
    padding: 0;
  }
  
  .about-hero__description {
    font-size: 1.4rem;
    font-weight: 500;
    letter-spacing: -0.028rem;
  }

  .about-hero__description br {
    display: none;
  }
  
  .about-hero__image {
    height: auto; 
  }

  .about-hero__image-element {
    width: 100%;
    object-fit: cover;
  }
}

/* Text Content Section - BEM Methodology */

/* Text Content Block */
.text-content {
  background: var(--white);
  padding: 8rem 0;
  display: flex;
  flex-direction: column;
  max-width: 90rem;
  gap: 4rem;
  align-items: center;
  justify-content: flex-start;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.text-content__container {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  max-width: 140rem;
  margin: 0 auto;
}

.text-content__wrapper {
  padding: 0 9.6rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  align-items: center;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
}

.text-content__title {
  color: var(--black);
  text-align: left;
  font-family: var(--font-primary);
  font-size: 5.6rem;
  line-height: 100%;
  letter-spacing: 0.01em;
  font-weight: 600;
  text-transform: uppercase;
  position: relative;
  align-self: stretch;
  min-height: 7.2rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 0;
}

.text-content__body {
  color: var(--black);
  text-align: left;
  font-family: var(--font-primary);
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  font-weight: 500;
  position: relative;
  align-self: stretch;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  line-height: 160%;
}

.text-content__body p {
  margin: 0 0 1.6rem 0;
  line-height: 160%;
}

.text-content__body p:last-child {
  margin-bottom: 0;
}

.text-content__body ul,
.text-content__body ol {
  margin: 1.6rem 0;
  padding-left: 2rem;
}

.text-content__body li {
  margin-bottom: 0.8rem;
  line-height: 160%;
}

.text-content__body strong {
  font-weight: 600;
}

.text-content__body em {
  font-style: italic;
}

.text-content__body a {
  color: var(--red);
  text-decoration: underline;
  transition: color 0.3s ease;
}

.text-content__body a:hover {
  color: var(--red-300);
}

/* Text Content Tablet Responsive Design - 1089px */
@media screen and (max-width: 1089px) {
  .text-content {
    padding: 6.4rem 1.6rem 0;
  }
  
  .text-content__container {
    gap: 2.4rem;
  }

  .text-content__wrapper {
    padding: 0;
  }
  
  .text-content__title {
    font-size: 2.4rem;
    font-weight: 600;
    line-height: 100%; /* 2.4rem */
    letter-spacing: 0.024rem;
    min-height: auto;
    text-transform: uppercase;
  }
  
  .text-content__body {
    font-size: 1.4rem;
    text-align: left;
    justify-content: flex-start;
  }
}

/* Contacts Info Section - BEM Methodology */

/* Contacts Info Block */
.contacts-info {
  background: var(--white);
  padding: 6.4rem 0 8rem 0;
  display: flex;
  flex-direction: row;
  gap: 4.8rem;
  align-items: flex-start;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.contacts-info__container {
  display: flex;
  flex-direction: row;
  gap: 4.8rem;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  max-width: 140rem;
  margin: 0 auto;
}

.contacts-info__details {
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: flex-start;
  justify-content: flex-start;
  align-self: stretch;
  flex: 1;
  position: relative;
}

.contacts-info__item {
  background: var(--white);
  border-style: solid;
  border-color: var(--black);
  border-width: 0.15rem 0 0 0;
  padding: 2.4rem 0;
  display: flex;
  flex-direction: row;
  gap: 1.6rem;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  flex: 1;
  position: relative;
}

.contacts-info__item--bordered {
  border-width: 0.15rem 0 0.15rem 0;
}

.contacts-info__label {
  color: var(--black-400);
  text-align: left;
  font-family: var(--font-primary);
  font-size: 3rem;
  line-height: 100%;
  letter-spacing: 0.01em;
  font-weight: 600;
  text-transform: uppercase;
  position: relative;
  align-self: stretch;
  flex: 1;
  min-height: 5.2rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.contacts-info__value {
  color: var(--black);
  text-align: left;
  font-family: var(--font-primary);
  font-size: 3rem;
  line-height: 100%;
  letter-spacing: 0.01em;
  font-weight: 600;
  text-transform: uppercase;
  position: relative;
  align-self: stretch;
  flex: 1;
  min-height: 5.2rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.contacts-info__link {
  color: var(--black);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contacts-info__link:hover {
  color: var(--red);
}

.contacts-info__cta {
  border-radius: 19.2rem;
  border-style: solid;
  border-color: var(--black);
  border-width: 0.2rem;
  padding: 1.6rem 4rem;
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 33.2rem;
  height: 32.8rem;
  position: relative;
  overflow: hidden;
}

.contacts-info__cta-content {
  padding: 1.6rem 0 0 0;
  display: flex;
  flex-direction: row;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
}

.contacts-info__cta-text {
  color: var(--black);
  text-align: center;
  font-family: var(--font-primary);
  font-size: 3.2rem;
  line-height: 100%;
  letter-spacing: 0.01em;
  font-weight: 600;
  text-transform: uppercase;
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contacts-info__cta-button {
  flex-shrink: 0;
  position: relative;
}

.contacts-info__button {
  background: var(--white);
  border-radius: 3.2rem;
  border-style: solid;
  border-color: var(--black);
  border-width: 0.15rem;
  padding: 0.4rem 0.4rem 0.4rem 1.6rem;
  display: flex;
  flex-direction: row;
  gap: 1.2rem;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contacts-info__button:hover {
  background: var(--black);
  color: var(--white);
}

.contacts-info__button:hover .contacts-info__button-text {
  color: var(--white);
}

.contacts-info__button:hover .contacts-info__button-icon {
  background: var(--white);
  color: var(--black);
}

.contacts-info__button-text {
  color: var(--black);
  text-align: left;
  font-family: var(--font-primary);
  font-size: 1.3rem;
  letter-spacing: 0.01em;
  font-weight: 700;
  text-transform: uppercase;
  position: relative;
  min-height: 3.2rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  transition: color 0.3s ease;
}

.contacts-info__button-icon {
  border-radius: 2.4rem;
  flex-shrink: 0;
  width: 3.2rem;
  height: 3.2rem;
  position: relative;
  overflow: visible;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: all 0.3s ease;
}

.contacts-info__button-icon svg {
  width: 3.2rem;
  height: 3.2rem;
  transform: rotate(0deg);
  transition: transform 0.3s ease;
}

.contacts-info__button:hover svg  {
  transform: rotate(45deg);
}

.contacts-info__button:hover svg path {
  stroke: var(--black);
}

.contacts-info__button:hover svg rect {
  fill: var(--white);
}


/* Contacts Info Tablet Responsive Design - 1089px */
@media screen and (max-width: 1089px) {
  .contacts-info {
    padding: 6.4rem 1.6rem 0;
    gap: 3.2rem;
  }
  
  .contacts-info__container {
    flex-direction: column;
    gap: 3.2rem;
  }
  
  .contacts-info__item {
    flex-direction: column;
    gap: 0.4rem;
    text-align: center;
    padding: 2rem 0;
  }
  
  .contacts-info__label,
  .contacts-info__value {
    font-size: 2rem;
    min-height: auto;
  }
  
  .contacts-info__cta {
    width: 100%;
    padding: 4rem 6.4rem 3.2rem 6.4rem;
    gap: 3.2rem;
    height: auto;
  }
  
  .contacts-info__cta-text {
    font-size: 2.4rem;
    font-weight: 600;
    line-height: 100%; /* 2.4rem */
    letter-spacing: 0.024rem;
  }
  
  .contacts-info__button {
    padding: 0.4rem 0.4rem 0.4rem 1.2rem;
    gap: 0.8rem;
  }

  .contacts-info__cta-content {
    padding: 0;
  }
}

/* Accordion Block */
.accordion {
  background: var(--white); 
  padding: 6.4rem 0 8rem 0;
  display: flex; 
  flex-direction: column;
  gap: 4.8rem;
  align-items: center;
  justify-content: flex-start;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.accordion__container {
  display: flex;
  flex-direction: column;
  gap: 4.8rem;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  max-width: 140rem;
  margin: 0 auto;
}

.accordion__header {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  align-items: center;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
}

.accordion__title {
  color: var(--black);
  text-align: left;
  font-family: var(--font-primary);
  font-size: 5.6rem;
  line-height: 100%;
  letter-spacing: 0.01em;
  font-weight: 600;
  text-transform: uppercase;
  position: relative;
  align-self: stretch;
  min-height: 7.2rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 0;
}

.accordion__description {
  color: var(--black);
  text-align: left;
  font-family: var(--font-primary);
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  font-weight: 500;
  position: relative;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  line-height: 160%;
  margin: 0;
}

.accordion__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: flex-start;
  justify-content: flex-start;
  flex-shrink: 0;
  position: relative;
  width: 100%;
}

.accordion__item {
  background: var(--white);
  border-style: solid;
  border-color: var(--black);
  border-width: 0.15rem 0 0 0;
  padding: 1.2rem 1.2rem 1.2rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 100%;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
}

.accordion__item:last-child {
  border-bottom: 0.15rem solid var(--black);
}

.accordion__item:hover {
  background: var(--red);
  border-radius: 1.6rem;
  border-color: var(--red);
  padding: 1.2rem;
  margin: 0.15rem 0;
}

.accordion__item:hover .accordion__featured-icon {
  margin-left: 0;
  margin-right: 1.6rem;
  color: var(--red);
  opacity: 1;
  visibility: visible;
  transition: all 0.3s ease;
}

.accordion__item:hover .accordion__question-text {
  color: var(--white);
}

.accordion__item:hover .accordion__icon {
  color: var(--white);
}

.accordion__item:hover .accordion__answer-text p {
  color: var(--white);
}

.accordion__item:hover + .accordion__item {
  padding: 1.6rem 0;
  border-color: var(--white);
}

.accordion__question {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 100%;
  position: relative;
  cursor: pointer;
}

.accordion__featured-icon {
  position: relative;
  margin-left: -3.2rem;
  margin-right: 0;
  flex-shrink: 0;
  width: 3.2rem;
  height: 3.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.accordion__featured-icon svg {
  width: 3.2rem;
  height: 3.2rem;
}

.accordion__question-text {
  color: var(--black);
  text-align: left;
  font-family: var(--font-primary);
  font-size: 3rem;
  line-height: 100%;
  letter-spacing: 0.01em;
  font-weight: 600;
  text-transform: uppercase;
  position: relative;
  flex: 1;
  min-height: 5.2rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.accordion__icon {
  flex-shrink: 0;
  width: 4rem;
  height: 4rem;
  position: relative;
  overflow: visible;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--black);
}

.accordion__icon svg {
  width: 4rem;
  height: 4rem;
  transition: transform 0.3s ease;
}

.accordion__icon-plus {
  opacity: 1;
  transform: rotate(0deg);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.accordion__icon-minus {
  opacity: 0;
  transform: rotate(90deg);
  transition: opacity 0.3s ease, transform 0.3s ease;
  position: absolute;
  top: 50%;
  left: 50%;
  transform-origin: center;
  margin-top: -1rem;
  margin-left: -1rem;
}

.accordion__item--open .accordion__icon-plus {
  opacity: 0;
  transform: rotate(90deg);
}

.accordion__item--open .accordion__icon-minus {
  opacity: 1;
  transform: rotate(0deg);
  margin-top: -1rem;
  margin-left: -1rem;
}

.accordion__answer {
  overflow: hidden;
  transition: height 0.3s ease;
  height: 0;
  width: 100%;
}

.accordion__answer-text {
  padding: 0 46.4rem 0 0;
  display: flex;
  flex-direction: row;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
}

.accordion__answer-text p {
  color: var(--black);
  text-align: left;
  font-family: var(--font-primary);
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  font-weight: 500;
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  line-height: 160%;
  margin: 0;
}

/* Accordion Tablet Responsive Design - 1089px */
@media screen and (max-width: 1089px) {
  .accordion {
    padding: 6.4rem 1.6rem 0;
    gap: 3.2rem;
  }

  .page-template-page-faq .accordion {
    padding: 6.4rem 1.6rem 0;
  }
  
  .accordion__container {
    gap: 3.2rem;
  }
  
  .accordion__title {
    font-size: 2.8rem;
    min-height: auto;
  }

  .page-template-page-faq .accordion__header {
    display: none;
  }

  .accordion__item {
    padding: 1.6rem 0;
  }

  .accordion__item.accordion__item--open {
    gap: 1.2rem;
  }

  .accordion__item:hover {
    background: var(--white);
    border-radius: 0;
    border-color: var(--black);
    padding: 1.6rem 0;
    margin: 0;
    border-bottom: 0.1rem solid var(--black);
  }
  
  .accordion__question-text {
    font-size: 2rem;
    min-height: auto;
  }

  .accordion__item:hover .accordion__question-text {
    color: var(--black);
  }
  
  .accordion__answer-text {
    padding: 0;
  }

  .accordion__item:hover .accordion__answer-text p {
    color: var(--black);
  }
  
  .accordion__answer-text p {
    font-size: 1.4rem;
  }

  .accordion__item--open .accordion__icon-plus {
    opacity: 1;
    transform: rotate(0deg);
  }

  .accordion__item--open .accordion__icon-minus {
    opacity: 1;
    transform: rotate(90deg);
  }

  .accordion__item:hover .accordion__icon {
    color: var(--black);
  }
  
  .accordion__icon {
    width: 3.2rem;
    height: 3.2rem;
  }
  
  .accordion__icon svg {
    width: 3.2rem;
    height: 3.2rem;
  }
  
  .accordion__icon-minus {
    margin-top: -0.8rem;
    margin-left: -0.8rem;
  }
  
  .accordion__item--open .accordion__icon-minus {
    margin-top: -0.8rem;
    margin-left: -0.8rem;
  }
  
  .accordion__featured-icon {
    display: none;
  }
  
  .accordion__featured-icon svg {
    width: 2.4rem;
    height: 2.4rem;
  }
}

/* Error 404 Page - BEM Methodology */

/* Error 404 Block */
.error-404 {
  background: var(--white);
  padding: 16rem 51.2rem;
  display: flex;
  flex-direction: column;
  gap: 4.8rem;
  align-items: center;
  justify-content: flex-start;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  min-height: 80vh;
}

.error-404__container {
  display: flex;
  flex-direction: column;
  gap: 4.8rem;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  max-width: 41.6rem;
  margin: 0 auto;
}

.error-404__content {
  padding: 0 2.4rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 41.6rem;
  position: relative;
}

.error-404__title {
  color: var(--black);
  text-align: center;
  font-family: var(--font-primary);
  font-size: 2.8rem;
  line-height: 120%;
  letter-spacing: -0.02em;
  font-weight: 600;
  position: relative;
  width: 36.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
}

.error-404__description {
  color: var(--black);
  text-align: center;
  font-family: var(--font-primary);
  font-size: 1.5rem;
  line-height: 145%;
  letter-spacing: -0.02em;
  font-weight: 400;
  position: relative;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
}

.error-404__button-wrapper {
  background: var(--red);
  border-radius: 4.8rem;
  padding: 1.6rem 3.2rem;
  display: flex;
  flex-direction: row;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.error-404__button {
  color: var(--white);
  text-align: center;
  font-family: var(--font-primary);
  font-size: 1.5rem;
  line-height: 100%;
  letter-spacing: -0.02em;
  font-weight: 500;
  text-transform: uppercase;
  position: relative;
  flex: 1;
  min-height: 2.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.error-404__button:hover {
  opacity: 0.9;
}

.error-404__button-text {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Error 404 Tablet Responsive Design - 1089px */
@media screen and (max-width: 1089px) {
  .error-404 {
    padding: 8rem 1.6rem;
    min-height: 55rem;
    align-items: center;
    justify-content: center;
  }
  
  .error-404__container {
    max-width: 100%;
    gap: 3.2rem;
  }
  
  .error-404__content {
    padding: 0;
    width: 100%;
    max-width: 100%;
  }
  
  .error-404__title {
    width: 100%;
    font-size: 2.8rem;
  }
}

/* Blog Posts Section - BEM Methodology */

/* Blog Posts Block */
.blog-posts {
  background: var(--white);
  padding: 6.4rem 0;
  display: flex;
  flex-direction: column;
  gap: 4.8rem; 
  align-items: center;
  justify-content: flex-start;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.blog-posts__container {
  width: 100%;
  max-width: 140rem;
  margin: 0 auto;
}

.blog-posts__grid {
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4.8rem 1.6rem;
  flex-shrink: 0;
  position: relative; 
}

.blog-posts__item {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  align-items: flex-start;
  justify-content: flex-start;
  flex-shrink: 0;
  width: 100%;
  position: relative;
  transition: transform 0.3s ease;
}

.blog-posts__item:hover {
  transform: translateY(-0.4rem);
}

.blog-posts__image {
  background: var(--gray);
  border-radius: 1.6rem;
  align-self: stretch;
  flex-shrink: 0;
  height: 25rem;
  position: relative;
  overflow: hidden;
}

.blog-posts__image-link {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
}

.blog-posts__image-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1.6rem;
  transition: transform 0.3s ease;
}

.blog-posts__image-link:hover .blog-posts__image-img {
  transform: scale(1.05);
}

.blog-posts__image-placeholder {
  background: var(--gray);
  width: 100%;
  height: 100%;
  border-radius: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.blog-posts__image-placeholder::before {
  content: '';
  width: 6rem;
  height: 6rem;
  background: var(--black-400);
  border-radius: 0.8rem;
  opacity: 0.3;
}

.blog-posts__content {
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
}

.blog-posts__content-wrapper {
  padding: 0 3.2rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  align-items: flex-start;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
}

.blog-posts__title {
  color: var(--black);
  text-align: left;
  font-family: var(--font-primary);
  font-size: 1.6rem;
  letter-spacing: -0.02em;
  font-weight: 600;
  position: relative;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-overflow: ellipsis;
  overflow: hidden;
  line-height: 120%;
  margin: 0;
}

.blog-posts__title-link {
  color: var(--black);
  text-decoration: none;
  transition: color 0.3s ease;
}

.blog-posts__title-link:hover {
  color: var(--red);
}

.blog-posts__excerpt {
  color: var(--black);
  text-align: left;
  font-family: var(--font-primary);
  font-size: 1.3rem;
  letter-spacing: -0.02em;
  font-weight: 400;
  position: relative;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-overflow: ellipsis;
  overflow: hidden;
  line-height: 140%;
  margin: 0;
}

.blog-posts__date {
  color: var(--black-400);
  text-align: left;
  font-family: var(--font-primary);
  font-size: 1.1rem;
  letter-spacing: -0.02em;
  font-weight: 400;
  position: relative;
  align-self: stretch;
  height: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-overflow: ellipsis;
  overflow: hidden;
  margin: 0;
}

/* No Posts State */
.blog-posts__no-posts {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 8rem 2rem;
  text-align: center;
}

.blog-posts__no-posts-title {
  color: var(--black);
  font-family: var(--font-primary);
  font-size: 2.4rem;
  font-weight: 600;
  margin: 0;
}

.blog-posts__no-posts-text {
  color: var(--black-400);
  font-family: var(--font-primary);
  font-size: 1.5rem;
  font-weight: 400;
  margin: 0;
  max-width: 50rem;
}

/* Pagination */
.blog-posts__pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.blog-posts__pagination .nav-links {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: center;
}

.blog-posts__pagination .nav-links a,
.blog-posts__pagination .nav-links .current {
  padding: 1rem 1.6rem;
  color: var(--black);
  text-decoration: none;
  font-family: var(--font-primary);
  font-size: 1.4rem;
  font-weight: 500;
  border-radius: 0.8rem;
  transition: all 0.3s ease;
  min-width: 4rem;
  text-align: center;
}

.blog-posts__pagination .nav-links a:hover {
  background: var(--red);
  color: var(--white);
}

.blog-posts__pagination .nav-links .current {
  background: var(--red);
  color: var(--white);
}

/* Blog Posts Tablet Responsive Design - 1089px */
@media screen and (max-width: 1089px) {
  .blog-posts {
    padding: 6.4rem 1.6rem 0;
  }
  
  .blog-posts__container {
    gap: 3rem;
  }
  
  .blog-posts__grid {
    grid-template-columns: 1fr;
    gap: 0;
    row-gap: 3.2rem;
    justify-content: center;
  }
  
  .blog-posts__item {
    width: 100%;
    max-width: 100%;
  }
  
  .blog-posts__image {
    height: 20rem;
  }
  
  .blog-posts__content-wrapper {
    padding: 0;
  }
}

/* Single Post Hero Section - BEM Methodology */

/* Single Hero Block */
.single-hero {
  padding: 1.6rem 0;
  display: flex;
  flex-direction: row;
  gap: 1.6rem; 
  align-items: flex-start;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.single-hero__container {
  display: flex;
  flex-direction: row;
  gap: 1.6rem;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
  max-width: 140rem;
  margin: 0 auto;
}

.single-hero__content {
  background: var(--red);
  border-radius: 1.6rem;
  padding: 3.2rem 6.4rem;
  display: flex;
  flex-direction: column;
  gap: 4rem;
  align-items: center;
  justify-content: center;
  flex: 1;
  height: 68rem;
  position: relative;
  overflow: hidden;
}

.single-hero__text {
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
  align-items: center;
  justify-content: flex-start;
  flex-shrink: 0;
  position: relative;
}

.single-hero__title {
  color: var(--white);
  text-align: center;
  font-family: var(--font-secondary);
  font-size: 4.8rem;
  line-height: 100%;
  letter-spacing: -0.02em;
  font-weight: 400;
  text-transform: uppercase;
  position: relative;
  width: 58rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
}

.single-hero__date {
  color: var(--white);
  text-align: center;
  font-family: var(--font-primary);
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  font-weight: 500;
  position: relative;
  width: 55.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.single-hero__back {
  background: var(--white);
  border-radius: 3.2rem;
  padding: 0.4rem 1.6rem 0.4rem 0.4rem;
  display: flex;
  flex-direction: row;
  gap: 1.2rem;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
}

.single-hero__back-link {
  display: flex;
  flex-direction: row;
  gap: 1.2rem;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.single-hero__back-link:hover {
  opacity: 0.8;
}

.single-hero__back-link svg {
  width: 3.2rem;
  height: 3.2rem;
  transition: fill 0.3s ease;
}

.single-hero__back-link svg rect {
  fill: var(--red);
  transition: fill 0.3s ease;
}

.single-hero__back-link:hover svg rect {
  fill: var(--black);
}

.single-hero__back-icon {
  border-radius: 2.4rem;
  flex-shrink: 0;
  width: 3.2rem;
  height: 3.2rem;
  position: relative;
  overflow: visible;
  color: var(--black);
}

.single-hero__back-text {
  color: var(--black);
  text-align: center;
  font-family: var(--font-primary);
  font-size: 1.3rem;
  letter-spacing: 0.01em;
  font-weight: 700;
  text-transform: uppercase;
  position: relative;
  min-height: 3.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.single-hero__image {
  background: var(--black-50);
  border-radius: 1.6rem;
  flex: 1;
  height: 68rem;
  position: relative;
  overflow: hidden;
}

.single-hero__image-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1.6rem;
}

.single-hero__image-placeholder {
  background: var(--black-50);
  width: 100%;
  height: 100%;
  border-radius: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.single-hero__image-placeholder::before {
  content: '';
  width: 8rem;
  height: 8rem;
  background: var(--black-400);
  border-radius: 1rem;
  opacity: 0.3;
}

/* Single Hero Tablet Responsive Design - 1089px */
@media screen and (max-width: 1089px) {
  .single-hero {
    padding: 1.2rem 2.4rem;
    flex-direction: column;
  }
  
  .single-hero__container {
    flex-direction: column;
    gap: 1.6rem;
  }
  
  .single-hero__content {
    padding: 2.4rem 4rem;
    height: 50rem;
  }
  
  .single-hero__title {
    font-size: 3.6rem;
    width: auto;
  }
  
  .single-hero__date {
    width: auto;
  }
  
  .single-hero__image {
    height: 40rem;
  }
}

/* Single Hero Mobile Responsive Design - 767px */
@media screen and (max-width: 767px) {
  .single-hero {
    padding: 0.8rem 1.6rem;
  }
  
  .single-hero__content {
    padding: 2rem 1.6rem;
    height: 40rem;
    gap: 2.4rem;
  }
  
  .single-hero__text {
    gap: 2.4rem;
  }
  
  .single-hero__title {
    font-size: 2.4rem;
  }
  
  .single-hero__date {
    font-size: 1.4rem;
  }
  
  .single-hero__image {
    height: 32rem;
  }
}

/* Single Content Section - BEM Methodology */

/* Single Content Block */
.single-content {
  background: var(--white);
  padding: 4rem 0 6.4rem 0;
  display: flex;
  flex-direction: column;
  max-width: 90rem;
  gap: 4rem;
  align-items: center;
  justify-content: flex-start;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.single-content__container {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  max-width: 140rem;
  margin: 0 auto;
}

.single-content__wrapper {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  align-items: center;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
}

.single-content__body {
  color: var(--black);
  text-align: left;
  font-family: var(--font-primary);
  font-size: 1.7rem;
  line-height: 155%;
  letter-spacing: -0.02em;
  font-weight: 500;
  position: relative;
  align-self: stretch;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
}

.single-content__body p {
  margin: 0 0 1.6rem 0;
  line-height: 155%;
}

.single-content__body p:last-child {
  margin-bottom: 0;
}

.single-content__body h2 {
  color: var(--black);
  font-family: var(--font-primary);
  font-size: 2.4rem;
  line-height: 120%;
  letter-spacing: -0.02em;
  font-weight: 600;
  margin: 3.2rem 0 1.6rem 0;
}

.single-content__body h2:first-child {
  margin-top: 0;
}

.single-content__body h3 {
  color: var(--black);
  font-family: var(--font-primary);
  font-size: 2rem;
  line-height: 125%;
  letter-spacing: -0.02em;
  font-weight: 600;
  margin: 2.4rem 0 1.2rem 0;
}

.single-content__body h3:first-child {
  margin-top: 0;
}

.single-content__body ul,
.single-content__body ol {
  margin: 1.6rem 0;
  padding-left: 2.4rem;
}

.single-content__body li {
  margin-bottom: 0.8rem;
  line-height: 155%;
}

.single-content__body li:last-child {
  margin-bottom: 0;
}

.single-content__body strong {
  font-weight: 600;
}

.single-content__body em {
  font-style: italic;
}

.single-content__body a {
  color: var(--red);
  text-decoration: underline;
  transition: color 0.3s ease;
}

.single-content__body a:hover {
  color: var(--red-300);
}

.single-content__body blockquote {
  border-left: 0.4rem solid var(--red);
  padding-left: 2rem;
  margin: 2.4rem 0;
  font-style: italic;
  color: var(--black-600);
}

/* Single Content Tablet Responsive Design - 1089px */
@media screen and (max-width: 1089px) {
  .single-content {
    padding: .8rem 1.6rem 0 1.6rem;
  }
  
  .single-content__container {
    gap: 2.4rem;
  }
  
  .single-content__body {
    font-size: 1.5rem;
  }
  
  .single-content__body h2 {
    font-size: 2rem;
    margin: 2.4rem 0 1.2rem 0;
  }
  
  .single-content__body h3 {
    font-size: 1.7rem;
    margin: 2rem 0 1rem 0;
  }
}

/* Single Related Articles Section - BEM Methodology */

/* Single Related Block */
.single-related {
  background: var(--white);
  padding: 6.4rem 3.2rem 8rem 3.2rem;
  display: flex;
  flex-direction: column;
  gap: 4.8rem;
  align-items: center;
  justify-content: flex-start;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.single-related__container {
  display: flex;
  flex-direction: column;
  gap: 4.8rem;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  max-width: 140rem;
  margin: 0 auto;
}

.single-related__title {
  color: var(--black);
  text-align: left;
  font-family: var(--font-primary);
  font-size: 5.6rem;
  line-height: 100%;
  letter-spacing: 0.01em;
  font-weight: 600;
  text-transform: uppercase;
  position: relative;
  align-self: stretch;
  min-height: 7.2rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 0;
}

.single-related__grid {
  display: flex;
  flex-direction: row;
  gap: 1.6rem;
  align-items: flex-start;
  justify-content: flex-start;
  flex-shrink: 0;
  position: relative;
}

.single-related__item {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  align-items: flex-start;
  justify-content: flex-start;
  flex-shrink: 0;
  width: 44.8rem;
  position: relative;
  transition: transform 0.3s ease;
}

.single-related__item:hover {
  transform: translateY(-0.4rem);
}

.single-related__image {
  background: var(--gray);
  border-radius: 1.6rem;
  align-self: stretch;
  flex-shrink: 0;
  height: 25rem;
  position: relative;
  overflow: hidden;
}

.single-related__image-link {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
}

.single-related__image-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1.6rem;
  transition: transform 0.3s ease;
}

.single-related__image-link:hover .single-related__image-img {
  transform: scale(1.05);
}

.single-related__image-placeholder {
  background: var(--gray);
  width: 100%;
  height: 100%;
  border-radius: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.single-related__image-placeholder::before {
  content: '';
  width: 6rem;
  height: 6rem;
  background: var(--black-400);
  border-radius: 0.8rem;
  opacity: 0.3;
}

.single-related__content {
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
}

.single-related__content-wrapper {
  padding: 0 3.2rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  align-items: flex-start;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
}

.single-related__post-title {
  color: var(--black);
  text-align: left;
  font-family: var(--font-primary);
  font-size: 1.6rem;
  letter-spacing: -0.02em;
  font-weight: 600;
  position: relative;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-overflow: ellipsis;
  overflow: hidden;
  line-height: 120%;
  margin: 0;
}

.single-related__title-link {
  color: var(--black);
  text-decoration: none;
  transition: color 0.3s ease;
}

.single-related__title-link:hover {
  color: var(--red);
}

.single-related__excerpt {
  color: var(--black);
  text-align: left;
  font-family: var(--font-primary);
  font-size: 1.3rem;
  letter-spacing: -0.02em;
  font-weight: 400;
  position: relative;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-overflow: ellipsis;
  overflow: hidden;
  line-height: 140%;
  margin: 0;
}

.single-related__date {
  color: var(--black-400);
  text-align: left;
  font-family: var(--font-primary);
  font-size: 1.1rem;
  letter-spacing: -0.02em;
  font-weight: 400;
  position: relative;
  align-self: stretch;
  height: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-overflow: ellipsis;
  overflow: hidden;
  margin: 0;
}

.single-related__no-posts {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 4rem 2rem;
  text-align: center;
}

.single-related__no-posts-text {
  color: var(--black-400);
  font-family: var(--font-primary);
  font-size: 1.5rem;
  font-weight: 400;
  margin: 0;
}

/* Single Related Tablet Responsive Design - 1089px */
@media screen and (max-width: 1089px) {
  .single-related {
    padding: 6.4rem 1.6rem 0;
  }
  
  .single-related__container {
    gap: 3rem;
  }
  
  .single-related__title {
    font-size: 2.8rem;
    min-height: auto;
  }
  
  .single-related__grid {
    flex-direction: column;
    gap: 3rem;
  }
  
  .single-related__item {
    width: 100%;
    max-width: 100%;
  }
  
  .single-related__image {
    height: 20rem;
  }
  
  .single-related__content-wrapper {
    padding: 0;
  }
  
  .single-related__post-title {
    font-size: 1.5rem;
  }
  
  .single-related__excerpt {
    font-size: 1.2rem;
  }
  
  .single-related__date {
    font-size: 1rem;
  }
}

/* Inspiration Filters Section - BEM Methodology */

/* Inspiration Filters Block */
.inspiration-filters {
  background: var(--white);
  padding: 3.2rem 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
  z-index: 5;
}

.inspiration-filters__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  max-width: 140rem;
  margin: 0 auto;
}

.inspiration-filters__row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
}

.inspiration-filters__left {
  display: flex;
  flex-direction: row;
  gap: 1.2rem;
  align-items: center;
  justify-content: flex-start;
  flex-shrink: 0;
  position: relative;
}

.inspiration-filters__filter {
  position: relative;
}

.inspiration-filters__filter-button {
  background: var(--white);
  border-radius: 3.2rem;
  border: 0.15rem solid var(--black-100);
  padding: 0.4rem 0.4rem 0.4rem 1.6rem;
  display: flex;
  flex-direction: row;
  gap: 0.6rem;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  cursor: pointer;
  transition: border-color 0.3s ease;
}

.inspiration-filters__filter-button:hover {
  border-color: var(--black-200);
}

.inspiration-filters__filter-button.is-open {
  border-color: var(--red);
}

.inspiration-filters__filter-button svg {
  height: 3.2rem;
  width: 3.2rem;
  transition: transform 0.3s ease;
}

.inspiration-filters__filter-content {
  display: flex;
  flex-direction: row;
  gap: 0.6rem;
  align-items: center;
  justify-content: flex-start;
  flex-shrink: 0;
  position: relative;
}

.inspiration-filters__filter-label {
  color: var(--black);
  text-align: center;
  font-family: var(--font-primary);
  font-size: 1.3rem;
  letter-spacing: 0.01em;
  font-weight: 700;
  text-transform: uppercase;
  position: relative;
  min-height: 3.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.inspiration-filters__filter-count {
  display: inline-flex;
  flex-direction: row;
  gap: 0rem;
  align-items: center;
  justify-content: flex-start;
  flex-shrink: 0;
  position: relative;
}

.inspiration-filters__filter-count-text {
  color: var(--black);
  text-align: center;
  font-family: var(--font-primary);
  font-size: 1.3rem;
  letter-spacing: 0.01em;
  font-weight: 700;
  text-transform: uppercase;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.inspiration-filters__filter-count-number {
  color: var(--black);
  text-align: center;
  font-family: var(--font-primary);
  font-size: 1.3rem;
  letter-spacing: 0.01em;
  font-weight: 700;
  text-transform: uppercase;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.inspiration-filters__filter-arrow {
  border-radius: 2.4rem;
  flex-shrink: 0;
  width: 3.2rem;
  height: 3.2rem;
  position: relative;
  overflow: visible;
  color: var(--black);
  transition: transform 0.3s ease;
}

.inspiration-filters__filter-button.is-open .inspiration-filters__filter-arrow {
  transform: rotate(180deg);
}

.inspiration-filters__dropdown {
  background: var(--white);
  border-radius: 1.6rem;
  border: 0.15rem solid var(--black-100);
  padding: 0.4rem 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: flex-start;
  justify-content: flex-start;
  position: absolute;
  top: calc(100% + 0.8rem);
  left: 0;
  min-width: 20rem;
  z-index: 100;
  box-shadow: 0 0.4rem 1.6rem rgba(0, 0, 0, 0.1);
}

.inspiration-filters__dropdown-item {
  padding: 1.2rem 3.2rem 1.2rem 1.2rem;
  display: flex;
  flex-direction: row;
  gap: 1.2rem;
  align-items: center;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
  cursor: pointer;
  transition: color 0.3s ease;
}

.inspiration-filters__checkbox-wrapper {
  position: relative;
  flex-shrink: 0;
}

.inspiration-filters__checkbox-input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.inspiration-filters__checkbox {
  background: var(--black-50);
  border-radius: 0.4rem;
  flex-shrink: 0;
  width: 2.4rem;
  height: 2.4rem;
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  transition: background-color 0.3s ease;
}

.inspiration-filters__checkbox.is-checked {
  background: var(--red);
}

.inspiration-filters__checkbox.is-checked::before {
  content: '';
  position: absolute;
  right: 30.83%;
  left: 29.17%;
  bottom: 37.5%;
  top: 37.5%;
  width: 40%;
  height: 25%;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none"><path d="M20 6L9 17L4 12" stroke="white" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
  background-size: 1.4rem;
  background-repeat: no-repeat;
  background-position: center;
}

.inspiration-filters__dropdown-label {
  color: var(--black);
  text-align: center;
  font-family: var(--font-primary);
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  font-weight: 500;
  position: relative;
  min-height: 2.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: color 0.3s ease;
}

.inspiration-filters__dropdown-item:hover .inspiration-filters__dropdown-label{
  color: var(--red);
}

.inspiration-filters__right {
  display: flex;
  flex-direction: row;
  gap: 1.2rem;
  align-items: center;
  justify-content: flex-start;
  flex-shrink: 0;
  position: relative;
}

.inspiration-filters__view,
.inspiration-filters__sort {
  background: var(--white);
  border-radius: 3.2rem;
  border: 0.15rem solid var(--black-100);
  padding: 0.4rem 0.4rem 0.4rem 1.6rem;
  display: flex;
  flex-direction: row;
  gap: 0.6rem;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  cursor: pointer;
}

.inspiration-filters__view-content,
.inspiration-filters__sort-content {
  display: flex;
  flex-direction: row;
  gap: 0.6rem;
  align-items: center;
  justify-content: flex-start;
  flex-shrink: 0;
  position: relative;
}

.inspiration-filters__view-label,
.inspiration-filters__sort-label {
  color: var(--black);
  text-align: center;
  font-family: var(--font-primary);
  font-size: 1.3rem;
  letter-spacing: 0.01em;
  font-weight: 700;
  text-transform: uppercase;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.inspiration-filters__view-number,
.inspiration-filters__sort-value {
  color: var(--black);
  text-align: center;
  font-family: var(--font-primary);
  font-size: 1.3rem;
  letter-spacing: 0.01em;
  font-weight: 700;
  text-transform: uppercase;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.inspiration-filters__view-arrow,
.inspiration-filters__sort-arrow {
  border-radius: 2.4rem;
  flex-shrink: 0;
  width: 3.2rem;
  height: 3.2rem;
  position: relative;
  overflow: visible;
  color: var(--black);
}

.inspiration-filters__actions {
  display: none;
}

/* Inspiration Filters Tablet Responsive Design - 1089px */
@media screen and (max-width: 1089px) {
  .inspiration-filters {
    padding: 3.2rem 1.6rem;
  }
  
  .inspiration-filters__row {
    padding: 0 1.6rem;
    margin: 0 -1.6rem;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    width: auto;
  }

  .inspiration-filters__row::-webkit-scrollbar {
    display: none;
  }
  
  .inspiration-filters__left {
    gap: 0.8rem;
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  
  .inspiration-filters__right {
    gap: 0.8rem;
  }
  
  .inspiration-filters__filter-button,
  .inspiration-filters__view,
  .inspiration-filters__sort {
    padding: 0.3rem 0.4rem 0.3rem 1.2rem;
  }
  
  .inspiration-filters__filter-label,
  .inspiration-filters__view-label,
  .inspiration-filters__sort-label,
  .inspiration-filters__view-number,
  .inspiration-filters__sort-value {
    font-size: 1.2rem;
  }
  .inspiration-filters__dropdown {
    position: fixed;
    background: var(--white);
    border-radius: 1.6rem;
    border: none;
    padding: 2.4rem 0;
    top: unset;
    left: 0;
    bottom: 0;
    min-width: 100vw;
    z-index: 100;
    box-shadow: 0 0.4rem 1.6rem rgba(0, 0, 0, 0.1);
  }

  .inspiration-filters__actions {
    padding: 0 1.6rem;
    margin-top: 1.6rem;
    position: relative;
    display: flex;
    flex-direction: row;
    gap: 0.8rem;
    align-items: center;
    justify-content: flex-start;
    flex-shrink: 0;
  }

  .inspiration-filters__action-button {
    background: var(--red);
    border: none;
    border-radius: 3.2rem;
    padding: 0.8rem 1.6rem;
    justify-content: center;
    align-items: center;
    gap: 1.2rem;
    flex: 1 0 0;
    display: flex;
    color: var(--white);
    height: 4.8rem;
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .inspiration-filters__action-button.is-reset {
    background: var(--black-50);
    color: var(--black);
  }
}

/* Inspiration List Section - BEM Methodology */

/* Inspiration List Block */
.inspiration-list {
  background: var(--white);
  padding: 0 0 6.4rem 0;
  display: flex;
  flex-direction: row;
  gap: 1.6rem; 
  row-gap: 4.8rem;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
  align-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.inspiration-list__container {
  display: flex;
  flex-direction: column;
  gap: 4.8rem;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  max-width: 140rem;
  margin: 0 auto;
}

.inspiration-list__grid {
  padding: 0;
  display: flex;
  flex-direction: row;
  gap: 1.6rem;
  row-gap: 4.8rem;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
  align-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.inspiration-list__grid.is-loading {
  opacity: 0.6;
  pointer-events: none;
}

.inspiration-list__item {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  align-items: flex-start;
  justify-content: flex-start;
  flex-shrink: 0;
  width: 44.4rem;
  position: relative;
  transition: transform 0.3s ease;
}

.inspiration-list__item:hover {
  transform: translateY(-0.4rem);
}

.inspiration-list__image {
  background: linear-gradient(to left, var(--gray), var(--gray));
  border-radius: 1.6rem;
  align-self: stretch;
  flex-shrink: 0;
  height: 50rem;
  position: relative;
  overflow: hidden;
}

.inspiration-list__view-button {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 10;
}

.inspiration-list__item:hover .inspiration-list__view-button {
  opacity: 1;
  visibility: visible;
}

.inspiration-list__view-btn {
  background: var(--white);
  border: none;
  border-radius: 3.2rem;
  padding: 0.8rem 0.8rem 0.8rem 2rem;
  display: flex;
  flex-direction: row;
  gap: 0.4rem;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0.4rem 1.6rem rgba(0, 0, 0, 0.1);
}

.inspiration-list__view-btn svg {
  width: 3.2rem;
  height: 3.2rem;
  transition: stroke 0.3s ease;
}

.inspiration-list__view-btn:hover {
  background: var(--red);
  color: var(--white);
}

.inspiration-list__view-btn:hover svg path {
  stroke: var(--white);
}

.inspiration-list__view-text {
  color: var(--black);
  font-family: var(--font-primary);
  font-size: 1.6rem;
  letter-spacing: -0.02em;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.inspiration-list__view-btn:hover .inspiration-list__view-text {
  color: var(--white);
}

.inspiration-list__view-icon {
  width: 3.2rem;
  height: 3.2rem;
  color: var(--black);
  border-radius: 50%;
  padding: 0.8rem;
  transition: all 0.3s ease;
}

.inspiration-list__image-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1.6rem;
  transition: transform 0.3s ease;
}

.inspiration-list__image-placeholder {
  background: var(--gray);
  width: 100%;
  height: 100%;
  border-radius: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.inspiration-list__image-placeholder::before {
  content: '';
  width: 8rem;
  height: 8rem;
  background: var(--black-400);
  border-radius: 1rem;
  opacity: 0.3;
}

.inspiration-list__gallery-count {
  background: var(--white);
  border-radius: 2rem;
  padding: 0.6rem 0.8rem;
  display: flex;
  flex-direction: row;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 0.8rem;
  bottom: 0.8rem;
}

.inspiration-list__gallery-count-text {
  color: var(--black);
  text-align: left;
  font-family: var(--font-primary);
  font-size: 1.2rem;
  letter-spacing: 0.02em;
  font-weight: 600;
  text-transform: uppercase;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.inspiration-list__content {
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
}

.inspiration-list__content-wrapper {
  padding: 0 3.2rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  align-items: flex-start;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  height: 8.4rem;
  position: relative;
}

.inspiration-list__title {
  color: var(--black);
  text-align: left;
  font-family: var(--font-primary);
  font-size: 1.6rem;
  letter-spacing: -0.02em;
  font-weight: 600;
  position: relative;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 0;
  cursor: pointer;
  transition: color 0.3s ease;
}

.inspiration-list__title:hover {
  color: var(--red);
}

.inspiration-list__excerpt {
  color: var(--black);
  text-align: left;
  font-family: var(--font-primary);
  font-size: 1.3rem;
  letter-spacing: -0.02em;
  font-weight: 400;
  position: relative;
  width: 41.6rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  line-height: 140%;
  margin: 0;
}

.inspiration-list__hashtags {
  color: var(--black-400);
  text-align: left;
  font-family: var(--font-primary);
  font-size: 1.1rem;
  letter-spacing: -0.02em;
  font-weight: 400;
  position: relative;
  width: 27.4rem;
  height: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-overflow: ellipsis;
  overflow: hidden;
  margin: 0;
  gap: .5rem;
}

.inspiration-hashtag {
  color: var(--black-400);
  font-family: var(--font-primary);
  font-size: 1.1rem;
  letter-spacing: -0.02em;
  font-weight: 400;
}

.inspiration-list__no-posts {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 8rem 2rem;
  text-align: center;
}

.inspiration-list__no-posts-title {
  color: var(--black);
  font-family: var(--font-primary);
  font-size: 2.4rem;
  font-weight: 600;
  margin: 0;
}

.inspiration-list__no-posts-text {
  color: var(--black-400);
  font-family: var(--font-primary);
  font-size: 1.6rem;
  font-weight: 400;
  margin: 0;
  max-width: 50rem;
}

.inspiration-list__load-more {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0;
}

.inspiration-list__load-more-button {
  background: var(--red);
  border: none;
  border-radius: 3.2rem;
  padding: 1.6rem 3.2rem;
  color: var(--white);
  font-family: var(--font-primary);
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}

.inspiration-list__load-more-button:hover {
  background: var(--red-300);
  transform: translateY(-0.2rem);
}

.inspiration-list__load-more-button:disabled {
  background: var(--black-200);
  cursor: not-allowed;
  transform: none;
}

.inspiration-list__load-more-text {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Inspiration List Tablet Responsive Design - 1089px */
@media screen and (max-width: 1089px) {
  .inspiration-list {
    padding: 0 0 4rem 0;
  }
  
  .inspiration-list__container {
    gap: 0;
  }
  
  .inspiration-list__grid {
    padding: 0 1.6rem 4rem 1.6rem;
    flex-direction: column;
    gap: 3.2rem;
    row-gap: 3.2rem;
  }
  
  .inspiration-list__item {
    width: 100%;
    max-width: 100%;
  }
  
  .inspiration-list__image {
    height: 32rem;
  }
  
  .inspiration-list__content-wrapper {
    padding: 0;
    height: auto;
  }
  
  .inspiration-list__title {
    font-size: 1.5rem;
  }
  
  .inspiration-list__excerpt {
    font-size: 1.2rem;
  }
  
  .inspiration-list__hashtags {
    font-size: 1rem;
    height: auto;
  }
  .inspiration-list__load-more {
    padding: 0 1.6rem;
  }
  .inspiration-list__load-more-button {
    width: 100%;
  }
}

/* Universal Modal - BEM Methodology */

/* Modal Block */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.modal.is-open {
  opacity: 1;
  visibility: visible;
}

.modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  cursor: pointer;
}

.modal__container {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  bottom: 1.2rem;
  width: 46.4rem;
  max-width: calc(100vw - 2.4rem);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  z-index: 1001;
}

.modal.is-open .modal__container {
  transform: translateX(0);
}

.modal__content {
  background: var(--white);
  border-radius: 3.2rem;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
}

.modal__close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  background: none;
  border: none;
  width: 4rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 50%;
  transition: background-color 0.3s ease;
  z-index: 10;
}

.modal__close svg {
  width: 4rem;
  height: 4rem;
  flex: 0 0 4rem;
}

.modal__close svg path {
  stroke: var(--black);
  transition: stroke 0.3s ease;
}

.modal__close:hover svg path {
  stroke: var(--red);
}

.modal__body {
  flex: 1;
  overflow-y: auto;
  padding: 0;
}

/* Modal Loading State */
.modal__loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 2rem;
  padding: 4rem;
}

.modal__loading-spinner {
  width: 4rem;
  height: 4rem;
  border: 0.4rem solid var(--black-100);
  border-top: 0.4rem solid var(--red);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.modal__loading-text {
  color: var(--black-400);
  font-family: var(--font-family);
  font-size: 1.6rem;
  font-weight: 400;
}

/* Modal Error State */
.modal__error {    
  position: absolute;
  bottom: 10rem;
  left: 0;
  right: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 0;
  padding: 0;
  text-align: center;
}

.modal__error-icon {
  width: 4.8rem;
  height: 4.8rem;
  color: var(--red);
}

.modal__error-text {
  color: var(--red);
  font-family: var(--font-family);
  font-size: 1.4rem;
  font-weight: 500;
}

.modal__error-retry {
  background: var(--red);
  border: none;
  border-radius: 0.8rem;
  padding: 1.2rem 2.4rem;
  color: var(--white);
  font-family: var(--font-primary);
  font-size: 1.4rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.modal__error-retry:hover {
  background: var(--red-300);
}

/* Body scroll lock when modal is open */
body.modal-open {
  overflow: hidden;
}

/* Inspiration Modal Content - BEM Methodology */

/* Inspiration Modal Block */
.inspiration-modal {
  background: var(--white);
  border-radius: 3.2rem;
  padding: 2.4rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  align-self: stretch;
  flex: 1;
  position: relative;
  overflow: hidden;
  min-height: 100%;
  max-width: 100%;
}

.inspiration-modal__content {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  align-items: flex-start;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
}

.inspiration-modal__header {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  align-items: flex-start;
  justify-content: flex-start;
  flex-shrink: 0;
  position: relative;
}

.inspiration-modal__title-row {
  display: flex;
  flex-direction: row;
  gap: 1.2rem;
  align-items: flex-start;
  justify-content: flex-start;
  flex-shrink: 0;
  width: 100%;
  position: relative;
  padding-right: 6rem;
}

.inspiration-modal__title {
  color: var(--black);
  text-align: left;
  font-family: var(--font-primary);
  font-size: 2.8rem;
  line-height: 110%;
  letter-spacing: -0.02em;
  font-weight: 600;
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-overflow: ellipsis;
  overflow: hidden;
  margin: 0;
}

.inspiration-modal__description {
  padding: 0 5.2rem 0 0;
  display: flex;
  flex-direction: row;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
}

.inspiration-modal__description-text {
  color: var(--black);
  text-align: left;
  font-family: var(--font-primary);
  font-size: 1.5rem;
  line-height: 145%;
  letter-spacing: -0.02em;
  font-weight: 400;
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 0;
}

.inspiration-modal__gallery {
  display: flex;
  flex-direction: row;
  gap: 0.8rem;
  align-items: flex-start;
  justify-content: flex-start;
  flex-shrink: 0;
  position: relative;
  overflow-x: auto;
  width: 100%;
  margin: 0 -2.4rem;
  padding: 0 2.4rem;
  width: 46.4rem;
}

.inspiration-modal__gallery::-webkit-scrollbar {
  display: none;
}

.inspiration-modal__gallery-item {
  background: var(--black-50);
  border-radius: 1.2rem;
  flex-shrink: 0;
  width: 20rem;
  height: 24rem;
  position: relative;
  overflow: hidden;
}

.inspiration-modal__gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1.2rem;
}

.inspiration-modal__prompt {
  background: var(--black-50);
  border-radius: 1.2rem;
  border-left: 0.4rem solid var(--black-800);
  padding: 1.4rem 1.4rem 1.4rem 2.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
}

.inspiration-modal__prompt-header {
  display: flex;
  flex-direction: row;
  gap: 2.4rem;
  align-items: flex-start;
  justify-content: center;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
}

.inspiration-modal__prompt-title {
  color: var(--black);
  text-align: left;
  font-family: var(--font-primary);
  font-size: 1.3rem;
  letter-spacing: 0.01em;
  font-weight: 700;
  text-transform: uppercase;
  position: relative;
  align-self: stretch;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 0;
}

.inspiration-modal__copy-btn {
  background: none;
  border: none;
  flex-shrink: 0;
  width: 2.4rem;
  height: 2.4rem;
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.4rem;
  transition: background-color 0.3s ease;
}

.inspiration-modal__copy-btn:hover {
  background: var(--black-100);
}

.inspiration-modal__copy-icon {
  width: 1.8rem;
  height: 1.8rem;
  color: var(--black);
}

.inspiration-modal__prompt-content {
  padding: 0 4.8rem 0 0;
  flex-shrink: 0;
  position: relative;
}

.inspiration-modal__prompt-content p {
  margin: 0;
  color: var(--black);
  text-align: left;
  font-family: var(--font-family);
  font-size: 1.3rem;
  line-height: 145%;
  letter-spacing: -0.02em;
  font-weight: 400;
  position: relative;
  margin: 0;
} 

.inspiration-modal__hashtags {
  color: var(--black-400);
  text-align: left;
  font-family: var(--font-family);
  font-size: 1.3rem;
  letter-spacing: -0.02em;
  font-weight: 400;
  position: relative;
  align-self: stretch;
  min-height: 1.4rem;
  max-height: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-overflow: ellipsis;
  margin-top: auto;
  padding-top: 2.4rem;
  gap: 0.5rem;
}

/* Modal Tablet Responsive Design - 1089px */
@media screen and (max-width: 1089px) {
  .modal__container {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    max-width: 100%;
    border-radius: 0;
  }
  
  .modal__content {
    border-radius: 0;
  }
  
  .inspiration-modal {
    border-radius: 0;
    padding: 2rem;
  }
  
  .inspiration-modal__gallery {
    gap: 1.2rem;
  }
  
  .inspiration-modal__gallery-item {
    width: auto;
    height: 21.6rem;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    aspect-ratio: 5/6;
  }
  
  .inspiration-modal__title {
    font-size: 2rem;
  }
  
  .inspiration-modal__description {
    padding-right: 0;
  }
  
  .inspiration-modal__prompt-content {
    padding-right: 0;
  }
}

/* Inspiration Featured Section - BEM Methodology */

/* Inspiration Featured Block */
.inspiration-featured {
  background: var(--white);
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.inspiration-featured__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}

.inspiration-featured__content {
  background: linear-gradient(to left, var(--black), var(--black));
  border-radius: 3.2rem;
  padding: 3.2rem;
  display: flex;
  flex-direction: row;
  gap: 1rem;
  align-items: flex-end;
  justify-content: flex-start;
  flex-shrink: 0;
  height: 80rem;
  position: relative;
  overflow: hidden;
  width: 100%;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.inspiration-featured__content:hover {
  transform: translateY(-0.4rem);
}

.inspiration-featured__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 3.2rem;
  z-index: 1;
}

.inspiration-featured__card {
  background: var(--white);
  border-radius: 1.6rem;
  padding: 1.2rem 1.2rem 1.6rem 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  align-items: flex-start;
  justify-content: flex-start;
  flex: 1;
  position: relative;
  z-index: 2;
  max-width: 50rem;
}

.inspiration-featured__card-content {
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: flex-start;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
}

.inspiration-featured__header {
  display: flex;
  flex-direction: row;
  gap: 1.2rem;
  align-items: flex-start;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  height: 3.2rem;
  position: relative;
}

.inspiration-featured__title {
  color: var(--black);
  text-align: left;
  font-family: var(--font-primary);
  font-size: 1.6rem;
  letter-spacing: -0.02em;
  font-weight: 600;
  position: relative;
  align-self: stretch;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 0;
}

.inspiration-featured__view-btn {
  background: none;
  border: none;
  border-radius: 2.4rem;
  flex-shrink: 0;
  width: 3.2rem;
  height: 3.2rem;
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.inspiration-featured__view-btn:hover {
  background: var(--red-50);
  transform: scale(1.1);
}

.inspiration-featured__view-btn svg {
  width: 3.2rem;
  height: 3.2rem;
  transition: all 0.3s ease;
}

.inspiration-featured__view-btn:hover svg path {
  stroke: var(--red);
}

.inspiration-featured__description {
  padding: 0 4rem 0 0; 
  display: flex;
  flex-direction: row;
  gap: 1rem;
  align-items: flex-start;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
}

.inspiration-featured__description-text {
  color: var(--black);
  text-align: left;
  font-family: var(--font-family);
  font-size: 1.3rem;
  letter-spacing: -0.02em;
  font-weight: 400;
  position: relative;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 0;
}

.inspiration-featured__hashtags {
  color: var(--black-400);
  text-align: left;
  font-family: var(--font-family);
  font-size: 1.1rem;
  letter-spacing: -0.02em;
  font-weight: 400;
  position: relative;
  align-self: stretch;
  max-height: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-overflow: ellipsis;
  overflow: hidden;
  gap: 0.5rem;
}

.inspiration-featured__space {
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  align-items: flex-start;
  justify-content: flex-start;
  align-self: stretch;
  flex: 1;
  position: relative;
  z-index: 2;
}

.inspiration-featured__space--left {
  order: 1;
}

.inspiration-featured__space--right {
  order: 3;
}

/* Inspiration Featured Tablet Responsive Design - 1089px */
@media screen and (max-width: 1089px) {
  .inspiration-featured {
    padding: 2rem 0 0;
  }
  
  .inspiration-featured__content {
    border-radius: 2.4rem;
    height: 50rem;
    padding: 1.2rem;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
  }

  .inspiration-featured__background {
    border-radius: 0;
  }
  
  .inspiration-featured__card {
    max-width: 100%;
    width: 100%;
    flex: 0;
  }
  
  .inspiration-featured__space {
    display: none;
  }
  
  .inspiration-featured__title {
    font-size: 1.6rem;
    font-weight: 600;
    letter-spacing: -0.032rem;
  }
  
  .inspiration-featured__description {
    padding-right: 0;
  }

  .inspiration-featured__view-btn svg {
    flex: 0 0 3.2rem;
  }
}

/* ========================================
   Legal Navigation Section
   ======================================== */

.legal-nav {
  background: #ffffff;
  position: relative;
}

.legal-nav__container {
  padding: 3.2rem;
  display: flex;
  flex-direction: row;
  gap: 1.2rem;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}

.legal-nav__menu {
  display: flex;
  flex-direction: row;
  gap: 1.2rem;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
}

.legal-nav__item {
  background: var(--white, #ffffff);
  border-radius: 3.2rem;
  border: 0.15rem solid var(--black-100, #e6e6e6);
  padding: 0.4rem 1.6rem;
  display: flex;
  flex-direction: row;
  gap: 0.6rem;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  text-decoration: none;
  transition: all 0.3s ease;
}

.legal-nav__item--active {
  background: var(--black, #121212);
  border-color: var(--black, #121212);
}

.legal-nav__item:hover {
  background: var(--black, #121212);
  border-color: var(--black, #121212);
}

.legal-nav__item:hover .legal-nav__text {
  color: var(--white, #ffffff);
}

.legal-nav__text {
  color: var(--black, #121212);
  text-align: center;
  font-family: var(--font-primary);
  font-size: 1.3rem;
  letter-spacing: 0.01em;
  font-weight: 700;
  text-transform: uppercase;
  position: relative;
  min-height: 3.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease;
}

.legal-nav__item--active .legal-nav__text {
  color: var(--white, #ffffff);
}

/* Tablet styles */
@media screen and (max-width: 1089px) {
  .legal-nav__container {
    padding: 2.4rem 2rem;
    gap: 0.8rem;
  }

  .legal-nav__menu {
    margin: 0 -1.6rem;
    padding: 0 1.6rem;
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-snap-type: x mandatory;
    scroll-snap-align: start;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    white-space: nowrap;
    padding-bottom: 0.8rem;
    gap: 0.8rem;
  }

  .legal-nav__menu::-webkit-scrollbar {
    display: none;
  }

  .legal-nav__text {
    font-size: 1.2rem;
    min-height: 2.8rem;
  }

  .legal-nav__item {
    padding: 0.3rem 1.2rem;
  }

  .legal-content__content {
    gap: 0;
  }
}

/* ========================================
   Legal Content Section
   ======================================== */

.legal-content {
  background: #ffffff;
  padding: 4rem 3.2rem 8rem 3.2rem;
  position: relative;
}

.legal-content__container {
  max-width: 90rem;
} 

.legal-content__content {
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: center;
  justify-content: flex-start;
}

/* Content Block Styling */
.legal-content__content > div,
.legal-content__content > section {
  padding: 0 46.4rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  align-items: center;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
}

/* Headings in Legal Content */
.legal-content h1,
.legal-content h2,
.legal-content h3 {
  color: var(--black, #121212);
  text-align: left;
  font-family: var(--font-primary);
  line-height: 100%;
  letter-spacing: 0.01em;
  font-weight: 600;
  text-transform: uppercase;
  position: relative;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.legal-content h1 {
  font-size: 3.2rem;
  min-height: 4.8rem;
}

.legal-content h2 {
  margin-top: 4rem;
  margin-bottom: 1.6rem;
  font-size: 2.8rem;
  min-height: 4.2rem;
}


.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content h3 {
  font-size: 2.4rem;
  min-height: 3.6rem;
}

/* Paragraphs in Legal Content */
.legal-content p {
  color: var(--black, #121212);
  text-align: left;
  font-family: var(--font-primary);
  font-size: 1.5rem;
  line-height: 155%;
  letter-spacing: -0.02em;
  font-weight: 500;
  position: relative;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 0;
}

/* Bold text styling */
.legal-content strong,
.legal-content b {
  font-family: var(--font-primary);
  font-weight: 700;
}

/* Lists in Legal Content */
.legal-content ul,
.legal-content ol {
  color: var(--black, #121212);
  font-family: var(--font-primary);
  font-size: 1.5rem;
  line-height: 155%;
  letter-spacing: -0.02em;
  font-weight: 500;
  align-self: stretch;
  padding-left: 2rem;
}

.legal-content li {
  margin-bottom: 0.8rem;
}

/* Tablet styles */
@media screen and (max-width: 1089px) {
  .legal-content {
    padding: 0 1.6rem;
  }

  .legal-content__content {
    gap: 0;
  }

  .legal-content__content > div,
  .legal-content__content > section {
    padding: 0;
    gap: 1.2rem;
  }

  .legal-content h1 {
    font-size: 2.4rem;
    min-height: 3.6rem;
  }

  .legal-content h2 {
    margin-top: 3.2rem;
    margin-bottom: 1.6rem;
    font-size: 2.4rem;
    font-weight: 600;
    line-height: 100%; /* 2.4rem */
    letter-spacing: 0.024rem;
  }

  .legal-content h3 {
    font-size: 1.8rem;
    min-height: 2.7rem;
  }

  .legal-content ul,
  .legal-content ol {
    padding-left: 1.6rem;
  }
}

/**Contact Form 7 Styles*/
.wpcf7-form-control[type="text"],
.wpcf7-form-control[type="email"],
.wpcf7-form-control[type="tel"],
.wpcf7-form-control[type="number"],
.wpcf7-form-control[type="date"],
.wpcf7-form-control[type="time"],
.wpcf7-form-control[type="url"],
.wpcf7-form-control.wpcf7-textarea {
  border-radius: 1.6rem;
  border: 0.15rem solid var(--black-100, #e6e6e6);
  padding: 1.6rem 2rem;
  display: flex;
  flex-direction: row;
  gap: 0;
  align-items: flex-start;
  justify-content: center;
  align-self: stretch;
  flex-shrink: 0;
  height: 5.6rem;
  min-width: 40rem;
  position: relative;
  font-family: var(--font-primary);
  font-size: 1.5rem;
  letter-spacing: 0.01em;
  font-weight: 500;
  line-height: 100%;
  transition: border-color 0.3s ease;
}

.wpcf7-form-control.wpcf7-textarea {
  height: 10rem;
}

.wpcf7-form-control.wpcf7-submit {
  background: var(--red);
  border: none;
  border-radius: 4.8rem;
  padding: 2rem 2.4rem;
  display: flex;
  flex-direction: row;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  transition: background-color 0.3s ease;
  color: var(--white);
  font-family: var(--font-primary);
  font-size: 1.5rem;
  line-height: 100%;
  letter-spacing: -0.02em;
  font-weight: 500;
  text-transform: uppercase;
  min-height: 2.4rem;
  cursor: pointer;
}

.wpcf7-form-control.wpcf7-submit:hover {
  background: var(--red-600);
}

.wpcf7-form-control.wpcf7-acceptance label {
  padding: 1rem 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  font-family: var(--font-primary);
  font-size: 1.2rem;
  line-height: 155%;
  letter-spacing: -0.02em;
  font-weight: 500;
  color: var(--black-600);
  cursor: pointer;
  gap: 1rem;
}

.wpcf7-form-control.wpcf7-acceptance label input[type="checkbox"] {
  width: 1.6rem;
  height: 1.6rem;
}

.wpcf7-list-item {
  display: block !important;
  width: 100% !important;
}

.wpcf7-form-control-wrap {
  margin-bottom: 0.8rem;
  display: flex;
}

.wpcf7-form-control.wpcf7-acceptance label a {
  color: var(--red);
}

.ainterior-package-form,
.ainterior-contact-form {
  padding: 2.4rem;
  display: flex;
  flex-direction: column;
  gap: .8rem;
  justify-content: flex-start;
  height: 100%;
}

.ainterior-package-form__title,
.ainterior-contact-form__title {
  margin: 0;
  color: var(--black, #121212);
  font-family: var(--font-primary);
  font-size: 2.8rem;
  line-height: 110%;
  font-weight: 600;
}

.ainterior-package-form__price {
  margin: 0;
  color: var(--black, #121212);
  font-family: var(--font-primary);
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 135%;
  letter-spacing: -0.02em;
}

.ainterior-package-form .wpcf7-form-control,
.ainterior-contact-form .wpcf7-form-control { 
  min-width: 100%;
}

.ainterior-package-form .wpcf7-form-control input::placeholder,
.ainterior-contact-form .wpcf7-form-control input::placeholder {  
  color: var(--black-400, #999999);
}

.ainterior-package-form .wpcf7-form-control input:focus,
.ainterior-contact-form .wpcf7-form-control input:focus {
  border-color: var(--black, #121212);
}

.ainterior-package-form .wpcf7-form-control input:focus::placeholder,
.ainterior-contact-form .wpcf7-form-control input:focus::placeholder {
  color: var(--black, #121212);
}

body.page-template-page-chat {
  overflow-y: auto!important;
}

.chat-content {
  padding: 4rem 0;
  background: var(--white);
}

.chat-content__container {
  max-width: 100%;
}

.chat-content__wrapper {
  position: relative;
} 

.chat-content__body {
  position: relative;
  width: 100%;
  height: 100vh;
  border: none;
}

.chat-content__wrapper iframe {
  position: absolute!important;
  top: 0;
  left: 0;
  width: 100%!important;
  height: 100vh!important;
  border: none!important;
  position: absolute!important;
  border: 1px solid #ccc !important;
  overflow: hidden;
  border-radius: 24px;
}

.chat-content__title {
  margin: 0;
}

/* Contact Form Messages */
.ainterior-contact-form__message {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 2rem;
  min-height: 100%;
}

.ainterior-contact-form__message-icon {
  margin-bottom: 1.5rem;
  color: var(--green, #4CAF50);
}

.ainterior-contact-form__success .ainterior-contact-form__message-icon {
  color: var(--green, #4CAF50);
}

.ainterior-contact-form__error .ainterior-contact-form__message-icon {
  color: var(--red, #DE3B3B);
}

.ainterior-contact-form__message-text {
  font-family: var(--font-family-manrope);
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.4;
  color: var(--black, #121212);
  max-width: 400px;
}

.ainterior-contact-form__success .ainterior-contact-form__message-icon svg {
  height: 90px;
  width: 90px;
}