/* ============================================================
   VOLUM TECHNOLOGIES — Product Detail Pages
   ============================================================ */

/* ── HERO ── */
.prod-hero {
  min-height: 88vh;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding: 100px clamp(1.5rem, 5vw, 4rem) clamp(4rem, 8vw, 6rem);
}

/* ambient glow — colour overridden per product via inline --hero-glow */
.prod-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 65% 55% at 65% 40%, var(--hero-glow, rgba(0,152,253,0.12)) 0%, transparent 68%);
  pointer-events: none; z-index: 0;
}

/* subtle grid overlay */
.prod-hero::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0,152,253,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,152,253,0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none; z-index: 0;
}

.prod-hero-inner {
  max-width: 1100px; margin: 0 auto; width: 100%;
  display: flex; align-items: center; gap: 5rem;
  justify-content: center;
  position: relative; z-index: 1;
}

.prod-hero-text { flex: 0 1 520px; min-width: 0; }

.prod-hero-visual {
  flex: 0 0 400px;
  display: flex; align-items: center; justify-content: center;
}

.prod-hero-img {
  width: 100%; max-width: 380px;
  filter: drop-shadow(0 30px 70px rgba(0,152,253,0.18));
  animation: fadeUp 1s ease 0.3s both;
}

/* Software placeholder */
.prod-hero-placeholder {
  width: 380px; height: 300px;
  background: linear-gradient(135deg, #060d1e 0%, #0b1830 100%);
  border: 1px solid rgba(0,152,253,0.14);
  border-radius: 14px;
  position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  animation: fadeUp 1s ease 0.3s both;
}
.prod-hero-placeholder::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(0,152,253,0.2) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.5;
}
.prod-hero-placeholder-icon {
  position: relative; z-index: 1;
  width: 72px; height: 72px;
  background: rgba(0,152,253,0.1);
  border: 1px solid rgba(0,152,253,0.2);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
}
.prod-hero-placeholder-icon svg {
  width: 32px; height: 32px;
  stroke: var(--primary); fill: none;
  stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round;
}

/* breadcrumb */
.prod-breadcrumb {
  font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.22);
  margin-bottom: 2rem;
  animation: fadeUp 0.9s ease 0s both;
  display: flex; align-items: center; gap: 0.5rem;
}
.prod-breadcrumb a {
  color: rgba(255,255,255,0.3); text-decoration: none; transition: color 0.2s;
}
.prod-breadcrumb a:hover { color: var(--primary); }

/* badge */
.prod-badge-lg {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(0,152,253,0.08);
  border: 1px solid rgba(0,152,253,0.18);
  border-radius: 100px;
  padding: 0.32rem 0.95rem;
  font-size: 0.68rem; font-weight: 500; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--primary);
  margin-bottom: 1.6rem;
  animation: fadeUp 0.9s ease 0.1s both;
}

/* product title */
.prod-title {
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 700; line-height: 1.04;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
  animation: fadeUp 0.9s ease 0.25s both;
}
.prod-title .grad {
  background: linear-gradient(120deg, #0098FD 0%, #a040d0 45%, #FF488F 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

.prod-tagline {
  font-size: clamp(1rem, 1.8vw, 1.2rem); font-weight: 300;
  color: rgba(255,255,255,0.52); line-height: 1.6;
  margin-bottom: 0.85rem;
  animation: fadeUp 0.9s ease 0.35s both;
}

.prod-hero-desc {
  font-size: 0.9rem; font-weight: 300;
  color: rgba(255,255,255,0.36); line-height: 1.8;
  max-width: 500px; margin-bottom: 2.5rem;
  animation: fadeUp 0.9s ease 0.45s both;
}

.prod-hero-btns {
  display: flex; gap: 1rem; flex-wrap: wrap;
  animation: fadeUp 0.9s ease 0.55s both;
}

/* ── FEATURE GRID ── */
.prod-features-section {
  padding: clamp(5rem, 10vw, 9rem) clamp(1.5rem, 5vw, 4rem);
  background: #000;
}

.prod-feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(0,152,253,0.07);
  border: 1px solid rgba(0,152,253,0.09);
  border-radius: 8px; overflow: hidden;
  margin-top: 3.5rem;
}

.prod-feat-card {
  background: #050810;
  padding: 2.2rem 2rem;
  transition: background 0.3s;
  position: relative; overflow: hidden;
}
.prod-feat-card:hover { background: #07101f; }
.prod-feat-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.35s ease;
}
.prod-feat-card:hover::after { transform: scaleX(1); }

.prod-feat-icon {
  width: 42px; height: 42px;
  background: rgba(0,152,253,0.07);
  border: 1px solid rgba(0,152,253,0.14);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.3rem;
}
.prod-feat-icon svg {
  width: 18px; height: 18px;
  stroke: var(--primary); fill: none;
  stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round;
}

.prod-feat-title {
  font-size: 0.95rem; font-weight: 500;
  margin-bottom: 0.55rem;
}

.prod-feat-desc {
  font-size: 0.84rem; font-weight: 300;
  color: rgba(255,255,255,0.4); line-height: 1.75;
}

/* ── SPECS / DETAIL SECTION ── */
.prod-detail-section {
  padding: clamp(5rem, 10vw, 9rem) clamp(1.5rem, 5vw, 4rem);
}

.prod-detail-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem 5rem; align-items: start;
}

