:root {
  --primary-color: #00ff88;
  --secondary-color: #ff0000;
  --accent-color: #0066ff;
  --text-dark: #333333;
  --text-light: #ffffff;
  --bg-dark: #1a1a1a;
  --bg-light: #ffffff;
  --bg-gray: #f8f9fa;
  --color-red: #EA4335;
  --color-green: #34A853;
  --color-blue: #4285F4;
  --color-cyan: #09AFED;
  --color-light-blue: #1AABE3;
  --color-pink: #FB64DA;
  --font-family-primary: "Helvetica", "Segoe UI", Arial, sans-serif;
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 1.875rem;
  --font-size-4xl: 2.25rem;
  --font-size-5xl: 3rem;
  --font-size-6xl: 3.75rem;
  --spacing-xs: 0.25rem;
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 1.5rem;
  --spacing-xl: 2rem;
  --spacing-2xl: 3rem;
  --spacing-3xl: 4rem;
  --spacing-4xl: 6rem;
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 992px;
  --breakpoint-xl: 1200px;
  --breakpoint-xxl: 1400px;
  --container-sm: 540px;
  --container-md: 720px;
  --container-lg: 960px;
  --container-xl: 1140px;
  --container-xxl: 1320px;
}

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

html {
  scroll-behavior: smooth;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font-family-primary);
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--bg-light);
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

.is-bold {
  font-weight: 700;
}

.container {
  width: 100%;
  max-width: var(--container-xl);
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}
@media (min-width: 576px) {
  .container {
    max-width: var(--container-sm);
  }
}
@media (min-width: 768px) {
  .container {
    max-width: var(--container-md);
  }
}
@media (min-width: 992px) {
  .container {
    max-width: var(--container-lg);
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: var(--container-xl);
  }
}
@media (min-width: 1400px) {
  .container {
    max-width: var(--container-xxl);
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: var(--bg-dark);
  color: var(--text-light);
  z-index: 1000;
  padding: var(--spacing-md) 0;
}
.header .header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header .logo {
  display: flex;
  align-items: center;
}
.header .logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--text-light);
}
.header .logo .logo-text {
  font-size: var(--font-size-xl);
  font-weight: 700;
  margin-right: var(--spacing-sm);
}
.header .logo .logo-icon {
  width: 32px;
  height: 32px;
  position: relative;
}
.header .logo .logo-icon .logo-rings {
  position: relative;
  width: 100%;
  height: 100%;
}
.header .logo .logo-icon .logo-rings .ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid;
}
.header .logo .logo-icon .logo-rings .ring:nth-child(1) {
  width: 100%;
  height: 100%;
  border-color: #ff0000;
}
.header .logo .logo-icon .logo-rings .ring:nth-child(2) {
  width: 80%;
  height: 80%;
  top: 10%;
  left: 10%;
  border-color: #ff8800;
}
.header .logo .logo-icon .logo-rings .ring:nth-child(3) {
  width: 60%;
  height: 60%;
  top: 20%;
  left: 20%;
  border-color: #ffff00;
}
.header .logo .logo-icon .logo-rings .ring:nth-child(4) {
  width: 40%;
  height: 40%;
  top: 30%;
  left: 30%;
  border-color: #00ff88;
}
.header .logo .logo-icon .logo-rings .ring:nth-child(5) {
  width: 20%;
  height: 20%;
  top: 40%;
  left: 40%;
  border-color: #0088ff;
}
@media (max-width: 991px) {
  .header .navigation {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--bg-dark);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }
  .header .navigation.nav-open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
}
.header .navigation .nav-list {
  display: flex;
  list-style: none;
  gap: var(--spacing-xl);
}
@media (max-width: 991px) {
  .header .navigation .nav-list {
    flex-direction: column;
    padding: var(--spacing-lg);
    gap: var(--spacing-lg);
  }
}
.header .navigation .nav-link {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}
.header .navigation .nav-link:hover {
  color: var(--primary-color);
}
.header .mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--spacing-sm);
}
@media (max-width: 991px) {
  .header .mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
}
.header .mobile-menu-toggle .hamburger-line {
  width: 24px;
  height: 2px;
  background-color: var(--text-light);
  transition: all 0.3s ease;
}
.header .mobile-menu-toggle.menu-open .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}
.header .mobile-menu-toggle.menu-open .hamburger-line:nth-child(2) {
  opacity: 0;
}
.header .mobile-menu-toggle.menu-open .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.main-content {
  margin-top: 80px;
}

.section {
  padding: var(--spacing-4xl) 0;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}
.section.section-full-height {
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.section.section-small {
  padding: var(--spacing-3xl) 0;
}

.section-hero {
  background: var(--color-red);
  color: var(--text-light);
  transition: background-color 0.5s ease;
}
.section-hero.bg-red {
  background: var(--color-red);
}
.section-hero.bg-green {
  background: var(--color-green);
}
.section-hero.bg-blue {
  background: var(--color-blue);
}
.section-hero .container {
  position: relative;
}
.section-hero .hero-content {
  position: relative;
  display: flex;
  align-items: center;
}
.section-hero .hero-carousel {
  width: 100%;
  height: 100%;
  overflow: visible;
}
.section-hero .hero-carousel .swiper-slide {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}
.section-hero .hero-carousel .hero-slide {
  width: 100%;
  height: 100%;
}
.section-hero .hero-carousel .hero-slide .hero-slide-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-3xl);
  align-items: center;
  width: 100%;
  min-height: 80vh;
}
@media (min-width: 992px) {
  .section-hero .hero-carousel .hero-slide .hero-slide-content {
    grid-template-columns: 1fr 1fr;
  }
}
.section-hero .hero-title {
  font-size: var(--font-size-4xl);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--spacing-lg);
  color: var(--text-light);
}
@media (min-width: 768px) {
  .section-hero .hero-title {
    font-size: var(--font-size-5xl);
  }
}
@media (min-width: 1200px) {
  .section-hero .hero-title {
    font-size: var(--font-size-6xl);
  }
}
.section-hero .hero-title .title-line {
  display: block;
  color: var(--text-light);
}
.section-hero .hero-description {
  font-size: var(--font-size-lg);
  margin-bottom: var(--spacing-xl);
  color: var(--text-light);
  line-height: 1.6;
}
.section-hero .hero-visual {
  position: relative;
  width: 100%;
  max-width: 100%;
}
.section-hero .hero-visual .analytics-image {
  width: 100%;
  max-width: 100%;
  text-align: center;
}
.section-hero .hero-visual .analytics-image img {
  width: 100%;
  object-fit: contain;
}
.section-hero .hero-visual .tv-screen {
  background-color: var(--bg-dark);
  border-radius: 0;
  padding: var(--spacing-lg);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}
