:root {
  color: #343f52;
  background: #ffffff;
  font-family:
    "Space Grotesk", Inter, ui-sans-serif, system-ui, -apple-system,
    BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
  --ink: #263247;
  --heading: #2f3b51;
  --muted: #68748a;
  --blue: #3f78e0;
  --blue-dark: #2f65ca;
  --mint: #45c4a0;
  --soft-blue: #edf2fc;
  --soft-mint: #edf9f6;
  --soft-violet: #f3effc;
  --line: #dce4f0;
  --shadow: 0 18px 45px rgba(38, 50, 71, 0.1);
  --shadow-light: 0 10px 28px rgba(38, 50, 71, 0.07);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--heading);
  letter-spacing: -0.045em;
}

p {
  color: var(--muted);
  line-height: 1.72;
}

.shell {
  width: min(1220px, calc(100% - 48px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  border-radius: 10px;
  color: #fff;
  background: var(--blue-dark);
  transform: translateY(-150%);
}

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

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(220, 228, 240, 0.9);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  transition: box-shadow 180ms ease;
}

.site-header.scrolled {
  box-shadow: 0 8px 24px rgba(38, 50, 71, 0.06);
}

.header-inner {
  min-height: 82px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 44px;
}

.brand,
.mini-brand {
  color: #2b3549;
  font-size: 1.48rem;
  font-weight: 700;
  letter-spacing: -0.065em;
  white-space: nowrap;
}

.brand strong,
.mini-brand strong {
  color: var(--blue);
}

.primary-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 38px;
  font-size: 0.94rem;
  font-weight: 600;
}

.mobile-nav-actions {
  display: none;
}

.primary-nav a,
.link-button,
.site-footer a {
  transition: color 160ms ease;
}

.primary-nav a:hover,
.primary-nav a:focus-visible,
.link-button:hover,
.link-button:focus-visible,
.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--blue);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 0.94rem;
  font-weight: 600;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid var(--blue);
  border-radius: 13px;
  color: #fff;
  background: var(--blue);
  font-size: 0.96rem;
  font-weight: 650;
  box-shadow: 0 10px 24px rgba(63, 120, 224, 0.2);
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease,
    box-shadow 160ms ease;
}

.button:hover,
.button:focus-visible {
  border-color: var(--blue-dark);
  background: var(--blue-dark);
  box-shadow: 0 13px 28px rgba(63, 120, 224, 0.26);
  transform: translateY(-2px);
}

.button-small {
  min-height: 44px;
  padding-inline: 20px;
  border-radius: 12px;
}

.button-outline {
  color: var(--blue);
  background: #fff;
  box-shadow: none;
}

.button-outline:hover,
.button-outline:focus-visible {
  color: #fff;
}

.menu-button {
  width: 44px;
  height: 44px;
  display: none;
  place-content: center;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
}

.menu-button span {
  width: 20px;
  height: 2px;
  display: block;
  border-radius: 20px;
  background: var(--ink);
  transition:
    transform 160ms ease,
    opacity 160ms ease;
}

