@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

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

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

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

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

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
}

body {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: #fcffeb;
  background-color: #0F1014;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  line-height: 0.85;
  text-transform: uppercase;
}
h1 small, h2 small, h3 small, h4 small, h5 small, h6 small {
  font-family: "Barlow Condensed", sans-serif;
  padding-top: 1rem;
  font-size: 1.25rem;
  color: inherit;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: block;
  line-height: 1.2;
  font-weight: 400;
}

::selection {
  background: rgba(230, 255, 0, 0.3);
  color: #000000;
}

.text-overlay-italic {
  font-family: "Barlow Condensed", sans-serif;
  font-style: italic;
  font-weight: 400;
  text-transform: uppercase;
  color: #ffffff;
  text-shadow: 2px 2px 0 #000000;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: #0F1014;
  border-bottom: 1px solid #2A2B32;
}
.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 72px;
}
.header__logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  line-height: 0;
}
.header__logo {
  display: block;
  width: auto;
  height: auto;
  max-width: 200px;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .header__logo {
    height: 35px;
    max-width: 150px;
  }
}
@media (max-width: 768px) {
  .header__nav {
    display: none;
  }
}
.header__nav-list {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.header__nav-item {
  display: flex;
  align-items: center;
}
.header__nav-link {
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: #fcffeb;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: color 150ms cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
}
.header__nav-link:hover {
  color: #E6FF00;
}
.header__nav-link.is-active {
  color: #E6FF00;
}
.header__menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  background: none;
  border: none;
  cursor: pointer;
}
@media (max-width: 768px) {
  .header__menu-toggle {
    display: flex;
  }
}
.header__menu-bar {
  display: block;
  width: 28px;
  height: 4px;
  background: #fcffeb;
  border-radius: 2px;
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.header__nav-contact {
  display: none;
}
@media (max-width: 768px) {
  .header__nav-contact {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 100%;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 2px solid #E6FF00;
  }
}
.header__nav-contact-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 0;
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: #fcffeb;
  text-decoration: none;
  transition: color 150ms cubic-bezier(0.4, 0, 0.2, 1);
}
.header__nav-contact-link svg {
  flex-shrink: 0;
  color: #E6FF00;
}
.header__nav-contact-link:hover {
  color: #E6FF00;
}
@media (max-width: 768px) {
  .header__nav.is-active {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 72px 0 0 0;
    background: #0F1014;
    z-index: 50;
    padding: 1.5rem 1.5rem 2rem;
    border-top: 4px solid #2A2B32;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .header__nav.is-active .header__nav-list {
    flex-direction: column;
    gap: 0;
    width: 100%;
  }
  .header__nav.is-active .header__nav-item {
    width: 100%;
    border-bottom: 1px solid #2A2B32;
  }
  .header__nav.is-active .header__nav-link {
    display: block;
    padding: 1rem 0;
    font-size: 1.25rem;
  }
}
.header__menu-toggle.is-active .header__menu-bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.header__menu-toggle.is-active .header__menu-bar:nth-child(2) {
  opacity: 0;
}
.header__menu-toggle.is-active .header__menu-bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

main {
  padding-top: 72px;
}

body.no-scroll {
  overflow: hidden;
}

.footer {
  background: #1C1D22;
  border-top: 1px solid #2A2B32;
  padding: 4rem 0 2rem;
}
.footer__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
@media (max-width: 1024px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
@media (max-width: 1024px) {
  .footer__brand {
    grid-column: 1/-1;
  }
}
.footer__logo {
  margin-bottom: 1rem;
  line-height: 0;
}
.footer__logo-img {
  display: block;
  width: auto;
  height: 47px;
  max-width: 200px;
}
.footer__description {
  font-size: 0.875rem;
  color: #f0f2e3;
  line-height: 1.5;
  max-width: 360px;
}
.footer__heading {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 400;
  color: #fcffeb;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.footer__link-list {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.footer__link {
  font-size: 0.75rem;
  color: #f0f2e3;
  transition: color 250ms cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  text-transform: uppercase;
}
.footer__link:hover {
  color: #E6FF00;
}
.footer__link--disabled {
  opacity: 0.3;
  cursor: default;
  pointer-events: none;
}
.footer__contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: #f0f2e3;
  margin-bottom: 0.25rem;
}
.footer__contact-item svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: #E6FF00;
}
.footer__contact-link {
  color: inherit;
  text-decoration: none;
  transition: color 150ms cubic-bezier(0.4, 0, 0.2, 1);
}
.footer__contact-link:hover {
  color: #E6FF00;
}
.footer__bottom {
  border-top: 1px solid #2A2B32;
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
.footer__legal-menu {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer__legal-link {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: #f0f2e3;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none;
  transition: color 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.footer__legal-link:hover {
  color: #E6FF00;
}
.footer__legal-sep {
  font-size: 0.75rem;
  color: #f0f2e3;
  user-select: none;
}
.footer__copyright {
  font-size: 0.75rem;
  color: #f0f2e3;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  order: 2;
}
.footer__social {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.5rem;
}
.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: #f0f2e3;
  transition: color 250ms cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
}
.footer__social-link:hover {
  color: #E6FF00;
}
.footer__social-link svg {
  width: 26px;
  height: 26px;
}

.btn-brutal {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 2.5rem;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  border: none;
  border-radius: 6px;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  background: #E6FF00;
  color: #000000;
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.3);
  max-width: 100%;
}
.btn-brutal:hover {
  background: #CCDF00;
  transform: translate(4px, 4px);
  box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.3);
}
.btn-brutal:active {
  transform: translate(8px, 8px);
  box-shadow: none;
}
.btn-brutal--secondary {
  background: transparent;
  color: #fcffeb;
  border: 2px solid #2A2B32;
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.3);
}
.btn-brutal--secondary:hover {
  background: rgba(230, 255, 0, 0.1);
  border-color: #E6FF00;
  transform: translate(4px, 4px);
  box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.3);
}
.btn-brutal--full {
  width: 100%;
}
@media (max-width: 480px) {
  .btn-brutal {
    padding: 0.875rem 1.25rem;
    font-size: 1rem;
  }
}