.section-hero .hero-visual .tv-screen .tv-carousel {
  position: relative;
  border-radius: 8px;
  aspect-ratio: 16/9;
  width: 100%;
  max-width: 100%;
}
.section-hero .hero-visual .tv-screen .tv-carousel .tv-slide {
  width: 100%;
  height: 100%;
}
.section-hero .hero-visual .tv-screen .tv-carousel .tv-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.section-hero .hero-visual .tv-screen .tv-carousel .tv-slide .tv-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.section-hero .hero-visual .tv-screen .tv-carousel .tv-slide .tv-video::-webkit-media-controls {
  display: none !important;
}
.section-hero .hero-visual .tv-screen .tv-carousel .tv-slide .tv-video::-webkit-media-controls-enclosure {
  display: none !important;
}
.section-hero .hero-visual .tv-screen .tv-carousel .swiper-slide {
  position: relative;
  width: 100%;
  height: 100%;
}
.section-hero .hero-visual .tv-screen .tv-carousel .swiper-slide .video-slide {
  position: relative;
  width: 100%;
  height: 100%;
}
.section-hero .hero-visual .tv-screen .tv-carousel .swiper-slide .video-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.section-hero .hero-visual .tv-screen .tv-carousel .swiper-slide .video-slide .tv-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.section-hero .hero-visual .tv-screen .tv-carousel .swiper-slide .video-slide .video-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
}
.section-hero .hero-visual .tv-screen .tv-carousel .swiper-slide .video-slide .video-placeholder.video-placeholder-1 {
  background: linear-gradient(45deg, #ff4444, #ff6666);
}
.section-hero .hero-visual .tv-screen .tv-carousel .swiper-slide .video-slide .video-placeholder.video-placeholder-2 {
  background: linear-gradient(45deg, #44ff44, #66ff66);
}
.section-hero .hero-visual .tv-screen .tv-carousel .swiper-slide .video-slide .video-placeholder.video-placeholder-3 {
  background: linear-gradient(45deg, #4444ff, #6666ff);
}
.section-hero .hero-visual .tv-screen .tv-carousel .swiper-slide .video-slide .video-placeholder.video-placeholder-4 {
  background: linear-gradient(45deg, #ffaa44, #ffcc66);
}
.section-hero .hero-visual .tv-screen .tv-carousel .swiper-slide .video-slide .video-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--spacing-md);
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
}
.section-hero .hero-visual .tv-screen .tv-carousel .swiper-slide .video-slide .video-overlay .overlay-banner {
  background-color: #ff69b4;
  color: var(--text-light);
  padding: var(--spacing-sm) var(--spacing-md);
  border-radius: 4px;
  font-size: var(--font-size-sm);
  font-weight: 600;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}
.section-hero .hero-visual .tv-screen .tv-carousel .tv-nav-next,
.section-hero .hero-visual .tv-screen .tv-carousel .tv-nav-prev {
  color: var(--text-light);
  background: rgba(0, 0, 0, 0.5);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  margin-top: -22px;
}
.section-hero .hero-visual .tv-screen .tv-carousel .tv-nav-next:after,
.section-hero .hero-visual .tv-screen .tv-carousel .tv-nav-prev:after {
  font-size: 18px;
  font-weight: 700;
}
.section-hero .hero-visual .tv-screen .tv-carousel .tv-nav-next:hover,
.section-hero .hero-visual .tv-screen .tv-carousel .tv-nav-prev:hover {
  background: rgba(0, 0, 0, 0.8);
}
.section-hero .hero-visual .tv-screen .tv-carousel .tv-nav-next {
  right: 10px;
}
.section-hero .hero-visual .tv-screen .tv-carousel .tv-nav-prev {
  left: 10px;
}
.section-hero .hero-visual .tv-screen .tv-carousel .tv-pagination {
  position: relative !important;
  bottom: auto !important;
  margin-bottom: var(--spacing-lg) !important;
}

.swiper-pagination-bullet {
  background: #fff !important;
  opacity: 1 !important;
  margin: 0 8px !important;
  width: 12px !important;
  height: 12px !important;
}
.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--text-light) !important;
}

.swiper-pagination-bullet-dynamic {
  background: var(--text-light) !important;
}

.section-page-teaser {
  position: relative;
  padding: 0;
  overflow: hidden;
}
.section-page-teaser .teaser-background {
  position: relative;
  width: 100%;
  height: 70vh;
}
@media (max-width: 768px) {
  .section-page-teaser .teaser-background {
    height: 50vh;
  }
}
.section-page-teaser .teaser-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.section-page-teaser .teaser-background .teaser-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.section-page-teaser .teaser-background .teaser-video::-webkit-media-controls {
  display: none !important;
}
.section-page-teaser .teaser-background .teaser-video::-webkit-media-controls-enclosure {
  display: none !important;
}
.section-page-teaser .teaser-background .teaser-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.section-page-teaser .teaser-background .teaser-text {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.section-page-teaser .teaser-background .teaser-text-line {
  display: block;
  font-family: var(--font-family-primary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.1;
}
.section-page-teaser .teaser-background .teaser-text-line:first-child {
  color: #FFFFFF;
  font-size: clamp(2rem, 5vw, 4rem);
  margin-bottom: -20px;
}
@media screen and (max-width: 768px) {
  .section-page-teaser .teaser-background .teaser-text-line:first-child {
    margin-bottom: -10px;
  }
}
.section-page-teaser .teaser-background .teaser-text-buy {
  color: var(--color-red);
  font-size: clamp(4rem, 10vw, 8rem);
  font-weight: 900;
}

.section-welcome {
  background-color: var(--bg-dark);
  color: var(--text-light);
  padding: var(--spacing-3xl) 0;
}
.section-welcome .welcome-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.section-welcome .welcome-title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-red);
  margin-bottom: var(--spacing-xl);
  line-height: 1.2;
}
.section-welcome .welcome-description {
  font-size: var(--font-size-lg);
  line-height: 1.8;
  color: var(--text-light);
}
@media (min-width: 768px) {
  .section-welcome .welcome-description {
    font-size: var(--font-size-xl);
  }
}

