:root {
  --bg-base: #eef2f6;
  --panel: rgba(255, 255, 255, 0.64);
  --panel-strong: rgba(255, 255, 255, 0.82);
  --border: rgba(255, 255, 255, 0.66);
  --text: #172b3a;
  --muted: #4c6677;
  --teal: #1b7788;
  --teal-dark: #134b5c;
  --amber: #d89448;
  --green: #2f8f68;
  --ink-soft: rgba(23, 43, 58, 0.08);
  --shadow: 0 24px 55px -30px rgba(18, 44, 58, 0.45);
  --code-bg: #0b1a24;
  --code-text: #e2f1f8;
  --code-accent: #3cd070;
}

body {
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(
      ellipse at 8% 12%,
      rgba(255, 246, 223, 0.92) 0%,
      rgba(255, 246, 223, 0.18) 38%,
      transparent 66%
    ),
    radial-gradient(
      ellipse at 88% 8%,
      rgba(189, 225, 244, 0.82) 0%,
      rgba(189, 225, 244, 0.2) 42%,
      transparent 68%
    ),
    radial-gradient(
      ellipse at 36% 90%,
      rgba(239, 205, 172, 0.72) 0%,
      rgba(239, 205, 172, 0.16) 45%,
      transparent 72%
    ),
    radial-gradient(
      ellipse at 82% 66%,
      rgba(196, 231, 236, 0.78) 0%,
      rgba(196, 231, 236, 0.18) 48%,
      transparent 74%
    ),
    var(--bg-base);
  color: var(--text);
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  line-height: 1.6;
}

.product-showcase {
  width: min(1160px, calc(100vw - 32px));
  margin: 0 auto;
  padding: 54px 0 80px;
}

.product-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 34px;
  align-items: center;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.56);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.product-hero h1 {
  margin: 12px 0 16px;
  max-width: 760px;
  font-size: clamp(2.25rem, 5vw, 4.7rem);
  line-height: 0.98;
  letter-spacing: 0;
  color: var(--teal-dark);
}

.product-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0 26px;
}

.product-badges span {
  padding: 7px 12px;
  border: 1px solid rgba(27, 119, 136, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.66);
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 800;
}

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

.product-hero-media {
  aspect-ratio: 1 / 0.86;
  overflow: hidden;
  /* border: 1px solid rgba(23, 43, 58, 0.08); */
  border-radius: 14px;
  /* background: rgba(255, 255, 255, 0.7); */
  /* box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72); */
}

.product-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 28px;
  display: block;
}

.product-highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 24px 0;
}

.product-section-stack {
  display: grid;
  gap: 38px;
  margin-top: 32px;
}

.product-hero-meta {
  margin-bottom: 16px;
}

.product-split-section,
.product-feature-section,
.product-matrix-section,
.product-usecase-section,
.product-process-section,
.product-spec-matrix-section,
.product-table-section,
.product-screenshot-section,
.product-content-block {
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.56);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

.product-split-section {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 1fr);
  gap: 28px;
  padding: 32px;
  align-items: center;
}

.product-split-section.is-reversed {
  grid-template-columns: minmax(280px, 1fr) minmax(0, 1.3fr);
}

.product-section-copy {
  display: grid;
  gap: 18px;
}

.product-section-image {
  border-radius: 18px;
  overflow: hidden;
  min-height: 320px;
  background: rgba(255, 255, 255, 0.7);
  display: grid;
  place-items: center;
  box-shadow: inset 0 8px 24px rgba(255, 255, 255, 0.55);
}

.product-section-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-section-subtitle {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.75;
}

.product-feature-section,
.product-feature-list-section,
.product-matrix-section,
.product-usecase-section,
.product-process-section,
.product-spec-matrix-section,
.product-table-section,
.product-screenshot-section,
.product-content-block {
  padding: 34px 32px;
}

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

.product-feature-card {
  padding: 24px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
  display: grid;
  gap: 14px;
}

.product-feature-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(27, 119, 136, 0.14);
  color: var(--teal-dark);
  font-weight: 900;
}

.product-matrix-grid,
.product-spec-matrix {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.product-table-wrap,
.product-screenshot-grid {
  display: grid;
  gap: 18px;
}

.product-table-wrap {
  overflow-x: auto;
}

.product-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
}

.product-table th,
.product-table td {
  padding: 16px 18px;
  text-align: left;
  border-bottom: 1px solid rgba(23, 43, 58, 0.09);
}

.product-table th {
  color: var(--teal-dark);
  font-weight: 800;
  background: rgba(255, 255, 255, 0.9);
}

.product-table td {
  color: var(--muted);
}

