.news-ticker-container {
  background: linear-gradient(90deg, #7c3aed, #b621ff);
  color: #ffffff;
  overflow: hidden;
  padding: 6px 0;
}

.news-ticker {
  white-space: nowrap;
}

.ticker-content {
  display: inline-flex;
  gap: 28px;
  animation: ticker 25s linear infinite;
  font-weight: 600;
}

.ticker-content span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 0.2px;
}

@keyframes ticker {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.hero-slider {
  padding: 10px 0 36px;
}

.slider {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.14);
}

.slides {
  position: relative;
  width: 100%;
  height: 360px;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.slide.active {
  opacity: 1;
  z-index: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.caption {
  position: absolute;
  left: 24px;
  bottom: 24px;
  background: rgba(0, 0, 0, 0.46);
  color: #ffffff;
  padding: 14px 16px;
  border-radius: 12px;
  max-width: 360px;
  backdrop-filter: blur(6px);
}

.caption h3 {
  margin: 0 0 4px;
}

.caption p {
  margin: 0;
  color: #e2e7ff;
  font-size: 14px;
}

.slider-control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(17, 27, 51, 0.75);
  border: none;
  color: #ffffff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
  z-index: 2;
}

.slider-control:hover {
  background: rgba(17, 27, 51, 0.9);
  transform: translateY(-50%) scale(1.05);
}

.slider-control.prev {
  left: 12px;
}

.slider-control.next {
  right: 12px;
}

.slider-dots {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  gap: 8px;
  z-index: 2;
}

.slider-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.slider-dots button.active {
  background: #ffffff;
  transform: scale(1.1);
}

.product-slider {
  position: relative;
  padding: 0 26px 18px;
}

.product-track {
  display: flex;
  gap: 14px;
  transition: transform 0.4s ease;
}

.product-slide {
  flex: 0 0 calc(25% - 10.5px);
}

.product-dots {
  display: inline-flex;
  gap: 8px;
  justify-content: center;
  width: 100%;
  margin-top: 14px;
}

.product-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(124, 58, 237, 0.35);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.product-dots button.active {
  background: #7c3aed;
  transform: scale(1.1);
}

.prod-control {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  background: #7c3aed;
  color: #ffffff;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  box-shadow: 0 10px 20px rgba(124, 58, 237, 0.25);
  cursor: pointer;
  transition: transform 0.2s ease, opacity 0.2s ease;
  z-index: 2;
}

.prod-control:hover {
  transform: translateY(-50%) scale(1.05);
}

.prod-control.prev {
  left: -6px;
}

.prod-control.next {
  right: -6px;
}

.product-card .ghost-btn {
  background: linear-gradient(135deg, #3a6cf6, #8b2be2);
  color: #ffffff;
  border: none;
  box-shadow: 0 10px 20px rgba(58, 108, 246, 0.2);
}

.product-card .ghost-btn:disabled {
  opacity: 0.85;
  background: #d6d9e0;
  color: #6c7387;
  box-shadow: none;
}

.about {
  padding: 80px 0 70px;
  background: #f7f8ff;
}

.about-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 18px 44px rgba(17, 27, 51, 0.08);
}

.about-head h2 {
  margin: 6px 0 10px;
}

.about-head p {
  margin: 0;
  color: #4c5464;
  line-height: 1.6;
}

.about-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: 22px;
  align-items: center;
  margin: 20px 0 10px;
}

.about-hero-text h3 {
  margin: 10px 0 8px;
}

.about-hero-text p {
  color: #4c5464;
  line-height: 1.6;
  margin: 0 0 10px;
}

.about-hero-text ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
  color: #1c2430;
}

.about-hero-text li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.about-hero-text i {
  color: #16a34a;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: rgba(124, 58, 237, 0.1);
  color: #5824c1;
  font-weight: 700;
  border-radius: 999px;
  font-size: 13px;
}

.about-photos {
  position: relative;
  display: grid;
  gap: 12px;
  justify-items: end;
}

.photo {
  border-radius: 14px;
  box-shadow: 0 14px 30px rgba(17, 27, 51, 0.18);
  object-fit: cover;
  width: 100%;
  display: block;
}

.main-photo {
  max-width: 340px;
  height: 240px;
}

.photo-stack {
  display: grid;
  gap: 10px;
  width: 100%;
  max-width: 240px;
}

.small-photo {
  height: 120px;
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 14px 0 18px;
}

.mission-card {
  background: linear-gradient(135deg, rgba(124, 58, 237, 0.08), rgba(58, 108, 246, 0.08));
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 16px;
  color: #1c2430;
  box-shadow: 0 10px 24px rgba(17, 27, 51, 0.08);
}

.mission-card h4 {
  margin: 0 0 6px;
}

.mission-card p {
  margin: 0;
  color: #4c5464;
  line-height: 1.6;
}

.about-card {
  position: relative;
  overflow: hidden;
}

.about-card::after {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 16px;
  background: radial-gradient(circle at 20% 20%, rgba(124, 58, 237, 0.05), transparent 45%),
    radial-gradient(circle at 80% 10%, rgba(58, 108, 246, 0.05), transparent 45%);
  pointer-events: none;
  z-index: 0;
}

.about-card > * {
  position: relative;
  z-index: 1;
}

.about-grid.card-style {
  gap: 16px;
}