.section-contact-info {
  background-color: var(--bg-dark);
  color: var(--text-light);
  padding: var(--spacing-3xl) 0;
}
.section-contact-info .contact-info-title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-green);
  text-align: center;
  margin-bottom: var(--spacing-3xl);
  text-transform: uppercase;
}
.section-contact-info .contact-offices {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-xl);
  margin: 0 auto;
}
.section-contact-info .office-item {
  text-align: center;
}
.section-contact-info .office-title {
  font-size: var(--font-size-2xl);
  font-weight: 700;
  margin-bottom: var(--spacing-lg);
  text-transform: uppercase;
}
.section-contact-info .office-title.office-title-green {
  color: var(--color-green);
}
.section-contact-info .office-title.office-title-red {
  color: var(--color-red);
}
.section-contact-info .office-address {
  font-size: var(--font-size-lg);
  color: var(--text-light);
  margin-bottom: var(--spacing-sm);
  line-height: 1.6;
}
.section-contact-info .office-contact {
  font-size: var(--font-size-base);
  color: rgba(255, 255, 255, 0.7);
}

.form-group {
  width: 100%;
  position: relative;
}
.form-group input[type=text],
.form-group input[type=tel],
.form-group input[type=email],
.form-group textarea {
  width: 100%;
  padding: var(--spacing-lg) var(--spacing-xl);
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  color: var(--text-light);
  font-size: var(--font-size-base);
  font-family: inherit;
  transition: all 0.3s ease;
}
.form-group input[type=text]::placeholder,
.form-group input[type=tel]::placeholder,
.form-group input[type=email]::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  font-weight: 500;
}
.form-group input[type=text]:focus,
.form-group input[type=tel]:focus,
.form-group input[type=email]:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-pink);
  background-color: rgba(255, 255, 255, 0.08);
}
.form-group input[type=text]:valid:not(:placeholder-shown),
.form-group input[type=tel]:valid:not(:placeholder-shown),
.form-group input[type=email]:valid:not(:placeholder-shown),
.form-group textarea:valid:not(:placeholder-shown) {
  border-color: var(--color-green);
}
.form-group input[type=text]:invalid:not(:placeholder-shown),
.form-group input[type=tel]:invalid:not(:placeholder-shown),
.form-group input[type=email]:invalid:not(:placeholder-shown),
.form-group textarea:invalid:not(:placeholder-shown) {
  border-color: var(--color-red);
}
.form-group textarea {
  resize: vertical;
  min-height: 150px;
}
.form-group .error-message {
  display: none;
  color: var(--color-red);
  font-size: var(--font-size-sm);
  margin-top: var(--spacing-xs);
  font-weight: 500;
}
.form-group input:invalid:not(:placeholder-shown) ~ .error-message {
  display: block;
}

.section-contact-form-page {
  background-color: var(--bg-dark);
  color: var(--text-light);
  padding: var(--spacing-4xl) 0 var(--spacing-4xl) 0;
}
.section-contact-form-page .section-title.has-pink {
  font-size: 3.5rem;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: var(--spacing-xl);
  background: linear-gradient(90deg, var(--color-pink) 0%, #ff6b4a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-contact-form-page .getform-contact-form {
  max-width: 700px;
  margin: 0 auto;
}
.section-contact-form-page .getform-contact-form .form-row {
  margin-bottom: var(--spacing-lg);
}
.section-contact-form-page .getform-contact-form .btn-submit-gradient {
  width: auto;
  padding: var(--spacing-lg) var(--spacing-4xl);
  font-size: var(--font-size-lg);
  font-weight: 700;
  text-transform: uppercase;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  background: linear-gradient(90deg, var(--color-pink) 0%, #ff6b4a 100%);
  color: var(--text-light);
  transition: all 0.3s ease;
  margin-top: var(--spacing-xl);
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.section-contact-form-page .getform-contact-form .btn-submit-gradient:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(251, 100, 218, 0.4);
}
.section-contact-form-page .getform-contact-form .btn-submit-gradient:active {
  transform: translateY(0);
}

.section-blog-list {
  background-color: var(--bg-dark);
  color: var(--text-light);
  padding: var(--spacing-4xl) 0;
}
.section-blog-list .blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-3xl);
}
@media (min-width: 768px) {
  .section-blog-list .blog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-4xl);
  }
}
.section-blog-list .blog-card {
  background-color: transparent;
  transition: transform 0.3s ease;
}
.section-blog-list .blog-card:hover {
  transform: translateY(-8px);
}
.section-blog-list .blog-card:hover .blog-title {
  color: var(--color-pink);
}
.section-blog-list .blog-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}
.section-blog-list .blog-thumbnail {
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: var(--spacing-lg);
}
.section-blog-list .blog-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.section-blog-list .blog-thumbnail:hover img {
  transform: scale(1.05);
}
.section-blog-list .blog-content {
  padding: 0;
}
.section-blog-list .blog-title {
  font-size: var(--font-size-2xl);
  font-weight: 700;
  color: #FFB800;
  margin-bottom: var(--spacing-md);
  line-height: 1.3;
  transition: color 0.3s ease;
}
@media (min-width: 768px) {
  .section-blog-list .blog-title {
    font-size: var(--font-size-3xl);
  }
}
.section-blog-list .blog-description {
  font-size: var(--font-size-base);
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}
@media (min-width: 768px) {
  .section-blog-list .blog-description {
    font-size: var(--font-size-lg);
  }
}