.section-heading {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 4rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #fcffeb;
  line-height: 0.85;
  letter-spacing: -0.02em;
  margin-bottom: 3rem;
  padding-left: 1.5rem;
  border-left: 4px solid #E6FF00;
}
@media (max-width: 768px) {
  .section-heading {
    font-size: 3rem;
  }
}
@media (max-width: 480px) {
  .section-heading {
    font-size: 2rem;
  }
}
.section-heading__accent {
  color: #E6FF00;
  display: block;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #0F1014;
  border-top: 4px solid #E6FF00;
  padding: 1.5rem 0;
  transition: transform 250ms cubic-bezier(0.4, 0, 0.2, 1), opacity 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.cookie-banner.is-hidden {
  display: none;
}
.cookie-banner__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: relative;
}
@media (max-width: 768px) {
  .cookie-banner__container {
    gap: 1rem;
  }
}
.cookie-banner__close {
  position: absolute;
  top: -0.75rem;
  right: 1.5rem;
  width: 32px;
  height: 32px;
  background: #0F1014;
  border: 1px solid #fcffeb;
  border-radius: 6px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 150ms cubic-bezier(0.4, 0, 0.2, 1);
}
.cookie-banner__close:hover {
  background: #E6FF00;
}
.cookie-banner__close:hover .cookie-banner__close-bar {
  background: #000000;
}
.cookie-banner__close:focus-visible {
  outline: 2px solid #E6FF00;
  outline-offset: 2px;
}
.cookie-banner__close-bar {
  position: absolute;
  width: 16px;
  height: 2px;
  background: #fcffeb;
  transition: background 150ms cubic-bezier(0.4, 0, 0.2, 1);
}
.cookie-banner__close-bar:first-child {
  transform: rotate(45deg);
}
.cookie-banner__close-bar:last-child {
  transform: rotate(-45deg);
}
.cookie-banner__content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.cookie-banner__tag {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #E6FF00;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.cookie-banner__text {
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  color: #f0f2e3;
  line-height: 1.5;
  max-width: 720px;
}
.cookie-banner__policy-link {
  color: #E6FF00;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: opacity 150ms cubic-bezier(0.4, 0, 0.2, 1);
}
.cookie-banner__policy-link:hover {
  opacity: 0.7;
}
.cookie-banner__categories {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
@media (max-width: 768px) {
  .cookie-banner__categories {
    flex-direction: column;
  }
}
.cookie-banner__category {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border: 2px solid rgba(42, 43, 50, 0.2);
  cursor: pointer;
  transition: border-color 150ms cubic-bezier(0.4, 0, 0.2, 1), background 150ms cubic-bezier(0.4, 0, 0.2, 1);
  flex: 1;
  min-width: 200px;
}
.cookie-banner__category:hover {
  border-color: rgba(42, 43, 50, 0.5);
  background: rgba(42, 43, 50, 0.03);
}
.cookie-banner__category-check {
  position: relative;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cookie-banner__category-check.is-checked .cookie-banner__checkmark {
  background: #E6FF00;
  border-color: #E6FF00;
}
.cookie-banner__category-check.is-checked .cookie-banner__checkmark::after {
  opacity: 1;
}
.cookie-banner__checkbox {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}
.cookie-banner__checkbox:checked + .cookie-banner__checkmark {
  background: #E6FF00;
  border-color: #E6FF00;
}
.cookie-banner__checkbox:checked + .cookie-banner__checkmark::after {
  opacity: 1;
}
.cookie-banner__checkbox:disabled + .cookie-banner__checkmark {
  opacity: 0.5;
  cursor: not-allowed;
}
.cookie-banner__checkbox:focus-visible + .cookie-banner__checkmark {
  outline: 2px solid #E6FF00;
  outline-offset: 2px;
}
.cookie-banner__checkmark {
  width: 22px;
  height: 22px;
  border: 2px solid #2A2B32;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 150ms cubic-bezier(0.4, 0, 0.2, 1), border-color 150ms cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}
.cookie-banner__checkmark::after {
  content: "";
  position: absolute;
  width: 6px;
  height: 10px;
  border: solid #000000;
  border-width: 0 2.5px 2.5px 0;
  transform: rotate(45deg) translateY(-1px);
  opacity: 0;
  transition: opacity 150ms cubic-bezier(0.4, 0, 0.2, 1);
}
.cookie-banner__category-info {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.cookie-banner__category-name {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  color: #fcffeb;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.cookie-banner__category-desc {
  font-family: "Inter", sans-serif;
  font-size: 0.75rem;
  color: #f0f2e3;
  line-height: 1.5;
}
.cookie-banner__actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
@media (max-width: 480px) {
  .cookie-banner__actions {
    flex-direction: column;
    width: 100%;
  }
}
.cookie-banner__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.6rem 1.25rem;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  cursor: pointer;
  border: 2px solid #2A2B32;
  background: #0F1014;
  color: #fcffeb;
  transition: background 150ms cubic-bezier(0.4, 0, 0.2, 1), color 150ms cubic-bezier(0.4, 0, 0.2, 1), border-color 150ms cubic-bezier(0.4, 0, 0.2, 1);
  line-height: 1;
  white-space: nowrap;
}
.cookie-banner__btn:hover {
  background: #E6FF00;
  color: #000000;
  border-color: #E6FF00;
}
.cookie-banner__btn:focus-visible {
  outline: 2px solid #E6FF00;
  outline-offset: 2px;
}
.cookie-banner__btn--reject {
  border-color: rgba(42, 43, 50, 0.3);
  color: rgba(252, 255, 235, 0.6);
}
.cookie-banner__btn--reject:hover {
  background: transparent;
  border-color: rgba(42, 43, 50, 0.6);
  color: rgba(252, 255, 235, 0.8);
}
.cookie-banner__btn--save {
  border-color: #E6FF00;
  color: #E6FF00;
}
.cookie-banner__btn--save:hover {
  background: #E6FF00;
  color: #000000;
}
.cookie-banner__btn--accept {
  background: #E6FF00;
  color: #000000;
  border-color: #E6FF00;
}
.cookie-banner__btn--accept:hover {
  background: #fcffeb;
  border-color: #fcffeb;
  color: #000000;
}
@media (max-width: 480px) {
  .cookie-banner__btn {
    width: 100%;
    padding: 0.75rem 1rem;
  }
}

.quote-form {
  padding: 6rem 0;
  background: #1C1D22;
  border-top: 2px solid #2A2B32;
  border-bottom: 2px solid #2A2B32;
}
@media (max-width: 768px) {
  .quote-form {
    padding: 4rem 0;
  }
}
.quote-form__container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (max-width: 480px) {
  .quote-form__container {
    padding: 0 0.75rem;
  }
}
.quote-form__inner {
  background: #1C1D22;
  border: 1px solid #2A2B32;
  border-radius: 6px;
  padding: 2.5rem;
}
@media (max-width: 768px) {
  .quote-form__inner {
    padding: 1.5rem 1rem;
  }
}
@media (max-width: 480px) {
  .quote-form__inner {
    padding: 1.25rem 0.75rem;
  }
}
.quote-form__header {
  margin-bottom: 3rem;
  text-align: center;
}
.quote-form__title {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 4rem;
  font-weight: 900;
  color: #fcffeb;
  text-transform: uppercase;
  line-height: 0.85;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .quote-form__title {
    font-size: 3rem;
  }
}
@media (max-width: 480px) {
  .quote-form__title {
    font-size: 2rem;
  }
}
.quote-form__title-accent {
  color: #E6FF00;
}
.quote-form__subtitle {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: #f0f2e3;
  line-height: 1.5;
  max-width: 600px;
  margin: 0 auto;
}
.quote-form__includes {
  margin-top: 1.5rem;
  padding: 1rem 1.25rem;
  background: rgba(230, 255, 0, 0.06);
  border: 1px solid rgba(230, 255, 0, 0.15);
  border-radius: 4px;
  text-align: left;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.quote-form__includes-title {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  color: #E6FF00;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.5rem;
}
.quote-form__includes-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.quote-form__includes-list li {
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  color: #f0f2e3;
  line-height: 1.5;
  padding-left: 1rem;
  position: relative;
}
.quote-form__includes-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  background: #E6FF00;
  border-radius: 50%;
  opacity: 0.7;
}
.quote-form__form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.quote-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
@media (max-width: 768px) {
  .quote-form__grid {
    grid-template-columns: 1fr;
  }
}
.quote-form__field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.quote-form__field--full {
  grid-column: 1/-1;
}
.quote-form__label {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  color: #fcffeb;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.quote-form__label--centered {
  text-align: center;
  font-size: 1.8rem;
}
@media (max-width: 480px) {
  .quote-form__label--centered {
    font-size: 1.4rem;
  }
}
.quote-form__required {
  color: #E6FF00;
}
.quote-form__help {
  font-family: "Inter", sans-serif;
  font-size: 0.75rem;
  color: #f0f2e3;
  line-height: 1.5;
}
.quote-form__help--subtitle {
  display: block;
  text-align: center;
  margin-top: -0.2rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
}
.quote-form__help--file-info {
  display: block;
  text-align: center;
  margin-top: -0.4rem;
  margin-bottom: 0.75rem;
  font-size: 0.75rem;
  line-height: 1.5;
}
.quote-form__input {
  width: 100%;
  padding: 1rem 1.25rem;
  background: #0F1014;
  border: 2px solid #2A2B32;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: #fcffeb;
  outline: none;
  transition: border-color 150ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 150ms cubic-bezier(0.4, 0, 0.2, 1);
}
.quote-form__input::placeholder {
  color: #fcffeb;
  opacity: 0.3;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
}
.quote-form__input:hover {
  border-color: rgba(230, 255, 0, 0.5);
}
.quote-form__input:focus {
  border-color: #E6FF00;
  box-shadow: 0 0 0 3px rgba(230, 255, 0, 0.15), 0 0 12px rgba(230, 255, 0, 0.08);
}
.quote-form__input.is-invalid {
  border-color: #ff0000 !important;
  box-shadow: 0 0 0 3px rgba(255, 0, 0, 0.15);
}
.quote-form__input {
  appearance: none;
  -webkit-appearance: none;
}
.quote-form__select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.25rem center;
  padding-right: 2.75rem;
}
.quote-form__select option {
  background: #0F1014;
  color: #fcffeb;
}
.quote-form__textarea {
  resize: vertical;
  min-height: 80px;
}
.quote-form__file-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
}
.quote-form__file {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}
.quote-form__file-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.6rem 1.25rem;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.875rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1;
  cursor: pointer;
  border: 2px solid #2A2B32;
  border-radius: 6px;
  background: transparent;
  color: #fcffeb;
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.3);
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.quote-form__file-btn:hover {
  background: rgba(230, 255, 0, 0.1);
  border-color: #E6FF00;
  transform: translate(4px, 4px);
  box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.3);
}
.quote-form__file-btn:active {
  transform: translate(8px, 8px);
  box-shadow: none;
}
.quote-form__file-name {
  font-family: "JetBrains Mono", "Courier New", monospace;
  font-size: 0.75rem;
  color: #E6FF00;
  opacity: 0.8;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 280px;
}
@media (max-width: 480px) {
  .quote-form__file-name {
    max-width: 100%;
  }
}
.quote-form__checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  cursor: pointer;
}
.quote-form__checkbox {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.quote-form__checkbox-custom {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  min-width: 22px;
  background: #0F1014;
  border: 2px solid #2A2B32;
  transition: border-color 150ms cubic-bezier(0.4, 0, 0.2, 1), background 150ms cubic-bezier(0.4, 0, 0.2, 1);
}
.quote-form__checkbox-custom::after {
  content: "";
  width: 10px;
  height: 10px;
  background: #E6FF00;
  opacity: 0;
  transition: opacity 150ms cubic-bezier(0.4, 0, 0.2, 1);
}
.quote-form__checkbox:checked + .quote-form__checkbox-custom {
  border-color: #E6FF00;
}
.quote-form__checkbox:checked + .quote-form__checkbox-custom::after {
  opacity: 1;
}
.quote-form__checkbox:focus + .quote-form__checkbox-custom {
  border-color: #E6FF00;
}
.quote-form__checkbox-text {
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  color: #f0f2e3;
  line-height: 1.5;
  word-break: break-word;
}
.quote-form__checkbox-text a {
  color: #E6FF00;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.quote-form__checkbox-text a:hover {
  opacity: 0.8;
}
.quote-form__size-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  width: 100%;
  max-width: 100%;
  margin: 20px 0;
}
@media (min-width: 480px) {
  .quote-form__size-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 768px) {
  .quote-form__size-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}
