:root {
  --bg: #050607;
  --bg-2: #090b0d;
  --panel: rgba(15, 17, 20, 0.88);
  --panel-2: rgba(23, 25, 29, 0.78);
  --gold: #f1b52f;
  --gold-2: #f7ca64;
  --gold-3: #b86f00;
  --text: #f6f2ea;
  --brand-black: #1d1d1b;
  --brand-gray: #e3e9ec;
  --muted: #b9b3aa;
  --dim: #77716b;
  --line: rgba(245, 173, 32, 0.32);
  --line-soft: rgba(255, 255, 255, 0.08);
  --shadow: 0 32px 90px rgba(0, 0, 0, 0.62);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-height: 100vh;
  max-width: 100%;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 80% 6%, rgba(245, 173, 32, 0.13), transparent 24rem),
    radial-gradient(circle at 13% 32%, rgba(245, 173, 32, 0.06), transparent 20rem),
    linear-gradient(180deg, #030405 0%, #090a0b 45%, #030405 100%);
  color: var(--text);
  font-family: Ubuntu, Arial, sans-serif;
  letter-spacing: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.02) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(circle at 50% 8%, black, transparent 72%);
  z-index: -2;
}

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

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

.site-shell {
  position: relative;
  overflow: clip;
}

.site-shell::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at center, transparent 54%, rgba(0,0,0,.5));
  z-index: 2;
}

.ambient {
  position: absolute;
  width: 36rem;
  height: 36rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 173, 32, .18), transparent 62%);
  filter: blur(18px);
  opacity: .55;
  pointer-events: none;
  animation: ambientDrift 12s ease-in-out infinite alternate;
}

.ambient-one {
  right: -12rem;
  top: 4rem;
}

.ambient-two {
  left: -18rem;
  top: 54rem;
  animation-delay: -4s;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 180px 1fr auto;
  align-items: center;
  gap: 2rem;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 14px 0 12px;
  border-bottom: 1px solid var(--line-soft);
  backdrop-filter: blur(18px);
}

.topbar::before {
  content: "";
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  height: 70px;
  background: rgba(3, 4, 5, .74);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  z-index: -1;
}

.brand img {
  width: 145px;
  height: auto;
  --boomk-logo-color: #ffffff;
  --boomk-logo-cut: #050607;
}

.main-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 42px;
  color: #e8e2d9;
  font-size: 14px;
}

.main-nav a {
  position: relative;
  padding: 13px 0;
  color: #dfdad2;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 2px;
  width: 0;
  height: 2px;
  background: var(--gold);
  transform: translateX(-50%);
  transition: width .22s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}

.main-nav .kommo-partner-link {
  color: #dfdad2;
}

.main-nav .kommo-partner-link::after {
  display: block;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 48px;
  padding: 0 26px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 700;
  font-size: 14px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease, background .25s ease;
  cursor: pointer;
  white-space: nowrap;
}

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

.btn-primary {
  color: #0a0804;
  background: linear-gradient(135deg, #ffd35f 0%, #f5ad20 42%, #d98b08 100%);
  box-shadow: 0 12px 32px rgba(245, 173, 32, .22), inset 0 1px 0 rgba(255, 255, 255, .35);
}

.btn-primary:hover {
  box-shadow: 0 16px 42px rgba(245, 173, 32, .36), 0 0 0 1px rgba(255, 209, 90, .32);
}

.btn-secondary {
  color: var(--text);
  background: rgba(11, 13, 16, .75);
  border-color: rgba(245, 173, 32, .55);
}

.btn-secondary:hover {
  border-color: var(--gold);
  box-shadow: 0 12px 34px rgba(245, 173, 32, .12);
}

.nav-toggle {
  display: none;
}

main {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(520px, 1.18fr);
  gap: 60px;
  align-items: center;
  min-height: 520px;
  padding: 44px 0 26px;
}

.hero-copy h1 {
  margin: 0;
  max-width: 560px;
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: clamp(38px, 4.4vw, 58px);
  line-height: 1.02;
  letter-spacing: 0;
}

.hero-copy h1 span,
section h2 span {
  color: var(--gold);
}

.hero-copy p {
  max-width: 520px;
  margin: 24px 0 0;
  color: #d8d1c8;
  font-size: 16px;
  line-height: 1.55;
}

.hero-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(210px, max-content));
  gap: 18px;
  margin-top: 34px;
}

.hero-actions .whatsapp-soft-link {
  align-self: center;
}

.microcopy {
  display: flex;
  gap: 9px;
  align-items: center;
  margin-top: 23px;
  color: #a9a39a;
  font-size: 13px;
}

.lock-icon {
  color: var(--gold);
  font-size: 18px;
}

.hero-visual {
  position: relative;
  min-height: 420px;
  perspective: 1400px;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 19% -4% 2%;
  background: radial-gradient(ellipse at center, rgba(245,173,32,.18), transparent 58%);
  filter: blur(14px);
}

