:root {
  --bg: #f7fafc;
  --surface: #ffffff;
  --surface-soft: #eef6f7;
  --text: #111827;
  --muted: #5f6b7a;
  --muted-2: #7b8794;
  --line: #e5eaf0;
  --accent: #14b8a6;
  --accent-dark: #0f766e;
  --accent-soft: #ccfbf1;
  --blue-soft: #dbeafe;
  --yellow-soft: #fef3c7;
  --shadow: 0 24px 60px rgba(15, 23, 42, 0.08);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Manrope, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

button,
input,
textarea {
  font: inherit;
}

.site-shell {
  min-height: 100vh;
  overflow: hidden;
}

.container {
  width: min(100% - 36px, var(--container));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  top: -120px;
  left: 18px;
  z-index: 999;
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--text);
  color: white;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 18px;
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 250, 252, 0.86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(229, 234, 240, 0.7);
}

.header__inner {
  display: flex;
  align-items: center;
  min-height: 86px;
  gap: 22px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.header .logo {
  margin-right: 10px;
}

.logo__mark {
  width: 38px;
  height: 38px;
  border-radius: 13px;
  background: var(--text);
  position: relative;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.12);
}

.logo__mark::before {
  content: "";
  position: absolute;
  inset: 9px 11px;
  border-radius: 4px 12px 12px 4px;
  background: white;
}

.logo__mark::after {
  content: "";
  position: absolute;
  width: 11px;
  height: 11px;
  left: 19px;
  top: 14px;
  border-radius: 3px;
  background: var(--accent);
}

.logo__text {
  font-size: 22px;
  letter-spacing: -0.04em;
  font-weight: 820;
}

.logo__image {
  display: block;
  height: 52px;
  width: auto;
}

.logo__mark-image {
  display: block;
  width: auto;
  height: 48px;
  flex: 0 0 auto;
}

.logo__brand-text {
  font-size: 21px;
  line-height: 1;
  letter-spacing: -0.045em;
  font-weight: 850;
  color: var(--text);
  white-space: nowrap;
}

.header .logo__mark-image {
  height: 52px;
}

.footer .logo__mark-image {
  height: 42px;
}

.footer .logo__brand-text {
  font-size: 20px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: 4px;
  flex: 1 1 auto;
}

.nav a {
  padding: 10px 13px;
  border-radius: 999px;
  color: #334155;
  font-size: 15px;
  font-weight: 650;
  white-space: nowrap;
  transition: background 0.18s ease, color 0.18s ease;
}

.nav a:hover,
.nav a.is-active {
  background: white;
  color: var(--text);
}

.header__cta {
  flex: 0 0 auto;
  margin-left: auto;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
  color: var(--text);
  cursor: pointer;
  margin-left: auto;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: currentColor;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 760;
  letter-spacing: -0.01em;
  line-height: 1.1;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

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

.btn--primary {
  background: linear-gradient(135deg, #111827 0%, #0f766e 100%);
  color: white;
  border-color: rgba(20, 184, 166, 0.32);
  box-shadow: 0 16px 28px rgba(15, 23, 42, 0.14), 0 0 0 1px rgba(20, 184, 166, 0.12) inset;
}

.btn--primary:hover {
  box-shadow: 0 20px 36px rgba(15, 23, 42, 0.2), 0 0 0 1px rgba(94, 234, 212, 0.22) inset;
}

.btn--secondary {
  background: white;
  color: var(--text);
  border-color: #99f6e4;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.07);
}

.btn--secondary:hover {
  border-color: var(--accent);
  box-shadow: 0 16px 30px rgba(20, 184, 166, 0.14);
}

.btn--large {
  min-height: 50px;
  padding: 14px 22px;
  font-size: 16px;
}

.btn--accent {
  background: var(--accent);
  color: #042f2e;
  box-shadow: 0 16px 30px rgba(20, 184, 166, 0.24);
}

.btn--ghost {
  background: white;
  border-color: var(--line);
  color: var(--text);
}

.btn--wide {
  width: 100%;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  color: #334155;
  font-size: 14px;
  font-weight: 720;
}

.badge::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(20, 184, 166, 0.14);
}

.hero {
  position: relative;
  padding: 74px 0 56px;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(4px);
  opacity: 0.72;
  pointer-events: none;
}

.hero::before {
  width: 380px;
  height: 380px;
  right: -120px;
  top: -110px;
  background: var(--accent-soft);
}

.hero::after {
  width: 310px;
  height: 310px;
  left: -120px;
  bottom: -70px;
  background: var(--blue-soft);
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  align-items: center;
  gap: 52px;
}

.hero h1,
.page-hero h1 {
  margin: 18px 0 20px;
  font-size: clamp(40px, 6.1vw, 68px);
  line-height: 0.98;
  letter-spacing: -0.075em;
}

.hero__lead,
.page-hero__lead {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.55;
}

.hero__actions,
.page-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 32px;
}

.hero__proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 30px;
}

.proof-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 10px 13px;
  border-radius: 999px;
  background: white;
  border: 1px solid var(--line);
  color: #475569;
  font-size: 14px;
  font-weight: 650;
}

.proof-pill strong {
  color: var(--text);
}

.hero-card {
  position: relative;
  padding: 24px;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(229, 234, 240, 0.86);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.mock-window {
  overflow: hidden;
  border-radius: 24px;
  background: white;
  border: 1px solid var(--line);
}

.mock-window__top {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 14px;
  border-bottom: 1px solid var(--line);
  background: #f8fafc;
}

.mock-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #cbd5e1;
}

.mock-window__body {
  padding: 22px;
}

.mock-hero {
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  gap: 14px;
  margin-bottom: 18px;
}

.mock-line {
  height: 12px;
  border-radius: 999px;
  background: #e2e8f0;
}

.mock-line--dark {
  height: 22px;
  background: #111827;
}

.mock-line--accent {
  background: var(--accent);
}

.mock-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}

.mock-card {
  min-height: 118px;
  padding: 16px;
  border-radius: 18px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
}

.mock-card:nth-child(2) {
  background: #ecfeff;
}

.mock-card:nth-child(3) {
  background: #eff6ff;
}

.mock-card:nth-child(4) {
  background: #fefce8;
}

.floating-note {
  position: absolute;
  left: -28px;
  bottom: 42px;
  max-width: 248px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: white;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.12);
}

