/* ── Product overview ── */
.product-overview {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  width: auto;
  max-width: none;
  margin: 0 calc(50% - 50vw);
  padding: clamp(3.5rem, 7vw, 5rem) max(20px, calc((100vw - 1200px) / 2));
  background-color: #edf7f3;
  background-image:
    linear-gradient(90deg, rgba(8, 127, 91, 0.05) 1px, transparent 1px),
    linear-gradient(rgba(8, 127, 91, 0.05) 1px, transparent 1px),
    radial-gradient(circle at 6% 20%, rgba(22, 168, 117, 0.18), transparent 36%),
    radial-gradient(circle at 94% 78%, rgba(0, 109, 186, 0.14), transparent 34%),
    radial-gradient(circle at 50% 100%, rgba(123, 104, 238, 0.08), transparent 42%),
    linear-gradient(165deg, #f2faf6 0%, #e8f4ef 42%, #eef5fb 100%);
  background-size: 44px 44px, 44px 44px, auto, auto, auto, auto;
  border-top: 1px solid rgba(8, 127, 91, 0.1);
  border-bottom: 1px solid rgba(8, 127, 91, 0.1);
}

.product-overview::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 0;
  background-image:
    radial-gradient(rgba(22, 168, 117, 0.14) 1.5px, transparent 1.5px),
    linear-gradient(135deg, rgba(0, 109, 186, 0.04) 25%, transparent 25%, transparent 50%, rgba(22, 168, 117, 0.04) 50%, rgba(22, 168, 117, 0.04) 75%, transparent 75%);
  background-size: 20px 20px, 48px 48px;
  opacity: 0.5;
  pointer-events: none;
}

.product-overview::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: -7rem;
  right: -4rem;
  width: 20rem;
  height: 20rem;
  border: 1px solid rgba(22, 168, 117, 0.16);
  border-radius: 50%;
  box-shadow:
    0 0 0 3rem rgba(22, 168, 117, 0.05),
    0 0 0 6rem rgba(0, 109, 186, 0.035),
    -32rem 38rem 0 -5rem rgba(123, 104, 238, 0.06);
  pointer-events: none;
}

.product-overview__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

.product-overview__header {
  width: 100%;
  max-width: none;
  margin: 0 0 clamp(2rem, 4vw, 2.75rem);
  text-align: center;
}

