.hero-background {
  position: relative;
}
.hero-background img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero-background .hero-content h1 {
  font-size: 2.5rem;
  font-weight: 300;
  margin-bottom: 10px;
  opacity: 0.9;
}
.hero-background .hero-content h2 {
  font-size: 1.8rem;
  font-weight: 600;
  margin: 0;
}
.hero-background .banner-title {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #ffffff;
}
.hero-background #devices-img {
  position: absolute;
  width: 620px;
  top: 50%;
  transform: translate(100%, -50%);
}

.platform-nav {
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}
.platform-nav .nav-tabs {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2rem;
  justify-content: space-between;
}
.platform-nav .nav-item {
  position: relative;
}
.platform-nav .nav-link {
  display: block;
  padding: 1rem 60px;
  color: #000000;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.025em;
  transition: all 0.3s ease;
  position: relative;
  border: none;
}
.platform-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: #3b82f6;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.platform-nav .nav-link:hover {
  color: #3b82f6;
  border: none;
}
.platform-nav .nav-link.active {
  color: #3b82f6;
}
.platform-nav .nav-link.active::after {
  transform: scaleX(1);
}

.hero-section {
  padding: 48px 0;
  padding-top: 128px;
  background: #ffffff;
  text-align: center;
}
.hero-section .hero-title {
  width: 100%;
  font-size: 33px;
  font-weight: 600;
  color: #353434;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 42px;
}
.hero-section .hero-description {
  max-width: unset;
  margin: 0 auto 40px;
  color: #353434;
  line-height: 1.625;
  font-size: 1rem;
}
.hero-section .hero-image-wrapper {
  position: relative;
  display: inline-block;
  border-radius: 12px;
  overflow: hidden;
}
.hero-section .hero-image-wrapper .dashboard-image {
  width: 100%;
  max-width: 1000px;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  margin: 0 auto;
}
.hero-section .hero-image-wrapper .mobile-mockup {
  display: none;
  position: absolute;
  bottom: 16px;
  right: 16px;
  width: 25%;
  height: 75%;
  background: #000;
  border-radius: 24px;
  border: 4px solid #1f2937;
  overflow: hidden;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  display: block;
}
.hero-section .hero-image-wrapper .mobile-mockup img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.stats-section {
  padding: 32px 0;
  background: #ffffff;
}
.stats-section .stats-title {
  width: 100%;
  font-size: 33px;
  font-weight: 600;
  color: #353434;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 40px;
}
.stats-section .stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  text-align: center;
  grid-template-columns: repeat(4, 1fr);
}
.stats-section .stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.stats-section .stat-item .stat-value {
  font-size: 33px;
  font-weight: 700;
  color: #3b82f6;
  margin-bottom: 8px;
  font-size: 2.25rem;
}
.stats-section .stat-item .stat-label {
  color: #414141;
  font-size: 19px;
}

