@charset "UTF-8";
:root {
  --color-black: #000;
  --color-white: #fff;
  --color-primary: #F48120;
  --color-primary-dark: #c76a1a;
  --color-bg: #ffffff;
  --color-text: #000000;
  --color-text-light: #3a3a3a;
  --color-border: #dadada;
  --accent-background-color: #EEE;
  --page-max-width: 1920px;
  --container-padding: 123px;
  --fancybox-bg: rgba(24, 24, 27, 0.5);
  --input-error-background-color: #fce7e7;
  --input-error-border-color: #faababbd;
  --tooltip-background-color: #fff;
  --hs-menu-line-color: #da2127;
  --font-family-main: "Roboto", sans-serif;
  --font-family-accent: "Roboto Condensed", sans-serif;
}

@media (max-width: 1600px) {
  :root {
    --container-padding: 5%;
  }
}
@media (max-width: 1500px) {
  :root {
    --container-padding: 3%;
  }
}
@media (max-width: 768px) {
  :root {
    --container-padding: 20px;
  }
}
.custom-checkbox__field:checked + .custom-checkbox__content::after {
  opacity: 1;
}

.custom-checkbox__field:focus + .custom-checkbox__content::before {
  outline: 2px solid #f00;
  outline-offset: 2px;
}

.custom-checkbox__field:disabled + .custom-checkbox__content {
  opacity: 0.4;
  pointer-events: none;
}

html {
  box-sizing: border-box;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: var(--font-family-main);
}

body {
  margin: 0;
  scroll-behavior: smooth;
  background-color: #fff;
}

img {
  max-width: 100%;
}

main {
  padding: 0;
  margin: 0;
}

a {
  text-decoration: none;
}

p {
  font-family: var(--font-family-main);
}

ul {
  padding-left: 20px;
}

.site-container {
  min-height: 400px;
  min-height: 80vh;
}

.container {
  max-width: var(--page-max-width);
  margin: 0 auto;
}

.is-hidden {
  display: none !important;
}

.js-focus-visible :focus:not(.focus-visible) {
  outline: none;
}

.no-scroll {
  overflow: hidden;
}

