/* ── Buttons ── */
.btn {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 13.5px;
  padding: 13px 26px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
  transition: filter var(--ease), transform var(--ease), background var(--ease), color var(--ease), border-color var(--ease);
  text-decoration: none;
  letter-spacing: .03em;
  line-height: 1;
  white-space: nowrap;
}
.btn-gold {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}
.btn-gold:hover {
  filter: brightness(1.09);
  transform: translateY(-1px);
}
.btn-gold:focus-visible { outline: 2px solid var(--gold-md); outline-offset: 3px; }

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.42);
}
.btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,.06);
  transform: translateY(-1px);
}
.btn-green {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}
.btn-green:hover {
  background: var(--green-md);
  border-color: var(--green-md);
  transform: translateY(-1px);
}
.btn-sm { padding: 9px 18px; font-size: var(--text-xs); }
.btn-lg { padding: 16px 34px; font-size: var(--text-md); }
.btn-full { width: 100%; justify-content: center; }

/* ── Trust Badges ── */
.trust-strip {
  background: var(--white);
  padding: var(--sp-10) 0;
  border-bottom: 1px solid var(--border);
}
.trust-strip__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-10);
  flex-wrap: wrap;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: var(--text-sm);
  color: var(--stone);
}
.trust-badge__icon {
  width: 40px; height: 40px;
  background: var(--gold-lt);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.trust-badge__icon svg { color: var(--gold); }

/* ── Service Cards ── */
.service-card {
  background: var(--white);
  border-top: 4px solid var(--gold);
  border-radius: var(--radius-md);
  padding: var(--sp-10) var(--sp-8);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  transition: box-shadow var(--ease), transform var(--ease);
}
.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.service-card__ghost {
  position: absolute;
  top: -10px; right: 10px;
  font-family: var(--font-display);
  font-size: 88px;
  color: var(--green-lt);
  opacity: .25;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.service-card__icon {
  width: 52px; height: 52px;
  background: var(--gold-lt);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-6);
  position: relative;
}
.service-card__icon svg { color: var(--gold); width: 26px; height: 26px; }
.service-card__name {
  font-family: var(--font-display);
  font-size: 34px;
  color: var(--green);
  letter-spacing: .04em;
  margin-bottom: var(--sp-4);
  line-height: 1;
}
.service-card__lead {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--stone);
  margin-bottom: var(--sp-6);
  line-height: 1.6;
}
.service-card__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-3) var(--sp-5);
  margin-bottom: var(--sp-8);
}
.service-card__list li {
  font-size: 12.5px;
  font-family: var(--font-body);
  color: var(--stone);
  padding-left: 14px;
  position: relative;
}
.service-card__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 5px; height: 5px;
  background: var(--gold);
  border-radius: 50%;
}
.service-card__cta {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: var(--text-sm);
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
  transition: gap var(--ease), color var(--ease);
}
.service-card__cta:hover { color: var(--gold-md); gap: var(--sp-5); }

/* ── Before/After Gallery Cards ── */
.ba-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.ba-card__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 200px;
}
.ba-card__before,
.ba-card__after {
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: var(--sp-4);
}
.ba-card__before {
  background: linear-gradient(to bottom, var(--green), var(--ink));
}
.ba-card__after {
  background: linear-gradient(to bottom, var(--green-lt), var(--green-md));
}
.ba-card__label {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.55);
}
.ba-card__foot {
  background: var(--white);
  padding: var(--sp-5) var(--sp-6);
}
.ba-card__job {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: var(--text-sm);
  color: var(--green);
  margin-bottom: var(--sp-2);
}
.ba-card__city {
  font-size: var(--text-xs);
  color: rgba(76,76,72,.6);
  font-family: var(--font-head);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: var(--sp-3);
}
.ba-card__result {
  font-size: var(--text-sm);
  color: var(--stone);
  margin-bottom: var(--sp-4);
}
.ba-card__link {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: var(--text-xs);
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .08em;
}

/* ── Audience Cards ── */
.audience-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: var(--sp-8);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--ease), transform var(--ease);
}
.audience-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.audience-card__icon {
  width: 48px; height: 48px;
  background: var(--gold-lt);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-5);
}
.audience-card__icon svg { color: var(--gold); width: 24px; height: 24px; }
.audience-card__name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: var(--text-lg);
  color: var(--ink);
  margin-bottom: var(--sp-5);
}
.audience-card__pains {
  margin-bottom: var(--sp-6);
}
.audience-card__pains li {
  font-size: var(--text-sm);
  color: var(--stone);
  padding: var(--sp-2) 0 var(--sp-2) 22px;
  position: relative;
}
.audience-card__pains li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
  font-size: var(--text-sm);
}
.audience-card__quote {
  font-style: italic;
  font-size: var(--text-sm);
  color: var(--stone);
  border-left: 3px solid var(--gold);
  padding-left: var(--sp-5);
  margin-bottom: var(--sp-6);
  line-height: 1.6;
}

