:root {
  --orange: #ff6500;
  --orange-2: #e55b00;
  --orange-light: #ff8433;
  --orange-soft: #fef0e6;
  --orange-tint: #fef0e6;
  --primary: #1c333d;
  --ink: #1c333d;
  --dark: #0a0a0a;
  --text: #555555;
  --dark-grey: #555555;
  --muted: #8a8a8a;
  --text-grey: #8a8a8a;
  --faint: rgba(28, 51, 61, 0.45);
  --line: #e8e8e8;
  --border: #e8e8e8;
  --line-soft: #efefef;
  --hover: rgba(28, 51, 61, 0.05);
  --surface: #ffffff;
  --white: #ffffff;
  --surface-alt: #ffffff;
  --light-grey: #f8f9fa;
  --ok-bg: rgba(40, 199, 111, 0.12);
  --ok-fg: #28c76f;
  --bad-bg: rgba(255, 76, 81, 0.12);
  --bad-fg: #ff4c51;
  --warn-bg: rgba(255, 159, 67, 0.12);
  --warn-fg: #ff9f43;
  --neutral-bg: rgba(128, 131, 144, 0.12);
  --neutral-fg: #808390;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "DM Sans", "Helvetica Neue", Arial, sans-serif;
  --mono: ui-monospace, Menlo, Consolas, monospace;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--text);
  background: var(--surface-alt);
  font-size: 14px;
  line-height: 1.52;
  -webkit-font-smoothing: antialiased;
}
strong,
b {
  color: var(--ink);
  font-weight: 600;
}
code {
  font-family: var(--mono);
  font-size: 0.85em;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 5px;
  padding: 1px 6px;
  color: var(--ink);
}

header.mast {
  background: var(--orange);
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 50;
}
.mast-in {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 28px;
  max-width: 1480px;
  margin: 0 auto;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand img {
  height: 32px;
  width: auto;
  filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.12));
}
.brand .word {
  font-weight: 700;
  font-size: 19px;
  letter-spacing: 0.24em;
  line-height: 1;
  color: #fff;
}
.brand .tag {
  font-size: 8px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.92;
  margin-top: 6px;
  color: #fff;
}
.mast-hc {
  margin-left: auto;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
  opacity: 0.95;
  font-weight: 500;
}
@media (max-width: 760px) {
  .brand .tag,
  .mast-hc {
    display: none;
  }
}

.shell {
  display: grid;
  grid-template-columns: 264px minmax(0, 1fr) 232px;
  gap: 0;
  max-width: 1480px;
  margin: 0 auto;
  align-items: start;
}
@media (max-width: 1180px) {
  .shell {
    grid-template-columns: 240px minmax(0, 1fr);
  }
  .rail-right {
    display: none;
  }
}
@media (max-width: 780px) {
  .shell {
    grid-template-columns: 1fr;
  }
  .rail-left {
    position: static !important;
    height: auto !important;
    max-height: none !important;
    overflow: visible !important;
    border-right: none !important;
    border-bottom: 1px solid var(--line);
  }
}

.rail-left {
  position: sticky;
  top: 64px;
  height: calc(100vh - 64px);
  overflow-y: auto;
  background: #fff;
  border-right: 1px solid var(--line);
  padding: 18px 14px;
}
.rail-left .lh {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--faint);
  padding: 0 11px;
  margin-bottom: 9px;
}
.mod {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  text-align: left;
  border: none;
  background: none;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 13.5px;
  color: var(--text);
  padding: 7px 11px;
  border-radius: 8px;
  margin-bottom: 2px;
  border-left: 2px solid transparent;
  transition: 0.12s;
}
.mod:hover {
  background: var(--hover);
  color: var(--ink);
}
.mod .mic {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 7px;
  background: var(--hover);
  color: var(--muted);
  flex: none;
  transition: 0.12s;
}
.mod .mic svg {
  width: 15px;
  height: 15px;
}
.mod.active {
  background: var(--orange-tint);
  color: var(--orange);
  font-weight: 600;
  border-left-color: var(--orange);
}
.mod.active .mic {
  background: var(--orange);
  color: #fff;
}

.content {
  padding: 26px 44px 52px;
  min-height: 60vh;
  background: var(--surface-alt);
}
@media (max-width: 780px) {
  .content {
    padding: 20px 20px 44px;
  }
}
.hc-back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--muted);
  text-decoration: none;
  padding: 6px 13px 6px 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  margin: 0 0 14px 4px;
  cursor: pointer;
  transition: 0.14s;
}
.hc-back:hover {
  color: var(--orange);
  border-color: var(--orange);
  background: var(--orange-tint);
}
.hc-back svg {
  width: 14px;
  height: 14px;
  display: block;
}