.floating-note p {
  margin: 0;
  color: #334155;
  font-size: 14px;
  font-weight: 690;
  line-height: 1.4;
}

.section {
  padding: 72px 0;
  scroll-margin-top: 96px;
}

.hero {
  scroll-margin-top: 96px;
}

.section--tight {
  padding: 46px 0;
}

.section--surface {
  background: white;
}

.section__head {
  max-width: 760px;
  margin-bottom: 34px;
}

.kicker {
  margin: 0 0 10px;
  color: var(--accent-dark);
  font-size: 14px;
  font-weight: 830;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section h2,
.page-section h2 {
  margin: 0;
  font-size: clamp(32px, 4.5vw, 52px);
  line-height: 1.04;
  letter-spacing: -0.055em;
}

.section__text {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 18px;
  max-width: 700px;
}

.grid {
  display: grid;
  gap: 18px;
}

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

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

.grid--4 {
  grid-template-columns: repeat(4, 1fr);
}

.card {
  padding: 24px;
  border-radius: var(--radius-lg);
  background: white;
  border: 1px solid var(--line);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.04);
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.card:hover {
  border-color: rgba(20, 184, 166, 0.34);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.07);
}

.card--soft {
  background: #f8fafc;
}

.card__icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  border-radius: 15px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-weight: 900;
}

.card h3 {
  margin: 0 0 10px;
  font-size: 21px;
  line-height: 1.18;
  letter-spacing: -0.03em;
}

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

.list {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.list li {
  position: relative;
  padding-left: 28px;
  color: #475569;
}

.list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: var(--accent-soft);
  border: 4px solid white;
  box-shadow: 0 0 0 1px #99f6e4;
}

.case-card {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 32px;
  align-items: center;
  padding: 26px;
  border-radius: var(--radius-xl);
  background: white;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.case-card__media {
  overflow: hidden;
  border-radius: 24px;
  background: #f8fafc;
  border: 1px solid var(--line);
}

.case-card__content h3 {
  margin: 0 0 12px;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.055em;
}

.case-card__content p {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 18px;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 22px 0 0;
}

.tag {
  display: inline-flex;
  padding: 8px 11px;
  border-radius: 999px;
  background: #f8fafc;
  border: 1px solid var(--line);
  color: #475569;
  font-size: 14px;
  font-weight: 650;
}

.process {
  counter-reset: step;
}

.process .card {
  position: relative;
}

.process .card::before {
  counter-increment: step;
  content: "0" counter(step);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: var(--text);
  color: white;
  font-weight: 820;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.price {
  margin: 18px 0 2px;
  font-size: 34px;
  letter-spacing: -0.055em;
  font-weight: 850;
}

.price span {
  color: var(--muted-2);
  font-size: 15px;
  font-weight: 650;
  letter-spacing: 0;
}

.pricing-card .btn {
  margin-top: auto;
}

.cta-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(34px, 6vw, 58px);
  border-radius: var(--radius-xl);
  background: #111827;
  color: white;
}

.cta-panel::after {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  right: -120px;
  top: -120px;
  border-radius: 999px;
  background: rgba(94, 234, 212, 0.22);
}

.cta-panel__content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.cta-panel h2 {
  margin: 0;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1;
  letter-spacing: -0.06em;
}

.cta-panel p {
  margin: 18px 0 26px;
  color: #cbd5e1;
  font-size: 18px;
}

.cta-panel .btn--ghost {
  background: white;
  color: var(--text);
}

.page-hero {
  padding: 74px 0 44px;
}

.page-hero__inner {
  max-width: 860px;
}

.page-section {
  padding: 54px 0;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 0.65fr);
  gap: 34px;
  align-items: start;
}

.info-panel {
  position: sticky;
  top: 100px;
  padding: 24px;
  border-radius: var(--radius-lg);
  background: white;
  border: 1px solid var(--line);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.06);
}

.service-row {
  display: grid;
  grid-template-columns: minmax(0, 0.65fr) minmax(0, 1fr);
  gap: 28px;
  padding: 30px 0;
  border-top: 1px solid var(--line);
}

.service-row:last-child {
  border-bottom: 1px solid var(--line);
}

.service-row h2 {
  font-size: 30px;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: 24px;
  align-items: stretch;
}

.contact-list {
  display: grid;
  gap: 14px;
}

.contact-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: white;
}

.contact-item strong {
  display: block;
}

.contact-item span {
  display: block;
  color: var(--muted);
  font-size: 14px;
}

.note {
  margin-top: 18px;
  padding: 16px;
  border: 1px solid #bae6fd;
  border-radius: 18px;
  background: #eff6ff;
  color: #334155;
}


.side-index {
  position: fixed;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 35;
  display: grid;
  gap: 9px;
  padding: 12px 10px;
  border: 1px solid rgba(229, 234, 240, 0.86);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(16px);
}

.side-index a {
  display: grid;
  grid-template-columns: 10px auto;
  align-items: center;
  gap: 7px;
  color: #64748b;
  font-size: 12px;
  font-weight: 750;
  line-height: 1;
  white-space: nowrap;
  transition: color 0.18s ease;
}

.side-index a span {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #dbe5ef;
  box-shadow: 0 0 0 4px rgba(20, 184, 166, 0);
  transition: background 0.18s ease, box-shadow 0.18s ease;
}

.side-index a.is-active,
.side-index a:hover {
  color: var(--text);
}

.side-index a.is-active span,
.side-index a:hover span {
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(20, 184, 166, 0.14);
}

.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(153, 246, 228, 0.7);
  border-radius: 999px;
  background: linear-gradient(135deg, #111827 0%, #0f766e 100%);
  color: white;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.2);
  cursor: pointer;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  font-size: 22px;
  font-weight: 900;
}

.back-to-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.footer {
  padding: 46px 0 28px;
  background: white;
  border-top: 1px solid var(--line);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 0.7fr);
  gap: 30px;
}

.footer p {
  margin: 14px 0 0;
  color: var(--muted);
}

.footer h2,
.footer h3 {
  margin: 0 0 14px;
  font-size: 15px;
  letter-spacing: 0.02em;
}

.footer ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer a {
  color: #475569;
}

.footer a:hover {
  color: var(--text);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--muted-2);
  font-size: 14px;
}

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

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