.prod-specs-table {
  width: 100%; border-collapse: collapse;
  margin-top: 2rem;
}
.prod-specs-table tr { border-bottom: 1px solid rgba(255,255,255,0.04); }
.prod-specs-table tr:last-child { border-bottom: none; }
.prod-specs-table td { padding: 0.85rem 0; font-size: 0.87rem; vertical-align: top; }
.prod-specs-table td:first-child {
  font-weight: 300; color: rgba(255,255,255,0.32);
  width: 42%; padding-right: 1rem;
}
.prod-specs-table td:last-child { font-weight: 400; color: rgba(255,255,255,0.78); }

.prod-detail-note {
  font-size: 0.82rem; font-weight: 300;
  color: rgba(255,255,255,0.35); line-height: 1.75;
  margin-top: 2rem;
  padding: 1.2rem 1.4rem;
  background: rgba(0,152,253,0.04);
  border-left: 2px solid rgba(0,152,253,0.3);
}

/* ── USE CASES ── */
.prod-cases-section {
  padding: clamp(5rem, 10vw, 9rem) clamp(1.5rem, 5vw, 4rem);
  background: #000;
}

.prod-cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1px;
  background: rgba(0,152,253,0.07);
  border: 1px solid rgba(0,152,253,0.09);
  border-radius: 8px; overflow: hidden;
  margin-top: 3.5rem;
}

.prod-case-card {
  background: #050810;
  padding: 2rem 1.75rem;
  transition: background 0.3s;
}
.prod-case-card:hover { background: #07101f; }

.prod-case-num {
  font-size: 2rem; font-weight: 700; line-height: 1;
  margin-bottom: 1rem;
  background: linear-gradient(120deg, rgba(0,152,253,0.4), rgba(255,72,143,0.4));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

.prod-case-title {
  font-size: 0.92rem; font-weight: 500; margin-bottom: 0.5rem;
}

.prod-case-desc {
  font-size: 0.82rem; font-weight: 300;
  color: rgba(255,255,255,0.38); line-height: 1.7;
}

/* ── ECOSYSTEM ── */
.prod-eco-section {
  padding: clamp(4rem, 8vw, 7rem) clamp(1.5rem, 5vw, 4rem);
}

.prod-eco-grid {
  display: flex; gap: 1.25rem; flex-wrap: wrap;
  margin-top: 3rem;
}

.prod-eco-card {
  flex: 1; min-width: 200px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  padding: 1.75rem;
  text-decoration: none;
  display: flex; flex-direction: column; gap: 0.6rem;
  transition: border-color 0.3s, background 0.3s, transform 0.3s;
}
.prod-eco-card:hover {
  border-color: rgba(0,152,253,0.28);
  background: rgba(0,152,253,0.04);
  transform: translateY(-3px);
}

.prod-eco-badge {
  font-size: 0.63rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--primary); font-weight: 500;
}

.prod-eco-name {
  font-size: 1.05rem; font-weight: 600; color: var(--white);
}

.prod-eco-desc {
  font-size: 0.79rem; font-weight: 300;
  color: rgba(255,255,255,0.35); line-height: 1.65;
}

.prod-eco-arrow {
  margin-top: auto; padding-top: 0.9rem;
  display: flex; align-items: center; gap: 0.4rem;
  font-size: 0.73rem; color: rgba(0,152,253,0.5);
  transition: gap 0.2s, color 0.2s;
}
.prod-eco-card:hover .prod-eco-arrow { gap: 0.7rem; color: var(--primary); }
.prod-eco-arrow svg {
  width: 12px; height: 12px; stroke: currentColor; fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}

/* ── PRICING ── */
.pricing-section {
  padding: clamp(5rem, 10vw, 8rem) clamp(1.5rem, 5vw, 4rem);
  background: #000;
  position: relative; overflow: hidden;
}
.pricing-inner { max-width: 1100px; margin: 0 auto; position: relative; z-index: 2; }

/* bg: grid pattern */
.pricing-bg-grid {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 70px 80px;
  -webkit-mask-image: radial-gradient(60% 55% at 50% 35%, white 0%, transparent 100%);
  mask-image: radial-gradient(60% 55% at 50% 35%, white 0%, transparent 100%);
}
/* bg: glowing border-blur ellipses (React-style) */
.pricing-bg-ellipse {
  position: absolute; border-radius: 50%;
  pointer-events: none; z-index: 0;
}
.pricing-bg-ellipse--blue {
  left: -35vw; right: -35vw;
  height: 200%;
  top: -90%;
  border: 140px solid rgba(0,152,253,0.09);
  filter: blur(80px);
}
.pricing-bg-ellipse--purple {
  left: 10vw; right: -45vw;
  height: 130%;
  top: -10%;
  border: 120px solid rgba(168,85,247,0.07);
  filter: blur(75px);
}
/* bg: particles canvas — sized/positioned by JS */
#pricing-particles {
  position: absolute; top: 0; left: 0;
  z-index: 1; pointer-events: none;
}
.pricing-header { text-align: center; margin-bottom: 2.5rem; }