.quote-form__size-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
}
.quote-form__size-label {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  color: #fcffeb;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-align: center;
}
.quote-form__size-input {
  width: 100%;
  max-width: 6rem;
  min-height: 44px;
  text-align: center;
  padding: 0.5rem;
  box-sizing: border-box;
  -moz-appearance: textfield;
}
.quote-form__size-input::-webkit-inner-spin-button, .quote-form__size-input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.quote-form__total-wrap {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  margin: 0 0 5px;
}
.quote-form__total-label {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: #fcffeb;
  line-height: 1;
  letter-spacing: -0.02em;
  white-space: nowrap;
}
.quote-form__total-value {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: #fcffeb;
  line-height: 1;
  letter-spacing: -0.02em;
  transition: color 150ms cubic-bezier(0.4, 0, 0.2, 1);
}
.quote-form__total-value.is-warning {
  color: #ff0000;
}
.quote-form__total-helper {
  display: none;
  width: 100%;
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 0.75rem;
  color: #fcffeb;
  opacity: 0.55;
  line-height: 1.5;
  margin-top: -0.5rem;
  margin-bottom: 0.75rem;
}
.quote-form__total-helper.is-visible {
  display: block;
}
.quote-form__error {
  font-family: "JetBrains Mono", "Courier New", monospace;
  font-size: 0.75rem;
  color: #ff0000;
  min-height: 1.2em;
  opacity: 0;
  transition: opacity 150ms cubic-bezier(0.4, 0, 0.2, 1);
}
.quote-form__error.is-visible {
  opacity: 1;
}
.quote-form__trust {
  text-align: center;
  font-family: "Inter", sans-serif;
  font-size: 0.75rem;
  color: #f0f2e3;
  margin-top: 0.5rem;
}
.quote-form__success {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: #0F1014;
  border: 2px solid #E6FF00;
}
.quote-form__success svg {
  flex-shrink: 0;
}
.quote-form__success.is-hidden {
  display: none;
}
.quote-form__success-title {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #E6FF00;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.25rem;
}
.quote-form__success-sub {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: #f0f2e3;
}
.quote-form .form-spinner {
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 3px solid rgba(252, 255, 235, 0.3);
  border-top-color: #fcffeb;
  border-radius: 50%;
  animation: form-spin 0.6s linear infinite;
  vertical-align: middle;
  margin-right: 0.5rem;
}
@keyframes form-spin {
  to {
    transform: rotate(360deg);
  }
}
.quote-form .btn-brutal:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}
.quote-form .btn-brutal.is-loading {
  pointer-events: none;
  opacity: 0.8;
}
.quote-form .btn-brutal.is-loading svg {
  display: none;
}
.quote-form__feedback-text {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  color: #E6FF00;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-align: center;
  padding: 0.5rem 0;
  animation: feedback-pulse 1.2s ease-in-out infinite;
}
@keyframes feedback-pulse {
  0%, 100% {
    opacity: 0.6;
  }
  50% {
    opacity: 1;
  }
}
.quote-form__error-msg {
  padding: 1.5rem;
  background: #0F1014;
  border: 2px solid #ff0000;
  text-align: center;
}
.quote-form__error-msg p {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #ff0000;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.quote-form__error-msg.is-hidden {
  display: none;
}

.size-guide-wrapper {
  margin-bottom: 1rem;
}

.size-guide-accordion {
  background: none;
  border: none;
  padding: 0;
  display: block;
  text-align: right;
  width: 100%;
}

.size-guide-trigger {
  list-style: none;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #fcffeb;
  transition: color 150ms cubic-bezier(0.4, 0, 0.2, 1);
  max-width: 100%;
  word-break: break-word;
  text-align: left;
}
.size-guide-trigger::-webkit-details-marker {
  display: none;
}
.size-guide-trigger:hover {
  color: #E6FF00;
}
@media (max-width: 480px) {
  .size-guide-trigger {
    font-size: 0.75rem;
  }
}

.size-guide-arrow {
  flex-shrink: 0;
  transition: transform 250ms cubic-bezier(0.4, 0, 0.2, 1);
  color: currentColor;
}

.size-guide-accordion[open] .size-guide-arrow {
  transform: rotate(180deg);
}

.size-guide-content {
  margin-top: 1rem;
  padding: 1rem;
  background: #1C1D22;
  border: 1px solid #2A2B32;
  border-radius: 4px;
  max-width: 100%;
  overflow-x: auto;
}

.size-guide-table {
  width: 100%;
  border-collapse: collapse;
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  color: #fcffeb;
}
.size-guide-table th,
.size-guide-table td {
  padding: 12px 8px;
  text-align: left;
  border-bottom: 1px solid #2A2B32;
}
.size-guide-table th {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #E6FF00;
  border-bottom: 2px solid #2A2B32;
}
.size-guide-table tbody tr:last-child td {
  border-bottom: none;
}
@media (max-width: 480px) {
  .size-guide-table {
    font-size: 0.75rem;
  }
  .size-guide-table th,
  .size-guide-table td {
    padding: 8px 4px;
  }
  .size-guide-table th {
    font-size: 0.6rem;
  }
}

.size-guide-b2b-tool {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #2A2B32;
}
.size-guide-b2b-tool .btn-text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  color: #E6FF00;
  text-decoration: underline;
  text-underline-offset: 2px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: opacity 150ms cubic-bezier(0.4, 0, 0.2, 1);
}
.size-guide-b2b-tool .btn-text-link:hover {
  opacity: 0.8;
}
.size-guide-b2b-tool .btn-text-link svg {
  flex-shrink: 0;
}

.value-ticker {
  width: 100%;
  overflow: hidden;
  background: #E6FF00;
  border-bottom: 1px solid #2A2B32;
  height: 44px;
  display: flex;
  align-items: center;
  position: relative;
}
.value-ticker__track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: value-ticker-scroll 35s linear infinite;
  will-change: transform;
}
.value-ticker__item {
  display: inline-flex;
  align-items: center;
  padding: 0 2rem;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #000000;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1;
  flex-shrink: 0;
}

@keyframes value-ticker-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
@keyframes social-proof-scroll {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(calc(-100% / var(--sp-cycles, 4)), 0, 0);
  }
}
.social-proof {
  position: relative;
  padding: 3rem 0;
  background: #0F1014;
}
.social-proof__header {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem 2rem;
}
.social-proof__heading {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #fcffeb;
  text-transform: uppercase;
  line-height: 0.85;
  letter-spacing: -0.02em;
  padding-left: 1.5rem;
  border-left: 4px solid #E6FF00;
}
@media (max-width: 768px) {
  .social-proof__heading {
    font-size: 1.5rem;
  }
}
.social-proof__carousel-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.social-proof__carousel-wrap:hover .social-proof__track, .social-proof__carousel-wrap:focus-within .social-proof__track {
  animation-play-state: paused;
}
.social-proof__track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: social-proof-scroll var(--sp-duration, 40s) linear infinite;
}
.social-proof__echo {
  display: contents;
}
.social-proof__card {
  flex: 0 0 auto;
  min-width: 0;
  line-height: 0;
  user-select: none;
  margin-right: 8px;
}
.social-proof__card img {
  display: block;
  height: 300px;
  width: auto;
  border-radius: 4px;
}
@media (max-width: 1200px) {
  .social-proof__card img {
    height: 290px;
  }
}
@media (max-width: 768px) {
  .social-proof__card img {
    height: 400px;
  }
}
@media (max-width: 576px) {
  .social-proof__card img {
    height: min(78vw, 560px);
  }
}
@media (prefers-reduced-motion: reduce) {
  .social-proof__track {
    animation: none;
  }
  .social-proof__carousel-wrap {
    overflow-x: auto;
  }
}

