:root {
  --sinora-bg-main: #050b14;
  --sinora-bg-card: #08111f;
  --sinora-bg-card-soft: #0c1626;
  --sinora-bg-card-hover: rgba(201, 169, 97, 0.06);
  --sinora-cream: #f4ebdd;
  --sinora-cream-muted: #b8aea0;
  --sinora-gold: #c9a961;
  --sinora-gold-soft: rgba(201, 169, 97, 0.14);
  --sinora-gold-border: rgba(201, 169, 97, 0.55);
  --sinora-border-soft: rgba(244, 235, 221, 0.12);
  --sinora-border-strong: rgba(244, 235, 221, 0.22);
  --sinora-success: #86efac;
  --sinora-warning: #facc15;
}

.service-builder-section {
  position: relative;
  z-index: 10;
  max-width: 1500px;
  margin: 0 auto;
  padding: 72px 40px 96px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--sinora-cream);
}

.service-builder-section * {
  box-sizing: border-box;
}

.sb-header {
  max-width: 850px;
  margin: 0 auto 34px;
  text-align: center;
}

.sb-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--sinora-gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.sb-eyebrow::before,
.sb-eyebrow::after {
  content: "";
  width: 28px;
  height: 1px;
  background: rgba(201, 169, 97, 0.45);
}

.sb-header h2 {
  margin: 20px 0 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(42px, 5vw, 68px);
  line-height: 0.98;
  font-weight: 400;
  letter-spacing: 0;
  color: #fffaf1;
}

.sb-header p {
  max-width: 670px;
  margin: 22px auto 0;
  color: var(--sinora-cream-muted);
  font-size: 16px;
  line-height: 1.8;
  font-weight: 300;
}

.sb-microcopy {
  display: inline-flex;
  margin-top: 18px;
  color: rgba(244, 235, 221, 0.62);
  font-size: 12.5px;
  line-height: 1.6;
}

.sb-mode-nav {
  max-width: 1180px;
  margin: 0 auto 24px;
}

.sb-mode-tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.sb-mode-tab {
  width: 100%;
  min-height: 108px;
  padding: 22px;
  border: 1px solid var(--sinora-border-soft);
  border-radius: 22px;
  background: rgba(8, 17, 31, 0.7);
  color: var(--sinora-cream);
  text-align: left;
  transition: border-color 220ms ease, background 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}

.sb-mode-tab:hover {
  transform: translateY(-2px);
  border-color: var(--sinora-gold-border);
  background: var(--sinora-bg-card-hover);
  box-shadow: 0 18px 42px rgba(201, 169, 97, 0.07);
}

.sb-mode-tab.is-active {
  border-color: var(--sinora-gold-border);
  background: linear-gradient(135deg, rgba(201, 169, 97, 0.13), rgba(8, 17, 31, 0.86));
  box-shadow: inset 0 0 0 1px rgba(201, 169, 97, 0.08);
}

.sb-mode-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 19px;
  font-weight: 600;
}

.sb-mode-title span:last-child {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(201, 169, 97, 0.35);
  color: var(--sinora-gold);
  opacity: 0;
  transition: opacity 180ms ease;
}

.sb-mode-tab.is-active .sb-mode-title span:last-child {
  opacity: 1;
}

.sb-mode-tab p {
  margin: 12px 0 0;
  color: var(--sinora-cream-muted);
  font-size: 13.5px;
  line-height: 1.65;
}

.sb-builder-card {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  padding: 28px;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(340px, 0.78fr);
  gap: 24px;
  border: 1px solid var(--sinora-border-soft);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(201, 169, 97, 0.045), transparent 34%),
    rgba(8, 17, 31, 0.92);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03), 0 34px 90px rgba(0, 0, 0, 0.28);
  overflow: hidden;
}

.sb-builder-card::before {
  content: "";
  position: absolute;
  inset: 28px auto 28px 50%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(201, 169, 97, 0.22), transparent);
  pointer-events: none;
}

.sb-builder-flow,
.sb-summary-card {
  position: relative;
  z-index: 1;
}

.sb-panel {
  border: 1px solid var(--sinora-border-soft);
  border-radius: 22px;
  background: rgba(5, 11, 20, 0.34);
  padding: 22px;
}

.sb-panel + .sb-panel {
  margin-top: 16px;
}

.sb-panel-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 16px;
}