/* Toggle */
.pricing-toggle {
  position: relative;
  display: inline-flex; align-items: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 30px; padding: 4px;
  margin-top: 2rem;
}
.ptoggle-indicator {
  position: absolute; top: 4px;
  border-radius: 24px;
  background: rgba(0,152,253,0.18);
  border: 1px solid rgba(0,152,253,0.35);
  box-shadow: 0 0 14px rgba(0,152,253,0.2);
  pointer-events: none;
  transition: left 0.35s cubic-bezier(0.34, 1.4, 0.64, 1), width 0.35s cubic-bezier(0.34, 1.4, 0.64, 1);
}
.ptoggle-btn {
  position: relative; z-index: 1;
  padding: 0.45rem 1.25rem;
  border-radius: 24px; border: none;
  font-family: inherit; font-size: 0.78rem; font-weight: 500;
  cursor: pointer; color: rgba(255,255,255,0.45);
  background: transparent;
  transition: color 0.25s;
  display: flex; align-items: center; gap: 0.5rem;
}
.ptoggle-btn.active { color: var(--primary); }
.ptoggle-save {
  font-size: 0.6rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--secondary); background: rgba(255,72,143,0.1);
  border: 1px solid rgba(255,72,143,0.2);
  padding: 0.1rem 0.4rem; border-radius: 20px;
}

/* number-flow web component */
number-flow.pricing-num-flow {
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  color: inherit;
  line-height: 1;
  vertical-align: baseline;
  --number-flow-char-height: 0.85em;
  --number-flow-mask-height: 0.2em;
}
.pricing-period {
  display: inline-block;
  vertical-align: bottom;
  will-change: opacity;
}

/* Grid */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 14px; overflow: hidden;
  margin-top: 3rem;
}