.pill-card {
  border-radius: 18px;
  border: 1px solid #e7e9f2;
  background: linear-gradient(180deg, #f7f8ff, #ffffff);
  box-shadow: 0 12px 30px rgba(17, 27, 51, 0.08);
}

.about-icon.gradient {
  background: linear-gradient(135deg, #5c7cfa, #a855f7);
}

.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #7c3aed;
  background: rgba(124, 58, 237, 0.08);
  padding: 6px 10px;
  border-radius: 999px;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 24px 0 22px;
}

.about-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 12px;
  border: 1px solid #eef0f6;
  border-radius: 12px;
  background: #fbfbff;
}

.about-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #3a6cf6, #8b2be2);
  color: #ffffff;
  font-size: 18px;
}

.about-item h4 {
  margin: 0 0 4px;
}

.about-item p {
  margin: 0;
  color: #4c5464;
  line-height: 1.5;
}

.about-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 10px 0 18px;
}

.about-split h3 {
  margin: 0 0 6px;
}

.about-split p {
  margin: 0;
  color: #4c5464;
  line-height: 1.6;
}

.about-cta {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

.contact {
  padding: 80px 0 70px;
  background: radial-gradient(circle at 10% 20%, rgba(124, 58, 237, 0.06), transparent 20%), #f7f8ff;
}

.contact .section-head {
  text-align: center;
}

.section-sub {
  color: #6c7387;
  max-width: 640px;
  margin: 8px auto 0;
  line-height: 1.6;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin: 32px 0 36px;
}

.contact-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 18px 16px;
  box-shadow: 0 12px 30px rgba(17, 27, 51, 0.06);
}

.contact-card h4 {
  margin: 10px 0 6px;
  font-size: 16px;
}

.contact-card p,
.contact-card a {
  margin: 0;
  color: #4c5464;
  font-size: 14px;
  line-height: 1.5;
}

.contact-card a {
  font-weight: 600;
  text-decoration: none;
}

.contact-card a:hover {
  color: #7c3aed;
}

.contact-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: #ffffff;
  font-size: 18px;
}

.contact-icon.email {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.contact-icon.phone {
  background: linear-gradient(135deg, #10b981, #059669);
}

.contact-icon.address {
  background: linear-gradient(135deg, #f59e0b, #d97706);
}

.contact-icon.support {
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.contact-form-wrap {
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: center;
}

.contact-form-card,
.contact-side-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 22px;
  box-shadow: 0 18px 38px rgba(17, 27, 51, 0.08);
}

.contact-form-card {
  width: 100%;
  max-width: 860px;
}

.contact-side-card {
  width: 100%;
  max-width: 720px;
}

.contact-form-card h3 {
  margin: 0 0 16px;
}

.contact-form-card label {
  display: block;
  font-weight: 600;
  margin: 12px 0 6px;
  color: #1c2430;
  font-size: 14px;
}

.contact-form-card input,
.contact-form-card textarea {
  width: 100%;
  border: 1px solid #d8dce5;
  border-radius: 10px;
  padding: 12px 12px;
  font-size: 14px;
  font-family: inherit;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

.contact-form-card input:focus,
.contact-form-card textarea:focus {
  outline: none;
  border-color: #7c3aed;
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.15);
}

.contact-form-card textarea {
  resize: vertical;
}

.primary-btn.full-width {
  width: 100%;
  text-align: center;
  margin-top: 16px;
}

.contact-status {
  margin: 10px 0 0;
  font-size: 14px;
  color: #4c5464;
}

.contact-status.success {
  color: #0f9d58;
}

.contact-status.error {
  color: #d93025;
}

.contact-side-card h4 {
  margin: 0 0 8px;
}

.contact-side-card p {
  margin: 0 0 14px;
  color: #4c5464;
  line-height: 1.6;
}

.contact-side-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
  color: #1c2430;
}

.contact-side-card li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.contact-side-card i {
  color: #16a34a;
}

@media (max-width: 1100px) {
  .product-slide {
    flex: 0 0 calc(33.333% - 9.4px);
  }

  .prod-control.prev {
    left: 2px;
  }

  .prod-control.next {
    right: 2px;
  }

  .about-hero {
    grid-template-columns: 1fr;
  }

  .about-photos {
    justify-items: start;
  }

  .main-photo {
    max-width: 100%;
  }

  .mission-grid {
    grid-template-columns: 1fr;
  }

  .about-grid.card-style {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

}

@media (max-width: 900px) {
  .product-slide {
    flex: 0 0 calc(50% - 7px);
  }
}

@media (max-width: 640px) {
  .product-slider {
    padding: 0 10px 14px;
  }

  .product-slide {
    flex: 0 0 100%;
  }

  .prod-control {
    display: none;
  }
}
@media (max-width: 900px) {
  .slides {
    height: 280px;
  }

  .caption {
    max-width: 70%;
  }
}

@media (max-width: 640px) {
  .news-ticker-container {
    font-size: 13px;
  }

  .slides {
    height: 220px;
  }

  .caption {
    left: 12px;
    right: 12px;
    bottom: 12px;
    max-width: none;
  }
}

@media (max-width: 640px) {
  .about {
    padding: 64px 0 54px;
  }

  .about-card {
    padding: 20px;
  }

  .about-grid.card-style {
    grid-template-columns: 1fr;
  }

  .pill-card {
    padding: 12px 10px;
  }

  .about-hero-text h3 {
    font-size: 22px;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-split {
    grid-template-columns: 1fr;
  }

  .about-photos {
    gap: 10px;
  }

  .main-photo {
    height: 220px;
  }

  .photo-stack {
    max-width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact {
    padding: 60px 0 50px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-card {
    padding: 16px;
  }
}
