/* ── HERO ── */
#home {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 5% 80px;
  position: relative;
  overflow: hidden;
  background-image: url('../images/33.jpg');
}

#home::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: radial-gradient(circle at 20% 30%, rgba(14, 165, 122, 0.07) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(13, 45, 74, 0.06) 0%, transparent 50%);
}

#home::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: radial-gradient(circle, rgba(13, 45, 74, 0.12) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 70%);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 18px;
  background: rgb(255 255 255 / 50%);
  border: 1px solid rgba(14, 165, 122, 0.25);
  border-radius: 100px;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--teal);
  text-transform: uppercase;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
  animation: fadeUp 0.7s ease both;
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal);
  animation: blink 2s infinite;
}

.hero-title {
  font-size: clamp(2.6rem, 5.5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: white;
  position: relative;
  z-index: 1;
  animation: fadeUp 0.7s 0.1s ease both;
  text-shadow: 0 2px 0px rgba(0, 0, 0, 0.25), 0 6px 12px rgba(0, 0, 0, 0.18), 0 12px 24px rgba(0, 0, 0, 0.12);
}

.hero-title .accent {
  color: #00c896;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.35), 0 6px 18px rgba(0, 0, 0, 0.2);
}

.hero-sub {
  max-width: 620px;
  font-size: 1.05rem;
  line-height: 1.75;
  color: white;
  margin: 24px auto 44px;
  position: relative;
  z-index: 1;
  animation: fadeUp 0.7s 0.18s ease both;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
  z-index: 1;
  animation: fadeUp 0.7s 0.26s ease both;
}

.hero-products {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 64px;
  position: relative;
  z-index: 1;
  animation: fadeUp 0.7s 0.34s ease both;
}

.product-chip {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 24px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  text-decoration: none;
  color: var(--text);
  box-shadow: 0 4px 16px var(--shadow);
  transition: all 0.25s;
}

.product-chip:hover {
  border-color: var(--teal);
  box-shadow: 0 8px 28px rgba(14, 165, 122, 0.15);
  transform: translateY(-3px);
}

.chip-logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
  flex-shrink: 0;
}

.chip-label {
  font-weight: 700;
  font-size: 0.95rem;
  display: block;
  color: var(--navy);
}

.chip-sub {
  font-size: 0.74rem;
  color: var(--muted);
}

.tag-live {
  font-size: 0.65rem;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 100px;
  background: rgba(14, 165, 122, 0.1);
  color: var(--teal);
  letter-spacing: 0.06em;
}

.tag-soon {
  font-size: 0.65rem;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 100px;
  background: rgba(245, 158, 11, 0.1);
  color: #d97706;
  letter-spacing: 0.06em;
}

/* ── ABOUT ── */
#about {
  background: #fff;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  margin-top: 56px;
}

.about-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 28px;
  transition: all 0.3s;
}

.about-card:hover {
  background: #fff;
  border-color: var(--teal-mid);
  box-shadow: 0 8px 32px var(--shadow);
  transform: translateY(-3px);
}

.ac-icon {
  width: 48px;
  height: 48px;
  background: var(--teal-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 20px;
}

.about-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.about-card p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ── PRODUCTS ── */
#products {
  background: var(--bg);
}

.products-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 56px;
}

.product-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
}

.product-card:hover {
  border-color: var(--teal-mid);
  box-shadow: 0 16px 48px var(--shadow-md);
  transform: translateY(-4px);
}

.ptag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 22px;
}

.ptag.live {
  background: rgba(14, 165, 122, 0.1);
  color: var(--teal);
  border: 1px solid rgba(14, 165, 122, 0.2);
}

.ptag.soon {
  background: rgba(245, 158, 11, 0.1);
  color: #d97706;
  border: 1px solid rgba(245, 158, 11, 0.2);
}

.product-title-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 8px;
}

.product-logo {
  width: 56px;
  height: 56px;
  object-fit: contain;
  flex-shrink: 0;
}

.p-name {
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}

.p-full {
  font-size: 0.82rem;
  color: var(--teal);
  font-weight: 600;
  margin-bottom: 18px;
  letter-spacing: 0.01em;
}

.p-desc {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

.p-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 30px;
}

.p-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.86rem;
  color: var(--muted);
}

.p-features li::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
}