.dashboard-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(16, 18, 21, .98), rgba(8, 10, 12, .9));
  box-shadow: 0 0 0 1px rgba(255,255,255,.04), -18px 0 80px rgba(245, 173, 32, .15), var(--shadow);
  padding: 18px;
  transform: rotateY(-5deg) rotateX(2deg);
  animation: dashboardFloat 6.5s ease-in-out infinite;
}

.dashboard-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, rgba(255,255,255,.12), transparent 20%, transparent 72%, rgba(245,173,32,.08));
  pointer-events: none;
}

.dash-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.dash-top strong {
  color: var(--gold);
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 20px;
}

.dash-top span {
  padding: 8px 13px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 5px;
  color: #a9a39b;
  background: rgba(0,0,0,.22);
  font-size: 12px;
}

.dash-body {
  display: grid;
  grid-template-columns: 1fr 196px;
  gap: 16px;
}

.chart-panel,
.metric-stack article {
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(20,22,26,.8), rgba(9,10,12,.82));
}

.chart-panel {
  padding: 17px 18px 8px;
}

.chart-title {
  margin-bottom: 9px;
  color: #e9e2d8;
  font-size: 14px;
  font-weight: 700;
}

.growth-chart {
  height: 250px;
  width: 100%;
}

.grid-lines path {
  stroke: rgba(255,255,255,.06);
  stroke-width: 1;
}