.product-overview__eyebrow {
  display: inline-block;
  margin-bottom: 0.75rem;
  padding: 0.35rem 0.85rem;
  border: 1px solid rgba(8, 127, 91, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #087f5b;
  font-family: "Catamaran", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-overview__title {
  width: 100%;
  max-width: none;
  margin: 0;
  color: #0b1a3d;
  font-family: "Dosis", sans-serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
}

.product-overview__title::after {
  content: "";
  display: block;
  width: 72px;
  height: 3px;
  margin: 1rem auto 0;
  border-radius: 2px;
  background: linear-gradient(90deg, #16a875, #006dba);
}

.product-overview__intro {
  width: 100%;
  max-width: none;
  margin: 1rem 0 0;
  color: #5a6478;
  font-family: "Catamaran", sans-serif;
  font-size: clamp(1rem, 2vw, 1.0625rem);
  line-height: 1.75;
}

.product-overview__grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .product-overview__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
  }
}

.product-overview__grid:has(> :only-child) {
  grid-template-columns: 1fr;
  max-width: none;
  margin: 0;
}

.product-overview__grid:has(> :only-child) .product-overview__panel {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.product-overview__grid:has(> :only-child) .product-overview__panel::before {
  display: none;
}

.product-overview__grid:has(> :only-child) .product-overview__panel:hover {
  transform: none;
  box-shadow: none;
}

.product-overview__grid:has(> :only-child) .product-overview__panel-head {
  justify-content: center;
  margin-bottom: 1.5rem;
  padding-bottom: 0;
  border-bottom: 0;
}

.product-overview__panel {
  --ov-accent: #006dba;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 1.5rem 1.4rem 1.35rem;
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow:
    0 1px 2px rgba(11, 26, 61, 0.04),
    0 12px 32px rgba(11, 26, 61, 0.07);
  backdrop-filter: blur(8px);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.product-overview__panel::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: 5px 5px 0 0;
  background: linear-gradient(90deg, var(--ov-accent), color-mix(in srgb, var(--ov-accent) 55%, #7b68ee));
  opacity: 0.9;
}

.product-overview__panel:hover {
  transform: translateY(-4px);
  border-color: color-mix(in srgb, var(--ov-accent) 22%, rgba(255, 255, 255, 0.85));
  box-shadow:
    0 4px 12px rgba(11, 26, 61, 0.06),
    0 18px 42px color-mix(in srgb, var(--ov-accent) 12%, transparent);
}

.product-overview__panel-head {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid color-mix(in srgb, var(--ov-accent) 12%, rgba(11, 26, 61, 0.08));
}

.product-overview__panel-icon {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 5px;
  background: linear-gradient(135deg, var(--ov-accent), color-mix(in srgb, var(--ov-accent) 70%, #00429b));
  color: #ffffff;
  box-shadow: 0 8px 20px color-mix(in srgb, var(--ov-accent) 24%, transparent);
}

.product-overview__panel-icon .material-symbols-outlined {
  font-size: 1.45rem;
  line-height: 1;
  font-variation-settings: "FILL" 0, "wght" 500, "GRAD" 0, "opsz" 24;
}

.product-overview__panel-title {
  margin: 0;
  color: #0b1a3d;
  font-family: "Dosis", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.3;
}

.product-overview__items {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .product-overview__grid:has(> :only-child) .product-overview__items {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }
}

@media (min-width: 1024px) {
  .product-overview__grid:has(> :only-child) .product-overview__items {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.15rem;
  }
}

.product-overview__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.85rem;
  min-height: 100%;
  padding: 1.1rem 1rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow:
    0 1px 2px rgba(11, 26, 61, 0.04),
    0 10px 28px rgba(11, 26, 61, 0.07);
  transition:
    transform 0.25s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.product-overview__item:hover {
  transform: translateY(-4px);
  border-color: color-mix(in srgb, var(--ov-accent) 24%, rgba(255, 255, 255, 0.9));
  box-shadow:
    0 4px 12px rgba(11, 26, 61, 0.06),
    0 16px 36px color-mix(in srgb, var(--ov-accent) 10%, transparent);
}

.product-overview__item-index {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 2.15rem;
  height: 2.15rem;
  border-radius: 5px;
  background: linear-gradient(135deg, var(--ov-accent), color-mix(in srgb, var(--ov-accent) 70%, #00429b));
  color: #ffffff;
  font-family: "Dosis", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
  box-shadow: 0 6px 14px color-mix(in srgb, var(--ov-accent) 22%, transparent);
}

.product-overview__item-body {
  min-width: 0;
}

.product-overview__item-title {
  margin: 0;
  color: #0b1a3d;
  font-family: "Dosis", sans-serif;
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.35;
}

.product-overview__item-subtitle {
  margin: 0.2rem 0 0;
  color: #006dba;
  font-family: "Catamaran", sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.4;
}

.product-overview__item-desc {
  margin: 0.35rem 0 0;
  color: #5a6478;
  font-family: "Catamaran", sans-serif;
  font-size: 0.875rem;
  line-height: 1.6;
}

@media (prefers-reduced-motion: reduce) {
  .product-overview__panel,
  .product-overview__item {
    transition: none;
  }

  .product-overview__panel:hover,
  .product-overview__item:hover {
    transform: none;
  }
}

/* ── Installation & requirements ── */
.product-install {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  width: auto;
  max-width: none;
  margin: 0 calc(50% - 50vw);
  padding: clamp(3.5rem, 7vw, 5rem) max(20px, calc((100vw - 1200px) / 2));
  background-color: #eef1f8;
  background-image:
    linear-gradient(90deg, rgba(79, 70, 229, 0.05) 1px, transparent 1px),
    linear-gradient(rgba(79, 70, 229, 0.05) 1px, transparent 1px),
    radial-gradient(circle at 8% 18%, rgba(79, 70, 229, 0.14), transparent 34%),
    radial-gradient(circle at 92% 82%, rgba(0, 109, 186, 0.14), transparent 36%),
    radial-gradient(circle at 50% 0%, rgba(123, 104, 238, 0.1), transparent 46%),
    linear-gradient(160deg, #f4f6fc 0%, #e9edf8 48%, #f1f4fb 100%);
  background-size: 40px 40px, 40px 40px, auto, auto, auto, auto;
  border-top: 1px solid rgba(79, 70, 229, 0.1);
  border-bottom: 1px solid rgba(79, 70, 229, 0.1);
}

.product-install::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 0;
  background-image:
    radial-gradient(rgba(79, 70, 229, 0.14) 1.4px, transparent 1.4px),
    linear-gradient(135deg, rgba(0, 109, 186, 0.045) 25%, transparent 25%, transparent 50%, rgba(79, 70, 229, 0.04) 50%, rgba(79, 70, 229, 0.04) 75%, transparent 75%);
  background-size: 18px 18px, 44px 44px;
  opacity: 0.48;
  pointer-events: none;
}

.product-install::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: -8rem;
  left: -5rem;
  width: 18rem;
  height: 18rem;
  border: 1px solid rgba(79, 70, 229, 0.16);
  border-radius: 50%;
  box-shadow:
    0 0 0 2.75rem rgba(79, 70, 229, 0.05),
    0 0 0 5.5rem rgba(0, 109, 186, 0.035),
    34rem 40rem 0 -4rem rgba(0, 149, 206, 0.06);
  pointer-events: none;
}

.product-install__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

.product-install__header {
  width: 100%;
  max-width: none;
  margin: 0 0 clamp(2rem, 4vw, 2.75rem);
  text-align: center;
}

.product-install__eyebrow {
  display: inline-block;
  margin-bottom: 0.75rem;
  padding: 0.35rem 0.85rem;
  border: 1px solid rgba(79, 70, 229, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #4f46e5;
  font-family: "Catamaran", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-install__title {
  width: 100%;
  max-width: none;
  margin: 0;
  color: #0b1a3d;
  font-family: "Dosis", sans-serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
}

.product-install__title::after {
  content: "";
  display: block;
  width: 72px;
  height: 3px;
  margin: 1rem auto 0;
  border-radius: 2px;
  background: linear-gradient(90deg, #4f46e5, #006dba);
}

.product-install__subtitle {
  width: 100%;
  max-width: none;
  margin: 1rem 0 0;
  color: #5a6478;
  font-family: "Catamaran", sans-serif;
  font-size: clamp(1rem, 2vw, 1.0625rem);
  line-height: 1.75;
}

.product-install__requirements {
  margin-bottom: 0;
}

.product-install__req-grid {
  display: grid;
  gap: 1.35rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .product-install__req-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.4rem;
  }
}

@media (min-width: 1024px) {
  .product-install__req-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
  }
}

.product-install__req-card {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  min-height: 0;
  margin-bottom: 0;
  padding: 0.85rem 1rem 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow:
    0 1px 2px rgba(11, 26, 61, 0.04),
    0 12px 30px rgba(11, 26, 61, 0.07);
  backdrop-filter: blur(8px);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.product-install__req-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: 5px 5px 0 0;
  background: linear-gradient(90deg, #4f46e5, #006dba);
  opacity: 0.85;
}

.product-install__req-card:nth-child(3n + 2)::before {
  background: linear-gradient(90deg, #006dba, #0095ce);
}

.product-install__req-card:nth-child(3n)::before {
  background: linear-gradient(90deg, #7b68ee, #5f4dd2);
}

.product-install__req-card:hover {
  z-index: 2;
  transform: translateY(-4px);
  border-color: rgba(79, 70, 229, 0.18);
  box-shadow:
    0 4px 12px rgba(11, 26, 61, 0.06),
    0 18px 40px rgba(79, 70, 229, 0.12);
}

.product-install__req-icon {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 5px;
  background: linear-gradient(135deg, #4f46e5, #3730a3);
  color: #ffffff;
  box-shadow: 0 8px 18px rgba(79, 70, 229, 0.24);
}

.product-install__req-card:nth-child(3n + 2) .product-install__req-icon {
  background: linear-gradient(135deg, #006dba, #00429b);
  box-shadow: 0 8px 18px rgba(0, 109, 186, 0.24);
}

.product-install__req-card:nth-child(3n) .product-install__req-icon {
  background: linear-gradient(135deg, #7b68ee, #5f4dd2);
  box-shadow: 0 8px 18px rgba(123, 104, 238, 0.24);
}

.product-install__req-icon .material-symbols-outlined {
  font-size: 1.1rem;
  line-height: 1;
  font-variation-settings: "FILL" 0, "wght" 500, "GRAD" 0, "opsz" 24;
}

.product-install__req-body {
  min-width: 0;
}

.product-install__req-label {
  margin: 0;
  color: #0b1a3d;
  font-family: "Dosis", sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.25;
}

.product-install__req-value {
  margin: 0.2rem 0 0;
  color: #5a6478;
  font-family: "Catamaran", sans-serif;
  font-size: 0.8125rem;
  line-height: 1.5;
}

@media (prefers-reduced-motion: reduce) {
  .product-install__req-card {
    transition: none;
  }

  .product-install__req-card:hover {
    transform: none;
  }
}

/* ── FAQ ── */
.product-faq {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  width: auto;
  max-width: none;
  margin: 0 calc(50% - 50vw);
  padding: clamp(3.5rem, 7vw, 5rem) max(20px, calc((100vw - 1200px) / 2));
  background-color: #e8f4f8;
  background-image:
    linear-gradient(90deg, rgba(14, 116, 144, 0.05) 1px, transparent 1px),
    linear-gradient(rgba(14, 116, 144, 0.05) 1px, transparent 1px),
    radial-gradient(circle at 12% 18%, rgba(14, 165, 233, 0.14), transparent 34%),
    radial-gradient(circle at 88% 82%, rgba(45, 188, 220, 0.12), transparent 36%),
    radial-gradient(circle at 50% 0%, rgba(8, 127, 91, 0.08), transparent 42%),
    linear-gradient(165deg, #f0f9fc 0%, #e3f2f8 46%, #edf8f5 100%);
  background-size: 42px 42px, 42px 42px, auto, auto, auto, auto;
  border-top: 1px solid rgba(14, 116, 144, 0.1);
  border-bottom: 1px solid rgba(14, 116, 144, 0.1);
}

.product-faq::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 0;
  background-image:
    radial-gradient(rgba(14, 165, 233, 0.14) 1.4px, transparent 1.4px),
    linear-gradient(135deg, rgba(8, 127, 91, 0.04) 25%, transparent 25%, transparent 50%, rgba(14, 165, 233, 0.04) 50%, rgba(14, 165, 233, 0.04) 75%, transparent 75%);
  background-size: 18px 18px, 46px 46px;
  opacity: 0.45;
  pointer-events: none;
}

.product-faq::after {
  content: "";
  position: absolute;
  z-index: -1;
  bottom: -7rem;
  right: -4rem;
  width: 17rem;
  height: 17rem;
  border: 1px solid rgba(14, 165, 233, 0.16);
  border-radius: 50%;
  box-shadow:
    0 0 0 2.75rem rgba(14, 165, 233, 0.05),
    0 0 0 5.5rem rgba(8, 127, 91, 0.035),
    -30rem 32rem 0 -4rem rgba(45, 188, 220, 0.06);
  pointer-events: none;
}

.product-faq__inner {
  position: relative;
  z-index: 1;
  max-width: 52rem;
  margin: 0 auto;
  padding: 0;
}

.product-faq__header {
  margin-bottom: clamp(2rem, 4vw, 2.75rem);
  text-align: center;
}

.product-faq__eyebrow {
  display: inline-block;
  margin-bottom: 0.75rem;
  padding: 0.35rem 0.85rem;
  border: 1px solid rgba(14, 116, 144, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #0e7490;
  font-family: "Catamaran", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-faq__title {
  margin: 0;
  color: #0b1a3d;
  font-family: "Dosis", sans-serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
}

.product-faq__title::after {
  content: "";
  display: block;
  width: 72px;
  height: 3px;
  margin: 1rem auto 0;
  border-radius: 2px;
  background: linear-gradient(90deg, #0ea5e9, #087f5b);
}

.product-faq__subtitle {
  margin: 1rem auto 0;
  max-width: 40rem;
  color: #5a6478;
  font-family: "Catamaran", sans-serif;
  font-size: clamp(1rem, 2vw, 1.0625rem);
  line-height: 1.75;
}

.product-faq__list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.product-faq__item {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow:
    0 1px 2px rgba(11, 26, 61, 0.04),
    0 10px 28px rgba(11, 26, 61, 0.06);
  backdrop-filter: blur(8px);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.product-faq__item[open] {
  border-color: rgba(14, 165, 233, 0.22);
  box-shadow:
    0 4px 12px rgba(11, 26, 61, 0.06),
    0 16px 36px rgba(14, 165, 233, 0.12);
}

.product-faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.2rem;
  color: #0b1a3d;
  font-family: "Dosis", sans-serif;
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.4;
  cursor: pointer;
  list-style: none;
}

.product-faq__question-text {
  flex: 1;
  min-width: 0;
}

.product-faq__question::-webkit-details-marker {
  display: none;
}

.product-faq__chevron {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 5px;
  background: rgba(14, 165, 233, 0.12);
  transition: transform 0.2s ease, background 0.2s ease;
}

.product-faq__chevron .material-symbols-outlined {
  display: block;
  color: #0e7490;
  font-size: 1.1rem;
  line-height: 1;
  font-variation-settings: "FILL" 0, "wght" 500, "GRAD" 0, "opsz" 24;
}

.product-faq__item[open] .product-faq__chevron {
  transform: rotate(180deg);
  background: rgba(14, 165, 233, 0.18);
}

.product-faq__answer {
  padding: 0 1.2rem 1.15rem;
  border-top: 1px solid rgba(14, 165, 233, 0.12);
}

.product-faq__answer p {
  margin: 0.85rem 0 0;
  color: #5a6478;
  font-family: "Catamaran", sans-serif;
  font-size: 0.875rem;
  line-height: 1.7;
}

/* ── Bottom CTA ── */
.product-cta {
  position: relative;
  overflow: hidden;
  width: auto;
  max-width: none;
  margin: 0 calc(50% - 50vw);
  padding: clamp(3.5rem, 7vw, 5rem) max(20px, calc((100vw - 1200px) / 2));
  background:
    radial-gradient(ellipse 70% 55% at 15% 0%, rgba(123, 104, 238, 0.3), transparent 55%),
    radial-gradient(ellipse 60% 45% at 90% 100%, rgba(45, 188, 220, 0.22), transparent 50%),
    linear-gradient(155deg, #001849 0%, #003fa4 42%, #0050cb 72%, #006dba 100%);
  color: #f8f7ff;
  text-align: center;
}

.product-cta__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}

.product-cta__glow--one {
  top: -3rem;
  right: 12%;
  width: 14rem;
  height: 14rem;
  background: rgba(123, 104, 238, 0.35);
}

.product-cta__glow--two {
  bottom: -2rem;
  left: 8%;
  width: 12rem;
  height: 12rem;
  background: rgba(45, 188, 220, 0.28);
}

.product-cta__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

.product-cta__eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(248, 247, 255, 0.72);
  margin-bottom: 0.75rem;
}

.product-cta__title {
  width: 100%;
  max-width: none;
  margin: 0;
  font-family: "Dosis", sans-serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  color: #ffffff;
}

.product-cta__subtitle {
  width: 100%;
  max-width: none;
  margin: 1rem 0 0;
  font-family: "Catamaran", sans-serif;
  font-size: clamp(1rem, 2vw, 1.0625rem);
  line-height: 1.75;
  color: rgba(248, 247, 255, 0.82);
}

.product-cta__pricing {
  display: inline-flex;
  margin-top: 1.5rem;
  padding: 1rem 1.15rem;
  border-radius: 5px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(12px);
}

.product-cta__price-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.product-cta__price-main {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  min-width: 0;
}

.product-cta__price-amount {
  font-family: "Dosis", sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  color: #6ffbbe;
  letter-spacing: -0.02em;
  line-height: 1;
}

.product-cta__currency-toggle {
  display: inline-flex;
  flex-shrink: 0;
  padding: 3px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.1);
}

.product-cta__currency-option {
  min-width: 2.8rem;
  border: 0;
  border-radius: 3px;
  background: transparent;
  padding: 0.3rem 0.55rem;
  color: rgba(248, 247, 255, 0.75);
  cursor: pointer;
  font-family: Inter, system-ui, sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 1;
  transition: background 0.2s ease, color 0.2s ease;
}

.product-cta__currency-option.is-active {
  background: rgba(255, 255, 255, 0.22);
  color: #ffffff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.product-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.product-cta__btn {
  display: inline-flex;
  box-sizing: border-box;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 2.75rem;
  padding: 0.65rem 1.35rem;
  border-radius: 5px;
  border: 1px solid transparent;
  font-family: Inter, system-ui, sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    opacity 0.2s ease;
}

.product-cta__btn .material-symbols-outlined {
  flex-shrink: 0;
  font-size: 1.125rem;
  font-variation-settings: "FILL" 0, "wght" 500, "GRAD" 0, "opsz" 24;
  line-height: 1;
}

.product-cta__btn:active {
  transform: scale(0.98);
}

.product-cta__btn--buy {
  border-color: transparent;
  background: #facc15;
  color: #3b2f00;
}

.product-cta__btn--buy:hover {
  background: #f6c90e;
  color: #2f2500;
  opacity: 0.95;
}

.product-cta__btn--demo {
  border-color: #087f5b;
  background: #16a875;
  color: #ffffff;
}

.product-cta__btn--demo:hover {
  border-color: #066c4d;
  background: #0b9168;
  color: #ffffff;
}

.product-cta__btn--docs {
  border-color: #0050a8;
  background: #006dba;
  color: #ffffff;
}

.product-cta__btn--docs:hover {
  border-color: #00429b;
  background: #005ba8;
  color: #ffffff;
}