.feature-section {
  padding: 64px 0;
}
.feature-section .section-title {
  width: 100%;
  font-size: 33px;
  font-weight: 600;
  color: #353434;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 48px;
}
.feature-section .feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 640px) {
  .feature-section .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .feature-section .feature-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.feature-section .feature-card {
  background: #ffffff;
  padding: 24px;
  border-radius: 8px;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  border: 1px solid #f3f4f6;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: 100%;
  transition: box-shadow 0.3s ease;
}
.feature-section .feature-card:hover {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
.feature-section .feature-icon {
  margin-bottom: 16px;
  padding: 12px;
}
.feature-section .feature-icon .icon-img {
  width: 75px;
}
.feature-section .feature-icon.icon-blue {
  color: #3b82f6;
}
.feature-section .feature-icon.icon-red {
  color: #ef4444;
}
.feature-section .feature-icon.icon-blue-600 {
  color: #2563eb;
}
.feature-section .feature-icon.icon-orange {
  color: #f97316;
}
.feature-section .feature-icon.icon-indigo {
  color: #6366f1;
}
.feature-section .feature-icon.icon-green {
  color: #10b981;
}
.feature-section .feature-icon.icon-teal {
  color: #14b8a6;
}
.feature-section .feature-icon.icon-purple {
  color: #a855f7;
}
.feature-section .feature-icon.icon-cyan {
  color: #06b6d4;
}
.feature-section .feature-icon.icon-yellow {
  color: #eab308;
}
.feature-section .feature-icon.icon-gray {
  color: #6b7280;
}
.feature-section .feature-icon.icon-blue-800 {
  color: #1e40af;
}
.feature-section .feature-title {
  font-size: 0.875rem;
  font-weight: 700;
  color: #414141;
  margin-bottom: 12px;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}
.feature-section .feature-description {
  font-size: 16px;
  color: #414141;
  line-height: 1.625;
  text-align: left;
}

.application-section {
  padding: 64px 0;
  background: #ffffff;
}
.application-section .section-title {
  width: 100%;
  font-size: 33px;
  font-weight: 600;
  color: #353434;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 64px;
}
.application-section .application-list {
  display: flex;
  flex-direction: column;
  gap: 80px;
}
.application-section .app-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-direction: row;
  gap: 64px;
}
.application-section .app-item.reverse {
  flex-direction: row-reverse;
}
.application-section .app-image {
  width: 50%;
}
.application-section .app-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 4/3;
  transition: transform 0.5s ease;
}
.application-section .app-image img:hover {
  transform: scale(1.05);
}
.application-section .app-content {
  width: 50%;
}
.application-section .app-title {
  font-size: 25px;
  font-weight: 700;
  color: #353535;
  margin-bottom: 24px;
}
.application-section .app-description-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.application-section .app-description-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 16px;
  font-size: 16px;
  color: #353434;
  line-height: 1.625;
}
.application-section .app-description-list li:before {
  content: "+";
  margin-right: 12px;
  color: #414141;
  margin-top: 4px;
  font-size: 16px;
}

.why-choose-section {
  padding: 64px 0;
  background: #ffffff;
}
.why-choose-section .section-title {
  width: 100%;
  font-size: 33px;
  font-weight: 600;
  color: #353434;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 48px;
}
.why-choose-section .why-choose-grid {
  display: grid;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
  grid-template-columns: repeat(5, 1fr);
}
.why-choose-section .why-choose-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
}
.why-choose-section .why-choose-item:hover .why-choose-image img {
  transform: scale(1.1);
}
.why-choose-section .why-choose-item:hover .why-choose-image::after {
  opacity: 0;
}
.why-choose-section .why-choose-image {
  width: 100%;
  height: auto;
  margin-bottom: 16px;
  overflow: hidden;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  position: relative;
}
.why-choose-section .why-choose-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}
.why-choose-section .why-choose-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(30, 58, 138, 0.2);
  transition: opacity 0.3s ease;
}
.why-choose-section .why-choose-label {
  font-size: 16px;
  font-weight: 600;
  color: #000000;
  text-align: center;
}