/* ── Program Cards ── */
.program-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-md);
  padding: var(--sp-8);
  transition: background var(--ease);
}
.program-card:hover { background: rgba(255,255,255,.1); }
.program-card__icon {
  width: 48px; height: 48px;
  background: rgba(196,147,26,.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--sp-5);
}
.program-card__icon svg { color: var(--gold); width: 24px; height: 24px; }
.program-card__for {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: var(--text-xs);
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--sp-3);
}
.program-card__name {
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--white);
  letter-spacing: .04em;
  margin-bottom: var(--sp-5);
  line-height: 1.1;
}
.program-card__desc {
  font-size: var(--text-sm);
  color: rgba(255,255,255,.72);
  margin-bottom: var(--sp-5);
  line-height: 1.6;
}
.program-card__includes {
  margin-bottom: var(--sp-6);
}
.program-card__includes li {
  font-size: var(--text-sm);
  color: rgba(255,255,255,.65);
  padding: var(--sp-2) 0 var(--sp-2) 18px;
  position: relative;
}
.program-card__includes li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: var(--text-xs);
  line-height: 1.7;
}
.program-card__cta {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: var(--text-sm);
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
  transition: gap var(--ease);
}
.program-card__cta:hover { gap: var(--sp-5); }

/* ── Review Cards ── */
.review-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: var(--sp-8);
  box-shadow: var(--shadow-sm);
}
.review-card__stars { color: var(--gold); font-size: var(--text-lg); margin-bottom: var(--sp-4); letter-spacing: 2px; }
.review-card__text {
  font-size: var(--text-base);
  color: var(--stone);
  line-height: 1.7;
  margin-bottom: var(--sp-6);
  font-style: italic;
}
.review-card__placeholder {
  display: inline-block;
  background: var(--gold-lt);
  color: var(--stone);
  font-size: var(--text-xs);
  font-family: var(--font-head);
  font-weight: 600;
  padding: var(--sp-3) var(--sp-5);
  border-radius: var(--radius);
  border: 1px dashed var(--gold);
  margin-bottom: var(--sp-5);
}
.review-card__author {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: var(--text-sm);
  color: var(--ink);
}
.review-card__meta {
  font-size: var(--text-xs);
  color: rgba(76,76,72,.6);
  font-family: var(--font-head);
}

/* ── Process Steps ── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-8);
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 28px; left: calc(16.66% + 28px);
  right: calc(16.66% + 28px);
  height: 2px;
  background: var(--border);
}
.process-step {
  text-align: center;
  padding: var(--sp-8);
}
.process-step__num {
  width: 56px; height: 56px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--ink);
  margin: 0 auto var(--sp-6);
  position: relative;
  z-index: 1;
}
.process-step__title {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: var(--text-lg);
  color: var(--ink);
  margin-bottom: var(--sp-4);
}
.process-step__desc {
  font-size: var(--text-base);
  color: var(--stone);
  line-height: 1.65;
}

/* ── FAQ Accordion ── */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: var(--sp-6) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-5);
  cursor: pointer;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: var(--text-md);
  color: var(--ink);
  transition: color var(--ease);
}
.faq-question:hover { color: var(--green-md); }
.faq-question:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
.faq-icon {
  width: 24px; height: 24px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  font-size: var(--text-lg);
  font-weight: 400;
  transition: transform var(--ease), background var(--ease);
  line-height: 1;
}
.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
  background: var(--gold);
  color: var(--ink);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .32s ease;
}
.faq-answer__inner {
  padding: 0 0 var(--sp-6);
  font-size: var(--text-base);
  color: var(--stone);
  line-height: 1.7;
}
.faq-answer__inner p + p { margin-top: var(--sp-4); }

