*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: #333333;
  background-color: #FFFFFF;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s ease;
}

ul, ol {
  list-style: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

iframe {
  border: none;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  color: #0A0A0A;
}

h1 {
  font-size: 2.25rem;
}
@media (min-width: 768px) {
  h1 {
    font-size: 3rem;
  }
}
@media (min-width: 1024px) {
  h1 {
    font-size: 3.5rem;
  }
}

h2 {
  font-size: 1.75rem;
}
@media (min-width: 768px) {
  h2 {
    font-size: 2.25rem;
  }
}
@media (min-width: 1024px) {
  h2 {
    font-size: 2.5rem;
  }
}

h3 {
  font-size: 1.25rem;
}
@media (min-width: 768px) {
  h3 {
    font-size: 1.5rem;
  }
}

p {
  margin-bottom: 1rem;
}
p:last-child {
  margin-bottom: 0;
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}
@media (min-width: 768px) {
  .section-header {
    margin-bottom: 60px;
  }
}

.section-title {
  margin-bottom: 16px;
  position: relative;
}
.section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #2CC9D2;
  margin: 16px auto 0;
  border-radius: 2px;
}

.section-subtitle {
  font-size: 1rem;
  color: #333333;
  max-width: 600px;
  margin: 0 auto;
  font-weight: 400;
}
@media (min-width: 768px) {
  .section-subtitle {
    font-size: 1.125rem;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
  white-space: nowrap;
}

.btn--primary {
  background: #2CC9D2;
  color: #FFFFFF;
}
.btn--primary:hover {
  background: rgb(36.9322834646, 168.7133858268, 176.2677165354);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.btn--outline {
  background: transparent;
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
}
.btn--outline:hover {
  background: #FFFFFF;
  color: #0A0A0A;
}

.btn--dark {
  background: #0A0A0A;
  color: #FFFFFF;
}
.btn--dark:hover {
  background: rgb(48.25, 48.25, 48.25);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 60px 0;
}
@media (min-width: 768px) {
  .section {
    padding: 80px 0;
  }
}
@media (min-width: 1024px) {
  .section {
    padding: 100px 0;
  }
}

.animate {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.animate.visible {
  opacity: 1;
  transform: translateY(0);
}

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

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 16px 0;
  transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}
.header.scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  padding: 10px 0;
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.header__logo {
  flex-shrink: 0;
  z-index: 10;
}
.header__logo-img {
  width: 110px;
  height: auto;
}
@media (min-width: 768px) {
  .header__logo-img {
    width: 130px;
  }
}
.header__nav {
  display: none;
}
@media (min-width: 1024px) {
  .header__nav {
    display: block;
  }
}
.header__nav-list {
  display: flex;
  gap: 4px;
}
.header__nav.open {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(10, 10, 10, 0.98);
  justify-content: center;
  align-items: center;
  z-index: 5;
}
.header__nav.open .header__nav-list {
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.header__nav.open .header__nav-link {
  font-size: 1.25rem;
  padding: 10px 20px;
}
.header__nav-link {
  display: block;
  padding: 8px 14px;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  border-radius: 4px;
  transition: color 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}
.header__nav-link:hover {
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.1);
}
.header__nav-link.active {
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.15);
  font-weight: 600;
}
.header__cta {
  display: none;
  font-size: 0.875rem;
  padding: 10px 22px;
}
@media (min-width: 1024px) {
  .header__cta {
    display: inline-flex;
  }
}
.header__burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 30px;
  height: 30px;
  z-index: 10;
}
@media (min-width: 1024px) {
  .header__burger {
    display: none;
  }
}
.header__burger span {
  display: block;
  width: 100%;
  height: 2px;
  background: #FFFFFF;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.header__burger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.header__burger.active span:nth-child(2) {
  opacity: 0;
}
.header__burger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: #0A0A0A;
  overflow: hidden;
}

.hero-swiper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.hero-swiper .swiper-slide {
  position: relative;
  overflow: hidden;
}