.chart-area {
  fill: url(#chartFill);
}

.chart-line {
  fill: none;
  stroke: var(--gold);
  stroke-width: 4;
  filter: url(#chartGlow);
  stroke-linecap: round;
  stroke-dasharray: 760;
  stroke-dashoffset: 760;
  animation: drawChart 2.3s ease-out .45s forwards, chartPulse 3.8s ease-in-out 2.7s infinite;
}

.metric-stack {
  display: grid;
  gap: 10px;
}

.metric-stack article {
  display: grid;
  grid-template-columns: 34px 1fr auto;
  grid-template-rows: auto auto;
  align-items: center;
  gap: 1px 12px;
  min-height: 70px;
  padding: 12px 13px;
  transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease;
}

.metric-stack article:hover {
  transform: translateX(-3px);
  border-color: rgba(241, 181, 47, .48);
  box-shadow: 0 12px 28px rgba(0,0,0,.34), 0 0 20px rgba(241,181,47,.08);
}

.metric-stack span {
  grid-row: 1 / 3;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  font-weight: 700;
}

.metric-stack small {
  color: #afa79e;
  font-size: 11px;
}

.metric-stack strong {
  color: #fff;
  font-size: 19px;
}

.metric-stack em {
  color: #5ebd63;
  font-size: 11px;
  font-style: normal;
}

.stage {
  position: absolute;
  left: -44px;
  right: -34px;
  bottom: -10px;
  height: 150px;
  pointer-events: none;
}

.stage::before {
  content: "";
  position: absolute;
  inset: 76px 0 0;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(255, 209, 90, .16), rgba(4, 5, 6, .92) 55%, transparent 70%);
  box-shadow: 0 -22px 50px rgba(245,173,32,.12);
}

.infinity-block {
  position: absolute;
  left: 56px;
  bottom: 48px;
  display: grid;
  place-items: center;
  width: 116px;
  height: 106px;
  border-radius: 8px;
  background: linear-gradient(145deg, #ffd160, #b66d05);
  box-shadow: 0 18px 40px rgba(0,0,0,.52), 0 0 34px rgba(245,173,32,.38);
  animation: objectFloat 5.8s ease-in-out infinite;
}

.infinity-block span {
  color: #090909;
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 86px;
  font-weight: 700;
  line-height: .8;
}

.name-plate {
  position: absolute;
  left: 220px;
  bottom: 40px;
  display: grid;
  place-items: center;
  width: 210px;
  height: 82px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.12);
  background: linear-gradient(145deg, #191b1f, #070809 70%);
  color: var(--gold);
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 40px;
  font-weight: 700;
  box-shadow: 0 16px 46px rgba(0,0,0,.72), inset 0 10px 16px rgba(255,255,255,.05);
  animation: objectFloat 6.2s ease-in-out infinite reverse;
}

.plant {
  position: absolute;
  right: 150px;
  bottom: 49px;
  width: 70px;
  height: 88px;
  background:
    radial-gradient(ellipse at 20% 65%, transparent 38%, rgba(137, 126, 47, .78) 39%, transparent 43%),
    radial-gradient(ellipse at 40% 47%, transparent 38%, rgba(137, 126, 47, .72) 39%, transparent 43%),
    radial-gradient(ellipse at 60% 62%, transparent 38%, rgba(137, 126, 47, .78) 39%, transparent 43%);
  opacity: .82;
}

.plant::after {
  content: "";
  position: absolute;
  left: 22px;
  bottom: 0;
  width: 42px;
  height: 32px;
  border-radius: 0 0 12px 12px;
  background: #0e0f10;
  border: 1px solid rgba(255,255,255,.09);
}

.bar-stand {
  position: absolute;
  right: 30px;
  bottom: 52px;
  display: flex;
  align-items: end;
  gap: 11px;
  height: 108px;
}

.bar-stand span {
  display: block;
  width: 19px;
  border: 2px solid var(--gold);
  border-radius: 4px 4px 0 0;
  background: linear-gradient(180deg, rgba(245,173,32,.6), rgba(245,173,32,.06));
  box-shadow: 0 0 16px rgba(245,173,32,.45);
  transform-origin: bottom;
  animation: barRise .9s cubic-bezier(.2,.8,.2,1) both, barGlow 2.6s ease-in-out infinite;
}

.bar-stand span:nth-child(1) { height: 42px; }
.bar-stand span:nth-child(2) { height: 70px; animation-delay: .12s; }
.bar-stand span:nth-child(3) { height: 92px; animation-delay: .24s; }
.bar-stand span:nth-child(4) { height: 118px; animation-delay: .36s; }

section h2 {
  margin: 0 0 18px;
  text-align: center;
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: clamp(28px, 3.2vw, 36px);
  line-height: 1.1;
  font-weight: 600;
}

.solutions,
.audience,
.steps,
.diagnostic {
  padding: 24px 0 0;
}

.solutions-grid {
  display: grid;
  grid-template-columns: .9fr 1.55fr;
  gap: 12px;
}

.concept-card,
.mini-card,
.audience-feature,
.audience-list article,
.steps-bar,
.diagnostic,
.final-cta {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(18, 20, 23, .92), rgba(6, 7, 8, .82)),
    radial-gradient(circle at 80% 20%, rgba(245, 173, 32, .12), transparent 36%);
  box-shadow: 0 16px 52px rgba(0,0,0,.42), inset 0 1px 0 rgba(255,255,255,.04);
}

.concept-card,
.audience-feature {
  position: relative;
  overflow: hidden;
  min-height: 360px;
  padding: 38px 38px;
}

.concept-card small,
.audience-feature small {
  color: var(--gold);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .14em;
}

.concept-card h3,
.audience-feature h3 {
  margin: 22px 0;
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: clamp(29px, 2.7vw, 37px);
  line-height: 1.12;
}

.concept-card p,
.audience-feature p {
  max-width: 370px;
  color: #c2bbb1;
  line-height: 1.7;
}

.wave-lines {
  position: absolute;
  inset: auto -30px -25px 0;
  height: 170px;
  background:
    repeating-radial-gradient(ellipse at 45% 100%, transparent 0 14px, rgba(245,173,32,.18) 15px 16px, transparent 17px 24px);
  opacity: .62;
  transform: rotate(-7deg);
}

.solution-cards {
  display: grid;
  grid-template-columns: 1.18fr .92fr;
  grid-auto-rows: minmax(170px, auto);
  gap: 12px;
}

.mini-card {
  position: relative;
  padding: 30px 30px 24px 86px;
  overflow: hidden;
  transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease;
}

.mini-card:hover,
.audience-list article:hover {
  transform: translateY(-4px);
  border-color: rgba(245, 173, 32, .7);
  box-shadow: 0 20px 54px rgba(0,0,0,.55), 0 0 30px rgba(245,173,32,.08);
}

.mini-card .number {
  position: absolute;
  left: 28px;
  top: 28px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  font-family: "Space Grotesk", Arial, sans-serif;
  font-weight: 700;
}

.mini-card h3 {
  margin: 0 0 18px;
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 22px;
}

.mini-card p {
  margin: 0 0 18px;
  color: #beb7ad;
  line-height: 1.65;
}

.mini-card span {
  display: inline-flex;
  max-width: 260px;
  padding: 7px 10px;
  border: 1px solid rgba(245, 173, 32, .55);
  border-radius: 5px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
}

.mini-card.wide {
  grid-column: span 1;
}

.audience h2,
.steps h2 {
  margin-top: 8px;
}

.audience-grid {
  display: grid;
  grid-template-columns: .82fr 1.78fr;
  gap: 24px;
}

.audience-feature {
  min-height: 305px;
}

.audience-feature h3 {
  font-size: clamp(32px, 3.4vw, 44px);
}

.gold-line {
  width: 160px;
  height: 2px;
  margin: 24px 0 22px;
  background: var(--gold);
  box-shadow: 0 0 14px rgba(245,173,32,.48);
}

.audience-list {
  display: grid;
  gap: 10px;
}

.audience-list article {
  display: grid;
  grid-template-columns: 46px .9fr 1.15fr;
  align-items: center;
  min-height: 82px;
  padding: 18px 28px;
  transition: transform .24s ease, border-color .24s ease;
}

.audience-list span {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  font-weight: 700;
}

.audience-list strong {
  max-width: 300px;
  color: #f1ece4;
  line-height: 1.35;
}

.audience-list p {
  margin: 0;
  padding-left: 38px;
  border-left: 1px dashed rgba(255,255,255,.14);
  color: #bab3aa;
  line-height: 1.45;
}

.steps-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  padding: 18px;
  background:
    linear-gradient(145deg, rgba(18, 20, 23, .72), rgba(6, 7, 8, .66)),
    radial-gradient(circle at 80% 20%, rgba(245, 173, 32, .1), transparent 36%);
}