.faq-geo {
  padding: 5rem 0;
  background: #1C1D22;
  border-top: 2px solid #2A2B32;
  border-bottom: 2px solid #2A2B32;
}
@media (max-width: 768px) {
  .faq-geo {
    padding: 3rem 0;
  }
}
.faq-geo__container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.faq-geo__title {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: #fcffeb;
  text-transform: uppercase;
  line-height: 0.85;
  letter-spacing: -0.02em;
  margin-bottom: 2.5rem;
  padding-left: 1.5rem;
  border-left: 4px solid #E6FF00;
}
@media (max-width: 768px) {
  .faq-geo__title {
    font-size: 2rem;
  }
}
@media (max-width: 480px) {
  .faq-geo__title {
    font-size: 1.5rem;
  }
}
.faq-geo__list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.faq-geo__item {
  border: 1px solid #2A2B32;
  border-radius: 6px;
  background: #0F1014;
  transition: border-color 150ms cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-geo__item:hover {
  border-color: rgba(230, 255, 0, 0.4);
}
.faq-geo__item[open] {
  border-color: #E6FF00;
}
.faq-geo__question {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 1.5rem;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fcffeb;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  cursor: pointer;
  list-style: none;
  user-select: none;
}
.faq-geo__question::before {
  content: ">";
  color: #E6FF00;
  font-family: "JetBrains Mono", "Courier New", monospace;
  font-size: 1.5rem;
  font-weight: 700;
  transition: transform 150ms cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
}
.faq-geo__item[open] .faq-geo__question::before {
  transform: rotate(90deg);
}
.faq-geo__question::-webkit-details-marker {
  display: none;
}
.faq-geo__question::marker {
  display: none;
  content: "";
}
.faq-geo__question:hover {
  color: #E6FF00;
}
@media (max-width: 768px) {
  .faq-geo__question {
    font-size: 1rem;
    padding: 1rem 1.25rem;
  }
}
.faq-geo__answer {
  padding: 0 1.5rem 1.25rem;
  border-top: 1px solid rgba(42, 43, 50, 0.1);
}
.faq-geo__answer div {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: #f0f2e3;
  line-height: 1.5;
  padding-top: 1rem;
}
@media (max-width: 768px) {
  .faq-geo__answer {
    padding: 0 1.25rem 1rem;
  }
}

.whatsapp-chat {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  pointer-events: none; /* el contenedor no intercepta clics */
  /* ── Botón flotante (abajo) ── */
}
.whatsapp-chat__btn {
  order: 1; /* fuerza el botón abajo */
  width: 56px;
  height: 56px;
  border-radius: 6px;
  background: #E6FF00;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.3);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
  text-decoration: none;
  border: none;
  flex-shrink: 0;
  pointer-events: auto; /* siempre clicable aunque el contenedor tenga pointer-events: none */
}
.whatsapp-chat__btn:hover {
  background: #CCDF00;
  transform: scale(1.08);
  box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.3);
}
.whatsapp-chat__btn.is-active {
  transform: scale(0.92);
  box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.3);
}
.whatsapp-chat__icon {
  width: 30px;
  height: 30px;
  color: #000000;
}
.whatsapp-chat {
  /* ── Punto de estado ── */
}
.whatsapp-chat__status {
  position: absolute;
  bottom: 2px;
  right: 2px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #25d366;
  border: 2.5px solid #fff;
  box-shadow: 0 0 0 2px rgba(37, 211, 102, 0.3);
  animation: wa-pulse 2s infinite;
}
@keyframes wa-pulse {
  0%, 100% {
    box-shadow: 0 0 0 2px rgba(37, 211, 102, 0.3);
  }
  50% {
    box-shadow: 0 0 0 6px rgba(37, 211, 102, 0.08);
  }
}
.whatsapp-chat {
  /* ── Popup (se abre hacia arriba) ── */
}
.whatsapp-chat__popup {
  width: 340px;
  max-width: calc(100vw - 48px);
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.18);
  transform-origin: bottom center;
  transform: scale(0.6) translateY(20px);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.25s ease, visibility 0.25s ease;
  pointer-events: none; /* cerrado: no intercepta clics */
}
.whatsapp-chat__popup.is-open {
  transform: scale(1) translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto; /* abierto: interactivo */
}
.whatsapp-chat {
  /* ── Header ── */
}
.whatsapp-chat__header {
  background: #075e54;
  padding: 16px;
  color: #fff;
}
.whatsapp-chat__header-content {
  display: flex;
  align-items: center;
  gap: 12px;
}
.whatsapp-chat__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
}
.whatsapp-chat__avatar svg {
  width: 22px;
  height: 22px;
  color: #fff;
}
.whatsapp-chat__status-dot {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #25d366;
  border: 2px solid #075e54;
}
.whatsapp-chat__header-text {
  flex: 1;
  min-width: 0;
}
.whatsapp-chat__header-text h3 {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
  color: #fff;
}
.whatsapp-chat__header-text p {
  margin: 0;
  font-size: 12px;
  opacity: 0.85;
  color: #fff;
}
.whatsapp-chat__close {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
  transition: background 0.2s;
}
.whatsapp-chat__close:hover {
  background: rgba(255, 255, 255, 0.22);
}
.whatsapp-chat__close span {
  position: absolute;
  width: 14px;
  height: 2px;
  background: #fff;
  border-radius: 1px;
}
.whatsapp-chat__close span:first-child {
  transform: rotate(45deg);
}
.whatsapp-chat__close span:last-child {
  transform: rotate(-45deg);
}
.whatsapp-chat {
  /* ── Body ── */
}
.whatsapp-chat__body {
  padding: 16px;
  background: #e5ddd5;
  min-height: 100px;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23d4c9b8' fill-opacity='0.4'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.whatsapp-chat__message {
  background: #fff;
  border-radius: 8px 8px 8px 2px;
  padding: 12px 14px;
  max-width: 85%;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.is-open .whatsapp-chat__message {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.25s;
}
.whatsapp-chat__message p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.5;
  color: #303030;
}
.whatsapp-chat__message p + p {
  margin-top: 6px;
}
.whatsapp-chat {
  /* ── Footer ── */
}
.whatsapp-chat__footer {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: #f0f0f0;
  border-top: 1px solid #e0e0e0;
}
.whatsapp-chat__input {
  flex: 1;
  border: none;
  border-radius: 24px;
  padding: 10px 16px;
  font-size: 14px;
  font-family: inherit;
  background: #fff;
  outline: none;
  color: #303030;
}
.whatsapp-chat__input::placeholder {
  color: #999;
}
.whatsapp-chat__send {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #075e54;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s;
}
.whatsapp-chat__send:hover {
  background: #054d44;
}
.whatsapp-chat__send svg {
  width: 18px;
  height: 18px;
  color: #fff;
}
.whatsapp-chat {
  /* ── Responsive ── */
}
@media (max-width: 480px) {
  .whatsapp-chat {
    bottom: 1rem;
    right: 1rem;
    gap: 10px;
  }
  .whatsapp-chat__btn {
    width: 50px;
    height: 50px;
  }
  .whatsapp-chat__icon {
    width: 26px;
    height: 26px;
  }
  .whatsapp-chat__popup {
    width: calc(100vw - 32px);
    max-width: 100vw;
  }
}

.img-container {
  position: relative;
  overflow: hidden;
  width: 100%;
}
.img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.sport-ticker {
  width: 100%;
  overflow: hidden;
  background: #E6FF00;
  border-bottom: 4px solid #2A2B32;
  height: 44px;
  display: flex;
  align-items: center;
  position: relative;
}
.sport-ticker__track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: ticker-scroll 30s linear infinite;
  will-change: transform;
}
.sport-ticker__item {
  display: inline-flex;
  align-items: center;
  padding: 0 2rem;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  color: #000000;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1;
  flex-shrink: 0;
}

