/* ───────────────────────────────────────────────
   BIMINI CONFIGURATOR — layout & UI
   ─────────────────────────────────────────────── */

/* iOS Safari ignores overflow-x: hidden in some cases when a descendant has
   its own horizontal scroll. `overflow-x: clip` is stricter (no scroll
   container, no overscroll). Both are listed for older Safari fallback.
   max-width: 100% prevents the document being made wider than the viewport
   by any positioned/transformed descendant. */
html, body {
  overflow-x: hidden;
  overflow-x: clip;
  max-width: 100%;
  position: relative;
}
body {
  background: #0a0f1a;
  color: #fff;
  /* Allow vertical scroll + pinch-zoom but BLOCK horizontal panning gestures.
     Inner horizontal scroll containers (e.g. .cfg-tech-videos) explicitly
     opt back in with their own touch-action below. */
  touch-action: pan-y pinch-zoom;
}
/* Footer's Bootstrap rows have negative -12px gutters that overflow the
   container on narrow viewports. Zero them out here. */
#main-footer .row {
  --bs-gutter-x: 0;
  margin-left: 0;
  margin-right: 0;
}
#main-footer { overflow-x: hidden; }
/* Re-enable horizontal swipe on the intentional scroll container (process-step
   video cards). The body's pan-y blocks horizontal touch gestures globally;
   this opts that one container back in. */
.cfg-tech-videos { touch-action: pan-x; }
/* The 3D canvas already has touch-action: none for OrbitControls — leave it. */

/* Info button — sits next to the field title, replaces inline help on mobile. */
.cfg-info-btn {
  display: none;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  margin-left: 8px;
  padding: 0;
  font-family: 'Times New Roman', serif;
  font-size: 0.78rem;
  font-style: italic;
  font-weight: 700;
  line-height: 1;
  color: rgba(255,255,255,0.65);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 50%;
  cursor: pointer;
  vertical-align: middle;
  transition: color 0.18s, background 0.18s, border-color 0.18s;
  flex-shrink: 0;
}
.cfg-info-btn:hover,
.cfg-info-btn[aria-expanded="true"] {
  color: #38bdf8;
  background: rgba(56,189,248,0.12);
  border-color: rgba(56,189,248,0.45);
}
.cfg-field-help--open {
  background: rgba(56,189,248,0.08);
  border-left: 2px solid rgba(56,189,248,0.55);
  padding: 8px 12px;
  margin-top: 6px;
  border-radius: 0 6px 6px 0;
  color: rgba(255,255,255,0.78);
}

@media (max-width: 900px) {
  .cfg-info-btn { display: inline-flex; }
  .cfg-field-help {
    display: none;
  }
  .cfg-field-help.cfg-field-help--open {
    display: block;
  }
}