/* Card */
.pricing-card {
  background: #050810;
  padding: 2rem 1.75rem;
  display: flex; flex-direction: column;
  position: relative;
  transition: background 0.3s;
}
.pricing-card:hover { background: #07101a; }

.pricing-card--starter  { border-top: 2px solid rgba(0,152,253,0.6); }
.pricing-card--pro    { border-top: 2px solid rgba(0,152,253,0.9); background: #060c16; }
.pricing-card--enterprise { border-top: 2px solid rgba(168,85,247,0.6); }

.pricing-popular-badge {
  position: absolute; top: -1px; left: 50%; transform: translateX(-50%);
  font-size: 0.58rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--primary); background: rgba(0,152,253,0.12);
  border: 1px solid rgba(0,152,253,0.3);
  padding: 0.2rem 0.75rem; border-radius: 0 0 8px 8px;
  white-space: nowrap;
}

.pricing-tier {
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.22em;
  text-transform: uppercase; margin-bottom: 1rem;
}
.pricing-card:not([class*="--"]) .pricing-tier { color: rgba(255,255,255,0.35); }
.pricing-card--starter  .pricing-tier { color: var(--primary); }
.pricing-card--pro    .pricing-tier { color: var(--primary); }
.pricing-card--enterprise .pricing-tier { color: #a855f7; }

.pricing-price {
  margin-bottom: 0.35rem; line-height: 1;
}
.pricing-amount {
  font-size: clamp(2.2rem, 4vw, 3rem); font-weight: 700; letter-spacing: -0.04em;
  display: inline-flex; align-items: baseline; gap: 0.15rem;
}
.pricing-card:not([class*="--"]) .pricing-amount { color: rgba(255,255,255,0.9); }
.pricing-card--starter  .pricing-amount { color: var(--primary); }
.pricing-card--pro    .pricing-amount { color: var(--primary); }
.pricing-card--enterprise .pricing-amount { color: #a855f7; }

.pricing-currency { 
  font-size: 1.1rem; font-weight: 500; align-self: flex-start; margin-top: 0.4em; 
  background: linear-gradient(135deg, #0098fd 0%, rgba(var(--hwa,130,0,180),1) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.pricing-period {
  font-size: 0.72rem; font-weight: 400;
  color: rgba(255,255,255,0.3); margin-left: 0.2rem;
  align-self: flex-end; padding-bottom: 0.25em;
}
.pricing-subtitle {
  font-size: 0.75rem; font-weight: 400;
  color: rgba(255,255,255,0.32); margin-bottom: 1.5rem; line-height: 1.4;
}


/* CTA button */
.pricing-btn {
  display: block; width: 100%; padding: 0.65rem 1rem;
  border-radius: 6px; border: none;
  font-family: inherit; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; text-align: center; text-decoration: none;
  cursor: pointer; margin-bottom: 1.5rem;
  transition: background 0.3s, border-color 0.3s, box-shadow 0.3s, transform 0.2s, color 0.2s;
}
.pricing-btn:hover { transform: translateY(-2px); }

/* Free */
.pricing-card:not([class*="--"]) .pricing-btn {
  background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.65);
  border: 1px solid rgba(255,255,255,0.1);
}
.pricing-card:not([class*="--"]) .pricing-btn:hover {
  background: linear-gradient(135deg, rgba(255,255,255,0.12) 0%, rgba(255,255,255,0.04) 100%);
  border-color: rgba(255,255,255,0.22);
  box-shadow: 0 4px 18px rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.85);
}

/* Starter */
.pricing-card--starter .pricing-btn {
  background: rgba(0,152,253,0.14); color: var(--primary);
  border: 1px solid rgba(0,152,253,0.3);
}
.pricing-card--starter .pricing-btn:hover {
  background: linear-gradient(135deg, rgba(0,152,253,0.32) 0%, rgba(0,152,253,0.12) 100%);
  border-color: rgba(0,152,253,0.55);
  box-shadow: 0 4px 22px rgba(0,152,253,0.22), inset 0 1px 0 rgba(0,152,253,0.18);
}

/* Pro */
.pricing-card--pro .pricing-btn {
  background: var(--primary); color: #000;
  border: 1px solid transparent;
}
.pricing-card--pro .pricing-btn:hover {
  background: linear-gradient(135deg, #3db8ff 0%, #0078d4 100%);
  box-shadow: 0 6px 28px rgba(0,152,253,0.5), 0 1px 0 rgba(255,255,255,0.15) inset;
  border-color: transparent;
}

/* Enterprise */
.pricing-card--enterprise .pricing-btn {
  background: rgba(168,85,247,0.12); color: #a855f7;
  border: 1px solid rgba(168,85,247,0.28);
}
.pricing-card--enterprise .pricing-btn:hover {
  background: linear-gradient(135deg, rgba(168,85,247,0.32) 0%, rgba(168,85,247,0.12) 100%);
  border-color: rgba(168,85,247,0.55);
  box-shadow: 0 4px 22px rgba(168,85,247,0.25), inset 0 1px 0 rgba(168,85,247,0.18);
}

/* Features */
.pricing-features {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 1.25rem;
  flex: 1;
}
.pricing-features-label {
  font-size: 0.65rem; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(255,255,255,0.28);
  margin-bottom: 0.9rem;
}
.pricing-feature-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 0.55rem;
}
.pricing-feature-list li {
  display: flex; align-items: flex-start; gap: 0.6rem;
  font-size: 0.8rem; font-weight: 300;
  color: rgba(255,255,255,0.48); line-height: 1.5;
}
.pricing-feature-list li::before {
  content: '';
  width: 4px; height: 4px; border-radius: 50%;
  flex-shrink: 0; margin-top: 0.55em;
}
.pricing-card:not([class*="--"]) .pricing-feature-list li::before { background: rgba(255,255,255,0.25); }
.pricing-card--starter  .pricing-feature-list li::before { background: rgba(0,152,253,0.6); }
.pricing-card--pro    .pricing-feature-list li::before { background: var(--primary); }
.pricing-card--enterprise .pricing-feature-list li::before { background: rgba(168,85,247,0.7); }

/* ── PRICING FOOTNOTE ── */
.pricing-footnote {
  margin-top: 1.25rem;
  font-size: 0.68rem; font-weight: 300;
  color: rgba(255,255,255,0.22);
  line-height: 1.6;
}

/* ── CLOUD COST CALCULATOR ── */
.pricing-calc {
  margin-top: 3rem;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 12px;
  background: rgba(255,255,255,0.018);
  overflow: hidden;
}

.pricing-calc-header {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1.75rem 2rem 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.pricing-calc-icon {
  width: 22px; height: 22px; flex-shrink: 0;
  stroke: var(--primary); margin-top: 0.1rem;
}
.pricing-calc-title {
  font-size: 0.88rem; font-weight: 600; letter-spacing: -0.01em;
  margin-bottom: 0.2rem;
}
.pricing-calc-desc {
  font-size: 0.75rem; font-weight: 300;
  color: rgba(255,255,255,0.35); line-height: 1.5;
}

.pricing-calc-body {
  display: grid; grid-template-columns: 1fr 260px;
  gap: 0;
}

/* Sliders column */
.pricing-calc-sliders {
  padding: 1.75rem 2rem;
  border-right: 1px solid rgba(255,255,255,0.06);
  display: flex; flex-direction: column; gap: 1.75rem;
}
.pricing-calc-row { display: flex; flex-direction: column; gap: 0.65rem; }
.pricing-calc-row-label {
  display: flex; justify-content: space-between; align-items: baseline;
  font-size: 0.75rem; font-weight: 400;
  color: rgba(255,255,255,0.45);
}
.pricing-calc-val {
  font-size: 0.72rem; font-weight: 600;
  color: var(--primary);
}

/* Range slider */
.pricing-calc-slider {
  -webkit-appearance: none; appearance: none;
  width: 100%; height: 2px;
  border-radius: 2px; outline: none; cursor: pointer;
  background: rgba(255,255,255,0.1); /* overridden by JS fill */
  transition: opacity 0.2s;
}
.pricing-calc-slider:hover { opacity: 0.9; }
.pricing-calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 3px rgba(0,152,253,0.18), 0 0 10px rgba(0,152,253,0.35);
  cursor: pointer; transition: box-shadow 0.2s, transform 0.2s;
}
.pricing-calc-slider::-webkit-slider-thumb:hover {
  box-shadow: 0 0 0 5px rgba(0,152,253,0.22), 0 0 16px rgba(0,152,253,0.45);
  transform: scale(1.1);
}
.pricing-calc-slider::-moz-range-thumb {
  width: 14px; height: 14px; border-radius: 50%; border: none;
  background: var(--primary);
  box-shadow: 0 0 10px rgba(0,152,253,0.35);
  cursor: pointer;
}

/* Tick marks */
.pricing-calc-ticks {
  position: relative;
  height: 8px;
  margin: 3px 7px 0; /* 7px = half thumb width, aligns ticks with track endpoints */
}
.pricing-calc-tick {
  position: absolute;
  top: 0;
  width: 1px; height: 5px;
  background: rgba(255,255,255,0.14);
  transform: translateX(-50%);
  border-radius: 1px;
  transition: background 0.2s, height 0.15s;
}
.pricing-calc-tick.active {
  background: rgba(0,152,253,0.55);
  height: 5px;
}
/* First and last ticks slightly taller as range markers */
.pricing-calc-tick:first-child,
.pricing-calc-tick:last-child {
  height: 7px;
}

/* Result column */
.pricing-calc-result {
  padding: 1.75rem 1.75rem;
  display: flex; flex-direction: column; justify-content: center;
  background: rgba(0,152,253,0.03);
  gap: 0.6rem;
}
.pricing-calc-result-label {
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: rgba(255,255,255,0.3);
}
.pricing-calc-result-amount {
  display: flex; align-items: baseline; gap: 0.1rem;
  font-weight: 700; letter-spacing: -0.03em;
  color: var(--primary);
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  line-height: 1;
}
.pricing-calc-result-sym { font-size: 1rem; font-weight: 500; align-self: flex-start; margin-top: 0.35em; }
.pricing-calc-result-period {
  font-size: 0.7rem; font-weight: 400;
  color: rgba(255,255,255,0.3); align-self: flex-end; padding-bottom: 0.2em;
}
#calc-result-flow {
  font-size: inherit; font-weight: inherit;
  letter-spacing: inherit; color: inherit; line-height: 1;
  --number-flow-char-height: 0.85em;
  --number-flow-mask-height: 0.2em;
}
.pricing-calc-result-note {
  font-size: 0.65rem; font-weight: 300;
  color: rgba(255,255,255,0.22); line-height: 1.5;
}
.pricing-calc-cta {
  margin-top: 0.5rem;
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.04em;
  color: var(--primary); text-decoration: none;
  transition: opacity 0.2s;
}
.pricing-calc-cta:hover { opacity: 0.7; }

/* Responsive */
@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-calc-body { grid-template-columns: 1fr; }
  .pricing-calc-sliders { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); }
}
@media (max-width: 540px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-calc-header { padding: 1.25rem 1.25rem 1rem; }
  .pricing-calc-sliders { padding: 1.25rem; }
  .pricing-calc-result { padding: 1.25rem; }
}