/* START: Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 170px;
  background-color: transparent;
  z-index: 1000;
  transition: background-color 0.3s ease, box-shadow 0.3s ease, height 0.3s ease;
}
.header.is-scrolled {
  height: 120px;
  background-color: var(--color-bg);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}
.header.is-scrolled .header__container {
  padding-top: 12px;
  padding-bottom: 12px;
}
.header.is-scrolled .header__right {
  gap: 10px;
}
.header.is-scrolled .header__nav-link {
  padding: 10px 24px;
}
.header--gradient {
  background: linear-gradient(180deg, #fff 0%, #e5e5e5 100%);
}
.header--gradient.is-scrolled {
  background: linear-gradient(180deg, #fff 0%, #e5e5e5 100%);
}
.header__container {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 20px var(--container-padding) 20px var(--container-padding);
  height: 100%;
}
.header__logo {
  display: inline-flex;
  align-items: flex-end;
  height: 100%;
  transition: opacity 0.3s ease;
}
.header__logo:hover {
  opacity: 0.8;
}
.header__logo img {
  display: block;
  height: auto;
  max-height: 100%;
  width: auto;
  max-width: 100%;
}
.header__right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
  height: 100%;
  gap: 15px;
}
.header__phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--color-text);
  font-family: var(--font-family-main);
  font-size: 16px;
  font-weight: 500;
  transition: color 0.3s ease;
}
.header__phone:hover {
  color: var(--color-primary);
}
.header__phone-icon {
  color: var(--color-primary);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.header__phone:hover .header__phone-icon {
  transform: rotate(10deg);
}
.header__phone-number {
  letter-spacing: 0.02em;
}
.header__nav-list {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.header__nav-item {
  list-style: none;
}
.header__nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  font-family: var(--font-family-accent);
  font-size: clamp(14px, 1.2vw, 22px);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text);
  background-color: transparent;
  border-radius: 4px;
  transition: all 0.3s ease;
  position: relative;
}
.header__nav-link::after {
  content: "";
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: calc(100% - 56px);
  height: 2px;
  background-color: var(--color-primary);
  transition: transform 0.3s ease;
}
.header__nav-link:hover {
  color: var(--color-primary);
}
.header__nav-link:hover::after {
  transform: translateX(-50%) scaleX(1);
}
.header__nav-link--active {
  background-color: var(--color-primary);
  color: var(--color-white);
}
.header__nav-link--active::after {
  display: none;
}
.header__nav-link--active:hover {
  background-color: var(--color-primary-dark);
  color: var(--color-white);
}
.header__burger {
  display: none;
  position: relative;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  transition: background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.header__burger:hover, .header__burger:focus-visible {
  border-color: rgba(0, 0, 0, 0.15);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}
.header__burger-line {
  position: absolute;
  left: 50%;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background-color: var(--color-text);
  transform: translateX(-50%);
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.header__burger-line:nth-child(1) {
  top: 13px;
}
.header__burger-line:nth-child(2) {
  top: 21px;
}
.header__burger-line:nth-child(3) {
  top: 29px;
}
.header__burger.is-open {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}
.header__burger.is-open .header__burger-line:nth-child(1) {
  top: 21px;
  transform: translateX(-50%) rotate(45deg);
  background-color: var(--color-white);
}
.header__burger.is-open .header__burger-line:nth-child(2) {
  opacity: 0;
}
.header__burger.is-open .header__burger-line:nth-child(3) {
  top: 21px;
  transform: translateX(-50%) rotate(-45deg);
  background-color: var(--color-white);
}
.header__mobile-nav {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  padding: 24px var(--container-padding) 30px;
  background-color: var(--color-bg);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  display: none;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  z-index: 1000;
}
.header__mobile-nav.is-open {
  display: block;
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.header__mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.header__mobile-nav-item {
  list-style: none;
}
.header__mobile-nav .header__nav-link {
  width: 100%;
  justify-content: flex-start;
}

.header-spacer {
  height: 170px;
  transition: height 0.3s ease;
}
.header-spacer.is-scrolled {
  height: 120px;
}

@media (max-width: 992px) {
  .header {
    height: 100px;
  }
  .header__container {
    padding-bottom: 15px;
  }
  .header.is-scrolled {
    height: 80px;
  }
  .header.is-scrolled .header__container {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .header.is-scrolled .header__logo img {
    max-height: 50px;
  }
  .header.is-scrolled .header__nav-link {
    padding: 9px 18px;
  }
  .header__logo img {
    max-height: 55px;
  }
  .header__right {
    gap: 12px;
  }
  .header__phone {
    font-size: 15px;
  }
  .header__nav-list {
    gap: 4px;
  }
  .header__nav-link {
    padding: 10px 20px;
    font-size: 13px;
  }

  .header-spacer {
    height: 100px;
  }
  .header-spacer.is-scrolled {
    height: 80px;
  }
}
@media (max-width: 768px) {
  .header {
    height: 70px;
  }
  .header__container {
    padding-bottom: 12px;
    align-items: center;
  }
  .header__logo img {
    max-height: 45px;
  }
  .header__right {
    flex-direction: row;
    align-items: center;
    gap: 20px;
  }
  .header__phone {
    font-size: 14px;
  }
  .header__phone-number {
    display: none;
  }
  .header__phone-icon {
    width: 24px;
    height: 24px;
  }
  .header__nav-list {
    gap: 4px;
  }
  .header__nav-link {
    padding: 8px 14px;
    font-size: 12px;
  }
  .header__nav-link::after {
    display: none;
  }
  .header.is-scrolled {
    height: 60px;
  }
  .header.is-scrolled .header__container {
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .header.is-scrolled .header__logo img {
    max-height: 45px;
  }
  .header.is-scrolled .header__nav-link {
    padding: 6px 12px;
  }

  .header-spacer {
    height: 70px;
  }
  .header-spacer.is-scrolled {
    height: 60px;
  }
}
@media (max-width: 576px) {
  .header__nav-link {
    padding: 8px 10px;
    font-size: 11px;
  }
}
@media (max-width: 460px) {
  .header__right {
    flex-direction: row;
    align-items: center;
    gap: 10px;
  }
  .header__phone {
    display: none;
  }
  .header__nav {
    display: none;
  }
  .header__burger {
    display: inline-flex;
  }

  .header__mobile-nav {
    max-height: calc(100vh - 70px);
    overflow-y: auto;
  }
}
body.header-mobile-open {
  overflow: hidden;
}

/* END: Header */
/* START: Footer */
.footer {
  background-color: #333;
  padding: 50px 0 40px;
}
.footer__container {
  padding: 0 var(--container-padding);
}
.footer__top {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 150px;
}
@media (max-width: 1300px) {
  .footer__top {
    gap: 100px;
  }
}
.footer__logo {
  display: inline-flex;
  flex-shrink: 0;
  transition: opacity 0.3s ease;
}
.footer__logo:hover {
  opacity: 0.8;
}
.footer__logo img {
  height: 75px;
  width: auto;
  display: block;
}
.footer__nav-list {
  display: flex;
  align-items: center;
  gap: 50px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer__nav-item {
  list-style: none;
}
.footer__nav-link {
  font-family: var(--font-family-accent);
  font-size: 26px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-white);
  transition: color 0.3s ease;
  position: relative;
}
.footer__nav-link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--color-primary);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}
.footer__nav-link:hover {
  color: var(--color-primary);
}
.footer__nav-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}
.footer__phone {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--color-white);
  font-family: var(--font-family-main);
  font-size: 20px;
  font-weight: 500;
  transition: color 0.3s ease;
  flex-shrink: 0;
  margin-left: auto;
}
.footer__phone:hover {
  color: var(--color-primary);
}
.footer__phone-icon {
  color: var(--color-primary);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.footer__phone:hover .footer__phone-icon {
  transform: rotate(10deg);
}
.footer__phone-number {
  letter-spacing: 0.02em;
}
.footer__divider {
  height: 1px;
  background-color: rgba(255, 255, 255, 0.15);
  margin: 40px 0 25px;
}
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.footer__copyright span {
  font-family: var(--font-family-main);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}
.footer__credits span {
  font-family: var(--font-family-main);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
}
.footer__credits a {
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.3s ease;
}
.footer__credits a:hover {
  color: var(--color-primary);
}

@media (max-width: 1150px) {
  .footer {
    padding: 40px 0 30px;
  }
  .footer__top {
    flex-wrap: wrap;
    gap: 40px;
  }
  .footer__logo img {
    height: 45px;
  }
  .footer__nav-list {
    gap: 30px;
  }
  .footer__nav-link {
    font-size: 16px;
  }
  .footer__phone {
    font-size: 16px;
  }
  .footer__divider {
    margin: 30px 0 20px;
  }
}
@media (max-width: 768px) {
  .footer {
    padding: 35px 0 25px;
  }
  .footer__top {
    flex-direction: column;
    align-items: flex-start;
    gap: 25px;
  }
  .footer__nav {
    order: 2;
  }
  .footer__nav-list {
    flex-wrap: wrap;
    gap: 20px;
  }
  .footer__phone {
    order: 1;
    margin-left: 0;
  }
  .footer__divider {
    margin: 25px 0 20px;
  }
  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .footer__copyright span, .footer__credits span {
    font-size: 13px;
  }
}
/* END: Footer */
/* START: Hero */
.hero {
  position: relative;
  overflow: hidden;
}
.hero__body {
  background: linear-gradient(180deg, #ffffff 20%, #ddd 100%);
  padding: 50px 0 50px 0;
}
@media (max-width: 1200px) {
  .hero__body {
    padding: 200px 0 50px 0;
  }
}
@media (max-width: 768px) {
  .hero__body {
    padding: 100px 0 50px 0;
  }
}
.hero__body::before {
  content: "";
  position: absolute;
  inset: 15% 25% auto;
  height: clamp(260px, 36vw, 480px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.75) 0%, rgba(255, 255, 255, 0) 65%);
  filter: blur(35px);
  z-index: 0;
  pointer-events: none;
}
.hero__container {
  position: relative;
  z-index: 1;
  display: flex;
  gap: clamp(20px, 4vw, 60px);
  align-items: flex-end;
  max-width: var(--page-max-width);
  padding: 0 var(--container-padding);
}
@media (max-width: 550px) {
  .hero__container {
    flex-direction: column;
    align-items: flex-start;
  }
}
.hero__content {
  flex: 1 1 630px;
  max-width: 630px;
}
@media (max-width: 768px) {
  .hero__content {
    flex: 1 1 auto;
  }
}
@media (max-width: 550px) {
  .hero__content {
    max-width: 100%;
    flex: 1 1 auto;
  }
}
.hero__title {
  font-family: var(--font-family-accent);
  font-size: 80px;
  font-style: normal;
  font-weight: 900;
  line-height: 80px;
  /* 100% */
  letter-spacing: -3.2px;
  text-transform: uppercase;
  margin: 0 0 12px;
}
.hero__title span {
  display: block;
}
@media (max-width: 1450px) {
  .hero__title {
    font-size: 70px;
    line-height: 70px;
  }
}
@media (max-width: 992px) {
  .hero__title {
    font-size: 50px;
    line-height: 50px;
  }
}
@media (max-width: 768px) {
  .hero__title {
    font-size: 35px;
    line-height: 35px;
    letter-spacing: -1.6px;
  }
}
@media (max-width: 576px) {
  .hero__title {
    font-size: 28px;
    line-height: 28px;
    letter-spacing: -0.8px;
  }
}
.hero__subtitle {
  font-size: clamp(20px, 2.2vw, 30px);
  margin-bottom: 30px;
  font-weight: 400;
}
.hero__pricing {
  margin-bottom: 36px;
}
.hero__price {
  font-size: 20px;
  margin: 0 0 6px;
  display: flex;
  gap: 8px;
  align-items: baseline;
}
.hero__price-label {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(0, 0, 0, 0.66);
}
.hero__price-value {
  font-weight: 600;
}
.hero__price--regular {
  color: rgba(0, 0, 0, 0.45);
}
.hero__price--regular .hero__price-value {
  position: relative;
  display: inline-block;
  color: inherit;
}
.hero__price--regular .hero__price-value::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 2px;
  background-color: currentColor;
  transform: translateY(-50%);
}
.hero__price--sale {
  color: var(--color-primary);
  font-size: 24px;
  font-weight: 700;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 34px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 8px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}