.steps-bar article {
  position: relative;
  display: grid;
  grid-template-areas:
    "number"
    "title"
    "text";
  grid-template-columns: 1fr;
  row-gap: 12px;
  min-height: 168px;
  padding: 22px 18px;
  align-content: start;
  align-items: start;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(20,22,26,.82), rgba(8,9,10,.78));
}

.steps-bar article:not(:last-child) {
  border-right: 1px solid rgba(255,255,255,.08);
}

.steps-bar i {
  grid-area: number;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  font-style: normal;
  font-weight: 700;
}

.steps-bar strong {
  grid-area: title;
  display: block;
  color: #f4eee5;
  line-height: 1.25;
  font-size: 16px;
  min-height: 0;
}

.steps-bar p {
  grid-area: text;
  margin: 0;
  color: #a9a199;
  line-height: 1.5;
  font-size: 13px;
  max-width: none;
}

.testimonials,
.faq {
  padding: 24px 0 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1.1fr .95fr;
  gap: 12px;
}

.testimonial-stack {
  display: grid;
  gap: 12px;
}

.testimonial-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(18, 20, 23, .92), rgba(6, 7, 8, .82)),
    radial-gradient(circle at 80% 20%, rgba(245, 173, 32, .12), transparent 36%);
  box-shadow: 0 16px 52px rgba(0,0,0,.42), inset 0 1px 0 rgba(255,255,255,.04);
  padding: 28px 30px;
}

.testimonial-person {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 18px;
}

.testimonial-person img {
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  border: 2px solid rgba(241,181,47,.68);
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 4px rgba(241,181,47,.08), 0 10px 24px rgba(0,0,0,.34);
}

.testimonial-person strong,
.testimonial-person span {
  display: block;
}

.testimonial-person strong {
  color: #fff7eb;
  font-size: 15px;
}

.testimonial-person span {
  margin-top: 3px;
  color: #a9a199;
  font-size: 12px;
}

.testimonial-featured {
  min-height: 100%;
}

.testimonial-label {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
}

.testimonial-card p {
  position: relative;
  margin: 0;
  padding: 18px 18px 18px 20px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 8px 8px 8px 2px;
  background: rgba(255,255,255,.045);
  color: #f4eee5;
  line-height: 1.55;
  font-size: 15px;
}

.testimonial-card > strong {
  display: block;
  margin-top: 18px;
  color: #c7bfb4;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
}

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

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(18, 20, 23, .92), rgba(6, 7, 8, .82)),
    radial-gradient(circle at 80% 20%, rgba(245, 173, 32, .1), transparent 36%);
  box-shadow: 0 16px 52px rgba(0,0,0,.42), inset 0 1px 0 rgba(255,255,255,.04);
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 26px;
  color: #f4eee5;
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 18px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(245,173,32,.6);
  border-radius: 50%;
  color: var(--gold);
  font-size: 18px;
  line-height: 1;
  transition: transform .2s ease, background .2s ease;
}

.faq-item[open] summary::after {
  content: "–";
  background: rgba(245,173,32,.08);
}

.faq-item p {
  margin: 0;
  padding: 0 26px 22px;
  color: #bdb5ac;
  line-height: 1.6;
}

.section-lead {
  max-width: 920px;
  margin: -4px auto 18px;
  color: #c7bfb4;
  text-align: center;
  line-height: 1.65;
}

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

.testimonial-card {
  transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease;
}

.testimonial-card:hover,
.faq-item:hover {
  transform: translateY(-4px);
  border-color: rgba(245,173,32,.7);
  box-shadow: 0 20px 54px rgba(0,0,0,.55), 0 0 30px rgba(245,173,32,.08);
}

.testimonial-name {
  display: inline-flex;
  margin-top: 14px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.faq-item h3 {
  margin: 0;
}

.faq-toggle {
  width: 100%;
  cursor: pointer;
  padding: 22px 26px;
  border: 0;
  background: transparent;
  color: #fff6e7;
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 19px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  text-align: left;
  letter-spacing: .01em;
  text-shadow: 0 0 18px rgba(245,173,32,.06);
}

.faq-toggle:focus-visible {
  outline: 2px solid rgba(245,173,32,.8);
  outline-offset: -2px;
}

.faq-toggle::after {
  content: "+";
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(245,173,32,.6);
  border-radius: 50%;
  color: var(--gold);
  font-size: 18px;
  line-height: 1;
  transition: transform .45s cubic-bezier(.22,1,.36,1), background .45s cubic-bezier(.22,1,.36,1), color .45s cubic-bezier(.22,1,.36,1);
}

.faq-item.is-open .faq-toggle::after {
  content: "-";
  background: rgba(245,173,32,.08);
}

.faq-panel {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transform: translateY(-6px);
  transition: max-height .55s cubic-bezier(.22,1,.36,1), opacity .42s ease, transform .55s cubic-bezier(.22,1,.36,1);
}

.faq-item:hover .faq-panel,
.faq-item.is-open .faq-panel,
.faq-item:focus-within .faq-panel {
  max-height: 700px;
  opacity: 1;
  transform: translateY(0);
}

.faq-panel > p {
  margin: 0;
  padding: 0 26px 22px;
  color: #bdb5ac;
  line-height: 1.6;
}

.faq-item:hover .faq-toggle,
.faq-item:focus-within .faq-toggle {
  color: var(--gold-2);
}

.faq-item,
.faq-toggle {
  transition: border-color .35s ease, box-shadow .35s ease, color .35s ease, transform .35s ease;
}

.faq-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 16px;
  padding: 20px 24px;
  border: 1px solid rgba(245,173,32,.18);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(18, 20, 23, .82), rgba(6, 7, 8, .72));
  box-shadow: 0 16px 52px rgba(0,0,0,.32);
}