.hero__media {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(10, 10, 10, 0.85) 0%, rgba(10, 10, 10, 0.5) 50%, rgba(10, 10, 10, 0.2) 100%);
  z-index: 2;
}
.hero__content {
  position: relative;
  z-index: 3;
  padding: 120px 0 80px;
  max-width: 700px;
}
.hero__title {
  color: #FFFFFF;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}
@media (min-width: 1024px) {
  .hero__title {
    font-size: 4rem;
  }
}
.hero__subtitle {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 36px;
  font-weight: 500;
  letter-spacing: 2px;
}
@media (min-width: 768px) {
  .hero__subtitle {
    font-size: 1.25rem;
  }
}
.hero__cta {
  font-size: 1rem;
  padding: 16px 36px;
}

.installation {
  background: #FFFFFF;
}
.installation__video {
  max-width: 800px;
  margin: 0 auto;
}
.installation__video-wrap {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}
.installation__video-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.marketing {
  background: #F5F5F5;
}
.marketing__grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 24px;
}
@media (min-width: 576px) {
  .marketing__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}
@media (min-width: 1024px) {
  .marketing__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }
}
.marketing__card {
  cursor: pointer;
  border-radius: 8px;
  overflow: hidden;
  background: #FFFFFF;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.marketing__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}
.marketing__card:hover .marketing__card-thumb img {
  transform: scale(1.05);
}
.marketing__card:hover .marketing__play-btn {
  transform: translate(-50%, -50%) scale(1.1);
}
.marketing__card-thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.marketing__card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.marketing__play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 42px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.4));
  z-index: 2;
}
.marketing__play-btn svg {
  width: 100%;
  height: 100%;
}
@media (min-width: 768px) {
  .marketing__play-btn {
    width: 68px;
    height: 48px;
  }
}
.marketing__card-title {
  padding: 16px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #333333;
}
@media (min-width: 768px) {
  .marketing__card-title {
    font-size: 1rem;
  }
}

.areas {
  background: #F5F5F5;
}
.areas__grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 20px;
}
@media (min-width: 576px) {
  .areas__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media (min-width: 1024px) {
  .areas__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}
.areas__card {
  position: relative;
  display: block;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.areas__card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.areas__card:hover img {
  transform: scale(1.08);
}
.areas__card:hover .areas__card-overlay {
  background: rgba(10, 10, 10, 0.4);
}
.areas__card:hover .areas__card-desc {
  opacity: 1;
  transform: translateY(0);
}
.areas__card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 10, 10, 0.55);
  transition: background 0.3s ease;
}
.areas__card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  z-index: 2;
}
.areas__card-title {
  color: #FFFFFF;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
}
@media (min-width: 768px) {
  .areas__card-title {
    font-size: 1.375rem;
  }
}
.areas__card-desc {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.875rem;
  line-height: 1.5;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  margin-bottom: 0;
}