.hero__btn--primary {
  background-color: var(--color-primary);
  color: var(--color-white);
}
.hero__btn--primary:hover {
  background-color: var(--color-primary-dark);
}
.hero__media {
  flex: 1 1 850px;
  display: flex;
  justify-content: center;
  position: relative;
  min-height: 860px;
  margin-bottom: -185px;
}
@media (max-width: 1200px) {
  .hero__media {
    flex: 1 1 600px;
    min-height: 600px;
    margin-bottom: -130px;
  }
}
@media (max-width: 992px) {
  .hero__media {
    flex: 1 1 400px;
    min-height: 400px;
    margin-bottom: -90px;
  }
}
@media (max-width: 768px) {
  .hero__media {
    flex: 1 1 300px;
    min-height: 300px;
    margin-bottom: 0;
  }
}
@media (max-width: 550px) {
  .hero__media {
    width: 100%;
    flex: 1 1 auto;
    min-height: auto;
  }
}
.hero__media img {
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
}
.hero__foot {
  background: #cfd0d4;
  padding: 70px 0;
}
.hero__foot-inner {
  display: flex;
  padding: 0 var(--container-padding);
}
.hero__learn-more {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text);
  transition: color 0.3s ease;
}
.hero__learn-more strong {
  font-weight: 700;
}
.hero__learn-more:hover {
  color: var(--color-primary);
}
@media (max-width: 600px) {
  .hero__learn-more {
    width: 100%;
    font-size: 14px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}

/* END: Hero */
/* START: Features */
.features {
  padding: 80px 0;
  background-color: var(--color-white);
}
.features__container {
  padding: 0 var(--container-padding);
}
.features__list {
  display: flex;
  gap: 60px;
}
.features__item {
  flex: 1;
  display: flex;
  align-items: flex-start;
  gap: 24px;
}
.features__icon {
  flex-shrink: 0;
  width: 90px;
  height: 90px;
  transition: transform 0.3s ease;
}
.features__icon img {
  width: 100%;
  height: 100%;
  display: block;
}
.features__item:hover .features__icon {
  transform: scale(1.05);
}
.features__content {
  flex: 1;
}
.features__title {
  font-family: var(--font-family-main);
  font-size: 22px;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.3;
  margin-bottom: 12px;
}
.features__text p {
  font-family: var(--font-family-main);
  font-size: 15px;
  font-weight: 400;
  color: var(--color-text-light);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 1200px) {
  .features {
    padding: 60px 0;
  }
  .features__list {
    gap: 40px;
  }
  .features__icon {
    width: 80px;
    height: 80px;
  }
  .features__title {
    font-size: 20px;
  }
  .features__text p {
    font-size: 14px;
  }
}
@media (max-width: 992px) {
  .features {
    padding: 50px 0;
  }
  .features__list {
    flex-direction: column;
    gap: 40px;
  }
  .features__icon {
    width: 90px;
    height: 90px;
  }
  .features__title {
    font-size: 22px;
  }
  .features__text p {
    font-size: 15px;
  }
}
@media (max-width: 576px) {
  .features {
    padding: 40px 0;
  }
  .features__list {
    gap: 32px;
  }
  .features__item {
    gap: 16px;
  }
  .features__icon {
    width: 70px;
    height: 70px;
  }
  .features__title {
    font-size: 18px;
    margin-bottom: 8px;
  }
  .features__text p {
    font-size: 14px;
  }
}
/* END: Features */
/* START: Product Showcase */
.product-showcase {
  padding: 0 0 60px 0;
  background-color: var(--color-white);
}
.product-showcase__container {
  padding: 0 var(--container-padding);
}
.product-showcase__card {
  display: flex;
  align-items: stretch;
  background-color: var(--color-primary);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}
.product-showcase__content {
  flex: 0 0 55%;
  max-width: 55%;
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
}
.product-showcase__title {
  font-family: var(--font-family-accent);
  font-size: 46px;
  font-weight: 600;
  line-height: 1.15;
  color: var(--color-white);
}
.product-showcase__description p {
  font-family: var(--font-family-main);
  font-size: 20px;
  font-weight: 300;
  line-height: 1.6;
  color: var(--color-white);
}
.product-showcase__btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background-color: var(--color-white);
  color: var(--color-black);
  font-family: var(--font-family-main);
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 6px;
  transition: all 0.3s ease;
  align-self: flex-start;
  margin-top: 16px;
}
.product-showcase__btn svg {
  transition: transform 0.3s ease;
}
.product-showcase__btn:hover {
  background-color: var(--color-black);
  color: var(--color-white);
}
.product-showcase__btn:hover svg {
  transform: translateX(5px);
}
.product-showcase__image {
  flex: 0 0 45%;
  max-width: 45%;
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow: visible;
}
.product-showcase__image img {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
  max-height: 500px;
}

