/**
 * GIAA Styles
 * Main LESS file - compiles to style.css
 */
p {
  font-size: clamp(21px, 2vw, 30px);
  line-height: 1.4em;
  font-weight: 300;
  margin: 2rem 0;
}
p:first-child {
  margin-top: 0;
}
p:last-child {
  margin-bottom: 0;
}
.container ul {
  padding-left: 50px;
}
.container ul li {
  font-size: clamp(21px, 2vw, 30px);
  line-height: 1.4em;
  font-weight: 300;
  margin: 0.6rem 0;
}
a {
  color: #F96B01;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
a:hover {
  opacity: 0.8;
}
strong {
  font-weight: 600;
}
h1,
.like-h1 {
  font-size: clamp(43px, 5vw, 89px);
  line-height: 1.1;
  font-weight: 400;
  text-align: left;
  text-transform: uppercase;
}
h2 {
  font-size: clamp(27px, 4vw, 55px);
  line-height: 1.4em;
  font-weight: 400;
  text-align: left;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  h1.has-sticker,
  .like-h1.has-sticker {
    max-width: calc(100% - 110px);
  }
}
@keyframes pulse-badge {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  min-height: 100vh;
  min-height: -webkit-fill-available;
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body {
  padding: 15px;
  margin: 0;
  font-family: 'Barlow Semi Condensed', Arial, sans-serif;
  font-size: 17px;
  line-height: 1.45em;
  text-wrap: pretty;
  font-weight: 300;
  overflow-x: hidden;
  background-color: #fdfdfd;
  color: #202226;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
body #main {
  flex: 1;
}
.site-width {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
}
.cta-button {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 20px;
  background-color: #202226;
  color: #fdfdfd;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
  transition: opacity 0.2s ease;
  text-align: center;
  border: none;
  cursor: pointer;
}
.cta-button:hover {
  opacity: 0.9;
}
.cta-button.accent {
  background-color: #F96B01;
  color: #fdfdfd;
}
.cta-button.full-width {
  width: 100%;
}
.cta-button.large {
  font-size: 18px;
  padding: 16px 30px;
}
.img-bw {
  filter: grayscale(100%);
  transition: filter 0.2s ease;
}
.img-bw.color-on-hover:hover {
  filter: grayscale(0%);
}
.site-header {
  background-color: #202226;
  color: #fdfdfd;
  padding: 20px;
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translate(-50%, 0);
  width: calc(100% - 30px);
  max-width: 100%;
  z-index: 99;
  transition: all 0.2s ease;
}
.site-header .site-header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.site-header .site-header-inner .site-header-logo {
  width: 160px;
  height: auto;
  transition: all 0.2s ease;
  overflow: hidden;
}
.site-header .site-header-inner .site-header-logo a {
  display: grid;
}
.site-header .site-header-inner .site-header-logo a img {
  width: 160px;
  height: 100%;
  transition: all 0.2s ease;
}
.site-header .site-header-inner .main-nav ul {
  list-style: none;
  gap: 20px;
  display: flex;
  flex-direction: row;
  gap: 35px;
}
.site-header .site-header-inner .main-nav ul li a {
  color: #fdfdfd;
  text-decoration: none;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
  padding-right: 8px;
}
.site-header .site-header-inner .main-nav ul li a .new-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background-color: #F96B01;
  color: #fdfdfd;
  font-size: 9px;
  font-weight: 600;
  padding: 3px 5px;
  border-radius: 10px;
  letter-spacing: 0.05em;
  line-height: 1;
  box-shadow: 0 2px 8px rgba(249, 107, 1, 0.4);
  animation: pulse-badge 2s ease-in-out infinite;
}
.site-header .site-header-inner .lang-switcher {
  position: relative;
  cursor: pointer;
}
.site-header .site-header-inner .lang-switcher .lang-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fdfdfd;
  transition: all 0.3s ease;
}
.site-header .site-header-inner .lang-switcher .lang-icon svg {
  display: block;
}
.site-header .site-header-inner .lang-switcher .lang-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  background: #fdfdfd;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  min-width: 140px;
  z-index: 1000;
}
.site-header .site-header-inner .lang-switcher .lang-dropdown .lang-option {
  display: block;
  padding: 12px 20px;
  color: #202226;
  text-decoration: none;
  font-size: 15px;
  transition: all 0.2s ease;
  border-bottom: 1px solid #f0f0f0;
}
.site-header .site-header-inner .lang-switcher .lang-dropdown .lang-option:last-child {
  border-bottom: none;
}
.site-header .site-header-inner .lang-switcher .lang-dropdown .lang-option:hover {
  background: #F96B01;
  color: #fdfdfd;
}
.site-header .site-header-inner .lang-switcher .lang-dropdown .lang-option.active {
  font-weight: 600;
  color: #F96B01;
}
.site-header .site-header-inner .lang-switcher .lang-dropdown .lang-option.active:hover {
  background: #F96B01;
  color: #fdfdfd;
}
.site-header .site-header-inner .lang-switcher:hover .lang-icon {
  transform: scale(1.1);
}
.site-header .site-header-inner .lang-switcher:hover .lang-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.site-header .site-header-inner .header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.site-header .site-header-inner .burger-menu {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 22px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 100;
}
.site-header .site-header-inner .burger-menu span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #fdfdfd;
  border-radius: 3px;
  transition: all 0.3s ease;
  transform-origin: center;
}
.site-header .site-header-inner .burger-menu.active span:nth-child(1) {
  transform: translateY(9.5px) rotate(45deg);
}
.site-header .site-header-inner .burger-menu.active span:nth-child(2) {
  opacity: 0;
}
.site-header .site-header-inner .burger-menu.active span:nth-child(3) {
  transform: translateY(-9.5px) rotate(-45deg);
}
@media (max-width: 768px) {
  .site-header {
    width: calc(100% - 30px);
  }
  .site-header .site-header-inner {
    flex-wrap: wrap;
    position: relative;
  }
  .site-header .site-header-inner .site-header-logo {
    flex: 0 0 auto;
  }
  .site-header .site-header-inner .header-right {
    gap: 15px;
    flex: 0 0 auto;
    flex-wrap: nowrap;
  }
  .site-header .site-header-inner .burger-menu {
    display: flex;
  }
  .site-header .site-header-inner .lang-switcher {
    display: flex;
  }
  .site-header .site-header-inner .main-nav {
    position: absolute;
    top: calc(100% + 14px);
    left: -20px;
    right: 0;
    width: calc(100% + 40px);
    background: #202226;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 20px;
  }
  .site-header .site-header-inner .main-nav.active {
    max-height: 500px;
    padding: 20px;
  }
  .site-header .site-header-inner .main-nav ul {
    flex-direction: column;
    gap: 10px;
  }
  .site-header .site-header-inner .main-nav ul li a {
    font-size: 16px;
    display: block;
    padding: 8px 0;
  }
  .site-header .site-header-inner .main-nav ul li a .new-badge {
    top: 14px;
    right: 5px;
  }
}
.scrolled .site-header {
  padding: 15px;
}
.scrolled .site-header .site-header-inner .site-header-logo {
  width: 70px;
}
.scrolled .site-header .site-header-inner .site-header-logo a img {
  width: 130px;
}
.scrolled .site-header .site-header-inner .main-nav {
  left: -15px;
  width: calc(100% + 30px);
  padding: 0 15px;
}
.scrolled .site-header .site-header-inner .main-nav.active {
  padding: 15px;
}
.site-footer {
  background-color: #202226;
  color: #fdfdfd;
  padding: clamp(20px, 2vw, 60px) 20px 20px 20px;
  margin-top: 40px;
  max-width: 100%;
  position: relative;
}
.site-footer .certification-sticker {
  position: absolute;
  z-index: 9;
  top: 100px;
  right: 70px;
  width: clamp(150px, 14vw, 220px);
}
.site-footer .certification-sticker img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: rotate(10deg);
}
.site-footer .certification-sticker .new-badge {
  position: absolute;
  top: 5px;
  right: 11px;
  background-color: #F96B01;
  color: #fdfdfd;
  font-size: 19px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 20px;
  letter-spacing: 0.05em;
  line-height: 1;
  box-shadow: 0 2px 8px rgba(249, 107, 1, 0.4);
  animation: pulse-badge 2s ease-in-out infinite;
}
.site-footer .certification-sticker .label {
  text-align: center;
  font-size: 21px;
}
.site-footer .certification-sticker .label .accent {
  color: #F96B01;
}
.site-footer .footer-inner .footer-top {
  margin-bottom: 40px;
}
.site-footer .footer-inner .footer-top .footer-logo {
  width: 260px;
}
.site-footer .footer-inner .footer-top .footer-logo img {
  width: 100%;
  height: auto;
}
.site-footer .footer-inner .footer-content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
  max-width: 1200px;
}
.site-footer .footer-inner .footer-content .footer-section {
  flex: 1;
}
.site-footer .footer-inner .footer-content .footer-section h4 {
  text-transform: uppercase;
  margin-bottom: 13px;
  position: relative;
  display: inline-block;
}
.site-footer .footer-inner .footer-content .footer-section h4 .new-badge {
  position: absolute;
  top: 5px;
  right: -40px;
  background-color: #F96B01;
  color: #fdfdfd;
  font-size: 9px;
  font-weight: 600;
  padding: 3px 5px;
  border-radius: 10px;
  letter-spacing: 0.05em;
  line-height: 1;
  box-shadow: 0 2px 8px rgba(249, 107, 1, 0.4);
  animation: pulse-badge 2s ease-in-out infinite;
}
.site-footer .footer-inner .footer-content .footer-section ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.site-footer .footer-inner .footer-content .footer-section ul li a {
  text-decoration: none;
  color: #fdfdfd;
  opacity: 0.5;
}
.site-footer .footer-inner .footer-content .footer-section ul li a:hover {
  opacity: 1;
}
.site-footer .footer-inner .footer-bottom {
  margin-top: 70px;
}
.site-footer .footer-inner .footer-bottom p {
  font-size: 14px;
  line-height: 1.4em;
  font-weight: 300;
}
@media (max-width: 768px) {
  .site-footer .certification-sticker {
    position: relative;
    top: initial;
    right: initial;
    width: 100%;
    max-width: 190px;
    margin: 0 auto 60px auto;
  }
  .site-footer .footer-inner .footer-top .footer-logo {
    width: 190px;
  }
  .site-footer .footer-inner .footer-content {
    flex-direction: column;
    gap: 30px;
  }
  .site-footer .footer-inner .footer-content .footer-section {
    flex: 1;
  }
  .site-footer .footer-inner .footer-content .footer-section h4 {
    text-transform: uppercase;
    margin-bottom: 13px;
    position: relative;
    display: inline-block;
  }
  .site-footer .footer-inner .footer-content .footer-section h4 .new-badge {
    position: absolute;
    top: 5px;
    right: -40px;
    background-color: #F96B01;
    color: #fdfdfd;
    font-size: 9px;
    font-weight: 600;
    padding: 3px 5px;
    border-radius: 10px;
    letter-spacing: 0.05em;
    line-height: 1;
    box-shadow: 0 2px 8px rgba(249, 107, 1, 0.4);
    animation: pulse-badge 2s ease-in-out infinite;
  }
  .site-footer .footer-inner .footer-content .footer-section ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 5px;
  }
  .site-footer .footer-inner .footer-content .footer-section ul li a {
    text-decoration: none;
    color: #fdfdfd;
    opacity: 0.5;
  }
  .site-footer .footer-inner .footer-content .footer-section ul li a:hover {
    opacity: 1;
  }
  .site-footer .footer-inner .footer-bottom {
    margin-top: 70px;
  }
  .site-footer .footer-inner .footer-bottom p {
    font-size: 14px;
    line-height: 1.4em;
    font-weight: 300;
  }
}
section {
  position: relative;
  padding: 40px 0;
}
section.no-padding-top {
  padding-top: 0;
}
section.no-padding-bottom {
  padding-bottom: 0;
}
section.large-padding-top {
  padding-top: 70px;
}
section.large-padding-bottom {
  padding-bottom: 70px;
}
section.border-top {
  border-top: 1px solid #202226;
}
section.border-bottom {
  border-bottom: 1px solid #202226;
}
section.bg-black {
  background-color: #202226;
  color: #fdfdfd;
  padding: 20px;
}
section.hero {
  padding-top: 200px;
}
section.hero .container {
  width: 100%;
  max-width: clamp(480px, 55vw, 1000px);
}
section.hero .certification-sticker {
  position: absolute;
  z-index: 9;
  bottom: -80px;
  right: 40px;
  transform: rotate(10deg);
  width: clamp(150px, 14vw, 290px);
}
section.hero .certification-sticker img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
section.context-image {
  width: 100%;
  overflow: hidden;
  position: relative;
}
section.context-image .container {
  width: 100%;
  height: 400px;
  overflow: hidden;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
section.context-image .container img {
  display: none;
}
@media (max-width: 1024px) {
  section.context-image .container {
    background-attachment: scroll;
    background-size: 170%;
  }
}
section.plain-text .container {
  width: 100%;
  max-width: clamp(480px, 55vw, 1000px);
}
section.enrollment-section .container {
  max-width: clamp(480px, 55vw, 1000px);
}
section.enrollment-section .container h2 {
  margin-bottom: 30px;
  border-bottom: 1px solid;
  padding-bottom: 15px;
  font-weight: 500;
}
section.certification-stickers {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 40px;
  padding: 40px;
}
section.certification-stickers .stickers {
  display: flex;
  gap: 20px;
}
section.certification-stickers .stickers img {
  width: clamp(200px, 17vw, 300px);
  height: auto;
  border-radius: 999px;
  background-color: rgba(255, 255, 255, 0.1);
}
section.certification-stickers .text p {
  font-size: 40px;
  font-weight: 300;
  line-height: 1.2em;
}
section.certification-stickers .text p .accent {
  color: #F96B01;
}
section.steps h2 {
  width: 100%;
  max-width: clamp(480px, 55vw, 1000px);
}
section.steps .steps-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-top: 100px;
  gap: 60px;
}
section.steps .steps-container .step {
  width: 25%;
}
section.steps .steps-container .step h3 {
  font-size: 30px;
  border-bottom: 2px solid #202226;
  padding-bottom: 20px;
  margin-bottom: 15px;
}
section.steps .steps-container .step h3 span {
  font-size: 78px;
  font-weight: 600;
}
section.steps .steps-container .step p {
  font-size: 28px;
  line-height: 1.2em;
  font-weight: 300;
  margin-top: 0;
  opacity: 0.5;
}
section.cards .container {
  width: 100%;
  max-width: clamp(480px, 55vw, 1000px);
}
section.cards .container .certification-sticker {
  position: absolute;
  z-index: 9;
  top: 70px;
  right: 40px;
  transform: rotate(10deg);
  width: clamp(150px, 17vw, 280px);
}
section.cards .container .certification-sticker img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
section.cards .cards-container {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  gap: 20px;
  margin-top: 40px;
  margin-bottom: 40px;
}
section.cards .cards-container .card {
  width: 25%;
  aspect-ratio: 10 / 13;
  position: relative;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
section.cards .cards-container .card .bg-image {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
section.cards .cards-container .card .bg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
section.cards .cards-container .card .card-content {
  position: relative;
  z-index: 2;
  padding: 20px;
  background-color: #202226;
  color: #fdfdfd;
}
section.cards .cards-container .card .card-content h3 {
  font-size: clamp(21px, 1.4vw, 25px);
  line-height: 1.2em;
  font-weight: 600;
}
section.cards .cards-container .card .card-content h3.collapsible-trigger {
  cursor: pointer;
  position: relative;
  padding-right: 40px;
  transition: opacity 0.2s ease;
}
section.cards .cards-container .card .card-content h3.collapsible-trigger:hover {
  opacity: 0.8;
}
section.cards .cards-container .card .card-content h3.collapsible-trigger::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 32px;
  font-weight: 300;
  transition: transform 0.3s ease;
}
section.cards .cards-container .card .card-content .card-content-collapsible {
  display: none;
  padding-top: 15px;
}
section.cards .cards-container .card .card-content .card-content-collapsible p {
  font-size: clamp(15px, 1.2vw, 21px);
  line-height: 1.2em;
  margin: 1rem 0;
  font-weight: 300;
  margin-top: 0;
  opacity: 0.6;
}
section.cards .cards-container .card .card-content .card-content-collapsible .certification-prices {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 210px;
  margin: 40px auto 10px auto;
}
section.cards .cards-container .card .card-content .card-content-collapsible .certification-prices .row {
  display: flex;
  flex-direction: row;
  gap: 10px;
  text-align: center;
  justify-content: center;
}
section.cards .cards-container .card .card-content .card-content-collapsible .certification-prices .row .col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
section.cards .cards-container .card .card-content .card-content-collapsible .certification-prices .row .label {
  font-size: 14px;
  line-height: 1.3em;
  text-transform: uppercase;
}
section.cards .cards-container .card .card-content .card-content-collapsible .certification-prices .row .label .accent {
  color: #F96B01;
}
section.cards .cards-container .card .card-content .card-content-collapsible .certification-prices .row .price {
  font-size: 29px;
}
section.cards .cards-container .card .card-content .card-content-collapsible .certification-prices .row .price.crossed {
  text-decoration: line-through;
  opacity: 0.5;
}
section.cards .cards-container .card .card-content .card-content-collapsible .certification-prices .row .price.accent {
  color: #F96B01;
}
section.cards .cards-container .card .card-content .card-content-collapsible .note {
  text-align: center;
  font-size: 14px;
  line-height: 1.2;
  margin-top: 16px;
}
section.cards .cards-container .card:hover .bg-image {
  filter: grayscale(0%);
}
section.cards .cards-container .card.active .bg-image {
  filter: grayscale(0%);
}
section.cards .cards-container .card.active .card-content h3.collapsible-trigger::after {
  content: '−';
  transform: translateY(-50%) rotate(180deg);
}
section.quote .container {
  width: 100%;
  max-width: clamp(480px, 55vw, 1000px);
}
section.quote p {
  font-size: clamp(28px, 2.5vw, 45px);
  line-height: 1.4em;
  font-weight: 300;
  font-style: italic;
}
section.quote .author {
  display: block;
  font-size: clamp(19px, 2vw, 25px);
  opacity: 0.6;
}
section.quote.center {
  text-align: center;
}
section.quote.center .container {
  margin: 0 auto;
}
section.faq .container {
  width: 100%;
  max-width: 100%;
}
section.faq .container h2 {
  margin-bottom: 40px;
}
section.faq .container .columns {
  display: flex;
  flex-direction: row;
  gap: 60px;
}
section.faq .container .columns .column {
  flex: 1;
}
section.faq .container .columns .column h3 {
  font-size: 28px;
  line-height: 1.2em;
  font-weight: 600;
  margin-bottom: 20px;
  border-bottom: 1.5px solid #202226;
  padding-bottom: 15px;
}
section.faq .container .faq-container {
  display: flex;
  gap: 60px;
  align-items: flex-start;
  margin-bottom: 40px;
}
section.faq .container .faq-container .faq-column {
  flex: 1;
}
section.faq .container .faq-container .faq-column .faq-item {
  padding: 12px 0;
}
section.faq .container .faq-container .faq-column .faq-item:last-child {
  border-bottom: none;
}
section.faq .container .faq-container .faq-column .faq-item .faq-question {
  font-size: clamp(20px, 1.4vw, 23px);
  line-height: 1.3em;
  font-weight: 300;
  cursor: pointer;
  position: relative;
  padding-right: 50px;
  transition: opacity 0.2s ease;
  user-select: none;
  opacity: 0.7;
}
section.faq .container .faq-container .faq-column .faq-item .faq-question:hover {
  opacity: 1;
}
section.faq .container .faq-container .faq-column .faq-item .faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 40px;
  font-weight: 300;
  transition: transform 0.3s ease, content 0.3s ease;
}
section.faq .container .faq-container .faq-column .faq-item .faq-answer {
  padding: 7px 0 20px 30px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
section.faq .container .faq-container .faq-column .faq-item .faq-answer ul {
  padding-left: 40px;
}
section.faq .container .faq-container .faq-column .faq-item .faq-answer p,
section.faq .container .faq-container .faq-column .faq-item .faq-answer li {
  font-size: clamp(16px, 1.2vw, 20px);
  line-height: 1.4em;
  opacity: 0.7;
  margin: 0.6rem 0;
}
section.faq .container .faq-container .faq-column .faq-item .faq-answer li {
  margin: 0;
}
section.faq .container .faq-container .faq-column .faq-item.active .faq-question {
  opacity: 1;
  font-weight: 600;
}
section.faq .container .faq-container .faq-column .faq-item.active .faq-question::after {
  content: '−';
  transform: translateY(-50%) rotate(180deg);
}
section.logo-wall {
  padding: 60px 0;
  border-bottom: 1px solid #202226;
}
section.logo-wall .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  align-items: center;
  justify-items: center;
  max-width: 100%;
}
section.logo-wall .single-logo {
  width: 100%;
  max-width: 200px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}