@media (max-width: 980px) {
  .header__inner {
    min-height: 76px;
    padding: 8px 0;
  }

  .header .logo__mark-image {
    height: 44px;
  }

  .logo__brand-text {
    font-size: 19px;
  }

  .menu-toggle {
    display: block;
  }

  .nav,
  .header__cta {
    display: none;
  }

  .header.is-open .nav {
    position: absolute;
    top: 76px;
    left: 18px;
    right: 18px;
    display: grid;
    gap: 4px;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: white;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
  }

  .header.is-open .nav a {
    padding: 13px 15px;
  }

  .hero__grid,
  .case-card,
  .split,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

  .grid--3,
  .integrations-grid {
    grid-template-columns: 1fr;
  }

  .floating-note {
    position: static;
    margin-top: 16px;
    max-width: none;
  }

  .info-panel {
    position: static;
  }

  .service-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

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

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .logo__text {
    font-size: 20px;
  }

  .header .logo__mark-image {
    height: 38px;
  }

  .logo__brand-text {
    font-size: 17px;
  }

  .footer .logo__mark-image {
    height: 36px;
  }

  .hero,
  .page-hero {
    padding: 44px 0 34px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(34px, 11vw, 48px);
  }

  .hero__lead,
  .page-hero__lead {
    font-size: 17px;
  }

  .hero-card {
    padding: 14px;
    border-radius: 24px;
  }

  .mock-window__body {
    padding: 16px;
  }

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

  .mock-card-grid,
  .grid--4 {
    grid-template-columns: 1fr;
  }

  .section,
  .page-section {
    padding: 46px 0;
  }

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

  .hero__actions,
  .page-hero__actions {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  .contact-item {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .footer__bottom {
    flex-direction: column;
  }
}


@media (max-width: 1280px) {
  .side-index {
    display: none;
  }
}

/* v1.4 refinements: sharper logo, cleaner side navigation, richer hero preview */
.logo__mark-image {
  height: 50px;
  image-rendering: auto;
}

.header .logo__mark-image {
  height: 54px;
}

.footer .logo__mark-image {
  height: 40px;
}

.hero__actions {
  gap: 12px;
}

.hero-card--solution {
  padding: 26px;
  background: linear-gradient(145deg, rgba(255,255,255,0.96), rgba(240,253,250,0.88));
  border: 1px solid rgba(153, 246, 228, 0.55);
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.11);
  backdrop-filter: none;
}

.solution-preview {
  overflow: hidden;
  border-radius: 26px;
  background: white;
  border: 1px solid #dbe5ef;
}

.solution-preview__top {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 18px;
  background: #f8fafc;
  border-bottom: 1px solid #e5eaf0;
}

.solution-preview__top span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #cbd5e1;
}

.solution-preview__top strong {
  margin-left: auto;
  color: #64748b;
  font-size: 13px;
  font-weight: 750;
}

.solution-preview__hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 180px;
  gap: 18px;
  padding: 26px;
  align-items: stretch;
}

.mini-kicker {
  margin: 0 0 10px;
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.solution-preview h3 {
  margin: 0;
  max-width: 420px;
  font-size: clamp(28px, 3.6vw, 42px);
  line-height: 1.02;
  letter-spacing: -0.06em;
}

.solution-preview p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 16px;
}

.solution-order-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 150px;
  padding: 20px;
  border-radius: 22px;
  background: linear-gradient(135deg, #ccfbf1 0%, #ecfeff 100%);
  border: 1px solid #99f6e4;
}

.solution-order-card span,
.solution-order-card small {
  color: #0f766e;
  font-weight: 750;
}

.solution-order-card strong {
  margin: 8px 0;
  color: #111827;
  font-size: 30px;
  letter-spacing: -0.05em;
  line-height: 1;
}

.solution-preview__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  padding: 1px;
  background: #e5eaf0;
}

.solution-preview__grid div {
  min-height: 132px;
  padding: 18px;
  background: #fff;
}

.solution-preview__grid div:nth-child(2),
.solution-preview__grid div:nth-child(4) {
  background: #f0fdfa;
}

.solution-preview__grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: #ccfbf1;
  color: #0f766e;
  font-size: 12px;
  font-weight: 900;
}

.solution-preview__grid strong {
  display: block;
  color: #111827;
  font-size: 16px;
  line-height: 1.15;
}

.solution-preview__grid small {
  display: block;
  margin-top: 7px;
  color: #64748b;
  line-height: 1.35;
}

.floating-note--accent {
  left: -16px;
  bottom: 28px;
  border-color: rgba(153, 246, 228, 0.8);
  box-shadow: 0 20px 46px rgba(15, 23, 42, 0.11);
}

.card__icon {
  background: linear-gradient(135deg, #ccfbf1 0%, #e0f2fe 100%);
}

.tag {
  background: #f0fdfa;
  border-color: #99f6e4;
  color: #0f766e;
}

.side-index {
  left: max(18px, calc((100vw - var(--container)) / 2 - 132px));
  width: 108px;
  padding: 12px 10px;
  border-radius: 22px;
  background: #ffffff;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.08);
  backdrop-filter: none;
}

.side-index a {
  font-size: 11px;
  gap: 6px;
}

@media (max-width: 1500px) {
  .side-index {
    display: none;
  }
}

@media (max-width: 980px) {
  .solution-preview__hero,
  .solution-preview__grid {
    grid-template-columns: 1fr 1fr;
  }

  .solution-order-card {
    min-height: 120px;
  }
}

@media (max-width: 640px) {
  .header .logo__mark-image {
    height: 46px;
  }

  .hero-card--solution {
    padding: 14px;
  }

  .solution-preview__hero,
  .solution-preview__grid {
    grid-template-columns: 1fr;
  }

  .solution-preview__hero {
    padding: 20px;
  }

  .solution-preview__grid div {
    min-height: auto;
  }
}


/* Logo restore: use the original generated Gonchar Online image, not recreated SVG/text pieces. */
.logo {
  gap: 0;
}
.logo__full-image {
  display: block;
  width: auto;
  height: 64px;
  object-fit: contain;
}
.header .logo__full-image {
  height: 66px;
}
.footer .logo__full-image {
  height: 58px;
}
@media (max-width: 980px) {
  .header .logo__full-image {
    height: 58px;
  }
}
@media (max-width: 640px) {
  .header .logo__full-image {
    height: 50px;
  }
  .footer .logo__full-image {
    height: 48px;
  }
}

/* v1.6 — clearer first screen, client path, order-system offer */
.hero--clear {
  padding: 70px 0 62px;
}

.hero__grid--clear {
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 0.9fr);
  gap: 64px;
}

