/* PRODUCTS */
.products {
  background: var(--brand-ultra);
}
.products-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 52px;
  gap: 24px;
  flex-wrap: wrap;
  max-width: 1440px;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1440px;
}
.product-card {
  border-radius: 14px;
  padding: 32px;
  border: 1px solid var(--border);
  background: white;
  position: relative;
  transition:
    transform 0.25s,
    box-shadow 0.25s;
  cursor: default;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(20, 39, 77, 0.1);
}
.product-card.featured {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
}
.product-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: var(--brand-ultra);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.product-card.featured .product-icon {
  background: rgba(255, 255, 255, 0.15);
}
.product-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--brand-dark);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
}
.product-card.featured .product-icon svg {
  stroke: white;
}
.product-name {
  font-size: 18px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 8px;
}
.product-card.featured .product-name {
  color: white;
}
.product-desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
}
.product-card.featured .product-desc {
  color: rgba(255, 255, 255, 0.7);
}

/* WHY CHOOSE US */
.why {
  background: white;
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2px;
  margin-top: 52px;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  max-width: 1440px;
}
.why-item {
  background: var(--brand-ultra);
  padding: 36px 30px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}
.why-item:nth-child(3n) {
  border-right: none;
}
.why-item:nth-last-child(-n + 3) {
  border-bottom: none;
}
.why-item:hover {
  background: var(--off-white);
}
.why-num {
  font-family: "DM Sans", sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--brand-pale);
  line-height: 1;
  margin-bottom: 16px;
}
.why-title {
  font-size: 17px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 10px;
}
.why-desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--muted);
}

/* COMING SOON (Products page) */
.coming-soon {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 160px 5% 100px;
  background: var(--off-white);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.coming-soon::before {
  content: "";
  position: absolute;
  top: -15%;
  left: -10%;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: var(--brand-ultra);
}
.coming-soon::after {
  content: "";
  position: absolute;
  bottom: -18%;
  right: -8%;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: var(--accent-ultra);
}
.cs-inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
}
.cs-icon {
  width: 88px;
  height: 88px;
  border-radius: 22px;
  margin: 0 auto 32px;
  background: linear-gradient(135deg, var(--brand-dark), var(--brand-light));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 45px rgba(20, 39, 77, 0.22);
}
.cs-icon svg {
  width: 42px;
  height: 42px;
  stroke: white;
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.cs-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-ultra);
  color: var(--accent);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 24px;
  border: 1px solid var(--accent-light);
}
.cs-eyebrow span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-block;
}
.coming-soon h1 {
  font-family: "DM Sans", sans-serif;
  font-size: clamp(36px, 6vw, 60px);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 20px;
  line-height: 1.1;
}
.coming-soon h1 em {
  font-style: italic;
  color: var(--brand-dark);
}
.coming-soon .cs-desc {
  font-size: 17px;
  line-height: 1.75;
  color: var(--muted);
  font-weight: 300;
  max-width: 480px;
  margin: 0 auto 40px;
}
.cs-dots {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-bottom: 44px;
}
.cs-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--brand-pale);
}
.cs-dot.filled {
  background: var(--brand-dark);
}
.cs-dot.mid {
  background: var(--accent-light);
}

/* RESPONSIVE (colocated with component so cascade order is reliable) */
@media (max-width: 900px) {
  .products-grid {
    grid-template-columns: 1fr 1fr;
  }
  .products-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .why-item {
    border-right: none !important;
    border-bottom: 1px solid var(--border) !important;
  }
  .why-item:last-child {
    border-bottom: none !important;
  }
}

@media (max-width: 600px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
}
