:root {
  --green: #7cfc00;
  --green-strong: #4fbd00;
  --green-dark: #215a00;
  --black: #050506;
  --ink: #0f0f10;
  --graphite: #1a1a1a;
  --gray: #2b2b2b;
  --muted: #696f7a;
  --line: rgba(15, 15, 16, 0.12);
  --line-dark: rgba(255, 255, 255, 0.12);
  --white: #ffffff;
  --soft: #f5f7f2;
  --soft-green: #efffe2;
  --shadow: 0 24px 70px rgba(15, 15, 16, 0.14);
  --radius: 8px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Lato", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  letter-spacing: 0;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea {
  font: inherit;
}

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

.section {
  padding: 112px 0;
}

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

.section-light {
  background: linear-gradient(180deg, #ffffff 0%, #f8faf6 100%);
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 16px;
  left: 50%;
  width: min(var(--container), calc(100% - 32px));
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
  padding: 12px 14px 12px 22px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(5, 5, 6, 0.76);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
}

.site-header.scrolled {
  background: rgba(5, 5, 6, 0.92);
}

.brand {
  display: block;
  position: relative;
  flex: 0 0 auto;
  width: 300px;
  height: 58px;
  overflow: hidden;
  border-radius: 6px;
  color: var(--white);
}

.brand img {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 500px;
  max-width: none;
  transform: translate(-50%, -50%);
}

.site-footer .brand {
  width: 270px;
  height: 52px;
}

.site-footer .brand img {
  width: 460px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.88rem;
  font-weight: 500;
}

.main-nav a {
  transition: color 0.2s ease;
}

.main-nav a:hover {
  color: var(--white);
}

.nav-cta {
  padding: 12px 18px;
  border-radius: 8px;
  color: var(--black) !important;
  background: var(--green);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: transparent;
  color: var(--white);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 0.2s ease;
}

.hero {
  position: relative;
  min-height: 96vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 150px 0 88px;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.72;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(5, 5, 6, 0.96) 0%, rgba(5, 5, 6, 0.8) 42%, rgba(5, 5, 6, 0.28) 100%),
    linear-gradient(180deg, rgba(5, 5, 6, 0.42) 0%, rgba(5, 5, 6, 0.94) 100%);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 52px;
  align-items: end;
}

.hero-copy,
.hero-panel,
.crm-copy,
.crm-visual,
.dashboard-copy,
.dashboard-showcase,
.kanban-copy,
.kanban-board,
.proof-copy,
.proof-image,
.final-copy,
.lead-form {
  min-width: 0;
}

.hero-copy h1,
.section-heading h2,
.crm-copy h2,
.dashboard-copy h2,
.kanban-copy h2,
.proof-copy h2,
.final-copy h2,
.hero-subtitle,
.section-heading p,
.crm-copy p,
.dashboard-copy p,
.kanban-copy p,
.proof-copy p,
.final-copy p {
  overflow-wrap: break-word;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 30px;
  height: 2px;
  background: currentColor;
}

.hero h1,
.section-heading h2,
.crm-copy h2,
.dashboard-copy h2,
.kanban-copy h2,
.proof-copy h2,
.final-copy h2 {
  margin: 0;
  max-width: 850px;
  font-size: clamp(2.65rem, 6vw, 6.2rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.hero h1 {
  text-wrap: balance;
}

.hero-subtitle {
  max-width: 750px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 1.5vw, 1.22rem);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 34px 0 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 15px 22px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 700;
  line-height: 1.15;
  text-align: center;
  white-space: normal;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

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

.button-primary {
  color: var(--black);
  background: linear-gradient(135deg, var(--green) 0%, #45c900 100%);
  box-shadow: 0 16px 42px rgba(124, 252, 0, 0.22);
}

.button-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.06);
}

.section-light .button-secondary,
.crm-section .button-secondary,
.faq-section .button-secondary {
  color: var(--ink);
  border-color: rgba(15, 15, 16, 0.16);
  background: var(--white);
}

.full {
  width: 100%;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 42px;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 12px;
  border: 1px solid rgba(124, 252, 0, 0.28);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(124, 252, 0, 0.08);
  font-size: 0.82rem;
  font-weight: 600;
}

.hero-panel {
  padding: 28px;
  border: 1px solid rgba(124, 252, 0, 0.26);
  border-radius: 8px;
  background: rgba(5, 5, 6, 0.76);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(18px);
}

.panel-kicker {
  margin: 0 0 8px;
  color: var(--green);
  font-weight: 700;
}

.hero-panel h2 {
  margin: 0 0 22px;
  font-size: 2rem;
  line-height: 1.08;
}

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

.signal-list div {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
}

.signal-list strong {
  color: var(--green);
}

.signal-list span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
}