.hero--clear h1 {
  max-width: 780px;
  font-size: clamp(42px, 5.2vw, 66px);
  line-height: 1.01;
  letter-spacing: -0.07em;
}

.hero--clear .hero__lead {
  max-width: 680px;
  font-size: clamp(18px, 1.7vw, 21px);
}

.hero__actions--clear {
  gap: 12px;
}

.hero-formats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, max-content));
  gap: 10px 18px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
  color: #475569;
  font-size: 15px;
  font-weight: 720;
}

.hero-formats li {
  position: relative;
  padding-left: 22px;
}

.hero-formats li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(20, 184, 166, 0.12);
}

.hero-card--result {
  padding: 24px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.97), rgba(240, 253, 250, 0.88));
  border-color: rgba(153, 246, 228, 0.65);
  box-shadow: 0 30px 74px rgba(15, 23, 42, 0.10);
  backdrop-filter: none;
}

.result-panel {
  overflow: hidden;
  border-radius: 28px;
  background: white;
  border: 1px solid #dbe5ef;
}

.result-panel__head {
  padding: 28px 28px 24px;
  background:
    radial-gradient(circle at 90% 15%, rgba(20, 184, 166, 0.18), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.result-panel__head h3 {
  margin: 8px 0 0;
  max-width: 520px;
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.04;
  letter-spacing: -0.06em;
}

.result-panel__head p {
  margin: 14px 0 0;
  max-width: 500px;
  color: var(--muted);
  font-size: 16px;
}

.result-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: #e5eaf0;
  border-top: 1px solid #e5eaf0;
  border-bottom: 1px solid #e5eaf0;
}

.result-flow div {
  min-height: 118px;
  padding: 18px 16px;
  background: white;
}

.result-flow div:nth-child(even) {
  background: #f0fdfa;
}

.result-flow strong {
  display: inline-grid;
  place-items: center;
  width: 32px;
  height: 32px;
  margin-bottom: 12px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 900;
}

.result-flow span {
  display: block;
  color: #111827;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.25;
}

.result-panel__bottom {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(160px, 0.65fr);
  gap: 18px;
  padding: 20px;
  align-items: stretch;
}

.result-order-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 18px;
  border-radius: 22px;
  background: linear-gradient(135deg, #0f172a 0%, #0f766e 100%);
  color: white;
}

.result-order-card span,
.result-order-card small {
  color: rgba(255, 255, 255, 0.76);
  font-weight: 700;
}

.result-order-card strong {
  margin: 6px 0;
  font-size: 22px;
  line-height: 1.1;
}

.result-tools {
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  gap: 8px;
}

.result-tools span {
  display: inline-flex;
  padding: 8px 10px;
  border-radius: 999px;
  background: #f0fdfa;
  border: 1px solid #99f6e4;
  color: #0f766e;
  font-size: 13px;
  font-weight: 800;
}

.path-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  position: relative;
}

.path-step {
  position: relative;
  padding: 24px;
  border-radius: var(--radius-lg);
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.04);
}

.path-step::after {
  content: "→";
  position: absolute;
  right: -14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent);
  font-size: 28px;
  font-weight: 900;
  z-index: 2;
}

.path-step:last-child::after {
  display: none;
}

.path-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ccfbf1 0%, #e0f2fe 100%);
  color: #0f766e;
  font-size: 13px;
  font-weight: 900;
}

.path-step h3 {
  margin: 0 0 8px;
  font-size: 22px;
  letter-spacing: -0.03em;
}

.path-step p {
  margin: 0;
  color: var(--muted);
}

.service-cards .card:nth-child(3) {
  border-color: rgba(20, 184, 166, 0.35);
  background: linear-gradient(180deg, #ffffff 0%, #f0fdfa 100%);
}

.case-card--strong {
  align-items: stretch;
}

.case-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 0 0 20px;
}

.case-features div {
  padding: 14px;
  border-radius: 18px;
  background: #f8fafc;
  border: 1px solid #e5eaf0;
}

.case-features strong,
.case-features span {
  display: block;
}

.case-features strong {
  color: #111827;
  font-size: 15px;
}

.case-features span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.pricing-card--featured {
  border-color: rgba(20, 184, 166, 0.42);
  background: linear-gradient(180deg, #ffffff 0%, #f0fdfa 100%);
  box-shadow: 0 18px 44px rgba(20, 184, 166, 0.10);
}

.faq-grid .card h3 {
  font-size: 20px;
}

@media (max-width: 1180px) {
  .hero__grid--clear {
    gap: 34px;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.85fr);
  }

  .result-flow {
    grid-template-columns: repeat(2, 1fr);
  }

  .path-flow {
    grid-template-columns: repeat(2, 1fr);
  }

  .path-step::after {
    display: none;
  }
}

@media (max-width: 980px) {
  .hero__grid--clear,
  .result-panel__bottom {
    grid-template-columns: 1fr;
  }

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

  .hero-card--result {
    padding: 16px;
  }

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

@media (max-width: 640px) {
  .hero--clear {
    padding: 42px 0 36px;
  }

  .hero--clear h1 {
    font-size: clamp(34px, 11vw, 46px);
  }

  .hero-formats,
  .result-flow,
  .path-flow {
    grid-template-columns: 1fr;
  }

  .result-panel__head {
    padding: 22px;
  }

  .result-flow div {
    min-height: auto;
  }
}


/* v1.7 — cleaner first screen + original transparent logo */
.header .logo__full-image,
.footer .logo__full-image {
  background: transparent;
  filter: none;
}

.header .logo__full-image {
  height: 64px;
}

.footer .logo__full-image {
  height: 54px;
}

/* remove old side table of contents */
.side-index {
  display: none !important;
}

.hero--intro {
  padding: 72px 0 66px;
  border-bottom: 1px solid rgba(229, 234, 240, 0.7);
}

.hero--intro::before {
  width: 430px;
  height: 430px;
  right: -130px;
  top: -120px;
  background: rgba(204, 251, 241, 0.92);
}

.hero--intro::after {
  width: 280px;
  height: 280px;
  left: -120px;
  bottom: -90px;
  background: rgba(219, 234, 254, 0.92);
}

.hero-intro {
  position: relative;
  z-index: 1;
  max-width: 920px;
  margin: 0 auto 44px;
  text-align: center;
}

.hero-intro .badge {
  margin: 0 auto;
}

.hero--intro h1 {
  max-width: 920px;
  margin: 20px auto 20px;
  font-size: clamp(40px, 6.2vw, 72px);
  line-height: 0.96;
  letter-spacing: -0.075em;
}

.hero--intro .hero__lead {
  max-width: 760px;
  margin: 0 auto;
  font-size: clamp(18px, 1.8vw, 22px);
}

.hero__actions--intro {
  justify-content: center;
  gap: 12px;
}

.work-chain {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
  margin-top: 14px;
}

.work-chain::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 42px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(20, 184, 166, 0.2), rgba(20, 184, 166, 0.9), rgba(20, 184, 166, 0.2));
  box-shadow: 0 0 28px rgba(20, 184, 166, 0.28);
}