.product-screenshot-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-screenshot-card {
  border-radius: 18px;
  overflow: hidden;
  min-height: 220px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.product-screenshot-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-matrix-cell,
.product-spec-row {
  padding: 20px 22px;
  border-radius: 16px;
  border: 1px solid rgba(23, 43, 58, 0.08);
  background: rgba(255, 255, 255, 0.78);
}

.product-matrix-cell strong,
.product-spec-row strong {
  display: block;
  margin-top: 8px;
  color: var(--teal-dark);
  font-size: 1rem;
}

.product-usecase-list {
  display: grid;
  gap: 14px;
}

.product-usecase-row {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 14px;
  align-items: start;
  padding: 18px 20px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(23, 43, 58, 0.08);
}

.product-usecase-row span {
  width: 100%;
  min-height: 20px;
  border-radius: 999px;
  background: linear-gradient(
    135deg,
    rgba(27, 119, 136, 0.2),
    rgba(27, 119, 136, 0.05)
  );
}

.product-process-track {
  display: grid;
  gap: 16px;
}

.product-process-step {
  padding: 22px 24px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(23, 43, 58, 0.08);
  display: grid;
  gap: 14px;
}

.product-process-step strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(27, 119, 136, 0.14);
  color: var(--teal-dark);
  font-weight: 900;
}

.product-spec-matrix-section {
  padding: 34px 32px;
}

.product-spec-matrix {
  grid-template-columns: 1fr;
}

.product-section-heading h2 {
  font-size: clamp(1.65rem, 2vw, 2.2rem);
  margin: 0;
}

@media (max-width: 960px) {
  .product-highlight-grid,
  .product-feature-grid,
  .product-matrix-grid,
  .product-spec-matrix {
    grid-template-columns: 1fr;
  }

  .product-split-section,
  .product-feature-section,
  .product-matrix-section,
  .product-usecase-section,
  .product-process-section,
  .product-spec-matrix-section,
  .product-table-section,
  .product-screenshot-section,
  .product-feature-list-section {
    grid-template-columns: 1fr;
  }

  .product-section-image {
    min-height: 240px;
  }
}

.product-hero-category {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(27, 119, 136, 0.12);
  color: var(--teal-dark);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.product-section-heading {
  display: grid;
  gap: 12px;
  margin-bottom: 18px;
}

.product-section-kicker {
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.76rem;
  font-weight: 800;
}

.product-feature-list {
  display: grid;
  gap: 16px;
}

.product-feature-list-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  padding: 22px 24px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 18px 42px -34px rgba(18, 44, 58, 0.42);
}

.product-feature-list-index {
  display: grid;
  place-items: center;
  min-width: 48px;
  height: 48px;
  border-radius: 16px;
  background: rgba(27, 119, 136, 0.12);
  color: var(--teal-dark);
  font-size: 0.9rem;
  font-weight: 800;
}

.product-feature-list-item h3 {
  margin: 0 0 10px;
  color: var(--teal-dark);
  font-size: 1.05rem;
}

.product-feature-list-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.product-spec-card,
.product-content-block {
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 18px 42px -34px rgba(18, 44, 58, 0.42);
  backdrop-filter: blur(16px);
}

.product-highlight {
  padding: 20px;
}

.product-highlight strong {
  display: block;
  color: var(--teal);
  font-size: 1.9rem;
  line-height: 1;
}

.product-highlight span {
  display: block;
  margin-top: 8px;
  color: var(--teal-dark);
  font-weight: 850;
}

.product-highlight p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.product-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 24px;
  align-items: start;
  margin-top: 24px;
}

.product-detail-main {
  display: grid;
  gap: 18px;
}

.product-content-block {
  padding: 28px;
}

.product-content-block h2,
.product-spec-card h3 {
  margin: 0 0 14px;
  color: var(--teal-dark);
  line-height: 1.15;
}

.product-content-block p {
  margin: 0;
  color: var(--muted);
}

.product-content-block ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.product-content-block li::marker {
  color: var(--teal);
}

.product-spec-card {
  position: sticky;
  top: 112px;
  padding: 24px;
}

.product-spec-row {
  display: grid;
  gap: 4px;
  padding: 14px 0;
  border-top: 1px solid rgba(23, 43, 58, 0.08);
}

