.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0 20px;
  font-weight: 740;
  line-height: 1;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #ffffff;
  background: var(--ink);
  box-shadow: 0 18px 34px rgba(17, 18, 23, 0.16);
}

.button-primary:hover {
  background: var(--graphite);
}

.button-gold {
  color: var(--ink);
  background: linear-gradient(135deg, #f2d58e, #c79d45);
  box-shadow: 0 18px 34px rgba(184, 137, 47, 0.2);
}

.button-ghost {
  color: var(--ink);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.7);
}

.button-ghost:hover {
  background: #ffffff;
  border-color: var(--line-strong);
}

.button-wide {
  width: 100%;
}

.icon-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-weight: 740;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 13px;
  color: var(--ink-soft);
  background: rgba(255, 255, 255, 0.68);
  font-size: 0.9rem;
  font-weight: 650;
}

.card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 14px 44px rgba(17, 18, 23, 0.055);
}

.card.dark {
  color: #ffffff;
  background:
    radial-gradient(circle at 20% 0%, rgba(213, 181, 109, 0.22), transparent 18rem),
    linear-gradient(135deg, #111217, #24252c);
}

.card.dark h3,
.card.dark p,
.card.dark li {
  color: #ffffff;
}

.card.dark p,
.card.dark li {
  opacity: 0.72;
}

.card h3 {
  font-size: 1.24rem;
  line-height: 1.22;
}

.card p,
.card ul {
  margin-top: 12px;
}

.photo-frame {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: var(--radius-xl);
  aspect-ratio: 4 / 3;
  background: #dfe4dc;
  box-shadow: var(--shadow-soft);
}

.photo-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 42%, rgba(17, 18, 23, 0.58));
}

.photo-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-caption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.82rem;
  line-height: 1.45;
}

.photo-caption strong {
  display: block;
  color: #ffffff;
  font-size: 0.98rem;
}

.photo-caption span {
  border-radius: 999px;
  padding: 6px 10px;
  color: #ffffff;
  background: rgba(17, 18, 23, 0.58);
  font-size: 0.76rem;
  font-weight: 740;
  backdrop-filter: blur(12px);
}

.photo-insight {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  max-width: min(390px, calc(100% - 36px));
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 999px;
  padding: 10px 14px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 14px 34px rgba(17, 18, 23, 0.16);
  backdrop-filter: blur(18px);
}

.photo-insight i {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  color: var(--gold);
}

.photo-insight span {
  font-size: 0.84rem;
  font-weight: 760;
  line-height: 1.35;
}

.insight-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: start;
  gap: 18px;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius-lg);
  padding: 22px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(18px);
}

.insight-card .icon-box {
  flex: 0 0 auto;
  margin-bottom: 0;
}

.insight-card h3 {
  font-size: 1.18rem;
  line-height: 1.25;
}

.insight-card p {
  margin-top: 10px;
  font-size: 0.94rem;
  line-height: 1.6;
}

.scenario-card {
  overflow: hidden;
  padding: 0;
}

.scenario-card .scenario-image {
  height: 210px;
  overflow: hidden;
  background: var(--bg);
}

.scenario-card .scenario-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
}

.scenario-card:hover .scenario-image img {
  transform: scale(1.045);
}

.scenario-card .scenario-body {
  padding: 26px;
}

.scenario-card .icon-box {
  margin-bottom: 18px;
}

.media-panel {
  display: grid;
  gap: 16px;
}

.media-panel.two-up {
  grid-template-columns: 1.08fr 0.92fr;
}

.media-panel .photo-frame {
  min-height: 260px;
}

.media-panel .photo-frame.tall {
  min-height: 430px;
}

.icon-box {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 22px;
  border-radius: 16px;
  color: var(--gold);
  background: var(--gold-soft);
}

.check-list {
  display: grid;
  gap: 13px;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
  line-height: 1.65;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 0 5px rgba(184, 137, 47, 0.12);
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.metric {
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.72);
}

.metric strong {
  display: block;
  color: var(--ink);
  font-size: 1.6rem;
  line-height: 1;
}

.metric span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.price-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.price-head {
  padding: 34px;
  color: #ffffff;
  background:
    radial-gradient(circle at 12% 0%, rgba(213, 181, 109, 0.28), transparent 22rem),
    linear-gradient(135deg, #111217, #25262d);
}

.price-head h3,
.price-head p {
  color: #ffffff;
}

.price {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  gap: 8px;
  margin-top: 24px;
}

.price strong {
  color: #ffffff;
  font-size: clamp(3rem, 7vw, 5.2rem);
  line-height: 0.9;
}

.price span {
  padding-bottom: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
}

.price-body {
  padding: 34px;
}

.process-list {
  display: grid;
  gap: 16px;
  counter-reset: step;
}

.process-step {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px 26px 26px 86px;
  background: rgba(255, 255, 255, 0.78);
}

.process-step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 26px;
  top: 26px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 14px;
  color: var(--ink);
  background: linear-gradient(135deg, #f2d58e, #c79d45);
  font-weight: 820;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.78);
}