section.logo-wall .single-logo img {
  max-width: 180px;
  max-height: 60px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: all 0.3s ease;
}
section.logo-wall .single-logo img:hover {
  opacity: 1;
  filter: grayscale(0%);
  transform: scale(1.05);
}
section.logo-wall.compact {
  padding: 40px 0;
}
section.logo-wall.compact .container {
  gap: 25px;
}
section.logo-wall.compact .single-logo {
  height: 60px;
}
@media (max-width: 768px) {
  section {
    padding: 30px 0;
  }
  section.large-padding-top {
    padding-top: 50px;
  }
  section.large-padding-bottom {
    padding-bottom: 50px;
  }
  section.hero {
    padding-top: 160px;
  }
  section.hero .certification-sticker {
    right: -13px;
  }
  section.context-image .container {
    height: 250px;
  }
  section.enrollment-section .container {
    max-width: clamp(480px, 55vw, 1000px);
  }
  section.enrollment-section .container h2 {
    margin-bottom: 30px;
    border-bottom: 1px solid;
    padding-bottom: 15px;
    font-weight: 500;
  }
  section.certification-stickers {
    flex-direction: column;
    gap: 20px;
  }
  section.certification-stickers .text p {
    font-size: 30px;
    line-height: 1.1em;
  }
  section.steps .steps-container {
    flex-direction: column;
    margin-top: 60px;
  }
  section.steps .steps-container .step {
    width: 100%;
  }
  section.steps .steps-container .step h3 {
    font-size: 27px;
    border-bottom: 1.5px solid #202226;
  }
  section.steps .steps-container .step h3 span {
    font-size: 50px;
  }
  section.steps .steps-container .step p {
    font-size: 24px;
  }
  section.cards .container .certification-sticker {
    top: -30px;
    right: -10px;
  }
  section.cards .cards-container {
    flex-direction: column;
  }
  section.cards .cards-container .card {
    width: 100%;
    aspect-ratio: 10 / 12;
    padding: 12px;
  }
  section.faq .container .columns {
    flex-direction: column;
    gap: 0;
  }
  section.faq .container .columns .column h3 {
    font-size: 26px;
    line-height: 1.1em;
  }
  section.faq .container .faq-container .faq-column .faq-item .faq-answer {
    padding: 7px 0 20px 0;
  }
  section.logo-wall .container {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
  }
  section.logo-wall .single-logo img {
    max-width: 100px;
  }
  section.logo-wall.compact {
    padding: 40px 0;
  }
  section.logo-wall.compact .container {
    gap: 25px;
  }
  section.logo-wall.compact .single-logo {
    height: 60px;
  }
}
.enrollment-form .enrollment-slide {
  display: none;
  animation: slideIn 0.3s ease;
}
.enrollment-form .enrollment-slide.active {
  display: block;
}
@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}
.form-group {
  margin-bottom: 25px;
}
.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  font-size: 16px;
}
.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="password"],
.form-group input[type="date"],
.form-group select {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  font-family: 'Barlow Semi Condensed', Arial, sans-serif;
  font-size: 16px;
  transition: border-color 0.2s ease;
}
.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group input[type="tel"]:focus,
.form-group input[type="password"]:focus,
.form-group input[type="date"]:focus,
.form-group select:focus {
  outline: none;
  border-color: #F96B01;
}
.form-group input[type="file"] {
  width: 100%;
  padding: 10px;
  border: 1px dashed rgba(0, 0, 0, 0.3);
  cursor: pointer;
}
.form-group small {
  display: block;
  margin-top: 5px;
  font-size: 14px;
  opacity: 0.6;
}
.phone-input-group {
  display: flex;
  gap: 10px;
}
.phone-input-group select {
  width: 120px;
  flex-shrink: 0;
}
.phone-input-group input {
  flex: 1;
}
.radio-group {
  display: flex;
  gap: 20px;
  margin-top: 10px;
}
.radio-group .radio-label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  padding: 15px 25px;
  border: 2px solid rgba(0, 0, 0, 0.2);
  transition: all 0.2s ease;
  flex: 1;
}
.radio-group .radio-label:hover {
  border-color: #F96B01;
}
.radio-group .radio-label input[type="radio"] {
  margin: 0;
}
.radio-group .radio-label input[type="radio"]:checked {
  accent-color: #F96B01;
}
.radio-group .radio-label span {
  font-weight: 600;
}
.radio-group .radio-label:has(input[type="radio"]:checked) {
  border-color: #F96B01;
}
.radio-group input[type="radio"]:checked + span {
  color: #F96B01;
}
.conditional-fields {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.upload-status {
  margin-top: 10px;
  font-size: 14px;
}
.upload-status.uploading {
  color: #F96B01;
}
.upload-status.success {
  color: green;
}
.upload-status.error {
  color: red;
}
.pricing-summary {
  background-color: rgba(0, 0, 0, 0.05);
  padding: 25px;
  margin-bottom: 30px;
}
.pricing-summary .pricing-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
}
.pricing-summary .pricing-row .label {
  font-weight: 300;
}
.pricing-summary .pricing-row .value {
  font-weight: 600;
  font-size: 18px;
  text-align: right;
}
.pricing-summary .pricing-row .strikethrough {
  text-decoration: line-through;
  opacity: 0.5;
}
.pricing-summary .pricing-row.total {
  border-top: 2px solid #202226;
  margin-top: 10px;
  padding-top: 15px;
}
.pricing-summary .pricing-row.total .value {
  font-size: 24px;
}
.payment-request-button {
  margin-bottom: 30px;
  display: none;
}
.payment-request-button:not(:empty) {
  display: block;
}
.payment-divider {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 20px 0;
  color: rgba(0, 0, 0, 0.5);
  font-size: 14px;
}
.payment-divider::before,
.payment-divider::after {
  content: '';
  flex: 1;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.payment-divider span {
  padding: 0 15px;
}
.accepted-cards {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 15px;
  max-width: 200px;
}
.accepted-cards img {
  width: 100%;
  height: auto;
}
.stripe-card-element {
  padding: 15px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  transition: border-color 0.2s ease;
}
.stripe-card-element:focus-within {
  border-color: #F96B01;
}
.card-errors {
  color: red;
  font-size: 14px;
  margin-top: 10px;
}
.payment-processing {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  padding: 30px;
}
.payment-processing .spinner {
  width: 40px;
  height: 40px;
  border: 4px solid rgba(0, 0, 0, 0.1);
  border-top-color: #F96B01;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.form-actions {
  display: flex;
  gap: 15px;
  margin-top: 40px;
}
.form-actions .cta-button {
  flex: 1;
}
@media (max-width: 768px) {
  .form-row {
    gap: 0;
  }
}
.contact-form {
  max-width: 800px;
}
.contact-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  font-family: inherit;
  font-size: 16px;
  resize: vertical;
  min-height: 150px;
}
.contact-form textarea:focus {
  outline: none;
  border-color: #F96B01;
}
.form-feedback {
  padding: 15px 20px;
  border-radius: 4px;
  margin-top: 20px;
}
.form-feedback.success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}
.form-feedback.error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}
.success-icon {
  width: 60px;
  height: 60px;
  background-color: green;
  color: #fdfdfd;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 35px;
  margin: 0 auto 30px;
  margin: 30px 0 -20px 0;
}
.confirmation-content {
  text-align: center;
  padding: 40px 0;
}
.confirmation-content h3 {
  font-size: 32px;
  margin-bottom: 20px;
  font-weight: 600;
}
.confirmation-page .success-message {
  text-align: center;
  margin-bottom: 50px;
}
.confirmation-page .success-message .success-icon {
  width: 80px;
  height: 80px;
  background-color: green;
  color: #fdfdfd;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  margin: 0 auto 30px;
}
.confirmation-page .order-summary {
  background-color: rgba(0, 0, 0, 0.05);
  padding: 30px;
}
.confirmation-page .order-summary h3 {
  margin-bottom: 20px;
}
.confirmation-page .order-details-table {
  width: 100%;
}
.confirmation-page .order-details-table tr td {
  padding: 12px 0;
}
.confirmation-page .order-details-table tr td:first-child {
  opacity: 0.7;
}
.confirmation-page .order-details-table tr td:last-child {
  text-align: right;
}
.confirmation-page .order-details-table tr.total-row {
  border-top: 2px solid #202226;
}
.confirmation-page .order-details-table tr.total-row td {
  padding-top: 20px;
  font-size: 18px;
}
.confirmation-page .next-steps {
  margin-bottom: 40px;
}
.confirmation-page .next-steps h3 {
  margin-bottom: 20px;
}
.confirmation-page .next-steps ol {
  padding-left: 25px;
}
.confirmation-page .next-steps ol li {
  margin-bottom: 20px;
  line-height: 1.6;
}
.confirmation-page .cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 40px;
}
.accent {
  color: #F96B01;
}