.testimonial-section {
  padding: 64px 0;
}
.testimonial-section .section-title {
  width: 100%;
  font-size: 33px;
  font-weight: 600;
  color: #353434;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 48px;
}
.testimonial-section .testimonial-carousel {
  position: relative;
}
.testimonial-section .testimonial-carousel .owl-nav button.owl-prev,
.testimonial-section .testimonial-carousel .owl-nav button.owl-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background: #ffffff !important;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  color: #3b82f6 !important;
}
.testimonial-section .testimonial-carousel .owl-nav button.owl-prev:hover,
.testimonial-section .testimonial-carousel .owl-nav button.owl-next:hover {
  background: #3b82f6 !important;
  color: #ffffff !important;
  box-shadow: 0 4px 12px rgba(24, 119, 242, 0.3);
}
.testimonial-section .testimonial-carousel .owl-nav button.owl-prev svg,
.testimonial-section .testimonial-carousel .owl-nav button.owl-next svg {
  width: 24px;
  height: 24px;
}
.testimonial-section .testimonial-carousel .owl-nav button.owl-prev {
  left: -24px;
}
.testimonial-section .testimonial-carousel .owl-nav button.owl-next {
  right: -24px;
}
.testimonial-section .testimonial-carousel .owl-dots {
  margin-top: 32px;
  text-align: center;
  position: absolute;
  left: 70px;
  bottom: 8px;
}
.testimonial-section .testimonial-carousel .owl-dots .owl-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #d1d5db;
  display: inline-block;
  margin: 0 6px;
  transition: all 0.3s ease;
}
.testimonial-section .testimonial-carousel .owl-dots .owl-dot.active {
  background: #3b82f6;
  width: 32px;
  border-radius: 6px;
}
.testimonial-section .testimonial-carousel .owl-dots .owl-dot span {
  display: none;
}
.testimonial-section .testimonial-card {
  background-color: #f0f2f3;
  margin: 0 auto;
  border-radius: 12px;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  padding: 32px;
  display: flex;
  flex-direction: column;
  -moz-column-gap: 64px;
       column-gap: 64px;
  flex-direction: row;
  align-items: center;
}
.testimonial-section .testimonial-avatar-wrapper {
  flex-shrink: 0;
  text-align: center;
  width: 170px;
  height: 170px;
}
.testimonial-section .testimonial-avatar-wrapper img {
  display: block;
  width: 100%;
  height: 100%;
  border: none;
}
.testimonial-section .testimonial-avatar {
  width: 128px;
  height: 128px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #f3f4f6;
  box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.06);
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.testimonial-section .avatar-dots {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-top: 12px;
}
.testimonial-section .avatar-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d1d5db;
}
.testimonial-section .avatar-dots .dot.active {
  background: #3b82f6;
}
.testimonial-section .testimonial-content {
  flex: 3;
  text-align: center;
  text-align: left;
}
.testimonial-section .testimonial-name {
  font-weight: 600;
  color: rgb(98, 99, 99);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 20px;
  margin-bottom: 14px;
}
.testimonial-section .testimonial-meta {
  font-size: 16px;
  color: #626363;
  margin-bottom: 16px;
}
.testimonial-section .testimonial-meta .testimonial-role {
  display: block;
  display: inline;
}
.testimonial-section .testimonial-meta .testimonial-company {
  display: inline;
  padding-left: 8px;
  margin-left: 8px;
  border-left-width: 2px;
  border-left-style: solid;
  border-left-color: rgb(126, 126, 126);
  margin-top: 0px;
}
.testimonial-section .testimonial-subtitle {
  font-weight: 400;
  color: #000000;
  margin-bottom: 8px;
  font-size: 16px;
}
.testimonial-section .testimonial-quote {
  font-size: 16px;
  color: #000;
  line-height: 1.625;
  margin-bottom: 16px;
}
.testimonial-section .testimonial-rating {
  display: flex;
  justify-content: center;
  gap: 4px;
  justify-content: flex-start;
}
.testimonial-section .testimonial-rating .star-icon {
  color: #fbbf24;
}

.cta-section {
  position: relative;
  padding: 80px 0 65px 0;
  background: #3b82f6;
  overflow: hidden;
}
.cta-section .cta-background {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 0;
}
.cta-section .container {
  position: relative;
  z-index: 10;
  text-align: center;
}
.cta-section .cta-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.cta-section .cta-description {
  color: #fff;
  font-size: 16px;
  max-width: 800px;
  margin: 0 auto 52px;
  line-height: 1.625;
}
.cta-section .cta-description .cta-break {
  display: none;
  display: block;
}
.cta-section .cta-button {
  background: #fbbf24;
  color: #000;
  font-weight: 700;
  padding: 12px 32px;
  border-radius: 4px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transition: background 0.3s ease;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  border: none;
  cursor: pointer;
}
.cta-section .cta-button:hover {
  background: #f59e0b;
}