.sb-panel-label {
  display: block;
  margin-bottom: 8px;
  color: rgba(201, 169, 97, 0.88);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.sb-panel h3,
.sb-question-title {
  margin: 0;
  color: #fffaf1;
  font-size: 20px;
  line-height: 1.3;
  font-weight: 600;
}

.sb-clear-btn,
.sb-switch-btn {
  border: 1px solid rgba(201, 169, 97, 0.32);
  border-radius: 999px;
  padding: 9px 13px;
  background: rgba(201, 169, 97, 0.08);
  color: var(--sinora-gold);
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.sb-clear-btn:hover,
.sb-switch-btn:hover {
  transform: translateY(-1px);
  border-color: var(--sinora-gold-border);
  background: rgba(201, 169, 97, 0.13);
}

.sb-options-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.sb-options-grid.is-wide {
  grid-template-columns: 1fr;
}

.sb-option-card {
  position: relative;
  width: 100%;
  min-height: 74px;
  padding: 17px 46px 17px 18px;
  border: 1px solid var(--sinora-border-soft);
  border-radius: 18px;
  background: rgba(12, 22, 38, 0.74);
  color: var(--sinora-cream);
  text-align: left;
  font-size: 14.5px;
  line-height: 1.45;
  font-weight: 500;
  transition: border-color 220ms ease, background 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}

.sb-option-card:hover {
  transform: translateY(-2px);
  border-color: var(--sinora-gold-border);
  background: var(--sinora-bg-card-hover);
  box-shadow: 0 16px 36px rgba(201, 169, 97, 0.06);
}

.sb-option-card.is-selected {
  border-color: var(--sinora-gold-border);
  background: var(--sinora-gold-soft);
}

.sb-option-check {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(201, 169, 97, 0.45);
  color: var(--sinora-gold);
  font-size: 13px;
  opacity: 0.38;
}

.sb-option-card.is-selected .sb-option-check {
  opacity: 1;
  background: rgba(201, 169, 97, 0.12);
}

.sb-question {
  padding-top: 18px;
  margin-top: 18px;
  border-top: 1px solid rgba(244, 235, 221, 0.08);
  animation: sbFadeUp 260ms ease both;
}

.sb-question:first-child {
  padding-top: 0;
  margin-top: 0;
  border-top: 0;
}

.sb-question-title {
  margin-bottom: 12px;
  font-size: 17px;
}

.sb-suggestion {
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
  padding: 14px 16px;
  border: 1px solid rgba(201, 169, 97, 0.26);
  border-radius: 18px;
  background: rgba(201, 169, 97, 0.08);
  color: rgba(244, 235, 221, 0.82);
  font-size: 13.5px;
  line-height: 1.55;
}

.sb-suggestion.is-visible {
  display: flex;
}

.sb-addon-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.sb-addon-card {
  min-height: 64px;
  padding: 14px 16px;
}

.sb-addon-price {
  display: block;
  margin-top: 5px;
  color: rgba(201, 169, 97, 0.9);
  font-size: 12px;
  font-weight: 700;
}

.sb-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.sb-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 10px;
  border: 1px solid rgba(244, 235, 221, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: rgba(244, 235, 221, 0.78);
  font-size: 12px;
}

.sb-summary-card {
  align-self: start;
  position: sticky;
  top: 96px;
  border: 1px solid var(--sinora-border-strong);
  border-radius: 24px;
  background: rgba(5, 11, 20, 0.48);
  padding: 22px;
}

.sb-summary-kicker {
  color: rgba(201, 169, 97, 0.9);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.sb-summary-card h3 {
  margin: 10px 0 16px;
  font-family: "Cormorant Garamond", Georgia, serif;
  color: #fffaf1;
  font-size: 34px;
  line-height: 1.05;
  font-weight: 500;
}

.sb-price-lines {
  display: grid;
  gap: 10px;
  padding: 16px 0;
  border-top: 1px solid rgba(244, 235, 221, 0.08);
  border-bottom: 1px solid rgba(244, 235, 221, 0.08);
}

.sb-price-line {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: rgba(244, 235, 221, 0.72);
  font-size: 13px;
  line-height: 1.45;
}

.sb-price-line strong {
  color: var(--sinora-cream);
  font-weight: 600;
  text-align: right;
}

.sb-price-line.is-total {
  align-items: baseline;
  padding-top: 10px;
  margin-top: 4px;
  border-top: 1px solid rgba(201, 169, 97, 0.18);
}

.sb-price-line.is-total strong {
  color: var(--sinora-gold);
  font-size: 28px;
  font-weight: 700;
}

.sb-advantage {
  margin: 12px 0 0;
  color: rgba(134, 239, 172, 0.88);
  font-size: 12.5px;
  line-height: 1.6;
}

.sb-disclaimer {
  margin: 10px 0 0;
  color: rgba(244, 235, 221, 0.56);
  font-size: 12px;
  line-height: 1.6;
}

.sb-result-box {
  margin-top: 18px;
  padding: 18px;
  border: 1px solid rgba(201, 169, 97, 0.18);
  border-radius: 18px;
  background: rgba(201, 169, 97, 0.055);
}

.sb-result-box h4,
.sb-whatsapp-block h4 {
  margin: 0 0 10px;
  color: #fffaf1;
  font-size: 16px;
  font-weight: 700;
}

.sb-result-item {
  margin-top: 12px;
}

.sb-result-item span {
  display: block;
  margin-bottom: 5px;
  color: rgba(201, 169, 97, 0.88);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.sb-result-item p,
.sb-result-item ul {
  margin: 0;
  color: rgba(244, 235, 221, 0.76);
  font-size: 13px;
  line-height: 1.65;
}

.sb-result-item ul {
  padding-left: 18px;
}

.sb-whatsapp-block {
  margin-top: 18px;
}

.sb-whatsapp-block p {
  margin: 0 0 12px;
  color: rgba(244, 235, 221, 0.62);
  font-size: 12.5px;
  line-height: 1.6;
}

.sb-message-area {
  width: 100%;
  min-height: 210px;
  resize: vertical;
  padding: 15px;
  border: 1px solid rgba(244, 235, 221, 0.12);
  border-radius: 16px;
  background: rgba(2, 7, 14, 0.72);
  color: rgba(244, 235, 221, 0.86);
  font-family: Inter, sans-serif;
  font-size: 12.8px;
  line-height: 1.65;
}

.sb-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 12px;
}

.sb-action-btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 14px;
  border: 1px solid rgba(201, 169, 97, 0.36);
  padding: 13px 16px;
  color: var(--sinora-cream);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.sb-action-btn:hover {
  transform: translateY(-1px);
  border-color: var(--sinora-gold-border);
}

.sb-action-primary {
  background: linear-gradient(135deg, #d8bd7b, #a98748);
  color: #050b14;
  border-color: rgba(201, 169, 97, 0.68);
}

.sb-action-secondary {
  background: rgba(201, 169, 97, 0.08);
  color: var(--sinora-gold);
}

.sb-action-ghost {
  background: rgba(255, 255, 255, 0.025);
  color: rgba(244, 235, 221, 0.76);
}

.sb-option-card:focus-visible,
.sb-mode-tab:focus-visible,
.sb-clear-btn:focus-visible,
.sb-switch-btn:focus-visible,
.sb-action-btn:focus-visible,
.sb-message-area:focus-visible {
  outline: 2px solid var(--sinora-gold);
  outline-offset: 3px;
}

@keyframes sbFadeUp {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes sbQuestionIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes sbQuestionOut {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-8px);
  }
}

@media (max-width: 1080px) {
  .sb-builder-card {
    grid-template-columns: 1fr;
  }

  .sb-builder-card::before {
    display: none;
  }

  .sb-summary-card {
    position: relative;
    top: auto;
  }
}

@media (max-width: 760px) {
  .service-builder-section {
    padding: 58px 18px 80px;
  }

  .sb-header {
    text-align: center;
    margin-inline: auto;
  }

  .sb-eyebrow {
    justify-content: center;
    width: 100%;
    letter-spacing: 0.08em;
  }

  .sb-eyebrow::before,
  .sb-eyebrow::after {
    display: none;
  }

  .sb-header h2 {
    font-size: clamp(32px, 8.5vw, 40px);
    line-height: 1.45;
    margin-inline: auto;
  }

  .sb-header p {
    font-size: 15px;
    margin-inline: auto;
    text-align: center;
  }

  .sb-microcopy {
    display: block;
    width: 100%;
    max-width: 34rem;
    margin-inline: auto;
    text-align: center;
  }

  .sb-mode-tabs,
  .sb-options-grid,
  .sb-addon-grid {
    grid-template-columns: 1fr;
  }

  .sb-mode-tab {
    min-height: auto;
    text-align: center;
    padding: 20px 18px;
  }

  .sb-mode-title {
    justify-content: center;
    gap: 10px;
  }

  .sb-mode-tab p {
    text-align: center;
    margin-inline: auto;
    max-width: 30rem;
  }

  .sb-builder-card {
    padding: 14px;
    border-radius: 22px;
  }

  .sb-panel,
  .sb-summary-card {
    padding: 17px;
    border-radius: 18px;
  }

  .sb-panel-head,
  .sb-suggestion {
    flex-direction: column;
    align-items: stretch;
  }

  .sb-option-card {
    min-height: 68px;
    font-size: 15px;
  }

  .sb-summary-card h3 {
    font-size: 30px;
  }
}

/* ============================================================
   PROGRESSIVE DISCLOSURE / 4 MODES / GIFTS / SAMPLES / PACKAGES
   ============================================================ */

/* Make the hidden attribute win over flex/grid display rules above. */
.service-builder-section [hidden] {
  display: none !important;
}

/* ---- Start hint (no mode chosen yet) ---- */
.sb-start-hint {
  max-width: 760px;
  margin: 0 auto;
  padding: 30px 28px;
  text-align: center;
  border: 1px dashed var(--sinora-gold-border);
  border-radius: 22px;
  background: rgba(8, 17, 31, 0.5);
  animation: sbFadeUp 320ms ease both;
}

.sb-start-orb {
  display: inline-block;
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: radial-gradient(circle at 34% 30%, #f6e8c3, #c9a961 55%, #8a6a30);
  box-shadow: 0 0 34px rgba(201, 169, 97, 0.5), inset 0 2px 5px rgba(255, 255, 255, 0.55);
  animation: sbPulse 3s ease-in-out infinite;
}

.sb-start-hint p {
  margin: 0;
  color: #fffaf1;
  font-size: 17px;
  line-height: 1.65;
}

.sb-start-hint strong {
  color: var(--sinora-gold);
}

.sb-start-sub {
  display: inline-block;
  margin-top: 12px;
  color: var(--sinora-cream-muted);
  font-size: 13px;
}

@keyframes sbPulse {
  0%, 100% { transform: scale(1); opacity: 0.9; }
  50% { transform: scale(1.08); opacity: 1; }
}

/* Newly revealed panels fade in like the questions do. */
.sb-panel[data-sb-panel] {
  animation: sbFadeUp 280ms ease both;
}

/* ---- Multi-select hint + brand option icons ---- */
.sb-multi-hint {
  display: inline-block;
  margin-left: 8px;
  color: rgba(201, 169, 97, 0.8);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.sb-option-text {
  display: inline-block;
  line-height: 1.35;
}

.sb-option-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.sb-brand-ic {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.sb-brand-ic svg {
  display: block;
}

/* ---- Honest advisor note ---- */
.sb-honest {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  padding: 14px 16px;
  border: 1px solid rgba(134, 239, 172, 0.28);
  border-radius: 16px;
  background: rgba(134, 239, 172, 0.06);
  animation: sbFadeUp 240ms ease both;
}

.sb-honest-ic {
  font-size: 22px;
  line-height: 1;
}

.sb-honest p {
  margin: 0;
  color: rgba(244, 235, 221, 0.84);
  font-size: 13px;
  line-height: 1.6;
}

.sb-honest strong {
  color: var(--sinora-success);
}

/* ---- Add-on cards: 3D luxe icon + expandable description + checkbox ---- */
.sb-addon-card {
  display: flex;
  flex-direction: column;
  min-height: auto;
  padding: 0;
  border: 1px solid var(--sinora-border-soft);
  border-radius: 18px;
  background: rgba(12, 22, 38, 0.74);
  overflow: hidden;
  transition: border-color 200ms ease, background 200ms ease, transform 200ms ease, box-shadow 200ms ease;
}

.sb-addon-card:hover {
  transform: translateY(-2px);
  border-color: var(--sinora-gold-border);
  box-shadow: 0 14px 32px rgba(201, 169, 97, 0.06);
}

.sb-addon-card.is-selected {
  border-color: var(--sinora-gold-border);
  background: var(--sinora-gold-soft);
}

.sb-addon-main {
  display: flex;
  align-items: center;
  gap: 13px;
  width: 100%;
  padding: 14px;
  border: 0;
  background: transparent;
  color: var(--sinora-cream);
  text-align: left;
  cursor: pointer;
}

.sb-addon-ic {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 13px;
  font-size: 21px;
  background: linear-gradient(150deg, #f0d693 0%, #c9a961 48%, #9a763a 100%);
  box-shadow: inset 0 2px 3px rgba(255, 255, 255, 0.55), inset 0 -2px 4px rgba(0, 0, 0, 0.3), 0 7px 16px rgba(0, 0, 0, 0.42);
}

.sb-addon-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.sb-addon-label {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
}

.sb-addon-price {
  margin: 0;
  color: rgba(201, 169, 97, 0.92);
  font-size: 12px;
  font-weight: 700;
}

.sb-addon-caret {
  flex-shrink: 0;
  color: rgba(244, 235, 221, 0.55);
  font-size: 13px;
  transition: transform 200ms ease;
}

.sb-addon-card.is-expanded .sb-addon-caret {
  transform: rotate(180deg);
  color: var(--sinora-gold);
}

.sb-addon-desc {
  padding: 0 14px 13px 14px;
  color: rgba(244, 235, 221, 0.74);
  font-size: 12.5px;
  line-height: 1.6;
  animation: sbFadeUp 200ms ease both;
}

.sb-addon-check {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 11px 14px;
  border-top: 1px solid rgba(244, 235, 221, 0.08);
  color: rgba(244, 235, 221, 0.6);
  font-size: 12.5px;
  font-weight: 700;
  cursor: pointer;
}

.sb-addon-check input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.sb-addon-check-box {
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  border: 1px solid var(--sinora-gold-border);
  color: transparent;
  font-size: 12px;
  transition: background 160ms ease, color 160ms ease;
}

.sb-addon-card.is-selected .sb-addon-check-box {
  background: var(--sinora-gold);
  color: #050b14;
  border-color: transparent;
}

.sb-addon-card.is-selected .sb-addon-check-text {
  color: var(--sinora-gold);
}

.sb-addon-check input:focus-visible + .sb-addon-check-box {
  outline: 2px solid var(--sinora-gold);
  outline-offset: 2px;
}

/* ---- First-order 20% toggle ---- */
.sb-firstorder {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  margin-top: 14px;
  padding: 13px 15px;
  border: 1px dashed var(--sinora-gold-border);
  border-radius: 14px;
  background: rgba(201, 169, 97, 0.06);
  text-align: left;
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease;
}

.sb-firstorder:hover {
  background: rgba(201, 169, 97, 0.11);
}

.sb-firstorder-check {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border: 1px solid var(--sinora-gold-border);
  color: transparent;
  font-size: 13px;
}

.sb-firstorder-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.sb-firstorder-text strong {
  color: #fffaf1;
  font-size: 13.5px;
}

.sb-firstorder-text small {
  color: var(--sinora-cream-muted);
  font-size: 11.5px;
}

.sb-firstorder.is-active {
  border-style: solid;
  border-color: rgba(134, 239, 172, 0.5);
  background: rgba(134, 239, 172, 0.09);
}

.sb-firstorder.is-active .sb-firstorder-check {
  background: var(--sinora-success);
  color: #05210f;
  border-color: transparent;
}

.sb-firstorder.is-active .sb-firstorder-text strong {
  color: var(--sinora-success);
}

.sb-gift-value {
  color: var(--sinora-success) !important;
}

/* ---- Smart / honest advice line inside Öneri detayı ---- */
.sb-result-smart {
  padding: 10px 12px;
  border-left: 2px solid var(--sinora-success);
  border-radius: 8px;
  background: rgba(134, 239, 172, 0.07);
}

.sb-result-smart span {
  color: rgba(134, 239, 172, 0.9);
}

.sb-result-smart p {
  color: rgba(244, 235, 221, 0.85);
}

/* ---- Advanced sample-video box ---- */
.sb-samples-panel {
  border-color: rgba(201, 169, 97, 0.3);
  background: linear-gradient(150deg, rgba(201, 169, 97, 0.07), rgba(5, 11, 20, 0.34));
}

.sb-sample-intro {
  margin: 0 0 14px;
  color: var(--sinora-cream-muted);
  font-size: 13.5px;
  line-height: 1.6;
}

.sb-sample-intro strong {
  color: var(--sinora-gold);
}

.sb-sample-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.sb-sample-tile {
  position: relative;
  aspect-ratio: 9 / 16;
  display: flex;
  align-items: flex-end;
  padding: 12px;
  border: 1px solid var(--sinora-gold-border);
  border-radius: 16px;
  overflow: hidden;
  background: linear-gradient(160deg, rgba(201, 169, 97, 0.28), rgba(8, 17, 31, 0.96));
}

.sb-sample-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 34%, rgba(201, 169, 97, 0.25), transparent 62%);
}

.sb-sample-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid var(--sinora-gold-border);
  background: rgba(5, 11, 20, 0.6);
  color: var(--sinora-gold);
  font-size: 15px;
  padding-left: 3px;
}

.sb-sample-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  padding: 3px 7px;
  border: 1px solid var(--sinora-border-soft);
  border-radius: 6px;
  background: rgba(5, 11, 20, 0.72);
  color: var(--sinora-gold);
  font-size: 10px;
  font-weight: 700;
}

.sb-sample-cap {
  position: relative;
  z-index: 2;
  color: #fffaf1;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.3;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.65);
}

.sb-sample-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  min-height: 48px;
  margin-top: 14px;
  border-radius: 14px;
  background: linear-gradient(135deg, #d8bd7b, #a98748);
  color: #050b14;
  font-size: 13.5px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.sb-sample-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(201, 169, 97, 0.2);
}

.sb-sample-note {
  display: block;
  margin-top: 9px;
  color: rgba(244, 235, 221, 0.5);
  font-size: 11.5px;
  line-height: 1.5;
}

/* ---- Packages mode ---- */
.sb-packages {
  max-width: 1180px;
  margin: 0 auto;
  animation: sbFadeUp 320ms ease both;
}

.sb-pkg-anchor {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  max-width: 920px;
  margin: 0 auto 28px;
  padding: 16px 18px;
  border: 1px solid var(--sinora-gold-border);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(201, 169, 97, 0.13), rgba(8, 17, 31, 0.7));
}

.sb-pkg-anchor-ic {
  color: var(--sinora-gold);
  font-size: 15px;
  line-height: 1.5;
}

.sb-pkg-anchor p {
  margin: 0;
  color: rgba(244, 235, 221, 0.85);
  font-size: 13.5px;
  line-height: 1.65;
}

.sb-pkg-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.sb-pkg-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 24px;
  border: 1px solid var(--sinora-border-soft);
  border-radius: 22px;
  background: rgba(8, 17, 31, 0.85);
  transition: border-color 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}

.sb-pkg-card:hover {
  transform: translateY(-3px);
  border-color: var(--sinora-gold-border);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.3);
}