.section-console-ai {
  background-color: var(--bg-dark);
  color: var(--text-light);
  padding: var(--spacing-4xl) 0;
}
@media (min-width: 768px) {
  .section-console-ai {
    padding: var(--spacing-4xl) 0;
  }
}
.section-console-ai .console-ai-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-3xl);
  align-items: center;
  margin-bottom: var(--spacing-4xl);
}
@media (min-width: 968px) {
  .section-console-ai .console-ai-top {
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-4xl);
  }
}
.section-console-ai .console-ai-text .console-ai-title {
  font-size: var(--font-size-3xl);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: var(--spacing-xl);
}
@media (min-width: 768px) {
  .section-console-ai .console-ai-text .console-ai-title {
    font-size: var(--font-size-4xl);
  }
}
@media (min-width: 1024px) {
  .section-console-ai .console-ai-text .console-ai-title {
    font-size: var(--font-size-5xl);
  }
}
.section-console-ai .console-ai-text .console-ai-title .title-blue {
  display: block;
  color: var(--color-light-blue);
}
.section-console-ai .console-ai-text .console-ai-title .title-white {
  display: block;
  color: var(--text-light);
}
.section-console-ai .console-ai-text .console-ai-intro {
  font-size: var(--font-size-lg);
  margin-bottom: var(--spacing-lg);
  opacity: 0.9;
}
@media (min-width: 768px) {
  .section-console-ai .console-ai-text .console-ai-intro {
    font-size: var(--font-size-xl);
  }
}
.section-console-ai .console-ai-text .console-ai-features {
  list-style: none;
  padding: 0;
  margin: 0;
}
.section-console-ai .console-ai-text .console-ai-features li {
  font-size: var(--font-size-lg);
  padding: var(--spacing-sm) 0;
  padding-left: var(--spacing-xl);
  position: relative;
}
@media (min-width: 768px) {
  .section-console-ai .console-ai-text .console-ai-features li {
    font-size: var(--font-size-xl);
  }
}
.section-console-ai .console-ai-text .console-ai-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background-color: var(--color-light-blue);
  border-radius: 50%;
}
.section-console-ai .console-ai-banner {
  background: transparent;
}
.section-console-ai .console-ai-banner img {
  width: 100%;
  height: auto;
}
.section-console-ai .console-ai-bottom {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}
.section-console-ai .console-ai-bottom .brand-banner-bg {
  width: 100%;
}
.section-console-ai .console-ai-bottom .brand-banner-bg img {
  width: 100%;
  height: auto;
  display: block;
}
.section-console-ai .console-ai-bottom .brand-text {
  position: absolute;
  right: 15%;
  top: 50%;
  transform: translateY(-50%);
  text-align: left;
  max-width: 500px;
}
.section-console-ai .console-ai-bottom .brand-text p {
  font-size: var(--font-size-3xl);
  line-height: 1.4;
  color: var(--text-dark);
  margin: 0;
}
@media (min-width: 768px) {
  .section-console-ai .console-ai-bottom .brand-text p {
    font-size: var(--font-size-3xl);
  }
}
@media (min-width: 1024px) {
  .section-console-ai .console-ai-bottom .brand-text p {
    font-size: var(--font-size-4xl);
  }
}
.section-console-ai .console-ai-bottom .brand-text p strong {
  font-weight: 700;
}
@media (max-width: 767px) {
  .section-console-ai .console-ai-bottom .brand-text {
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    padding: var(--spacing-3xl) var(--spacing-xl);
    text-align: center;
    max-width: 100%;
  }
  .section-console-ai .console-ai-bottom .brand-text p {
    color: var(--text-light) !important;
  }
}

.section-solutions-content {
  background-color: var(--bg-dark);
  color: var(--text-light);
  padding: var(--spacing-4xl) 0;
}
@media (min-width: 768px) {
  .section-solutions-content {
    padding: var(--spacing-3xl) 0;
  }
}
.section-solutions-content .solutions-description {
  max-width: 900px;
  margin: 0 auto var(--spacing-4xl);
  text-align: center;
}
.section-solutions-content .solutions-description p {
  font-size: var(--font-size-lg);
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--spacing-lg);
}
@media (min-width: 768px) {
  .section-solutions-content .solutions-description p {
    font-size: var(--font-size-xl);
  }
}
.section-solutions-content .solutions-description p:last-child {
  margin-bottom: 0;
}
.section-solutions-content .solutions-description .highlight-blue {
  color: var(--color-light-blue);
  font-weight: 700;
}
.section-solutions-content .solutions-process {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin: 0 auto;
  padding-left: 0;
}
@media (min-width: 768px) {
  .section-solutions-content .solutions-process {
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    align-items: center;
    padding-left: 32px;
  }
}
.section-solutions-content .process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.section-solutions-content .process-step.step-red {
  margin-right: -5px;
}
.section-solutions-content .process-step.step-red .process-label {
  color: var(--color-red);
}
.section-solutions-content .process-step.step-yellow {
  margin-right: -5px;
}
.section-solutions-content .process-step.step-yellow .process-label {
  color: #FFB800;
}
.section-solutions-content .process-step.step-green .process-label {
  color: var(--color-green);
}
.section-solutions-content .process-step.step-blue {
  margin-left: -38px;
}
.section-solutions-content .process-step.step-blue .process-label {
  color: var(--color-light-blue);
}
.section-solutions-content .process-icon {
  width: 322px;
  height: 228px;
  object-fit: contain;
  margin-bottom: var(--spacing-md);
}
@media (max-width: 767px) {
  .section-solutions-content .process-icon {
    width: 100%;
    max-width: 322px;
    height: auto;
    aspect-ratio: 322/228;
  }
}
.section-solutions-content .process-label {
  font-size: var(--font-size-lg);
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 1px;
  margin-top: var(--spacing-sm);
}
@media (min-width: 1024px) {
  .section-solutions-content .process-label {
    font-size: var(--font-size-xl);
  }
}

.section-ad-banners {
  background-color: #FFFFFF;
  padding: var(--spacing-4xl) 0;
}
@media (min-width: 768px) {
  .section-ad-banners {
    padding: var(--spacing-3xl) 0;
  }
}
.section-ad-banners .section-title.has-red {
  color: var(--color-red);
  font-size: var(--font-size-3xl);
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: var(--spacing-lg);
}
@media (min-width: 768px) {
  .section-ad-banners .section-title.has-red {
    font-size: var(--font-size-4xl);
  }
}
.section-ad-banners .ad-banner-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0;
  margin-bottom: var(--spacing-4xl);
  padding: 0 var(--spacing-md);
  font-size: var(--font-size-base);
  text-align: center;
}
@media (min-width: 768px) {
  .section-ad-banners .ad-banner-tabs {
    font-size: var(--font-size-lg);
  }
}
.section-ad-banners .ad-banner-tab {
  color: var(--text-dark);
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: var(--font-family-primary);
  padding: 0 var(--spacing-xs);
}
@media (min-width: 768px) {
  .section-ad-banners .ad-banner-tab {
    padding: 0 var(--spacing-sm);
  }
}
.section-ad-banners .ad-banner-tab:hover {
  color: var(--color-red);
}
.section-ad-banners .ad-banner-tab.active {
  color: var(--color-red);
  font-weight: 700;
}
.section-ad-banners .ad-banner-types-separator {
  color: var(--color-red);
  margin: 0 var(--spacing-xs);
}
@media (min-width: 768px) {
  .section-ad-banners .ad-banner-types-separator {
    margin: 0 var(--spacing-sm);
  }
}