.footer-cta-section {
  padding: 128px 0;
  background: #ffffff;
  text-align: center;
}
.footer-cta-section .footer-cta-title {
  width: 100%;
  font-size: 33px;
  font-weight: 600;
  color: #353434;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 42px;
}
.footer-cta-section .footer-cta-description {
  color: #353434;
  font-size: 25px;
  margin-bottom: 42px;
}
.footer-cta-section .footer-cta-button {
  background: #1788df;
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  padding: 12px 32px;
  border-radius: 4px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: background 0.3s ease;
  font-size: 25px;
  border: none;
  cursor: pointer;
}
.footer-cta-section .footer-cta-button:hover {
  background: #1e40af;
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
  .testimonial-section .testimonial-carousel .owl-nav button.owl-prev,
  .testimonial-section .testimonial-carousel .owl-nav button.owl-next {
    width: 40px;
    height: 40px;
  }
  .testimonial-section .testimonial-carousel .owl-nav button.owl-prev svg,
  .testimonial-section .testimonial-carousel .owl-nav button.owl-next svg {
    width: 20px;
    height: 20px;
  }
  .testimonial-section .testimonial-carousel .owl-nav button.owl-prev {
    left: -12px;
  }
  .testimonial-section .testimonial-carousel .owl-nav button.owl-next {
    right: -12px;
  }
  .testimonial-section .testimonial-card {
    flex-direction: column;
    padding: 24px;
    gap: 24px;
  }
  .testimonial-section .testimonial-card .testimonial-content {
    text-align: center;
  }
}
#note_mark {
  opacity: 1;
}

.demo-container {
  display: flex;
  gap: 1.5rem;
  max-width: 1400px;
  margin: 0 auto;
  padding: 3rem 2rem;
  align-items: stretch;
  min-height: calc(100vh - 200px);
}
.demo-container .demo-left {
  flex: 0 0 60%;
  display: flex;
  align-items: stretch;
}
.demo-container .demo-left .demo-left-image {
  width: 100%;
  height: 100%;
  min-height: 600px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  -o-object-fit: cover;
     object-fit: cover;
}
.demo-container .demo-right {
  flex: 1;
  display: grid;
  flex-direction: column;
  gap: 1.5rem;
}
.demo-container .demo-right .demo-card {
  width: 100%;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  transition: all 0.3s ease;
  background: #e5e5e5;
}
.demo-container .demo-right .demo-card .demo-card-background {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(200, 200, 200, 0.3) 0%, rgba(230, 230, 230, 0.5) 100%);
  z-index: 1;
}
.demo-container .demo-right .demo-card .demo-card-background::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
}
.demo-container .demo-right .demo-card .demo-card-background img {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transition: transform 0.5s ease;
}
.demo-container .demo-right .demo-card .demo-card-content {
  position: relative;
  z-index: 3;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}
.demo-container .demo-right .demo-card .demo-card-content .demo-card-title {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 0.25rem;
  color: #057dda;
  line-height: 1.3;
}
.demo-container .demo-right .demo-card .demo-card-content .demo-card-subtitle {
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 1rem;
  color: #057dda;
  line-height: 1.3;
}
.demo-container .demo-right .demo-card .demo-card-content .demo-card-btn {
  padding: 0.7rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 700;
  background-color: #0077cc;
  color: white;
  border: none;
  margin: auto;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 119, 204, 0.3);
  align-self: flex-start;
  text-decoration: none;
}
.demo-container .demo-right .demo-card .demo-card-content .demo-card-btn:hover {
  background-color: rgb(0, 95.2, 163.2);
  box-shadow: 0 6px 20px rgba(0, 119, 204, 0.45);
  transform: translateY(-2px);
}
.demo-container .demo-right .demo-card .demo-card-content .demo-card-btn:active {
  transform: translateY(0);
}
.demo-container .demo-right .demo-card:last-child .demo-card-content {
  position: relative;
  z-index: 3;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}
.demo-container .demo-right .demo-card:last-child .demo-card-content .demo-card-title {
  margin-bottom: 0.25rem;
  color: #ffffff;
  line-height: 1.3;
}
.demo-container .demo-right .demo-card:last-child .demo-card-content .demo-card-subtitle {
  margin-bottom: 1rem;
  color: #ffffff;
  line-height: 1.3;
}
.demo-container .demo-right .demo-card:last-child .demo-card-content .demo-card-btn {
  padding: 0.7rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 700;
  background-color: #0077cc;
  color: white;
  border: none;
  margin: auto;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 119, 204, 0.3);
  align-self: flex-start;
  text-decoration: none;
}
.demo-container .demo-right .demo-card:last-child .demo-card-content .demo-card-btn:hover {
  background-color: rgb(0, 95.2, 163.2);
  box-shadow: 0 6px 20px rgba(0, 119, 204, 0.45);
  transform: translateY(-2px);
}
.demo-container .demo-right .demo-card:last-child .demo-card-content .demo-card-btn:active {
  transform: translateY(0);
}