@media (max-width: 1200px) {
  .product-showcase__content {
    padding: 60px 40px;
  }
  .product-showcase__title {
    font-size: 36px;
  }
  .product-showcase__image img {
    transform: translateX(20px);
  }
}
@media (max-width: 992px) {
  .product-showcase {
    padding: 40px 0;
  }
  .product-showcase__card {
    flex-direction: column-reverse;
    border-radius: 20px;
    overflow: hidden;
  }
  .product-showcase__content {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 50px 40px;
    order: 1;
  }
  .product-showcase__title {
    font-size: 32px;
  }
  .product-showcase__image {
    flex: 0 0 100%;
    max-width: 100%;
    order: 2;
    justify-content: center;
  }
  .product-showcase__image img {
    transform: none;
    max-height: 400px;
    width: auto;
    max-width: 90%;
  }
}
@media (max-width: 576px) {
  .product-showcase__content {
    padding: 40px 24px;
    gap: 20px;
  }
  .product-showcase__title {
    font-size: 26px;
  }
  .product-showcase__description p {
    font-size: 15px;
  }
  .product-showcase__btn {
    padding: 14px 24px;
    font-size: 13px;
    width: 100%;
    justify-content: center;
  }
}
/* END: Product Showcase */
/* START: Video Slider */
.video-slider {
  padding: 80px 0;
  background-color: var(--color-bg);
  overflow: hidden;
}
.video-slider__container {
  padding: 0 var(--container-padding);
}
.video-slider__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}
.video-slider__title {
  font-family: var(--font-family-main);
  font-size: 42px;
  font-weight: 700;
  color: var(--color-text);
}
.video-slider__nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.video-slider__nav-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  color: #333;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}
.video-slider__nav-btn:hover {
  color: var(--color-primary);
}
.video-slider__nav-btn.swiper-button-disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.video-slider__nav-btn.swiper-button-disabled:hover {
  color: #333;
}
.video-slider__nav-btn svg {
  width: 43px;
  height: 26px;
}
.video-slider__swiper-wrapper {
  padding-left: var(--container-padding);
}
.video-slider__swiper {
  overflow: visible;
}
.video-slider__slide {
  width: 340px;
  margin-right: 24px;
}
.video-slider__item {
  display: block;
  text-decoration: none;
  color: inherit;
}
.video-slider__thumb {
  position: relative;
  width: 100%;
  height: 480px;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 20px;
}
.video-slider__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.video-slider__thumb::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.1);
  z-index: 1;
  transition: background 0.3s ease;
}
.video-slider__item:hover .video-slider__thumb img {
  transform: scale(1.05);
}
.video-slider__item:hover .video-slider__thumb::before {
  background: rgba(0, 0, 0, 0.2);
}
.video-slider__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}
.video-slider__play svg {
  width: 50px;
  height: 50px;
  color: var(--color-text);
  margin-left: 4px;
}
.video-slider__item:hover .video-slider__play {
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.2);
}
.video-slider__caption {
  font-family: var(--font-family-accent);
  font-size: 30px;
  font-weight: 500;
  color: var(--color-text);
  text-align: center;
}

@media (max-width: 1200px) {
  .video-slider__title {
    font-size: 36px;
  }
  .video-slider__slide {
    width: 300px;
    margin-right: 20px;
  }
  .video-slider__thumb {
    height: 420px;
  }
}
@media (max-width: 768px) {
  .video-slider {
    padding: 60px 0;
  }
  .video-slider__header {
    margin-bottom: 30px;
  }
  .video-slider__title {
    font-size: 28px;
  }
  .video-slider__nav-btn svg {
    width: 32px;
    height: 20px;
  }
  .video-slider__slide {
    width: 260px;
    margin-right: 16px;
  }
  .video-slider__thumb {
    height: 360px;
    border-radius: 16px;
  }
  .video-slider__play {
    width: 64px;
    height: 64px;
  }
  .video-slider__play svg {
    width: 24px;
    height: 24px;
  }
  .video-slider__caption {
    font-size: 20px;
  }
}
@media (max-width: 480px) {
  .video-slider {
    padding: 40px 0;
  }
  .video-slider__title {
    font-size: 24px;
  }
  .video-slider__nav {
    gap: 16px;
  }
  .video-slider__nav-btn svg {
    width: 28px;
    height: 16px;
  }
  .video-slider__slide {
    width: 220px;
    margin-right: 12px;
  }
  .video-slider__thumb {
    height: 300px;
    border-radius: 12px;
    margin-bottom: 15px;
  }
  .video-slider__play {
    width: 52px;
    height: 52px;
  }
  .video-slider__play svg {
    width: 20px;
    height: 20px;
  }
  .video-slider__caption {
    font-size: 16px;
  }
}
/* END: Video Slider */
/* START: Product */
.product {
  padding: 80px 0;
  background-color: var(--color-white);
}
.product__container {
  padding: 0 var(--container-padding);
}
.product__grid {
  display: grid;
  grid-template-columns: calc(50% - 30px) calc(50% - 30px);
  gap: 60px;
  align-items: start;
}
.product__gallery {
  position: -webkit-sticky;
  position: sticky;
  top: 120px;
}
.product__gallery-main {
  border: 1px solid var(--color-border);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 16px;
}
.product__gallery-link {
  display: block;
  cursor: zoom-in;
}
.product__gallery-link img {
  width: 100%;
  height: auto;
  max-height: 850px;
  -o-object-fit: contain;
  object-fit: contain;
  display: block;
  transition: transform 0.3s ease;
}
.product__gallery-link:hover img {
  transform: scale(1.02);
}
.product__gallery-thumbs-slider .swiper-slide {
  width: auto;
  cursor: pointer;
}
.product__gallery-thumb {
  width: 120px;
  height: 120px;
  border: 2px solid transparent;
  border-radius: 4px;
  overflow: hidden;
  transition: border-color 0.3s ease;
}
.product__gallery-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}
.swiper-slide-thumb-active .product__gallery-thumb {
  border-color: var(--color-primary);
}
.product__gallery-thumb:hover {
  border-color: var(--color-primary);
}
.product__info {
  padding-top: 10px;
}
.product__title {
  font-family: var(--font-family-accent);
  font-size: 42px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 20px;
  line-height: 1.1;
}
.product__pricing {
  margin-bottom: 24px;
}
.product__price-regular {
  font-size: 22px;
  color: var(--color-text);
  margin-bottom: 4px;
}
.product__price-regular .product__price-label {
  font-style: italic;
}
.product__price-regular .product__price-value {
  font-weight: 700;
  text-decoration: line-through;
}
@media (max-width: 1100px) {
  .product__price-regular {
    font-size: 18px;
  }
}
.product__price-sale {
  font-size: 31px;
  color: var(--color-primary);
}
.product__price-sale .product__price-label {
  font-weight: 400;
}
.product__price-sale .product__price-value {
  font-weight: 700;
}
@media (max-width: 1100px) {
  .product__price-sale {
    font-size: 24px;
  }
}
.product__actions {
  display: flex;
  align-items: stretch;
  gap: 20px;
  margin-bottom: 40px;
  padding: 20px 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}