.ad-banners-carousel {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: var(--spacing-2xl) 0;
}

.ad-banner-slide {
  background-image: url("/img/solutions/solutions-slider-bg-1.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 16px;
  padding: var(--spacing-xl) var(--spacing-lg);
  min-height: 500px;
}
@media (min-width: 768px) {
  .ad-banner-slide {
    padding: var(--spacing-2xl) var(--spacing-xl);
    min-height: 600px;
  }
}

.ad-banner-slide-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-3xl);
  align-items: center;
  height: 100%;
}
@media (min-width: 968px) {
  .ad-banner-slide-content {
    grid-template-columns: 0.8fr 1.4fr;
    gap: var(--spacing-4xl);
  }
}

.ad-banner-text {
  color: var(--text-light);
}
.ad-banner-text .ad-banner-title {
  font-size: var(--font-size-3xl);
  font-weight: 700;
  margin-bottom: var(--spacing-lg);
  line-height: 1.2;
}
@media (min-width: 768px) {
  .ad-banner-text .ad-banner-title {
    font-size: var(--font-size-4xl);
    margin-bottom: var(--spacing-xl);
  }
}
@media (min-width: 1024px) {
  .ad-banner-text .ad-banner-title {
    font-size: var(--font-size-5xl);
  }
}
.ad-banner-text .ad-banner-description {
  font-size: var(--font-size-base);
  line-height: 1.6;
  margin-bottom: var(--spacing-md);
  opacity: 0.95;
}
@media (min-width: 768px) {
  .ad-banner-text .ad-banner-description {
    font-size: var(--font-size-lg);
    margin-bottom: var(--spacing-lg);
  }
}
.ad-banner-text .ad-banner-specs {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-md);
  margin-top: var(--spacing-xl);
}
.ad-banner-text .ad-banner-specs .spec-badge {
  background-color: var(--text-light);
  color: var(--color-red);
  padding: var(--spacing-sm) var(--spacing-lg);
  border-radius: 6px;
  font-size: var(--font-size-sm);
  font-weight: 700;
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .ad-banner-text .ad-banner-specs .spec-badge {
    padding: var(--spacing-md) var(--spacing-xl);
    font-size: var(--font-size-base);
  }
}

.ad-banner-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.ad-banner-visual .tv-screen {
  background-color: var(--bg-dark);
  border-radius: 0;
  padding: var(--spacing-lg);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}
.ad-banner-visual .banner-display-image,
.ad-banner-visual .banner-display-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  display: block;
  position: relative;
  aspect-ratio: 16/9;
}
.ad-banner-visual .banner-display-video::-webkit-media-controls {
  display: none !important;
}
.ad-banner-visual .banner-display-video::-webkit-media-controls-enclosure {
  display: none !important;
}

.ad-banners-pagination {
  margin-top: var(--spacing-3xl) !important;
  position: relative !important;
  bottom: auto !important;
  text-align: center;
}
.ad-banners-pagination .swiper-pagination-bullet {
  width: 14px !important;
  height: 14px !important;
  background-color: #000000 !important;
  opacity: 0.4 !important;
  margin: 0 6px !important;
  transition: all 0.3s ease !important;
}
.ad-banners-pagination .swiper-pagination-bullet:hover {
  opacity: 0.7 !important;
}
.ad-banners-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--color-light-blue) !important;
  opacity: 1 !important;
  transform: scale(1.2);
}

.section-blog-detail {
  background-color: var(--bg-dark);
  color: var(--text-light);
  padding: var(--spacing-4xl) 0;
}
.section-blog-detail .blog-article {
  margin: 0 auto;
}
.section-blog-detail .blog-featured-image {
  width: 100%;
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: var(--spacing-3xl);
}
.section-blog-detail .blog-featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.section-blog-detail .blog-header {
  margin-bottom: var(--spacing-2xl);
}
.section-blog-detail .blog-detail-title {
  font-size: var(--font-size-3xl);
  font-weight: 700;
  color: #FFB800;
  line-height: 1.3;
  margin-bottom: var(--spacing-lg);
}
@media (min-width: 768px) {
  .section-blog-detail .blog-detail-title {
    font-size: var(--font-size-4xl);
  }
}
@media (min-width: 1200px) {
  .section-blog-detail .blog-detail-title {
    font-size: var(--font-size-5xl);
  }
}
.section-blog-detail .blog-body {
  font-size: var(--font-size-lg);
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
}
.section-blog-detail .blog-body p {
  margin-bottom: var(--spacing-xl);
}
.section-blog-detail .blog-body p:last-child {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .section-blog-detail .blog-body {
    font-size: var(--font-size-xl);
  }
}
.section-blog-detail .blog-actions {
  margin-top: var(--spacing-4xl);
  text-align: center;
  padding-top: var(--spacing-3xl);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.section-blog-detail .btn-back-to-blog {
  background-color: var(--color-green);
  color: var(--text-light);
  padding: var(--spacing-lg) var(--spacing-4xl);
  font-size: var(--font-size-lg);
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 6px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}
.section-blog-detail .btn-back-to-blog:hover {
  background-color: #2d8f47;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(52, 168, 83, 0.4);
}
.section-blog-detail .btn-back-to-blog:active {
  transform: translateY(0);
}

.section-interactive {
  background-color: var(--bg-dark);
  color: var(--text-light);
}
.section-interactive .interactive-content {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.section-interactive .tik-background {
  width: 100%;
  max-width: 1200px;
  height: auto;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.section-stats {
  background-color: var(--bg-light);
  padding: var(--spacing-xl) 0;
}
.section-stats .stats-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-lg);
}
@media (min-width: 768px) {
  .section-stats .stats-content {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
  }
}
.section-stats .stat-item {
  display: flex;
  align-items: center;
  gap: var(--spacing-lg);
  padding: var(--spacing-md);
}
.section-stats .stat-item .stat-icon {
  width: 120px;
  height: 120px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.section-stats .stat-item .stat-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.section-stats .stat-item .stat-icon:nth-child(1) img {
  width: 118px;
  height: 118px;
}
.section-stats .stat-item .stat-icon:nth-child(2) img {
  width: 116px;
  height: 108px;
}
.section-stats .stat-item .stat-icon:nth-child(3) img {
  width: 94px;
  height: 107px;
}
.section-stats .stat-item .stat-content {
  flex: 1;
  text-align: left;
}
.section-stats .stat-item .stat-number {
  font-size: var(--font-size-3xl);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: var(--spacing-xs);
}
@media (min-width: 768px) {
  .section-stats .stat-item .stat-number {
    font-size: var(--font-size-4xl);
  }
}
.section-stats .stat-item .stat-label {
  font-size: var(--font-size-base);
  font-weight: 400;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
@media (min-width: 768px) {
  .section-stats .stat-item .stat-label {
    font-size: var(--font-size-lg);
  }
}

.section-addressable {
  background-color: var(--bg-dark);
  color: var(--text-light);
}
.section-addressable .addressable-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: var(--spacing-3xl);
}
.section-addressable .addressable-text {
  text-align: center;
  max-width: 800px;
}
.section-addressable .section-title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-red);
  margin-bottom: var(--spacing-xl);
}
.section-addressable .section-title.has-pink {
  color: var(--color-pink);
}
.section-addressable .section-description {
  font-size: var(--font-size-lg);
  line-height: 1.6;
  opacity: 0.9;
}
@media (min-width: 768px) {
  .section-addressable .section-description {
    font-size: var(--font-size-xl);
  }
}
.section-addressable .section-description .brand-highlight {
  color: var(--color-cyan);
  font-weight: 700;
}
.section-addressable .addressable-images {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-xl);
  width: 100%;
  max-width: 1200px;
}
@media (min-width: 768px) {
  .section-addressable .addressable-images {
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
  }
}
.section-addressable .image-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.section-addressable .addressable-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: var(--spacing-md);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}
.section-addressable .addressable-image:hover {
  transform: translateY(-4px);
}
.section-addressable .image-label {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--text-light);
  text-align: center;
}

