:root {
  --white: #ffffff;
  --purple: #2b0080;
  --black: #000000;
  --gold: #c9a96e;
  --gray: #d3d3d3;
  --warm: #faf7f2;
  --ink: #111111;
  --muted: #606067;
  --line: #e7e2dc;
  --purple-soft: #f0e9ff;
  --shadow: 0 22px 70px rgba(17, 17, 17, 0.08);
  --radius: 8px;
  --max-width: 1180px;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, Roboto, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.55;
}

body.menu-open,
body.chat-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 1000;
  background: var(--black);
  color: var(--white);
  padding: 10px 14px;
  transform: translateY(-140%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  padding: 16px clamp(18px, 4vw, 48px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(211, 211, 211, 0.65);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  font-weight: 700;
  letter-spacing: 0;
}

.brand span {
  font-size: 0.98rem;
}

.brand-logo {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  object-fit: cover;
}

.nav-links,
.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-phone {
  color: var(--purple);
  font-weight: 900;
}

.nav-links {
  gap: 24px;
  color: var(--muted);
  font-size: 0.94rem;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--purple);
}

.utility-link,
.primary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 0.88rem;
  font-weight: 700;
}

.utility-link:hover,
.utility-link:focus-visible {
  border-color: var(--purple);
  color: var(--purple);
}

.primary-link {
  background: var(--black);
  border-color: var(--black);
  color: var(--white);
}

.primary-link:hover,
.primary-link:focus-visible {
  background: var(--purple);
  border-color: var(--purple);
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
}

.menu-button span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.mobile-menu {
  position: fixed;
  inset: 72px 16px auto 16px;
  z-index: 880;
  display: none;
  grid-template-columns: 1fr;
  gap: 4px;
  padding: 10px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.mobile-menu a {
  padding: 13px 12px;
  border-radius: 6px;
  font-weight: 700;
}

.mobile-menu a:hover,
.mobile-menu a:focus-visible {
  background: var(--warm);
}

.mobile-menu.is-open {
  display: grid;
}

.section {
  padding: clamp(68px, 10vw, 132px) 0;
}

.section-inner {
  width: min(var(--max-width), calc(100% - 40px));
  margin: 0 auto;
}

.hero {
  padding-top: clamp(74px, 9vw, 118px);
  background:
    linear-gradient(180deg, rgba(250, 247, 242, 0.74) 0%, rgba(255, 255, 255, 0) 42%),
    var(--white);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 438px);
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
}

.hero-copy h1 {
  max-width: 780px;
  margin: 0;
  color: var(--black);
  font-size: clamp(3rem, 7vw, 6.9rem);
  line-height: 0.94;
  letter-spacing: 0;
}

.hero-emphasis {
  color: var(--purple);
}

.hero-subhead {
  max-width: 670px;
  margin: 28px 0 0;
  color: #303035;
  font-size: clamp(1.12rem, 1.8vw, 1.35rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease,
    color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--purple);
  color: var(--white);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--black);
}

.button-secondary {
  background: var(--white);
  color: var(--ink);
  border-color: var(--line);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: var(--purple);
  color: var(--purple);
}

.button-small {
  min-height: 40px;
  padding: 0 14px;
  font-size: 0.86rem;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 30px;
  max-width: 680px;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: #3b3740;
  font-size: 0.84rem;
  font-weight: 800;
}

.booking-panel,
.service-card,
.decision-card,
.review-list div,
.accordion details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.booking-panel {
  position: relative;
  padding: clamp(18px, 3vw, 26px);
  box-shadow: var(--shadow);
}

.booking-panel::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--purple), var(--gold));
  border-radius: var(--radius) var(--radius) 0 0;
}