.faq-cta p {
  margin: 0;
  color: #f4eee5;
  line-height: 1.5;
}

.diagnostic {
  display: grid;
  grid-template-columns: .78fr 1.72fr;
  gap: 30px;
  padding: 28px 30px 30px;
  margin-top: 12px;
}

.diagnostic.diagnostic-locked {
  grid-template-columns: minmax(0, 720px);
  justify-content: center;
  text-align: center;
}

.diagnostic.diagnostic-locked .diagnostic-copy {
  justify-items: center;
}

.diagnostic.diagnostic-locked .diagnostic-copy p {
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.diagnostic.diagnostic-locked .wizard-form {
  display: none;
}

.diagnostic.is-open {
  grid-template-columns: .72fr 1.78fr;
  text-align: left;
}

.diagnostic.is-open .diagnostic-copy {
  justify-items: start;
}

.diagnostic-copy h2 {
  text-align: left;
  margin: 0 0 12px;
  font-size: clamp(28px, 2.8vw, 37px);
}

.diagnostic.diagnostic-locked .diagnostic-copy h2 {
  text-align: center;
}

.diagnostic-label {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
}

.diagnostic-copy p {
  color: #c7bfb4;
  line-height: 1.55;
}

.diagnostic-copy strong {
  display: block;
  margin-top: 24px;
  color: var(--gold);
  line-height: 1.5;
}

.diagnostic-copy .btn {
  margin-top: 24px;
}

.wizard-form {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  min-height: 390px;
  align-content: start;
}

.wizard-top {
  display: grid;
  gap: 12px;
  margin-bottom: 26px;
}

.wizard-top span {
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.wizard-progress {
  height: 6px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
}

.wizard-progress i {
  display: block;
  width: 11%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--gold), var(--gold-2));
  box-shadow: 0 0 18px rgba(241, 181, 47, .38);
  transition: width .25s ease;
}

.wizard-step {
  display: none;
  min-height: 210px;
  margin: 0;
  padding: 0;
  border: 0;
}

.wizard-step.active {
  display: grid;
  align-content: start;
  gap: 22px;
  animation: stepIn .24s ease both;
}

@keyframes stepIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.wizard-step legend {
  max-width: 760px;
  padding: 0;
  color: #fff8ed;
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: clamp(25px, 2.6vw, 34px);
  line-height: 1.1;
  font-weight: 700;
}

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