.page-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #304E8A 0%, #0A0A0A 100%);
  overflow: hidden;
}
.page-hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.15;
}
.page-hero__bg::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(44, 201, 210, 0.3) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: float 20s ease-in-out infinite;
}
.page-hero__bg::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(44, 201, 210, 0.2) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  animation: pulse 4s ease-in-out infinite;
}
.page-hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.page-hero__badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(44, 201, 210, 0.2);
  color: #2CC9D2;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 50px;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.page-hero__title {
  color: #FFFFFF;
  font-size: 3rem;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .page-hero__title {
    font-size: 4rem;
  }
}
@media (min-width: 1024px) {
  .page-hero__title {
    font-size: 5rem;
  }
}
.page-hero__subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.125rem;
  margin-bottom: 36px;
}
@media (min-width: 768px) {
  .page-hero__subtitle {
    font-size: 1.25rem;
  }
}
.page-hero__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.area-intro {
  background: #FFFFFF;
}
.area-intro__content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 1024px) {
  .area-intro__content {
    grid-template-columns: 1fr 1fr;
  }
}
.area-intro__text-label {
  color: #2CC9D2;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.area-intro__text h2 {
  margin-bottom: 24px;
}
.area-intro__text p {
  color: #333333;
  font-size: 1.0625rem;
  line-height: 1.7;
  margin-bottom: 20px;
}
.area-intro__image {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}
.area-intro__image img {
  width: 100%;
  height: auto;
  display: block;
}
.area-intro__image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(44, 201, 210, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.recommended-products {
  background: #F5F5F5;
}
.recommended-products__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 768px) {
  .recommended-products__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .recommended-products__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.recommended-products__card {
  background: #FFFFFF;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}
.recommended-products__card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}
.recommended-products__image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.recommended-products__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.recommended-products__card:hover .recommended-products__image img {
  transform: scale(1.08);
}
.recommended-products__content {
  padding: 24px;
}
.recommended-products__category {
  color: #2CC9D2;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.recommended-products__title {
  font-size: 1.25rem;
  margin-bottom: 12px;
}
.recommended-products__desc {
  color: #333333;
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: 20px;
}
.recommended-products__link {
  color: #2CC9D2;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s ease;
}
.recommended-products__link:hover {
  gap: 12px;
}
.recommended-products__link svg {
  width: 16px;
  height: 16px;
}

.why-choose {
  background: #FFFFFF;
}
.why-choose__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 768px) {
  .why-choose__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.why-choose__header {
  text-align: center;
  grid-column: 1/-1;
  margin-bottom: 20px;
}
.why-choose__card {
  text-align: center;
  padding: 32px;
  background: #F5F5F5;
  border-radius: 12px;
  transition: all 0.3s ease;
}
.why-choose__card:hover {
  background: #FFFFFF;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  transform: translateY(-4px);
}
.why-choose__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, #2CC9D2 0%, rgb(30.7480314961, 140.4625984252, 146.7519685039) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.why-choose__icon svg {
  width: 32px;
  height: 32px;
  color: #FFFFFF;
}
.why-choose__title {
  font-size: 1.125rem;
  margin-bottom: 12px;
}
.why-choose__desc {
  color: #333333;
  font-size: 0.9375rem;
  line-height: 1.6;
}

.use-cases {
  background: linear-gradient(180deg, #304E8A 0%, rgb(21.6774193548, 35.2258064516, 62.3225806452) 100%);
  color: #FFFFFF;
}
.use-cases .section-title {
  color: #FFFFFF;
}
.use-cases .section-subtitle {
  color: rgba(255, 255, 255, 0.8);
}
.use-cases__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 768px) {
  .use-cases__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .use-cases__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1280px) {
  .use-cases__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.use-cases__card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  transition: all 0.3s ease;
}
.use-cases__card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-4px);
  border-color: rgba(44, 201, 210, 0.5);
}
.use-cases__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  background: rgba(44, 201, 210, 0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.use-cases__icon svg {
  width: 28px;
  height: 28px;
  color: #2CC9D2;
}
.use-cases__title {
  color: #FFFFFF;
  font-size: 1.0625rem;
  margin-bottom: 8px;
}
.use-cases__desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  line-height: 1.5;
  margin-bottom: 16px;
}
.use-cases__link {
  color: #2CC9D2;
  font-size: 0.875rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.use-cases__link:hover {
  gap: 10px;
}
.use-cases__link svg {
  width: 14px;
  height: 14px;
}

.area-cta {
  background: linear-gradient(135deg, #2CC9D2 0%, rgb(30.7480314961, 140.4625984252, 146.7519685039) 100%);
  text-align: center;
}
.area-cta__content {
  max-width: 600px;
  margin: 0 auto;
}
.area-cta__title {
  color: #FFFFFF;
  margin-bottom: 16px;
}
.area-cta__text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.125rem;
  margin-bottom: 32px;
}
.area-cta__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

@keyframes float {
  0%, 100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(-20px, -20px);
  }
}
@keyframes pulse {
  0%, 100% {
    opacity: 0.5;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 0.8;
    transform: translate(-50%, -50%) scale(1.1);
  }
}
.quasar {
  background: #304E8A;
}
.quasar__title {
  color: #FFFFFF;
}
.quasar__title::after {
  background: #2CC9D2;
}
.quasar__subtitle {
  color: rgba(255, 255, 255, 0.8);
}
.quasar__videos {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 24px;
}
@media (min-width: 768px) {
  .quasar__videos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }
}
.quasar__video {
  aspect-ratio: 16/9;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}