/* Hero */
.cfg-hero {
  padding: 110px 20px 30px;
  background: radial-gradient(ellipse at top, #15213a 0%, #0a0f1a 65%);
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.cfg-hero-inner { max-width: 860px; margin: 0 auto; }
.cfg-title {
  font-size: clamp(1.9rem, 5vw, 2.7rem);
  font-weight: 800;
  letter-spacing: 0.08em;
  margin: 0 0 0.8rem;
}
.cfg-subtitle {
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  line-height: 1.55;
  margin: 0 auto;
  max-width: 720px;
}

/* App grid */
.cfg-app {
  padding: 24px 16px 60px;
  max-width: 1400px;
  margin: 0 auto;
}
.cfg-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
}
@media (max-width: 900px) {
  .cfg-grid { grid-template-columns: 1fr; }
  .cfg-hero { padding-top: 100px; }
}

/* 3D viewport */
.cfg-viewport {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 520px;
}
.three-canvas-wrap {
  position: relative;
  flex: 1;
  border-radius: 14px;
  overflow: hidden;
  background: linear-gradient(180deg, #10192e 0%, #07101f 100%);
  border: 1px solid rgba(255,255,255,0.08);
  min-height: 520px;
}
@media (max-width: 900px) {
  .three-canvas-wrap { min-height: 400px; }
  /* On mobile the controls panel sits BELOW the canvas, so put the camera-view
     buttons ABOVE the canvas — keeps the renderer immediately adjacent to the
     sliders for real-time visual feedback while configuring. */
  .cfg-view-buttons { order: 1; }
  .three-canvas-wrap { order: 2; }
  .cfg-disclaimer    { order: 3; }
}
#three-canvas {
  display: block;
  width: 100% !important;
  height: 100% !important;
  touch-action: none;
}

.cfg-logo-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  width: 80px;
  opacity: 0.8;
  pointer-events: none;
  z-index: 2;
  filter: brightness(0) invert(1);
}
.cfg-brand-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 96px;
  opacity: 0.7;
  pointer-events: none;
  z-index: 2;
}
.cfg-dims-badge {
  display: none;
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(10,15,26,0.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border: 1px solid rgba(255,255,255,0.12);
  color: #fff;
  pointer-events: none;
  z-index: 2;
}
.cfg-loader {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  z-index: 3;
  transition: opacity 0.25s;
}
.cfg-loader.hidden { opacity: 0; pointer-events: none; }
.cfg-spinner {
  width: 22px; height: 22px;
  border: 2px solid rgba(255,255,255,0.18);
  border-top-color: #0ea5e9;
  border-radius: 50%;
  animation: cfg-spin 0.9s linear infinite;
}
@keyframes cfg-spin { to { transform: rotate(360deg); } }

.cfg-view-buttons {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: center;
}
.cfg-view-btn {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.75);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.cfg-view-btn:hover {
  background: rgba(255,255,255,0.12);
  color: #fff;
}
.cfg-view-btn.active {
  background: #0ea5e9;
  border-color: #0ea5e9;
  color: #fff;
}
/* Toggle styled like a view button — blue chip when active, neutral when not. */
.cfg-dim-toggle {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  margin-left: 6px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  color: rgba(255,255,255,0.75);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  cursor: pointer;
  user-select: none;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.cfg-dim-toggle:hover { background: rgba(255,255,255,0.12); color: #fff; }
/* Hide the native checkbox — the wrapper itself becomes the visual control */
.cfg-dim-toggle input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 0;
  height: 0;
  margin: 0;
}
/* Active state mirrors .cfg-view-btn.active */
.cfg-dim-toggle:has(input:checked) {
  background: #0ea5e9;
  border-color: #0ea5e9;
  color: #fff;
}

/* Subtle "this is a preview" disclaimer below the view controls */
.cfg-disclaimer {
  margin: 12px auto 0;
  max-width: 640px;
  text-align: center;
  font-size: 0.78rem;
  line-height: 1.45;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.01em;
}
.cfg-disclaimer span {
  display: inline-block;
  width: 14px;
  height: 14px;
  line-height: 14px;
  text-align: center;
  margin-right: 4px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.35);
  font-size: 0.72rem;
  color: rgba(255,255,255,0.55);
  vertical-align: -2px;
}

/* Controls panel */
.cfg-panel {
  display: flex;
  flex-direction: column;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  overflow: hidden;
}

.cfg-tabs {
  display: flex;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  background: rgba(0,0,0,0.2);
}
.cfg-tab {
  flex: 1;
  background: transparent;
  border: none;
  color: rgba(255,255,255,0.55);
  padding: 14px 8px;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  cursor: pointer;
  position: relative;
  transition: color 0.15s;
}
.cfg-tab:hover { color: rgba(255,255,255,0.85); }
.cfg-tab.active { color: #fff; }
.cfg-tab.active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 2px;
  background: #0ea5e9;
}

.cfg-tab-panels {
  padding: 20px 18px;
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  overflow-x: clip;
  max-height: 520px;
  min-width: 0;
}
.cfg-tab-panel { display: none; }
.cfg-tab-panel.active { display: block; }

/* Field */
.cfg-field { margin-bottom: 22px; }
.cfg-field > label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-bottom: 10px;
}
.cfg-hint {
  color: rgba(255,255,255,0.35);
  font-weight: 400;
  margin-left: 4px;
  text-transform: none;
  letter-spacing: 0;
}
.cfg-input-row {
  display: flex;
  gap: 10px;
  align-items: center;
}
.cfg-input-row input[type=range] {
  flex: 1;
  accent-color: #0ea5e9;
  height: 4px;
}
.cfg-num-wrap {
  position: relative;
  flex-shrink: 0;
}
.cfg-num-wrap input[type=number] {
  width: 90px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  color: #fff;
  padding: 8px 36px 8px 12px;
  font-size: 0.95rem;
  font-weight: 600;
  outline: none;
  appearance: textfield;
  -moz-appearance: textfield;
}
.cfg-num-wrap input[type=number]::-webkit-outer-spin-button,
.cfg-num-wrap input[type=number]::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.cfg-num-wrap input:focus {
  border-color: rgba(14,165,233,0.6);
  background: rgba(255,255,255,0.1);
}
.cfg-unit {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255,255,255,0.45);
  font-size: 0.8rem;
  pointer-events: none;
}
.cfg-field-help {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.45);
  margin-top: 8px;
  line-height: 1.4;
}