@keyframes ticker-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.hero-b2b {
  position: relative;
  min-height: 90vh;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-b2b__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-b2b__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.4) brightness(0.5);
}
.hero-b2b__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.7) 100%);
  z-index: 1;
}
.hero-b2b__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 720px;
  width: 100%;
  padding: 0 1.5rem;
  text-align: center;
  align-items: center;
  animation: heroFadeIn 1s ease-out;
}
@media (max-width: 480px) {
  .hero-b2b__content {
    padding: 0 1rem;
  }
}
.hero-b2b__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.5rem;
  color: #fcffeb;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  width: fit-content;
}
.hero-b2b__title {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 4rem;
  font-weight: 700;
  color: #fcffeb;
  text-transform: uppercase;
  line-height: 0.85;
  letter-spacing: -0.02em;
}
@media (max-width: 768px) {
  .hero-b2b__title {
    font-size: 3rem;
  }
}
@media (max-width: 480px) {
  .hero-b2b__title {
    font-size: 2rem;
  }
}
.hero-b2b__title-accent {
  color: #E6FF00;
  display: block;
}
.hero-b2b__description {
  font-family: "Inter", sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  color: #f0f2e3;
  line-height: 1.5;
  max-width: 560px;
}
@media (max-width: 768px) {
  .hero-b2b__description {
    font-size: 1rem;
  }
}
.hero-b2b__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 0.25rem;
}
.hero-b2b__chip {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.75rem;
  border: 1px solid rgba(252, 255, 235, 0.5);
  font-family: "Barlow Condensed", sans-serif;
  color: #fcffeb;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1;
  white-space: nowrap;
}
.hero-b2b__actions {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
  max-width: 100%;
}
@media (max-width: 768px) {
  .hero-b2b__actions {
    flex-direction: column;
    align-items: stretch;
  }
}
@media (max-width: 768px) {
  .hero-b2b__actions .btn-brutal {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}
.hero-b2b__scroll {
  position: absolute;
  bottom: 2rem;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  animation: heroFadeIn 1s ease-out 0.5s both;
}
.hero-b2b__scroll span {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: #E6FF00;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.hero-b2b__scroll:hover {
  opacity: 0.7;
}

@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.target-audience {
  padding: 6rem 0;
  background: #0F1014;
  border-top: 2px solid #2A2B32;
  border-bottom: 2px solid #2A2B32;
}
@media (max-width: 768px) {
  .target-audience {
    padding: 4rem 0;
  }
}
.target-audience__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.target-audience__heading {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 4rem;
  font-weight: 700;
  color: #fcffeb;
  text-transform: uppercase;
  line-height: 0.85;
  letter-spacing: -0.02em;
  margin-bottom: 3rem;
  padding-left: 1.5rem;
  border-left: 4px solid #E6FF00;
}
@media (max-width: 768px) {
  .target-audience__heading {
    font-size: 3rem;
  }
}
@media (max-width: 480px) {
  .target-audience__heading {
    font-size: 2rem;
  }
}
.target-audience__heading-accent {
  color: #E6FF00;
  display: block;
}
.target-audience__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 1024px) {
  .target-audience__grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .target-audience__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
.target-audience__card {
  background: #1C1D22;
  border: 1px solid #2A2B32;
  border-radius: 6px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: transform 150ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 150ms cubic-bezier(0.4, 0, 0.2, 1);
  animation: cardFadeIn 0.6s ease-out both;
}
@media (max-width: 480px) {
  .target-audience__card {
    padding: 1.5rem;
  }
}
.target-audience__card:nth-child(1) {
  animation-delay: 0.1s;
}
.target-audience__card:nth-child(2) {
  animation-delay: 0.2s;
}
.target-audience__card:nth-child(3) {
  animation-delay: 0.3s;
}
.target-audience__card:hover {
  transform: translate(-4px, -4px);
  box-shadow: 4px 4px 0 #E6FF00;
}
.target-audience__card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: #0F1014;
  border: 2px solid #E6FF00;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.25rem;
  font-weight: 900;
  color: #E6FF00;
  flex-shrink: 0;
  margin-bottom: 0.25rem;
}
.target-audience__card-icon svg {
  width: 24px;
  height: 24px;
  stroke: #fcffeb;
  stroke-width: 3px;
  color: #fcffeb;
}
.target-audience__card-title {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #fcffeb;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.target-audience__card-text {
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  color: #f0f2e3;
  line-height: 1.5;
  max-width: 38ch;
}
.target-audience__card-specs {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding-top: 1rem;
  margin-top: auto;
  border-top: 1px solid rgba(252, 255, 235, 0.1);
}
.target-audience__card-specs li {
  font-family: "JetBrains Mono", "Courier New", monospace;
  font-size: 0.75rem;
  font-weight: 400;
  color: #f0f2e3;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.target-audience__card-specs li::before {
  content: "> ";
  color: #E6FF00;
  font-weight: 700;
}

.pain-points {
  padding: 6rem 0;
  background: #1C1D22;
  border-top: 2px solid #2A2B32;
  border-bottom: 2px solid #2A2B32;
}
@media (max-width: 768px) {
  .pain-points {
    padding: 4rem 0;
  }
}
.pain-points__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 1024px) {
  .pain-points__container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}
.pain-points__content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.pain-points__title {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 4rem;
  font-weight: 700;
  color: #fcffeb;
  text-transform: uppercase;
  line-height: 0.85;
  letter-spacing: -0.02em;
  padding-left: 1.5rem;
  border-left: 4px solid #E6FF00;
}
@media (max-width: 768px) {
  .pain-points__title {
    font-size: 3rem;
  }
}
@media (max-width: 480px) {
  .pain-points__title {
    font-size: 2rem;
  }
}
.pain-points__title-accent {
  color: #E6FF00;
  display: block;
}
.pain-points__text {
  font-family: "Inter", sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  color: #f0f2e3;
  line-height: 1.5;
  max-width: 520px;
}
@media (max-width: 768px) {
  .pain-points__text {
    font-size: 1rem;
  }
}
.pain-points__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
.pain-points__card {
  background: #0F1014;
  border: 1px solid #2A2B32;
  border-radius: 6px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: transform 150ms cubic-bezier(0.4, 0, 0.2, 1);
}
.pain-points__card:hover {
  transform: translate(-4px, -4px);
}
.pain-points__card-icon {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: #E6FF00;
  line-height: 1;
  opacity: 0.5;
  margin-bottom: 0.25rem;
}
.pain-points__card-label {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fcffeb;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.pain-points__card-text {
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  color: #f0f2e3;
  line-height: 1.5;
  max-width: 42ch;
}

.club-advantage {
  padding: 6rem 0;
  background: #0F1014;
  border-top: 2px solid #2A2B32;
  border-bottom: 2px solid #2A2B32;
}
@media (max-width: 768px) {
  .club-advantage {
    padding: 4rem 0;
  }
}
.club-advantage__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.club-advantage__heading {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 4rem;
  font-weight: 700;
  color: #fcffeb;
  text-transform: uppercase;
  line-height: 0.85;
  letter-spacing: -0.02em;
  margin-bottom: 3rem;
  padding-left: 1.5rem;
  border-left: 4px solid #E6FF00;
}
@media (max-width: 768px) {
  .club-advantage__heading {
    font-size: 3rem;
  }
}
@media (max-width: 480px) {
  .club-advantage__heading {
    font-size: 2rem;
  }
}
.club-advantage__heading-accent {
  color: #E6FF00;
  display: block;
}
.club-advantage__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 1024px) {
  .club-advantage__grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .club-advantage__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}