/* ── Form ── */
.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--sp-10);
  box-shadow: var(--shadow-md);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-5);
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  margin-bottom: var(--sp-6);
}
.form-label {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: var(--text-sm);
  color: var(--ink);
}
.form-label .req {
  color: var(--gold);
  margin-left: 2px;
}
.form-input,
.form-select,
.form-textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--stone);
  background: var(--cream);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 11px 14px;
  transition: border-color var(--ease), box-shadow var(--ease);
  appearance: none;
  -webkit-appearance: none;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(27,58,29,.1);
}
.form-textarea { min-height: 110px; resize: vertical; }
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%234C4C48' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}
.form-file-label {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  padding: var(--sp-6);
  cursor: pointer;
  font-family: var(--font-head);
  font-size: var(--text-sm);
  color: var(--stone);
  transition: border-color var(--ease), background var(--ease);
}
.form-file-label:hover { border-color: var(--green); background: rgba(27,58,29,.03); }
.form-file-label svg { color: var(--gold); flex-shrink: 0; }
.form-file-input { position: absolute; opacity: 0; pointer-events: none; }
.form-radio-group,
.form-check-group {
  display: flex;
  gap: var(--sp-6);
  flex-wrap: wrap;
}
.form-radio-label,
.form-check-label {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: var(--text-base);
  color: var(--stone);
  cursor: pointer;
  font-family: var(--font-body);
}
.form-radio-label input,
.form-check-label input {
  width: 18px; height: 18px;
  accent-color: var(--green);
  cursor: pointer;
}
.form-reassure {
  margin-top: var(--sp-5);
  font-size: var(--text-sm);
  color: rgba(76,76,72,.65);
  font-family: var(--font-head);
  text-align: center;
}

/* ── Trust list ── */
.trust-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-4);
  padding: var(--sp-5) 0;
  border-bottom: 1px solid var(--border);
  font-size: var(--text-base);
  color: var(--stone);
  line-height: 1.5;
}
.trust-list li:last-child { border-bottom: none; }
.trust-list__check {
  width: 22px; height: 22px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
  color: var(--ink);
  font-weight: 700;
  font-size: 12px;
}

/* ── City chips ── */
.city-chips {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
  margin: var(--sp-6) 0;
}
.city-chip {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: var(--text-sm);
  padding: var(--sp-3) var(--sp-6);
  border-radius: 100px;
  transition: background var(--ease), color var(--ease), border-color var(--ease);
  display: inline-block;
  text-decoration: none;
}
.city-chip--primary {
  background: var(--green);
  color: var(--white);
  border: 2px solid var(--green);
}
.city-chip--primary:hover { background: var(--green-md); border-color: var(--green-md); }
.city-chip--standard {
  background: var(--white);
  color: var(--stone);
  border: 2px solid var(--border);
}
.city-chip--standard:hover { border-color: var(--green); color: var(--green); }

/* ── Comparison Table ── */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-body);
  font-size: var(--text-sm);
}
.compare-table th,
.compare-table td {
  padding: var(--sp-5) var(--sp-6);
  text-align: left;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.compare-table th {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: .08em;
}
.compare-table th:nth-child(2) { color: var(--gold); }
.compare-table th:nth-child(3) { color: rgba(255,255,255,.5); }
.compare-table td { color: rgba(255,255,255,.75); }
.compare-table td:first-child { color: rgba(255,255,255,.5); font-weight: 600; }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table__checkmark { color: var(--gold); font-weight: 700; }
.compare-table__cross { color: rgba(255,255,255,.3); }

/* ── Warning Callout ── */
.callout-warning {
  border-left: 4px solid var(--gold);
  background: rgba(196,147,26,.1);
  padding: var(--sp-6) var(--sp-8);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin-top: var(--sp-8);
}
.callout-warning p {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: var(--text-base);
  color: var(--gold-md);
  margin: 0;
  line-height: 1.6;
}

/* ── Platform badges ── */
.platform-badges {
  display: flex;
  gap: var(--sp-5);
  margin-top: var(--sp-8);
  flex-wrap: wrap;
}
.platform-badge {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-4) var(--sp-6);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: var(--text-sm);
  color: var(--stone);
  transition: border-color var(--ease), color var(--ease);
}
.platform-badge:hover { border-color: var(--green); color: var(--green); }

/* ── Section headers ── */
.section-header { text-align: center; margin-bottom: var(--sp-12); }
.section-header h2 { margin-bottom: var(--sp-5); }
.section-header p {
  font-size: var(--text-md);
  color: var(--stone);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.6;
}
.section-header--light h2 { color: var(--white); }
.section-header--light p { color: rgba(255,255,255,.72); }

@media (max-width: 768px) {
  .process-steps { grid-template-columns: 1fr; }
  .process-steps::before { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .service-card__list { grid-template-columns: 1fr; }
}