.menu-button[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-button[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-button[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 810px;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 88px 0 104px;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(500px, 0.92fr) minmax(620px, 1.08fr);
  align-items: center;
  gap: 45px;
}

.hero-copy {
  padding: 20px 0 52px;
}

.hero-copy h1 {
  max-width: 590px;
  margin-bottom: 28px;
  font-size: clamp(3.25rem, 4.5vw, 4.45rem);
  line-height: 1.02;
}

.hero-copy > p {
  max-width: 610px;
  margin-bottom: 0;
  font-size: clamp(1.05rem, 1.5vw, 1.23rem);
}

.hero-actions {
  margin-top: 38px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.release-note {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #6f7c90;
  font-size: 0.86rem !important;
  line-height: 1.5 !important;
}

.release-note span {
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  border: 2px solid #fff;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 3px rgba(69, 196, 160, 0.15);
}

.hero-orb {
  position: absolute;
  z-index: 0;
  border-radius: 50%;
  pointer-events: none;
}

.hero-orb-blue {
  width: 630px;
  height: 630px;
  top: -270px;
  right: -90px;
  background: var(--soft-blue);
}

.hero-orb-mint {
  width: 560px;
  height: 560px;
  bottom: -390px;
  left: -160px;
  background: var(--soft-mint);
}

.hero-dots {
  position: absolute;
  z-index: 1;
  width: 126px;
  height: 90px;
  opacity: 0.38;
  background-image: radial-gradient(circle, #7ea4ea 3px, transparent 3px);
  background-size: 24px 24px;
}

.hero-dots-top {
  top: 64px;
  right: 12px;
}

.product-stage {
  position: relative;
  min-width: 0;
  padding: 36px 42px 60px 0;
}

.dashboard-frame {
  min-height: 600px;
  display: grid;
  grid-template-columns: 146px 1fr;
  overflow: hidden;
  border: 1px solid #dce4ef;
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow);
}

.dashboard-sidebar {
  padding: 25px 16px 19px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid #e5eaf2;
  background: #fbfcfe;
}

.dashboard-sidebar .mini-brand {
  padding-left: 7px;
  font-size: 1.02rem;
}

.sidebar-items {
  margin-top: 29px;
  display: grid;
  gap: 7px;
}

.sidebar-items span,
.sidebar-bottom span {
  min-height: 36px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 10px;
  border-radius: 8px;
  color: #667387;
  font-size: 0.7rem;
  font-weight: 550;
}

.sidebar-items span.active {
  color: var(--blue);
  background: var(--soft-blue);
}

.sidebar-bottom {
  margin-top: auto;
}

.icon {
  width: 16px;
  height: 16px;
  position: relative;
  flex: 0 0 auto;
  display: inline-block;
  color: currentColor;
}

.icon::before,
.icon::after {
  content: "";
  position: absolute;
  border: 1.5px solid currentColor;
}

.icon-home::before {
  width: 10px;
  height: 9px;
  left: 2px;
  top: 5px;
  border-radius: 2px;
}

.icon-home::after {
  width: 8px;
  height: 8px;
  left: 3px;
  top: 1px;
  border-right: 0;
  border-bottom: 0;
  transform: rotate(45deg);
}

.icon-leads::before {
  width: 9px;
  height: 9px;
  left: 1px;
  top: 1px;
  border-radius: 50%;
}

.icon-leads::after {
  width: 9px;
  height: 6px;
  right: 0;
  bottom: 0;
  border-radius: 6px 6px 2px 2px;
}

.icon-file::before {
  inset: 1px 3px;
  border-radius: 2px;
}

.icon-file::after {
  width: 6px;
  height: 1px;
  left: 5px;
  top: 6px;
  border-width: 1px 0 0;
  box-shadow: 0 4px 0 currentColor;
}

.icon-project::before {
  width: 12px;
  height: 9px;
  left: 1px;
  top: 5px;
  border-radius: 2px;
}

.icon-project::after {
  width: 6px;
  height: 4px;
  left: 4px;
  top: 2px;
  border-radius: 2px 2px 0 0;
}

.icon-calendar::before {
  inset: 2px 1px 1px;
  border-radius: 3px;
}

.icon-calendar::after {
  width: 8px;
  height: 1px;
  left: 4px;
  top: 6px;
  border-width: 1px 0 0;
}

.icon-phone::before {
  width: 10px;
  height: 10px;
  left: 2px;
  top: 2px;
  border-radius: 2px 8px 2px 8px;
  transform: rotate(-15deg);
}

.icon-phone::after {
  display: none;
}

.icon-users::before {
  width: 6px;
  height: 6px;
  left: 4px;
  top: 1px;
  border-radius: 50%;
}

.icon-users::after {
  width: 12px;
  height: 6px;
  left: 1px;
  bottom: 1px;
  border-radius: 8px 8px 2px 2px;
}

.icon-chart::before {
  inset: 1px;
  border-width: 0 0 1.5px 1.5px;
}

.icon-chart::after {
  width: 2px;
  height: 5px;
  left: 5px;
  bottom: 2px;
  border: 0;
  background: currentColor;
  box-shadow: 4px -3px 0 currentColor, 8px -7px 0 currentColor;
}

.icon-settings::before {
  width: 10px;
  height: 10px;
  left: 2px;
  top: 2px;
  border-radius: 50%;
}

.icon-settings::after {
  width: 3px;
  height: 3px;
  left: 6px;
  top: 6px;
  border-radius: 50%;
}

.dashboard-main {
  min-width: 0;
  padding: 27px 25px 24px;
}

.dashboard-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.dashboard-kicker {
  color: #8a95a7;
  font-size: 0.64rem;
}

.dashboard-topbar h2 {
  margin: 3px 0 0;
  font-size: 1.1rem;
  letter-spacing: -0.035em;
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.circle-action,
.avatar {
  width: 29px;
  height: 29px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #667387;
  background: #f4f6fa;
  font-size: 0.58rem;
}

.avatar {
  color: var(--blue);
  background: var(--soft-blue);
  font-weight: 700;
}

.icon-search::before {
  content: "";
  width: 9px;
  height: 9px;
  border: 1.4px solid currentColor;
  border-radius: 50%;
  transform: translate(-1px, -1px);
}

.icon-search::after {
  content: "";
  width: 5px;
  height: 1.4px;
  position: absolute;
  transform: translate(5px, 5px) rotate(45deg);
  background: currentColor;
}

.icon-bell::before {
  content: "◡";
  font-size: 1rem;
  transform: rotate(180deg) translateY(1px);
}

.quick-links {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.quick-links div {
  min-height: 57px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px;
  border: 1px solid #e0e6ef;
  border-radius: 10px;
  color: #4e5a6e;
  background: #fff;
  font-size: 0.63rem;
  font-weight: 650;
}

.quick-links i {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: var(--blue);
  background: var(--soft-blue);
  transform: scale(0.9);
}

.quick-links div:nth-child(2) i,
.quick-links div:nth-child(4) i {
  color: #2ea986;
  background: var(--soft-mint);
}

.dashboard-grid {
  margin-top: 16px;
  display: grid;
  grid-template-columns: 1.45fr 0.9fr;
  gap: 12px;
}

.panel {
  min-width: 0;
  min-height: 154px;
  padding: 15px;
  border: 1px solid #e0e6ef;
  border-radius: 11px;
  background: #fff;
}

.panel-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.62rem;
}

.panel-heading span {
  color: var(--blue);
  font-size: 0.52rem;
}

.kanban {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}

.kanban > div {
  min-width: 0;
  display: grid;
  align-content: start;
  gap: 6px;
}

.kanban b {
  padding: 5px 3px;
  border-radius: 5px;
  text-align: center;
  font-size: 0.46rem;
  font-weight: 650;
}

.status-new {
  color: #3168cd;
  background: #eaf1fd;
}

.status-contacted {
  color: #9f6b16;
  background: #fbf1df;
}

.status-proposal {
  color: #7b54b4;
  background: #f2ebfb;
}

.kanban > div > span {
  min-height: 41px;
  padding: 6px;
  overflow: hidden;
  border: 1px solid #e5e9f0;
  border-radius: 6px;
  color: #485468;
  font-size: 0.44rem;
  font-weight: 600;
}

.kanban small {
  margin-top: 2px;
  display: block;
  overflow: hidden;
  color: #8c96a7;
  font-size: 0.4rem;
  font-weight: 400;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.schedule-list,
.status-list {
  margin-top: 11px;
  display: grid;
}

.schedule-list > div {
  min-height: 42px;
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: center;
  gap: 7px;
  border-top: 1px solid #edf0f5;
}

.schedule-list time {
  color: #697589;
  font-size: 0.44rem;
}

.schedule-list span {
  color: #475266;
  font-size: 0.49rem;
  font-weight: 650;
}

.schedule-list small {
  margin-top: 2px;
  display: block;
  color: #929cab;
  font-size: 0.4rem;
  font-weight: 400;
}

.status-panel,
.task-panel {
  min-height: 130px;
}

.status-list span {
  min-height: 27px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 6px;
  border-top: 1px solid #edf0f5;
  color: #657185;
  font-size: 0.45rem;
}

.status-list b {
  color: #475266;
  font-weight: 550;
}

.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.dot-gray {
  background: #b8c0cc;
}

.dot-blue {
  background: var(--blue);
}

.dot-mint {
  background: var(--mint);
}

.task-panel {
  display: grid;
  align-content: start;
  gap: 7px;
}

.task-panel label {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #616d80;
  font-size: 0.47rem;
}

.task-panel input {
  width: 10px;
  height: 10px;
  margin: 0;
}

.phone-frame {
  width: 188px;
  height: 404px;
  position: absolute;
  right: -17px;
  bottom: 0;
  z-index: 3;
  overflow: hidden;
  border: 7px solid #fff;
  border-radius: 31px;
  background: #fff;
  box-shadow:
    0 16px 36px rgba(38, 50, 71, 0.18),
    0 0 0 1px #d8e0eb;
}

.phone-speaker {
  width: 54px;
  height: 14px;
  position: absolute;
  z-index: 2;
  top: -1px;
  left: 50%;
  border-radius: 0 0 10px 10px;
  background: #f1f3f7;
  transform: translateX(-50%);
}

.phone-status {
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 12px 0;
  color: #273246;
  font-size: 0.42rem;
  font-weight: 700;
}

.phone-brand {
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 11px;
  border-bottom: 1px solid #e8ecf2;
}

.phone-brand .mini-brand {
  font-size: 0.66rem;
}

.phone-brand > i {
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--blue);
  font-size: 0.75rem;
  font-style: normal;
}

.phone-title {
  padding: 11px 11px 7px;
  font-size: 0.68rem;
  font-weight: 700;
}

.phone-shortcuts {
  padding: 0 9px 11px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
}

.phone-shortcuts span {
  min-height: 45px;
  display: grid;
  place-items: center;
  padding: 5px 2px;
  border-radius: 8px;
  color: #637084;
  background: #f7f9fc;
  font-size: 0.38rem;
}

.phone-shortcuts i {
  color: var(--blue);
  transform: scale(0.78);
}

.phone-section {
  padding: 0 10px;
}

.phone-section > b {
  display: block;
  margin-bottom: 4px;
  font-size: 0.52rem;
}

.phone-section > div {
  min-height: 50px;
  display: grid;
  grid-template-columns: 18px 1fr;
  align-items: center;
  gap: 7px;
  border-top: 1px solid #edf0f4;
}

.phone-check {
  width: 16px;
  height: 16px;
  border: 1px solid #c8d1de;
  border-radius: 5px;
}

.phone-section span {
  font-size: 0.48rem;
  font-weight: 650;
}

.phone-section small {
  margin-top: 2px;
  display: block;
  color: #8d98a8;
  font-size: 0.4rem;
  font-weight: 400;
}

.phone-nav {
  height: 49px;
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  border-top: 1px solid #e8ecf2;
  background: #fff;
}

.phone-nav span {
  display: grid;
  place-items: center;
  color: #758196;
  font-size: 0.34rem;
}

.phone-nav span.active {
  color: var(--blue);
}

.phone-nav i {
  transform: scale(0.72);
}

.section {
  padding: 118px 0;
}

.section-heading {
  max-width: 860px;
  margin-bottom: 54px;
}

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

.section-heading h2,
.workflow-copy h2,
.faq-intro h2 {
  margin-bottom: 20px;
  font-size: clamp(2.45rem, 4.4vw, 4.5rem);
  line-height: 1.08;
}

.section-heading p,
.workflow-copy > p,
.faq-intro > p {
  max-width: 720px;
  margin-bottom: 0;
  font-size: 1.05rem;
}

.platform-section {
  background: #fff;
}

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

.feature-card {
  min-height: 208px;
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 22px;
  padding: 30px 27px;
  border: 1px solid var(--line);
  border-radius: 21px;
  background: #fff;
  box-shadow: var(--shadow-light);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 38px rgba(38, 50, 71, 0.1);
}

.feature-card h3 {
  margin-bottom: 8px;
  font-size: 1.12rem;
  letter-spacing: -0.025em;
}

.feature-card p {
  min-height: 68px;
  margin-bottom: 15px;
  font-size: 0.9rem;
  line-height: 1.65;
}

.feature-icon {
  width: 62px;
  height: 62px;
  position: relative;
  border-radius: 17px;
  color: var(--blue);
  background: var(--soft-blue);
}

.feature-card:nth-child(even) .feature-icon {
  color: #2ea986;
  background: var(--soft-mint);
}

.module-status {
  display: inline-flex;
  padding: 5px 9px;
  border-radius: 999px;
  color: #707b8d;
  background: #f3f5f8;
  font-size: 0.68rem;
  font-weight: 600;
}

.module-status.status-live {
  color: #238b70;
  background: var(--soft-mint);
}

.icon-funnel::before {
  content: "";
  width: 28px;
  height: 26px;
  position: absolute;
  top: 16px;
  left: 17px;
  border: 3px solid currentColor;
  border-bottom: 0;
  clip-path: polygon(0 0, 100% 0, 62% 53%, 62% 100%, 38% 100%, 38% 53%);
}

.icon-document::before {
  content: "$";
  width: 25px;
  height: 33px;
  position: absolute;
  top: 13px;
  left: 18px;
  display: grid;
  place-items: center;
  border: 2px solid currentColor;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: 600;
}

.icon-calendar-large::before {
  content: "";
  width: 32px;
  height: 29px;
  position: absolute;
  top: 17px;
  left: 15px;
  border: 2px solid currentColor;
  border-radius: 7px;
  box-shadow: inset 0 8px 0 rgba(63, 120, 224, 0.08);
}

.icon-calendar-large::after {
  content: "···";
  position: absolute;
  top: 25px;
  left: 22px;
  letter-spacing: 4px;
}

.icon-wave::before {
  content: "▂▅▇▃▆";
  position: absolute;
  top: 20px;
  left: 10px;
  letter-spacing: 1px;
  font-size: 1.1rem;
}

.icon-hardhat::before {
  content: "";
  width: 35px;
  height: 19px;
  position: absolute;
  top: 15px;
  left: 13px;
  border: 2px solid currentColor;
  border-radius: 18px 18px 5px 5px;
}

.icon-hardhat::after {
  content: "";
  width: 21px;
  height: 14px;
  position: absolute;
  top: 36px;
  left: 20px;
  border: 2px solid currentColor;
  border-top: 0;
  border-radius: 0 0 10px 10px;
}

.icon-report::before {
  content: "▂▄▆";
  width: 34px;
  height: 34px;
  position: absolute;
  top: 14px;
  left: 14px;
  display: grid;
  place-items: center;
  border: 2px solid currentColor;
  border-radius: 7px;
  letter-spacing: 2px;
}

.workflow-section {
  background: #f8faff;
}

.workflow-grid {
  display: grid;
  grid-template-columns: minmax(620px, 1.1fr) minmax(390px, 0.75fr);
  align-items: center;
  gap: 78px;
}

.estimate-preview {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow);
}

.estimate-topbar {
  min-height: 77px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  border-bottom: 1px solid #e5eaf2;
}

.estimate-topbar div {
  display: grid;
  gap: 2px;
}

.estimate-topbar span {
  color: #8b96a8;
  font-size: 0.68rem;
}

.estimate-topbar strong {
  color: var(--heading);
  font-size: 0.95rem;
}

.estimate-topbar button {
  padding: 7px 12px;
  border: 0;
  border-radius: 8px;
  color: var(--blue);
  background: var(--soft-blue);
  font-size: 0.68rem;
  font-weight: 650;
}

.estimate-body {
  min-height: 470px;
  display: grid;
  grid-template-columns: 132px 1fr;
}

.estimate-body > aside {
  padding: 21px 14px;
  display: grid;
  align-content: start;
  gap: 7px;
  border-right: 1px solid #e5eaf2;
  background: #fbfcfe;
}

.estimate-body > aside span {
  min-height: 34px;
  display: flex;
  align-items: center;
  padding: 0 11px;
  border-radius: 8px;
  color: #758095;
  font-size: 0.67rem;
  font-weight: 550;
}

.estimate-body > aside span.active {
  color: var(--blue);
  background: var(--soft-blue);
}

.estimate-content {
  padding: 26px;
}

.estimate-section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.estimate-section-title small {
  color: #97a1b1;
  font-size: 0.55rem;
  letter-spacing: 0.08em;
}

.estimate-section-title h3 {
  margin: 4px 0 0;
  font-size: 1.2rem;
}

.estimate-section-title > span {
  color: #8a95a7;
  font-size: 0.63rem;
}

.selection-label {
  margin: 27px 0 10px;
  color: #556176;
  font-size: 0.7rem;
  font-weight: 650;
}

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

.selection-grid > div {
  min-height: 87px;
  display: grid;
  place-items: center;
  padding: 10px;
  border: 1px solid #dee5ef;
  border-radius: 11px;
  color: #697589;
  font-size: 0.61rem;
  font-weight: 600;
}

.selection-grid > div.selected {
  border: 2px solid var(--blue);
  color: var(--blue);
  background: #f7f9fe;
}

.fixture {
  width: 34px;
  height: 25px;
  position: relative;
  display: block;
  border: 2px solid currentColor;
  border-radius: 3px;
}

.fixture.shower::before {
  content: "";
  width: 12px;
  height: 12px;
  position: absolute;
  top: -8px;
  left: 3px;
  border: 2px solid currentColor;
  border-bottom: 0;
  border-left: 0;
  border-radius: 0 10px 0 0;
}

.fixture.tub {
  height: 16px;
  margin-top: 8px;
  border-radius: 2px 2px 10px 10px;
}

.fixture.combo::before {
  content: "";
  height: 30px;
  position: absolute;
  top: -17px;
  right: 4px;
  border-left: 2px solid currentColor;
}

.measurement-row {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.measurement-row label {
  display: grid;
  gap: 5px;
  color: #7b8799;
  font-size: 0.56rem;
}

.measurement-row span {
  min-height: 34px;
  display: flex;
  align-items: center;
  padding: 0 10px;
  border: 1px solid #dfe5ee;
  border-radius: 8px;
  color: #505c70;
  font-size: 0.66rem;
  font-weight: 600;
}

.scope-row {
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 11px;
  padding: 8px 11px;
  border: 1px solid #e1e6ef;
  border-radius: 9px;
}

.scope-row div {
  display: grid;
  gap: 3px;
}

.scope-row div span {
  color: #929cad;
  font-size: 0.52rem;
}

.scope-row div b {
  color: #596579;
  font-size: 0.66rem;
}

.tag {
  padding: 4px 7px;
  border-radius: 999px;
  color: #268c71;
  background: var(--soft-mint);
  font-size: 0.5rem;
  font-weight: 650;
}

.tag-pending {
  color: #9a6d1e;
  background: #fff5e5;
}

.voice-note {
  min-height: 58px;
  margin-top: 16px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 11px;
  padding: 8px 11px;
  border-radius: 10px;
  color: var(--blue);
  background: var(--soft-blue);
}

.voice-note button {
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: var(--blue);
}

.voice-note > div {
  min-width: 0;
  display: grid;
  gap: 4px;
}

.voice-note b,
.voice-note time {
  font-size: 0.58rem;
}

.waveform {
  height: 11px;
  display: block;
  background: repeating-linear-gradient(
    90deg,
    rgba(63, 120, 224, 0.25) 0 2px,
    transparent 2px 5px
  );
  mask-image: linear-gradient(0deg, transparent, #000 45%, transparent);
}

.workflow-copy > p {
  margin-bottom: 32px;
}

.workflow-list {
  margin: 0;
  padding: 0;
  display: grid;
  list-style: none;
}

.workflow-list li {
  position: relative;
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 18px;
  padding: 0 0 25px;
}

.workflow-list li:not(:last-child)::before {
  content: "";
  width: 1px;
  position: absolute;
  top: 48px;
  bottom: 4px;
  left: 26px;
  border-left: 1px dashed #b8c9e8;
}

.workflow-list li > span {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--blue);
  background: var(--soft-blue);
  font-size: 1.1rem;
  font-weight: 700;
}

.workflow-list li:nth-child(3) > span,
.workflow-list li:nth-child(4) > span {
  color: #279d7e;
  background: var(--soft-mint);
}

.workflow-list h3 {
  margin: 3px 0 4px;
  font-size: 1.02rem;
  letter-spacing: -0.02em;
}

.workflow-list p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.6;
}

.teams-section {
  background: #fff;
}

.role-tabs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border: 1px solid var(--line);
  border-radius: 15px;
  background: #fff;
  box-shadow: var(--shadow-light);
}

.role-tabs button {
  min-height: 66px;
  position: relative;
  border: 0;
  color: #647085;
  background: transparent;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
}

.role-tabs button::after {
  content: "";
  height: 3px;
  position: absolute;
  right: 16px;
  bottom: -1px;
  left: 16px;
  border-radius: 3px 3px 0 0;
  background: transparent;
}

.role-tabs button[aria-selected="true"] {
  color: var(--blue);
}

.role-tabs button[aria-selected="true"]::after {
  background: var(--blue);
}

.role-panel {
  min-height: 530px;
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(540px, 1.18fr);
  align-items: center;
  gap: 90px;
  padding: 68px 82px;
  outline: none;
}

.role-copy h3 {
  max-width: 510px;
  margin-bottom: 17px;
  font-size: clamp(2rem, 3.2vw, 3.25rem);
  line-height: 1.08;
}

.role-copy > p {
  max-width: 540px;
  margin-bottom: 30px;
  font-size: 1rem;
}

.role-copy ul {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 17px;
  list-style: none;
}

.role-copy li {
  position: relative;
  padding-left: 34px;
  color: #536074;
  font-size: 0.92rem;
  font-weight: 550;
}

.role-copy li::before {
  content: "✓";
  width: 23px;
  height: 23px;
  position: absolute;
  top: -2px;
  left: 0;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--mint);
  font-size: 0.69rem;
  font-weight: 700;
}

.mobile-workspace {
  max-width: 560px;
  justify-self: end;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  box-shadow: var(--shadow);
}

.mobile-workspace-top {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 25px;
  border-bottom: 1px solid #e4e9f1;
}

.mobile-workspace-top .mini-brand {
  font-size: 1.02rem;
}

.mobile-workspace-top > span:last-child {
  color: #657185;
  font-size: 1rem;
}

.mobile-workspace-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 25px 17px;
}