.chain-step {
  position: relative;
  min-height: 230px;
  padding: 72px 18px 20px;
  border: 1px solid rgba(153, 246, 228, 0.58);
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 252, 0.92));
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.chain-step:hover {
  transform: translateY(-4px);
  border-color: rgba(20, 184, 166, 0.65);
  box-shadow: 0 24px 56px rgba(15, 23, 42, 0.10);
}

.chain-step::after {
  content: "→";
  position: absolute;
  right: -20px;
  top: 33px;
  color: var(--accent);
  font-size: 30px;
  font-weight: 900;
  text-shadow: 0 0 20px rgba(20, 184, 166, 0.3);
  z-index: 2;
}

.chain-step:last-child::after {
  display: none;
}

.chain-step span {
  position: absolute;
  left: 50%;
  top: 18px;
  transform: translateX(-50%);
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: linear-gradient(135deg, #14b8a6 0%, #99f6e4 100%);
  color: #042f2e;
  border: 5px solid white;
  box-shadow: 0 14px 30px rgba(20, 184, 166, 0.26);
  font-size: 13px;
  font-weight: 900;
}

.chain-step h3 {
  margin: 0 0 10px;
  color: var(--text);
  font-size: 20px;
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.chain-step p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
}

/* hide old right-side result block styles from v1.6 if not used */
.hero-card--result {
  display: none;
}

@media (max-width: 1180px) {
  .work-chain {
    grid-template-columns: 1fr;
    max-width: 720px;
    margin: 22px auto 0;
  }

  .work-chain::before {
    left: 42px;
    right: auto;
    top: 34px;
    bottom: 34px;
    width: 3px;
    height: auto;
    background: linear-gradient(180deg, rgba(20, 184, 166, 0.2), rgba(20, 184, 166, 0.9), rgba(20, 184, 166, 0.2));
  }

  .chain-step {
    min-height: auto;
    padding: 22px 22px 22px 92px;
  }

  .chain-step span {
    left: 42px;
    top: 22px;
    transform: translateX(-50%);
  }

  .chain-step::after {
    content: "↓";
    left: 31px;
    right: auto;
    top: auto;
    bottom: -24px;
    font-size: 26px;
  }
}

@media (max-width: 640px) {
  .header .logo__full-image {
    height: 52px;
  }

  .hero--intro {
    padding: 48px 0 46px;
  }

  .hero-intro {
    text-align: left;
    margin-bottom: 30px;
  }

  .hero-intro .badge {
    margin: 0;
  }

  .hero--intro h1 {
    font-size: clamp(36px, 12vw, 50px);
    margin-left: 0;
    margin-right: 0;
  }

  .hero--intro .hero__lead {
    margin-left: 0;
    margin-right: 0;
  }

  .hero__actions--intro {
    justify-content: stretch;
  }

  .work-chain {
    max-width: none;
  }

  .chain-step {
    border-radius: 22px;
  }
}


/* v1.8 — tighter first screen and cleaner pricing cards */
.hero--intro {
  padding-top: 34px;
  padding-bottom: 64px;
}

.hero-intro {
  margin-bottom: 36px;
}

.hero--intro h1 {
  margin-top: 0;
  margin-bottom: 18px;
}

.hero--intro .hero__lead {
  margin-top: 0;
}

.hero__actions--intro {
  margin-top: 28px;
}

.work-chain {
  margin-top: 10px;
}

/* pricing cards: equal rhythm and cleaner text alignment */
.pricing-card h3 {
  min-height: 52px;
  display: flex;
  align-items: flex-start;
}

.pricing-card > p {
  min-height: 88px;
}

.pricing-card .price {
  min-height: 72px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 6px;
  margin-top: 14px;
  font-size: clamp(29px, 2.7vw, 34px);
  line-height: 1.03;
}

.pricing-card .price span {
  display: block;
  margin-top: 0;
  line-height: 1.2;
}

.pricing-card .list {
  min-height: 126px;
  align-content: start;
}

.pricing-card .list li {
  display: block;
  min-height: 30px;
  padding-left: 30px;
  line-height: 1.35;
}

.pricing-card .list li::before {
  top: 2px;
}

@media (max-width: 1180px) {
  .hero--intro {
    padding-top: 28px;
  }

  .hero-intro {
    margin-bottom: 30px;
  }

  .pricing-card h3,
  .pricing-card > p,
  .pricing-card .price,
  .pricing-card .list {
    min-height: 0;
  }
}

@media (max-width: 640px) {
  .hero--intro {
    padding-top: 28px;
    padding-bottom: 46px;
  }

  .hero-intro {
    text-align: left;
  }

  .hero--intro h1 {
    margin-top: 0;
  }
}


/* v1.9.1 — SEO title + cleaner hero subtitle + hide duplicate hero CTA on desktop */
@media (min-width: 981px) {
  .hero__actions--mobile-only {
    display: none;
  }
}

@media (max-width: 980px) {
  .hero__actions--mobile-only {
    display: flex;
  }
}


/* v1.10.4 — calmer work-chain animation */
.work-chain {
  --go-chain-active: #14b8a6;
}

.work-chain::before {
  background: rgba(20, 184, 166, 0.18) !important;
  box-shadow: 0 0 12px rgba(20, 184, 166, 0.12) !important;
  transform: none !important;
}

.work-chain::after {
  content: none !important;
}

.work-chain .chain-step {
  opacity: 1 !important;
  transform: none !important;
  transition:
    transform 0.45s ease,
    border-color 0.45s ease,
    box-shadow 0.45s ease,
    background 0.45s ease !important;
}

.work-chain .chain-step::after {
  opacity: 0.34 !important;
  transform: translateY(-50%) translateX(0) !important;
  transition:
    opacity 0.45s ease,
    color 0.45s ease,
    text-shadow 0.45s ease !important;
}

.work-chain .chain-step.is-chain-active {
  transform: translateY(-3px) !important;
  border-color: rgba(20, 184, 166, 0.62) !important;
  background: linear-gradient(180deg, #ffffff 0%, #f7fffd 100%) !important;
  box-shadow:
    0 20px 42px rgba(15, 23, 42, 0.08),
    0 0 0 2px rgba(20, 184, 166, 0.08),
    0 0 18px rgba(20, 184, 166, 0.08) !important;
}

.work-chain .chain-step.is-chain-active::after {
  opacity: 0.78 !important;
  color: var(--go-chain-active) !important;
  text-shadow: 0 0 10px rgba(20, 184, 166, 0.22) !important;
}

.work-chain .chain-step span {
  transition: transform 0.45s ease, box-shadow 0.45s ease, filter 0.45s ease !important;
}

.work-chain .chain-step.is-chain-active span {
  transform: translateX(-50%) scale(1.07) !important;
  box-shadow:
    0 14px 28px rgba(20, 184, 166, 0.30),
    0 0 0 6px rgba(20, 184, 166, 0.10) !important;
  filter: saturate(1.08) !important;
}

@media (max-width: 1180px) {
  .work-chain .chain-step.is-chain-active {
    transform: translateX(4px) !important;
  }

  .work-chain .chain-step.is-chain-active span {
    transform: translateX(-50%) scale(1.07) !important;
  }

  .work-chain .chain-step::after {
    transform: translateX(0) translateY(0) !important;
  }
}


/* v1.11 — clearer pricing formats */
.pricing-note {
  margin: 0 0 24px;
  padding: 18px 20px;
  border: 1px solid rgba(153, 246, 228, 0.7);
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff 0%, #f0fdfa 100%);
  color: #334155;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.04);
}

.pricing-note strong {
  color: var(--text);
}

.pricing-note--soft {
  margin: 24px 0 0;
  background: #f8fafc;
  border-color: var(--line);
}

.pricing-groups {
  display: grid;
  gap: 28px;
}

.pricing-group {
  padding: 22px;
  border: 1px solid rgba(229, 234, 240, 0.9);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.04);
}

.pricing-group__head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 14px;
  align-items: center;
  margin-bottom: 18px;
}