.cfg-legend-mini {
  margin-top: 14px;
  padding: 10px 14px;
  background: rgba(14,165,233,0.08);
  border: 1px solid rgba(14,165,233,0.2);
  border-radius: 8px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.7);
}
.cfg-legend-mini strong { color: #0ea5e9; }

/* Segment control */
.cfg-segment {
  display: flex;
  background: rgba(0,0,0,0.3);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 4px;
  gap: 4px;
}
.cfg-seg-btn {
  flex: 1;
  background: transparent;
  border: none;
  color: rgba(255,255,255,0.65);
  padding: 10px 8px;
  font-size: 0.88rem;
  font-weight: 600;
  border-radius: 7px;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.cfg-seg-btn:hover { color: #fff; }
.cfg-seg-btn.active {
  background: #0ea5e9;
  color: #fff;
}
.cfg-seg-btn:disabled,
.cfg-seg-btn.disabled {
  opacity: 0.3;
  cursor: not-allowed;
  color: rgba(255,255,255,0.35);
  background: transparent;
  pointer-events: none;
}

/* Summary card */
.cfg-summary-card {
  margin-top: 10px;
  padding: 14px 16px;
  background: rgba(0,0,0,0.28);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
}

/* Quality note — premium materials reassurance shown above CTA */
.cfg-quality-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 12px 0 0;
  padding: 10px 14px;
  background: linear-gradient(135deg, rgba(14,165,233,0.08) 0%, rgba(14,165,233,0.02) 100%);
  border: 1px solid rgba(14,165,233,0.22);
  border-radius: 8px;
  font-size: 0.78rem;
  line-height: 1.5;
  color: rgba(255,255,255,0.78);
}
.cfg-quality-note .cfg-quality-icon {
  color: #38bdf8;
  font-size: 0.95rem;
  line-height: 1.45;
  flex-shrink: 0;
}
.cfg-quality-note strong { color: #fff; font-weight: 700; }
.cfg-quality-note sup { font-size: 0.7em; opacity: 0.75; }

/* Live total height banner pinned at the top of the panel — kept subtle. */
.cfg-total-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 9px 14px;
  margin-bottom: 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
}
.cfg-total-label {
  font-size: 0.74rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.03em;
  line-height: 1.3;
  flex: 1;
  min-width: 0;
}
.cfg-total-value {
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.cfg-total-value span { color: #fff; }
.cfg-summary-title {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.cfg-summary-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 16px;
  font-size: 0.87rem;
}
.cfg-summary-row {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
.cfg-summary-row span:first-child { color: rgba(255,255,255,0.55); }
.cfg-summary-row span:last-child  { color: #fff; font-weight: 600; }

/* Colors */
.cfg-color-current {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  background: rgba(0,0,0,0.28);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  margin-bottom: 14px;
}
.cfg-color-swatch {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  background: #091B3B;
  border: 1px solid rgba(255,255,255,0.15);
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}
.cfg-color-meta { flex: 1; min-width: 0; }
.cfg-color-label {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.cfg-color-name { font-size: 1.05rem; font-weight: 700; margin-top: 2px; }
.cfg-color-code { font-size: 0.78rem; color: rgba(255,255,255,0.55); font-family: ui-monospace, Menlo, monospace; }

.cfg-color-filters {
  display: flex;
  gap: 6px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.cfg-chip {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.65);
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 0.78rem;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}
.cfg-chip:hover { color: #fff; }
.cfg-chip.active { background: rgba(14,165,233,0.2); color: #0ea5e9; border-color: rgba(14,165,233,0.5); }

.cfg-color-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(52px, 1fr));
  gap: 8px;
}
.cfg-color-pdf {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  padding: 10px 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  color: rgba(255,255,255,0.78);
  font-size: 0.85rem;
  text-decoration: none;
  transition: background 0.15s, border-color 0.15s, color 0.15s, transform 0.15s;
}
.cfg-color-pdf:hover {
  background: rgba(14,165,233,0.12);
  border-color: rgba(14,165,233,0.45);
  color: #fff;
  transform: translateY(-1px);
}
.cfg-color-pdf-logo {
  height: 18px;
  width: auto;
  display: block;
  flex-shrink: 0;
  opacity: 0.9;
}
.cfg-color-pdf:hover .cfg-color-pdf-logo { opacity: 1; }
.cfg-color-cell {
  aspect-ratio: 1 / 1;
  border-radius: 8px;
  border: 2px solid rgba(255,255,255,0.1);
  cursor: pointer;
  background-size: cover;
  background-position: center;
  position: relative;
  transition: transform 0.12s, border-color 0.15s, box-shadow 0.15s;
}
.cfg-color-cell:hover {
  transform: scale(1.08);
  border-color: rgba(255,255,255,0.35);
  z-index: 2;
}
.cfg-color-cell.active {
  border-color: #0ea5e9;
  box-shadow: 0 0 0 2px rgba(14,165,233,0.35), 0 4px 12px rgba(14,165,233,0.25);
}
/* Tooltip on color cells. `display: none` (instead of opacity:0) keeps the
   tooltip out of the layout when hidden — otherwise the absolutely-positioned
   pseudo-element extends ~45px past the grid edges and forces the panel to
   become horizontally scrollable on iPhone/iPad. */
.cfg-color-cell::after {
  content: attr(data-tip);
  position: absolute;
  bottom: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%);
  background: #111;
  color: #fff;
  font-size: 0.72rem;
  padding: 4px 8px;
  border-radius: 5px;
  white-space: nowrap;
  pointer-events: none;
  display: none;
}
.cfg-color-cell:hover::after { display: block; }

/* CTA row */
.cfg-cta-row {
  display: flex;
  gap: 10px;
  padding: 16px 18px;
  border-top: 1px solid rgba(255,255,255,0.08);
  background: rgba(0,0,0,0.25);
}
.cfg-cta {
  flex: 1;
  background: linear-gradient(135deg, #0ea5e9 0%, #1a6fc4 100%);
  border: none;
  color: #fff;
  padding: 13px 20px;
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-radius: 10px;
  cursor: pointer;
  transition: transform 0.12s, box-shadow 0.15s;
}
.cfg-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(14,165,233,0.3);
}
.cfg-cta-secondary {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.75);
  padding: 13px 18px;
  border-radius: 10px;
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.15s;
}
.cfg-cta-secondary:hover { background: rgba(255,255,255,0.12); color: #fff; }

/* Modal */
.cfg-modal {
  position: fixed;
  inset: 0;
  z-index: 1050;
  display: none;
  align-items: flex-start;
  justify-content: center;
  overflow-y: auto;
  padding: 40px 16px;
}
.cfg-modal.open { display: flex; }
.cfg-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  animation: cfg-fade 0.2s ease;
}
@keyframes cfg-fade { from { opacity: 0; } to { opacity: 1; } }
.cfg-modal-card {
  position: relative;
  background: #0f1624;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 30px 28px;
  max-width: 640px;
  width: 100%;
  color: #fff;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
  animation: cfg-pop 0.22s ease;
}
@keyframes cfg-pop { from { transform: translateY(20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.cfg-modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(255,255,255,0.08);
  border: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: #fff;
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.15s;
}
.cfg-modal-close:hover { background: rgba(255,255,255,0.18); }
.cfg-modal-card h2 {
  font-size: 1.4rem;
  margin: 0 0 0.4rem;
  font-weight: 700;
}
.cfg-modal-lead {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  margin: 0 0 16px;
}
.cfg-config-preview {
  background: rgba(14,165,233,0.08);
  border: 1px solid rgba(14,165,233,0.25);
  border-radius: 10px;
  padding: 12px 16px;
  margin-bottom: 16px;
  font-size: 0.86rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 16px;
}
.cfg-config-preview-row {
  display: flex;
  justify-content: space-between;
  gap: 8px;
}
.cfg-config-preview-row span:first-child { color: rgba(255,255,255,0.6); }
.cfg-config-preview-row span:last-child  { color: #fff; font-weight: 600; }
@media (max-width: 500px) {
  .cfg-config-preview { grid-template-columns: 1fr; }
  .cfg-modal-card { padding: 22px 18px; }
}

/* Glass form from kontakt.css — repeated here so page is self-contained */
.cfg-form .glass-form-wrap {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 20px 18px;
}
.cfg-form .fg { position: relative; margin-bottom: 1rem; }
.cfg-form .fg input,
.cfg-form .fg textarea {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 10px;
  color: #fff;
  width: 100%;
  padding: 1rem 1rem 0.4rem;
  font-size: 0.95rem;
  outline: none;
  resize: none;
}
.cfg-form .fg input:focus,
.cfg-form .fg textarea:focus {
  border-color: rgba(14,165,233,0.6);
  background: rgba(255,255,255,0.09);
}
.cfg-form .fg input::placeholder,
.cfg-form .fg textarea::placeholder { color: transparent; }
.cfg-form .fg label {
  position: absolute;
  top: 50%;
  left: 1rem;
  transform: translateY(-50%);
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  pointer-events: none;
  transition: all 0.18s ease;
  margin: 0;
}
.cfg-form .fg textarea ~ label { top: 1rem; transform: none; }
.cfg-form .fg input:focus ~ label,
.cfg-form .fg input:not(:placeholder-shown) ~ label,
.cfg-form .fg textarea:focus ~ label,
.cfg-form .fg textarea:not(:placeholder-shown) ~ label {
  top: 0.35rem;
  transform: none;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.75);
}
.cfg-form .btn-glass-send {
  background: linear-gradient(135deg, #0ea5e9 0%, #1a6fc4 100%);
  border: none;
  border-radius: 10px;
  color: #fff;
  padding: 0.8rem 2.5rem;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: transform 0.12s, box-shadow 0.15s;
  display: block;
  margin: 1.3rem auto 0;
}
.cfg-form .btn-glass-send:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(14,165,233,0.3);
  color: #fff;
}

/* Mobile refinements */
@media (max-width: 600px) {
  .cfg-tabs { font-size: 0.8rem; }
  .cfg-tab { padding: 12px 4px; font-size: 0.82rem; }
  .cfg-num-wrap input[type=number] { width: 88px; font-size: 0.88rem; padding-right: 40px; }
  .cfg-view-btn { padding: 7px 12px; font-size: 0.78rem; }
  .cfg-color-grid { grid-template-columns: repeat(auto-fill, minmax(44px, 1fr)); gap: 6px; }
  .cfg-color-swatch { width: 48px; height: 48px; }
  .cfg-dims-badge { font-size: 0.7rem; padding: 5px 10px; }
}

/* ───────────────────────────────────────────────
   TEHNOLOGIJA IZRADE — premium digital process
   ─────────────────────────────────────────────── */
.cfg-tech {
  position: relative;
  padding: 80px 20px 84px;
  background:
    radial-gradient(ellipse 75% 45% at 50% 0%, rgba(14,165,233,0.10), transparent 65%),
    linear-gradient(180deg, #0a0f1a 0%, #060912 100%);
  border-top: 1px solid rgba(255,255,255,0.06);
  overflow: hidden;
}
.cfg-tech::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(14,165,233,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14,165,233,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  background-position: -1px -1px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 70% 50% at 50% 30%, #000 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 70% 50% at 50% 30%, #000 0%, transparent 75%);
}
.cfg-tech-inner {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
}
.cfg-tech-header {
  text-align: center;
  margin: 0 auto 30px;
  max-width: 820px;
}
.cfg-tech-eyebrow {
  display: inline-block;
  color: #38bdf8;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 16px;
  padding: 5px 14px;
  border: 1px solid rgba(14,165,233,0.4);
  border-radius: 999px;
  background: rgba(14,165,233,0.08);
}
.cfg-tech-title {
  font-size: clamp(1.85rem, 5vw, 2.7rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  margin: 0 0 16px;
  text-transform: uppercase;
  background: linear-gradient(135deg, #ffffff 0%, #b8c5d6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.cfg-tech-lead {
  color: rgba(255,255,255,0.72);
  font-size: 1.02rem;
  line-height: 1.65;
  margin: 0;
}
.cfg-tech-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 0 auto 36px;
  max-width: 920px;
}
.cfg-tech-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.88);
  font-size: 0.86rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 999px;
  letter-spacing: 0.02em;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.cfg-tech-pill svg { width: 16px; height: 16px; color: #38bdf8; flex: none; }
.cfg-tech-videos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 34px;
}
.cfg-tech-vid {
  position: relative;
  aspect-ratio: 9 / 11.52;
  border-radius: 16px;
  overflow: hidden;
  background: #000;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 12px 30px rgba(0,0,0,0.45);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.cfg-tech-vid:hover {
  transform: translateY(-4px);
  border-color: rgba(14,165,233,0.4);
  box-shadow: 0 22px 44px rgba(0,0,0,0.55), 0 0 0 1px rgba(14,165,233,0.3);
}
.cfg-tech-vid video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.cfg-tech-vid:hover video { transform: scale(1.04); }
.cfg-tech-vid-num {
  position: absolute;
  top: 14px;
  left: 16px;
  z-index: 3;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: #38bdf8;
  background: rgba(0,0,0,0.55);
  border: 1px solid rgba(14,165,233,0.45);
  padding: 5px 11px;
  border-radius: 6px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.cfg-tech-vid-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px 24px;
  background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,0.55) 65%, rgba(0,0,0,0.88) 100%);
  z-index: 2;
}
.cfg-tech-vid-overlay h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0 0 6px;
  color: #fff;
  letter-spacing: 0.01em;
}
.cfg-tech-vid-overlay p {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.78);
  margin: 0;
  line-height: 1.5;
}
.cfg-tech-cta-wrap { text-align: center; }
.cfg-tech-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #0ea5e9 0%, #1a6fc4 100%);
  color: #fff;
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 14px 28px;
  border-radius: 12px;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.25s ease;
  box-shadow: 0 8px 24px rgba(14,165,233,0.32);
}
.cfg-tech-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(14,165,233,0.5);
  color: #fff;
}
.cfg-tech-cta-arrow {
  display: inline-block;
  transition: transform 0.2s ease;
  font-size: 1.1em;
  line-height: 1;
}
.cfg-tech-cta:hover .cfg-tech-cta-arrow { transform: translateX(5px); }

@media (max-width: 700px) {
  .cfg-tech { padding: 56px 14px 60px; }
  .cfg-tech-videos {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    gap: 12px;
    padding-bottom: 10px;
  }
  .cfg-tech-videos::-webkit-scrollbar { display: none; }
  .cfg-tech-vid {
    flex: 0 0 72vw;
    max-width: 280px;
    scroll-snap-align: start;
  }
  .cfg-tech-vid-overlay { padding: 14px 14px; }
  .cfg-tech-vid-overlay h3 { font-size: 0.95rem; }
  .cfg-tech-vid-overlay p { font-size: 0.78rem; }
  .cfg-tech-pill { font-size: 0.8rem; padding: 6px 11px; }
}

/* ───────────────────────────────────────────────
   PREMIUM MATERIJALI — quality strip
   ─────────────────────────────────────────────── */
.cfg-materials {
  background: #060912;
  padding: 56px 20px;
  border-top: 1px solid rgba(255,255,255,0.04);
}
.cfg-materials-inner {
  max-width: 1180px;
  margin: 0 auto;
  text-align: center;
}
.cfg-materials-line {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(14,165,233,0.45) 50%, transparent 100%);
  margin: 0 auto;
  max-width: 220px;
}
.cfg-materials-eyebrow {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.32em;
  color: #38bdf8;
  text-transform: uppercase;
  margin: 18px 0 28px;
}
.cfg-materials-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  margin-bottom: 28px;
}
.cfg-mat {
  text-align: center;
  padding: 0 12px;
}
.cfg-mat-brand {
  font-size: clamp(1.1rem, 2.2vw, 1.45rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #fff;
  margin-bottom: 8px;
}
.cfg-mat-brand sup { font-size: 0.55em; opacity: 0.7; vertical-align: super; }
.cfg-mat-desc {
  font-size: 0.86rem;
  line-height: 1.5;
  color: rgba(255,255,255,0.6);
  max-width: 280px;
  margin: 0 auto;
}
.cfg-mat-divider {
  width: 1px;
  height: 60px;
  background: linear-gradient(180deg, transparent 0%, rgba(255,255,255,0.18) 50%, transparent 100%);
  align-self: center;
}
@media (max-width: 800px) {
  .cfg-materials { padding: 44px 14px; }
  .cfg-materials-grid { grid-template-columns: 1fr; gap: 24px; }
  .cfg-mat-divider {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.18) 50%, transparent 100%);
    margin: 0 auto;
  }
}