.choice-grid button {
  min-height: 66px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 7px;
  padding: 15px 16px;
  background: linear-gradient(180deg, rgba(41,43,47,.86), rgba(20,22,25,.86));
  color: #f3eee7;
  font: 700 14px Ubuntu, Arial, sans-serif;
  text-align: left;
  cursor: pointer;
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.choice-grid button:hover,
.choice-grid button.selected {
  transform: translateY(-2px);
  border-color: rgba(241,181,47,.84);
  background: linear-gradient(180deg, rgba(61,49,23,.95), rgba(23,22,19,.95));
  box-shadow: 0 10px 28px rgba(241,181,47,.12);
}

.wizard-step input {
  width: 100%;
  min-height: 58px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 6px;
  padding: 0 18px;
  background: linear-gradient(180deg, rgba(41, 43, 47, .88), rgba(25, 27, 30, .9));
  color: #f4eee5;
  font: 500 16px Ubuntu, Arial, sans-serif;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.wizard-step input:focus {
  border-color: rgba(245,173,32,.74);
  box-shadow: 0 0 0 3px rgba(245,173,32,.12);
}

.wizard-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 26px;
}

.wizard-actions .btn {
  min-width: 178px;
}

.form-message {
  min-height: 24px;
  margin: 18px 0 0;
  color: var(--gold-2);
  font-weight: 700;
}

.form-message.error {
  color: #ff856f;
}

.wizard-note {
  margin: 8px 0 0;
  color: #aaa39a;
  font-size: 12px;
}

.final-cta {
  display: grid;
  grid-template-columns: 82px 1fr auto auto;
  align-items: center;
  gap: 28px;
  margin: 14px 0 0;
  padding: 20px 26px;
  box-shadow: 0 0 0 1px rgba(245,173,32,.2), 0 0 36px rgba(245,173,32,.18), var(--shadow);
  animation: ctaGlow 4s ease-in-out infinite;
}

.cta-icon {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  background: radial-gradient(circle, rgba(245,173,32,.18), rgba(8,9,10,.88));
  font-size: 36px;
  box-shadow: 0 0 26px rgba(245,173,32,.2);
}

.final-cta h2 {
  max-width: 610px;
  margin: 0;
  text-align: left;
  font-size: clamp(26px, 2.7vw, 36px);
}

.final-cta p {
  max-width: 320px;
  color: #c8c0b7;
  line-height: 1.5;
}

.footer {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1.15fr 1.4fr .8fr;
  gap: 30px;
  align-items: center;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 20px 0 28px;
  border-top: 1px solid rgba(255,255,255,.08);
}

.footer-brand img {
  width: 114px;
  margin-bottom: 8px;
  --boomk-logo-color: #ffffff;
  --boomk-logo-cut: #050607;
}

.footer-brand p,
.footer a {
  color: #b9b2a9;
  font-size: 13px;
  line-height: 1.55;
}

.footer-contact {
  display: flex;
  justify-content: center;
  gap: 34px;
  flex-wrap: wrap;
}

.footer-contact a::first-letter {
  color: var(--gold);
}

.footer-links {
  display: flex;
  justify-content: end;
  gap: 24px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes ambientDrift {
  from { transform: translate3d(0, 0, 0) scale(1); opacity: .42; }
  to { transform: translate3d(24px, -18px, 0) scale(1.08); opacity: .62; }
}

@keyframes dashboardFloat {
  0%, 100% { transform: rotateY(-5deg) rotateX(2deg) translateY(0); }
  50% { transform: rotateY(-4deg) rotateX(2deg) translateY(-10px); }
}

@keyframes objectFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes drawChart {
  to { stroke-dashoffset: 0; }
}

@keyframes chartPulse {
  0%, 100% { stroke-width: 4; opacity: .92; }
  50% { stroke-width: 5; opacity: 1; }
}

@keyframes barRise {
  from { transform: scaleY(.12); opacity: .35; }
  to { transform: scaleY(1); opacity: 1; }
}

@keyframes barGlow {
  0%, 100% { box-shadow: 0 0 14px rgba(241,181,47,.34); }
  50% { box-shadow: 0 0 26px rgba(241,181,47,.72); }
}

@keyframes ctaGlow {
  0%, 100% { box-shadow: 0 0 0 1px rgba(245,173,32,.2), 0 0 28px rgba(245,173,32,.14), var(--shadow); }
  50% { box-shadow: 0 0 0 1px rgba(245,173,32,.4), 0 0 46px rgba(245,173,32,.24), var(--shadow); }
}

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

@media (max-width: 1100px) {
  .topbar {
    grid-template-columns: 150px auto auto;
  }

  .main-nav {
    gap: 24px;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-top: 52px;
  }

  .hero-copy h1,
  .hero-copy p {
    max-width: 780px;
  }

  .hero-visual {
    min-height: 490px;
  }

  .solutions-grid,
  .audience-grid,
  .diagnostic {
    grid-template-columns: 1fr;
  }

  .steps-bar {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .steps-bar article {
    min-height: 150px;
    padding: 20px 18px;
  }

  .steps-bar article:nth-child(2) {
    border-right: 1px solid rgba(255,255,255,.08);
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .final-cta {
    grid-template-columns: 72px 1fr;
  }

  .final-cta p,
  .final-cta .btn {
    grid-column: 2;
  }
}

@media (max-width: 820px) {
  main,
  .topbar,
  .footer {
    width: min(100% - 28px, 1180px);
  }

  .topbar {
    grid-template-columns: 140px 1fr auto;
  }

  .nav-toggle {
    justify-self: end;
    display: inline-grid;
    gap: 5px;
    border: 1px solid rgba(245,173,32,.4);
    border-radius: 6px;
    padding: 10px;
    background: rgba(10, 11, 13, .82);
  }

  .nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--gold);
  }

  .main-nav {
    position: fixed;
    left: 14px;
    right: 14px;
    top: 70px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid rgba(245,173,32,.3);
    border-radius: 8px;
    background: rgba(6, 7, 8, .96);
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav a {
    padding: 14px;
  }

  .main-nav .kommo-partner-link {
    display: inline-flex;
    justify-content: center;
    border-radius: 6px;
    border: 1px solid rgba(245, 173, 32, .42);
    color: var(--gold-2);
    background: rgba(245, 173, 32, .08);
    font-weight: 700;
  }

  .main-nav .kommo-partner-link::after {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .hero-copy h1 {
    font-size: clamp(38px, 11vw, 58px);
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-actions {
    grid-template-columns: 1fr;
  }

  .hero-actions .whatsapp-soft-link,
  .final-actions .whatsapp-soft-link {
    width: 100%;
    justify-content: center;
  }

  .hero-visual {
    min-height: 430px;
  }

  .dashboard-card {
    padding: 12px;
    transform: none;
    animation: none;
  }

  .dash-body {
    grid-template-columns: 1fr;
  }

  .metric-stack {
    grid-template-columns: 1fr 1fr;
  }

  .stage {
    left: 0;
    right: 0;
    bottom: -8px;
    transform: scale(.74);
    transform-origin: center bottom;
  }

  .solution-cards {
    grid-template-columns: 1fr;
  }

  .concept-card,
  .audience-feature {
    padding: 28px 24px;
    min-height: 300px;
  }

  .mini-card {
    padding: 26px 22px 24px 74px;
  }

  .audience-list article {
    grid-template-columns: 42px 1fr;
    gap: 8px 10px;
    padding: 18px 20px;
  }

  .audience-list p {
    grid-column: 2;
    padding-left: 0;
    border-left: none;
  }

  .steps-bar {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .steps-bar article {
    border-right: 1px solid rgba(255,255,255,.08) !important;
    border-bottom: 1px solid rgba(255,255,255,.08);
    min-height: 0;
    padding: 18px;
    margin-bottom: 0;
  }

  .steps-bar p {
    max-width: none;
  }

  .steps-bar article:last-child {
    border-bottom: 1px solid rgba(255,255,255,.08);
    padding-bottom: 18px;
    margin-bottom: 0;
  }

  .testimonial-card p {
    font-size: 15px;
  }

  .faq-item summary {
    font-size: 16px;
    padding: 20px 18px;
  }

  .faq-item p {
    padding: 0 18px 18px;
  }

  .choice-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .choice-grid button {
    width: 100%;
    min-height: 96px;
    padding: 22px 24px;
    font-size: 15px;
    line-height: 1.35;
    white-space: normal;
    word-break: normal;
    overflow-wrap: normal;
  }

  .wizard-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .diagnostic.is-open {
    grid-template-columns: 1fr;
  }

  .wizard-form {
    width: 100%;
    max-width: 100%;
  }

  .wizard-step legend {
    max-width: 100%;
    font-size: clamp(32px, 9vw, 44px);
    line-height: 1.1;
  }

  .wizard-progress {
    width: 100%;
  }

  .wizard-actions .btn {
    width: 100%;
    min-height: 56px;
    min-width: 0;
    text-align: center;
  }

  .wizard-note {
    padding-bottom: calc(24px + env(safe-area-inset-bottom));
  }

  .final-cta {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .final-cta p,
  .final-cta .btn {
    grid-column: auto;
  }

  .faq-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .faq-toggle {
    font-size: 16px;
    padding: 20px 18px;
  }

  .faq-panel > p {
    padding: 0 18px 18px;
  }

  .section-lead {
    text-align: left;
  }

  .footer {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .footer-contact,
  .footer-links {
    justify-content: start;
  }
}

@media (max-width: 520px) {
  .metric-stack {
    grid-template-columns: 1fr;
  }

  .growth-chart {
    height: 190px;
  }

  .hero-visual {
    min-height: 570px;
  }

  .stage {
    bottom: -24px;
    transform: scale(.62);
  }

  .diagnostic {
    width: 100vw;
    max-width: none;
    padding: 22px 22px calc(24px + env(safe-area-inset-bottom));
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    border-left: 0;
    border-right: 0;
    border-radius: 0;
  }

  .diagnostic.is-open {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .diagnostic.is-open .diagnostic-copy {
    display: none;
  }

  .wizard-form {
    width: 100%;
    max-width: none;
    min-height: auto;
  }

  .wizard-top {
    margin-bottom: 22px;
  }

  .wizard-step {
    min-height: 0;
  }

  .wizard-step.active {
    gap: 20px;
  }

  .wizard-step legend {
    max-width: 100%;
    font-size: clamp(32px, 9vw, 44px);
    line-height: 1.15;
  }

  .wizard-step input {
    min-height: 56px;
  }

  .wizard-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 22px;
  }

  .wizard-actions .btn {
    min-width: 0;
    min-height: 56px;
    font-size: 14px;
  }

  #submitWizard {
    grid-column: 1 / -1;
  }

  .form-message,
  .wizard-note {
    padding-left: 2px;
    padding-right: 2px;
  }

  .btn {
    width: 100%;
    padding: 0 18px;
  }
}

@media (max-width: 390px) {
  .diagnostic {
    padding-left: 20px;
    padding-right: 20px;
  }

  .wizard-step legend {
    font-size: clamp(30px, 8.7vw, 38px);
  }

  .choice-grid button {
    min-height: 92px;
    padding: 20px 22px;
    font-size: 15px;
  }
}

/* Boomk testimonials + FAQ refinement */
.testimonials .section-lead,
.faq .section-lead {
  max-width: 900px;
}

.testimonials-grid {
  gap: 14px;
  align-items: stretch;
}

.testimonial-card {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.testimonial-card p {
  color: #f6f0e7;
}

.testimonial-card > strong {
  margin-top: 20px;
}

.faq-list {
  max-width: 1040px;
  margin: 0 auto;
}

.faq-item {
  position: relative;
  overflow: hidden;
}

.faq-item::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: linear-gradient(180deg, var(--gold), rgba(245,173,32,0));
  opacity: .85;
}

.faq-toggle {
  padding: 24px 28px;
  font-size: 18px;
  line-height: 1.35;
  color: #fff7eb;
}

.faq-toggle:hover {
  color: var(--gold-2);
}

.faq-panel > p {
  padding: 0 28px 22px;
}

.faq-cta {
  max-width: 1040px;
  margin: 18px auto 0;
}

@media (max-width: 1100px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .faq-toggle {
    padding: 20px 18px;
    font-size: 16px;
  }

  .faq-panel > p {
    padding: 0 18px 18px;
  }

  .faq-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Kommo CRM service page */
.service-page {
  padding-bottom: 24px;
}

.service-hero {
  grid-template-columns: minmax(0, 1fr) minmax(360px, .86fr);
  min-height: 500px;
}

.service-hero .hero-copy p + p {
  margin-top: 14px;
}

.partner-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.partner-eyebrow .diagnostic-label {
  margin-bottom: 0;
}

.kommo-logo-chip {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(0,0,0,.24);
}

.kommo-logo-chip img {
  width: 118px;
  height: auto;
}

.service-visual {
  position: relative;
  min-height: 360px;
  display: grid;
  align-items: center;
}

.service-panel,
.service-section,
.service-card-grid article,
.service-list-grid,
.before-after-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(18, 20, 23, .92), rgba(6, 7, 8, .82)),
    radial-gradient(circle at 80% 20%, rgba(245, 173, 32, .12), transparent 36%);
  box-shadow: 0 16px 52px rgba(0,0,0,.42), inset 0 1px 0 rgba(255,255,255,.04);
}

.service-panel {
  position: relative;
  overflow: hidden;
  padding: 28px;
  transform: rotateY(-4deg) rotateX(2deg);
}

.service-panel > span {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.service-panel strong {
  display: block;
  max-width: 320px;
  color: #fff8ed;
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 34px;
  line-height: 1.08;
}

.pipeline-preview {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: end;
  gap: 12px;
  height: 150px;
  margin: 28px 0 24px;
  padding: 16px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 8px;
  background: rgba(0,0,0,.22);
}

.pipeline-preview i {
  display: block;
  height: var(--h);
  border: 1px solid rgba(245,173,32,.8);
  border-radius: 6px 6px 2px 2px;
  background: linear-gradient(180deg, rgba(245,173,32,.74), rgba(245,173,32,.08));
  box-shadow: 0 0 18px rgba(245,173,32,.24);
}

.service-panel ul,
.check-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-panel li,
.check-list li {
  position: relative;
  padding-left: 28px;
  color: #d7d0c7;
  line-height: 1.45;
}

.service-panel li::before,
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold);
  font-weight: 700;
}

.service-section {
  margin-top: 16px;
  padding: 30px;
}

.service-section h2 {
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}

.service-split {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 20px;
  align-items: start;
}

.service-copy p {
  margin: 0 0 16px;
  color: #c7bfb4;
  line-height: 1.65;
}

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

.service-card-grid.compact {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.service-card-grid article {
  padding: 22px;
}

.service-card-grid.compact article {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 76px;
  color: #f4eee5;
  font-weight: 700;
}

.service-card-grid span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  margin-bottom: 18px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
}

.service-card-grid.compact span {
  margin-bottom: 0;
}

.service-card-grid h3,
.before-after-grid h3 {
  margin: 0 0 12px;
  color: #fff8ed;
  font-family: "Space Grotesk", Arial, sans-serif;
  font-size: 20px;
}

.service-card-grid p {
  margin: 0;
  color: #bdb5ac;
  line-height: 1.58;
}

.service-list-grid {
  max-width: 1040px;
  margin: 0 auto;
  padding: 24px;
}

.service-list-grid.two-cols {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.service-closing {
  max-width: 900px;
  margin: 18px auto 0;
  color: var(--gold-2);
  font-weight: 700;
  line-height: 1.55;
  text-align: center;
}

.service-steps {
  grid-template-columns: repeat(3, 1fr);
}

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

.before-after-grid article {
  padding: 24px;
}

.muted-list li {
  color: #aaa39a;
}

.final-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.whatsapp-soft-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 12px;
  color: #c7bfb4;
  font-size: 13px;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(241,181,47,.38);
  text-underline-offset: 5px;
}

.whatsapp-soft-link:hover {
  color: var(--gold-2);
}

.service-final-cta h2 {
  max-width: 760px;
  font-size: clamp(24px, 2.25vw, 31px);
  line-height: 1.12;
}

@media (max-width: 1100px) {
  .service-hero,
  .service-split {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 820px) {
  .service-section {
    padding: 24px 18px;
  }

  .service-panel {
    transform: none;
  }

  .service-card-grid,
  .service-card-grid.compact,
  .service-list-grid.two-cols,
  .service-steps,
  .before-after-grid {
    grid-template-columns: 1fr;
  }

  .final-actions {
    grid-column: auto;
    justify-content: flex-start;
  }

  .service-list-grid {
    padding: 20px;
  }
}