.p-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ── SOLUTIONS ── */
#solutions {
  background: #fff;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 56px;
}

.sol-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px;
  transition: all 0.28s;
}

.sol-card:hover {
  background: #fff;
  border-color: var(--teal-mid);
  box-shadow: 0 8px 28px var(--shadow);
  transform: translateY(-3px);
}

.sol-icon {
  width: 44px;
  height: 44px;
  background: var(--teal-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-bottom: 16px;
}

.sol-card h3 {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.sol-card p {
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.65;
  text-align: justify;
}

/* ── CAPABILITIES ── */
#capabilities {
  background: var(--bg);
}

.cap-list {
  margin-top: 56px;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 24px var(--shadow);
}

.cap-row {
  display: grid;
  grid-template-columns: 56px 1fr 56px;
  align-items: center;
  gap: 20px;
  padding: 26px 32px;
  border-bottom: 1px solid var(--border);
  transition: all 0.22s;
}

.cap-row:last-child {
  border-bottom: none;
}

.cap-row:hover {
  background: var(--teal-light);
  padding-left: 40px;
}

.cap-num {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--teal);
  letter-spacing: 0.1em;
}

.cap-body h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.cap-body p {
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.55;
}

.cap-ico {
  font-size: 1.5rem;
  text-align: right;
}

/* ── INDUSTRIES ── */
#industries {
  background: #fff;
}

.ind-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 56px;
}

.ind-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 22px;
  text-align: center;
  transition: all 0.3s;
}

.ind-card:hover {
  background: #fff;
  border-color: var(--teal);
  box-shadow: 0 12px 36px var(--shadow-md);
  transform: translateY(-5px);
}

.ind-icon {
  width: 60px;
  height: 60px;
  background: var(--teal-light);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  margin: 0 auto 18px;
}

.ind-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.ind-card p {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.65;
}

/* ── WHY ── */
#why {
  background: var(--bg);
}

.why-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  margin-top: 56px;
}

.why-points {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.wp {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 22px 24px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  transition: all 0.25s;
}

.wp:hover {
  border-color: var(--teal-mid);
  box-shadow: 0 6px 24px var(--shadow);
}

.wp-num {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--teal);
  opacity: 0.3;
  line-height: 1;
  flex-shrink: 0;
}

.wp h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.wp p {
  font-size: 0.86rem;
  color: var(--muted);
  line-height: 1.65;
}

.why-stats {
  background: var(--navy);
  border-radius: 20px;
  padding: 44px 36px;
  color: #fff;
  text-align: center;
}

.big-num {
  font-size: 3.6rem;
  font-weight: 800;
  color: var(--teal);
  line-height: 1;
  display: block;
  margin-bottom: 8px;
}

.big-lbl {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
  display: block;
  margin-bottom: 36px;
}

.stats-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
}

.stat-box {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 20px 12px;
}

.stat-val {
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
  display: block;
}

.stat-lbl {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 4px;
}

/* ── MOBILE ── */
@media (max-width: 900px) {

  .products-grid,
  .why-wrap {
    grid-template-columns: 1fr;
  }

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

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

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

  .stats-row {
    grid-template-columns: 1fr;
  }

  .cap-row {
    grid-template-columns: 40px 1fr;
    padding: 20px;
    gap: 15px;
  }

  .cap-ico {
    grid-row: 1;
    grid-column: 2;
    font-size: 1.2rem;
  }

  .cap-num {
    grid-row: 1;
    grid-column: 1;
  }

  .cap-body {
    grid-column: 1 / span 2;
    margin-top: 5px;
  }
}

@media (max-width: 600px) {
  #home {
    background-position: bottom;
  }

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

  .cap-row {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .cap-ico {
    order: -1;
    text-align: left;
  }
}



/* ── CLIENTS CAROUSEL (SPLIDE) ── */
#clients {
  padding-top: 80px;
  padding-bottom: 80px;
  background: #fff;
  overflow: hidden;
}

.splide__slide {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 150px;
}

.client-logo-box {
  padding: 10px;
  background: transparent;
  width: 240px;
  height: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.client-logo-box img {
  max-width: 200px;
  height: 120px;
  object-fit: contain;
}

.client-box-name {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  text-transform: capitalize;
}

object-fit: contain;
}