
@media (min-width: 1200px) {
  .prod-hero-features {
    padding-top: 100px;
  }
}

.prod-hero-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1150px;
  margin: 0 auto;
}

@media (max-width: 992px) {
  .prod-hero-feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .prod-hero-feature-grid {
    grid-template-columns: 1fr;
  }
}

.prod-hero-feature-card {
  position: relative;
  background: #ffffff;
  border-radius: 16px;
  padding: 26px 22px;
  box-shadow: 0 14px 40px rgba(15, 31, 77, 0.14);
  border: 1px solid rgba(52, 101, 223, 0.12);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
  overflow: hidden;
}

.prod-hero-feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at top left, rgba(52, 101, 223, 0.18), transparent 55%);
  opacity: 0.8;
  z-index: 0;
}

.prod-hero-feature-card > * {
  position: relative;
  z-index: 1;
}

.prod-hero-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 48px rgba(12, 40, 112, 0.25);
  border-color: rgba(52, 101, 223, 0.5);
}

.prod-hero-feature-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(52, 101, 223, 0.08);
  color: var(--theme-color2, #3465df);
  font-size: 22px;
  margin-bottom: 16px;
}

.prod-hero-feature-card__title {
  font-size: 24px;
  font-weight: 700;
  color: var(--headings-color, #24201f);
  margin-bottom: 8px;
}

.prod-hero-feature-card__title a {
  color: inherit;
  text-decoration: none;
}

.prod-hero-feature-card__title a:hover {
  color: var(--theme-color2, #3465df);
}


.prod-hero-feature-card__link {
  display: inline-flex;
  align-items: center;
  margin-left: 6px;
  font-weight: 600;
  color: var(--theme-color2, #3465df);
  text-decoration: none;
}

.prod-hero-feature-card__link:hover {
  text-decoration: underline;
}

/* ========== Section common ========== */
.prod-section {
  padding: 80px 0  80px;
}

.prod-section--light {
  background: var(--theme-color3, #f4f5f8);
}

.prod-section__title {
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 700;
  color: var(--headings-color, #24201f);
  margin-bottom: 12px;
  text-align: center;
}

.prod-section__subtitle {
  color: var(--text-color, #6d6c74);
  text-align: center;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.prod-console-section {
  position: relative;
  background: #ffffff;
  color: var(--headings-color, #24201f);
}

/* subtle dashed ring accents similar to deployment, hugging module chips */

.prod-console-section .prod-section__title,
.prod-console-section .prod-section__subtitle {
  color: var(--headings-color, #24201f);
}

.prod-console-section .prod-section__subtitle {
  color: var(--text-color, #6d6c74);
}

.prod-console-hub {
  text-align: center;
  margin-bottom: 48px;
}

.prod-console-hub__badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--theme-color2, #3465df);
  margin-bottom: 12px;
  padding: 6px 14px;
  border: 1px solid rgba(52, 101, 223, 0.5);
  border-radius: 100px;
  background: rgba(52, 101, 223, 0.12);
}

.prod-console-hub__title {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  color: var(--headings-color, #24201f);
  margin: 0 0 12px 0;
  line-height: 1.2;
}

.prod-console-hub__sub {
  font-size: 16px;
  color: var(--text-color, #6d6c74);
  margin: 0;
  margin-left: auto;
  margin-right: auto;
}

.prod-modules-orb {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

/* single dashed arcs on both sides of module chips */
.prod-modules-orb::before,
.prod-modules-orb::after {
  content: "";
  position: absolute;
  top: 10%;
  width: 80px;
  height: 230px;
  border-radius: 120px;
  border: 0;
  border-left: 2px dashed rgba(52, 101, 223, 0.3);
  opacity: 0.8;
  pointer-events: none;
}

.prod-modules-orb::before {
  left: -40px;
  transform: skewY(-5deg);
}

.prod-modules-orb::after {
  right: -40px;
  transform: scaleX(-1) skewY(-5deg);
}

/* outer dashed arcs on both sides */
.prod-modules-orb-arc {
  position: absolute;
  top: 6%;
  width: 100px;
  height: 270px;
  border-radius: 140px;
  border-left: 2px dashed rgba(52, 101, 223, 0.22);
  pointer-events: none;
}

.prod-modules-orb-arc--left-outer {
  left: -180px;
  transform: skewY(-5deg);
}

.prod-modules-orb-arc--right-outer {
  right: -180px;
  transform: scaleX(-1) skewY(-5deg);
}

.prod-modules-orb__ring {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.prod-module-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  font-size: 18px;
  font-weight: 600;
  color: var(--theme-color1, #222429);
  background: #ffffff;
  border: 1px solid rgba(52, 101, 223, 0.18);
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.25s ease;
  box-shadow: 0 10px 30px rgba(15, 31, 77, 0.12);
}

.prod-module-chip:hover {
  background: linear-gradient(135deg, #ffffff, rgba(52, 101, 223, 0.06));
  border-color: rgba(52, 101, 223, 0.7);
  color: var(--theme-color1, #222429);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 18px 50px rgba(15, 31, 77, 0.25);
}

@media (max-width: 768px) {
  .prod-module-chip {
    padding: 10px 16px;
    font-size: 15px;
  }
}

/* Screenshot bridging One Console and SSE pillars */
.prod-console-shot-wrap {
  position: relative;
  margin-bottom: -56px;
  z-index: 3;
}

.prod-console-shot {
  width: 100%;
  margin: 0 auto;
  border-radius: 18px;
  overflow: visible;
}

.prod-console-shot img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  border-radius: 18px;
  border: 2px solid rgba(52, 101, 223, 0.85);
  box-shadow: 0 26px 70px rgba(15, 31, 77, 0.28);
}

/* On tablets / mobile, keep screenshot fully above modules */
@media (max-width: 991.98px) {
  .prod-console-shot-wrap {
    margin-top: 12px;
    margin-bottom: 8px;
  }
}

/* ========== Why AnySecura alternating layout ========== */
.prod-why {
  background: #ffffff;
}

.prod-why-row {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto 56px;
}

.prod-why-row:last-child {
  margin-bottom: 0;
}

.prod-why-row--reverse {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
}

@media (max-width: 992px) {
  .prod-why-row,
  .prod-why-row--reverse {
    grid-template-columns: 1fr;
  }
}

.prod-why-text-title {
  font-size: 26px;
  font-weight: 700;
  color: var(--headings-color, #24201f);
  margin-bottom: 12px;
}

.prod-why-text-body {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-color, #6d6c74);
  margin-bottom: 18px;
}

.prod-why-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.prod-why-list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
  font-size: 15px;
  color: var(--text-color, #6d6c74);
}

.prod-why-list li::before {
  content: "●";
  position: absolute;
  left: 0;
  top: 3px;
  font-size: 10px;
  color: var(--theme-color2, #3465df);
}

.prod-why-visual {
  position: relative;
  border-radius: 18px;
  padding: 22px 20px;
  background: radial-gradient(circle at top left, rgba(52, 101, 223, 0.16), transparent 55%), #050816;
  box-shadow: 0 18px 50px rgba(5, 12, 40, 0.7);
  color: #ffffff;
  overflow: hidden;
}

.prod-why-visual__badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.18);
  margin-bottom: 10px;
}

.prod-why-visual__title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
}

.prod-why-visual-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.prod-why-visual-chip {
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(5, 20, 60, 0.85);
  border: 1px solid rgba(129, 162, 255, 0.5);
  font-size: 13px;
  line-height: 1.4;
}

.prod-why-visual-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  font-size: 12px;
}

.prod-why-visual-metric {
  padding: 10px 10px;
  border-radius: 10px;
  background: rgba(5, 20, 60, 0.9);
  border: 1px solid rgba(104, 211, 145, 0.6);
}

.prod-why-visual-metric strong {
  display: block;
  font-size: 16px;
  margin-bottom: 2px;
}

/* ========== 3 Feature advantage cards ========== */
.prod-advantages {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .prod-advantages {
    grid-template-columns: 1fr;
  }
}

.prod-advantage-card {
  background: #fff;
  border-radius: 12px;
  padding: 28px 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.2s, transform 0.2s;
}

.prod-advantage-card:hover {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.prod-advantage-card__icon {
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  color: var(--theme-color2, #3465df);
  font-size: 28px;
}

.prod-advantage-card__title {
  font-size: 24px;
  font-weight: 700;
  color: var(--headings-color, #24201f);
  margin-bottom: 8px;
}


/* ========== Deployment section ========== */
.prod-deployment {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  justify-items: center;
}

@media (max-width: 992px) {
  .prod-deployment {
    gap: 28px;
  }
}

.prod-deployment::before,
.prod-deployment::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: 999px;
}

.prod-deployment::before {
  width: 85%;
  max-width: 900px;
  height: 70%;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  border: 1px dashed rgba(52, 101, 223, 0.28);
}

.prod-deployment::after {
  width: 60px;
  height: 60px;
  right: 12px;
  bottom: 6px;
  border: 1px solid rgba(104, 156, 211, 0.75);
  box-shadow: 0 0 25px rgba(104, 166, 211, 0.6);
  opacity: 0.8;
}

.prod-deployment__content h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--headings-color, #24201f);
  margin-bottom: 20px;
}

.prod-deployment__list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
}

.prod-deployment__list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
  color: var(--text-color, #6d6c74);
  line-height: 1.6;
}

.prod-deployment__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--theme-color2, #3465df);
  font-weight: 700;
}

.prod-deployment__diagram {
  border-radius: 18px;
  overflow: visible;
  margin: 0 auto;
}

/* ========== Code-built deployment diagram (Server / Client / Console) ========== */
.prod-arch {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 32px 40px 32px;
  min-width: 320px;
  max-width: 560px;
  width: 100%;
  background: #ffffff;
  border-radius: 18px;
  position: relative;
}

.prod-arch::before,
.prod-arch::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  border: 1px dashed rgba(129, 162, 255, 0.28);
}

.prod-arch::before {
  width: 92%;
  height: 80%;
  top: 10%;
  left: 4%;
}

.prod-arch::after {
  width: 40px;
  height: 40px;
  right: 18px;
  top: 18px;
  border-style: solid;
  border-color: rgba(104, 211, 145, 0.7);
  opacity: 0.7;
}

.prod-arch__node {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 24px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  min-width: 160px;
  text-align: center;
}

.prod-arch__server {
  background: linear-gradient(145deg, #0472e8 0%, #ac02dc 100%);
  color: #fff;
}

.prod-arch__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 8px;
  opacity: 0.95;
}

.prod-arch__icon--client,
.prod-arch__icon--console {
  color: var(--theme-color2, #3465df);
}

.prod-arch__client,
.prod-arch__console {
  background: #e8f0fe;
  border: 1px solid rgba(52, 101, 223, 0.2);
  color: var(--theme-color1, #222429);
}

.prod-arch__label {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.prod-arch__points {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 12px;
  line-height: 1.6;
  opacity: 0.95;
}

.prod-arch__server .prod-arch__points {
  color: rgba(255, 255, 255, 0.95);
}

.prod-arch__points li {
  position: relative;
  padding-left: 14px;
}

.prod-arch__points li::before {
  content: "✓";
  position: absolute;
  left: 0;
  font-weight: 700;
  font-size: 11px;
}

.prod-arch__line {
  background: var(--theme-color2, #3465df);
  flex-shrink: 0;
}

.prod-arch__line--down {
  width: 3px;
  height: 28px;
  border-radius: 2px;
}

.prod-arch__line--horiz {
  width: 260px;
  max-width: 100%;
  height: 3px;
  border-radius: 2px;
  margin: 0 auto;
}

.prod-arch__row {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 28px;
  width: 100%;
}

.prod-arch__client,
.prod-arch__console {
  flex: 0 0 45%;
}

@media (max-width: 576px) {
  .prod-arch__row {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }

  .prod-arch__line--horiz {
    width: 140px;
  }
}

/* ========== 4 Use cases ========== */
.prod-usecases-section {
  background: linear-gradient(180deg, #eef3ff 0%, #f6f8ff 50%, #ffffff 100%);
}

.prod-usecases {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 992px) {
  .prod-usecases {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .prod-usecases {
    grid-template-columns: 1fr;
  }
}

.prod-usecase-card {
  background: #fff;
  border-radius: 12px;
  padding: 26px 26px;
  box-shadow: 0 14px 40px rgba(15, 31, 77, 0.12);
  border: 1px solid rgba(52, 101, 223, 0.08);
  transition: box-shadow 0.2s, transform 0.2s;
  text-decoration: none;
  color: inherit;
  display: block;
}

.prod-usecase-card:hover {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
  color: inherit;
}

.prod-usecase-card__icon {
  width: 44px;
  height: 44px;
  margin-bottom: 16px;
  color: var(--theme-color2, #3465df);
  font-size: 26px;
}

.prod-usecase-card__title {
  font-size: 24px;
  font-weight: 700;
  color: var(--headings-color, #24201f);
  margin-bottom: 8px;
}