.product-spec-row span {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.product-spec-row strong {
  color: var(--text);
  font-size: 0.94rem;
  line-height: 1.45;
}

@media (max-width: 900px) {
  .product-hero,
  .product-detail-layout,
  .product-highlight-grid {
    grid-template-columns: 1fr;
  }

  .product-spec-card {
    position: static;
  }
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #0f3441;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 14px;
  color: white;
  background: linear-gradient(145deg, var(--teal), #1d5367);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.35),
    0 12px 26px -18px #0d4050;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #123846;
  font-size: 0.88rem;
  font-weight: 700;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font: inherit;
  font-size: 0.92rem;
  font-weight: 750;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
}

.button-secondary {
  color: var(--teal-dark);
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.35);
}

/* MEGA MENU POPULATION DROPDOWN */
.dropdown {
  position: relative;
}

.mega-grid {
  position: relative;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 16px;
}

/* ----------------------------------------------------- */
/* GENERAL TEMPLATE RENDER CONTAINER & SHELLS */
/* ----------------------------------------------------- */
.content-renderer {
  margin-top: 20px;
}

/* SCROLL REVEAL CLASSIFIERS */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 700ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ----------------------------------------------------- */
/* 1. CASE STUDY TEMPLATE LAYOUT */
/* ----------------------------------------------------- */
.case-study-hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
  padding: 40px 0;
  min-height: 480px;
}

.hero-left {
  display: flex;
  flex-direction: column;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-bottom: 18px;
  padding: 6px 12px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.46);
  color: var(--teal);
  font-size: 0.8rem;
  font-weight: 750;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.pulse {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(47, 143, 104, 0.12);
  animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
  0% {
    box-shadow: 0 0 0 0px rgba(47, 143, 104, 0.4);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(47, 143, 104, 0);
  }
  100% {
    box-shadow: 0 0 0 0px rgba(47, 143, 104, 0);
  }
}

h1 {
  color: transparent;
  background: linear-gradient(135deg, #142636 0%, #174d5c 62%, #226b78 100%);
  background-clip: text;
  -webkit-background-clip: text;
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  font-weight: 850;
  line-height: 1.1;
  margin-bottom: 18px;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 24px;
  font-weight: 500;
  text-align: justify;
}

.meta-author-row {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.88rem;
  color: var(--muted);
  border-top: 1px solid rgba(23, 77, 92, 0.08);
  padding-top: 16px;
  margin-top: auto;
}

.meta-bullet {
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: rgba(23, 77, 92, 0.25);
}

/* PREMIUM DYNAMIC GRAPHICS/CANVAS SHELLS */
.hero-right-visual {
  position: relative;
  aspect-ratio: 1.15 / 1;
  border-radius: 28px;
  /* border: 1px solid rgba(255, 255, 255, 0.72);
            background: rgba(255, 255, 255, 0.45); */
  backdrop-filter: blur(14px);
  /* box-shadow: var(--shadow); */
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 16px;
}

.visual-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  border-bottom: 1px solid rgba(23, 77, 92, 0.06);
  padding-bottom: 8px;
}

.visual-title {
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--teal-dark);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.visual-badge {
  font-size: 0.72rem;
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(27, 119, 136, 0.1);
  color: var(--teal);
  font-weight: 700;
}

.visual-canvas {
  flex-grow: 1;
  width: 100%;
  /* background: #ffffff; */
  border-radius: 18px;
  /* border: 1px solid rgba(23, 77, 92, 0.05); */
  position: relative;
  overflow: hidden;
}

/* ----------------------------------------------------- */
/* 2. DEVELOPER API LAYOUT STYLES */
/* ----------------------------------------------------- */
.api-layout-container {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 34px;
  margin-top: 24px;
}

.api-sidebar-wrapper {
  position: relative;
}

.api-sidebar {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-height: calc(100vh - 120px);
  overflow-y: auto;
  padding-right: 10px;
}

.sidebar-section {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.sidebar-title {
  font-size: 0.74rem;
  font-weight: 850;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}

.sidebar-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 10px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--muted);
  transition:
    background 180ms ease,
    color 180ms ease;
}

.sidebar-link:hover {
  background: rgba(255, 255, 255, 0.52);
  color: var(--teal-dark);
}

.sidebar-link.is-active {
  background: rgba(27, 119, 136, 0.1);
  color: var(--teal-dark);
  font-weight: 750;
}

.sidebar-link-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--teal);
  opacity: 0.6;
}

/* ----------------------------------------------------- */
/* 3. BLOG LAYOUT STYLES */
/* ----------------------------------------------------- */
.blog-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
  padding: 50px 0 34px;
}

.blog-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1.12;
  margin-bottom: 20px;
}

.blog-hero .hero-subtitle {
  font-size: 1.22rem;
  line-height: 1.6;
  max-width: 720px;
  margin-bottom: 24px;
}

.blog-meta-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 20px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.5);
  box-shadow: 0 4px 20px -10px rgba(9, 37, 48, 0.08);
  font-size: 0.88rem;
  color: var(--muted);
}

.blog-layout-container {
  max-width: 760px;
  margin: 0 auto;
  padding: 12px 0 60px;
}

/* ----------------------------------------------------- */
/* REUSABLE SUBSECTION/COMPONENT STYLES */
/* ----------------------------------------------------- */