.mobile-workspace-heading div {
  display: grid;
  gap: 4px;
}

.mobile-workspace-heading small {
  color: #9aa4b3;
  font-size: 0.58rem;
  letter-spacing: 0.08em;
}

.mobile-workspace-heading b {
  font-size: 1.4rem;
}

.mobile-workspace-heading > span {
  color: #6c788b;
  font-size: 0.7rem;
}

.mobile-summary {
  padding: 0 25px 22px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 11px;
}

.mobile-summary span {
  min-height: 70px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 4px;
  border-radius: 11px;
  color: #536074;
  background: #f7f9fc;
}

.mobile-summary b {
  font-size: 0.78rem;
}

.mobile-summary small {
  color: #8c97a8;
  font-size: 0.59rem;
}

.mobile-list {
  padding: 0 25px 22px;
}

.mobile-list > strong {
  display: block;
  padding-bottom: 9px;
  font-size: 0.8rem;
}

.mobile-list > div {
  min-height: 66px;
  display: grid;
  grid-template-columns: 22px 1fr;
  align-items: center;
  gap: 11px;
  border-top: 1px solid #e8ecf2;
}

.mobile-list i {
  width: 20px;
  height: 20px;
  border: 1px solid #cbd4e0;
  border-radius: 6px;
}

.mobile-list span {
  display: grid;
  gap: 3px;
}