.quasar__video iframe {
  width: 100%;
  height: 100%;
}

.filters {
  background: #FFFFFF;
}
.filters__grid {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
@media (min-width: 1024px) {
  .filters__grid {
    gap: 64px;
  }
}
.filters__item {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
}
@media (min-width: 768px) {
  .filters__item {
    flex-direction: row;
    gap: 40px;
  }
}
@media (min-width: 768px) {
  .filters__item--reverse {
    flex-direction: row-reverse;
  }
}
.filters__video-wrap {
  flex: 1;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}
@media (min-width: 768px) {
  .filters__video-wrap {
    max-width: 50%;
  }
}
.filters__video-wrap video {
  width: 100%;
  display: block;
}
.filters__thumb {
  position: relative;
  aspect-ratio: 16/9;
  cursor: pointer;
}
.filters__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.filters__thumb:hover .marketing__play-btn {
  transform: translate(-50%, -50%) scale(1.1);
}
.filters__text {
  flex: 1;
}
.filters__text h3 {
  font-size: 1.5rem;
  margin-bottom: 16px;
  color: #0A0A0A;
}
@media (min-width: 1024px) {
  .filters__text h3 {
    font-size: 1.75rem;
  }
}
.filters__text p {
  color: #333333;
  font-size: 1rem;
  line-height: 1.7;
}

.gallery {
  background: #FFFFFF;
}
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (min-width: 576px) {
  .gallery__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}
@media (min-width: 768px) {
  .gallery__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}
@media (min-width: 1024px) {
  .gallery__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
}
.gallery__item {
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
}
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.gallery__item:hover img {
  transform: scale(1.06);
}

.brochures {
  background: #F5F5F5;
}
.brochures__grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 480px));
  gap: 24px;
  justify-content: center;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .brochures__grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 380px));
    gap: 28px;
  }
}
@media (min-width: 1024px) {
  .brochures__grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 380px));
    gap: 28px;
  }
}
.brochures__card {
  width: 100%;
}
.brochures__card {
  background: #FFFFFF;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.brochures__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}
.brochures__card-cover {
  aspect-ratio: 3/4;
  background: rgb(232.25, 232.25, 232.25);
  overflow: hidden;
}
.brochures__card-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.brochures__card-info {
  padding: 24px;
}
.brochures__card-title {
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #0A0A0A;
}
.brochures__card-desc {
  font-size: 0.875rem;
  color: #333333;
  margin-bottom: 20px;
  line-height: 1.6;
}
.brochures__card-btn {
  width: 100%;
  font-size: 0.875rem;
  padding: 12px 20px;
}

.trusted {
  background: #FFFFFF;
}

.trusted-swiper {
  overflow: hidden;
  padding: 10px 0;
}

.trusted-swiper .swiper-wrapper {
  transition-timing-function: linear !important;
}

.trusted-swiper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.modal.active {
  opacity: 1;
  visibility: visible;
}
.modal.active .modal__content {
  transform: scale(1);
}
.modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
}
.modal__content {
  position: relative;
  width: 100%;
  max-width: 900px;
  z-index: 2;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}
.modal__close {
  position: absolute;
  top: -44px;
  right: 0;
  color: #FFFFFF;
  padding: 8px;
  transition: opacity 0.2s ease;
}
.modal__close:hover {
  opacity: 0.7;
}
.modal__video {
  aspect-ratio: 16/9;
  border-radius: 8px;
  overflow: hidden;
  background: #0A0A0A;
}
.modal__video iframe,
.modal__video video {
  width: 100%;
  height: 100%;
}