/* A. CONTENT BLOCK STYLE (TYPOGRAPHY PARSER) */
.component-content {
  margin: 38px 0;
}

.component-content h2,
.component-content h3 {
  color: #173747;
  margin-top: 32px;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.component-content h2 {
  font-size: 1.68rem;
  font-weight: 800;
}

.component-content h3 {
  font-size: 1.34rem;
  font-weight: 750;
}

.component-content p {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 20px;
}

.component-content p strong {
  color: #102d3d;
  font-weight: 700;
}

.component-content ul {
  margin-left: 22px;
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 1.05rem;
}

.component-content li {
  margin-bottom: 8px;
}

/* B. STATS COMPONENT */
.component-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin: 38px 0;
}

.stat-box {
  padding: 24px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.52);
  box-shadow: 0 16px 36px -28px rgba(18, 44, 58, 0.35);
  backdrop-filter: blur(14px);
  transition:
    transform 220ms ease,
    background 220ms ease;
  position: relative;
  overflow: hidden;
}

.stat-box:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.74);
}

.stat-number {
  font-size: 2.3rem;
  font-weight: 900;
  color: var(--teal-dark);
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 0.82rem;
  font-weight: 850;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}

.stat-desc {
  font-size: 0.84rem;
  color: var(--muted);
}

.stat-progress-bar {
  height: 3px;
  width: 100%;
  background: rgba(23, 77, 92, 0.08);
  border-radius: 99px;
  margin-top: 14px;
  position: relative;
  overflow: hidden;
}

.stat-progress-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--teal), var(--green));
  border-radius: 99px;
  width: 0;
  transition: width 1s cubic-bezier(0.16, 1, 0.3, 1);
}

/* C. SPLIT FEATURE COMPONENT */
.component-split-feature {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 44px;
  align-items: center;
  margin: 44px 0;
}

.component-split-feature.is-reversed {
  direction: rtl;
}

.component-split-feature.is-reversed > * {
  direction: ltr;
}

.split-copy h2 {
  font-size: 1.85rem;
  font-weight: 800;
  color: #173747;
  margin-bottom: 14px;
}

.split-copy p {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.62;
  margin-bottom: 20px;
}

.split-bullets {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
}

.split-bullet-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.94rem;
  color: var(--muted);
}

.bullet-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: rgba(47, 143, 104, 0.12);
  color: var(--green);
  flex-shrink: 0;
  margin-top: 2px;
}

/* D. QUOTE BLOCK COMPONENT */
.component-quote {
  padding: 34px 40px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.42);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
  margin: 38px 0;
  position: relative;
}

.component-quote::before {
  content: "“";
  position: absolute;
  top: -24px;
  left: 28px;
  font-size: 8rem;
  font-weight: 900;
  color: rgba(27, 119, 136, 0.08);
  font-family: Georgia, serif;
  line-height: 1;
}

.quote-text {
  font-size: 1.34rem;
  font-style: italic;
  color: #123846;
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.quote-profile {
  display: flex;
  align-items: center;
  gap: 14px;
}

.quote-avatar {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0 4px 10px rgba(9, 37, 48, 0.1);
  object-fit: cover;
}

.quote-name {
  font-size: 0.96rem;
  font-weight: 800;
  color: #173747;
}

.quote-role {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 1px;
}

/* E. GRID LAYOUT COMPONENT */
.component-grid {
  margin: 44px 0;
}

.grid-header {
  margin-bottom: 24px;
}

.grid-title {
  font-size: 1.64rem;
  font-weight: 800;
  color: #173747;
  margin-bottom: 6px;
}

.grid-subtitle {
  font-size: 0.96rem;
  color: var(--muted);
}

.grid-wrapper {
  display: grid;
  gap: 14px;
}

.grid-wrapper.cols-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-wrapper.cols-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-card {
  padding: 24px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  background: rgba(255, 255, 255, 0.52);
  backdrop-filter: blur(10px);
  transition:
    transform 220ms ease,
    background 220ms ease;
}

.grid-card:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.75);
  border-color: rgba(27, 119, 136, 0.25);
}

.cols-1-card {
  border: 1px solid rgba(255, 255, 255, 0.7) !important;
  background: rgba(255, 255, 255, 0.52) !important;
  box-shadow: 0 12px 32px -16px rgba(18, 44, 58, 0.15) !important;
}

.cols-1-card:hover {
  transform: translateY(-4px) !important;
  background: rgba(255, 255, 255, 0.78) !important;
  border-color: rgba(27, 119, 136, 0.35) !important;
  box-shadow: 0 20px 48px -24px rgba(18, 44, 58, 0.28) !important;
}

.cols-1-card:hover .cols-1-image-wrapper img {
  transform: scale(1.04);
}

.cols-1-card:hover .grid-card-title {
  color: var(--teal) !important;
}