.panel-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.panel-topline h2,
.section-heading h2,
.split-layout h2,
.decision-grid h2,
.review-grid h2,
.faq-grid h2,
.final-cta h2 {
  margin: 0;
  color: var(--black);
  font-size: clamp(2rem, 4vw, 3.7rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.panel-topline h2 {
  font-size: 1.45rem;
}

.panel-topline span {
  color: var(--purple);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.service-option {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: start;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

.service-option:first-of-type {
  border-top: 0;
}

.service-option h3 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.2;
}

.service-option p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.service-option strong {
  color: var(--black);
  font-size: 1rem;
}

.service-option .button {
  grid-column: 1 / -1;
  width: 100%;
}

.panel-note,
.pricing-note {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.process-strip {
  background: var(--black);
  color: var(--white);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.7fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 40px;
}

.section-heading p,
.split-layout p,
.decision-grid p,
.review-grid p,
.faq-grid p,
.final-cta p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.process-strip .section-heading h2,
.process-strip .section-heading p {
  color: var(--white);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  overflow: hidden;
}

.steps-grid article {
  min-height: 238px;
  padding: 24px;
  background: #080808;
}

.steps-grid span,
.review-list span,
.tiny-label {
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.steps-grid h3 {
  margin: 52px 0 10px;
  font-size: 1.15rem;
}

.steps-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.stack-section {
  background: var(--warm);
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(300px, 1fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: center;
}

.split-layout p,
.decision-grid p,
.review-grid p,
.faq-grid p {
  margin-top: 18px;
}

.chip-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.logo-chip {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 40px;
  padding: 0 14px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: #2f2b35;
  font-weight: 800;
  font-size: 0.9rem;
}

.logo-chip img {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  opacity: 0.78;
  filter: grayscale(1);
}

.logo-note {
  grid-column: 2;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.decision-section {
  background: var(--white);
}

.decision-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.85fr) minmax(0, 0.9fr);
  gap: clamp(34px, 6vw, 96px);
  align-items: center;
}

.decision-visual {
  position: relative;
  min-height: 430px;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--warm);
  box-shadow: 0 22px 70px rgba(17, 17, 17, 0.08);
  overflow: hidden;
}

.decision-visual img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  object-position: center;
}

.main-decision-card {
  position: absolute;
  left: 9%;
  right: 9%;
  top: 16%;
  padding: 24px;
  box-shadow: 0 18px 48px rgba(17, 17, 17, 0.12);
}

.score-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 26px;
  font-weight: 800;
}

.score-row strong {
  color: var(--purple);
}

.score-bar {
  height: 10px;
  margin-top: 14px;
  overflow: hidden;
  background: #eee9e2;
  border-radius: 999px;
}

.score-bar span {
  display: block;
  width: 78%;
  height: 100%;
  background: linear-gradient(90deg, var(--purple), var(--gold));
}

.decision-options {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  margin-top: 26px;
}

.decision-options span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  font-size: 0.78rem;
  font-weight: 900;
}

.flow-line {
  position: absolute;
  left: 12%;
  right: 12%;
  bottom: 16%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.flow-line span {
  display: grid;
  place-items: center;
  min-height: 54px;
  border: 1px solid rgba(43, 0, 128, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.7);
  color: var(--purple);
  font-size: 0.82rem;
  font-weight: 900;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: #312f35;
  font-weight: 750;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.54em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
}

.services-section {
  background: var(--warm);
}

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

.service-card {
  display: flex;
  min-height: 520px;
  flex-direction: column;
  padding: 26px;
}

.service-card.is-emphasized {
  border-color: rgba(43, 0, 128, 0.32);
  box-shadow: var(--shadow);
}

.service-card h3 {
  margin: 0;
  font-size: 1.28rem;
}

.price {
  margin: 22px 0 8px;
  color: var(--black);
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  font-weight: 850;
  line-height: 1;
}

.service-card > p:not(.price) {
  margin: 0;
  color: var(--muted);
}

.service-card ul {
  display: grid;
  gap: 11px;
  margin: 28px 0 30px;
  padding: 0;
  list-style: none;
}

.service-card li {
  padding-bottom: 11px;
  border-bottom: 1px solid var(--line);
  color: #302c34;
}

.service-card .button {
  margin-top: auto;
  width: 100%;
}

.pricing-note {
  max-width: 900px;
}

.review-section {
  background: var(--white);
}

.review-grid,
.faq-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 84px);
}

.review-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.review-list div {
  padding: 22px;
}

.review-list strong {
  display: block;
  margin-top: 34px;
  font-size: 1.08rem;
}

.review-list p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.faq-section {
  background: var(--black);
  color: var(--white);
}

.faq-grid h2,
.faq-grid > div > p {
  color: var(--white);
}

.contact-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.contact-stack a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  color: var(--white);
  font-weight: 800;
}

