html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

.features-minimal {
  --bg: #0d0f12;
  --muted: #cfd8df;
  --accent: #00ffe1;
  --accent-2: #3af0d1;
  --text: #eef2f6;
  --gap: 36px;
  background: var(--bg);
  color: var(--text);
  padding: 80px 18px;
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap);
  align-items: start;
}

.feature {
  padding: 6px 4px;
  outline: none;
  --translateY: 8px;
  transform: translateY(var(--translateY));
  opacity: 0;
  transition: transform 0.6s cubic-bezier(0.2, 0.9, 0.3, 1), opacity 0.6s ease,
    box-shadow 0.25s ease;
}

.feature-icon {
  width: 64px;
  height: 64px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  margin-bottom: 14px;
  color: var(--accent);
  background: linear-gradient(
    180deg,
    rgba(0, 255, 225, 0.06),
    rgba(58, 240, 209, 0.03)
  );
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.45),
    inset 0 -6px 16px rgba(0, 0, 0, 0.08);
}

.feature-title {
  font-size: 18px;
  line-height: 1.15;
  margin: 0 0 8px 0;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.2px;
}

.feature-accent {
  width: 48px;
  height: 3px;
  border-radius: 3px;
  margin-bottom: 12px;
  background: linear-gradient(
    90deg,
    rgba(0, 255, 225, 0.95),
    rgba(58, 240, 209, 0.85)
  );
  box-shadow: 0 6px 18px rgba(0, 255, 225, 0.06);
}

.feature-desc {
  margin: 0;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.6;
  max-width: 48ch;
}

.feature:hover,
.feature:focus {
  transform: translateY(0);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

@media (prefers-reduced-motion: no-preference) {
  .feature:nth-child(1) {
    transition-delay: 0.05s;
  }

  .feature:nth-child(2) {
    transition-delay: 0.12s;
  }

  .feature:nth-child(3) {
    transition-delay: 0.18s;
  }

  .feature:nth-child(4) {
    transition-delay: 0.24s;
  }

  .features-minimal.in-view .feature {
    transform: translateY(0);
    opacity: 1;
  }
}

@media (max-width: 992px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-desc {
    max-width: 42ch;
  }
}

@media (max-width: 600px) {
  .features-grid {
    grid-template-columns: 1fr;
  }

  .feature {
    padding: 12px 0;
  }

  .feature-icon {
    width: 56px;
    height: 56px;
  }

  .feature-title {
    font-size: 17px;
  }
}

.about-section {
  padding: 100px 0;
  background-color: #0d0d0d;
  position: relative;
  overflow: hidden;
}

.about-container {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  min-height: 500px;
}

.about-image {
  flex: 1;
  min-height: 450px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.about-content {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 40px;
  position: relative;
}

.about-glass-card {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 40px;
  color: #fff;
  box-shadow: 0 0 35px rgba(0, 255, 200, 0.22);
  transition: 0.3s ease;
}

.about-title {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #ffffff;
}

.about-subtitle {
  font-size: 18px;
  margin-bottom: 25px;
  opacity: 0.9;
}

.about-text {
  margin-bottom: 18px;
  font-size: 15.5px;
  line-height: 1.7;
  opacity: 0.95;
  text-align: justify;
}

/* Responsive */
@media (max-width: 992px) {
  .about-container {
    flex-direction: column;
  }

  .about-image {
    min-height: 300px;
    overflow: hidden;
  }

  .about-glass-card {
    margin-top: 20px;
  }
}

@media (max-width: 600px) {
  .about-title {
    font-size: 32px;
  }

  .about-glass-card {
    padding: 25px;
  }

  .about-content {
    padding: 20px;
  }
}

.alt-company-section {
  background: #000;
  padding: 80px 5%;
  color: #fff;
  width: 100%;
  border-top: 1px solid #333;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.our-companies-title {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 10px;
  text-transform: uppercase;
  color: #fff;
}

.header-line {
  width: 80px;
  height: 4px;
  background: #ffcc00;
  margin: 0 auto;
}

.company-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
  padding: 60px 0;
  border-top: 1px solid #1a1a1a;
}

.company-row:first-of-type {
  border-top: none;
}

.reverse-layout {
  flex-direction: row-reverse;
}

.company-content {
  flex: 1;
  max-width: 550px;
}

.company-logo {
  height: 100px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.company-logo img {
  width: auto;
  max-height: 100px;
  object-fit: contain;
}

.company-content h2 {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 5px;
  color: #ffcc00;
}

.company-content h3 {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 20px;
  opacity: 0.7;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.company-content p {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 25px;
  opacity: 0.85;
}

.license-text {
  font-size: 16px;
  font-weight: 600;
  color: #888;
}

.license-text span {
  font-weight: 400;
  color: #fff;
  margin-left: 5px;
}

.discover-btn {
  display: inline-flex;
  align-items: center;
  padding: 14px 30px;
  background: #ffcc00;
  color: #000;
  font-weight: 700;
  border-radius: 40px;
  text-decoration: none;
  border: 2px solid #ffcc00;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  letter-spacing: 0.5px;
  margin-top: 10px;
}

.discover-btn:hover {
  background: transparent;
  color: #ffcc00;
  border-color: #ffcc00;
  transform: translateY(-2px);
}

.company-image {
  flex: 1;
  max-width: 100%;
  max-width: 100%;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.company-image img {
  width: 100% !important;
  max-width: 100% !important;
  height: auto;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.company-image img:hover {
  transform: scale(1.03);
}

.js-scroll-reveal {
  opacity: 1;
  transition: none;
}

.js-reveal-element {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  transition-delay: 0s !important;
}

.js-scroll-reveal.is-visible .js-reveal-element {
  opacity: 1;
  transform: translateX(0);
}

.js-scroll-reveal.is-visible .company-image {
  opacity: 1;
  transform: scale(1);
  transition-delay: 0.3s !important;
}

@media (max-width: 1024px) {
  .company-row,
  .reverse-layout {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .company-content {
    max-width: 100%;
  }

  .company-logo {
    justify-content: center;
    margin: 0 auto 20px;
  }

  .company-image {
    max-width: 100%;
  }

  .company-image img {
    height: 300px;
  }

  .module-title {
    font-size: 40px;
  }

  .alt-company-section {
    padding: 60px 20px;
  }
}