.section-emotional {
  background-color: var(--bg-dark);
  color: var(--text-light);
}
.section-emotional .emotional-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-3xl);
  align-items: center;
}
@media (min-width: 992px) {
  .section-emotional .emotional-content {
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-4xl);
  }
}
.section-emotional .emotional-image {
  order: 1;
}
@media (min-width: 992px) {
  .section-emotional .emotional-image {
    order: 1;
  }
}
.section-emotional .emotional-image .emotional-img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: contain;
}
.section-emotional .emotional-text {
  order: 2;
  text-align: center;
}
@media (min-width: 992px) {
  .section-emotional .emotional-text {
    order: 2;
    text-align: left;
  }
}
.section-emotional .emotional-title {
  font-size: var(--font-size-3xl);
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: var(--spacing-xl);
  line-height: 1.3;
}
@media (min-width: 768px) {
  .section-emotional .emotional-title {
    font-size: var(--font-size-4xl);
  }
}
@media (min-width: 1200px) {
  .section-emotional .emotional-title {
    font-size: var(--font-size-5xl);
  }
}
.section-emotional .emotional-description {
  margin-bottom: var(--spacing-2xl);
}
.section-emotional .emotional-description p {
  font-size: var(--font-size-lg);
  line-height: 1.6;
  margin-bottom: var(--spacing-lg);
  color: var(--text-light);
}
.section-emotional .emotional-description p:last-child {
  margin-bottom: 0;
}
.section-emotional .btn-blogs {
  background-color: var(--color-green);
  color: var(--text-light);
  padding: var(--spacing-lg) var(--spacing-2xl);
  font-size: var(--font-size-lg);
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 4px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}
.section-emotional .btn-blogs:hover {
  background-color: #2d8f47;
  transform: translateY(-2px);
}

.section-contact {
  background-color: var(--bg-light);
  color: var(--text-dark);
}
.section-contact .contact-content {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: var(--spacing-3xl) 0;
}
.section-contact .contact-form {
  width: 100%;
  max-width: 500px;
  text-align: center;
}
.section-contact .contact-title {
  font-size: var(--font-size-4xl);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: var(--spacing-xl);
}
@media (min-width: 768px) {
  .section-contact .contact-title {
    font-size: var(--font-size-5xl);
  }
}
.section-contact .form {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xl);
}
.section-contact .form-group {
  width: 100%;
}
.section-contact input[type=text],
.section-contact input[type=tel],
.section-contact input[type=email] {
  width: 100%;
  padding: var(--spacing-lg) var(--spacing-xl);
  border: 2px dashed #ccc;
  border-radius: 4px;
  font-size: var(--font-size-lg);
  font-family: inherit;
  background-color: transparent;
  color: var(--text-dark);
  transition: border-color 0.3s ease;
}
.section-contact input[type=text]::placeholder,
.section-contact input[type=tel]::placeholder,
.section-contact input[type=email]::placeholder {
  color: #999;
  font-weight: 500;
  text-transform: uppercase;
}
.section-contact input[type=text]:focus,
.section-contact input[type=tel]:focus,
.section-contact input[type=email]:focus {
  outline: none;
  border-color: var(--primary-color);
}
.section-contact input[type=text]:required,
.section-contact input[type=tel]:required,
.section-contact input[type=email]:required {
  border-color: #ccc;
}
.section-contact .btn-contact {
  background-color: var(--text-dark);
  color: var(--text-light);
  padding: var(--spacing-lg) var(--spacing-2xl);
  font-size: var(--font-size-lg);
  font-weight: 700;
  text-transform: uppercase;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: var(--spacing-lg);
}
.section-contact .btn-contact:hover {
  background-color: #333;
  transform: translateY(-2px);
}
.section-contact .btn-contact:active {
  transform: translateY(0);
}

