:root {
  --bg: #f5f7f8;
  --surface: #ffffff;
  --surface-alt: #eef2f4;
  --text: #111111;
  --muted: #44525e;
  --line: #d6dde1;
  --brand: #2d5068;
  --brand-2: #223f53;
  --brand-soft: #eef4f7;
  --accent: #b9e33b;
  --accent-strong: #a9d22d;
  --success: #739f1c;
  --shadow: 0 18px 50px rgba(17, 24, 28, 0.08);
  --shadow-strong: 0 24px 80px rgba(20, 35, 46, 0.14);
  --radius: 22px;
  --max: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(184,223,56,.18), transparent 20%),
    linear-gradient(180deg, #f7f9fa 0%, #eff4f6 100%);
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(calc(100% - 2rem), var(--max)); margin: 0 auto; }
.topbar {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(216,224,229,.85);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 82px; gap: 1rem;
}
.brand {
  display: flex; align-items: center; gap: .95rem; font-weight: 800; letter-spacing: -.02em;
}
.brand-logo {
  width: 64px; height: 64px; border-radius: 16px; object-fit: contain;
  object-position: center;
  padding: 6px;
  background: #fff; box-shadow: var(--shadow); border: 1px solid rgba(216,224,229,.8);
}
.brand-text { line-height: 1.05; }
.brand-text strong { display: block; font-size: 1rem; }
.brand-text small { display: block; font-size: .8rem; color: var(--muted); font-weight: 600; margin-top: .18rem; }
.nav-links { display: flex; gap: 1rem; align-items: center; flex-wrap: wrap; }
.nav-links a { color: var(--muted); font-weight: 600; font-size: .96rem; }
.nav-links a:hover, .nav-links a.active { color: var(--brand-2); }
.nav-group { display: flex; align-items: center; gap: 1.2rem; }
.nav-primary { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.menu-toggle {
  display: none; width: 48px; height: 48px; border-radius: 14px; border: 1px solid var(--line);
  background: #fff; align-items: center; justify-content: center; box-shadow: var(--shadow);
}
.menu-toggle span { display: block; width: 18px; height: 2px; background: var(--brand-2); position: relative; }
.menu-toggle span::before, .menu-toggle span::after {
  content: ""; position: absolute; left: 0; width: 18px; height: 2px; background: var(--brand-2);
}
.menu-toggle span::before { top: -6px; }
.menu-toggle span::after { top: 6px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .65rem;
  padding: .95rem 1.3rem; border-radius: 999px; font-weight: 700;
  border: 1px solid transparent; transition: .2s ease; cursor: pointer;
}
.btn-primary { background: linear-gradient(135deg, var(--brand), var(--brand-2)); color: #fff; box-shadow: var(--shadow); }
.btn-primary:hover, .btn-accent:hover, .btn-secondary:hover { transform: translateY(-1px); }
.btn-accent { background: linear-gradient(135deg, var(--accent), var(--accent-strong)); color: #173042; box-shadow: var(--shadow); }
.btn-secondary { background: #fff; border-color: var(--line); color: var(--text); }
.btn-secondary:hover { border-color: var(--brand); color: var(--brand); }
.hero {
  padding: 6rem 0 4.5rem;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  justify-items: center;
}
.hero-stage {
  display: grid;
  grid-template-columns: minmax(280px, 1.1fr) minmax(360px, 520px);
  gap: 2rem;
  align-items: center;
  min-height: 68vh;
}
.hero-negative-space {
  min-height: 520px;
}
.split {
  display: grid; grid-template-columns: 1.15fr .85fr; gap: 2.2rem; align-items: center;
}
.hero-copy { position: relative; }
.hero-copy::after {
  content: ""; position: absolute; right: -2rem; top: 1.8rem; width: 90px; height: 90px;
  background: linear-gradient(135deg, rgba(184,223,56,.8), rgba(184,223,56,.25));
  clip-path: polygon(0 0, 100% 50%, 0 100%); opacity: .8;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem; padding: .45rem .8rem;
  border-radius: 999px; background: rgba(184,223,56,.18); color: var(--brand-2);
  font-size: .84rem; font-weight: 800;
}
h1, h2, h3 {
  line-height: 1.12;
  letter-spacing: -.03em;
  margin: 0 0 1rem;
  color: var(--brand-2);
  text-wrap: balance;
}
h1 { font-size: clamp(2.2rem, 4.8vw, 3.9rem); max-width: 14ch; }
h2 { font-size: clamp(1.8rem, 3.4vw, 2.7rem); }
h3 { font-size: clamp(1.12rem, 1.5vw, 1.32rem); line-height: 1.24; }
.lead {
  font-size: clamp(1rem, 1.35vw, 1.14rem);
  line-height: 1.78;
  color: var(--muted);
  max-width: 70ch;
}
.hero-card, .panel, .card, .stat, .price, .step, .contact-card {
  background: var(--surface); border: 1px solid rgba(216,224,229,.95); border-radius: var(--radius); box-shadow: var(--shadow);
}
.hero-card { padding: 1.3rem; box-shadow: var(--shadow-strong); }
.hero-editorial {
  padding: 4.5rem 0 4rem;
}
.hero-copy-editorial {
  max-width: 520px;
  justify-self: end;
}
.hero-copy-editorial::after {
  display: none;
}
.hero-copy-editorial h1 {
  max-width: 10ch;
  margin-bottom: 1.15rem;
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  line-height: 1.04;
  text-transform: uppercase;
}
.hero-copy-editorial .lead {
  max-width: 40ch;
  margin: 0;
  font-size: clamp(.98rem, 1.05vw, 1.04rem);
  line-height: 1.55;
  text-transform: uppercase;
  letter-spacing: .02em;
  font-weight: 700;
  color: var(--brand-2);
}
.hero-actions-wrap {
  margin-top: 2rem;
  display: inline-flex;
  padding: .55rem;
  border-radius: 0;
  background: transparent;
}
.hero-actions {
  gap: .9rem;
  align-items: center;
}
.hero-actions .btn {
  min-width: 210px;
}
.hero-resource,
.hero-benefits,
.hero-centered,
.hero-copy .eyebrow {
  display: none;
}
.mockup {
  border-radius: 22px; overflow: hidden; background: linear-gradient(180deg, #1f3f55, #274b63); color: #fff;
}
.mockup-bar { display: flex; gap: .45rem; padding: .8rem 1rem; background: rgba(255,255,255,.08); }
.mockup-bar span { width: 11px; height: 11px; border-radius: 999px; background: rgba(255,255,255,.65); }
.mockup-body { padding: 1.2rem; display: grid; gap: 1rem; }
.mockup-pane {
  background: linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.04));
  border: 1px solid rgba(255,255,255,.10); border-radius: 16px; padding: 1rem;
}
.mockup-pane.accent-pane {
  background: linear-gradient(135deg, rgba(184,223,56,.22), rgba(184,223,56,.08));
}
.hero-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: .9rem; margin-top: 1.3rem; }
.hero-stat {
  padding: 1rem; border-radius: 18px; background: rgba(255,255,255,.76); border: 1px solid var(--line); box-shadow: var(--shadow);
}
.hero-stat strong { display: block; font-size: 1.3rem; color: var(--brand-2); }
.hero-stat span { color: var(--muted); font-size: .92rem; }
.hero-benefits {
  list-style: none;
  padding: 0;
  margin: 1.35rem 0 0;
  display: grid;
  gap: .8rem;
}
.hero-benefits li {
  position: relative;
  padding-left: 1.4rem;
  color: var(--muted);
  font-weight: 600;
}
.hero-benefits li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: -.08rem;
  color: var(--accent-strong);
  font-size: 1.35rem;
  line-height: 1;
}
.section { padding: 4.7rem 0; }
.section.alt { background: linear-gradient(180deg, rgba(255,255,255,.65), rgba(255,255,255,.96)); }
.grid-3, .grid-4, .grid-2 { display: grid; gap: 1.25rem; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.card, .stat, .price, .step, .contact-card { padding: 1.45rem; }
.kicker {
  color: var(--brand-2);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .75rem;
  font-weight: 800;
  margin-bottom: .85rem;
}

.section-intro {
  max-width: none;
  width: 100%;
  color: var(--muted);
  margin: 1.15rem 0 2.55rem;
  font-size: clamp(.94rem, .95vw, 1rem);
  line-height: 1.58;
  white-space: normal;
}
.section-intro-soft {
  margin-bottom: 2rem;
}
.home-problem-shell {
  display: grid;
  gap: 1.1rem;
}
.home-problem-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: .9rem;
}
.home-problem-list li {
  position: relative;
  padding-left: 1.25rem;
  font-size: clamp(1rem, 1.1vw, 1.08rem);
  line-height: 1.7;
  color: var(--text);
}
.home-problem-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: .02rem;
  color: var(--brand-2);
  font-weight: 900;
}
@media (max-width: 640px) {
  .home-problem-list li {
    font-size: 1rem;
  }
}
.section-system h2 {
  max-width: 18ch;
  margin-bottom: 0;
  line-height: 1.08;
}
.section-shell {
  display: grid;
  gap: 0;
}
.home-value-grid .card p {
  margin-bottom: 0;
}
.section-system .section-intro {
  margin-top: .85rem;
  margin-bottom: 1.9rem;
}
.cta-split {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.cta-split p {
  margin: .7rem 0 0;
}
.cta-actions {
  flex-wrap: wrap;
  justify-content: flex-end;
}
.mini-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: grid;
  gap: .55rem;
}
.mini-list li {
  position: relative;
  padding-left: 1rem;
  color: var(--muted);
  font-size: .96rem;
  line-height: 1.5;
}
.mini-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--brand-2);
  font-weight: 900;
}
.section-grid {
  align-items: stretch;
}
.card p, .panel p, .step p, .price p, .contact-card p {
  color: var(--muted);
  font-size: .98rem;
  line-height: 1.72;
}
.icon {
  width: 52px; height: 52px; border-radius: 16px; display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(39,75,99,.12), rgba(184,223,56,.22));
  color: var(--brand-2); font-size: 1.35rem; margin-bottom: 1rem;
}
.badges, .check-list { display: flex; flex-wrap: wrap; gap: .65rem; padding: 0; margin: 1rem 0 0; list-style: none; }
.badges li, .pill {
  padding: .55rem .8rem; border-radius: 999px; background: #fff; border: 1px solid var(--line); color: var(--muted); font-weight: 600;
}
.check-list { display: grid; gap: .85rem; }
.check-list li {
  background: rgba(255,255,255,.74); border: 1px solid var(--line); border-radius: 16px; padding: .95rem 1rem;
  font-size: .97rem;
  line-height: 1.66;
}
.highlight {
  background: linear-gradient(135deg, var(--brand), var(--brand-2)); color: #fff;
}
.highlight h1, .highlight h2, .highlight h3,
.cta h1, .cta h2, .cta h3 {
  color: #fff;
}
.highlight .kicker {
  color: rgba(255,255,255,.78);
}
.highlight p, .highlight li { color: rgba(255,255,255,.88); }
.cta {
  padding: 2.4rem; display: grid; gap: 1rem;
  background: linear-gradient(135deg, #274b63 0%, #1f3f55 60%, #355f7a 100%);
  color: #fff; border-radius: calc(var(--radius) + 8px); box-shadow: var(--shadow-strong);
}
.cta p { color: rgba(255,255,255,.85); }
.footer { padding: 2rem 0 3rem; color: var(--muted); }
.footer-wrap {
  display: flex; justify-content: space-between; gap: 1rem; align-items: center; flex-wrap: wrap;
  border-top: 1px solid var(--line); padding-top: 1.4rem;
}
.footer-links {
  gap: .9rem;
}
.footer-icon-link {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.75);
  color: var(--brand-2) !important;
}
.footer-icon-link svg {
  width: 18px;
  height: 18px;
  display: block;
}
.footer-icon-link:hover {
  border-color: var(--brand);
  color: var(--brand) !important;
}
.page-hero { padding: 4.8rem 0 2rem; }
.page-hero h1 {
  font-size: clamp(2rem, 4.1vw, 3.15rem);
  max-width: 18ch;
}
.page-hero p { max-width: 72ch; }
.note {
  border-left: 4px solid var(--accent); padding: .95rem 1rem; background: rgba(184,223,56,.12); border-radius: 14px;
}
.section-services .card,
.section-portfolio-home .card,
.audience-base-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-height: 100%;
  padding: 1.6rem;
}
.section-services .card h3,
.section-portfolio-home .card h3,
.audience-base-card h3 {
  margin: 0;
  line-height: 1.18;
}
.section-services .card p,
.section-portfolio-home .card p,
.audience-base-card p {
  margin: 0;
}
.section-services .icon {
  margin-bottom: .2rem;
}
.section-services .section-grid,
.section-portfolio-home .section-grid {
  margin-top: 2.3rem;
}
.section-portfolio-home .section-intro,
.section-services .section-intro,
.section-audience-home .section-intro {
  margin-bottom: 2.3rem;
}
.portfolio-item {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  gap: 1rem;
}
.portfolio-item h3 {
  margin: 0;
  line-height: 1.18;
}
.portfolio-item p {
  margin: 0;
}
.portfolio-visual {
  aspect-ratio: 16/10; border-radius: 18px; background: linear-gradient(135deg, #eef5f8, #f4f9df); border: 1px solid var(--line);
  display: grid; place-items: center; padding: 1.35rem; color: var(--brand-2); font-weight: 800; text-align: center; position: relative; overflow: hidden;
}
.portfolio-visual::before {
  content: ""; position: absolute; inset: 14px; border-radius: 14px; border: 1px solid rgba(45,80,104,.15);
}
.portfolio-visual::after {
  content: ""; position: absolute; right: 18px; bottom: 18px; width: 36px; height: 36px; background: rgba(184,223,56,.75);
}
.split-balanced {
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, .82fr);
  gap: 1.5rem;
  align-items: stretch;
}
.audience-base-card h2 {
  max-width: 16ch;
}
.audience-base-card .check-list {
  margin-top: .3rem;
  gap: .95rem;
}
.audience-base-card .check-list li {
  padding: .95rem 1.05rem;
  font-size: .95rem;
  line-height: 1.58;
}
.audience-highlight-card {
  justify-content: center;
}
.audience-highlight-card h3 {
  max-width: 18ch;
}
.logo-panel {
  background: linear-gradient(180deg, #ffffff, #f6fafb);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1rem;
}
.logo-panel img { width: 100%; max-width: 270px; margin: 0 auto; border-radius: 12px; }
.muted { color: var(--muted); }
.spacer-sm { height: .7rem; }
@media (max-width: 960px) {
  .split, .grid-3, .grid-4, .grid-2, .hero-stats { grid-template-columns: 1fr; }
  .hero-stage {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-negative-space {
    display: none;
  }
  .hero-copy::after { display: none; }
  .hero-copy-editorial {
    max-width: 100%;
    justify-self: stretch;
  }
  .section-intro {
    white-space: normal;
    font-size: .98rem;
    line-height: 1.68;
    margin-bottom: 2rem;
  }
  .section-system h2,
  .audience-base-card h2,
  .audience-highlight-card h3 {
    max-width: 100%;
  }
  .section-services .section-grid,
  .section-portfolio-home .section-grid {
    margin-top: 2rem;
  }
  .portfolio-item {
    gap: 1rem;
  }
  .split-balanced {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .nav { padding: .7rem 0; }
  .menu-toggle { display: inline-flex; }
  .nav-group { position: relative; }
  .nav-links[data-menu] {
    display: none; position: absolute; right: 0; top: calc(100% + .75rem); min-width: 260px;
    background: rgba(255,255,255,.98); border: 1px solid var(--line); border-radius: 18px; padding: 1rem; box-shadow: var(--shadow-strong);
    flex-direction: column; align-items: stretch;
  }
  .nav-links[data-menu].is-open { display: flex; }
  .nav-primary { flex-direction: column; align-items: stretch; }
}
.mode-toggle {
  white-space: nowrap;
  min-width: 52px;
  width: 52px;
  height: 52px;
  padding: 0;
  font-size: 1.45rem;
  line-height: 1;
  font-weight: 700;
}
.map-card { padding: 0; overflow: hidden; }
.map-shell {
  min-height: 340px;
  width: 100%;
  background: linear-gradient(135deg, #eef5f8, #f4f9df);
}
html[data-theme='dark'] {
  --bg: #10161b;
  --surface: #131c23;
  --surface-alt: #10181f;
  --text: #edf3f5;
  --muted: #acb8c0;
  --line: #24323b;
  --brand: #7c9cb0;
  --brand-2: #cfe47b;
  --brand-soft: #162028;
  --accent: #c7e55f;
  --accent-strong: #d6ea89;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
  --shadow-strong: 0 24px 80px rgba(0, 0, 0, 0.38);
}
html[data-theme='dark'] body {
  background:
    radial-gradient(circle at top right, rgba(207,228,123,.08), transparent 22%),
    linear-gradient(180deg, #0f1519 0%, #151d22 100%);
}
html[data-theme='dark'] .topbar {
  background: rgba(12, 18, 23, 0.88);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
html[data-theme='dark'] .btn-secondary,
html[data-theme='dark'] .hero-stat,
html[data-theme='dark'] .badges li,
html[data-theme='dark'] .pill,
html[data-theme='dark'] .check-list li,
html[data-theme='dark'] .logo-panel,
html[data-theme='dark'] .nav-links[data-menu] { background: #162028; color: var(--text); }
html[data-theme='dark'] .btn-secondary { border-color: var(--line); color: #eef4f6; }
html[data-theme='dark'] .nav-links a { color: #d8e1e6; }
html[data-theme='dark'] .nav-links a:hover,
html[data-theme='dark'] .nav-links a.active { color: #dff18f; }
html[data-theme='dark'] .btn-accent,
html[data-theme='dark'] .nav-links a.btn-accent { color: #11212a; }
html[data-theme='dark'] .btn-accent:hover,
html[data-theme='dark'] .nav-links a.btn-accent:hover { color: #0d1b24; }
html[data-theme='dark'] .footer-icon-link {
  background: rgba(22,32,40,.92);
  border-color: rgba(255,255,255,.08);
  color: #dff18f !important;
}
html[data-theme='dark'] .footer-icon-link:hover {
  color: #eff6f2 !important;
  border-color: rgba(207,228,123,.26);
}
html[data-theme='dark'] .highlight .kicker { color: rgba(255,255,255,.8); }
html[data-theme='dark'] .portfolio-visual { background: linear-gradient(135deg, #18242d, #223341); }
html[data-theme='dark'] .note { background: rgba(207,228,123,.12); }
html[data-theme='dark'] .mode-toggle {
  background: #162028;
  border-color: rgba(255,255,255,.08);
}
@media (max-width: 640px) {
  .btn { width: 100%; }
  .hero { padding-top: 4.2rem; }
  .brand-logo { width: 56px; height: 56px; }
  .brand-text small { max-width: 18ch; }
  .nav-group { gap: .6rem; }
  h1 { font-size: clamp(2rem, 8vw, 2.65rem); }
  h2 { font-size: clamp(1.6rem, 6vw, 2.1rem); }
  h3 { font-size: 1.12rem; }
  .hero-copy h1,
  .page-hero h1 { max-width: 100%; }
  .hero-copy-editorial h1 {
    font-size: clamp(2.1rem, 8vw, 2.95rem);
    max-width: 100%;
  }
  .hero-copy-editorial .lead {
    max-width: 100%;
    font-size: .92rem;
    line-height: 1.5;
  }
  .hero-actions-wrap {
    display: block;
    padding: .4rem;
  }
  .hero-actions .btn {
    min-width: 0;
  }
  .eyebrow,
  .kicker { letter-spacing: .1em; }
  .mode-toggle {
    display: inline-flex;
    width: 48px;
    min-width: 48px;
    height: 48px;
    padding: 0;
    font-size: 1.3rem;
    white-space: nowrap;
  }
  .menu-toggle { width: 44px; height: 44px; }
}

.services-landing .section-intro {
  white-space: normal;
  max-width: 62ch;
  margin-bottom: 1.8rem;
}
.services-inline-intro {
  font-size: clamp(1rem, 1vw, 1.06rem);
  line-height: 1.68;
}
.services-hero-block {
  padding-top: 5rem;
}
.services-hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.6rem;
  align-items: center;
}
.services-hero-copy h1 {
  max-width: 15ch;
  margin-bottom: .8rem;
}
.services-hero-copy .lead {
  max-width: 44ch;
}
.services-hero-actions-wrap {
  margin-top: 1.5rem;
  background: transparent;
  padding: 0;
}
.services-intro-split,
.services-difference-split {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, .85fr);
  gap: 1.5rem;
  align-items: start;
}
.services-intro-list,
.services-difference-points {
  padding: 1.55rem;
}
.services-check-list {
  gap: .85rem;
  margin-top: 0;
}
.services-check-list li {
  font-size: .96rem;
  line-height: 1.6;
}
.services-section-shell {
  display: grid;
  gap: 2rem;
}
.services-section-shell > h2,
.services-process-shell > h2,
.services-modes-shell > h2,
.services-proof-shell > h2,
.services-intro-copy h2,
.services-difference-copy h2,
.service-heading-center h3 {
  max-width: 100%;
  margin-bottom: 0;
}
.service-block {
  display: grid;
  gap: 1.25rem;
}
.service-block-web {
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr);
  align-items: stretch;
}
.service-copy,
.service-side-panel,
.service-feature-copy,
.service-feature-list {
  padding: 1.6rem;
}
.service-copy,
.service-side-panel {
  background: var(--surface);
  border: 1px solid rgba(216,224,229,.95);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.service-copy {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.service-copy .btn {
  margin-top: auto;
}
.service-copy h3,
.service-heading-center h3,
.service-feature-copy h3 {
  margin: 0;
}
.service-problem,
.service-result {
  margin: 0;
}
.service-side-panel h4 {
  margin: 0 0 1rem;
  font-size: 1rem;
  color: var(--brand-2);
}
.compact-list li {
  padding: .9rem 1rem;
}
.service-block-branding {
  display: grid;
  gap: 1.5rem;
}
.service-heading-center {
  max-width: 1040px;
}
.service-heading-center h3 {
  max-width: 100%;
  margin-bottom: 1.1rem;
  font-size: clamp(1.95rem, 2.8vw, 2.7rem);
  line-height: 1.08;
}
.service-branding-grid {
  align-items: stretch;
}
.service-mini-card {
  display: flex;
  flex-direction: column;
  gap: .8rem;
  padding: 1.45rem;
  border-radius: 24px;
}
.service-mini-card strong,
.services-mode-card strong,
.services-proof-case strong {
  color: var(--brand-2);
  font-size: 1rem;
}
.service-mini-card.highlight strong,
.service-block-video h3,
.service-block-video .service-feature-copy strong {
  color: #fff;
}
.service-mini-card.highlight strong {
  color: #fff !important;
}
.service-cta-row,
.services-process-cta {
  display: flex;
  justify-content: flex-start;
  margin-top: 1.35rem;
}
.service-block-video {
  padding: 1.85rem;
  border-radius: 34px;
}
.service-feature-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .9fr);
  gap: 1.35rem;
  align-items: stretch;
}
.service-feature-copy {
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}
.service-feature-copy h3 {
  margin: 0 0 .85rem;
  font-size: clamp(1.7rem, 2.2vw, 2.15rem);
  line-height: 1.1;
}
.service-feature-copy p {
  margin: 0;
}
.service-feature-list {
  display: grid;
  gap: .8rem;
  padding: 0;
}
.service-feature-item {
  padding: .95rem 1rem;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.92);
  font-weight: 600;
}
.services-process-grid {
  margin-top: 2rem;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.services-step {
  display: flex;
  flex-direction: column;
  gap: .9rem;
  min-height: 100%;
  position: relative;
}
.services-step:not(:last-child)::after {
  content: "→";
  position: absolute;
  right: -1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--brand-2);
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1;
}
.step-marker {
  width: 50px;
  height: 50px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  position: relative;
  background: linear-gradient(135deg, rgba(39,75,99,.12), rgba(184,223,56,.2));
  border: 1px solid rgba(45,80,104,.16);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.35), 0 10px 24px rgba(17,24,28,.08);
  overflow: hidden;
}
.step-marker::before {
  content: "";
  position: absolute;
  inset: 7px;
  border-radius: 14px;
  border: 1px solid rgba(45,80,104,.12);
}
.step-marker-label {
  position: relative;
  z-index: 1;
  font-size: .88rem;
  font-weight: 800;
  letter-spacing: .08em;
  color: var(--brand-2);
}
.services-modes-grid,
.services-proof-list {
  margin-top: 2rem;
}
.services-mode-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-height: 100%;
  padding: 1.6rem;
}
.services-mode-card strong {
  font-size: 1.16rem;
  line-height: 1.18;
}
.services-mode-card p {
  margin: 0;
  min-height: 0;
  line-height: 1.62;
}
.services-proof-bullets li strong {
  color: var(--brand-2);
  margin-right: .28rem;
}
.services-mode-card .check-list {
  margin-top: .25rem;
  margin-bottom: 1rem;
}
.services-mode-card .check-list li {
  padding: .92rem 1rem;
}
.services-mode-card .btn {
  margin-top: auto;
}
.services-mode-card.highlight strong,
.services-mode-card.highlight p,
.services-mode-card.highlight li {
  color: #fff;
}
.services-mode-card.highlight .check-list li {
  background: rgba(255,255,255,.14);
  border-color: rgba(255,255,255,.18);
}
.services-proof-list {
  display: grid;
  gap: 1rem;
}
.services-proof-case {
  padding: 1.45rem 1.25rem;
}
.services-proof-bullets {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: .8rem;
}
.services-proof-bullets li {
  position: relative;
  margin: 0;
  padding-left: .95rem;
  color: var(--text);
  line-height: 1.62;
}
.services-proof-bullets li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: .08rem;
  color: var(--brand-2);
  font-size: .95rem;
  line-height: 1;
}
.services-proof-bullets strong {
  color: var(--brand-2);
  margin-right: .28rem;
}
.services-proof-shell .service-cta-row {
  margin-top: 1.7rem;
}
.services-final-cta {
  gap: 1.4rem;
}
.services-final-cta p {
  margin: .65rem 0 0;
}
.services-final-actions {
  display: flex;
  gap: .9rem;
  flex-wrap: wrap;
}

html[data-theme='dark'] .service-copy,
html[data-theme='dark'] .service-side-panel,
html[data-theme='dark'] .services-intro-list,
html[data-theme='dark'] .services-difference-points,
html[data-theme='dark'] .service-mini-card,
html[data-theme='dark'] .services-mode-card,
html[data-theme='dark'] .services-proof-case {
  background: #111b22;
}
html[data-theme='dark'] .step-marker {
  background: linear-gradient(135deg, rgba(124,156,176,.15), rgba(207,228,123,.16));
  border-color: rgba(255,255,255,.08);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 10px 24px rgba(0,0,0,.24);
}
html[data-theme='dark'] .step-marker::before {
  border-color: rgba(255,255,255,.12);
}
html[data-theme='dark'] .step-marker-label {
  color: var(--accent-strong);
}

@media (max-width: 1100px) {
  .services-step:not(:last-child)::after {
    right: -.85rem;
  }
}

@media (max-width: 960px) {
  .services-hero-shell,
  .services-intro-split,
  .services-difference-split,
  .service-block-web,
  .service-feature-shell,
  .services-process-grid {
    grid-template-columns: 1fr;
  }
  .services-step:not(:last-child)::after {
    content: "↓";
    right: auto;
    left: 50%;
    top: auto;
    bottom: -1.15rem;
    transform: translateX(-50%);
  }
  .services-hero-copy h1,
  .services-section-shell > h2,
  .services-process-shell > h2,
  .services-modes-shell > h2,
  .services-proof-shell > h2,
  .services-intro-copy h2,
  .services-difference-copy h2,
  .service-heading-center h3 {
    max-width: 100%;
  }
  .services-final-actions {
    flex-direction: column;
  }
}

.sticky-whatsapp {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 70;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .78rem;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  border: 1px solid rgba(37, 211, 102, .2);
  background: rgba(255,255,255,.92);
  color: #183528;
  box-shadow: 0 16px 38px rgba(17,24,28,.12);
  backdrop-filter: blur(12px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease, box-shadow .2s ease;
}
.sticky-whatsapp.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.sticky-whatsapp:hover {
  box-shadow: 0 18px 44px rgba(17,24,28,.18);
}
.sticky-whatsapp__icon {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #25d366, #7be495);
  color: #0f2a1c;
  line-height: 1;
}
.sticky-whatsapp__svg {
  width: 19px;
  height: 19px;
  display: block;
}
html[data-theme='dark'] .sticky-whatsapp {
  background: rgba(19, 28, 35, .94);
  border-color: rgba(207,228,123,.14);
  color: #eff6f2;
  box-shadow: 0 18px 42px rgba(0,0,0,.28);
}
html[data-theme='dark'] .sticky-whatsapp__icon {
  color: #11231a;
}
@media (max-width: 640px) {
  .sticky-whatsapp {
    right: .8rem;
    bottom: .8rem;
    width: 52px;
    height: 52px;
    padding: .75rem;
  }
}