.mobile-list b {
  color: #4f5b70;
  font-size: 0.75rem;
}

.mobile-list small {
  color: #929cab;
  font-size: 0.62rem;
}

.faq-section {
  background: #f8faff;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.68fr 1.32fr;
  align-items: start;
  gap: 90px;
}

.faq-intro {
  position: sticky;
  top: 120px;
}

.faq-intro h2 {
  font-size: clamp(2.45rem, 3.8vw, 3.8rem);
}

.faq-intro .button {
  margin-top: 16px;
}

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

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 7px 20px rgba(38, 50, 71, 0.04);
}

.faq-list summary {
  min-height: 71px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 0 23px;
  color: #485468;
  font-size: 0.95rem;
  font-weight: 650;
  cursor: pointer;
  list-style: none;
}

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

.faq-list summary span {
  color: var(--blue);
  font-size: 1.25rem;
  font-weight: 400;
  transition: transform 160ms ease;
}

.faq-list details[open] summary span {
  transform: rotate(45deg);
}

.faq-list details p {
  margin: 0;
  padding: 0 23px 23px;
  font-size: 0.9rem;
}

.final-cta {
  padding: 94px 0;
}

.cta-panel {
  min-height: 235px;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 120px 1fr auto;
  align-items: center;
  gap: 35px;
  padding: 52px 58px;
  border: 1px solid #d5e1f6;
  border-radius: 24px;
  background: var(--soft-blue);
}