.section-publishers {
  background-color: var(--bg-dark);
  color: var(--text-light);
  text-align: center;
}
.section-publishers .publisher-image {
  width: 100%;
  height: 400px;
  background: linear-gradient(45deg, #333, #555);
  border-radius: 8px;
  margin-bottom: var(--spacing-xl);
}
.section-publishers .publisher-title {
  font-size: var(--font-size-3xl);
  font-weight: 600;
}

.section-advertisers {
  background-color: var(--bg-dark);
  color: var(--text-light);
  text-align: center;
}
.section-advertisers .advertiser-image {
  width: 100%;
  height: 400px;
  background: linear-gradient(45deg, #444, #666);
  border-radius: 8px;
  margin-bottom: var(--spacing-xl);
}
.section-advertisers .advertiser-title {
  font-size: var(--font-size-3xl);
  font-weight: 600;
}

.section-console {
  background-color: var(--bg-light);
}
.section-console .console-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-3xl);
  align-items: center;
}
@media (min-width: 992px) {
  .section-console .console-content {
    grid-template-columns: 1fr 1fr;
  }
}
.section-console .console-title {
  font-size: 3.75rem;
  font-weight: 700;
  margin-bottom: var(--spacing-xl);
  color: var(--color-light-blue);
}
.section-console .console-title .console-brand {
  color: #000000;
}
.section-console .console-description,
.section-console .console-features,
.section-console .console-ai {
  font-size: 1.5rem;
  margin-bottom: var(--spacing-lg);
  line-height: 1.8;
}
.section-console .console-dashboard {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: contain;
  margin-bottom: var(--spacing-xl);
}

.footer .footer-upper {
  background-color: var(--bg-dark);
  color: var(--text-light);
  padding: var(--spacing-xl) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}
@media (max-width: 767px) {
  .footer .footer-upper {
    padding: var(--spacing-xl) 0;
  }
}
.footer .footer-upper .footer-upper-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
  gap: var(--spacing-xl);
}
@media (min-width: 768px) {
  .footer .footer-upper .footer-upper-content {
    flex-direction: row;
  }
}
.footer .footer-upper .footer-brand .footer-logo {
  display: flex;
  align-items: center;
}
.footer .footer-upper .footer-brand .footer-logo .logo-text {
  font-size: var(--font-size-2xl);
  font-weight: 700;
  color: var(--text-light);
}
.footer .footer-upper .footer-brand .footer-logo .logo-icon {
  width: 40px;
  height: 40px;
  position: relative;
  margin: 0 var(--spacing-sm);
}
.footer .footer-upper .footer-brand .footer-logo .logo-icon .logo-rings {
  position: relative;
  width: 100%;
  height: 100%;
}
.footer .footer-upper .footer-brand .footer-logo .logo-icon .logo-rings .ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid;
}
.footer .footer-upper .footer-brand .footer-logo .logo-icon .logo-rings .ring:nth-child(1) {
  width: 100%;
  height: 100%;
  border-color: #ff0000;
}
.footer .footer-upper .footer-brand .footer-logo .logo-icon .logo-rings .ring:nth-child(2) {
  width: 80%;
  height: 80%;
  top: 10%;
  left: 10%;
  border-color: #ff8800;
}
.footer .footer-upper .footer-brand .footer-logo .logo-icon .logo-rings .ring:nth-child(3) {
  width: 60%;
  height: 60%;
  top: 20%;
  left: 20%;
  border-color: #ffff00;
}
.footer .footer-upper .footer-brand .footer-logo .logo-icon .logo-rings .ring:nth-child(4) {
  width: 40%;
  height: 40%;
  top: 30%;
  left: 30%;
  border-color: #00ff88;
}
.footer .footer-upper .footer-brand .footer-logo .logo-icon .logo-rings .ring:nth-child(5) {
  width: 20%;
  height: 20%;
  top: 40%;
  left: 40%;
  border-color: #0088ff;
}
.footer .footer-upper .powered-by {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
}
.footer .footer-upper .powered-by .powered-text {
  font-size: var(--font-size-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-light);
}
.footer .footer-upper .powered-by .powered-logo {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
}
.footer .footer-upper .powered-by .powered-logo .logo-icon {
  width: 32px;
  height: 32px;
  position: relative;
}
.footer .footer-upper .powered-by .powered-logo .logo-icon .logo-rings {
  position: relative;
  width: 100%;
  height: 100%;
}
.footer .footer-upper .powered-by .powered-logo .logo-icon .logo-rings .ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid;
}
.footer .footer-upper .powered-by .powered-logo .logo-icon .logo-rings .ring:nth-child(1) {
  width: 100%;
  height: 100%;
  border-color: #ff0000;
}
.footer .footer-upper .powered-by .powered-logo .logo-icon .logo-rings .ring:nth-child(2) {
  width: 80%;
  height: 80%;
  top: 10%;
  left: 10%;
  border-color: #ff8800;
}
.footer .footer-upper .powered-by .powered-logo .logo-icon .logo-rings .ring:nth-child(3) {
  width: 60%;
  height: 60%;
  top: 20%;
  left: 20%;
  border-color: #ffff00;
}
.footer .footer-upper .powered-by .powered-logo .logo-icon .logo-rings .ring:nth-child(4) {
  width: 40%;
  height: 40%;
  top: 30%;
  left: 30%;
  border-color: #00ff88;
}
.footer .footer-upper .powered-by .powered-logo .logo-icon .logo-rings .ring:nth-child(5) {
  width: 20%;
  height: 20%;
  top: 40%;
  left: 40%;
  border-color: #0088ff;
}
.footer .footer-upper .powered-by .powered-logo .logo-text {
  font-size: var(--font-size-lg);
  font-weight: 700;
  color: var(--text-light);
}
.footer .footer-lower {
  background-color: #f8f9fa;
  color: var(--text-dark);
  padding: var(--spacing-lg) 0;
}
.footer .footer-lower .footer-lower-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-lg);
  align-items: center;
  text-align: center;
}
@media (min-width: 768px) {
  .footer .footer-lower .footer-lower-content {
    grid-template-columns: 1fr 2fr 1fr;
    text-align: left;
  }
}
.footer .footer-lower .copyright {
  font-size: var(--font-size-sm);
  font-weight: 500;
  color: var(--text-dark);
}
@media (min-width: 768px) {
  .footer .footer-lower .copyright {
    text-align: left;
  }
}
.footer .footer-lower .legal-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--spacing-sm);
}
@media (min-width: 768px) {
  .footer .footer-lower .legal-links {
    justify-content: center;
  }
}
.footer .footer-lower .legal-links .legal-link {
  color: var(--text-dark);
  text-decoration: none;
  font-size: var(--font-size-sm);
  font-weight: 500;
}
.footer .footer-lower .legal-links .legal-link:hover {
  color: var(--primary-color);
}
.footer .footer-lower .legal-links .separator {
  color: var(--text-dark);
  opacity: 0.5;
}
.footer .footer-lower .social-links {
  display: flex;
  justify-content: center;
  gap: var(--spacing-sm);
}
@media (min-width: 768px) {
  .footer .footer-lower .social-links {
    justify-content: flex-end;
  }
}
.footer .footer-lower .social-links .social-link {
  width: 32px;
  height: 32px;
  background-color: var(--text-dark);
  color: var(--text-light);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}