/* ───────────────────────────────────────────────
   ŠTO JE UKLJUČENO U CIJENI — components grid
   ─────────────────────────────────────────────── */
.cfg-included {
  padding: 60px 20px 80px;
  background: linear-gradient(180deg, #0a0f1a 0%, #0d1424 100%);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.cfg-included-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.cfg-included-header {
  text-align: center;
  margin-bottom: 36px;
}
.cfg-included-title {
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 800;
  letter-spacing: 0.06em;
  margin: 0 0 0.7rem;
  text-transform: uppercase;
}
.cfg-included-lead {
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  line-height: 1.55;
  max-width: 760px;
  margin: 0 auto;
}
.cfg-included-lead strong {
  color: #0ea5e9;
  font-weight: 700;
}
.cfg-included-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
  margin-bottom: 28px;
}
.cfg-incl-card {
  display: flex;
  flex-direction: column;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  overflow: hidden;
  transition: transform 0.15s ease, border-color 0.15s ease, box-shadow 0.2s ease;
}
.cfg-incl-card:hover {
  transform: translateY(-3px);
  border-color: rgba(14,165,233,0.35);
  box-shadow: 0 12px 28px rgba(0,0,0,0.4), 0 0 0 1px rgba(14,165,233,0.15);
}
.cfg-incl-card-optional {
  border-style: dashed;
  border-color: rgba(255,255,255,0.18);
}
.cfg-incl-media {
  aspect-ratio: 4 / 3;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.cfg-incl-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 14px;
  mix-blend-mode: normal;
}
.cfg-incl-media-icon {
  background: linear-gradient(135deg, rgba(14,165,233,0.12), rgba(26,111,196,0.06));
  color: #0ea5e9;
}
.cfg-incl-body {
  padding: 16px 18px 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.cfg-incl-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 6px;
}
.cfg-incl-head h3 {
  font-size: 1rem;
  font-weight: 700;
  margin: 0;
  letter-spacing: 0.02em;
}
.cfg-incl-qty {
  background: rgba(14,165,233,0.18);
  color: #38bdf8;
  border: 1px solid rgba(14,165,233,0.4);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 999px;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.cfg-incl-tag {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.18);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.cfg-incl-sub {
  color: #38bdf8;
  font-size: 0.82rem;
  font-weight: 600;
  margin: 0 0 6px;
  letter-spacing: 0.02em;
}
.cfg-incl-desc {
  color: rgba(255,255,255,0.65);
  font-size: 0.88rem;
  line-height: 1.5;
  margin: 0;
}
.cfg-incl-desc strong { color: #fff; font-weight: 600; }
.cfg-included-note {
  text-align: center;
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  margin: 0 auto;
  max-width: 760px;
  line-height: 1.55;
}
.cfg-included-note span { color: #0ea5e9; margin-right: 4px; }

@media (max-width: 600px) {
  .cfg-included { padding: 44px 14px 60px; }
  .cfg-included-grid { grid-template-columns: 1fr; gap: 14px; }
  .cfg-incl-media { aspect-ratio: 16 / 9; }
}

/* ───────────────────────────────────────────────
   POTREBAN ALAT ZA MONTAŽU — tools grid
   ─────────────────────────────────────────────── */
.cfg-tools {
  padding: 30px 20px 80px;
  background: #0d1424;
  border-top: 1px solid rgba(255,255,255,0.04);
}
.cfg-tools-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.cfg-tools-header {
  text-align: center;
  margin-bottom: 30px;
}
.cfg-tools-title {
  font-size: clamp(1.4rem, 3.5vw, 1.9rem);
  font-weight: 800;
  letter-spacing: 0.06em;
  margin: 0 0 0.5rem;
  text-transform: uppercase;
}
.cfg-tools-lead {
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
  margin: 0;
}
.cfg-tools-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
}
.cfg-tool-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 18px 14px;
  transition: transform 0.15s ease, border-color 0.15s ease, box-shadow 0.2s ease;
}
.cfg-tool-card:hover {
  transform: translateY(-2px);
  border-color: rgba(14,165,233,0.35);
  box-shadow: 0 8px 20px rgba(0,0,0,0.35);
}
.cfg-tool-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #38bdf8;
  margin-bottom: 10px;
}
.cfg-tool-icon svg { width: 100%; height: 100%; }
.cfg-tool-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: #fff;
  margin: 0;
  line-height: 1.35;
  letter-spacing: 0.01em;
}
.cfg-tool-card-optional {
  border-style: dashed;
  border-color: rgba(255,255,255,0.18);
}
.cfg-tool-desc {
  font-size: 0.74rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.4;
  margin: 6px 0 8px;
  text-align: center;
}
.cfg-tool-tag {
  display: inline-block;
  margin-top: 8px;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.18);
  font-size: 0.66rem;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