.cta-panel::after {
  content: "";
  width: 270px;
  height: 270px;
  position: absolute;
  right: -140px;
  bottom: -170px;
  border-radius: 50%;
  background: rgba(69, 196, 160, 0.14);
}

.cta-panel > * {
  position: relative;
  z-index: 1;
}

.cta-mark {
  width: 104px;
  height: 86px;
  position: relative;
}

.cta-mark span {
  position: absolute;
  bottom: 0;
  border: 3px solid var(--blue);
  border-radius: 7px 7px 2px 2px;
}

.cta-mark span:nth-child(1) {
  width: 33px;
  height: 45px;
  left: 3px;
}

.cta-mark span:nth-child(2) {
  width: 46px;
  height: 75px;
  left: 30px;
}

.cta-mark span:nth-child(3) {
  width: 31px;
  height: 55px;
  right: 1px;
}

.cta-mark::before {
  content: "";
  width: 80px;
  height: 3px;
  position: absolute;
  top: 9px;
  left: 12px;
  background: var(--mint);
  transform: rotate(-12deg);
}

.cta-panel h2 {
  margin-bottom: 8px;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.08;
}

.cta-panel p {
  margin-bottom: 0;
}

.cta-actions {
  display: flex;
  gap: 12px;
}

.site-footer {
  border-top: 1px solid #e1e6ee;
}