.pricing-group__head span {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-weight: 900;
}

.pricing-group__head h3 {
  margin: 0;
  font-size: 25px;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.pricing-group__head p {
  grid-column: 2;
  margin: 0;
  color: var(--muted);
}

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

.pricing-grid .pricing-card {
  min-height: 100%;
  padding: 22px;
}

.pricing-grid .pricing-card h3 {
  min-height: 52px;
}

.pricing-grid .pricing-card > p {
  min-height: 96px;
}

.pricing-grid .price {
  min-height: 76px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  font-size: clamp(26px, 2.6vw, 34px);
  line-height: 1;
}

.pricing-grid .price span {
  margin-top: 6px;
}

.pricing-card--featured {
  border-color: rgba(20, 184, 166, 0.55);
  background: linear-gradient(180deg, #ffffff 0%, #f0fdfa 100%);
  box-shadow:
    0 18px 44px rgba(15, 23, 42, 0.06),
    0 0 0 1px rgba(20, 184, 166, 0.08);
}

@media (max-width: 1180px) {
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pricing-grid .pricing-card h3,
  .pricing-grid .pricing-card > p {
    min-height: auto;
  }
}

@media (max-width: 640px) {
  .pricing-group {
    padding: 16px;
    border-radius: 24px;
  }

  .pricing-group__head {
    grid-template-columns: 1fr;
  }

  .pricing-group__head span,
  .pricing-group__head p {
    grid-column: auto;
  }

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

  .pricing-grid .price {
    min-height: auto;
  }
}


/* v1.11.1 — equal highlighted style for all pricing cards */
.pricing-grid .pricing-card {
  border-color: rgba(20, 184, 166, 0.55);
  background: linear-gradient(180deg, #ffffff 0%, #f0fdfa 100%);
  box-shadow:
    0 18px 44px rgba(15, 23, 42, 0.06),
    0 0 0 1px rgba(20, 184, 166, 0.08);
}

.pricing-grid .pricing-card:hover {
  border-color: rgba(20, 184, 166, 0.78);
  box-shadow:
    0 22px 54px rgba(15, 23, 42, 0.09),
    0 0 0 1px rgba(20, 184, 166, 0.14);
}


/* v1.12 — floating contact button */
.floating-contact {
  position: fixed;
  right: 84px;
  bottom: 22px;
  z-index: 60;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: 999px;
  border: 1px solid rgba(153, 246, 228, 0.72);
  background: linear-gradient(135deg, #111827 0%, #0f766e 100%);
  color: white;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.20);
  font-size: 15px;
  font-weight: 820;
  letter-spacing: -0.01em;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition:
    opacity 0.22s ease,
    transform 0.22s ease,
    box-shadow 0.18s ease;
}

.floating-contact:hover {
  transform: translateY(-1px);
  box-shadow: 0 22px 48px rgba(15, 23, 42, 0.25);
}

.floating-contact.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

@media (max-width: 640px) {
  body {
    padding-bottom: 74px;
  }

  .floating-contact {
    left: 18px;
    right: 78px;
    bottom: 16px;
    min-height: 52px;
    padding: 14px 18px;
    font-size: 16px;
    box-shadow: 0 18px 46px rgba(15, 23, 42, 0.22);
  }

  .back-to-top {
    right: 18px;
    bottom: 16px;
    width: 52px;
    height: 52px;
  }
}


/* v1.13 — services page formats */
.services-hero .page-hero__inner {
  max-width: 940px;
}

.services-format-block {
  margin-top: 26px;
  padding: 22px;
  border: 1px solid rgba(229, 234, 240, 0.9);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.04);
}

.services-format-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 14px;
  align-items: center;
  margin-bottom: 18px;
}

.services-format-head span {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-weight: 900;
}

.services-format-head h3 {
  margin: 0;
  font-size: 26px;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.services-format-head p {
  grid-column: 2;
  margin: 0;
  color: var(--muted);
}

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

.service-format-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 22px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(20, 184, 166, 0.45);
  background: linear-gradient(180deg, #ffffff 0%, #f0fdfa 100%);
  box-shadow: 0 16px 38px rgba(15, 23, 42, 0.05);
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.service-format-card:hover {
  transform: translateY(-3px);
  border-color: rgba(20, 184, 166, 0.72);
  box-shadow: 0 22px 54px rgba(15, 23, 42, 0.08);
}

.service-format-card strong {
  min-height: 54px;
  color: var(--text);
  font-size: 21px;
  line-height: 1.16;
  letter-spacing: -0.035em;
}

.service-format-card p {
  min-height: 108px;
  margin: 12px 0 0;
  color: var(--muted);
}

.service-format-price {
  margin: 18px 0 0;
  color: var(--text);
  font-size: 25px;
  line-height: 1;
  letter-spacing: -0.04em;
  font-weight: 880;
}

.mini-list {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.mini-list li {
  position: relative;
  padding-left: 22px;
  color: #475569;
  font-size: 14px;
  line-height: 1.42;
}

.mini-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(20, 184, 166, 0.12);
}

.pricing-note--services {
  margin-top: 24px;
}

.service-choice-grid .card {
  border-color: rgba(20, 184, 166, 0.18);
}

@media (max-width: 1180px) {
  .services-format-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-format-card strong,
  .service-format-card p {
    min-height: auto;
  }
}

@media (max-width: 640px) {
  .services-format-block {
    padding: 16px;
    border-radius: 24px;
  }

  .services-format-head {
    grid-template-columns: 1fr;
  }

  .services-format-head span,
  .services-format-head p {
    grid-column: auto;
  }

  .services-format-grid {
    grid-template-columns: 1fr;
  }
}


/* v1.14 — consistent header, inner-page hero accent, cleaner active nav */
.header__inner {
  display: grid !important;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 86px;
  gap: 26px;
}

.header .logo {
  margin-right: 0 !important;
}

.nav {
  margin-left: 0 !important;
  flex: none !important;
  justify-content: flex-start;
  gap: 8px;
}

.nav a {
  position: relative;
  font-family: Manrope, Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  padding: 10px 14px;
  border: 1px solid transparent;
  color: #334155;
  font-size: 15px;
  font-weight: 780;
  letter-spacing: -0.018em;
  transition:
    background 0.18s ease,
    color 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease;
}

.nav a:hover {
  background: rgba(255, 255, 255, 0.78);
  border-color: rgba(153, 246, 228, 0.42);
  color: var(--text);
}

.nav a.is-active,
.nav a[aria-current="page"] {
  background: linear-gradient(180deg, #ffffff 0%, #f0fdfa 100%);
  border-color: rgba(20, 184, 166, 0.40);
  color: #0f766e;
  box-shadow:
    0 10px 26px rgba(15, 23, 42, 0.055),
    0 0 0 1px rgba(20, 184, 166, 0.055) inset;
}

.header__cta {
  margin-left: 0 !important;
  justify-self: end;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 52px;
  border-bottom: 1px solid rgba(229, 234, 240, 0.65);
}

.page-hero::before {
  content: "";
  position: absolute;
  width: 430px;
  height: 430px;
  right: -130px;
  top: -120px;
  border-radius: 999px;
  background: rgba(204, 251, 241, 0.92);
  filter: blur(4px);
  opacity: 0.72;
  pointer-events: none;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero__inner {
  max-width: 920px;
}

.services-hero .page-hero__inner {
  max-width: 920px;
}

.page-hero .badge {
  margin-bottom: 2px;
}

/* Equal highlight for all main service cards */
.service-cards .card {
  border-color: rgba(20, 184, 166, 0.35);
  background: linear-gradient(180deg, #ffffff 0%, #f0fdfa 100%);
  box-shadow:
    0 18px 44px rgba(15, 23, 42, 0.055),
    0 0 0 1px rgba(20, 184, 166, 0.06);
}

.service-cards .card:hover {
  border-color: rgba(20, 184, 166, 0.62);
  box-shadow:
    0 22px 54px rgba(15, 23, 42, 0.08),
    0 0 0 1px rgba(20, 184, 166, 0.12);
}

.service-cards .card:nth-child(3) {
  border-color: rgba(20, 184, 166, 0.35);
  background: linear-gradient(180deg, #ffffff 0%, #f0fdfa 100%);
}

@media (max-width: 980px) {
  .header__inner {
    display: flex !important;
    min-height: 78px;
    gap: 16px;
  }

  .nav a {
    font-size: 15px;
  }

  .page-hero {
    padding: 54px 0 42px;
  }

  .page-hero::before {
    width: 320px;
    height: 320px;
    right: -130px;
    top: -90px;
  }
}

@media (max-width: 640px) {
  .nav a {
    font-weight: 760;
  }
}


/* v1.15 — unified header and inner page hero layout */
html {
  overflow-y: scroll;
  scrollbar-gutter: stable;
}

@media (min-width: 981px) {
  .header__inner {
    display: grid !important;
    grid-template-columns: 126px minmax(0, 1fr) 212px !important;
    align-items: center !important;
    min-height: 86px !important;
    gap: 22px !important;
  }

  .header .logo {
    width: 126px;
    margin-right: 0 !important;
    justify-self: start;
    justify-content: flex-start;
  }

  .header .logo__full-image {
    height: 66px;
    width: auto;
  }

  .nav {
    margin-left: 0 !important;
    justify-self: start;
    justify-content: flex-start;
    flex: none !important;
    gap: 8px;
  }

  .header__cta {
    width: 212px;
    margin-left: 0 !important;
    justify-self: end;
    display: flex;
    justify-content: flex-end;
  }

  .header__cta .btn {
    white-space: nowrap;
  }
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 44px 0 62px !important;
  border-bottom: 1px solid rgba(229, 234, 240, 0.65);
}

.page-hero::before {
  content: "";
  position: absolute;
  width: 430px;
  height: 430px;
  right: -130px;
  top: -120px;
  border-radius: 999px;
  background: rgba(204, 251, 241, 0.92);
  filter: blur(4px);
  opacity: 0.72;
  pointer-events: none;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero__inner,
.services-hero .page-hero__inner {
  max-width: 940px !important;
  margin: 0 auto;
  text-align: center;
}

.page-hero__lead {
  margin-left: auto !important;
  margin-right: auto !important;
}

.page-hero .badge {
  display: none !important;
}

@media (min-width: 981px) {
  .page-hero__actions {
    display: none !important;
  }
}

@media (max-width: 980px) {
  .page-hero {
    padding: 50px 0 42px !important;
  }

  .page-hero__inner,
  .services-hero .page-hero__inner {
    text-align: left;
    margin: 0;
  }

  .page-hero__lead {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .page-hero__actions {
    display: flex;
    gap: 12px;
  }

  .page-hero::before {
    width: 320px;
    height: 320px;
    right: -130px;
    top: -90px;
  }
}

/* keep all main service cards equally highlighted */
.service-cards .card {
  border-color: rgba(20, 184, 166, 0.35) !important;
  background: linear-gradient(180deg, #ffffff 0%, #f0fdfa 100%) !important;
  box-shadow:
    0 18px 44px rgba(15, 23, 42, 0.055),
    0 0 0 1px rgba(20, 184, 166, 0.06) !important;
}

.service-cards .card:hover {
  border-color: rgba(20, 184, 166, 0.62) !important;
  box-shadow:
    0 22px 54px rgba(15, 23, 42, 0.08),
    0 0 0 1px rgba(20, 184, 166, 0.12) !important;
}


/* v1.17 — visually stable header/nav on every page */
html,
body {
  overflow-y: scroll;
}

@media (min-width: 981px) {
  .container.header__inner {
    width: min(100% - 36px, var(--container)) !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .header__inner {
    display: grid !important;
    grid-template-columns: 126px 540px 212px !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 86px !important;
    column-gap: 22px !important;
  }

  .header .logo {
    width: 126px !important;
    min-width: 126px !important;
    max-width: 126px !important;
    margin: 0 !important;
    justify-self: start !important;
    justify-content: flex-start !important;
  }

  .header .logo__full-image {
    width: auto !important;
    height: 66px !important;
    max-width: none !important;
  }

  .header .nav {
    width: 540px !important;
    min-width: 540px !important;
    max-width: 540px !important;
    display: grid !important;
    grid-template-columns: 96px 96px 116px 96px 96px !important;
    gap: 9px !important;
    margin: 0 !important;
    justify-self: start !important;
    align-items: center !important;
  }

  .header .nav a {
    position: relative !important;
    width: 100% !important;
    min-width: 0 !important;
    display: inline-flex !important;
    justify-content: center !important;
    align-items: center !important;
    box-sizing: border-box !important;
    min-height: 44px !important;
    padding: 0 !important;
    border-radius: 999px !important;
    border: 1px solid rgba(229, 234, 240, 0.78) !important;
    background: rgba(255, 255, 255, 0.48) !important;
    color: #334155 !important;
    text-align: center !important;
    box-shadow: none !important;
  }

  .header .nav a:hover {
    background: rgba(255, 255, 255, 0.86) !important;
    border-color: rgba(153, 246, 228, 0.54) !important;
    color: var(--text) !important;
  }

  .header .nav a.is-active,
  .header .nav a[aria-current="page"] {
    background: rgba(240, 253, 250, 0.92) !important;
    border-color: rgba(20, 184, 166, 0.52) !important;
    color: #0f766e !important;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.045) !important;
  }

  .header .nav a.is-active::after,
  .header .nav a[aria-current="page"]::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 7px;
    width: 20px;
    height: 3px;
    border-radius: 999px;
    background: var(--accent);
    transform: translateX(-50%);
  }

  .header__cta {
    width: 212px !important;
    min-width: 212px !important;
    max-width: 212px !important;
    margin: 0 !important;
    justify-self: end !important;
    display: flex !important;
    justify-content: flex-end !important;
  }

  .header__cta .btn {
    width: 194px !important;
    min-width: 194px !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    white-space: nowrap !important;
  }
}


/* v1.18 — final header lock: same viewport coordinates on every page */
@media (min-width: 981px) {
  .header {
    height: 86px !important;
  }

  .header > .container.header__inner {
    position: relative !important;
    display: block !important;
    width: 100% !important;
    max-width: none !important;
    min-height: 86px !important;
    height: 86px !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .header .logo {
    position: absolute !important;
    left: max(18px, calc(50% - 580px)) !important;
    top: 50% !important;
    width: 126px !important;
    min-width: 126px !important;
    max-width: 126px !important;
    height: 66px !important;
    margin: 0 !important;
    transform: translateY(-50%) !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
  }

  .header .logo__full-image {
    height: 66px !important;
    width: auto !important;
    max-width: none !important;
  }

  .header .nav {
    position: absolute !important;
    left: max(164px, calc(50% - 432px)) !important;
    top: 50% !important;
    width: 540px !important;
    min-width: 540px !important;
    max-width: 540px !important;
    margin: 0 !important;
    transform: translateY(-50%) !important;
    display: grid !important;
    grid-template-columns: 96px 96px 108px 96px 96px !important;
    align-items: center !important;
    justify-content: start !important;
    gap: 10px !important;
    flex: none !important;
  }

  .header .nav a {
    width: 100% !important;
    min-width: 0 !important;
    max-width: none !important;
    display: inline-flex !important;
    justify-content: center !important;
    align-items: center !important;
    box-sizing: border-box !important;
    text-align: center !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .header__cta {
    position: absolute !important;
    right: max(18px, calc(50% - 580px)) !important;
    top: 50% !important;
    width: 212px !important;
    min-width: 212px !important;
    max-width: 212px !important;
    margin: 0 !important;
    transform: translateY(-50%) !important;
    display: flex !important;
    justify-content: flex-end !important;
  }

  .header__cta .btn {
    width: 194px !important;
    min-width: 194px !important;
    max-width: 194px !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    white-space: nowrap !important;
  }

  .menu-toggle {
    display: none !important;
  }
}

@media (max-width: 980px) {
  .header > .container.header__inner {
    position: static !important;
    display: flex !important;
    width: min(100% - 36px, var(--container)) !important;
    max-width: var(--container) !important;
    min-height: 78px !important;
    height: auto !important;
    margin: 0 auto !important;
    padding: 0 !important;
  }
}