.cols-1-card:hover .cta-arrow {
  transform: translateX(4px);
}

.image-top-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px -20px rgba(18, 44, 58, 0.28) !important;
  border-color: rgba(27, 119, 136, 0.28) !important;
  background: rgba(255, 255, 255, 0.78) !important;
}

.image-top-card:hover .card-img-wrapper img {
  transform: scale(1.06);
}

.image-top-card:hover .grid-card-title {
  color: var(--teal) !important;
}

.image-top-card:hover .cta-arrow {
  transform: translateX(4px);
}

.grid-card-icon-shell {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  margin-bottom: 16px;
  background: rgba(27, 119, 136, 0.08);
  color: var(--teal);
}

.grid-card-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: #173747;
  margin-bottom: 8px;
}

.grid-card-desc {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.5;
}

/* F. CALL TO ACTION (CTA) COMPONENT */
.component-cta {
  margin: 48px 0;
  padding: 48px 40px;
  border-radius: 30px;
  background: linear-gradient(135deg, #0e2938 0%, #153c4c 60%, #1e5263 100%);
  color: white;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
  text-align: center;
}

.component-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: 0.6;
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  margin: 0 auto;
}

.cta-title {
  font-size: clamp(1.6rem, 3.2vw, 2.2rem);
  font-weight: 850;
  line-height: 1.15;
  margin-bottom: 14px;
  background: linear-gradient(135deg, #ffffff, #d5e9ef);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.cta-subtitle {
  font-size: 1.04rem;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 28px;
  font-weight: 480;
}

.cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.cta-btn-primary {
  background: white;
  color: var(--teal-dark);
}

.cta-btn-primary:hover {
  background: #e2f1f4;
}

.cta-btn-secondary {
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

.cta-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.18);
}

/* G. API REFERENCE SPECIFIC COMPONENT */
.component-api-reference {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin: 44px 0;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(23, 77, 92, 0.08);
}

.api-left-details {
  display: flex;
  flex-direction: column;
}

.api-badge-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.api-verb {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.8rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 6px;
}

.api-verb.get {
  background: rgba(27, 119, 136, 0.12);
  color: var(--teal);
  border: 1px solid rgba(27, 119, 136, 0.2);
}

.api-verb.post {
  background: rgba(216, 148, 72, 0.12);
  color: var(--amber);
  border: 1px solid rgba(216, 148, 72, 0.2);
}

.api-path {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.86rem;
  font-weight: 700;
  color: #173747;
  background: rgba(23, 77, 92, 0.05);
  padding: 3px 8px;
  border-radius: 6px;
}

.api-title {
  font-size: 1.45rem;
  font-weight: 850;
  color: #172b3a;
  margin-bottom: 8px;
}

.api-desc {
  font-size: 0.94rem;
  color: var(--muted);
  margin-bottom: 22px;
  line-height: 1.5;
}

.parameter-section-title {
  font-size: 0.74rem;
  font-weight: 850;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(23, 77, 92, 0.06);
}

.param-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
  font-size: 0.84rem;
}

.param-table th,
.param-table td {
  text-align: left;
  padding: 8px 10px;
  border-bottom: 1px solid rgba(23, 77, 92, 0.04);
}

.param-table th {
  color: var(--muted);
  font-weight: 700;
}

.param-name {
  font-family: "JetBrains Mono", monospace;
  font-weight: 700;
  color: #183748;
}

.param-type {
  font-family: "JetBrains Mono", monospace;
  color: var(--teal);
  font-size: 0.78rem;
}

.param-req {
  font-size: 0.72rem;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 4px;
  text-transform: uppercase;
}

.param-req.required {
  background: rgba(216, 148, 72, 0.12);
  color: var(--amber);
}

.param-req.optional {
  background: rgba(23, 77, 92, 0.06);
  color: var(--muted);
}

/* DEVELOPER CODE CONSOLE */
.api-right-console {
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  background: var(--code-bg);
  border: 1px solid #142e3f;
  box-shadow: 0 20px 45px -25px rgba(5, 18, 25, 0.85);
  overflow: hidden;
  max-height: 480px;
}

.console-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #08131b;
  padding: 8px 16px;
  border-bottom: 1px solid #102432;
}

.console-tabs {
  display: flex;
  gap: 4px;
}

.console-tab {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.74rem;
  font-weight: 600;
  color: #4a6c82;
  padding: 6px 12px;
  border-radius: 6px;
  background: transparent;
  border: none;
  cursor: pointer;
  transition:
    color 180ms ease,
    background 180ms ease;
}

.console-tab:hover {
  color: #a4c0d2;
  background: rgba(255, 255, 255, 0.03);
}

.console-tab.is-active {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
  font-weight: 700;
}