.club-advantage__card {
  background: #1C1D22;
  border: 1px solid #2A2B32;
  border-radius: 6px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: transform 150ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 150ms cubic-bezier(0.4, 0, 0.2, 1);
  animation: cardFadeIn 0.6s ease-out both;
}
.club-advantage__card:nth-child(1) {
  animation-delay: 0.1s;
}
.club-advantage__card:nth-child(2) {
  animation-delay: 0.2s;
}
.club-advantage__card:nth-child(3) {
  animation-delay: 0.3s;
}
.club-advantage__card:nth-child(4) {
  animation-delay: 0.4s;
}
.club-advantage__card:nth-child(5) {
  animation-delay: 0.5s;
}
.club-advantage__card:hover {
  transform: translate(-4px, -4px);
  box-shadow: 4px 4px 0 #E6FF00;
}
.club-advantage__card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(252, 255, 235, 0.15);
}
.club-advantage__card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: #0F1014;
  border: 2px solid #E6FF00;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: #E6FF00;
  flex-shrink: 0;
}
.club-advantage__card-icon svg {
  width: 28px;
  height: 28px;
  stroke: #fcffeb;
  stroke-width: 3px;
  color: #fcffeb;
}
.club-advantage__card-title {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fcffeb;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.club-advantage__card-text {
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  color: #f0f2e3;
  line-height: 1.5;
}
.club-advantage__card-specs {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(252, 255, 235, 0.1);
}
.club-advantage__card-specs li {
  font-family: "JetBrains Mono", "Courier New", monospace;
  font-size: 0.75rem;
  font-weight: 400;
  color: #f0f2e3;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.club-advantage__card-specs li::before {
  content: "> ";
  color: #E6FF00;
  font-weight: 700;
}

@keyframes cardFadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.how-it-works {
  position: relative;
  padding: 6rem 0;
  border-top: 2px solid #2A2B32;
  border-bottom: 2px solid #2A2B32;
  overflow: hidden;
}
@media (max-width: 768px) {
  .how-it-works {
    padding: 4rem 0;
  }
}
.how-it-works__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.how-it-works__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(60%) contrast(1.2) brightness(0.45);
}
.how-it-works__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.75) 100%);
  z-index: 1;
}
.how-it-works__container {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.how-it-works__heading {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 4rem;
  font-weight: 700;
  color: #fcffeb;
  text-transform: uppercase;
  line-height: 0.85;
  letter-spacing: -0.02em;
  padding-left: 1.5rem;
  border-left: 4px solid #E6FF00;
}
@media (max-width: 768px) {
  .how-it-works__heading {
    font-size: 3rem;
  }
}
@media (max-width: 480px) {
  .how-it-works__heading {
    font-size: 2rem;
  }
}
.how-it-works__heading-accent {
  color: #E6FF00;
  display: block;
}
.how-it-works__subtitle {
  font-family: "Inter", sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  color: #f0f2e3;
  line-height: 1.5;
  margin-bottom: 4rem;
  padding-left: 1.5rem;
}
@media (max-width: 768px) {
  .how-it-works__subtitle {
    font-size: 1rem;
  }
}
.how-it-works__steps {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}
@media (max-width: 1024px) {
  .how-it-works__steps {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }
}
.how-it-works__connector {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 80px;
  padding-top: 3.5rem;
}
.how-it-works__connector svg {
  display: block;
  width: 100%;
  height: 4px;
}
@media (max-width: 1024px) {
  .how-it-works__connector {
    display: none;
  }
}
.how-it-works__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  padding: 2rem 1.5rem;
  background: none;
  border: none;
  border-radius: 0;
  flex: 0 1 320px;
  max-width: 320px;
  transition: transform 150ms cubic-bezier(0.4, 0, 0.2, 1);
}
.how-it-works__step:hover {
  transform: translateY(-4px);
}
.how-it-works__step-number {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 6rem;
  font-weight: 900;
  color: #E6FF00;
  line-height: 1;
  letter-spacing: -0.04em;
  opacity: 0.9;
  user-select: none;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}
@media (max-width: 768px) {
  .how-it-works__step-number {
    font-size: 5rem;
  }
}
.how-it-works__step-title {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #fcffeb;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1;
  margin-bottom: 0.75rem;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}
@media (max-width: 768px) {
  .how-it-works__step-title {
    font-size: 1.5rem;
  }
}
.how-it-works__step-text {
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  color: #f0f2e3;
  line-height: 1.5;
  max-width: 36ch;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.pricing-scale {
  background: #E6FF00;
  border-top: 4px solid #2A2B32;
  border-bottom: 4px solid #2A2B32;
  padding: 5rem 0;
}
@media (max-width: 768px) {
  .pricing-scale {
    padding: 3rem 0;
  }
}
.pricing-scale__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.pricing-scale__heading {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 4rem;
  font-weight: 700;
  color: #000000;
  text-transform: uppercase;
  line-height: 0.85;
  letter-spacing: -0.02em;
  margin-bottom: 3rem;
  padding-left: 1.5rem;
  border-left: 4px solid #000000;
}
@media (max-width: 768px) {
  .pricing-scale__heading {
    font-size: 3rem;
  }
}
@media (max-width: 480px) {
  .pricing-scale__heading {
    font-size: 2rem;
  }
}
.pricing-scale__heading-accent {
  text-decoration: underline;
  text-underline-offset: 6px;
  text-decoration-thickness: 4px;
}
.pricing-scale__heading-small {
  display: block;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: #000000;
  opacity: 0.7;
  letter-spacing: 0.04em;
  margin-top: 0.35rem;
  text-transform: none;
}
.pricing-scale__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: stretch;
}
@media (max-width: 1024px) {
  .pricing-scale__grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .pricing-scale__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}
.pricing-scale__tier {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  border: 2px solid #000000;
  background: transparent;
  transition: transform 150ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 150ms cubic-bezier(0.4, 0, 0.2, 1);
}
.pricing-scale__tier:not(.pricing-scale__tier--featured) {
  opacity: 0.7;
}
.pricing-scale__tier:not(.pricing-scale__tier--featured) .pricing-scale__range {
  font-size: 4rem;
}
@media (max-width: 768px) {
  .pricing-scale__tier:not(.pricing-scale__tier--featured) .pricing-scale__range {
    font-size: 3rem;
  }
}
.pricing-scale__tier:not(.pricing-scale__tier--featured) .pricing-scale__price {
  font-size: 5rem;
}
@media (max-width: 1024px) {
  .pricing-scale__tier:not(.pricing-scale__tier--featured) .pricing-scale__price {
    font-size: 4rem;
  }
}
@media (max-width: 768px) {
  .pricing-scale__tier:not(.pricing-scale__tier--featured) .pricing-scale__price {
    font-size: 3rem;
  }
}
.pricing-scale__tier:not(.pricing-scale__tier--featured) .pricing-scale__label {
  opacity: 0.5;
}
.pricing-scale__tier:not(.pricing-scale__tier--featured) .pricing-scale__desc {
  opacity: 0.45;
}
.pricing-scale__tier:not(.pricing-scale__tier--featured):hover {
  opacity: 0.9;
  transform: translate(-2px, -2px);
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.15);
}
.pricing-scale__tier-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.25rem;
  padding: 1.5rem 1rem;
  width: 100%;
}
.pricing-scale__tier--featured {
  border: 3px solid #000000;
  background: #E6FF00;
  position: relative;
  z-index: 2;
  transform: translateY(-8px);
  box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.18);
  overflow: hidden;
}
.pricing-scale__tier--featured .pricing-scale__tier-inner {
  padding: 2rem 1.5rem 1.75rem;
  position: relative;
  z-index: 2;
}
.pricing-scale__tier--featured .pricing-scale__range {
  font-size: 6rem;
}
@media (max-width: 1024px) {
  .pricing-scale__tier--featured .pricing-scale__range {
    font-size: 5rem;
  }
}
@media (max-width: 768px) {
  .pricing-scale__tier--featured .pricing-scale__range {
    font-size: 4rem;
  }
}
.pricing-scale__tier--featured .pricing-scale__price {
  font-size: 6rem;
}
.pricing-scale__tier--featured .pricing-scale__price small {
  font-size: 1.5rem;
}
@media (max-width: 1024px) {
  .pricing-scale__tier--featured .pricing-scale__price {
    font-size: 5rem;
  }
}
@media (max-width: 768px) {
  .pricing-scale__tier--featured .pricing-scale__price {
    font-size: 4rem;
  }
}
.pricing-scale__tier--featured .pricing-scale__desc {
  opacity: 0.7;
}
@media (max-width: 1024px) {
  .pricing-scale__tier--featured {
    transform: translateY(-4px);
  }
}
@media (max-width: 768px) {
  .pricing-scale__tier--featured {
    transform: none;
    box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.15);
  }
}
.pricing-scale__stripe {
  position: absolute;
  z-index: 9;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 140%;
  padding: 0.5rem 0;
  background: #000000;
  color: #E6FF00;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.25rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  line-height: 1;
  white-space: nowrap;
  user-select: none;
  pointer-events: none;
  transform: rotate(-8deg) translateX(-50%);
  top: 65%;
  left: 50%;
  font-style: italic;
  height: 2.7rem;
  box-shadow: 0 2px 0 rgba(230, 255, 0, 0.3);
}
@media (max-width: 1024px) {
  .pricing-scale__stripe {
    font-size: 0.75rem;
    padding: 0.4rem 0;
    top: 36%;
  }
}
@media (max-width: 768px) {
  .pricing-scale__stripe {
    transform: rotate(-8deg);
    width: 130%;
    top: 35%;
    left: -15%;
    font-size: 0.7rem;
    padding: 0.35rem 0;
  }
}
.pricing-scale__range {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 5rem;
  font-weight: 900;
  color: #000000;
  line-height: 1;
  letter-spacing: -0.03em;
}
@media (max-width: 768px) {
  .pricing-scale__range {
    font-size: 4rem;
  }
}
.pricing-scale__unit-label {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  color: #000000;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.7;
}
.pricing-scale__price {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 6rem;
  font-weight: 900;
  color: #000000;
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  display: block;
}
.pricing-scale__price small {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #000000;
  opacity: 0.5;
  letter-spacing: 0.04em;
}
@media (max-width: 1024px) {
  .pricing-scale__price {
    font-size: 5rem;
  }
}
@media (max-width: 768px) {
  .pricing-scale__price {
    font-size: 4rem;
  }
}
.pricing-scale__label {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #000000;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 2px solid rgba(0, 0, 0, 0.2);
  width: 100%;
  max-width: 200px;
}
.pricing-scale__desc {
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  color: #000000;
  opacity: 0.6;
  line-height: 1.5;
  max-width: 260px;
}
@media (max-width: 768px) {
  .pricing-scale__desc {
    max-width: 320px;
  }
}
.pricing-scale__featured-note {
  display: inline-block;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: #000000;
  opacity: 0.55;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 0.75rem;
  padding: 0.25rem 0;
  border-top: 1px solid rgba(0, 0, 0, 0.15);
  line-height: 1.3;
}
.pricing-scale__footnote {
  text-align: center;
  margin-top: 3rem;
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  color: #000000;
  opacity: 0.55;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}