.footer-inner {
  min-height: 126px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 45px;
}

.site-footer nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 28px;
  color: #697589;
  font-size: 0.83rem;
}

.site-footer p {
  margin: 0;
  font-size: 0.78rem;
}

@media (max-width: 1180px) {
  .hero {
    min-height: auto;
    padding-top: 72px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .hero-copy {
    max-width: 820px;
    padding-bottom: 0;
  }

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

  .product-stage {
    width: min(870px, 100%);
    margin-inline: auto;
  }

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

  .estimate-preview {
    max-width: 800px;
  }

  .workflow-copy {
    max-width: 780px;
  }

  .role-panel {
    gap: 50px;
    padding-inline: 42px;
  }
}

@media (max-width: 980px) {
  .header-inner {
    grid-template-columns: auto auto 1fr;
    gap: 17px;
  }

  .menu-button {
    order: 3;
    justify-self: end;
    display: grid;
  }

  .primary-nav {
    position: fixed;
    z-index: 99;
    top: 82px;
    right: 0;
    bottom: 0;
    left: 0;
    display: none;
    align-content: start;
    justify-items: stretch;
    gap: 0;
    padding: 26px 24px;
    background: #fff;
  }

  .primary-nav.open {
    display: grid;
  }

  .primary-nav a {
    padding: 18px 4px;
    border-bottom: 1px solid var(--line);
    font-size: 1.05rem;
  }

  .primary-nav .mobile-nav-actions {
    margin-top: 28px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .primary-nav .mobile-nav-actions a {
    min-height: 50px;
    padding: 0 18px;
    border: 1px solid var(--blue);
    font-size: 0.92rem;
  }

  .header-actions {
    justify-self: end;
  }

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

  .role-tabs {
    overflow-x: auto;
    grid-template-columns: repeat(5, minmax(165px, 1fr));
  }

  .role-panel {
    grid-template-columns: 1fr;
  }

  .mobile-workspace {
    width: 100%;
    justify-self: stretch;
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .faq-intro {
    position: static;
  }

  .cta-panel {
    grid-template-columns: 90px 1fr;
  }

  .cta-actions {
    grid-column: 2;
  }

  .cta-mark {
    transform: scale(0.8);
    transform-origin: left center;
  }

  .footer-inner {
    padding: 35px 0;
    grid-template-columns: auto 1fr;
  }

  .site-footer nav {
    justify-self: end;
  }

  .site-footer p {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  .shell {
    width: min(100% - 28px, 1220px);
  }

  .header-inner {
    min-height: 72px;
  }

  .brand {
    font-size: 1.24rem;
  }

  .header-actions {
    gap: 11px;
  }

  .header-actions .link-button {
    display: none;
  }

  .header-actions .button {
    min-height: 40px;
    padding-inline: 14px;
    font-size: 0.8rem;
  }

  .primary-nav {
    top: 72px;
  }

  .hero {
    padding: 60px 0 72px;
  }

  .hero-copy h1 {
    font-size: clamp(2.75rem, 13vw, 4.3rem);
  }

  .hero-copy > p {
    font-size: 1rem;
  }

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

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

  .product-stage {
    padding: 16px 12px 48px 0;
  }

  .dashboard-frame {
    min-height: 500px;
    grid-template-columns: 70px 1fr;
    border-radius: 17px;
  }

  .dashboard-sidebar {
    padding: 17px 8px;
  }

  .dashboard-sidebar .mini-brand {
    overflow: hidden;
    font-size: 0;
  }

  .dashboard-sidebar .mini-brand strong {
    font-size: 0.68rem;
  }

  .sidebar-items {
    margin-top: 18px;
  }

  .sidebar-items span,
  .sidebar-bottom span {
    justify-content: center;
    padding: 0;
    font-size: 0;
  }

  .dashboard-main {
    padding: 18px 14px;
  }

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

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

  .schedule-panel,
  .task-panel {
    display: none;
  }

  .phone-frame {
    width: 152px;
    height: 326px;
    right: -1px;
    border-width: 5px;
    border-radius: 25px;
    transform: scale(0.86);
    transform-origin: bottom right;
  }

  .phone-section > div {
    min-height: 41px;
  }

  .phone-nav {
    height: 41px;
  }

  .section {
    padding: 84px 0;
  }

  .section-heading {
    margin-bottom: 38px;
  }

  .section-heading h2,
  .workflow-copy h2,
  .faq-intro h2 {
    font-size: clamp(2.25rem, 11vw, 3.4rem);
  }

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

  .feature-card {
    min-height: 0;
  }

  .workflow-grid {
    gap: 52px;
  }

  .estimate-body {
    grid-template-columns: 75px 1fr;
  }

  .estimate-body > aside {
    padding: 16px 7px;
  }

  .estimate-body > aside span {
    padding: 0 7px;
    overflow: hidden;
    font-size: 0.5rem;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .estimate-content {
    padding: 18px 13px;
  }

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

  .selection-grid > div {
    min-height: 64px;
    grid-template-columns: 40px 1fr;
  }

  .measurement-row {
    grid-template-columns: 1fr;
  }

  .role-panel {
    min-height: 0;
    gap: 45px;
    padding: 48px 8px 0;
  }

  .role-copy h3 {
    font-size: 2.2rem;
  }

  .mobile-workspace {
    border-radius: 17px;
  }

  .cta-panel {
    min-height: 0;
    grid-template-columns: 1fr;
    padding: 38px 27px;
  }

  .cta-mark {
    height: 65px;
  }

  .cta-actions {
    grid-column: auto;
    align-items: stretch;
    flex-direction: column;
  }

  .cta-actions .button {
    width: 100%;
  }

  .footer-inner {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 25px;
  }

  .site-footer nav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px 35px;
  }
}

@media (max-width: 420px) {
  .header-actions .button {
    display: none;
  }

  .header-inner {
    grid-template-columns: auto 1fr;
  }

  .menu-button {
    grid-column: 2;
  }

  .hero-copy h1 {
    font-size: 2.8rem;
  }

  .dashboard-frame {
    grid-template-columns: 55px 1fr;
  }

  .phone-frame {
    display: none;
  }

  .product-stage {
    padding-right: 0;
    padding-bottom: 0;
  }

  .feature-card {
    grid-template-columns: 52px 1fr;
    gap: 16px;
    padding: 24px 20px;
  }

  .feature-icon {
    width: 52px;
    height: 52px;
    transform: scale(0.84);
    transform-origin: top left;
  }

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

  .estimate-body > aside {
    overflow-x: auto;
    grid-template-columns: repeat(7, minmax(78px, 1fr));
    border-right: 0;
    border-bottom: 1px solid #e5eaf2;
  }

  .scope-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .mobile-summary {
    grid-template-columns: 1fr;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