.console-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.console-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
  color: #a4c0d2;
  font-family: "JetBrains Mono", monospace;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 5px 10px;
  cursor: pointer;
  transition:
    background 180ms ease,
    color 180ms ease;
}

.console-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  color: white;
}

.console-btn.run-btn {
  background: var(--teal);
  color: white;
}

.console-btn.run-btn:hover {
  background: #2592a6;
}

.console-body {
  position: relative;
  flex-grow: 1;
  overflow: auto;
  padding: 18px;
}

.console-code {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.8rem;
  color: var(--code-text);
  white-space: pre;
  line-height: 1.5;
}

/* DYNAMIC RESPONSE RUNNER LOADER */
.console-loader {
  position: absolute;
  inset: 0;
  background: rgba(11, 26, 36, 0.95);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--code-text);
  font-family: "JetBrains Mono", monospace;
  font-size: 0.8rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.console-loader.is-active {
  opacity: 1;
  pointer-events: auto;
}

.spinner {
  width: 24px;
  height: 24px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 99px;
  border-top-color: var(--teal);
  animation: spin 800ms linear infinite;
  margin-bottom: 12px;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ----------------------------------------------------- */
/* COMPONENT INTERACTIVE ELEMENTS SIMULATORS */
/* ----------------------------------------------------- */

/* A. TELEMETRY GRAPHICS CANVAS */
.telemetry-dashboard {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  font-family: "JetBrains Mono", monospace;
}

.telem-top-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid rgba(23, 77, 92, 0.05);
}

.telem-metric {
  padding: 10px;
  text-align: center;
  border-right: 1px solid rgba(23, 77, 92, 0.05);
}

.telem-metric:last-child {
  border-right: none;
}

.telem-metric-val {
  font-size: 1.15rem;
  font-weight: 800;
  color: #173747;
  line-height: 1.2;
}

.telem-metric-lbl {
  font-size: 0.65rem;
  color: var(--muted);
  text-transform: uppercase;
  margin-top: 2px;
}

.telem-main-canvas {
  flex-grow: 1;
  position: relative;
}

.telem-console-feed {
  height: 80px;
  background: #091720;
  color: #6da2bf;
  padding: 8px 12px;
  font-size: 0.72rem;
  overflow-y: auto;
  border-top: 1px solid rgba(23, 77, 92, 0.08);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.telem-console-line {
  line-height: 1.3;
}

.telem-console-line.success {
  color: #3cd070;
}

.telem-console-line.warning {
  color: #f39c12;
}

/* B. MOBILE PHONE NOTIFICATION FRAME */
.phone-frame-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 18px 0;
  background: linear-gradient(
    135deg,
    rgba(23, 77, 92, 0.02),
    rgba(23, 77, 92, 0.08)
  );
}

.phone-frame {
  width: 250px;
  height: 310px;
  border-radius: 34px;
  background: #0f1c24;
  border: 6px solid #203643;
  box-shadow: 0 20px 40px -20px rgba(5, 18, 25, 0.6);
  position: relative;
  padding: 10px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.phone-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 14px;
  background: #203643;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  z-index: 10;
}

.phone-screen {
  flex-grow: 1;
  border-radius: 22px;
  background: radial-gradient(circle at 50% 30%, #1e3b4d, #081116);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 12px;
}

.phone-map-background {
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background-image:
    linear-gradient(#fff 1px, transparent 1px),
    linear-gradient(90deg, #fff 1px, transparent 1px);
  background-size: 16px 16px;
}

.phone-app-alert {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.94);
  border-radius: 14px;
  padding: 10px;
  transform: translateY(120%);
  opacity: 0;
  transition:
    transform 500ms cubic-bezier(0.16, 1, 0.3, 1),
    opacity 500ms ease;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
}

.phone-app-alert.is-triggered {
  transform: translateY(0);
  opacity: 1;
}

.alert-header-row {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--teal);
  text-transform: uppercase;
  margin-bottom: 4px;
}

.alert-body-title {
  font-size: 0.8rem;
  font-weight: 800;
  color: #102633;
}

.alert-body-copy {
  font-size: 0.72rem;
  color: #4b6272;
  margin-top: 2px;
  line-height: 1.3;
}

.phone-action-hint {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.62rem;
  font-family: "JetBrains Mono", monospace;
  text-align: center;
  margin-top: 10px;
}

/* ----------------------------------------------------- */
/* STANDARD FOOTER STYLES */
/* ----------------------------------------------------- */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 44px 0 24px;
  margin-top: 60px;
  font-size: 0.86rem;
  color: var(--muted);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-bottom: 30px;
}

.footer-logo-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-logo-desc {
  font-size: 0.84rem;
  line-height: 1.5;
}