.product__quantity {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 22px 20px;
  background-color: #f5f5f5;
  border-radius: 4px;
}
.product__quantity-label {
  font-size: 16px;
  color: var(--color-text);
}
.product__quantity-input {
  width: 60px;
  padding: 8px 12px;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  font-size: 16px;
  font-family: var(--font-family-main);
  text-align: center;
  background-color: var(--color-white);
  -moz-appearance: textfield;
}
.product__quantity-input:focus {
  outline: none;
  border-color: var(--color-primary);
}
.product__quantity-input::-webkit-outer-spin-button, .product__quantity-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.product__buy-btn {
  padding: 16px 60px;
  background-color: var(--color-primary);
  color: var(--color-white);
  font-family: var(--font-family-main);
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.product__buy-btn:hover {
  background-color: var(--color-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(244, 129, 32, 0.3);
}
.product__section {
  margin-bottom: 32px;
}
.product__section:last-child {
  margin-bottom: 0;
}
.product__section-title {
  font-family: var(--font-family-accent);
  font-size: 36px;
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: 12px;
}
@media (max-width: 1100px) {
  .product__section-title {
    font-size: 24px;
  }
}
.product__section-text p {
  font-size: 20px;
  line-height: 1.6;
  color: var(--color-text-light);
}
@media (max-width: 1100px) {
  .product__section-text p {
    font-size: 16px;
  }
}
.product ul {
  list-style: disc;
  padding-left: 20px;
}
.product ul li {
  font-size: 20px;
  line-height: 1.6;
  color: var(--color-text-light);
  margin-bottom: 6px;
}
.product ul li:last-child {
  margin-bottom: 0;
}
@media (max-width: 1100px) {
  .product ul li {
    font-size: 16px;
  }
}
.product__files {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.product__file {
  display: inline-flex;
  align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  gap: 12px;
  padding: 5px 16px;
  background-color: #f9f9f9;
  border-radius: 4px;
  transition: all 0.3s ease;
}
.product__file:hover {
  background-color: #f0f0f0;
  border-color: #ccc;
}
.product__file-icon {
  flex-shrink: 0;
  width: 28px;
  height: 35px;
}
.product__file-name {
  font-size: 15px;
  color: var(--color-text);
  font-weight: 500;
}

@media (max-width: 1200px) {
  .product__grid {
    gap: 40px;
  }
  .product__title {
    font-size: 36px;
  }
  .product__gallery-thumb {
    width: 100px;
    height: 100px;
  }
}
@media (max-width: 992px) {
  .product {
    padding: 60px 0;
  }
  .product__grid {
    grid-template-columns: 100%;
    gap: 40px;
  }
  .product__gallery {
    position: static;
  }
  .product__title {
    font-size: 32px;
  }
  .product__actions {
    flex-wrap: wrap;
  }
  .product__buy-btn {
    flex: 1;
    min-width: 200px;
  }
}
@media (max-width: 576px) {
  .product {
    padding: 40px 0;
  }
  .product__title {
    font-size: 28px;
  }
  .product__gallery-thumb {
    width: 80px;
    height: 80px;
  }
  .product__actions {
    flex-direction: column;
  }
  .product__quantity {
    justify-content: center;
  }
  .product__buy-btn {
    width: 100%;
    padding: 16px 40px;
  }
  .product__section-title {
    font-size: 20px;
  }
}
/* END: Product */
/* START: Tagline */
.tagline {
  padding: 0 0 80px 0;
  background-color: var(--color-white);
}
.tagline__container {
  padding: 0 var(--container-padding);
  display: flex;
  justify-content: center;
}
.tagline__text {
  max-width: 1100px;
  text-align: center;
  font-family: var(--font-family-main);
  font-size: 40px;
  line-height: 1.5;
  color: var(--color-text);
}
.tagline__text-regular {
  font-weight: 300;
}
.tagline__text-bold {
  font-weight: 600;
}

@media (max-width: 992px) {
  .tagline {
    padding: 60px 0;
  }
  .tagline__text {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .tagline {
    padding: 50px 0;
  }
  .tagline__text {
    font-size: 18px;
  }
}
/* END: Tagline */
.checkout {
  background-color: #e8e8e8;
  padding: 60px 0 80px;
}
.checkout .container {
  max-width: 1300px;
}
.checkout__title {
  font-size: 28px;
  font-weight: 700;
  color: #333;
  margin-bottom: 40px;
}
.checkout__section {
  padding: 30px 0;
}
.checkout__section-title {
  font-size: 14px;
  font-weight: 700;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-align: center;
  margin-bottom: 30px;
}
.checkout__divider {
  border: none;
  border-top: 1px solid #ccc;
  margin: 0;
}
.checkout__grid {
  display: grid;
  gap: 20px;
}
.checkout__grid--2col {
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 768px) {
  .checkout__grid--2col {
    grid-template-columns: 1fr;
  }
}
.checkout__grid--address {
  grid-template-columns: 1fr auto auto;
  margin-top: 20px;
}
@media (max-width: 768px) {
  .checkout__grid--address {
    grid-template-columns: 1fr;
  }
}
.checkout__grid--payment {
  grid-template-columns: 1fr 180px 100px;
  margin-top: 20px;
}
@media (max-width: 768px) {
  .checkout__grid--payment {
    grid-template-columns: 1fr;
  }
}
.checkout__field {
  display: flex;
  align-items: center;
  gap: 15px;
}
.checkout__field--full {
  width: 100%;
}
.checkout__field--province .checkout__select {
  min-width: 80px;
}
.checkout__field--postal .checkout__input {
  width: 100px;
}
.checkout__field--card {
  flex: 1;
}
.checkout__field--expiry .checkout__input {
  width: 180px;
}
.checkout__field--cvv .checkout__input {
  width: 100px;
}
@media (max-width: 768px) {
  .checkout__field {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  .checkout__field--postal .checkout__input, .checkout__field--expiry .checkout__input, .checkout__field--cvv .checkout__input {
    width: 100%;
  }
}
.checkout__label {
  font-size: 14px;
  font-weight: 400;
  color: #333;
  white-space: nowrap;
  min-width: 120px;
  text-align: right;
}
@media (max-width: 768px) {
  .checkout__label {
    text-align: left;
    min-width: auto;
  }
}
.checkout__input, .checkout__select {
  flex: 1;
  height: 45px;
  font-size: 14px;
  color: #333;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 0;
  outline: none;
  transition: border-color 0.2s ease;
}
.checkout__input::-moz-placeholder, .checkout__select::-moz-placeholder {
  color: #999;
}
.checkout__input:-ms-input-placeholder, .checkout__select:-ms-input-placeholder {
  color: #999;
}
.checkout__input::placeholder, .checkout__select::placeholder {
  color: #999;
}
.checkout__input:focus, .checkout__select:focus {
  border-color: #f07c00;
}
.checkout__input--placeholder::-moz-placeholder, .checkout__select--placeholder::-moz-placeholder {
  color: #666;
}
.checkout__input--placeholder:-ms-input-placeholder, .checkout__select--placeholder:-ms-input-placeholder {
  color: #666;
}
.checkout__input--placeholder::placeholder, .checkout__select--placeholder::placeholder {
  color: #666;
}
.checkout__select {
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='6' viewBox='0 0 12 6'%3E%3Cpath fill='%23333' d='M0 0l6 6 6-6z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 35px;
}
.checkout__checkbox-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.checkout__checkbox {
  width: 20px;
  height: 20px;
  min-width: 20px;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border: 2px solid #333;
  background-color: #fff;
  position: relative;
  flex-shrink: 0;
  margin: 0;
  padding: 0;
  vertical-align: middle;
}
.checkout__checkbox:checked {
  background-color: #fff;
  border-color: #333;
}
.checkout__checkbox:checked::before {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 14px;
  font-weight: 700;
  color: #333;
  line-height: 1;
}
.checkout__checkbox:focus {
  outline: none;
}
.checkout__shipping-fields {
  margin-top: 30px;
  display: none;
}
.checkout__shipping-fields.is-visible {
  display: block;
}
.checkout__shipping-options {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 600px;
  margin: 0 auto;
}
.checkout__radio-option {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  background-color: #fff;
  border: 1px solid #ddd;
  cursor: pointer;
  transition: border-color 0.2s ease;
}
.checkout__radio-option:hover {
  border-color: #f07c00;
}
.checkout__radio-option:has(.checkout__radio:checked) {
  border-color: #f07c00;
  background-color: #fff;
}
.checkout__radio {
  display: none;
}
.checkout__radio:checked + .checkout__radio-custom {
  border-color: #f07c00;
  background-color: #f07c00;
}
.checkout__radio:checked + .checkout__radio-custom::after {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.checkout__radio-custom {
  width: 22px;
  height: 22px;
  border: 2px solid #ccc;
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
  background-color: #fff;
  transition: all 0.2s ease;
}
.checkout__radio-custom::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 8px;
  height: 8px;
  background-color: #fff;
  border-radius: 50%;
  opacity: 0;
  transition: all 0.2s ease;
}
.checkout__radio-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.checkout__radio-title {
  font-size: 15px;
  font-weight: 600;
  color: #333;
}
.checkout__radio-desc {
  font-size: 13px;
  color: #666;
}
.checkout__radio-price {
  font-size: 15px;
  font-weight: 600;
  color: #f07c00;
}
.checkout__summary {
  max-width: 350px;
  margin: 0 auto 25px;
}
.checkout__summary-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
}
.checkout__summary-row--total {
  border-top: 1px solid #ccc;
  margin-top: 10px;
  padding-top: 15px;
}
.checkout__summary-row--total .checkout__summary-label,
.checkout__summary-row--total .checkout__summary-value {
  font-weight: 700;
}
.checkout__summary-label {
  font-size: 14px;
  font-weight: 600;
  color: #333;
}
.checkout__summary-value {
  font-size: 14px;
  color: #333;
}
.checkout__terms {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.checkout__terms-checkbox {
  width: 20px;
  height: 20px;
  min-width: 20px;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border: 2px solid #333;
  background-color: #fff;
  position: relative;
  flex-shrink: 0;
  margin: 0;
  padding: 0;
  vertical-align: middle;
}
.checkout__terms-checkbox:checked {
  background-color: #fff;
  border-color: #333;
}
.checkout__terms-checkbox:checked::before {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 14px;
  font-weight: 700;
  color: #333;
  line-height: 1;
}
.checkout__terms-checkbox:focus {
  outline: none;
}
.checkout__terms-link {
  color: #333;
  text-decoration: underline;
  transition: color 0.2s ease;
}
.checkout__terms-link:hover {
  color: #f07c00;
}
.checkout__card-icons {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 30px;
}
.checkout__card-icon {
  height: 40px;
  width: auto;
  border: 1px solid #ddd;
  border-radius: 4px;
}
.checkout__payment-fields {
  max-width: 800px;
  margin: 0 auto;
}
.checkout__submit {
  text-align: center;
  margin-top: 40px;
}
.checkout__submit-btn {
  display: inline-block;
  padding: 18px 50px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  background-color: #f07c00;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}
.checkout__submit-btn:hover {
  background-color: #d86d00;
  transform: translateY(-2px);
}
.checkout__submit-btn:active {
  transform: translateY(0);
}

/* START: Contact */
.contact {
  padding: 80px 0;
  background-color: var(--color-background);
}
.contact__container {
  padding: 0 var(--container-padding);
}
.contact__header {
  text-align: center;
  max-width: 1100px;
  margin: 0 auto 50px;
}
.contact__title {
  font-family: var(--font-family-main);
  font-size: 60px;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 20px;
  letter-spacing: -2.4px;
}
.contact__intro {
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-text);
}
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.contact__left {
  display: flex;
  flex-direction: column;
}
.contact__info-bar {
  display: flex;
  align-items: flex-start;
  gap: 80px;
  margin-bottom: 80px;
}
.contact__info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact__info-icon {
  flex-shrink: 0;
  margin-top: 2px;
}
.contact__info-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.contact__info-label {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-text);
}
.contact__info-value {
  font-size: 16px;
  color: var(--color-text);
  text-decoration: none;
  transition: color 0.3s ease;
}
.contact__info-value:hover {
  color: var(--color-primary);
}
.contact__form-card {
  background-color: var(--color-primary);
  border-radius: 12px;
  padding: 60px;
}
.contact__form-title {
  font-family: var(--font-family-accent);
  font-size: 36px;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 8px;
}
.contact__form-subtitle {
  font-size: 16px;
  color: var(--color-white);
  opacity: 0.9;
  margin-bottom: 40px;
}
.contact__form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}
.contact__form-row:last-of-type {
  margin-bottom: 32px;
}
.contact__input, .contact__textarea {
  flex: 1;
  padding: 16px 18px;
  border: none;
  border-radius: 4px;
  font-family: var(--font-family-main);
  font-size: 15px;
  color: var(--color-text);
  background-color: var(--color-white);
  transition: box-shadow 0.3s ease;
}
.contact__input::-moz-placeholder, .contact__textarea::-moz-placeholder {
  color: #999;
}
.contact__input:-ms-input-placeholder, .contact__textarea:-ms-input-placeholder {
  color: #999;
}
.contact__input::placeholder, .contact__textarea::placeholder {
  color: #999;
}
.contact__input:focus, .contact__textarea:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}
.contact__textarea {
  resize: vertical;
  min-height: 160px;
}
.contact__submit-btn {
  display: inline-block;
  padding: 14px 40px;
  background-color: var(--color-text);
  color: var(--color-white);
  font-family: var(--font-family-main);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.contact__submit-btn:hover {
  background-color: #444;
  transform: translateY(-2px);
}
.contact__image {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.contact__image img {
  max-width: 100%;
  height: auto;
}

@media (max-width: 1200px) {
  .contact__title {
    font-size: 40px;
  }
  .contact__info-bar {
    gap: 60px;
  }
  .contact__form-card {
    padding: 48px;
  }
  .contact__form-title {
    font-size: 28px;
  }
}
@media (max-width: 992px) {
  .contact {
    padding: 60px 0;
  }
  .contact__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .contact__info-bar {
    gap: 60px;
    margin-bottom: 60px;
  }
  .contact__image {
    order: 2;
  }
  .contact__image img {
    width: 100%;
    max-width: 500px;
  }
}
@media (max-width: 768px) {
  .contact__title {
    font-size: 32px;
  }
  .contact__info-bar {
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
  }
  .contact__form-card {
    padding: 36px 28px;
  }
  .contact__form-row {
    flex-direction: column;
    gap: 12px;
  }
}
@media (max-width: 576px) {
  .contact {
    padding: 40px 0;
  }
  .contact__title {
    font-size: 28px;
  }
  .contact__form-title {
    font-size: 24px;
  }
  .contact__submit-btn {
    width: 100%;
  }
}
/* END: Contact */
.paragraph__container {
  max-width: var(--page-max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}
@media (max-width: 768px) {
  .paragraph__container {
    grid-template-columns: 1fr;
    min-height: auto;
  }
}
.paragraph__image {
  height: 100%;
}
.paragraph__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}
@media (max-width: 768px) {
  .paragraph__image {
    width: 100%;
    height: 300px;
    margin-bottom: 40px;
  }
}
.paragraph__content {
  padding: 60px;
  color: var(--color-text);
  width: 100%;
}
@media (max-width: 1200px) {
  .paragraph__content {
    padding: 40px;
  }
}
@media (max-width: 768px) {
  .paragraph__content {
    padding: 20px;
    width: 100%;
  }
}
.paragraph__title {
  margin-bottom: 24px;
}
.paragraph__text {
  margin-bottom: 32px;
  line-height: 1.6;
}
.paragraph__text ul,
.paragraph__text ol {
  margin-bottom: 16px;
  padding-left: 24px;
}
.paragraph__text ul li,
.paragraph__text ol li {
  margin-bottom: 8px;
}
.paragraph__text ul li:last-child,
.paragraph__text ol li:last-child {
  margin-bottom: 0;
}
.paragraph .btn {
  margin-bottom: 40px;
}
.paragraph__link {
  display: flex;
  align-items: center;
  -moz-column-gap: 10px;
  column-gap: 10px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  color: var(--color-primary);
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: 0.24px;
  text-transform: uppercase;
}
.paragraph__actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-bottom: 40px;
  position: relative;
}
@media (max-width: 450px) {
  .paragraph__actions {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .paragraph__actions {
    gap: 16px;
  }
}
.paragraph__action {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 10px;
  text-align: center;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
  padding: 24px;
  position: relative;
}
.paragraph__action:hover {
  opacity: 0.8;
  transform: translateY(-2px);
}
@media (max-width: 768px) {
  .paragraph__action {
    padding: 16px;
  }
  .paragraph__action:not(:last-child)::after {
    display: none;
  }
}
.paragraph__action svg {
  width: 80px;
  height: 80px;
  margin-bottom: 12px;
  color: currentColor;
}
@media (max-width: 768px) {
  .paragraph__action svg {
    width: 60px;
    height: 60px;
  }
}
.paragraph__action-title {
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.paragraph__downloads {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 16px 0px;
}
@media (max-width: 1450px) {
  .paragraph__downloads {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 1050px) {
  .paragraph__downloads {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .paragraph__downloads {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 450px) {
  .paragraph__downloads {
    grid-template-columns: 1fr;
  }
}
.paragraph__download {
  background: #f0f0f0;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.paragraph__download:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}
.paragraph__download-image {
  margin-bottom: 0;
}
.paragraph__download-image img {
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}
.paragraph__download-actions {
  display: flex;
  justify-content: space-between;
  padding: 16px 20px;
}
.paragraph__download-link {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 6px;
}
.paragraph__download-link:hover {
  color: var(--color-primary-dark);
}
.paragraph__cta {
  margin-top: clamp(32px, 4vw, 48px);
}
.paragraph--image-left .paragraph__container {
  grid-template-areas: "image content";
}
@media (max-width: 768px) {
  .paragraph--image-left .paragraph__container {
    grid-template-areas: "image" "content";
  }
}
.paragraph--image-left .paragraph__image {
  grid-area: image;
  margin-right: 0;
}
@media (max-width: 768px) {
  .paragraph--image-left .paragraph__image {
    margin-right: 0;
    margin-bottom: 40px;
  }
}
.paragraph--image-left .paragraph__content {
  grid-area: content;
}
.paragraph--image-right .paragraph__container {
  grid-template-areas: "content image";
}
@media (max-width: 768px) {
  .paragraph--image-right .paragraph__container {
    grid-template-areas: "image" "content";
  }
}
.paragraph--image-right .paragraph__image {
  grid-area: image;
  margin-left: 0;
}
@media (max-width: 768px) {
  .paragraph--image-right .paragraph__image {
    margin-left: 0;
    margin-bottom: 40px;
  }
}
.paragraph--image-right .paragraph__content {
  grid-area: content;
}
.paragraph--image-center .paragraph__container {
  position: relative;
  z-index: 2;
  grid-template-columns: 1fr;
  justify-items: center;
}
.paragraph--image-center .paragraph__content {
  padding: 60px var(--container-padding);
}
@media (max-width: 1200px) {
  .paragraph--image-center .paragraph__content {
    padding: 40px var(--container-padding);
  }
}
@media (max-width: 768px) {
  .paragraph--image-center .paragraph__content {
    padding: 20px var(--container-padding);
    width: 100%;
  }
}
.paragraph--no-image .paragraph__container {
  grid-template-columns: 1fr;
  justify-items: center;
}
.paragraph--no-image .paragraph__content {
  padding: 60px var(--container-padding);
}
@media (max-width: 1200px) {
  .paragraph--no-image .paragraph__content {
    padding: 40px var(--container-padding);
  }
}
@media (max-width: 768px) {
  .paragraph--no-image .paragraph__content {
    padding: 20px var(--container-padding);
    width: 100%;
  }
}
.paragraph--no-image .paragraph__image {
  display: none;
}
.paragraph--accent-bg {
  background-color: var(--color-primary);
}
.paragraph--accent-bg .paragraph__content {
  color: var(--color-white);
}
.paragraph--accent-bg .paragraph__download-link {
  color: var(--color-white);
}
.paragraph--accent-bg .paragraph__download-link:hover {
  opacity: 0.8;
}
.paragraph--accent-bg .paragraph__action:not(:last-child)::after {
  background-color: rgba(255, 255, 255, 0.2);
}
.paragraph--accent-light {
  background-color: var(--accent-background-color);
}
.paragraph--accent-light .paragraph__content {
  color: var(--color-text);
}
.paragraph--with-padding .paragraph__container {
  padding: 60px var(--container-padding);
  gap: 60px;
}
.paragraph--with-padding .paragraph__container .paragraph__content {
  padding: 0;
}
@media (max-width: 1200px) {
  .paragraph--with-padding .paragraph__container {
    gap: 40px;
  }
}
@media (max-width: 768px) {
  .paragraph--with-padding .paragraph__container {
    padding: 40px var(--container-padding);
    gap: 40px;
  }
}
@media (max-width: 768px) {
  .paragraph--with-padding .paragraph__image {
    margin-bottom: 0;
  }
}

.paragraph-cta {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(36px, 5vw, 72px);
  border-radius: 36px;
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.5) 45%, rgba(255, 255, 255, 0) 80%, rgba(255, 255, 255, 0) 100%), url("/img/misc/hgn_vet-tech-1.jpg");
  background-size: 100% 100%, cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 320px;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .paragraph-cta {
    padding: clamp(32px, 6vw, 56px);
  }
}
@media (max-width: 768px) {
  .paragraph-cta {
    border-radius: 24px;
    min-height: auto;
    background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.9) 70%, rgba(255, 255, 255, 0.75) 100%), url("/img/misc/hgn_vet-tech-1.jpg");
    background-position: center;
  }
}
.paragraph-cta__content {
  position: relative;
  z-index: 1;
}
.paragraph-cta__title {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 500;
  line-height: 1.2;
  color: var(--color-text);
  margin: 0 0 28px;
}
.paragraph-cta__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 36px;
  border-radius: 15px;
  background-color: var(--color-primary);
  color: var(--color-white);
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
  box-shadow: 0 15px 30px rgba(17, 24, 39, 0.2);
}
.paragraph-cta__button:hover {
  transform: translateX(6px);
  opacity: 0.92;
}
.paragraph-cta__button-icon {
  font-size: 20px;
  line-height: 1;
}
@media (max-width: 768px) {
  .paragraph-cta__content {
    max-width: none;
    text-align: center;
  }
  .paragraph-cta__button {
    width: 100%;
  }
}

.pa-inline {
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
}

.pa-block {
  padding-top: 60px;
  padding-bottom: 60px;
}

.bg-accent {
  background-color: var(--accent-background-color);
}

input.error,
select.error,
textarea.error {
  border-color: var(--input-error-border-color);
  background-color: var(--input-error-background-color);
}

input,
select,
textarea {
  border: none;
  padding: 15px;
  width: 100%;
}

input:disabled,
select:disabled,
textarea:disabled {
  background-color: #eee;
  border: 1px solid #bdbdbd;
  opacity: 0.8;
}

.fc-accent {
  color: var(--color-primary);
}

.fc-white {
  color: var(--color-white);
}

.fc-black {
  color: var(--color-black);
}

.nowrap {
  white-space: nowrap;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 */
  height: 0;
}

.video-wrapper.video-wrapper--sm {
  max-width: 950px;
  margin: 0 auto;
  padding-bottom: 40%;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-wrapper video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Not Found Page */
.not-found-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: var(--accent-background-color);
  padding: 60px var(--container-padding);
}

.not-found-page__title {
  font-family: var(--font-family-main);
  font-size: clamp(25px, 4vw, 40px);
  font-weight: 800;
  line-height: 1.1;
  margin: 0 0 12px;
  background: linear-gradient(135deg, var(--color-secondary-light), var(--color-primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.not-found-page__subtitle {
  font-family: var(--font-family-main);
  font-size: clamp(16px, 2.2vw, 22px);
  font-weight: 400;
  color: var(--color-text);
  opacity: 0.8;
}

.btn {
  display: inline-block;
  background: var(--color-primary);
  color: white;
  padding: 15px 40px;
  border: 0;
  border-radius: 15px;
  font-family: var(--font-family-main);
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  position: relative;
}
.btn--flex {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.btn--small {
  padding: 10px 25px;
  font-size: 14px;
}
.btn--transparent {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
  box-shadow: none;
}
.btn--transparent:hover {
  background: var(--color-primary);
  color: white;
  transform: translateY(-2px);
}
.btn--white {
  background: #f2f7ff;
  color: var(--color-primary);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.btn--white:hover {
  background: var(--color-primary);
  color: white;
  transform: translateY(-2px);
}
.btn--black {
  background: #333;
  color: var(--color-white);
}
.btn--black:hover {
  background: #000;
  transform: translateY(-2px);
}
.btn--accent {
  background: var(--color-secondary);
}
.btn--accent:hover {
  background: var(--color-secondary-dark);
  transform: translateY(-2px);
}
.btn--icon {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn:hover {
  background: var(--color-primary-dark);
  transform: translateY(-2px);
}
@media (max-width: 768px) {
  .btn {
    padding: 12px 30px;
    font-size: 14px;
  }
  .btn--small {
    padding: 8px 20px;
    font-size: 12px;
  }
}

.btn.btn--loading {
  pointer-events: none;
  cursor: not-allowed;
  color: transparent;
  transform: none;
  overflow: hidden;
}

.btn.btn--loading::before {
  content: "";
  position: absolute;
  inset: 0;
  background: inherit;
  border-radius: inherit;
  z-index: 1;
}

.btn.btn--loading::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  width: 1.2em;
  height: 1.2em;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: #fff;
  border-right-color: #fff;
  border-radius: 50%;
  -webkit-animation: btn-spin 0.8s linear infinite;
  animation: btn-spin 0.8s linear infinite;
  z-index: 2;
}

.btn.btn--loading:hover {
  background: var(--color-primary);
  transform: none;
}

@-webkit-keyframes btn-spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes btn-spin {
  to {
    transform: rotate(360deg);
  }
}
.section-title {
  color: var(--color-black);
  font-size: clamp(30px, 5vw, 60px);
  font-style: normal;
  font-weight: 600;
  line-height: 110%;
  letter-spacing: -2.4px;
}
.section-title--light {
  color: var(--color-white);
}
.section-title--margin-bottom {
  margin-bottom: 35px;
}
/*# sourceMappingURL=main.css.map */