.crumb {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.04em;
  margin-bottom: 9px;
}
.crumb b {
  color: var(--orange);
  font-weight: 600;
}
.content h1 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 36px;
  line-height: 1.12;
  color: var(--ink);
  margin: 0 0 4px;
  letter-spacing: 0.005em;
}
.content .lead {
  font-size: 15.5px;
  line-height: 1.5;
  color: var(--text);
  margin: 8px 0 6px;
  max-width: 760px;
}
.content .crumbline {
  font-size: 12.5px;
  color: var(--muted);
  margin: 0 0 4px;
}
.content h2 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 23px;
  line-height: 1.22;
  color: var(--ink);
  margin: 24px 0 8px;
  scroll-margin-top: 80px;
  border-top: 1px solid var(--line-soft);
  padding-top: 16px;
}
.content h2:first-of-type {
  border-top: none;
  padding-top: 8px;
}
.content p {
  margin: 0 0 9px;
  max-width: 760px;
}
.content .sublabel {
  margin: 16px 0 7px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--orange-2);
}
.content .muted {
  color: var(--muted);
  font-weight: 400;
}
.content ul.bul {
  margin: 0 0 11px;
  padding-left: 0;
  list-style: none;
  max-width: 760px;
}
.content ul.bul li {
  position: relative;
  padding-left: 19px;
  margin-bottom: 5px;
  line-height: 1.46;
}
.content ul.bul li::before {
  content: "";
  position: absolute;
  left: 3px;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 2px;
  background: var(--orange);
  transform: rotate(45deg);
}

ol.steps {
  counter-reset: st;
  list-style: none;
  margin: 6px 0 12px;
  padding: 0;
  max-width: 760px;
}
ol.steps li {
  position: relative;
  counter-increment: st;
  padding: 8px 14px 8px 42px;
  margin-bottom: 5px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  line-height: 1.45;
}
ol.steps li::before {
  content: counter(st);
  position: absolute;
  left: 11px;
  top: 7px;
  width: 21px;
  height: 21px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-weight: 600;
  font-size: 11.5px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ftab {
  width: 100%;
  max-width: 840px;
  border-collapse: collapse;
  font-size: 13px;
  margin: 6px 0 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
}
.ftab thead th {
  background: var(--ink);
  color: #fff;
  text-align: left;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 8px 13px;
}
.ftab tbody td {
  padding: 8px 13px;
  border-top: 1px solid var(--line-soft);
  vertical-align: top;
  line-height: 1.45;
}
.ftab tbody tr:nth-child(even) td {
  background: var(--surface-alt);
}
.ftab .t-name {
  font-weight: 600;
  color: var(--ink);
}

.callout {
  max-width: 760px;
  border-left: 3px solid var(--neutral-fg);
  border-radius: 8px;
  padding: 10px 13px;
  margin: 11px 0;
  background: var(--neutral-bg);
}
.callout .co-h {
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 3px;
}
.callout p {
  margin: 0;
  max-width: none;
}
.callout.tip {
  border-left-color: var(--orange);
  background: var(--orange-tint);
}
.callout.tip .co-h {
  color: var(--orange-2);
}
.callout.warn {
  border-left-color: var(--warn-fg);
  background: var(--warn-bg);
}
.callout.warn .co-h {
  color: #b26a12;
}
.callout.best {
  border-left-color: var(--ok-fg);
  background: var(--ok-bg);
}
.callout.best .co-h {
  color: #1e9e57;
}
.callout.note {
  border-left-color: var(--neutral-fg);
  background: var(--neutral-bg);
}
.callout.note .co-h {
  color: var(--muted);
}

.chip {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 2px 9px;
  border-radius: 999px;
  line-height: 1.5;
  white-space: nowrap;
  vertical-align: middle;
}
.chip.okchip {
  background: var(--ok-bg);
  color: #1e9e57;
}
.chip.badchip {
  background: var(--bad-bg);
  color: #e03b40;
}
.chip.warnchip {
  background: var(--warn-bg);
  color: #c2761a;
}
.chip.neutralchip {
  background: var(--neutral-bg);
  color: var(--neutral-fg);
}

.faq {
  max-width: 760px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  margin: 4px 0 12px;
  background: #fff;
}
.faq details {
  border-top: 1px solid var(--line-soft);
}
.faq details:first-child {
  border-top: none;
}
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 9px 36px 9px 14px;
  font-weight: 600;
  color: var(--ink);
  font-size: 13px;
  line-height: 1.4;
  position: relative;
  transition: 0.12s;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary:hover {
  background: var(--hover);
}
.faq summary::after {
  content: "";
  position: absolute;
  right: 15px;
  top: 14px;
  width: 7px;
  height: 7px;
  border-right: 2px solid var(--orange);
  border-bottom: 2px solid var(--orange);
  transform: rotate(45deg);
  transition: 0.18s;
}
.faq details[open] summary::after {
  transform: rotate(-135deg);
  top: 17px;
}
.faq .faq-a {
  padding: 0 14px 10px;
  color: var(--text);
  font-size: 13px;
  line-height: 1.5;
}
.faq .faq-a p {
  margin: 0;
  max-width: none;
}

/* ── Interactive plan picker ── */
.aq-tool {
  max-width: 760px;
  margin: 22px 0;
  padding: 6px 22px 22px;
  border: 1px solid var(--orange-soft);
  border-radius: 14px;
  background: var(--orange-tint);
  box-shadow: 0 6px 22px rgba(255, 101, 0, 0.07);
  position: relative;
}
.aq-tool::before {
  content: "Interactive";
  position: absolute;
  top: 18px;
  right: 18px;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--orange);
  background: #fff;
  border: 1px solid var(--orange-soft);
  border-radius: 999px;
  padding: 3px 11px;
}
.content .aq-tool .aq-tool-h {
  border-top: none;
  padding-top: 0;
  margin-top: 14px;
  padding-right: 96px;
}
.aq-tool .aq-picker {
  margin-bottom: 0;
}
.aq-picker {
  max-width: 760px;
  margin: 8px 0 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px 18px;
  align-items: flex-end;
}
.aq-field {
  flex: 1 1 240px;
  min-width: 200px;
}
.aq-field.bill {
  flex: 0 1 200px;
}
.aq-picker label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--orange-2);
  margin-bottom: 6px;
}
.aq-select {
  width: 100%;
  font-family: var(--sans);
  font-size: 14px;
  color: var(--ink);
  background-color: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 38px 10px 13px;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23ff6500' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 13px center;
  transition: 0.14s;
}
.aq-select:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px var(--orange-tint);
}
.aq-detail {
  margin-top: 14px;
}