.footer-title {
  font-size: 0.9rem;
  font-weight: 800;
  color: #173747;
  margin-bottom: 12px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-link:hover {
  color: var(--teal);
  text-decoration: underline;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(23, 77, 92, 0.06);
  padding-top: 20px;
  font-size: 0.78rem;
}

/* RESPONSIVE LAYOUT BREAKPOINTS */
@media (max-width: 900px) {
  .case-study-hero {
    grid-template-columns: 1fr;
  }
  .api-layout-container {
    grid-template-columns: 1fr;
  }
  .api-sidebar {
    position: relative;
    top: 0;
    max-height: none;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .component-split-feature {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .component-api-reference {
    grid-template-columns: 1fr;
  }
  .grid-wrapper.cols-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .grid-wrapper.cols-3,
  .grid-wrapper.cols-2 {
    grid-template-columns: 1fr;
  }
  .site-nav {
    flex-direction: column;
    gap: 12px;
    padding: 14px;
  }
  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* ==========================================================================
   ENHANCED PRODUCT TEMPLATE PREMIUM STYLES
   ========================================================================== */

.product-showcase {
  position: relative;
}

.product-hero-accent {
  position: absolute;
  top: -150px;
  right: -100px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(27, 119, 136, 0.18) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  animation: float-glow 25s infinite alternate ease-in-out;
}

@keyframes float-glow {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-60px, 40px) scale(1.15); }
  100% { transform: translate(40px, -20px) scale(0.9); }
}

.product-hero {
  position: relative;
  z-index: 1;
}

.product-social-proof {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 24px;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--muted);
}

.product-social-proof-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  display: inline-block;
  position: relative;
  flex-shrink: 0;
}

.product-social-proof-dot::after {
  content: "";
  position: absolute;
  top: -4px;
  left: -4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--teal);
  opacity: 0.3;
  animation: social-pulse 2.2s infinite ease-out;
}

@keyframes social-pulse {
  0% { transform: scale(0.5); opacity: 0.8; }
  100% { transform: scale(2.2); opacity: 0; }
}

/* Highlights Grid */
.product-highlight {
  padding: 24px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.64);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px -15px rgba(18, 44, 58, 0.12);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, border-color 0.3s ease;
}

.product-highlight:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -20px rgba(18, 44, 58, 0.22);
  border-color: rgba(27, 119, 136, 0.25);
}

.product-highlight-icon {
  color: var(--teal);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(27, 119, 136, 0.08);
}

.product-highlight-value {
  background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  font-size: 2.25rem;
  font-weight: 850;
  line-height: 1;
}

/* Trust Banner */
.product-trust-banner {
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.56);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
  padding: 34px 32px;
}

.product-trust-banner .product-section-heading {
  margin-bottom: 24px;
}

.product-trust-banner h2 {
  font-size: clamp(1.4rem, 1.8vw, 1.8rem);
  text-align: center;
  margin: 0;
  color: var(--teal-dark);
}

.product-trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}

.product-trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid rgba(23, 43, 58, 0.06);
  background: rgba(255, 255, 255, 0.72);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-trust-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -10px rgba(18, 44, 58, 0.15);
  border-color: rgba(27, 119, 136, 0.2);
}

.product-trust-icon {
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(27, 119, 136, 0.08);
}

.product-trust-item span {
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--teal-dark);
}

/* Use Case Row Rich */
.product-usecase-row--rich {
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid rgba(255, 255, 255, 0.72);
}

.product-usecase-row--rich:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 25px -12px rgba(18, 44, 58, 0.15);
  border-color: rgba(27, 119, 136, 0.25);
  background: rgba(255, 255, 255, 0.85);
}

.product-usecase-title {
  margin: 0 0 6px;
  color: var(--teal-dark);
  font-size: 1.05rem;
  font-weight: 800;
}