.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.lightbox.active {
  opacity: 1;
  visibility: visible;
}
.lightbox.active .lightbox__content {
  transform: scale(1);
}
.lightbox__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
}
.lightbox__close {
  position: absolute;
  top: 20px;
  right: 20px;
  color: #FFFFFF;
  padding: 8px;
  z-index: 3;
  transition: opacity 0.2s ease;
}
.lightbox__close:hover {
  opacity: 0.7;
}
.lightbox__prev, .lightbox__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #FFFFFF;
  padding: 12px;
  z-index: 3;
  transition: opacity 0.2s ease;
}
.lightbox__prev:hover, .lightbox__next:hover {
  opacity: 0.7;
}
.lightbox__prev {
  left: 12px;
}
@media (min-width: 768px) {
  .lightbox__prev {
    left: 24px;
  }
}
.lightbox__next {
  right: 12px;
}
@media (min-width: 768px) {
  .lightbox__next {
    right: 24px;
  }
}
.lightbox__content {
  position: relative;
  z-index: 2;
  max-width: 90vw;
  max-height: 85vh;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}
.lightbox__img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 4px;
}

body.modal-open {
  overflow: hidden;
}

.footer {
  background: #0A0A0A;
  color: rgba(255, 255, 255, 0.7);
  padding: 64px 0 0;
}
@media (min-width: 768px) {
  .footer {
    padding: 80px 0 0;
  }
}
.footer__grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 40px;
}
@media (min-width: 576px) {
  .footer__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}
@media (min-width: 1024px) {
  .footer__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
  }
}
@media (min-width: 576px) {
  .footer__col--brand {
    grid-column: span 2;
  }
}
@media (min-width: 1024px) {
  .footer__col--brand {
    grid-column: span 1;
  }
}
.footer__logo {
  margin-bottom: 16px;
}
.footer__logo img {
  width: 120px;
  height: auto;
}
.footer__desc {
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
}
.footer__col-title {
  color: #FFFFFF;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__links a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s ease;
}
.footer__links a:hover {
  color: #2CC9D2;
}
.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer__contact li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
}
.footer__contact li svg {
  flex-shrink: 0;
  opacity: 0.6;
}
.footer__contact li a {
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s ease;
}
.footer__contact li a:hover {
  color: #2CC9D2;
}
.footer__anpc {
  margin-top: 12px;
}
.footer__anpc a {
  display: inline-block;
  margin: 0;
  padding: 0;
  line-height: 1;
  text-decoration: none;
}
.footer__anpc img {
  display: inline-block;
  border: 0;
  width: 250px;
  margin: 5px 0;
  transition: opacity 0.2s ease;
}
.footer__anpc img:hover {
  opacity: 1;
}
.footer__social {
  display: flex;
  gap: 14px;
}
.footer__social a {
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s ease;
}
.footer__social a:hover {
  color: #2CC9D2;
}
.footer__bottom {
  margin-top: 48px;
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}
.footer__bottom p {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.4);
}

/* Navigation Tabs */
.nav-tabs {
  padding: 32px 0;
  background: #F5F5F5;
}

.nav-tabs__wrapper {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.nav-tabs__tab {
  padding: 12px 24px;
  background: #FFFFFF;
  color: #0A0A0A;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 50px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.nav-tabs__tab:hover {
  background: #2CC9D2;
  color: #FFFFFF;
  border-color: #2CC9D2;
  transform: translateY(-2px);
}

/* Recommended Products CTA */
.recommended-products__cta {
  text-align: center;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.recommended-products__cta-text {
  font-size: 1.125rem;
  font-weight: 700;
  color: #0A0A0A;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .recommended-products__cta-text {
    font-size: 1.25rem;
  }
}

/* Why Choose Image */
.why-choose__image {
  margin-bottom: 16px;
  border-radius: 8px;
  overflow: hidden;
}

.why-choose__image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/*# sourceMappingURL=main.css.map */