/* ── Setup services card grid ── */
.aq-svc {
  margin: 10px 0 16px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 14px;
}
.aq-svc .svc {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  padding: 16px 17px 15px;
}
.aq-svc .svc-h {
  font-weight: 700;
  font-size: 14px;
  color: var(--ink);
  margin-bottom: 7px;
}
.aq-svc .svc-d {
  font-size: 12.5px;
  line-height: 1.5;
  color: var(--text);
  margin: 0 0 16px;
  max-width: none;
  flex: 1;
}
.aq-svc .svc-foot {
  margin-top: auto;
}
.aq-svc .svc-price {
  font-weight: 700;
  font-size: 14px;
  color: var(--ink);
}
.aq-svc .svc-note {
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
}
.aq-empty {
  max-width: 760px;
  border: 1px dashed var(--line);
  border-radius: 10px;
  padding: 18px 16px;
  color: var(--muted);
  font-size: 13.5px;
  background: var(--surface-alt);
}
.aq-card {
  max-width: 760px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(28, 51, 61, 0.06);
}
.aq-head {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 4px 12px;
  padding: 14px 16px;
  background: var(--ink);
  color: #fff;
}
.aq-head .aq-name {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  line-height: 1;
}
.aq-head .aq-fam {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.7;
}
.aq-head .aq-price {
  margin-left: auto;
  font-size: 19px;
  font-weight: 700;
  color: var(--orange-light);
  white-space: nowrap;
}
.aq-head .aq-price small {
  font-size: 12px;
  font-weight: 500;
  opacity: 0.85;
}
.aq-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 22px;
  padding: 11px 16px;
  border-bottom: 1px solid var(--line-soft);
  font-size: 12.5px;
  color: var(--muted);
}
.aq-meta b {
  color: var(--ink);
}
.aq-note {
  padding: 10px 16px;
  font-size: 13px;
  color: var(--text);
  background: var(--surface-alt);
  border-bottom: 1px solid var(--line-soft);
}
.aq-sub {
  padding: 12px 16px 2px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--orange-2);
}
.aq-addons {
  list-style: none;
  margin: 0;
  padding: 4px 8px 10px;
}
.aq-addon {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 8px;
  border-top: 1px solid var(--line-soft);
}
.aq-addon:first-child {
  border-top: none;
}
.aq-addon .aq-mname {
  font-weight: 600;
  color: var(--ink);
  flex: none;
  min-width: 116px;
}
.aq-addon .aq-mdesc {
  font-size: 12px;
  color: var(--muted);
  flex: 1;
  min-width: 120px;
}
.aq-addon .aq-stat {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
}
.aq-addon .aq-pr {
  font-weight: 700;
  color: var(--ink);
}
.aq-addon .aq-pr small {
  font-weight: 500;
  color: var(--muted);
}
.aq-addon a.aq-link {
  font-size: 12px;
  font-weight: 600;
  color: var(--orange);
  text-decoration: none;
}
.aq-addon a.aq-link:hover {
  text-decoration: underline;
}
@media (max-width: 620px) {
  .aq-addon {
    flex-wrap: wrap;
    gap: 4px 10px;
  }
  .aq-addon .aq-mdesc {
    flex-basis: 100%;
    order: 3;
  }
  .aq-addon .aq-stat {
    margin-left: auto;
  }
}

.rail-right {
  position: sticky;
  top: 64px;
  height: calc(100vh - 64px);
  overflow-y: auto;
  padding: 26px 18px;
}
.rail-right .rh {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 9px;
}
.rail-right a {
  display: block;
  padding: 4px 0 4px 12px;
  color: var(--muted);
  border-left: 2px solid var(--line);
  line-height: 1.35;
  font-size: 12.5px;
  cursor: pointer;
  transition: 0.12s;
}
.rail-right a:hover {
  color: var(--orange);
  border-left-color: var(--orange);
}
.rail-right a.on {
  color: var(--orange);
  border-left-color: var(--orange);
  font-weight: 600;
}