.contact-stack a:hover,
.contact-stack a:focus-visible {
  background: var(--white);
  color: var(--black);
}

.accordion {
  display: grid;
  gap: 10px;
}

.accordion details {
  background: #080808;
  border-color: rgba(255, 255, 255, 0.14);
}

.accordion summary {
  cursor: pointer;
  padding: 18px 18px;
  color: var(--white);
  font-weight: 850;
}

.accordion summary::marker {
  color: var(--gold);
}

.accordion p {
  margin: 0;
  padding: 0 18px 18px;
  color: rgba(255, 255, 255, 0.72);
}

.final-cta {
  background: var(--warm);
}

.final-cta-inner {
  display: grid;
  justify-items: center;
  text-align: center;
}

.final-cta p {
  max-width: 620px;
  margin-top: 18px;
}

.case-hero {
  padding-top: 170px;
}

.case-hero .eyebrow,
.case-detail .eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.case-hero h1,
.case-detail h1 {
  max-width: 920px;
  margin: 0;
  color: var(--black);
  font-size: clamp(3rem, 7vw, 6.7rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.case-hero p,
.case-detail .case-lede {
  max-width: 760px;
  margin: 24px 0 0;
  color: #303035;
  font-size: clamp(1.08rem, 1.8vw, 1.3rem);
}

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

.case-study-card {
  display: grid;
  gap: 18px;
  min-height: 360px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.case-study-card span,
.case-meta span,
.metric-card span {
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.case-study-card h2 {
  margin: 0;
  color: var(--black);
  font-size: 1.45rem;
  line-height: 1.15;
}

.case-study-card p {
  margin: 0;
  color: var(--muted);
}

.case-card-metrics {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 10px;
  align-items: baseline;
  margin-top: auto;
  padding-top: 8px;
  border-top: 1px solid var(--line);
}

.case-card-metrics strong {
  color: var(--purple);
  font-size: 1.25rem;
  line-height: 1;
}

.case-card-metrics span {
  color: var(--muted);
  font-size: 0.82rem;
  letter-spacing: 0;
  text-transform: none;
}

.case-study-card .button {
  align-self: end;
  justify-self: start;
}

.case-detail {
  padding-top: clamp(104px, 10vw, 154px);
  padding-bottom: clamp(78px, 9vw, 128px);
  background:
    linear-gradient(180deg, rgba(250, 247, 242, 0.86) 0%, rgba(255, 255, 255, 0) 55%),
    var(--white);
}

.case-detail .section-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.62fr);
  gap: clamp(36px, 7vw, 90px);
  align-items: end;
}

.case-detail .eyebrow,
.case-detail h1,
.case-detail .case-lede,
.case-detail .hero-actions {
  grid-column: 1;
}

.case-detail .hero-actions {
  margin-top: 4px;
}

.case-meta,
.case-section-grid,
.case-results-grid {
  display: grid;
  gap: 18px;
}

.case-meta {
  grid-column: 2;
  grid-row: 1 / span 3;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 0;
}

.case-meta div,
.metric-card,
.case-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.case-meta div,
.metric-card {
  padding: 20px;
}

.case-meta strong,
.metric-card strong {
  display: block;
  margin-top: 8px;
  color: var(--black);
}

.case-meta div {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(250, 247, 242, 0.8)),
    var(--white);
  box-shadow: 0 14px 48px rgba(17, 17, 17, 0.06);
}

.case-section-grid {
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1fr);
  align-items: start;
  gap: clamp(30px, 6vw, 88px);
}

.case-section-grid h2 {
  margin: 0;
  color: var(--black);
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.03;
}

.case-panel {
  padding: clamp(24px, 4vw, 38px);
  box-shadow: 0 18px 58px rgba(17, 17, 17, 0.06);
}

.case-panel p:first-child {
  margin-top: 0;
}

.case-panel p:last-child {
  margin-bottom: 0;
}

.case-panel ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 20px;
}

.case-results-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.case-results-grid .metric-card {
  min-height: 180px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(250, 247, 242, 0.82)),
    var(--white);
}

.case-results-grid .metric-card strong {
  font-size: clamp(1.25rem, 2.4vw, 1.75rem);
  line-height: 1.18;
}