.product-usecase-desc {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

/* Process Steps Timeline Connectors */
.product-process-track--timeline {
  position: relative;
  padding-left: 28px;
  display: grid;
  gap: 20px;
}

.product-process-track--timeline::before {
  content: "";
  position: absolute;
  top: 36px;
  left: 21px;
  bottom: 36px;
  width: 2px;
  background: linear-gradient(to bottom, var(--teal) 0%, rgba(27, 119, 136, 0.1) 100%);
  border-radius: 99px;
}

.product-process-step {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 16px;
  box-shadow: 0 8px 30px -10px rgba(18, 44, 58, 0.1);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-process-step::after {
  content: "";
  position: absolute;
  top: 38px;
  left: -29px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  border: 2px solid #ffffff;
  box-shadow: 0 0 0 4px rgba(27, 119, 136, 0.15);
  z-index: 2;
}

.product-process-step:hover {
  transform: translateX(4px);
  border-color: rgba(27, 119, 136, 0.25);
  box-shadow: 0 12px 35px -15px rgba(18, 44, 58, 0.18);
  background: rgba(255, 255, 255, 0.85);
}

.product-process-step strong {
  align-self: start;
}

.product-process-step-content h3 {
  margin: 0 0 8px;
  color: var(--teal-dark);
  font-size: 1.15rem;
}

.product-process-step-content p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.6;
}

/* Technical Specs Matrix Enhanced */
.product-spec-matrix--enhanced {
  background: rgba(255, 255, 255, 0.45);
  border-radius: 16px;
  border: 1px solid rgba(23, 43, 58, 0.06);
  padding: 12px;
}

.product-spec-matrix--enhanced .product-spec-row {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 16px;
  align-items: center;
  padding: 16px 20px;
  border-top: none;
  border-bottom: 1px solid rgba(23, 43, 58, 0.05);
  transition: all 0.2s ease;
}

.product-spec-matrix--enhanced .product-spec-row:last-child {
  border-bottom: none;
}

.product-spec-matrix--enhanced .product-spec-row:hover {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 12px;
  padding-left: 24px;
}

.product-spec-matrix--enhanced .product-spec-row span {
  font-size: 0.82rem;
  font-weight: 750;
  color: var(--teal-dark);
}

.product-spec-matrix--enhanced .product-spec-row strong {
  margin: 0;
  color: var(--text);
  font-size: 0.94rem;
}

/* Closing CTA Band */
.product-cta-band {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(135deg, #0b1a24 0%, #132d3e 100%);
  box-shadow: var(--shadow);
  padding: 60px 40px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 16px;
}

.product-cta-band-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(27, 119, 136, 0.2) 0%, transparent 60%);
  pointer-events: none;
  z-index: 1;
  animation: cta-pulse 12s infinite alternate linear;
}

@keyframes cta-pulse {
  0% { transform: scale(0.9) translate(-5%, -5%); }
  100% { transform: scale(1.1) translate(5%, 5%); }
}

.product-cta-band-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  margin: 0 auto;
}

.product-cta-band-content h2 {
  color: #ffffff;
  font-size: clamp(1.8rem, 2.5vw, 2.5rem);
  line-height: 1.15;
  margin: 0 0 14px;
}

.product-cta-band-content p {
  color: #a4b3bd;
  font-size: clamp(0.95rem, 1.2vw, 1.08rem);
  line-height: 1.65;
  margin: 0 0 32px;
}

.product-cta-band-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-btn-primary {
  background: var(--teal) !important;
  color: #ffffff !important;
  border-color: var(--teal) !important;
  box-shadow: 0 8px 24px -8px rgba(27, 119, 136, 0.5);
}

.cta-btn-primary:hover {
  background: #238b9e !important;
  border-color: #238b9e !important;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px -6px rgba(27, 119, 136, 0.75);
}

.cta-btn-secondary {
  background: rgba(255, 255, 255, 0.08) !important;
  color: #ffffff !important;
  border-color: rgba(255, 255, 255, 0.15) !important;
  backdrop-filter: blur(10px);
}

.cta-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15) !important;
  transform: translateY(-2px);
}

/* Feature Cards & Micro-interactions */
.product-feature-card {
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid rgba(255, 255, 255, 0.72);
}

.product-feature-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px -15px rgba(18, 44, 58, 0.2);
  border-color: rgba(27, 119, 136, 0.25);
  background: rgba(255, 255, 255, 0.85);
}

.product-matrix-cell {
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid rgba(255, 255, 255, 0.72);
}

.product-matrix-cell:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 25px -12px rgba(18, 44, 58, 0.15);
  border-color: rgba(27, 119, 136, 0.25);
  background: rgba(255, 255, 255, 0.88);
}

/* Screenshot Hover Zoom */
.product-screenshot-card {
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid rgba(255, 255, 255, 0.72);
}

.product-screenshot-card img {
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-screenshot-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -20px rgba(18, 44, 58, 0.26);
  border-color: rgba(27, 119, 136, 0.3);
}

.product-screenshot-card:hover img {
  transform: scale(1.05);
}

/* Table Enhancements */
.product-table-wrap {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(23, 43, 58, 0.08);
}

.product-table th {
  background: rgba(255, 255, 255, 0.95);
  font-weight: 800;
}

.product-table tr {
  background: rgba(255, 255, 255, 0.5);
  transition: background 0.2s ease;
}

.product-table tr:hover {
  background: rgba(255, 255, 255, 0.85);
}

@media (max-width: 900px) {
  .product-process-track--timeline::before {
    left: 21px;
  }
  
  .product-spec-matrix--enhanced .product-spec-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }
  
  .product-spec-matrix--enhanced .product-spec-row:hover {
    padding-left: 20px;
  }
}