/* ══════════════════════════════════════════
   HARDWARE ORDER SECTION
   --hwa: RGB triplet for accent, e.g. "130,0,180"
══════════════════════════════════════════ */
.hw-order-section {
  padding: clamp(5rem,10vw,8rem) clamp(1.5rem,5vw,4rem);
  background:
    radial-gradient(ellipse 70% 55% at 8% 45%, rgba(0,152,253,0.07) 0%, transparent 65%),
    radial-gradient(ellipse 55% 50% at 92% 60%, rgba(var(--hwa,130,0,180),0.08) 0%, transparent 65%),
    #000;
  position: relative;
}
.hw-order-layout {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 360px;
  gap: 4rem; align-items: start;
}

/* ── Left: info column ── */
.hw-order-header { margin-bottom: 2.5rem; }
.hw-order-header .eyebrow { justify-content: flex-start; margin-bottom: 0.75rem; }
.hw-order-header .sec-title { text-align: left; }
.hw-order-header .sec-desc { text-align: left; margin: 0.75rem 0 0; }
.hw-order-block { margin-bottom: 2.5rem; }
.hw-order-block:last-child { margin-bottom: 0; }
.hw-order-block-title {
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: rgba(255,255,255,0.3);
  margin-bottom: 1.1rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.hw-order-includes {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 0.65rem;
}
.hw-order-includes li {
  display: flex; align-items: center; gap: 0.75rem;
  font-size: 0.875rem; font-weight: 300;
  color: rgba(255,255,255,0.55); line-height: 1.4;
}
.hw-order-includes li::before {
  content: '';
  flex-shrink: 0;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(0,152,253,0.18) 0%, rgba(var(--hwa,130,0,180),0.18) 100%);
  border: 1px solid rgba(0,152,253,0.3);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='none' stroke='rgba(255,255,255,0.8)' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='2 6 5 9 10 3'/%3E%3C/svg%3E");
  background-size: 10px; background-position: center; background-repeat: no-repeat;
}

.hw-order-delivery {
  display: flex; flex-direction: column; gap: 1rem;
}
.hw-delivery-row {
  display: flex; align-items: flex-start; gap: 0.9rem;
}
.hw-delivery-icon {
  flex-shrink: 0; width: 18px; height: 18px; margin-top: 0.1rem;
  stroke: rgba(0,152,253,0.75); fill: none;
  stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round;
}
.hw-delivery-key {
  font-size: 0.75rem; font-weight: 500;
  color: rgba(255,255,255,0.65); margin-bottom: 0.1rem;
}
.hw-delivery-val {
  font-size: 0.75rem; font-weight: 300;
  color: rgba(255,255,255,0.35);
}

/* ── Right: order card column ── */
.hw-order-card-col {
  position: sticky; top: 80px;
  display: flex; flex-direction: column; gap: 0;
}
.hw-order-product-img {
  width: 100%; max-height: 220px;
  object-fit: contain; object-position: center bottom;
  display: block;
  filter: drop-shadow(0 0 28px rgba(var(--hwa,0,152,253),0.22));
  mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 55%, rgba(0,0,0,0) 100%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,1) 55%, rgba(0,0,0,0) 100%);
}
.hw-order-card {
  border: 2px solid rgba(255,255,255,0.08);
  border-radius: 10px 10px 10px 10px; padding: 1.75rem;
  background: linear-gradient(160deg, rgba(0,152,253,0.04) 0%, rgba(var(--hwa,130,0,180),0.03) 100%);
  display: flex; flex-direction: column; gap: 1.25rem;
  overflow: hidden; position: relative;
}
.hw-order-card-badge {
  font-size: 0.58rem; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: rgba(var(--hwa,0,152,253),0.7);
  margin-bottom: -0.75rem;
}
.hw-order-card-name {
  font-size: 1.2rem; font-weight: 700; letter-spacing: -0.02em;
}
.hw-order-price-from {
  font-size: 0.72rem; font-weight: 400;
  color: rgba(255,255,255,0.35);
  padding: 0.5rem 0.85rem;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.07);
  background: rgba(255,255,255,0.03);
  display: block; text-align: center;
}