@media (max-width: 600px) {
  .cfg-tools { padding: 24px 14px 50px; }
  .cfg-tools-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .cfg-tool-card { padding: 14px 10px; }
  .cfg-tool-icon { width: 44px; height: 44px; }
  .cfg-tool-name { font-size: 0.82rem; }
}

/* ───────────────────────────────────────────────
   POSTUPAK MONTAŽE — step-by-step timeline
   ─────────────────────────────────────────────── */
.cfg-procedure {
  padding: 60px 20px 80px;
  background: linear-gradient(180deg, #0a0f1a 0%, #060912 100%);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.cfg-procedure-inner {
  max-width: 880px;
  margin: 0 auto;
}
.cfg-procedure-header {
  text-align: center;
  margin-bottom: 40px;
}
.cfg-procedure-title {
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 800;
  letter-spacing: 0.06em;
  margin: 0 0 0.7rem;
  text-transform: uppercase;
}
.cfg-procedure-lead {
  color: rgba(255,255,255,0.65);
  font-size: 1rem;
  margin: 0 auto;
  max-width: 680px;
  line-height: 1.55;
}
.cfg-procedure-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
}
.cfg-procedure-steps::before {
  content: '';
  position: absolute;
  left: 30px;
  top: 30px;
  bottom: 30px;
  width: 2px;
  background: linear-gradient(180deg, rgba(14,165,233,0.5) 0%, rgba(14,165,233,0.1) 100%);
}
.cfg-procedure-step {
  display: flex;
  gap: 22px;
  position: relative;
  padding-bottom: 28px;
}
.cfg-procedure-step:last-child { padding-bottom: 0; }
.cfg-procedure-num {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0ea5e9 0%, #1a6fc4 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: 0.05em;
  z-index: 1;
  box-shadow: 0 6px 16px rgba(14,165,233,0.3);
}
.cfg-procedure-body {
  flex: 1;
  padding-top: 6px;
  min-width: 0;
}
.cfg-procedure-body h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0 0 8px;
  color: #fff;
  letter-spacing: 0.01em;
}
.cfg-procedure-body p {
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  margin: 0;
  font-size: 0.95rem;
}
.cfg-procedure-body p strong { color: #fff; font-weight: 600; }
.cfg-procedure-warn {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 12px;
  padding: 10px 14px;
  background: rgba(245, 158, 11, 0.08);
  border: 1px solid rgba(245, 158, 11, 0.3);
  border-radius: 8px;
  font-size: 0.86rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
}
.cfg-procedure-warn-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(245, 158, 11, 0.85);
  color: #1a1006;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.78rem;
  line-height: 1;
}