.case-disclaimer {
  max-width: 900px;
  color: var(--muted);
  font-size: 0.9rem;
}

footer.site-footer {
  padding: 0 0 104px;
  background: #0d0d0e;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.92rem;
}

.footer-layout {
  display: grid;
  gap: 0;
  padding-top: 74px;
}

.footer-company {
  display: grid;
  grid-template-columns: minmax(300px, 0.85fr) minmax(300px, 0.9fr);
  gap: clamp(42px, 8vw, 150px);
  align-items: start;
  padding-bottom: 52px;
}

.footer-brand {
  display: inline-flex;
  grid-column: 1;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: 1.08rem;
  font-weight: 850;
  line-height: 1;
}

.footer-brand img {
  width: 30px;
  height: 30px;
  border-radius: 6px;
  object-fit: cover;
}

.footer-company p {
  grid-column: 1;
  max-width: 500px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.75;
}

.footer-company address {
  display: grid;
  grid-column: 2;
  grid-row: 1 / span 2;
  gap: 12px;
  align-content: start;
  padding-top: 2px;
  font-style: normal;
}

.footer-company address a,
.footer-company address span {
  display: block;
  width: fit-content;
}

.footer-company address a {
  color: rgba(255, 255, 255, 0.78);
  font-style: italic;
}