.outcome-strip {
  padding: 28px 0;
  color: var(--white);
  background: var(--black);
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

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

.strip-grid div {
  padding: 18px 20px;
  border-left: 2px solid var(--green);
  background: rgba(255, 255, 255, 0.04);
}

.strip-grid strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.02rem;
}

.strip-grid span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.9rem;
  line-height: 1.55;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 52px;
}

.section-heading.centered {
  margin-inline: auto;
  text-align: center;
}

.section-heading.centered .eyebrow {
  justify-content: center;
}

.section-heading h2,
.crm-copy h2,
.kanban-copy h2,
.proof-copy h2,
.final-copy h2 {
  font-size: clamp(2.2rem, 4vw, 4.25rem);
  line-height: 1.04;
}

.section-heading p:not(.eyebrow),
.crm-copy p,
.dashboard-copy p,
.kanban-copy p,
.proof-copy p,
.final-copy p {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.78;
}

.section-dark .section-heading p:not(.eyebrow),
.section-dark .final-copy p {
  color: rgba(255, 255, 255, 0.72);
}

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

.service-card,
.benefit-card,
.process-step {
  min-height: 270px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 50px rgba(15, 15, 16, 0.05);
}

.service-card h3,
.benefit-card h3,
.dark-card h3,
.process-step h3 {
  margin: 22px 0 12px;
  font-size: 1.35rem;
  line-height: 1.18;
}