.sb-pkg-card.is-recommended {
  border-color: var(--sinora-gold-border);
  background: linear-gradient(160deg, rgba(201, 169, 97, 0.16), rgba(8, 17, 31, 0.96));
  box-shadow: 0 26px 60px rgba(201, 169, 97, 0.12);
}

.sb-pkg-card.is-muted {
  opacity: 0.82;
}

.sb-pkg-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 5px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, #d8bd7b, #a98748);
  color: #050b14;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}

.sb-pkg-role {
  color: var(--sinora-gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.sb-pkg-name {
  margin: 8px 0 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  color: #fffaf1;
  font-size: 29px;
  font-weight: 600;
  line-height: 1.08;
}

.sb-pkg-strike {
  margin-top: 8px;
  color: rgba(244, 235, 221, 0.5);
  font-size: 12.5px;
  text-decoration: line-through;
}

.sb-pkg-price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 5px 9px;
  margin-top: 6px;
  color: #fffaf1;
  font-size: 30px;
  font-weight: 700;
}

.sb-pkg-price span {
  font-size: 14px;
  font-weight: 500;
  color: var(--sinora-cream-muted);
}

.sb-pkg-price .sb-pkg-old {
  font-size: 15px;
  font-weight: 500;
  color: rgba(244, 235, 221, 0.42);
  text-decoration: line-through;
}

.sb-pkg-price .sb-pkg-now {
  font-size: 30px;
  font-weight: 700;
  color: #fffaf1;
}

.sb-pkg-price .sb-pkg-now span {
  font-size: 14px;
  font-weight: 500;
  color: var(--sinora-cream-muted);
}

.sb-pkg-price .sb-pkg-disc-chip {
  align-self: center;
  padding: 3px 9px;
  border-radius: 999px;
  border: 1px solid rgba(134, 239, 172, 0.35);
  background: rgba(134, 239, 172, 0.13);
  color: var(--sinora-success);
  font-size: 10.5px;
  font-weight: 700;
}

.sb-pkg-free {
  color: var(--sinora-success);
}

.sb-pkg-tagline {
  margin: 12px 0 0;
  color: var(--sinora-cream-muted);
  font-size: 13px;
  line-height: 1.6;
}

.sb-pkg-gift {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  margin-top: 13px;
  padding: 9px 12px;
  border: 1px solid rgba(134, 239, 172, 0.32);
  border-radius: 11px;
  background: rgba(134, 239, 172, 0.09);
  color: var(--sinora-success);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
}

.sb-pkg-card.is-recommended .sb-pkg-gift {
  border-color: rgba(134, 239, 172, 0.5);
  background: rgba(134, 239, 172, 0.14);
}

.sb-pkg-features {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sb-pkg-features li {
  position: relative;
  padding-left: 22px;
  color: rgba(244, 235, 221, 0.82);
  font-size: 12.5px;
  line-height: 1.5;
}

.sb-pkg-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--sinora-gold);
  font-weight: 700;
}