.footer-company address span {
  color: rgba(255, 255, 255, 0.48);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(42px, 7vw, 110px);
  padding: 46px 0 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-links div {
  display: grid;
  align-content: start;
  gap: 13px;
}

.footer-links h2 {
  margin: 0 0 8px;
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-links a {
  display: block;
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom {
  display: grid;
  gap: 16px;
  max-width: 1080px;
  padding-top: 30px;
  font-size: 0.76rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.38);
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom p:first-child {
  color: rgba(255, 255, 255, 0.52);
}

footer.site-footer a:hover,
footer.site-footer a:focus-visible {
  color: var(--gold);
}

.chat-widget {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 950;
}

.chat-launcher {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  padding: 0;
  border: 2px solid rgba(43, 0, 128, 0.72);
  border-radius: 50%;
  background: radial-gradient(circle at 34% 28%, #ffffff 0 32%, var(--warm) 72%, #efe8dc 100%);
  color: var(--purple);
  box-shadow:
    0 18px 42px rgba(43, 0, 128, 0.26),
    0 0 0 8px rgba(43, 0, 128, 0.06);
  cursor: pointer;
  animation: eveFloat 4.8s ease-in-out infinite;
}

.chat-launcher:hover,
.chat-launcher:focus-visible {
  border-color: var(--purple);
  box-shadow:
    0 20px 48px rgba(43, 0, 128, 0.32),
    0 0 0 10px rgba(43, 0, 128, 0.09);
}

.eve-sparkle {
  width: 36px;
  height: 36px;
  overflow: visible;
  filter: drop-shadow(0 0 9px rgba(43, 0, 128, 0.32));
  animation: eveSparkleGlow 3.2s ease-in-out infinite;
}

.eve-sparkle path {
  fill: var(--gold);
  stroke: var(--purple);
  stroke-linejoin: round;
  stroke-width: 3.2;
}

.eve-sparkle .sparkle-small {
  stroke-width: 2.6;
}

@keyframes eveFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-7px);
  }
}

@keyframes eveSparkleGlow {
  0%,
  100% {
    filter: drop-shadow(0 0 7px rgba(43, 0, 128, 0.24));
  }

  50% {
    filter: drop-shadow(0 0 13px rgba(43, 0, 128, 0.48));
  }
}

.chat-panel {
  position: absolute;
  right: 0;
  bottom: 82px;
  width: min(380px, calc(100vw - 32px));
  max-height: min(660px, calc(100vh - 120px));
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.chat-header {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: start;
  padding: 16px;
  border-bottom: 1px solid var(--line);
}

.chat-header strong,
.chat-header span {
  display: block;
}

.chat-header span {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.83rem;
}

.chat-header button {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  cursor: pointer;
  font-size: 1.1rem;
  line-height: 1;
}

.chat-body {
  display: grid;
  gap: 12px;
  max-height: 520px;
  overflow: auto;
  padding: 16px;
}

.bot-message,
.user-message {
  max-width: 92%;
  margin: 0;
  padding: 12px 13px;
  border-radius: var(--radius);
  font-size: 0.92rem;
}

.bot-message {
  background: var(--warm);
  color: var(--ink);
}

.user-message {
  justify-self: end;
  background: var(--purple);
  color: var(--white);
}

.chat-options {
  display: grid;
  gap: 8px;
}

.chat-options button,
.chat-options a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 42px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  font-weight: 800;
  text-align: left;
}

.chat-options button:hover,
.chat-options button:focus-visible,
.chat-options a:hover,
.chat-options a:focus-visible {
  border-color: var(--purple);
  color: var(--purple);
}

.mobile-contact-dock {
  position: fixed;
  left: 10px;
  right: 10px;
  bottom: 10px;
  z-index: 940;
  display: none;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 16px 42px rgba(17, 17, 17, 0.14);
  backdrop-filter: blur(14px);
}

.mobile-contact-dock a,
.mobile-contact-dock button {
  display: grid;
  place-items: center;
  min-height: 42px;
  border: 0;
  border-radius: 6px;
  background: var(--warm);
  color: var(--ink);
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 900;
}

.mobile-contact-dock a:nth-child(3),
.mobile-contact-dock button {
  background: var(--purple);
  color: var(--white);
}

@media (max-width: 980px) {
  .nav-links,
  .header-actions {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .hero-grid,
  .split-layout,
  .decision-grid,
  .review-grid,
  .faq-grid,
  .section-heading {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    align-items: start;
  }

  .booking-panel {
    max-width: 620px;
  }

  .logo-note {
    grid-column: auto;
  }

  .steps-grid,
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .case-study-grid,
  .case-meta,
  .case-results-grid,
  .footer-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-company,
  .case-detail .section-inner,
  .case-section-grid {
    grid-template-columns: 1fr;
  }

  .footer-brand,
  .footer-company p,
  .footer-company address {
    grid-column: auto;
    grid-row: auto;
  }

  .case-detail .case-meta {
    grid-column: auto;
    grid-row: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-card {
    min-height: auto;
  }
}

@media (max-width: 720px) {
  body {
    padding-bottom: 70px;
  }

  .site-header {
    padding: 13px 16px;
  }

  .brand span {
    font-size: 0.92rem;
  }

  .section {
    padding: 66px 0;
  }

  .section-inner {
    width: min(100% - 28px, var(--max-width));
  }

  .hero {
    padding-top: 52px;
  }

  .hero-copy h1 {
    font-size: clamp(3rem, 15vw, 4.6rem);
    line-height: 0.96;
  }

  .hero-subhead {
    margin-top: 22px;
    font-size: 1.05rem;
  }

  .hero-actions,
  .final-cta .hero-actions {
    width: 100%;
  }

  .button {
    width: 100%;
  }

  .hero-proof {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .panel-topline h2,
  .section-heading h2,
  .split-layout h2,
  .decision-grid h2,
  .review-grid h2,
  .faq-grid h2,
  .final-cta h2 {
    font-size: clamp(2rem, 10vw, 3.1rem);
  }

  .steps-grid,
  .services-grid,
  .review-list,
  .case-study-grid,
  .case-meta,
  .case-results-grid,
  .footer-links {
    grid-template-columns: 1fr;
  }

  .case-hero,
  .case-detail {
    padding-top: 112px;
  }

  .case-detail .case-meta {
    grid-template-columns: 1fr;
  }

  .steps-grid article {
    min-height: auto;
  }

  .steps-grid h3 {
    margin-top: 34px;
  }

  .decision-visual {
    min-height: 360px;
  }

  .decision-visual img {
    min-height: 360px;
  }

  .main-decision-card {
    left: 14px;
    right: 14px;
    top: 28px;
  }

  .decision-options {
    grid-template-columns: 1fr;
  }

  .flow-line {
    left: 14px;
    right: 14px;
    bottom: 24px;
  }

  .chat-widget {
    right: 12px;
    bottom: 78px;
  }

  .chat-launcher {
    display: none;
  }

  .chat-panel {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 78px;
    width: auto;
  }

  .mobile-contact-dock {
    display: grid;
  }

  .site-footer {
    padding-bottom: 96px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }
}