.footer .footer-lower .social-links .social-link:hover {
  background-color: var(--primary-color);
}
.footer .footer-lower .social-links .social-link .social-icon {
  width: 16px;
  height: 16px;
}
.footer .swiper-pagination.tv-pagination {
  position: relative !important;
  bottom: auto !important;
  margin-bottom: var(--spacing-lg) !important;
  text-align: center !important;
}
.footer .swiper-pagination.tv-pagination .swiper-pagination-bullet {
  background: #fff !important;
  opacity: 1 !important;
  margin: 0 8px !important;
  width: 12px !important;
  height: 12px !important;
}
.footer .swiper-pagination.tv-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--text-light) !important;
  opacity: 1 !important;
}
.footer .hero-pagination {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}
.footer .hero-pagination .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.5);
  opacity: 1;
  margin: 0 8px;
  width: 12px;
  height: 12px;
}
.footer .hero-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--text-light);
  transform: scale(1.2);
}
.footer .hero-pagination .swiper-pagination-bullet-dynamic {
  background: var(--text-light);
}

.tv-remote-control {
  position: absolute;
  right: -25px;
  top: -50px;
  background: var(--text-light);
  width: 120px;
  height: 120px;
  border-radius: 50%;
  z-index: 1;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tv-remote-control img {
  width: 34px;
  height: 97px;
  object-fit: contain;
}
.tv-remote-control.has-green-bg {
  background-color: var(--color-green);
}
.tv-remote-control.has-green-bg img {
  width: 63px;
  height: 69px;
}
@media (max-width: 768px) {
  .tv-remote-control {
    display: none;
  }
}

.btn {
  display: inline-block;
  padding: var(--spacing-md) var(--spacing-xl);
  background-color: var(--primary-color);
  color: var(--text-dark);
  text-decoration: none;
  border: none;
  border-radius: 4px;
  font-weight: 600;
  font-size: var(--font-size-base);
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}
.btn:hover {
  background-color: #00cc66;
  transform: translateY(-2px);
}
.btn.btn-large {
  padding: var(--spacing-md) var(--spacing-md);
  font-size: var(--font-size-md);
}
.btn.btn-primary {
  background-color: var(--text-light);
  color: var(--color-red);
}
.btn.btn-secondary {
  background-color: var(--secondary-color);
  color: var(--text-light);
}
.btn.text-green {
  color: var(--color-green);
}
.btn.text-blue {
  color: var(--color-blue);
}
.btn.text-pink {
  color: var(--color-pink);
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.mb-0 {
  margin-bottom: 0;
}

.mb-1 {
  margin-bottom: var(--spacing-xs);
}

.mb-2 {
  margin-bottom: var(--spacing-sm);
}

.mb-3 {
  margin-bottom: var(--spacing-md);
}

.mb-4 {
  margin-bottom: var(--spacing-lg);
}

.mb-5 {
  margin-bottom: var(--spacing-xl);
}

.mt-0 {
  margin-top: 0;
}

.mt-1 {
  margin-top: var(--spacing-xs);
}

.mt-2 {
  margin-top: var(--spacing-sm);
}

.mt-3 {
  margin-top: var(--spacing-md);
}

.mt-4 {
  margin-top: var(--spacing-lg);
}

.mt-5 {
  margin-top: var(--spacing-xl);
}

.animate-in {
  animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.d-none {
  display: none;
}

.d-block {
  display: block;
}

.d-flex {
  display: flex;
}

.d-grid {
  display: grid;
}

@media (min-width: 576px) {
  .d-sm-none {
    display: none;
  }
  .d-sm-block {
    display: block;
  }
  .d-sm-flex {
    display: flex;
  }
  .d-sm-grid {
    display: grid;
  }
}
@media (min-width: 768px) {
  .d-md-none {
    display: none;
  }
  .d-md-block {
    display: block;
  }
  .d-md-flex {
    display: flex;
  }
  .d-md-grid {
    display: grid;
  }
}
@media (min-width: 992px) {
  .d-lg-none {
    display: none;
  }
  .d-lg-block {
    display: block;
  }
  .d-lg-flex {
    display: flex;
  }
  .d-lg-grid {
    display: grid;
  }
}
@media (min-width: 1200px) {
  .d-xl-none {
    display: none;
  }
  .d-xl-block {
    display: block;
  }
  .d-xl-flex {
    display: flex;
  }
  .d-xl-grid {
    display: grid;
  }
}
.section-contact-dark {
  background-color: var(--bg-dark) !important;
  color: var(--text-light) !important;
}
.section-contact-dark .contact-title {
  color: var(--text-light) !important;
}
.section-contact-dark input[type=text],
.section-contact-dark input[type=tel],
.section-contact-dark input[type=email] {
  background-color: transparent !important;
  color: var(--text-light) !important;
  border: 2px dashed var(--text-light) !important;
  border-color: var(--text-light) !important;
}
.section-contact-dark input[type=text]::placeholder,
.section-contact-dark input[type=tel]::placeholder,
.section-contact-dark input[type=email]::placeholder {
  color: rgba(255, 255, 255, 0.6) !important;
}
.section-contact-dark input[type=text]:focus,
.section-contact-dark input[type=tel]:focus,
.section-contact-dark input[type=email]:focus {
  border-color: var(--color-red) !important;
  background-color: transparent !important;
}
.section-contact-dark .btn-contact {
  background-color: var(--color-red) !important;
  color: var(--text-light) !important;
}
.section-contact-dark .btn-contact:hover {
  background-color: #d93b2e !important;
}

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