.sb-pkg-note {
  display: block;
  margin-top: auto;
  padding-top: 16px;
  color: rgba(244, 235, 221, 0.55);
  font-size: 11.5px;
  font-style: italic;
}

.sb-pkg-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-top: 14px;
  border: 1px solid var(--sinora-gold-border);
  border-radius: 14px;
  background: rgba(201, 169, 97, 0.08);
  color: var(--sinora-gold);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.sb-pkg-card.is-recommended .sb-pkg-cta {
  background: linear-gradient(135deg, #d8bd7b, #a98748);
  color: #050b14;
  border-color: rgba(201, 169, 97, 0.68);
}

.sb-pkg-cta:hover {
  transform: translateY(-1px);
  border-color: var(--sinora-gold-border);
}

.sb-pkg-foot {
  max-width: 760px;
  margin: 22px auto 0;
  text-align: center;
  color: rgba(244, 235, 221, 0.5);
  font-size: 12px;
  line-height: 1.6;
}

/* ---- Responsive ---- */
@media (max-width: 1080px) {
  .sb-pkg-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 920px) {
  .sb-mode-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .sb-mode-tabs {
    grid-template-columns: 1fr;
  }

  .sb-mode-tabs.is-mobile-collapsed .sb-mode-tab:not(.is-active) {
    display: none;
  }

  .sb-mode-tabs.is-mobile-collapsed .sb-mode-tab.is-active {
    animation: sbFadeUp 280ms ease both;
  }

  .sb-mode-back {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 12px;
    min-height: 44px;
    padding: 10px 16px;
    border: 1px solid rgba(201, 169, 97, 0.28);
    border-radius: 14px;
    background: rgba(8, 17, 31, 0.72);
    color: rgba(244, 235, 221, 0.86);
    font-size: 14px;
    font-weight: 600;
    font-family: inherit;
    transition: border-color 180ms ease, background 180ms ease, color 180ms ease;
  }

  .sb-mode-back:hover {
    border-color: rgba(201, 169, 97, 0.5);
    background: rgba(201, 169, 97, 0.08);
    color: var(--sinora-gold);
  }

  .sb-mode-back[hidden] {
    display: none !important;
  }

  .sb-questions.is-mobile-wizard {
    min-height: 300px;
  }

  .sb-questions.is-mobile-wizard .sb-question {
    margin-top: 0;
    padding-top: 0;
    border-top: 0;
  }

  .sb-question.is-entering {
    animation: sbQuestionIn 280ms ease both;
  }

  .sb-question.is-exiting {
    animation: sbQuestionOut 240ms ease forwards;
    pointer-events: none;
  }

  .sb-q-progress {
    margin-bottom: 18px;
    text-align: center;
  }

  .sb-q-progress-track {
    height: 3px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    overflow: hidden;
  }

  .sb-q-progress-fill {
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #b18843, #d2ab67, #f3d18c);
    box-shadow: 0 0 10px rgba(210, 171, 103, 0.45);
    transition: width 320ms cubic-bezier(0.65, 0, 0.35, 1);
  }

  .sb-q-progress-label {
    display: block;
    margin-top: 10px;
    color: rgba(244, 235, 221, 0.72);
    font-size: 12.5px;
    letter-spacing: 0;
  }

  .sb-q-advance {
    width: 100%;
    margin-top: 14px;
    min-height: 42px;
    padding: 10px 16px;
    border: 1px solid rgba(201, 169, 97, 0.35);
    border-radius: 12px;
    background: rgba(201, 169, 97, 0.1);
    color: var(--sinora-gold);
    font-size: 14px;
    font-weight: 700;
    font-family: inherit;
    transition: background 180ms ease, border-color 180ms ease;
  }

  .sb-q-advance:hover {
    background: rgba(201, 169, 97, 0.16);
    border-color: rgba(201, 169, 97, 0.55);
  }

  .sb-pkg-grid,
  .sb-sample-grid {
    grid-template-columns: 1fr;
  }

  .sb-sample-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* ============================================================
   PACKAGE FIRST-ORDER TOGGLE + GROWTH SYSTEM LANDSCAPE SPOTLIGHT
   ============================================================ */

.sb-firstorder-pkg {
  max-width: 580px;
  margin: 0 auto 26px;
  justify-content: center;
}

/* ---- Landscape spotlight ---- */
.sb-spotlight {
  position: relative;
  margin-top: 28px;
  padding: 30px;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(201, 169, 97, 0.55);
  background:
    radial-gradient(1100px 380px at 12% -20%, rgba(240, 214, 147, 0.24), transparent 60%),
    linear-gradient(135deg, rgba(201, 169, 97, 0.22), rgba(8, 17, 31, 0.95));
  box-shadow: 0 30px 80px rgba(201, 169, 97, 0.14);
}

.sb-spot-dots {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.sb-spot-dots span {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: radial-gradient(circle at 35% 30%, #f7e8c2, #c9a961);
  box-shadow: 0 0 10px rgba(201, 169, 97, 0.6);
  opacity: 0.5;
  animation: sbFloat 7s ease-in-out infinite;
}

.sb-spot-dots span:nth-child(1) { left: 6%; top: 18%; animation-delay: 0s; }
.sb-spot-dots span:nth-child(2) { left: 14%; top: 64%; animation-delay: 0.6s; }
.sb-spot-dots span:nth-child(3) { left: 24%; top: 36%; animation-delay: 1.2s; }
.sb-spot-dots span:nth-child(4) { left: 35%; top: 80%; animation-delay: 0.3s; }
.sb-spot-dots span:nth-child(5) { left: 47%; top: 14%; animation-delay: 1.5s; }
.sb-spot-dots span:nth-child(6) { left: 59%; top: 68%; animation-delay: 0.9s; }
.sb-spot-dots span:nth-child(7) { left: 70%; top: 28%; animation-delay: 1.8s; }
.sb-spot-dots span:nth-child(8) { left: 80%; top: 74%; animation-delay: 0.4s; }
.sb-spot-dots span:nth-child(9) { left: 88%; top: 40%; animation-delay: 1.1s; }
.sb-spot-dots span:nth-child(10) { left: 95%; top: 22%; animation-delay: 0.7s; }

@keyframes sbFloat {
  0%, 100% { transform: translateY(0); opacity: 0.4; }
  50% { transform: translateY(-12px); opacity: 0.85; }
}

.sb-spot-head {
  position: relative;
  z-index: 1;
}

.sb-spot-kicker {
  color: var(--sinora-gold);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.sb-spot-title {
  margin: 8px 0 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 44px;
  font-weight: 600;
  line-height: 1;
  color: #fffaf1;
}

.sb-spot-lead {
  margin: 10px 0 0;
  max-width: 650px;
  color: rgba(244, 235, 221, 0.82);
  font-size: 14px;
  line-height: 1.6;
}

.sb-spot-body {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.4fr 0.9fr;
  gap: 18px;
  margin-top: 22px;
}

.sb-spot-box {
  display: flex;
  align-items: center;
  min-height: 180px;
  padding: 24px;
  border: 1px solid rgba(201, 169, 97, 0.4);
  border-radius: 18px;
  background: rgba(5, 11, 20, 0.5);
}

.sb-spot-content {
  animation: sbSpotFade 360ms ease both;
}

.sb-spot-content h4 {
  margin: 0 0 9px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 25px;
  font-weight: 600;
  color: var(--sinora-gold);
}

.sb-spot-content p {
  margin: 0;
  color: rgba(244, 235, 221, 0.86);
  font-size: 14px;
  line-height: 1.7;
}

@keyframes sbSpotFade {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: none; }
}

.sb-spot-tabs {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sb-spot-tab {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 13px 15px;
  border: 1px solid var(--sinora-border-soft);
  border-radius: 13px;
  background: rgba(8, 17, 31, 0.6);
  color: var(--sinora-cream);
  font-size: 13.5px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.sb-spot-tab:hover {
  border-color: var(--sinora-gold-border);
  transform: translateX(2px);
}

.sb-spot-tab span:last-child {
  color: var(--sinora-gold);
  opacity: 0.45;
  transition: opacity 180ms ease, transform 180ms ease;
}

.sb-spot-tab.is-active {
  border-color: var(--sinora-gold-border);
  background: linear-gradient(135deg, rgba(201, 169, 97, 0.2), rgba(8, 17, 31, 0.7));
}

.sb-spot-tab.is-active span:last-child {
  opacity: 1;
  transform: translateX(3px);
}

.sb-spot-foot {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid rgba(201, 169, 97, 0.25);
}

.sb-spot-price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px 10px;
}

.sb-spot-old {
  color: rgba(244, 235, 221, 0.45);
  font-size: 16px;
  text-decoration: line-through;
}

.sb-spot-now {
  color: #fffaf1;
  font-size: 34px;
  font-weight: 700;
}

.sb-spot-now span {
  font-size: 15px;
  font-weight: 500;
  color: var(--sinora-cream-muted);
}

.sb-spot-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 26px;
  border-radius: 14px;
  background: linear-gradient(135deg, #f0d693, #c9a961);
  color: #1a1208;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 14px 34px rgba(201, 169, 97, 0.3);
  transition: transform 180ms ease;
}

.sb-spot-cta:hover {
  transform: translateY(-2px);
}

@media (max-width: 760px) {
  .sb-spot-body {
    grid-template-columns: 1fr;
  }

  .sb-spot-title {
    font-size: 34px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .sb-spot-dots span,
  .sb-start-orb {
    animation: none;
  }
}