/* Qty */
.hw-order-field-label {
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(255,255,255,0.4);
  display: block; margin-bottom: 0.6rem;
}
.hw-qty-ctrl {
  display: flex; align-items: center;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 7px; overflow: hidden;
  background: rgba(255,255,255,0.03);
}
.hw-qty-btn {
  width: 38px; height: 36px;
  border: none; background: transparent;
  font-family: inherit; font-size: 1.1rem; font-weight: 300;
  color: rgba(255,255,255,0.55); cursor: pointer;
  transition: background 0.2s, color 0.2s;
  display: flex; align-items: center; justify-content: center;
}
.hw-qty-btn:hover {
  background: rgba(var(--hwa,0,152,253),0.12);
  color: rgba(255,255,255,0.9);
}
.hw-qty-btn:disabled {
  opacity: 0.25; cursor: not-allowed;
}
.hw-qty-val {
  flex: 1; text-align: center;
  font-size: 0.9rem; font-weight: 500;
  color: rgba(255,255,255,0.85);
  border-left: 1px solid rgba(255,255,255,0.07);
  border-right: 1px solid rgba(255,255,255,0.07);
  padding: 0.45rem 0;
  min-width: 44px;
}
.hw-qty-note {
  font-size: 0.65rem; font-weight: 300;
  color: rgba(var(--hwa,0,152,253),0.65);
  margin-top: 0.4rem;
}

.hw-rent-total {
  font-size: 0.72rem; font-weight: 400;
  color: rgba(0,152,253,0.85);
  line-height: 1.6;
  padding: 0.35rem 0.6rem;
  background: rgba(0,152,253,0.08);
  border-left: 2px solid rgba(0,152,253,0.4);
  border-radius: 0 4px 4px 0;
  margin-top: 0.35rem;
  animation: fadeIn 0.2s ease;
}
.hw-rent-total strong {
  color: #fff;
  font-weight: 600;
}

.hw-rent-weeks {
  display: flex; flex-direction: column; gap: 0.4rem;
  padding-top: 0.25rem;
  animation: fadeIn 0.2s ease;
}
@keyframes fadeIn { from { opacity: 0; transform: translateY(-4px); } to { opacity: 1; transform: none; } }

/* Config radio options */
.hw-config-opts {
  display: flex; flex-direction: column; gap: 0.55rem;
}
.hw-config-opt {
  display: flex; align-items: flex-start; gap: 0.75rem;
  cursor: pointer;
  padding: 0.75rem 0.9rem;
  border-radius: 7px; border: 1px solid rgba(255,255,255,0.07);
  background: rgba(255,255,255,0.02);
  transition: border-color 0.2s, background 0.2s;
}
.hw-config-opt:has(input:checked) {
  border-color: rgba(var(--hwa,0,152,253),0.4);
  background: rgba(var(--hwa,0,152,253),0.06);
}
.hw-config-opt input[type="radio"] { display: none; }
.hw-config-radio {
  flex-shrink: 0; margin-top: 0.2rem;
  width: 14px; height: 14px; border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.2);
  background: transparent;
  display: flex; align-items: center; justify-content: center;
  transition: border-color 0.2s;
}
.hw-config-opt:has(input:checked) .hw-config-radio {
  border-color: rgba(var(--hwa,0,152,253),0.8);
  background: rgba(var(--hwa,0,152,253),0.15);
}
.hw-config-radio::after {
  content: '';
  width: 6px; height: 6px; border-radius: 50%;
  background: transparent;
  transition: background 0.2s;
}
.hw-config-opt:has(input:checked) .hw-config-radio::after {
  background: rgba(var(--hwa,0,152,253),1);
}
.hw-config-opt-name {
  font-size: 0.82rem; font-weight: 500;
  color: rgba(255,255,255,0.75);
  display: block; margin-bottom: 0.15rem;
}
.hw-config-opt-spec {
  font-size: 0.68rem; font-weight: 300;
  color: rgba(255,255,255,0.32);
}

/* ── Buy / Rent toggle ── */
.hw-order-toggle {
  position: relative;
  display: flex; align-items: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px; padding: 3px;
  width: 100%;
}
.hw-toggle-indicator {
  position: absolute; top: 3px;
  border-radius: 6px;
  background: rgba(var(--hwa,0,152,253),0.18);
  border: 1px solid rgba(var(--hwa,0,152,253),0.4);
  box-shadow: 0 0 12px rgba(var(--hwa,0,152,253),0.18);
  pointer-events: none;
  transition: left 0.35s cubic-bezier(0.34,1.4,0.64,1), width 0.35s cubic-bezier(0.34,1.4,0.64,1);
}
.hw-toggle-btn {
  position: relative; z-index: 1;
  flex: 1; padding: 0.5rem 1rem;
  border-radius: 6px; border: none;
  font-family: inherit; font-size: 0.8rem; font-weight: 600;
  cursor: pointer; color: rgba(255,255,255,0.38);
  background: transparent; text-align: center;
  letter-spacing: 0.04em;
  transition: color 0.25s;
}
.hw-toggle-btn.active { color: rgba(var(--hwa,0,152,253),1); }