@media (max-width: 1200px) {
  .demo-container {
    gap: 2rem;
    padding: 2rem 1.5rem;
  }
  .demo-container .demo-left {
    flex: 0 0 42%;
  }
  .demo-container .demo-left .demo-left-image {
    min-height: 500px;
  }
  .demo-container .demo-right .demo-card .demo-card-background {
    height: 160px;
    padding: 1.5rem;
  }
  .demo-container .demo-right .demo-card .demo-card-content .demo-card-title {
    font-size: 1.1rem;
  }
  .demo-container .demo-right .demo-card .demo-card-content .demo-card-subtitle {
    font-size: 0.95rem;
  }
  .demo-container .demo-right .demo-card .demo-card-content .demo-card-btn {
    padding: 0.6rem 1.3rem;
    font-size: 0.9rem;
  }
}
@media (max-width: 1024px) {
  .demo-container {
    flex-direction: column;
    gap: 2rem;
    padding: 2rem 1rem;
    min-height: auto;
  }
  .demo-container .demo-left {
    flex: none;
  }
  .demo-container .demo-left .demo-left-image {
    height: 400px;
    min-height: auto;
  }
  .demo-container .demo-right {
    gap: 1.5rem;
  }
  .demo-container .demo-right .demo-card .demo-card-background {
    height: 180px;
    padding: 1.5rem;
  }
  .demo-container .demo-right .demo-card .demo-card-background img {
    width: 45%;
  }
  .demo-container .demo-right .demo-card .demo-card-content {
    width: 55%;
  }
  .demo-container .demo-right .demo-card .demo-card-content .demo-card-title {
    font-size: 1.15rem;
  }
  .demo-container .demo-right .demo-card .demo-card-content .demo-card-subtitle {
    font-size: 1rem;
  }
  .demo-container .demo-right .demo-card .demo-card-content .demo-card-btn {
    padding: 0.65rem 1.4rem;
    font-size: 0.92rem;
  }
}
@media (max-width: 768px) {
  .demo-container {
    padding: 1.5rem 1rem;
    gap: 1.5rem;
  }
  .demo-container .demo-left .demo-left-image {
    height: 350px;
  }
  .demo-container .demo-right {
    gap: 1.25rem;
  }
  .demo-container .demo-right .demo-card .demo-card-background {
    height: 160px;
    padding: 1.25rem;
  }
  .demo-container .demo-right .demo-card .demo-card-background img {
    width: 100%;
  }
  .demo-container .demo-right .demo-card .demo-card-content {
    width: 52%;
  }
  .demo-container .demo-right .demo-card .demo-card-content .demo-card-title {
    font-size: 1rem;
  }
  .demo-container .demo-right .demo-card .demo-card-content .demo-card-subtitle {
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
  }
  .demo-container .demo-right .demo-card .demo-card-content .demo-card-btn {
    padding: 0.55rem 1.2rem;
    font-size: 0.85rem;
  }
}
@media (max-width: 480px) {
  .demo-container {
    padding: 1rem 0.75rem;
    gap: 1.25rem;
  }
  .demo-container .demo-left .demo-left-image {
    height: 280px;
  }
  .demo-container .demo-right {
    gap: 1rem;
  }
  .demo-container .demo-right .demo-card .demo-card-background {
    height: 140px;
    padding: 1rem;
    flex-direction: column;
    align-items: flex-start;
  }
  .demo-container .demo-right .demo-card .demo-card-background img {
    width: 100%;
    height: 100%;
    top: auto;
    bottom: 0;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .demo-container .demo-right .demo-card .demo-card-content {
    width: 100%;
  }
  .demo-container .demo-right .demo-card .demo-card-content .demo-card-title {
    font-size: 0.95rem;
  }
  .demo-container .demo-right .demo-card .demo-card-content .demo-card-subtitle {
    font-size: 0.85rem;
    margin-bottom: 0.6rem;
  }
  .demo-container .demo-right .demo-card .demo-card-content .demo-card-btn {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
  }
}
.trial-form-container {
  background: #ffffff;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.trial-form {
  width: 100%;
}
.trial-form .form-group {
  margin-bottom: 1.5rem;
  display: grid;
  grid-template-columns: 100px 3fr;
}
.trial-form .form-group:last-child {
  margin-bottom: 0;
}
.trial-form .form-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: #333;
  margin-bottom: 0.5rem;
}
.trial-form .form-label .required {
  color: #dc2626;
  margin-left: 2px;
}
.trial-form .form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 0.95rem;
  border: 1px solid #d1d5db;
  border-radius: 4px;
  transition: all 0.3s ease;
  font-family: inherit;
  background: #ffffff;
}
.trial-form .form-control:focus {
  outline: none;
  border-color: #0077cc;
  box-shadow: 0 0 0 3px rgba(0, 119, 204, 0.1);
}
.trial-form .form-control::-moz-placeholder {
  color: #9ca3af;
}
.trial-form .form-control::placeholder {
  color: #9ca3af;
}
.trial-form textarea.form-control {
  resize: vertical;
  min-height: 100px;
}
.trial-form .g-recaptcha {
  display: inline-block;
  margin: 0;
}
.trial-form .terms-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.trial-form .terms-wrapper .terms-checkbox {
  width: 18px;
  height: 18px;
  cursor: pointer;
  margin-top: 2px;
  flex-shrink: 0;
}
.trial-form .terms-wrapper .terms-label {
  font-size: 0.875rem;
  color: #333;
  line-height: 1.5;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  margin: 0;
}
.trial-form .terms-wrapper .terms-label .terms-link {
  color: #0077cc;
  text-decoration: none;
  font-weight: 500;
}
.trial-form .terms-wrapper .terms-label .terms-link:hover {
  text-decoration: underline;
}
.trial-form .submit-btn {
  width: 100%;
  padding: 0.875rem 2rem;
  font-size: 1rem;
  font-weight: 400;
  background-color: #0092e4;
  color: white;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 119, 204, 0.3);
}
.trial-form .submit-btn:hover {
  background-color: rgb(0, 95.2, 163.2);
  box-shadow: 0 6px 16px rgba(0, 119, 204, 0.4);
  transform: translateY(-2px);
}
.trial-form .submit-btn:active {
  transform: translateY(0);
}
.trial-form .submit-btn:disabled {
  background-color: #9ca3af;
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
}