.service-card p,
.benefit-card p,
.dark-card p,
.process-step p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.icon-box {
  display: inline-grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 1px solid rgba(124, 252, 0, 0.38);
  border-radius: 8px;
  color: var(--green-strong);
  background: linear-gradient(180deg, #f6ffef 0%, #ecffdc 100%);
}

.icon-box::before {
  display: block;
  width: 28px;
  height: 28px;
  background: currentColor;
  content: "";
  mask: var(--icon) center / contain no-repeat;
}

[data-icon="bot"] { --icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 2a1 1 0 0 1 1 1v2h3a4 4 0 0 1 4 4v7a4 4 0 0 1-4 4H8a4 4 0 0 1-4-4V9a4 4 0 0 1 4-4h3V3a1 1 0 0 1 1-1Zm-4 5a2 2 0 0 0-2 2v7a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V9a2 2 0 0 0-2-2H8Zm1.5 4a1.5 1.5 0 1 1 0 3 1.5 1.5 0 0 1 0-3Zm5 0a1.5 1.5 0 1 1 0 3 1.5 1.5 0 0 1 0-3ZM2 11a1 1 0 0 1 1 1v2a1 1 0 1 1-2 0v-2a1 1 0 0 1 1-1Zm20 0a1 1 0 0 1 1 1v2a1 1 0 1 1-2 0v-2a1 1 0 0 1 1-1Z'/%3E%3C/svg%3E"); }
[data-icon="layout"] { --icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 4h16a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2Zm0 5h16V6H4v3Zm0 2v7h7v-7H4Zm9 0v7h7v-7h-7Z'/%3E%3C/svg%3E"); }
[data-icon="workflow"] { --icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 3a3 3 0 1 1 0 6 3 3 0 0 1 0-6Zm12 12a3 3 0 1 1 0 6 3 3 0 0 1 0-6ZM6 15a3 3 0 1 1 0 6 3 3 0 0 1 0-6Zm12-6a1 1 0 0 1-1-1V7h-5a5 5 0 0 0-5 5v1a1 1 0 1 1-2 0v-1a7 7 0 0 1 7-7h5V4a1 1 0 0 1 1.7-.7l3 3a1 1 0 0 1 0 1.4l-3 3A1 1 0 0 1 18 9Z'/%3E%3C/svg%3E"); }
[data-icon="messages"] { --icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 4h16a2 2 0 0 1 2 2v9a2 2 0 0 1-2 2H9l-5 4v-4H4a2 2 0 0 1-2-2V6a2 2 0 0 1 2-2Zm0 2v9h2v1.84L8.3 15H20V6H4Zm3 3h10v2H7V9Zm0 3h7v2H7v-2Z'/%3E%3C/svg%3E"); }
[data-icon="calendar"] { --icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 2a1 1 0 0 1 1 1v1h8V3a1 1 0 1 1 2 0v1h1a3 3 0 0 1 3 3v12a3 3 0 0 1-3 3H5a3 3 0 0 1-3-3V7a3 3 0 0 1 3-3h1V3a1 1 0 0 1 1-1Zm13 8H4v9a1 1 0 0 0 1 1h14a1 1 0 0 0 1-1v-9ZM5 6a1 1 0 0 0-1 1v1h16V7a1 1 0 0 0-1-1H5Zm11.7 7.3a1 1 0 0 1 0 1.4l-4 4a1 1 0 0 1-1.4 0l-2-2a1 1 0 1 1 1.4-1.4l1.3 1.29 3.3-3.29a1 1 0 0 1 1.4 0Z'/%3E%3C/svg%3E"); }
[data-icon="target"] { --icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 2a10 10 0 1 1 0 20 10 10 0 0 1 0-20Zm0 2a8 8 0 1 0 0 16 8 8 0 0 0 0-16Zm0 3a5 5 0 1 1 0 10 5 5 0 0 1 0-10Zm0 2a3 3 0 1 0 0 6 3 3 0 0 0 0-6Zm0 2a1 1 0 1 1 0 2 1 1 0 0 1 0-2Z'/%3E%3C/svg%3E"); }
[data-icon="users"] { --icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9 4a4 4 0 1 1 0 8 4 4 0 0 1 0-8Zm0 2a2 2 0 1 0 0 4 2 2 0 0 0 0-4Zm8-1a3 3 0 1 1 0 6 3 3 0 0 1 0-6Zm0 2a1 1 0 1 0 0 2 1 1 0 0 0 0-2ZM3 19a6 6 0 0 1 12 0v1H3v-1Zm2.13-1h7.74a4 4 0 0 0-7.74 0ZM17 13a5 5 0 0 1 5 5v1h-5v-2h2.83A3 3 0 0 0 17 15v-2Z'/%3E%3C/svg%3E"); }
[data-icon="zap"] { --icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13 2 3 14h8l-1 8 11-13h-8l1-7Zm-1.28 5.7L11.28 11H15l-2.72 3.21.4-3.21H7.27l4.45-5.3Z'/%3E%3C/svg%3E"); }
[data-icon="chart"] { --icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 19h16v2H2V3h2v16Zm3-7h3v5H7v-5Zm5-4h3v9h-3V8Zm5-4h3v13h-3V4Z'/%3E%3C/svg%3E"); }
[data-icon="shield"] { --icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 2 4 5v6c0 5.55 3.84 10.74 8 12 4.16-1.26 8-6.45 8-12V5l-8-3Zm6 4.39V11c0 4.26-2.77 8.12-6 9.87C8.77 19.12 6 15.26 6 11V6.39l6-2.25 6 2.25Zm-2.3 3.91a1 1 0 0 1 0 1.4l-4 4a1 1 0 0 1-1.4 0l-2-2a1 1 0 1 1 1.4-1.4l1.3 1.29 3.3-3.29a1 1 0 0 1 1.4 0Z'/%3E%3C/svg%3E"); }

.crm-section {
  padding: 110px 0;
  background:
    radial-gradient(circle at 12% 20%, rgba(124, 252, 0, 0.12), transparent 25%),
    linear-gradient(180deg, #ffffff 0%, #f5f8f2 100%);
}

.crm-grid,
.dashboards-grid,
.kanban-grid,
.proof-grid,
.final-grid,
.faq-grid {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 56px;
  align-items: center;
}

.crm-copy h2 span {
  color: var(--green-strong);
}

.crm-visual,
.proof-image {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.crm-visual img,
.proof-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 28px 0 32px;
}

.check-list span {
  position: relative;
  min-height: 46px;
  padding: 12px 12px 12px 40px;
  border: 1px solid rgba(124, 252, 0, 0.28);
  border-radius: 8px;
  background: rgba(124, 252, 0, 0.08);
  font-size: 0.9rem;
  font-weight: 600;
}

.check-list span::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 15px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--green-strong);
  box-shadow: inset 0 0 0 4px var(--soft-green);
}

.dashboards-section {
  position: relative;
  overflow: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 82% 34%, rgba(124, 252, 0, 0.16), transparent 28%),
    linear-gradient(135deg, rgba(124, 252, 0, 0.08), transparent 42%),
    #f7f9f5;
}

.dashboards-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.55;
  background:
    repeating-linear-gradient(155deg, rgba(124, 252, 0, 0.12) 0 1px, transparent 1px 8px),
    radial-gradient(circle at 92% 68%, rgba(124, 252, 0, 0.18), transparent 24%);
  clip-path: polygon(36% 34%, 100% 0, 100% 100%, 62% 100%);
}

.dashboards-section .container {
  position: relative;
  z-index: 1;
}

.dashboards-grid {
  grid-template-columns: minmax(0, 0.78fr) minmax(620px, 1.22fr);
}

.dashboard-badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 48px;
  min-height: 52px;
  padding: 12px 22px;
  border: 1px solid rgba(79, 189, 0, 0.6);
  border-radius: 8px;
  color: var(--green-dark);
  background: rgba(255, 255, 255, 0.75);
  font-weight: 900;
  box-shadow: 0 16px 40px rgba(15, 15, 16, 0.05);
}

.dashboard-badge span {
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: linear-gradient(180deg, var(--green) 0%, #1d9100 100%);
}

.dashboard-copy h2 {
  max-width: 580px;
  font-size: clamp(4rem, 6.3vw, 6.6rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.dashboard-copy h2 span {
  color: var(--green-strong);
}

.dashboard-copy p:not(.eyebrow) {
  max-width: 560px;
  color: #344158;
  font-size: clamp(1.25rem, 1.6vw, 1.65rem);
  line-height: 1.28;
}

.dashboard-copy p:not(.eyebrow) + p:not(.eyebrow) {
  margin-top: 24px;
  font-size: 1.08rem;
  line-height: 1.55;
}

.dashboard-copy p strong {
  color: var(--green-strong);
}

.dashboard-actions {
  display: flex;
  gap: 18px;
  margin-top: 38px;
}

.dashboard-ghost {
  min-width: 190px;
  color: #263348;
  border-color: rgba(15, 15, 16, 0.1);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 16px 35px rgba(15, 15, 16, 0.07);
}

.dashboard-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 52px;
  max-width: 650px;
  border: 1px solid rgba(15, 15, 16, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 52px rgba(15, 15, 16, 0.06);
}

.dashboard-proof div {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  align-items: center;
  min-height: 76px;
  padding: 14px 18px;
  color: #344158;
  font-size: 0.92rem;
  font-weight: 700;
}

.dashboard-proof div + div {
  border-left: 1px solid rgba(15, 15, 16, 0.08);
}

.dashboard-proof span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(79, 189, 0, 0.35);
  border-radius: 50%;
  color: var(--green-strong);
  background: rgba(124, 252, 0, 0.08);
}

.dashboard-proof span::before {
  width: 20px;
  height: 20px;
  content: "";
  background: currentColor;
  mask: var(--mini-icon) center / contain no-repeat;
}

.mini-eye { --mini-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 5c5 0 9 5.5 9 7s-4 7-9 7-9-5.5-9-7 4-7 9-7Zm0 2c-3.5 0-6.4 3.4-7.5 5C5.6 13.6 8.5 17 12 17s6.4-3.4 7.5-5C18.4 10.4 15.5 7 12 7Zm0 2.5a2.5 2.5 0 1 1 0 5 2.5 2.5 0 0 1 0-5Z'/%3E%3C/svg%3E"); }
.mini-shield { --mini-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 2 4 5v6c0 5.55 3.84 10.74 8 12 4.16-1.26 8-6.45 8-12V5l-8-3Zm4.7 8.3-5 5a1 1 0 0 1-1.4 0l-2-2 1.4-1.4 1.3 1.29 4.3-4.29 1.4 1.4Z'/%3E%3C/svg%3E"); }
.mini-target { --mini-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 2a10 10 0 1 1 0 20 10 10 0 0 1 0-20Zm0 2a8 8 0 1 0 0 16 8 8 0 0 0 0-16Zm0 3a5 5 0 1 1 0 10 5 5 0 0 1 0-10Zm0 2a3 3 0 1 0 0 6 3 3 0 0 0 0-6Z'/%3E%3C/svg%3E"); }

.dashboard-copy .button-primary {
  min-width: 245px;
}

.dashboard-showcase {
  perspective: 1400px;
}

.dashboard-window {
  position: relative;
  overflow: hidden;
  width: min(780px, 100%);
  margin-left: auto;
  padding: 14px;
  border: 1px solid rgba(15, 15, 16, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 38px 100px rgba(15, 15, 16, 0.18);
  transform: rotate(-2.8deg) translateX(18px);
  transform-origin: center;
}

.dashboard-app-nav {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  gap: 18px;
  align-items: center;
  min-height: 62px;
  padding: 0 8px 8px;
  border-bottom: 1px solid rgba(15, 15, 16, 0.08);
}

.dashboard-brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: var(--green-strong);
  font-size: 1.75rem;
  font-weight: 900;
  line-height: 1;
}

.dashboard-app-nav nav {
  display: flex;
  gap: 26px;
  color: #344158;
  font-size: 0.82rem;
  font-weight: 700;
}

.dashboard-app-nav nav span {
  position: relative;
  padding: 20px 0 19px;
}

.dashboard-app-nav nav .active {
  color: var(--green-strong);
}

.dashboard-app-nav nav .active::after {
  content: "";
  position: absolute;
  left: -10px;
  right: -10px;
  bottom: 0;
  height: 2px;
  background: var(--green-strong);
}

.dashboard-user {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #1b2433;
}

.search-dot,
.bell-dot {
  position: relative;
  width: 20px;
  height: 20px;
}

.search-dot::before,
.bell-dot::before {
  content: "";
  position: absolute;
  inset: 2px;
  border: 2px solid #647084;
  border-radius: 50%;
}

.search-dot::after {
  content: "";
  position: absolute;
  right: 1px;
  bottom: 1px;
  width: 7px;
  height: 2px;
  border-radius: 2px;
  background: #647084;
  transform: rotate(45deg);
}

.bell-dot::before {
  border-radius: 9px 9px 7px 7px;
}

.avatar {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, #1b2433, var(--green-strong));
  font-weight: 900;
}

.dashboard-user p {
  margin: 0;
  line-height: 1.15;
}

.dashboard-user strong,
.dashboard-user small {
  display: block;
}

.dashboard-user small {
  margin-top: 2px;
  color: #647084;
}

.dashboard-title {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 8px 18px;
  margin-bottom: 0;
  color: var(--ink);
}

.dashboard-title strong {
  display: block;
  font-size: 1.55rem;
}

.dashboard-title span,
.dashboard-title p {
  display: block;
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.dashboard-controls {
  display: flex;
  gap: 14px;
}

.dashboard-controls p {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 10px 14px;
  border: 1px solid rgba(15, 15, 16, 0.08);
  border-radius: 8px;
  color: #344158;
  background: #ffffff;
  box-shadow: 0 10px 26px rgba(15, 15, 16, 0.04);
  font-size: 0.82rem;
  font-weight: 700;
}

.dashboard-controls i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green-strong);
}

.dashboard-kpis,
.charts-grid {
  display: grid;
  gap: 12px;
}

.dashboard-kpis {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding: 0 8px;
  margin-bottom: 14px;
}

.dashboard-kpis div,
.chart-card {
  border: 1px solid rgba(15, 15, 16, 0.1);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 16px 42px rgba(15, 15, 16, 0.07);
}

.dashboard-kpis div {
  position: relative;
  min-height: 108px;
  padding: 18px 16px 16px 72px;
}

.dashboard-kpis span {
  display: block;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.dashboard-kpis .kpi-icon {
  position: absolute;
  left: 18px;
  top: 20px;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: var(--green-strong);
  background: rgba(124, 252, 0, 0.12);
}

.kpi-icon::before {
  width: 20px;
  height: 20px;
  content: "";
  background: currentColor;
  mask: var(--kpi-icon) center / contain no-repeat;
}

.money { --kpi-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M13 3v2.1a5 5 0 0 1 3.5 2.4l-1.73 1a3 3 0 0 0-2.77-1.5h-1a2 2 0 1 0 0 4h2a4 4 0 0 1 0 8v2h-2v-2.1a5 5 0 0 1-3.5-2.4l1.73-1A3 3 0 0 0 12 17h1a2 2 0 1 0 0-4h-2a4 4 0 0 1 0-8V3h2Z'/%3E%3C/svg%3E"); }
.trend { --kpi-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 17 9.5 11.5l4 4L22 7v6h-2V10.4l-6.5 6.5-4-4L5.4 19 4 17Z'/%3E%3C/svg%3E"); }
.goal { --kpi-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 2a10 10 0 1 1 0 20 10 10 0 0 1 0-20Zm0 2a8 8 0 1 0 0 16 8 8 0 0 0 0-16Zm0 3a5 5 0 1 1 0 10 5 5 0 0 1 0-10Zm0 2a3 3 0 1 0 0 6 3 3 0 0 0 0-6Z'/%3E%3C/svg%3E"); }
.leads { --kpi-icon: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9 4a4 4 0 1 1 0 8 4 4 0 0 1 0-8Zm8 1a3 3 0 1 1 0 6 3 3 0 0 1 0-6ZM3 20a6 6 0 0 1 12 0H3Zm14-7a5 5 0 0 1 5 5v2h-5v-2h3a3 3 0 0 0-3-3v-2Z'/%3E%3C/svg%3E"); }

.dashboard-kpis strong {
  display: block;
  margin-top: 6px;
  color: var(--ink);
  font-size: clamp(1.15rem, 1.7vw, 1.58rem);
  line-height: 1;
}

.dashboard-kpis small {
  display: block;
  margin-top: 8px;
  color: var(--green-strong);
  font-weight: 900;
}

.charts-grid {
  grid-template-columns: 1fr 1fr;
  padding: 0 8px 8px;
}

.chart-card {
  min-height: 204px;
  padding: 18px;
}

.line-card,
.pie-card {
  min-height: 190px;
}

.chart-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
  color: var(--ink);
}

.chart-head strong {
  font-size: 0.98rem;
}

.chart-head span {
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.bar-chart {
  display: flex;
  align-items: end;
  gap: 12px;
  height: 136px;
  padding: 18px 18px 24px;
  border-radius: 8px;
  background:
    linear-gradient(rgba(15, 15, 16, 0.07) 1px, transparent 1px),
    linear-gradient(180deg, #ffffff 0%, #f8faf6 100%);
  background-size: 100% 33.33%, 100% 100%;
}

.bar-chart i {
  display: block;
  flex: 1;
  height: var(--h);
  min-height: 18px;
  border-radius: 8px 8px 3px 3px;
  background: linear-gradient(180deg, var(--green) 0%, #38a800 100%);
  transform-origin: bottom;
  animation: bar-fill 1.8s ease-out both;
}

.bar-chart i:nth-child(2) { animation-delay: 0.12s; }
.bar-chart i:nth-child(3) { animation-delay: 0.24s; }
.bar-chart i:nth-child(4) { animation-delay: 0.36s; }
.bar-chart i:nth-child(5) { animation-delay: 0.48s; }
.bar-chart i:nth-child(6) { animation-delay: 0.6s; }

.donut-card {
  display: grid;
  align-content: start;
}

.donut-layout {
  display: grid;
  grid-template-columns: 148px 1fr;
  gap: 22px;
  align-items: center;
}

.donut-chart,
.pie-chart {
  position: relative;
  margin: 8px auto 0;
  border-radius: 50%;
}

.donut-chart {
  display: grid;
  place-items: center;
  width: 144px;
  height: 144px;
  background: conic-gradient(var(--green) 0 53%, #118313 53% 81%, #d4d8d2 81% 100%);
  animation: chart-pop 900ms ease-out both;
}

.donut-chart::after {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 50%;
  background: #ffffff;
}

.donut-chart span {
  display: grid;
  justify-items: center;
  position: relative;
  z-index: 1;
  color: var(--ink);
  font-size: 2.15rem;
  font-weight: 900;
}

.donut-chart small {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 400;
}

.donut-layout ul {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  color: var(--ink);
  font-size: 0.92rem;
  list-style: none;
}

.donut-layout li {
  display: grid;
  grid-template-columns: 12px 1fr auto;
  gap: 10px;
  align-items: center;
}

.donut-layout li span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green-strong);
}

.donut-layout li:nth-child(2) span {
  background: #118313;
}

.donut-layout li:nth-child(3) span {
  background: #d4d8d2;
}

.line-chart {
  width: 100%;
  height: 126px;
}

.line-grid {
  fill: none;
  stroke: rgba(15, 15, 16, 0.08);
  stroke-width: 1;
}

.line-path {
  fill: none;
  stroke: var(--green-strong);
  stroke-width: 6;
  stroke-linecap: round;
  stroke-dasharray: 420;
  stroke-dashoffset: 420;
  animation: draw-line 2.2s ease-out forwards;
}

.line-chart circle {
  fill: var(--green);
  stroke: #ffffff;
  stroke-width: 4;
  animation: chart-pop 1s 1.6s ease-out both;
}

.pie-layout {
  display: grid;
  grid-template-columns: 112px 1fr;
  gap: 16px;
  align-items: center;
}

.pie-chart {
  width: 112px;
  height: 112px;
  background: conic-gradient(var(--green) 0 53%, #118313 53% 81%, #d4d8d2 81% 100%);
  animation: chart-pop 900ms 0.2s ease-out both;
}

.pie-layout ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 700;
  list-style: none;
}

.pie-layout li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.pie-layout li span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
}

.pie-layout li:nth-child(2) span {
  background: #1f7a00;
}

.pie-layout li:nth-child(3) span {
  background: #d8e6d0;
}

@keyframes bar-fill {
  from {
    transform: scaleY(0.08);
    opacity: 0.45;
  }
  to {
    transform: scaleY(1);
    opacity: 1;
  }
}

@keyframes draw-line {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes chart-pop {
  from {
    transform: scale(0.72);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

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

.benefit-card {
  min-height: 230px;
}

.clinic-section {
  position: relative;
  overflow: hidden;
}

.clinic-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.26;
  background:
    linear-gradient(rgba(124, 252, 0, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124, 252, 0, 0.08) 1px, transparent 1px);
  background-size: 78px 78px;
  mask-image: linear-gradient(180deg, transparent, #000 20%, #000 80%, transparent);
}

.clinic-section .container {
  position: relative;
  z-index: 1;
}

.clinic-top {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 48px;
  align-items: end;
  margin-bottom: 28px;
}

.flow-card {
  display: grid;
  gap: 12px;
  padding: 24px;
  border: 1px solid rgba(124, 252, 0, 0.26);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.flow-card span {
  padding: 14px 16px;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.28);
  font-weight: 700;
}

.flow-card i {
  width: 2px;
  height: 22px;
  margin-left: 24px;
  background: var(--green);
}

.dark-card {
  min-height: 220px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035));
}

.dark-card h3 {
  color: var(--white);
}

.dark-card p {
  color: rgba(255, 255, 255, 0.68);
}

.dark-card::before {
  content: "";
  display: block;
  width: 42px;
  height: 3px;
  margin-bottom: 22px;
  background: var(--green);
}

.kanban-board {
  display: grid;
  grid-template-columns: repeat(4, minmax(140px, 1fr));
  gap: 12px;
  overflow: auto;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
  box-shadow: var(--shadow);
}

.kanban-column {
  min-width: 150px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.kanban-column strong {
  display: block;
  margin-bottom: 14px;
  font-size: 0.9rem;
}

.kanban-column span {
  display: block;
  margin-top: 10px;
  padding: 12px;
  border-radius: 8px;
  background: #f3f5f1;
  color: #404650;
  font-size: 0.82rem;
  line-height: 1.35;
}

.kanban-column.active {
  border-color: rgba(124, 252, 0, 0.5);
}

.kanban-column.done span {
  background: var(--soft-green);
}

.process-section {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(124, 252, 0, 0.12), transparent 35%),
    var(--black);
}

.process-step {
  color: var(--white);
  background: rgba(255, 255, 255, 0.055);
  border-color: rgba(255, 255, 255, 0.14);
}

.process-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 8px;
  color: var(--black);
  background: var(--green);
  font-weight: 800;
}

.process-step p {
  color: rgba(255, 255, 255, 0.68);
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 30px;
}

.metric-grid div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.metric-grid strong {
  display: block;
  color: var(--green-strong);
  font-size: 1.25rem;
}

.metric-grid span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.9rem;
}

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

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

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

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfa;
}

summary {
  cursor: pointer;
  padding: 20px 22px;
  font-weight: 700;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

details p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
  line-height: 1.72;
}

.final-cta {
  padding: 100px 0;
  background:
    linear-gradient(90deg, rgba(124, 252, 0, 0.18), transparent 48%),
    var(--black);
}

.lead-form {
  padding: 30px;
  border: 1px solid rgba(15, 15, 16, 0.12);
  border-radius: 8px;
  color: var(--ink);
  background: #ffffff;
  box-shadow: var(--shadow);
}

.form-head {
  margin-bottom: 24px;
}

.form-kicker {
  margin: 0 0 8px;
  color: var(--green-strong);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lead-form h3 {
  margin: 0 0 12px;
  font-size: 1.7rem;
}

.lead-form p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

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

.lead-form label,
.lead-form fieldset {
  min-width: 0;
}

.lead-form label {
  display: grid;
  gap: 8px;
}

.lead-form label span,
.lead-form legend {
  color: #222;
  font-size: 0.9rem;
  font-weight: 900;
}

.lead-form input,
.lead-form select {
  width: 100%;
  min-height: 50px;
  border: 1px solid rgba(15, 15, 16, 0.16);
  border-radius: 8px;
  padding: 0 14px;
  color: var(--ink);
  background: #f8faf6;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.lead-form input:focus,
.lead-form select:focus {
  border-color: var(--green-strong);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(124, 252, 0, 0.18);
}

.lead-form .wide {
  grid-column: 1 / -1;
}

.lead-form fieldset {
  margin: 0;
  border: 1px solid rgba(15, 15, 16, 0.16);
  border-radius: 8px;
  padding: 12px 14px;
  background: #f8faf6;
}

.lead-form legend {
  padding: 0 6px;
}

.choice-row {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.choice-row label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  color: var(--ink);
  font-weight: 700;
}

.choice-row input {
  width: 18px;
  min-height: 18px;
  accent-color: var(--green-strong);
}

.form-status {
  min-height: 24px;
  margin-top: 12px !important;
  font-size: 0.92rem;
  font-weight: 700;
}

.site-footer {
  padding: 28px 0;
  color: var(--white);
  background: #000;
  border-top: 1px solid var(--line-dark);
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.9rem;
  text-align: right;
}

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .button,
  .reveal,
  .main-nav a,
  .bar-chart i,
  .line-path,
  .line-chart circle,
  .donut-chart,
  .pie-chart {
    animation: none;
    transition: none;
  }
}

@media (max-width: 1040px) {
  .hero-grid,
  .crm-grid,
  .dashboards-grid,
  .kanban-grid,
  .proof-grid,
  .final-grid,
  .faq-grid,
  .clinic-top {
    grid-template-columns: 1fr;
  }

  .hero-panel,
  .flow-card {
    max-width: 520px;
  }

  .dashboard-window {
    transform: none;
    margin-inline: auto;
  }

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

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

@media (max-width: 820px) {
  .site-header {
    top: 10px;
    min-height: 62px;
    padding: 10px 12px 10px 16px;
  }

  .menu-toggle {
    display: block;
  }

  .menu-open .menu-toggle span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .menu-open .menu-toggle span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .main-nav {
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    display: grid;
    gap: 8px;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    background: rgba(5, 5, 6, 0.96);
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
  }

  .menu-open .main-nav {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

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

  .nav-cta {
    text-align: center;
  }

  .section {
    padding: 78px 0;
  }

  .hero {
    min-height: auto;
    padding: 126px 0 62px;
  }

  .hero h1 {
    font-size: clamp(2.35rem, 8vw, 3.25rem);
    line-height: 1.04;
    text-wrap: auto;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(5, 5, 6, 0.82) 0%, rgba(5, 5, 6, 0.94) 46%, rgba(5, 5, 6, 0.98) 100%);
  }

  .strip-grid,
  .services-grid,
  .benefits-grid,
  .dashboard-kpis,
  .charts-grid,
  .dashboard-proof,
  .clinic-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .dashboard-app-nav {
    grid-template-columns: 42px 1fr;
  }

  .dashboard-app-nav nav {
    gap: 16px;
    overflow: auto;
    padding-bottom: 2px;
  }

  .dashboard-user {
    grid-column: 1 / -1;
    justify-content: flex-end;
  }

  .dashboard-proof div + div {
    border-left: 0;
    border-top: 1px solid rgba(15, 15, 16, 0.08);
  }

  .crm-grid,
  .dashboards-grid,
  .kanban-grid,
  .proof-grid,
  .final-grid,
  .faq-grid {
    gap: 34px;
  }

  .check-list,
  .metric-grid {
    grid-template-columns: 1fr;
  }

  .pie-layout {
    grid-template-columns: 1fr;
  }

  .donut-layout {
    grid-template-columns: 1fr;
  }

  .pie-chart {
    margin-inline: 0;
  }

  .hero-actions {
    display: grid;
  }

  .dashboard-actions {
    display: grid;
  }

  .button {
    width: 100%;
    font-size: 0.94rem;
  }

  .footer-grid {
    display: grid;
  }

  .footer-grid p {
    text-align: left;
  }
}

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

  .brand {
    width: 190px;
    height: 48px;
  }

  .brand img {
    width: 330px;
  }

  .hero h1 {
    font-size: clamp(2.25rem, 10.8vw, 2.85rem);
    line-height: 1.03;
    text-wrap: auto;
  }

  .section-heading h2,
  .crm-copy h2,
  .dashboard-copy h2,
  .kanban-copy h2,
  .proof-copy h2,
  .final-copy h2 {
    font-size: clamp(1.9rem, 8.8vw, 2.45rem);
    line-height: 1.08;
  }

  .hero-subtitle {
    font-size: 0.98rem;
  }

  .service-card,
  .benefit-card,
  .process-step,
  .dark-card,
  .hero-panel,
  .dashboard-window,
  .lead-form {
    padding: 22px;
  }

  .dashboard-badge {
    margin-bottom: 28px;
  }

  .dashboard-title,
  .dashboard-controls {
    display: grid;
  }

  .dashboard-title {
    padding-inline: 0;
  }

  .dashboard-kpis,
  .charts-grid {
    padding-inline: 0;
  }

  .dashboard-kpis div {
    padding-left: 72px;
  }

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

  .kanban-board {
    grid-template-columns: repeat(4, 150px);
  }
}