.faq-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
  border: 0;
  padding: 22px 24px;
  color: var(--ink);
  background: transparent;
  text-align: left;
  font-weight: 760;
  cursor: pointer;
}

.faq-button i {
  flex: 0 0 auto;
  transition: transform 180ms ease;
}

.faq-item.is-open .faq-button i {
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 0 24px 24px;
}

.faq-item.is-open .faq-answer {
  display: block;
}

.form-shell {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.form-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
}

.form-aside {
  padding: 34px;
  color: #ffffff;
  background:
    radial-gradient(circle at 8% 0%, rgba(213, 181, 109, 0.24), transparent 24rem),
    linear-gradient(145deg, #111217, #25262d);
}

.form-aside h2,
.form-aside h3,
.form-aside p,
.form-aside li {
  color: #ffffff;
}

.form-aside p,
.form-aside li {
  opacity: 0.72;
}

.audit-form {
  display: grid;
  gap: 26px;
  padding: 34px;
}

.form-section {
  display: grid;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.field label,
.field legend {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 740;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 13px 14px;
  color: var(--ink);
  background: #f8f8fa;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.field textarea {
  min-height: 118px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--gold);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(184, 137, 47, 0.15);
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.choice,
.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 13px;
  color: var(--muted);
  background: #f8f8fa;
  line-height: 1.55;
}

.choice input,
.consent input {
  margin-top: 3px;
  accent-color: var(--gold);
}

.form-honey {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.form-status {
  display: none;
  border-radius: 16px;
  padding: 14px 16px;
  color: #1d5936;
  background: #edf8f1;
  line-height: 1.55;
}

.form-status.is-visible {
  display: block;
}

.form-status.is-error {
  color: #7a231f;
  background: #fff1ef;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 0.92rem;
}

.breadcrumb a {
  color: var(--ink);
  font-weight: 700;
}

.quote-panel {
  border-left: 4px solid var(--gold);
  padding: 22px 26px;
  border-radius: 0 20px 20px 0;
  background: rgba(251, 247, 239, 0.82);
}

.social-proof-header {
  max-width: 860px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 38px;
}

.testimonial-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(17, 18, 23, 0.1);
  border-radius: var(--radius-lg);
  padding: 28px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-card);
}

.testimonial-card::before {
  content: "“";
  position: absolute;
  right: 24px;
  top: -14px;
  color: rgba(184, 137, 47, 0.13);
  font-size: 8rem;
  line-height: 1;
  font-weight: 800;
  pointer-events: none;
}

.testimonial-meta {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 22px;
}

.testimonial-meta span,
.testimonial-meta strong {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  min-height: 34px;
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 0.78rem;
  font-weight: 780;
  line-height: 1.25;
}

.testimonial-meta span {
  color: var(--gold);
  background: var(--gold-soft);
}

.testimonial-meta strong {
  color: var(--ink);
  background: #f1f2f4;
}

.testimonial-card h3 {
  position: relative;
  z-index: 1;
  max-width: 92%;
  font-size: 1.28rem;
  line-height: 1.25;
}

.testimonial-card blockquote {
  position: relative;
  z-index: 1;
  margin: 18px 0 0;
}

.testimonial-card p {
  font-size: 0.96rem;
  line-height: 1.7;
}

.testimonial-card footer {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-weight: 760;
}

.testimonial-card footer span {
  color: var(--muted);
  font-weight: 650;
}

.greed-disclaimer {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 22px;
  margin-top: 22px;
  border: 1px solid rgba(213, 181, 109, 0.26);
  border-radius: var(--radius-xl);
  padding: 30px;
  color: #ffffff;
  background:
    radial-gradient(circle at 14% 0%, rgba(213, 181, 109, 0.24), transparent 24rem),
    linear-gradient(135deg, #111217, #25262d);
  box-shadow: var(--shadow-soft);
}

.greed-disclaimer .icon-box {
  margin-bottom: 0;
  color: var(--ink);
  background: linear-gradient(135deg, #f2d58e, #c79d45);
}

.greed-disclaimer .eyebrow,
.greed-disclaimer p {
  color: #ffffff;
}

.greed-disclaimer p {
  max-width: 980px;
  margin-bottom: 22px;
  opacity: 0.78;
  font-size: 1.02rem;
  line-height: 1.75;
}