@media (max-width: 768px) {
  .platform-nav .nav-tabs {
    gap: 1rem;
  }
  .platform-nav .nav-link {
    font-size: 0.8rem;
    padding: 0.75rem 0.25rem;
  }
}
@media (max-width: 640px) {
  .platform-nav .nav-tabs {
    gap: 0.5rem;
    justify-content: space-between;
  }
  .platform-nav .nav-link {
    font-size: 0.75rem;
    padding: 0.75rem 0.25rem;
  }
}
@media (max-width: 1024px) {
  .trial-form-container {
    padding: 1.75rem;
  }
}
@media (max-width: 768px) {
  .trial-form-container {
    padding: 1.5rem;
  }
  .trial-form .form-group {
    margin-bottom: 1.25rem;
  }
  .trial-form .form-label {
    font-size: 0.875rem;
  }
  .trial-form .form-control {
    padding: 0.65rem 0.875rem;
    font-size: 0.9rem;
  }
  .trial-form .submit-btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
  }
}
@media (max-width: 480px) {
  .trial-form-container {
    padding: 1.25rem;
  }
  .trial-form .form-group {
    margin-bottom: 1rem;
  }
  .trial-form .form-label {
    font-size: 0.85rem;
  }
  .trial-form .form-control {
    padding: 0.6rem 0.75rem;
    font-size: 0.875rem;
  }
  .trial-form .recaptcha-wrapper {
    flex-direction: column;
    align-items: flex-start;
    padding: 0.875rem;
  }
  .trial-form .recaptcha-wrapper .recaptcha-logo {
    margin-left: 0;
    align-self: flex-end;
  }
  .trial-form .submit-btn {
    padding: 0.7rem 1.25rem;
    font-size: 0.9rem;
  }
}