.pricing-scale__cta {
  text-align: center;
  margin-top: 2rem;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 4rem 2rem;
}
.legal-content__title {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 4rem;
  font-weight: 700;
  color: #fcffeb;
  text-transform: uppercase;
  line-height: 0.85;
  letter-spacing: -0.02em;
  margin-bottom: 2.5rem;
  border-bottom: 1px solid #2A2B32;
  padding-bottom: 1rem;
}
@media (max-width: 768px) {
  .legal-content__title {
    font-size: 3rem;
  }
}
.legal-content__subtitle {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #E6FF00;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  padding-left: 1rem;
  border-left: 4px solid #E6FF00;
}
.legal-content__text {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: #f0f2e3;
  line-height: 1.5;
  margin-bottom: 1rem;
}
.legal-content__text strong {
  color: #fcffeb;
}
.legal-content__text a {
  color: #E6FF00;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: opacity 150ms cubic-bezier(0.4, 0, 0.2, 1);
}
.legal-content__text a:hover {
  opacity: 0.7;
}
.legal-content__list {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}
.legal-content__list li {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: #f0f2e3;
  line-height: 1.5;
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.5rem;
}
.legal-content__list li::before {
  content: ">";
  position: absolute;
  left: 0;
  color: #E6FF00;
  font-family: "JetBrains Mono", "Courier New", monospace;
  font-weight: 700;
}
.legal-content__list li strong {
  color: #fcffeb;
}
.legal-content__list li a {
  color: #E6FF00;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: opacity 150ms cubic-bezier(0.4, 0, 0.2, 1);
}
.legal-content__list li a:hover {
  opacity: 0.7;
}
.legal-content__table-wrapper {
  overflow-x: auto;
  margin-bottom: 1.5rem;
}
.legal-content__table {
  width: 100%;
  border-collapse: collapse;
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  color: #fcffeb;
}
.legal-content__table thead {
  background: #1C1D22;
  border-bottom: 4px solid #2A2B32;
}
.legal-content__table th {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.75rem 1rem;
  text-align: left;
  color: #E6FF00;
}
.legal-content__table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid rgba(252, 255, 235, 0.1);
  opacity: 0.8;
}
.legal-content__table td code {
  font-family: "JetBrains Mono", "Courier New", monospace;
  font-size: 0.75rem;
  background: #1C1D22;
  padding: 0.2rem 0.4rem;
  border: 1px solid rgba(252, 255, 235, 0.2);
}
.legal-content__table tbody tr:hover {
  background: rgba(230, 255, 0, 0.05);
}

.img-container {
  position: relative;
  overflow: hidden;
  width: 100%;
}
.img-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.engineering-page {
  background: #0F1014;
}

.hero-factory {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 72px);
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  gap: 2rem;
  align-items: center;
  position: relative;
}
@media (max-width: 1024px) {
  .hero-factory {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 3rem;
    padding-bottom: 3rem;
    gap: 2rem;
  }
}
.hero-factory__content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  z-index: 2;
}
.hero-factory__badge {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  background: #1C1D22;
  border: 4px solid #2A2B32;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: #E6FF00;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  width: fit-content;
}
.hero-factory__title {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 5rem;
  font-weight: 700;
  color: #fcffeb;
  text-transform: uppercase;
  line-height: 0.85;
  letter-spacing: -0.02em;
}
@media (max-width: 1024px) {
  .hero-factory__title {
    font-size: 4rem;
  }
}
@media (max-width: 768px) {
  .hero-factory__title {
    font-size: 3rem;
  }
}
@media (max-width: 480px) {
  .hero-factory__title {
    font-size: 2rem;
  }
}
.hero-factory__title-accent {
  color: #E6FF00;
  display: block;
}
.hero-factory__description {
  font-family: "Inter", sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  color: #f0f2e3;
  line-height: 1.5;
  max-width: 520px;
}
@media (max-width: 768px) {
  .hero-factory__description {
    font-size: 1rem;
  }
}
.hero-factory__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 480px;
  overflow: hidden;
  border: 1px solid #2A2B32;
  border-radius: 6px;
}
@media (max-width: 1024px) {
  .hero-factory__visual {
    min-height: 320px;
  }
}
.hero-factory__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, transparent 40%, transparent 60%, rgba(0, 0, 0, 0.4) 100%);
}
.hero-factory__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.2) brightness(0.85);
  transition: filter 400ms cubic-bezier(0.4, 0, 0.2, 1);
}
.hero-factory__img:hover {
  filter: grayscale(0%) contrast(1) brightness(1);
}
.hero-factory picture {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.process-timeline {
  max-width: 1280px;
  margin: 0 auto;
  padding: 6rem 1.5rem;
}
@media (max-width: 768px) {
  .process-timeline {
    padding: 4rem 1.5rem;
  }
}
.process-timeline__heading {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 4rem;
  font-weight: 700;
  color: #fcffeb;
  text-transform: uppercase;
  line-height: 0.85;
  letter-spacing: -0.02em;
  margin-bottom: 4rem;
  border-bottom: 4px solid #2A2B32;
  padding-bottom: 1rem;
}
@media (max-width: 768px) {
  .process-timeline__heading {
    font-size: 3rem;
    margin-bottom: 3rem;
  }
}
@media (max-width: 480px) {
  .process-timeline__heading {
    font-size: 2rem;
  }
}
.process-timeline__step {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-bottom: 5rem;
  align-items: center;
}
@media (max-width: 1024px) {
  .process-timeline__step {
    gap: 2rem;
  }
}
@media (max-width: 768px) {
  .process-timeline__step {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
  }
}
.process-timeline__step:nth-child(even) {
  direction: rtl;
}
@media (max-width: 768px) {
  .process-timeline__step:nth-child(even) {
    direction: ltr;
  }
}
.process-timeline__step:nth-child(even) .process-timeline__info {
  direction: ltr;
}
.process-timeline__step:nth-child(even) .process-timeline__media {
  direction: ltr;
}
.process-timeline__info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.process-timeline__number {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 5rem;
  font-weight: 900;
  color: #E6FF00;
  opacity: 0.15;
  line-height: 1;
  letter-spacing: -0.04em;
  user-select: none;
}
@media (max-width: 768px) {
  .process-timeline__number {
    font-size: 4rem;
  }
}
.process-timeline__title {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #fcffeb;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1;
}
@media (max-width: 768px) {
  .process-timeline__title {
    font-size: 1.5rem;
  }
}
.process-timeline__text {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: #f0f2e3;
  line-height: 1.5;
}
.process-timeline__specs {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1rem;
  background: #1C1D22;
  border: 1px solid #2A2B32;
  border-radius: 6px;
  border-left: 4px solid #E6FF00;
}
.process-timeline__specs li {
  font-family: "JetBrains Mono", "Courier New", monospace;
  font-size: 0.75rem;
  font-weight: 400;
  color: #f0f2e3;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.process-timeline__specs li::before {
  content: "> ";
  color: #E6FF00;
  font-weight: 700;
}
.process-timeline__media {
  position: relative;
  overflow: hidden;
  border: 1px solid #2A2B32;
  border-radius: 6px;
  background: #1C1D22;
}
.process-timeline__img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.2) brightness(0.85);
  transition: filter 400ms cubic-bezier(0.4, 0, 0.2, 1);
}
.process-timeline__img:hover {
  filter: grayscale(0%) contrast(1) brightness(1);
}
.process-timeline__caption {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  color: #f0f2e3;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.75rem 1rem;
  border-top: 1px solid #2A2B32;
  background: #1C1D22;
}