/* ── Animated price display ── */
.hw-price-display {
  display: flex; align-items: baseline; gap: 0.1rem;
  font-weight: 700; letter-spacing: -0.04em;
  font-size: clamp(2rem, 3.5vw, 2.8rem); line-height: 1;
}
.hw-price-sym {
  font-size: 1rem; font-weight: 500;
  align-self: flex-start; margin-top: 0.4em;
  background: linear-gradient(135deg, #0098fd 0%, rgba(var(--hwa,130,0,180),1) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hw-price-flow {
  font-size: inherit; font-weight: inherit;
  letter-spacing: inherit; line-height: 1;
  color: #0098fd;
  --number-flow-char-height: 0.85em;
  --number-flow-mask-height: 0.2em;
}
.hw-price-period {
  font-size: 0.8rem; font-weight: 500;
  color: #ffffff;
  letter-spacing: 0.02em;
  align-self: flex-end; padding-bottom: 0.18em;
  margin-left: 0.25rem;
  transition: opacity 0.2s;
}

/* Divider inside card */
.hw-order-card-divider {
  border: none; border-top: 1px solid rgba(255,255,255,0.07);
  margin: 0;
}

/* Buttons */
.hw-order-btn-primary {
  display: block; width: 100%; padding: 0.8rem 1rem;
  border-radius: 7px; border: none; text-align: center;
  font-family: inherit; font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  text-decoration: none; cursor: pointer; color: #fff;
  background: linear-gradient(135deg, #0098fd 0%, #8200b4 55%, #ff488f 100%);
  background-size: 200% 200%; background-position: 0% 50%;
  transition: background-position 0.45s ease, transform 0.2s, box-shadow 0.25s;
}
.hw-order-btn-primary:hover {
  background-position: 100% 50%;
  transform: translateY(-1px);
  box-shadow: 0 6px 28px rgba(130,0,180,0.45), 0 1px 0 rgba(255,255,255,0.12) inset;
}
.hw-order-btn-ghost {
  display: block; width: 100%; padding: 0.7rem 1rem;
  border-radius: 7px; border: 1px solid rgba(255,255,255,0.1);
  text-align: center; font-family: inherit; font-size: 0.78rem;
  font-weight: 500; letter-spacing: 0.05em;
  text-decoration: none; cursor: pointer;
  color: rgba(255,255,255,0.45); background: transparent;
  transition: border-color 0.2s, color 0.2s;
}
.hw-order-btn-ghost:hover {
  border-color: rgba(255,255,255,0.22);
  color: rgba(255,255,255,0.75);
}

/* Responsive */
@media (max-width: 900px) {
  .hw-order-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .hw-order-card-col { position: static; }
  .hw-order-product-img { max-height: 180px; }
}

/* ── PRODUCT CTA ── */
.prod-cta-section {
  padding: clamp(5rem, 10vw, 9rem) clamp(1.5rem, 5vw, 4rem);
  text-align: center;
  background: radial-gradient(ellipse at 50% 100%, rgba(0,152,253,0.06) 0%, transparent 65%);
  border-top: 1px solid rgba(0,152,253,0.07);
}
.prod-cta-section .sec-desc { margin: 0 auto 2.5rem; }
.prod-cta-section .hero-btns { justify-content: center; }

/* ══════════════════════════════════════════
   PRODUCT CONFIGURATOR (HoloStudio)
══════════════════════════════════════════ */
.prod-config-layout {
  max-width: 1100px; margin: 2.5rem auto 0;
  display: grid; grid-template-columns: 1fr 320px;
  gap: 4rem; align-items: start;
}
.prod-config-block { margin-bottom: 2rem; }
.prod-config-block-title {
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: rgba(255,255,255,0.3);
  margin-bottom: 0.9rem; padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.prod-config-opts { display: flex; flex-direction: column; gap: 0.5rem; }
.prod-config-opts--row { flex-direction: row; flex-wrap: wrap; }
.prod-config-opts--row .prod-config-opt { flex: 1; min-width: 160px; }
.prod-config-opt {
  display: flex; align-items: center; gap: 0.85rem;
  padding: 0.75rem 1rem; border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.07);
  background: rgba(255,255,255,0.02);
  cursor: pointer; transition: border-color 0.2s, background 0.2s;
}
.prod-config-opt input { display: none; }
.prod-config-opt-indicator {
  width: 14px; height: 14px; border-radius: 50%; flex-shrink: 0;
  border: 1.5px solid rgba(255,255,255,0.2);
  transition: border-color 0.2s, background 0.2s, border-width 0.15s;
}
.prod-config-opt-check { border-radius: 4px; }
.prod-config-opt-body { flex: 1; }
.prod-config-opt-name {
  display: block; font-size: 0.82rem; font-weight: 500;
  color: rgba(255,255,255,0.65); transition: color 0.2s;
}
.prod-config-opt-spec {
  display: block; font-size: 0.7rem; font-weight: 300;
  color: rgba(255,255,255,0.28); margin-top: 0.15rem;
}
.prod-config-opt-price {
  font-size: 0.72rem; font-weight: 500;
  color: rgba(255,255,255,0.3); white-space: nowrap;
  transition: color 0.2s;
}
.prod-config-opt:has(input:checked) {
  border-color: rgba(0,152,253,0.45);
  background: rgba(0,152,253,0.06);
}
.prod-config-opt:has(input:checked) .prod-config-opt-indicator {
  border-color: #0098fd; border-width: 4px;
}
.prod-config-opt:has(input:checked) .prod-config-opt-check {
  border-color: #0098fd; border-width: 1.5px;
  background: #0098fd url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='none' stroke='white' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='2 6 5 9 10 3'/%3E%3C/svg%3E") center/9px no-repeat;
}
.prod-config-opt:has(input:checked) .prod-config-opt-name { color: rgba(255,255,255,0.95); }
.prod-config-opt:has(input:checked) .prod-config-opt-price { color: rgba(0,152,253,0.85); }
.prod-config-opt:hover:not(:has(input:checked)) {
  border-color: rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.035);
}

/* Billing toggle */
.prod-config-billing-toggle {
  position: relative; display: inline-flex;
  background: rgba(255,255,255,0.04); border-radius: 8px; padding: 3px;
  border: 1px solid rgba(255,255,255,0.07);
}
.prod-cfg-indicator {
  position: absolute; top: 3px;
  background: rgba(0,152,253,0.18); border-radius: 6px; z-index: 0;
  transition: left 0.35s cubic-bezier(0.34,1.4,0.64,1), width 0.35s cubic-bezier(0.34,1.4,0.64,1), height 0.35s;
}
.prod-cfg-toggle-btn {
  position: relative; z-index: 1;
  padding: 0.45rem 1.1rem; border-radius: 6px; border: none;
  background: transparent; color: rgba(255,255,255,0.4);
  font-family: inherit; font-size: 0.78rem; font-weight: 500;
  cursor: pointer; white-space: nowrap; transition: color 0.25s;
}
.prod-cfg-toggle-btn.active { color: #0098fd; }

/* Summary card */
.prod-config-summary-col { position: sticky; top: 80px; }
.prod-config-summary {
  border: 1px solid rgba(255,255,255,0.08); border-top: none;
  border-radius: 0 0 10px 10px; padding: 1.5rem;
  background: linear-gradient(160deg, rgba(0,152,253,0.04) 0%, rgba(130,0,180,0.03) 100%);
  display: flex; flex-direction: column; gap: 1rem;
  overflow: hidden; position: relative;
}
.prod-config-summary::before {
  content: ''; position: absolute; inset: 0 0 auto;
  height: 2px;
  background: linear-gradient(90deg, #0098fd 0%, rgba(130,0,180,1) 100%);
}
.prod-config-summary-badge {
  font-size: 0.58rem; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: rgba(0,152,253,0.7); margin-bottom: -0.4rem;
}
.prod-config-summary-name { font-size: 1.1rem; font-weight: 700; letter-spacing: -0.02em; }
.prod-config-line-items {
  display: flex; flex-direction: column; gap: 0.55rem;
  padding-top: 0.75rem; border-top: 1px solid rgba(255,255,255,0.06);
}
.prod-config-line {
  display: flex; justify-content: space-between; align-items: baseline;
  font-size: 0.77rem;
}
.prod-config-line-label { color: rgba(255,255,255,0.45); }
.prod-config-line-val { color: rgba(255,255,255,0.7); font-weight: 500; }
.prod-config-line.is-addon .prod-config-line-label { color: rgba(0,152,253,0.6); }
.prod-config-line.is-addon .prod-config-line-val { color: rgba(0,152,253,0.85); }
.prod-config-line.is-discount .prod-config-line-label { color: rgba(100,220,120,0.7); }
.prod-config-line.is-discount .prod-config-line-val { color: rgba(100,220,120,0.9); }
.prod-config-total {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 0.75rem; border-top: 1px solid rgba(255,255,255,0.07);
}
.prod-config-total-label {
  font-size: 0.7rem; font-weight: 500; letter-spacing: 0.07em;
  text-transform: uppercase; color: rgba(255,255,255,0.35);
}
.prod-config-total-price {
  display: flex; align-items: baseline; gap: 0.1rem;
  font-weight: 700; letter-spacing: -0.03em; font-size: 1.6rem;
}
.prod-config-total-sym {
  font-size: 1rem; font-weight: 500; align-self: flex-start; margin-top: 0.3em;
  background: linear-gradient(135deg, #0098fd 0%, rgba(130,0,180,1) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.prod-config-total-flow {
  color: #0098fd;
  --number-flow-char-height: 0.85em; --number-flow-mask-height: 0.2em;
}
.prod-config-enterprise {
  padding: 0.75rem 0.9rem; border-radius: 7px;
  background: rgba(255,255,255,0.025); border: 1px solid rgba(255,255,255,0.06);
  font-size: 0.77rem; color: rgba(255,255,255,0.45); line-height: 1.55;
}
@media (max-width: 900px) {
  .prod-config-layout { grid-template-columns: 1fr; gap: 2rem; }
  .prod-config-summary-col { position: static; }
}

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .prod-hero-inner { flex-direction: column; gap: 3rem; text-align: center; }
  .prod-hero-desc { margin-left: auto; margin-right: auto; }
  .prod-hero-btns { justify-content: center; }
  .prod-breadcrumb { justify-content: center; }
  .prod-hero-visual { order: -1; }
  .prod-hero-placeholder { width: 300px; height: 220px; }
  .prod-detail-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .prod-feat-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .prod-feat-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .prod-eco-grid { flex-direction: column; }
}