@media (max-width: 600px) {
  .cfg-procedure { padding: 44px 14px 60px; }
  .cfg-procedure-num { width: 48px; height: 48px; font-size: 0.92rem; }
  .cfg-procedure-steps::before { left: 24px; top: 24px; bottom: 24px; }
  .cfg-procedure-step { gap: 16px; padding-bottom: 22px; }
  .cfg-procedure-body h3 { font-size: 1.02rem; }
  .cfg-procedure-body p { font-size: 0.9rem; }
}

/* ───────────────────────────────────────────────
   FAQ — često postavljana pitanja (accordion)
   ─────────────────────────────────────────────── */
.cfg-faq {
  padding: 60px 20px 80px;
  background: #0a0f1a;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.cfg-faq-inner {
  max-width: 880px;
  margin: 0 auto;
}
.cfg-faq-header {
  text-align: center;
  margin-bottom: 32px;
}
.cfg-faq-title {
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  font-weight: 800;
  letter-spacing: 0.06em;
  margin: 0 0 0.7rem;
  text-transform: uppercase;
}
.cfg-faq-lead {
  color: rgba(255,255,255,0.65);
  font-size: 1rem;
  margin: 0 auto;
  max-width: 680px;
  line-height: 1.55;
}
.cfg-faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cfg-faq-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.cfg-faq-item[open] {
  border-color: rgba(14,165,233,0.35);
  background: rgba(14,165,233,0.04);
}
.cfg-faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 20px;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  list-style: none;
  user-select: none;
  transition: color 0.15s;
}
.cfg-faq-q::-webkit-details-marker { display: none; }
.cfg-faq-q::after {
  content: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'><circle cx='12' cy='12' r='11.5' fill='%230ea5e9' fill-opacity='0.18' stroke='%230ea5e9' stroke-opacity='0.4' stroke-width='1'/><path d='M11 6h2v12h-2zM6 11h12v2H6z' fill='%2338bdf8'/></svg>");
  flex-shrink: 0;
  display: block;
}
.cfg-faq-item[open] .cfg-faq-q::after {
  content: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'><circle cx='12' cy='12' r='11.5' fill='%230ea5e9' fill-opacity='0.32' stroke='%230ea5e9' stroke-opacity='0.4' stroke-width='1'/><path d='M6 11h12v2H6z' fill='%2338bdf8'/></svg>");
}
.cfg-faq-q:hover { color: #38bdf8; }
.cfg-faq-a {
  padding: 0 20px 18px;
  color: rgba(255,255,255,0.72);
  line-height: 1.6;
  font-size: 0.94rem;
}
.cfg-faq-a p { margin: 0; }
.cfg-faq-a strong { color: #fff; font-weight: 600; }
.cfg-faq-a a {
  color: #38bdf8;
  text-decoration: none;
  border-bottom: 1px solid rgba(56,189,248,0.4);
  transition: color 0.15s, border-color 0.15s;
}
.cfg-faq-a a:hover { color: #7dd3fc; border-bottom-color: rgba(125,211,252,0.7); }
.cfg-faq-a a strong { color: inherit; }

@media (max-width: 600px) {
  .cfg-faq { padding: 44px 14px 60px; }
  .cfg-faq-q { padding: 14px 16px; font-size: 0.94rem; }
  .cfg-faq-a { padding: 0 16px 16px; font-size: 0.9rem; }
}