.quality-tests {
  padding: 6rem 0;
  background: #0F1014;
  border-bottom: 4px solid #2A2B32;
}
@media (max-width: 768px) {
  .quality-tests {
    padding: 4rem 0;
  }
}
.quality-tests__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.quality-tests__heading {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 4rem;
  font-weight: 700;
  color: #fcffeb;
  text-transform: uppercase;
  line-height: 0.85;
  letter-spacing: -0.02em;
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  .quality-tests__heading {
    font-size: 3rem;
  }
}
@media (max-width: 480px) {
  .quality-tests__heading {
    font-size: 2rem;
  }
}
.quality-tests__heading-accent {
  color: #E6FF00;
  display: block;
}
.quality-tests__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
@media (max-width: 1024px) {
  .quality-tests__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .quality-tests__grid {
    grid-template-columns: 1fr;
  }
}
.quality-tests__card {
  background: #1C1D22;
  border: 1px solid #2A2B32;
  border-radius: 6px;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
  transition: transform 150ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 150ms cubic-bezier(0.4, 0, 0.2, 1);
}
.quality-tests__card:hover {
  transform: translate(-4px, -4px);
  box-shadow: 4px 4px 0 #E6FF00;
}
.quality-tests__card-number {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 5rem;
  font-weight: 900;
  color: #E6FF00;
  line-height: 1;
  letter-spacing: -0.03em;
}
@media (max-width: 768px) {
  .quality-tests__card-number {
    font-size: 4rem;
  }
}
.quality-tests__card-title {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fcffeb;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.quality-tests__card-text {
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  color: #f0f2e3;
  line-height: 1.5;
}

.faq-block {
  padding: 6rem 0;
  background: #1C1D22;
  border-bottom: 4px solid #2A2B32;
}
@media (max-width: 768px) {
  .faq-block {
    padding: 4rem 0;
  }
}
.faq-block__container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.faq-block__heading {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 4rem;
  font-weight: 700;
  color: #fcffeb;
  text-transform: uppercase;
  line-height: 0.85;
  letter-spacing: -0.02em;
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  .faq-block__heading {
    font-size: 3rem;
  }
}
@media (max-width: 480px) {
  .faq-block__heading {
    font-size: 2rem;
  }
}
.faq-block__heading-accent {
  color: #E6FF00;
  display: block;
}
.faq-block__list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.faq-block__item {
  background: #0F1014;
  border: 1px solid #2A2B32;
  overflow: hidden;
}
.faq-block__item[open] {
  border-color: #E6FF00;
}
.faq-block__question {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #fcffeb;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  cursor: pointer;
  list-style: none;
  user-select: none;
}
.faq-block__question::-webkit-details-marker {
  display: none;
}
.faq-block__question:hover {
  color: #E6FF00;
}
.faq-block__q-number {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.875rem;
  font-weight: 900;
  color: #E6FF00;
  opacity: 0.5;
  min-width: 1.5em;
}
.faq-block__chevron {
  margin-left: auto;
  flex-shrink: 0;
  color: #E6FF00;
  transition: transform 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-block__item[open] .faq-block__chevron {
  transform: rotate(180deg);
}
.faq-block__answer {
  padding: 0 1.5rem 1.25rem;
  border-top: 1px solid rgba(252, 255, 235, 0.1);
}
.faq-block__answer p {
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  color: #f0f2e3;
  line-height: 1.5;
  margin-top: 1rem;
}
.faq-block__answer p strong {
  color: #E6FF00;
}
.faq-block__answer ul {
  margin-top: 0.75rem;
  padding-left: 1.25rem;
}
.faq-block__answer ul li {
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  color: #f0f2e3;
  line-height: 1.5;
  margin-bottom: 0.4rem;
  list-style: disc;
}
.faq-block__answer ul li strong {
  color: #E6FF00;
}

.cert-block {
  background: #E6FF00;
  border-top: 4px solid #2A2B32;
  border-bottom: 4px solid #2A2B32;
  padding: 5rem 0;
}
@media (max-width: 768px) {
  .cert-block {
    padding: 3rem 0;
  }
}
.cert-block__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 3rem;
  align-items: start;
}
@media (max-width: 768px) {
  .cert-block__container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
.cert-block__badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
  background: #000000;
  border: 4px solid #000000;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 4rem;
  font-weight: 900;
  color: #E6FF00;
  line-height: 1;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .cert-block__badge {
    width: 80px;
    height: 80px;
    font-size: 3rem;
  }
}
.cert-block__content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.cert-block__title {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 4rem;
  font-weight: 700;
  color: #000000;
  text-transform: uppercase;
  line-height: 0.85;
  letter-spacing: -0.02em;
}
@media (max-width: 768px) {
  .cert-block__title {
    font-size: 3rem;
  }
}
@media (max-width: 480px) {
  .cert-block__title {
    font-size: 2rem;
  }
}
.cert-block__title-accent {
  display: block;
  text-decoration: underline;
  text-underline-offset: 6px;
  text-decoration-thickness: 4px;
}
.cert-block__text {
  font-family: "Inter", sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: #000000;
  line-height: 1.5;
  max-width: 680px;
}
.cert-block__text strong {
  text-decoration: underline;
  text-underline-offset: 3px;
}
@media (max-width: 768px) {
  .cert-block__text {
    font-size: 1rem;
  }
}
.cert-block__list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.cert-block__list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #000000;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.cert-block__list li svg {
  flex-shrink: 0;
  color: #000000;
}

.cta-brutal-wrap {
  padding: 6rem 0;
  background: #0F1014;
  border-bottom: 4px solid #2A2B32;
}
@media (max-width: 768px) {
  .cta-brutal-wrap {
    padding: 4rem 0;
  }
}
.cta-brutal-wrap__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
}
.cta-brutal-wrap__title {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 4rem;
  font-weight: 700;
  color: #fcffeb;
  text-transform: uppercase;
  line-height: 0.85;
  letter-spacing: -0.02em;
}
@media (max-width: 768px) {
  .cta-brutal-wrap__title {
    font-size: 3rem;
  }
}
@media (max-width: 480px) {
  .cta-brutal-wrap__title {
    font-size: 2rem;
  }
}
.cta-brutal-wrap__text {
  font-family: "Inter", sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  color: #f0f2e3;
  line-height: 1.5;
  max-width: 560px;
}
@media (max-width: 768px) {
  .cta-brutal-wrap__text {
    font-size: 1rem;
  }
}

.thankyou-hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #0F1014;
}
.thankyou-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.6) 50%, rgba(0, 0, 0, 0.85) 100%);
  z-index: 1;
}
.thankyou-hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 720px;
  padding: 0 1.5rem;
  text-align: center;
  align-items: center;
  animation: heroFadeIn 1s ease-out;
}
.thankyou-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 1rem;
  background: #1C1D22;
  border: 1px solid #2A2B32;
  border-radius: 6px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: #fcffeb;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  width: fit-content;
}
.thankyou-hero__title {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 6rem;
  font-weight: 700;
  color: #fcffeb;
  text-transform: uppercase;
  line-height: 0.85;
  letter-spacing: -0.02em;
}
@media (max-width: 768px) {
  .thankyou-hero__title {
    font-size: 4rem;
  }
}
@media (max-width: 480px) {
  .thankyou-hero__title {
    font-size: 3rem;
  }
}
.thankyou-hero__title-accent {
  color: #E6FF00;
  display: block;
}
.thankyou-hero__description {
  font-family: "Inter", sans-serif;
  font-size: 1.25rem;
  font-weight: 400;
  color: #f0f2e3;
  line-height: 1.5;
  max-width: 560px;
}
@media (max-width: 768px) {
  .thankyou-hero__description {
    font-size: 1rem;
  }
}
.thankyou-hero__actions {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
}
@media (max-width: 480px) {
  .thankyou-hero__actions {
    flex-direction: column;
  }
}

@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}